:root {
        --cream: #fef7f0;
        --warm-white: #fffcf9;
        --ink: #2d2420;
        --ink-soft: #6b5c55;
        --ink-muted: #a39088;
        --peach: #ff9f7a;
        --peach-light: #ffdfd0;
        --peach-pale: #fff2eb;
        --mint: #5dd4b0;
        --mint-light: #d0f5eb;
        --mint-pale: #edfbf6;
        --lilac: #c4a8f5;
        --lilac-light: #ede4ff;
        --lilac-pale: #f7f3ff;
        --sun: #ffc85a;
        --sun-light: #fff0c2;
        --sky: #89c4f0;
        --sky-light: #daf0ff;
        --rose: #f5a8b8;
        --rose-light: #fde8ed;
        --card-border: rgba(45,36,32,0.08);
        --card-shadow: 0 2px 16px rgba(100,60,40,0.06), 0 1px 4px rgba(100,60,40,0.04);
        --card-shadow-hover: 0 8px 32px rgba(100,60,40,0.10), 0 2px 8px rgba(100,60,40,0.06);
      }

      * { box-sizing: border-box; margin: 0; padding: 0; }

      html { scroll-behavior: smooth; }

      body {
        background-color: var(--cream);
        background-image:
          radial-gradient(ellipse 600px 400px at 10% 5%, rgba(255,159,122,0.12) 0%, transparent 70%),
          radial-gradient(ellipse 500px 500px at 90% 15%, rgba(196,168,245,0.10) 0%, transparent 65%),
          radial-gradient(ellipse 400px 300px at 50% 80%, rgba(93,212,176,0.09) 0%, transparent 60%);
        color: var(--ink);
        font-family: 'DM Sans', -apple-system, sans-serif;
        font-size: 16px;
        line-height: 1.6;
        min-width: 320px;
        overflow-x: hidden;
      }

      a { color: inherit; text-decoration: none; }

      /* ── Noise overlay ── */
      body::before {
        content: '';
        position: fixed;
        inset: 0;
        opacity: 0.025;
        pointer-events: none;
        z-index: 999;
        background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
        background-size: 180px 180px;
      }

      /* ── Nav ── */
      nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 20px clamp(20px, 5vw, 64px);
        max-width: 1160px;
        margin: 0 auto;
      }

      .brand {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        font-family: 'Nunito', sans-serif;
        font-weight: 900;
        font-size: 1.15rem;
        color: var(--ink);
      }

      .brand-mark {
        width: 40px;
        height: 40px;
        background: var(--ink);
        border-radius: 12px;
        display: grid;
        place-items: center;
        font-size: 0.72rem;
        font-weight: 900;
        letter-spacing: 0.02em;
        color: var(--cream);
        flex-shrink: 0;
      }

      .brand-word { color: var(--ink); }
      .brand-ish { color: var(--peach); }

      .nav-pill {
        background: rgba(255,255,255,0.72);
        border: 1px solid var(--card-border);
        border-radius: 99px;
        padding: 8px 18px;
        font-size: 0.875rem;
        font-weight: 700;
        color: var(--ink-soft);
        backdrop-filter: blur(8px);
        transition: all 0.2s;
        min-height: 40px;
        display: inline-flex;
        align-items: center;
      }
      .nav-pill:hover { color: var(--ink); background: white; }

      /* ── Hero ── */
      .hero {
        max-width: 1160px;
        margin: 0 auto;
        padding: clamp(32px, 6vw, 72px) clamp(20px, 5vw, 64px) clamp(48px, 8vw, 96px);
        display: grid;
        grid-template-columns: 1fr min(420px, 45%);
        align-items: center;
        gap: clamp(40px, 8vw, 96px);
      }

      .eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-size: 0.78rem;
        font-weight: 800;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--peach);
        margin-bottom: 20px;
      }
      .eyebrow::before {
        content: '';
        width: 20px;
        height: 2px;
        background: var(--peach);
        border-radius: 99px;
        display: block;
      }

      h1 {
        font-family: 'Nunito', sans-serif;
        font-size: clamp(3.6rem, 10vw, 7.5rem);
        font-weight: 900;
        line-height: 0.9;
        letter-spacing: -0.02em;
        color: var(--ink);
        margin-bottom: 8px;
      }

      .hero-tagline {
        font-family: 'Nunito', sans-serif;
        font-size: clamp(1.15rem, 2.5vw, 1.6rem);
        font-weight: 700;
        color: var(--ink-soft);
        font-style: italic;
        margin-bottom: 28px;
      }

      .hero-lede {
        font-size: clamp(1rem, 1.6vw, 1.125rem);
        line-height: 1.7;
        color: var(--ink-soft);
        max-width: 520px;
        margin-bottom: 36px;
      }

      .hero-actions {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
      }

      .btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 14px 24px;
        border-radius: 14px;
        font-size: 0.95rem;
        font-weight: 800;
        transition: all 0.18s cubic-bezier(0.34, 1.56, 0.64, 1);
        min-height: 48px;
        white-space: nowrap;
      }

      .btn-primary {
        background: var(--ink);
        color: var(--cream);
        border: 2px solid var(--ink);
      }
      .btn-primary:hover {
        transform: translateY(-2px) scale(1.02);
        box-shadow: 0 8px 24px rgba(45,36,32,0.2);
      }

      .btn-soft {
        background: rgba(255,255,255,0.8);
        color: var(--ink);
        border: 2px solid var(--card-border);
        backdrop-filter: blur(8px);
      }
      .btn-soft:hover {
        transform: translateY(-2px) scale(1.02);
        background: white;
        box-shadow: var(--card-shadow-hover);
      }

      /* ── Phone mockup ── */
      .phone-wrap {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 580px;
      }

      .phone-glow {
        position: absolute;
        border-radius: 999px;
        pointer-events: none;
        filter: blur(48px);
        opacity: 0.55;
      }
      .glow-a {
        width: 200px; height: 200px;
        background: var(--lilac);
        top: 20px; right: -20px;
      }
      .glow-b {
        width: 180px; height: 180px;
        background: var(--peach);
        bottom: 40px; left: -10px;
      }
      .glow-c {
        width: 160px; height: 160px;
        background: var(--mint);
        bottom: 100px; right: 30px;
        opacity: 0.35;
      }

      .phone {
        position: relative;
        width: min(82vw, 320px);
        border-radius: 40px;
        background: #1c1820;
        border: 2.5px solid rgba(255,255,255,0.06);
        padding: 10px;
        box-shadow:
          0 40px 80px rgba(30,20,40,0.36),
          0 0 0 1px rgba(255,255,255,0.04),
          inset 0 1px 0 rgba(255,255,255,0.08);
        transform: rotate(2.5deg);
        transition: transform 0.4s ease;
      }
      .phone:hover { transform: rotate(0.5deg) translateY(-4px); }

      .phone-notch {
        height: 26px;
        display: grid;
        place-items: center;
        margin-bottom: 2px;
      }
      .phone-notch span {
        width: 68px; height: 6px;
        background: #2e2a34;
        border-radius: 99px;
      }

      .app-screen {
        background: #f5f3f8;
        border-radius: 30px;
        padding: 18px 16px;
        min-height: 490px;
        overflow: hidden;
      }

      /* App UI inside mockup */
      .app-status {
        display: flex;
        justify-content: space-between;
        font-size: 10px;
        font-weight: 800;
        color: #3d3547;
        margin-bottom: 14px;
        padding: 0 2px;
      }

      .app-header-row {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin-bottom: 10px;
      }
      .app-greeting {
        font-family: 'Nunito', sans-serif;
        font-size: 17px;
        font-weight: 900;
        color: #2d2420;
        line-height: 1.15;
      }
      .app-date-small {
        font-size: 10px;
        font-weight: 600;
        color: #9391a0;
        margin-top: 2px;
      }

      .streak-chip {
        display: flex;
        align-items: center;
        gap: 4px;
        background: white;
        border: 1px solid rgba(0,0,0,0.07);
        border-radius: 99px;
        padding: 5px 10px;
        font-size: 11px;
        font-weight: 800;
        color: #2d2420;
      }

      .progress-bar {
        height: 3px;
        background: #e8e6f0;
        border-radius: 99px;
        overflow: hidden;
        margin-bottom: 14px;
      }
      .progress-fill {
        height: 100%;
        width: 55%;
        background: linear-gradient(90deg, #7c3aed, #c4b5fd);
        border-radius: 99px;
      }

      /* Widget today */
      .widget {
        background: white;
        border-radius: 16px;
        border: 1px solid rgba(0,0,0,0.06);
        overflow: hidden;
        margin-bottom: 10px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.04);
      }
      .widget-stripe {
        height: 3px;
        background: #7c3aed;
      }
      .widget-stripe-blue { background: #0284c7; }

      .widget-body { padding: 11px 13px; }

      .widget-header {
        display: flex;
        align-items: center;
        gap: 7px;
        margin-bottom: 9px;
      }
      .widget-icon {
        width: 24px; height: 24px;
        border-radius: 8px;
        background: rgba(124,58,237,0.12);
        display: grid;
        place-items: center;
        font-size: 12px;
      }
      .widget-title {
        font-size: 12px;
        font-weight: 800;
        color: #2d2420;
        flex: 1;
      }
      .widget-badge {
        font-size: 10px;
        font-weight: 800;
        color: #7c3aed;
        background: rgba(124,58,237,0.1);
        border-radius: 99px;
        padding: 2px 7px;
      }

      .task-row {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 5px 0;
        border-top: 1px solid #f3f0f8;
      }
      .task-check {
        width: 16px; height: 16px;
        border-radius: 50%;
        border: 1.5px solid #d0cce0;
        flex-shrink: 0;
      }
      .task-check.done {
        background: #7c3aed;
        border-color: #7c3aed;
        display: flex;
        align-items: center;
        justify-content: center;
      }
      .task-check.done svg { display: block; }
      .task-text {
        font-size: 11px;
        font-weight: 600;
        color: #3d3547;
        flex: 1;
        line-height: 1.3;
      }
      .task-text.done-text {
        text-decoration: line-through;
        opacity: 0.4;
      }
      .task-chip {
        font-size: 9px;
        font-weight: 800;
        padding: 2px 6px;
        border-radius: 99px;
        flex-shrink: 0;
      }
      .chip-overdue { background: #fee2e2; color: #b91c1c; }
      .chip-today { background: #fff7ed; color: #c2410c; }
      .chip-soon { background: #f0fdf4; color: #15803d; }

      /* ── Ticker ── */
      .ticker-wrap {
        overflow: hidden;
        border-top: 1px solid rgba(45,36,32,0.07);
        border-bottom: 1px solid rgba(45,36,32,0.07);
        background: rgba(255,255,255,0.5);
        backdrop-filter: blur(8px);
        padding: 16px 0;
        margin: 0;
      }
      .ticker-inner {
        display: flex;
        gap: 14px;
        animation: ticker 22s linear infinite;
        width: max-content;
      }
      @keyframes ticker {
        0% { transform: translateX(0); }
        100% { transform: translateX(-50%); }
      }
      .ticker-tag {
        background: white;
        border: 1px solid var(--card-border);
        border-radius: 99px;
        padding: 8px 18px;
        font-size: 0.82rem;
        font-weight: 800;
        color: var(--ink-soft);
        white-space: nowrap;
        box-shadow: 0 2px 8px rgba(100,60,40,0.05);
        display: flex;
        align-items: center;
        gap: 7px;
      }
      .ticker-dot {
        width: 8px; height: 8px;
        border-radius: 50%;
        flex-shrink: 0;
      }

      /* ── Features ── */
      .features {
        max-width: 1160px;
        margin: 0 auto;
        padding: clamp(56px, 8vw, 96px) clamp(20px, 5vw, 64px);
      }

      .section-eyebrow {
        text-align: center;
        font-size: 0.78rem;
        font-weight: 800;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--mint);
        margin-bottom: 14px;
      }

      .section-title {
        font-family: 'Nunito', sans-serif;
        text-align: center;
        font-size: clamp(1.8rem, 4vw, 3.2rem);
        font-weight: 900;
        color: var(--ink);
        line-height: 1.1;
        letter-spacing: -0.02em;
        max-width: 680px;
        margin: 0 auto 56px;
      }

      .feature-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
      }

      .feature-card {
        background: white;
        border-radius: 20px;
        border: 1px solid var(--card-border);
        padding: 28px 24px;
        box-shadow: var(--card-shadow);
        transition: all 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
        position: relative;
        overflow: hidden;
      }
      .feature-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--card-shadow-hover);
      }
      .feature-card::before {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 20px;
        opacity: 0;
        transition: opacity 0.3s;
      }
      .feature-card:hover::before { opacity: 1; }

      .fc-peach::before { background: radial-gradient(ellipse at 50% 0%, rgba(255,159,122,0.06), transparent 60%); }
      .fc-mint::before  { background: radial-gradient(ellipse at 50% 0%, rgba(93,212,176,0.07), transparent 60%); }
      .fc-lilac::before { background: radial-gradient(ellipse at 50% 0%, rgba(196,168,245,0.07), transparent 60%); }

      .feature-num {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 12px;
        font-family: 'Nunito', sans-serif;
        font-weight: 900;
        font-size: 1.1rem;
        color: white;
        margin-bottom: 20px;
        flex-shrink: 0;
      }
      .num-peach { background: linear-gradient(135deg, #ff9f7a, #ff7757); }
      .num-mint  { background: linear-gradient(135deg, #5dd4b0, #2cb894); }
      .num-lilac { background: linear-gradient(135deg, #c4a8f5, #a57ef0); }

      .feature-card h3 {
        font-family: 'Nunito', sans-serif;
        font-size: 1.15rem;
        font-weight: 900;
        color: var(--ink);
        margin-bottom: 10px;
        line-height: 1.25;
      }
      .feature-card p {
        font-size: 0.95rem;
        line-height: 1.65;
        color: var(--ink-soft);
      }

      /* ── Big quote ── */
      .quote-section {
        padding: clamp(48px,7vw,80px) clamp(20px, 5vw, 64px);
        text-align: center;
      }
      .quote-inner {
        max-width: 800px;
        margin: 0 auto;
        background: white;
        border-radius: 28px;
        border: 1px solid var(--card-border);
        padding: clamp(36px, 6vw, 64px) clamp(28px, 5vw, 64px);
        box-shadow: var(--card-shadow);
        position: relative;
        overflow: hidden;
      }
      .quote-inner::before {
        content: '';
        position: absolute;
        top: 0; left: 0; right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--peach), var(--lilac), var(--mint));
      }
      .quote-mark {
        font-family: Georgia, serif;
        font-size: 5rem;
        line-height: 0.7;
        color: var(--peach-light);
        margin-bottom: 12px;
        display: block;
      }
      .quote-text {
        font-family: 'Nunito', sans-serif;
        font-size: clamp(1.3rem, 3vw, 2rem);
        font-weight: 800;
        color: var(--ink);
        line-height: 1.35;
        font-style: italic;
        margin-bottom: 20px;
      }
      .quote-sub {
        font-size: 0.9rem;
        color: var(--ink-muted);
        font-weight: 600;
      }

      /* ── How it works ── */
      .how {
        max-width: 1160px;
        margin: 0 auto;
        padding: 0 clamp(20px, 5vw, 64px) clamp(56px, 8vw, 96px);
      }

      .how-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
        counter-reset: steps;
      }

      .how-card {
        background: white;
        border-radius: 20px;
        border: 1px solid var(--card-border);
        padding: 24px 20px;
        box-shadow: var(--card-shadow);
        position: relative;
        transition: transform 0.2s;
      }
      .how-card:hover { transform: translateY(-3px); }

      .how-icon {
        font-size: 1.8rem;
        margin-bottom: 14px;
        display: block;
        line-height: 1;
      }
      .how-card h4 {
        font-family: 'Nunito', sans-serif;
        font-size: 0.95rem;
        font-weight: 900;
        color: var(--ink);
        margin-bottom: 8px;
      }
      .how-card p {
        font-size: 0.85rem;
        line-height: 1.6;
        color: var(--ink-soft);
      }

      .how-connector {
        position: absolute;
        top: 36px;
        right: -18px;
        color: var(--ink-muted);
        font-size: 1.2rem;
        z-index: 2;
        opacity: 0.4;
      }
      .how-card:last-child .how-connector { display: none; }

      /* ── Rewards / fun bits ── */
      .rewards {
        padding: 0 clamp(20px, 5vw, 64px) clamp(56px, 8vw, 96px);
        max-width: 1160px;
        margin: 0 auto;
      }

      .rewards-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        align-items: start;
      }

      .reward-copy { padding: clamp(16px, 4vw, 40px) 0; }
      .reward-copy h2 {
        font-family: 'Nunito', sans-serif;
        font-size: clamp(1.8rem, 4vw, 3rem);
        font-weight: 900;
        color: var(--ink);
        line-height: 1.1;
        letter-spacing: -0.02em;
        margin-bottom: 18px;
      }
      .reward-copy p {
        font-size: 1rem;
        line-height: 1.7;
        color: var(--ink-soft);
        max-width: 460px;
        margin-bottom: 24px;
      }

      .reward-chips {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
      }
      .reward-chip {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        padding: 9px 16px;
        border-radius: 99px;
        font-size: 0.875rem;
        font-weight: 800;
        border: 1.5px solid;
      }
      .rc-peach  { background: var(--peach-pale); color: #c04000; border-color: var(--peach-light); }
      .rc-mint   { background: var(--mint-pale);  color: #0e7a5a; border-color: var(--mint-light); }
      .rc-lilac  { background: var(--lilac-pale); color: #6930c3; border-color: var(--lilac-light); }
      .rc-sun    { background: var(--sun-light);  color: #a06000; border-color: #ffe082; }
      .rc-sky    { background: var(--sky-light);  color: #0a5a8a; border-color: #b3e0ff; }
      .rc-rose   { background: var(--rose-light); color: #9b2a4a; border-color: var(--rose); }

      .reward-cards {
        display: flex;
        flex-direction: column;
        gap: 12px;
      }

      .reward-card {
        background: white;
        border-radius: 18px;
        border: 1px solid var(--card-border);
        padding: 18px 20px;
        box-shadow: var(--card-shadow);
        display: flex;
        align-items: center;
        gap: 16px;
        transition: transform 0.2s;
      }
      .reward-card:hover { transform: translateX(4px); }

      .reward-card-icon {
        width: 48px;
        height: 48px;
        border-radius: 14px;
        display: grid;
        place-items: center;
        font-size: 1.5rem;
        flex-shrink: 0;
      }
      .rci-sun   { background: var(--sun-light); }
      .rci-mint  { background: var(--mint-pale); }
      .rci-lilac { background: var(--lilac-light); }
      .rci-rose  { background: var(--rose-light); }

      .reward-card-text h4 {
        font-family: 'Nunito', sans-serif;
        font-size: 0.95rem;
        font-weight: 900;
        color: var(--ink);
        margin-bottom: 3px;
      }
      .reward-card-text p {
        font-size: 0.82rem;
        color: var(--ink-muted);
        line-height: 1.4;
      }

      /* ── CTA ── */
      .cta {
        padding: clamp(48px, 7vw, 80px) clamp(20px, 5vw, 64px);
        text-align: center;
      }
      .cta-inner {
        max-width: 640px;
        margin: 0 auto;
        background: var(--ink);
        border-radius: 28px;
        padding: clamp(40px, 6vw, 64px) clamp(28px, 5vw, 64px);
        position: relative;
        overflow: hidden;
      }
      .cta-inner::before {
        content: '';
        position: absolute;
        inset: 0;
        background:
          radial-gradient(ellipse at 20% 20%, rgba(196,168,245,0.2), transparent 50%),
          radial-gradient(ellipse at 80% 80%, rgba(93,212,176,0.15), transparent 50%);
        pointer-events: none;
      }
      .cta-inner h2 {
        font-family: 'Nunito', sans-serif;
        font-size: clamp(1.8rem, 4vw, 2.8rem);
        font-weight: 900;
        color: white;
        line-height: 1.1;
        letter-spacing: -0.02em;
        margin-bottom: 14px;
        position: relative;
      }
      .cta-inner p {
        font-size: 1rem;
        line-height: 1.6;
        color: rgba(255,255,255,0.6);
        margin-bottom: 28px;
        position: relative;
      }
      .cta-actions {
        display: flex;
        gap: 12px;
        justify-content: center;
        flex-wrap: wrap;
        position: relative;
      }
      .btn-cream {
        background: var(--cream);
        color: var(--ink);
        border: 2px solid transparent;
        font-weight: 800;
      }
      .btn-cream:hover {
        background: white;
        transform: translateY(-2px) scale(1.02);
        box-shadow: 0 8px 24px rgba(0,0,0,0.3);
      }
      .btn-ghost-light {
        background: rgba(255,255,255,0.1);
        color: rgba(255,255,255,0.85);
        border: 2px solid rgba(255,255,255,0.2);
        font-weight: 800;
      }
      .btn-ghost-light:hover {
        background: rgba(255,255,255,0.18);
        transform: translateY(-2px);
      }

      /* ── Footer ── */
      footer {
        padding: 28px clamp(20px, 5vw, 64px);
        border-top: 1px solid rgba(45,36,32,0.08);
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        flex-wrap: wrap;
        max-width: 1160px;
        margin: 0 auto;
      }
      footer p {
        font-size: 0.82rem;
        color: var(--ink-muted);
      }

      /* ── Animations ── */
      @keyframes float {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-8px); }
      }
      .phone-wrap { animation: float 5s ease-in-out infinite; }
      .phone-wrap:hover { animation: none; }

      /* ── Responsive ── */
      @media (max-width: 900px) {
        .hero { grid-template-columns: 1fr; }
        .phone-wrap { min-height: 480px; order: -1; }
        .feature-grid { grid-template-columns: 1fr 1fr; }
        .how-grid { grid-template-columns: 1fr 1fr; }
        .rewards-grid { grid-template-columns: 1fr; }
      }

      @media (max-width: 600px) {
        .feature-grid { grid-template-columns: 1fr; }
        .how-grid { grid-template-columns: 1fr 1fr; }
      }

      @media (max-width: 480px) {
        .how-grid { grid-template-columns: 1fr; }
        footer { flex-direction: column; text-align: center; }
      }

      @media (prefers-reduced-motion: reduce) {
        *, *::before, *::after {
          animation-duration: 0.01ms !important;
          transition-duration: 0.01ms !important;
        }
      }
