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

    :root {
      --ink:     #1a1a2e;
      --paper:   #faf8f4;
      --warm:    #f5efe6;
      --accent:  #e8612a;
      --accent2: #2a7ae8;
      --muted:   #7a7a8a;
      --border:  #e2ddd6;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--paper);
      color: var(--ink);
      font-size: 17px;
      line-height: 1.65;
      overflow-x: hidden;
    }

    /* ── NAV ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 20px 48px;
      background: rgba(250,248,244,0.9);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid transparent;
      transition: border-color 0.3s;
    }
    nav.scrolled { border-bottom-color: var(--border); }
    .nav-logo {
      font-family: 'Fraunces', serif;
      font-size: 22px;
      font-weight: 600;
      color: var(--ink);
      text-decoration: none;
      letter-spacing: -0.3px;
    }
    .nav-logo span { color: var(--accent); }
    .nav-signin {
      font-size: 14px;
      color: var(--muted);
      text-decoration: none;
      font-weight: 400;
      transition: color 0.2s;
    }
    .nav-signin:hover { color: var(--ink); }
    
      background: var(--ink);
      color: var(--paper);
      padding: 10px 22px;
      border-radius: 100px;
      font-size: 14px;
      font-weight: 500;
      text-decoration: none;
      letter-spacing: 0.2px;
      transition: background 0.2s, transform 0.15s;
    }
    .nav-cta:hover { background: var(--accent); transform: translateY(-1px); }

    /* ── HERO ── */
    .hero {
      min-height: 100vh;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
      padding-top: 80px;
      position: relative;
      overflow: hidden;
    }

    .hero-left {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 80px 64px 80px 80px;
      position: relative;
      z-index: 2;
    }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 28px;
    }
    .hero-eyebrow::before {
      content: '';
      display: block;
      width: 28px; height: 2px;
      background: var(--accent);
    }

    h1 {
      font-family: 'Fraunces', serif;
      font-size: clamp(44px, 5vw, 72px);
      font-weight: 300;
      line-height: 1.1;
      letter-spacing: -1.5px;
      color: var(--ink);
      margin-bottom: 8px;
    }
    h1 em {
      font-style: italic;
      color: var(--accent);
    }

    .hero-sub {
      font-size: 18px;
      color: var(--muted);
      font-weight: 300;
      margin-bottom: 48px;
      max-width: 440px;
      line-height: 1.7;
    }
    .hero-sub strong { color: var(--ink); font-weight: 500; }

    .hero-cta-group {
      display: flex;
      align-items: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--accent);
      color: white;
      padding: 16px 32px;
      border-radius: 100px;
      font-size: 16px;
      font-weight: 500;
      text-decoration: none;
      transition: transform 0.2s, box-shadow 0.2s;
      box-shadow: 0 4px 20px rgba(232,97,42,0.3);
    }
    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 32px rgba(232,97,42,0.4);
    }
    .btn-primary svg { width: 18px; height: 18px; }

    .hero-note {
      font-size: 13px;
      color: var(--muted);
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .hero-note::before {
      content: '✓';
      color: var(--accent);
      font-weight: 600;
    }

    /* ── HERO RIGHT: Phone mockup ── */
    .hero-right {
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--warm);
      position: relative;
      overflow: hidden;
    }

    .hero-right::before {
      content: '';
      position: absolute;
      width: 500px; height: 500px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(232,97,42,0.12) 0%, transparent 70%);
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
    }

    /* decorative floating badges */
    .float-badge {
      position: absolute;
      background: white;
      border-radius: 16px;
      padding: 12px 18px;
      box-shadow: 0 8px 32px rgba(0,0,0,0.1);
      font-size: 13px;
      font-weight: 500;
      display: flex;
      align-items: center;
      gap: 8px;
      animation: float 4s ease-in-out infinite;
    }
    .float-badge.b1 { top: 18%; right: 12%; animation-delay: 0s; }
    .float-badge.b2 { bottom: 28%; left: 8%; animation-delay: 1.5s; }
    .float-badge.b3 { bottom: 15%; right: 10%; animation-delay: 0.8s; }

    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-8px); }
    }

    .badge-icon { font-size: 20px; }
    .badge-text { line-height: 1.3; }
    .badge-text small { display: block; color: var(--muted); font-weight: 400; font-size: 11px; }

    /* Phone mockup */
    .phone-wrap {
      position: relative;
      z-index: 2;
    }
    .phone {
      width: 240px;
      background: var(--ink);
      border-radius: 36px;
      padding: 12px;
      box-shadow: 0 32px 80px rgba(26,26,46,0.3), 0 0 0 1px rgba(255,255,255,0.1);
      position: relative;
    }
    .phone-notch {
      width: 80px; height: 24px;
      background: var(--ink);
      border-radius: 0 0 16px 16px;
      margin: 0 auto 8px;
      position: relative;
      z-index: 2;
    }
    .phone-screen {
      background: #f8f6ff;
      border-radius: 26px;
      overflow: hidden;
      min-height: 420px;
    }
    .ps-header {
      background: var(--ink);
      padding: 20px 20px 28px;
      color: white;
    }
    .ps-greeting { font-size: 11px; opacity: 0.6; margin-bottom: 2px; }
    .ps-name { font-family: 'Fraunces', serif; font-size: 20px; font-weight: 400; }
    .ps-points {
      margin-top: 16px;
      background: rgba(255,255,255,0.1);
      border-radius: 12px;
      padding: 10px 14px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .ps-pts-num { font-family: 'Fraunces', serif; font-size: 28px; font-weight: 600; }
    .ps-pts-label { font-size: 11px; opacity: 0.6; }
    .ps-body { padding: 16px; }
    .ps-section-label {
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 10px;
    }
    .ps-task {
      background: white;
      border-radius: 12px;
      padding: 12px 14px;
      margin-bottom: 8px;
      display: flex;
      align-items: center;
      gap: 10px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    }
    .ps-task-icon { font-size: 18px; }
    .ps-task-name { font-size: 12px; font-weight: 500; flex: 1; }
    .ps-task-pts {
      font-size: 11px;
      font-weight: 600;
      color: var(--accent);
    }
    .ps-task.done { opacity: 0.5; }
    .ps-task.done .ps-task-name { text-decoration: line-through; }
    .ps-btn {
      display: block;
      background: var(--accent);
      color: white;
      border-radius: 10px;
      padding: 11px;
      text-align: center;
      font-size: 12px;
      font-weight: 600;
      margin-top: 12px;
    }

    /* ── SECTION BASE ── */
    section { padding: 100px 80px; }

    .section-label {
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 20px;
    }

    h2 {
      font-family: 'Fraunces', serif;
      font-size: clamp(32px, 3.5vw, 52px);
      font-weight: 300;
      line-height: 1.15;
      letter-spacing: -1px;
      margin-bottom: 16px;
    }
    h2 em { font-style: italic; color: var(--accent); }

    /* ── HOW IT WORKS ── */
    .how { background: var(--ink); color: var(--paper); }
    .how .section-label { color: rgba(255,255,255,0.4); }
    .how h2 { color: var(--paper); }

    .how-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2px;
      margin-top: 64px;
    }

    .how-step {
      background: rgba(255,255,255,0.04);
      padding: 40px 32px;
      border-radius: 4px;
      position: relative;
      transition: background 0.3s;
    }
    .how-step:hover { background: rgba(255,255,255,0.08); }
    .how-step:first-child { border-radius: 16px 4px 4px 16px; }
    .how-step:last-child { border-radius: 4px 16px 16px 4px; }

    .step-num {
      font-family: 'Fraunces', serif;
      font-size: 56px;
      font-weight: 300;
      color: rgba(255,255,255,0.12);
      line-height: 1;
      margin-bottom: 20px;
    }
    .step-icon { font-size:38px; margin-bottom: 16px; display: block; }
    .step-title {
      font-weight: 600;
      font-size: 18px;
      margin-bottom: 10px;
      color: var(--paper);
    }
    .step-desc { font-size: 15px; color:#eee; line-height: 1.6; }

    /* ── BENEFITS ── */
    .benefits { background: var(--paper); }

    .benefits-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
      margin-top: 64px;
    }

    .benefit-card {
      background: var(--warm);
      padding: 40px 36px;
      border-radius: 4px;
      position: relative;
      overflow: hidden;
      transition: transform 0.2s;
    }
    .benefit-card:hover { transform: translateY(-3px); }
    .benefit-card:first-child { border-radius: 16px 4px 4px 4px; }
    .benefit-card:nth-child(3) { border-radius: 4px 16px 4px 4px; }
    .benefit-card:nth-child(4) { border-radius: 4px 4px 4px 16px; }
    .benefit-card:last-child { border-radius: 4px 4px 16px 4px; }

    .benefit-card::after {
      content: '';
      position: absolute;
      bottom: 0; right: 0;
      width: 80px; height: 80px;
      border-radius: 50% 0 0 0;
      background: rgba(232,97,42,0.06);
    }

    .benefit-emoji { font-size: 32px; margin-bottom: 20px; display: block; }
    .benefit-title {
      font-family: 'Fraunces', serif;
      font-size: 20px;
      font-weight: 400;
      margin-bottom: 12px;
      letter-spacing: -0.3px;
    }
    .benefit-desc { font-size: 16px; color: var(--muted); line-height: 1.6; }

    /* ── BETA CTA ── */
    .beta-cta {
      background: var(--accent);
      color: white;
      text-align: center;
      padding: 120px 80px;
      position: relative;
      overflow: hidden;
    }
    .beta-cta::before {
      content: '';
      position: absolute;
      inset: 0;
      pointer-events: none;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }
    .beta-cta .section-label { color: rgba(255,255,255,0.6); }
    .beta-cta h2 { color: white; max-width: 640px; margin: 0 auto 16px; }
    .beta-cta p { font-size: 18px; color: rgba(255,255,255,0.8); margin-bottom: 48px; max-width: 480px; margin-left: auto; margin-right: auto; }

    .beta-form {
      display: flex;
      align-items: center;
      gap: 12px;
      justify-content: center;
      flex-wrap: wrap;
      position: relative;
      z-index: 2;
    }
    .beta-input {
      padding: 16px 24px;
      border-radius: 100px;
      border: none;
      font-size: 16px;
      font-family: 'DM Sans', sans-serif;
      width: 300px;
      background: rgba(255,255,255,0.2);
      color: white;
      outline: none;
      transition: background 0.2s;
    }
    .beta-input::placeholder { color: rgba(255,255,255,0.6); }
    .beta-input:focus { background: rgba(255,255,255,0.3); }


.btn-white {
  display: inline-block;
  background: white;
  color: var(--accent);
  padding: 16px 32px;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  position: relative;
  z-index: 10;
}

    .btn-white:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    }

    .beta-perks {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 32px;
      margin-top: 32px;
      font-size: 13px;
      color: rgba(255,255,255,0.7);
      position: relative;
      z-index: 2;
      flex-wrap: wrap;
    }
    .beta-perks span::before { content: '✓  '; font-weight: 600; }

    /* ── FOOTER ── */
    footer {
      padding: 40px 80px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: 13px;
    }
    .footer-logo {
      font-family: 'Fraunces', serif;
      font-size: 18px;
      font-weight: 600;
      color: var(--paper);
      height: 30px;
      display: block;

    }
    .footer-logo span { color: var(--accent); }

    /* ── ANIMATIONS ── */
    .fade-up {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .fade-up.visible {
      opacity: 1;
      transform: translateY(0);
    }
    .fade-up:nth-child(2) { transition-delay: 0.1s; }
    .fade-up:nth-child(3) { transition-delay: 0.2s; }
    .fade-up:nth-child(4) { transition-delay: 0.3s; }
    .fade-up:nth-child(5) { transition-delay: 0.4s; }
    .fade-up:nth-child(6) { transition-delay: 0.5s; }

    /* success state */
    .beta-success {
      display: none;
      background: rgba(255,255,255,0.2);
      border-radius: 16px;
      padding: 24px 40px;
      font-size: 18px;
      font-weight: 500;
      color: white;
    }
    .beta-success.show { display: block; }
    .beta-form.hide { display: none; }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      nav { padding: 16px 24px; }
      .hero { grid-template-columns: 1fr; min-height: auto; }
      .hero-left { padding: 60px 24px 40px; }
      .hero-right { min-height: 340px; }
      .float-badge.b2 { display: none; }
      section { padding: 64px 24px; }
      .how-grid { grid-template-columns: 1fr 1fr; }
      .how-step:first-child, .how-step:last-child { border-radius: 4px; }
      .how-step:nth-child(1) { border-radius: 16px 4px 4px 4px; }
      .how-step:nth-child(2) { border-radius: 4px 16px 4px 4px; }
      .how-step:nth-child(3) { border-radius: 4px 4px 4px 16px; }
      .how-step:nth-child(4) { border-radius: 4px 4px 16px 4px; }
      .benefits-grid { grid-template-columns: 1fr; }
      .benefit-card { border-radius: 16px !important; }
      .beta-cta { padding: 80px 24px; }
      .beta-input { width: 100%; max-width: 300px; }
      footer { padding: 32px 24px; flex-direction: column; gap: 12px; text-align: center; }
     .beta-perks { gap: 16px; }
     .nav-logo img {height: 24px;}
}
