:root{
    --cream:#FBF6EA;
    --cream-alt:#F5EDDA;
    --card:#FFFFFF;
    --ink:#2B2418;
    --ink-soft:#5b5240;
    --muted:#8c826c;
    --border:rgba(43,36,24,0.09);
    --gold:#D9A62E;
    --gold-light:#F3C24E;
    --gold-dark:#A8790F;
    --serif:'Playfair Display', serif;
    --sans:'Poppins', sans-serif;
    --mono:'JetBrains Mono', monospace;
    --radius:22px;
  }
  *{ box-sizing:border-box; margin:0; padding:0; }
  html{ scroll-behavior:smooth; overflow-x:hidden; }
  body{
    background:var(--cream);
    color:var(--ink);
    font-family:var(--sans);
    line-height:1.55;
    overflow-x:hidden;
  }
  img{ display:block; max-width:100%; }
  a{ color:inherit; text-decoration:none; }
  ul{ list-style:none; }
  button{ font-family:inherit; cursor:pointer; }
  :focus-visible{ outline:2px solid var(--gold-dark); outline-offset:3px; }

  .wrap{ max-width:1180px; margin:0 auto; padding:0 24px; }
  .eyebrow{
    font-family:var(--mono); font-size:12.5px; letter-spacing:.03em;
    color:var(--gold-dark); display:inline-flex; align-items:center; gap:8px;
  }
  .eyebrow::before{ content:"//"; color:var(--muted); }

  h1,h2,h3{ font-family:var(--serif); font-weight:600; letter-spacing:-.01em; color:var(--ink); }
  em{ font-style:italic; color:var(--gold-dark); font-weight:600; }

  header{
    position:fixed; top:0; left:0; right:0; z-index:100;
    background:rgba(251,246,234,0.82);
    backdrop-filter:blur(14px) saturate(140%);
    border-bottom:1px solid var(--border);
  }
  nav{
    display:flex; align-items:center; justify-content:space-between;
    padding:16px 24px; max-width:1180px; margin:0 auto;
  }
  .logo{
    font-family:var(--serif); font-weight:700; font-size:22px;
    display:flex; align-items:center; gap:3px;
  }
  .logo .zen{ color:var(--gold-dark); }
  .logo .spark{ font-size:15px; margin-left:3px; }
  .nav-links{ display:flex; gap:34px; align-items:center; }
  .nav-links a{ font-size:14.5px; color:var(--ink-soft); font-weight:500; transition:color .2s; }
  .nav-links a:hover{ color:var(--ink); }
  .nav-cta{
    background:linear-gradient(135deg, var(--gold-light), var(--gold-dark));
    color:#241a04; padding:11px 22px; border-radius:100px;
    font-size:14px; font-weight:600; border:none;
    box-shadow:0 8px 20px -8px rgba(169,121,15,0.55);
    transition:transform .2s ease;
  }
  .nav-cta:hover{ transform:translateY(-2px); }
  .nav-cta-mobile{ display: none; }
  .menu-btn{ display:none; background:none; border:none; color:var(--ink); width:36px; height:36px; position:relative; }
  .menu-btn span{ display:block; height:2px; width:22px; background:var(--ink); position:absolute; left:7px; transition:.25s; }
  .menu-btn span:nth-child(1){ top:13px; } .menu-btn span:nth-child(2){ top:20px; } .menu-btn span:nth-child(3){ top:27px; }
  .menu-btn.open span:nth-child(1){ transform:rotate(45deg); top:19px; }
  .menu-btn.open span:nth-child(2){ opacity:0; }
  .menu-btn.open span:nth-child(3){ transform:rotate(-45deg); top:19px; }

  .hero{
    padding:168px 0 100px; position:relative;
    background:
      radial-gradient(ellipse 900px 520px at 10% -10%, rgba(217,166,46,0.16), transparent 60%),
      radial-gradient(ellipse 700px 500px at 100% 0%, rgba(217,166,46,0.10), transparent 60%);
  }
  .hero-inner{ display:grid; grid-template-columns:1.05fr .95fr; gap:56px; align-items:center; }
  .hero h1{ font-size:clamp(36px,4.6vw,56px); line-height:1.08; }
  .hero p.sub{ margin-top:22px; font-size:17px; color:var(--ink-soft); max-width:460px; }
  .hero-ctas{ display:flex; gap:14px; margin-top:32px; flex-wrap:wrap; }
  .btn-store{
    display:flex; align-items:center; gap:10px; background:var(--card);
    border:1px solid var(--border); padding:12px 20px; border-radius:14px;
    box-shadow:0 6px 18px -12px rgba(43,36,24,0.3);
    transition:border-color .2s, transform .2s;
  }
  .btn-store:hover{ border-color:var(--gold); transform:translateY(-2px); }
  .btn-store svg{ width:22px; height:22px; flex-shrink:0; }
  .btn-store .store-text{ display:flex; flex-direction:column; line-height:1.15; }
  .btn-store .store-text small{ font-size:10.5px; color:var(--muted); }
  .btn-store .store-text strong{ font-size:14.5px; font-weight:600; }


  .hero-visual{ position:relative; display:flex; justify-content:center; }
  .phone{
    width:260px; border-radius:34px; background:#111;
    padding:10px; box-shadow:0 40px 70px -30px rgba(43,36,24,0.45), 0 0 0 1px rgba(0,0,0,0.05);
    position:relative; z-index:2; transform:rotate(-2deg);
  }
  .phone img{ border-radius:24px; width:100%; display:block; }
  .float-chip{
    position:absolute; background:var(--card); border:1px solid var(--border);
    border-radius:14px; padding:10px 14px; font-size:12.5px; font-weight:600;
    box-shadow:0 12px 26px -14px rgba(43,36,24,0.35);
    display:flex; align-items:center; gap:8px; z-index:3;
    animation:floaty 4.5s ease-in-out infinite;
  }
  .float-chip .dot{ width:8px; height:8px; border-radius:50%; }
  .chip-weather{ top:8%; left:-8%; animation-delay:.2s; }
  .chip-weather .dot{ background:#4f8cff; }
  .chip-mood{ bottom:16%; right:-10%; animation-delay:1s; }
  .chip-mood .dot{ background:#ff6f91; }
  @keyframes floaty{ 0%,100%{ transform:translateY(0); } 50%{ transform:translateY(-10px); } }

  section{ padding:104px 0; }
  .section-head{ max-width:620px; margin-bottom:52px; }
  .section-head h2{ font-size:clamp(28px,3.2vw,38px); margin-top:14px; line-height:1.18; }
  .section-head p{ color:var(--ink-soft); margin-top:14px; font-size:16px; }
  #features{ background:var(--cream-alt); border-top:1px solid var(--border); border-bottom:1px solid var(--border); }

  .feature-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }
  .feature-card{
    background:var(--card); border:1px solid var(--border); border-radius:18px;
    padding:28px 24px; display:flex; flex-direction:column; gap:14px;
    transition:transform .25s ease, box-shadow .25s ease;
  }
  .feature-card:hover{ transform:translateY(-4px); box-shadow:0 20px 34px -22px rgba(43,36,24,0.35); }
  .feature-icon{
    width:42px; height:42px; border-radius:12px;
    background:linear-gradient(135deg, rgba(217,166,46,0.18), rgba(217,166,46,0.06));
    color:var(--gold-dark); display:flex; align-items:center; justify-content:center;
  }
  .feature-icon svg{ width:22px; height:22px; }
  .feature-card h3{ font-size:16.5px; font-family:var(--sans); font-weight:600; }
  .feature-card p{ color:var(--ink-soft); font-size:13.8px; }

  .steps{ display:grid; grid-template-columns:repeat(3,1fr); gap:32px; }
  .step{ position:relative; padding-top:8px; }
  .step .num{ font-family:var(--mono); font-size:13px; color:var(--muted); display:block; margin-bottom:16px; }
  .step h3{ font-size:20px; font-family:var(--sans); font-weight:600; margin-bottom:10px; }
  .step p{ color:var(--ink-soft); font-size:15px; }
  .step-line{ position:absolute; top:6px; left:38px; right:-32px; height:1px; background:linear-gradient(90deg, var(--border), transparent); }
  .step:last-child .step-line{ display:none; }

  #mood{ background:var(--cream-alt); border-top:1px solid var(--border); border-bottom:1px solid var(--border); }
  .mood-grid{ display:flex; gap:14px; flex-wrap:wrap; }
  .mood-chip{
    background:var(--card); border:1px solid var(--border); border-radius:16px;
    padding:16px 22px; display:flex; align-items:center; gap:10px; font-weight:600; font-size:14.5px;
    flex:1 1 150px;
  }
  .mood-chip .emo{ font-size:18px; }

  .showcase-scroll{
    display:flex; gap:26px; overflow-x:auto; padding:10px 4px 30px;
    scroll-snap-type:x mandatory;
    -webkit-overflow-scrolling:touch;
  }
  .showcase-scroll::-webkit-scrollbar{ height:6px; }
  .showcase-scroll::-webkit-scrollbar-thumb{ background:var(--border); border-radius:10px; }
  .showcase-item{ flex:0 0 auto; width:220px; scroll-snap-align:start; text-align:center; }
  .showcase-item .phone-frame{
    width:220px; border-radius:28px; background:#111; padding:8px;
    box-shadow:0 24px 44px -22px rgba(43,36,24,0.4);
  }
  .showcase-item .phone-frame img{ border-radius:20px; width:100%; }
  .showcase-item .cap{ margin-top:16px; font-size:14px; font-weight:600; }
  .showcase-item .sub-cap{ font-size:12.5px; color:var(--muted); margin-top:4px; }


  .testi-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
  .testi-card{ background:var(--card); border:1px solid var(--border); border-radius:var(--radius); padding:26px; }
  .testi-card p{ font-size:15px; color:var(--ink); line-height:1.6; }
  .testi-who{ margin-top:18px; display:flex; align-items:center; gap:10px; }
  .testi-avatar{ width:32px; height:32px; border-radius:50%; background:linear-gradient(135deg,var(--gold-light),var(--gold-dark)); }
  .testi-who span{ font-size:13.5px; color:var(--muted); }

  .faq-item{ border-bottom:1px solid var(--border); padding:22px 0; }
  .faq-q{ display:flex; align-items:center; justify-content:space-between; cursor:pointer; font-size:16.5px; font-weight:500; }
  .faq-q .plus{ width:20px; height:20px; position:relative; flex-shrink:0; margin-left:20px; }
  .faq-q .plus::before, .faq-q .plus::after{ content:""; position:absolute; background:var(--muted); border-radius:2px; }
  .faq-q .plus::before{ width:14px; height:2px; top:9px; left:3px; }
  .faq-q .plus::after{ width:2px; height:14px; left:9px; top:3px; transition:transform .25s; }
  .faq-item.open .plus::after{ transform:rotate(90deg); }
  .faq-a{ max-height:0; overflow:hidden; transition:max-height .3s ease; color:var(--ink-soft); font-size:15px; }
  .faq-a p{ padding-top:14px; max-width:640px; }

  .download-cta{
    background:linear-gradient(135deg, var(--cream-alt), #efe3c4);
    border-radius:28px; padding:70px 56px; text-align:center; position:relative; overflow:hidden;
    border:1px solid var(--border);
  }
  .download-cta::before{ content:""; position:absolute; inset:0; background:radial-gradient(ellipse 500px 300px at 50% 0%, rgba(217,166,46,0.22), transparent 70%); }
  .download-cta h2{ font-size:clamp(28px,4vw,40px); position:relative; }
  .download-cta p{ color:var(--ink-soft); margin-top:14px; position:relative; }
  .download-cta .hero-ctas{ justify-content:center; margin-top:30px; position:relative; }

  footer{ padding:60px 0 40px; border-top:1px solid var(--border); }
  .footer-top{ display:flex; justify-content:space-between; align-items:flex-start; flex-wrap:wrap; gap:40px; }
  .footer-links{ display:flex; gap:56px; flex-wrap:wrap; }
  .footer-col h4{ font-family:var(--mono); font-size:12px; color:var(--muted); margin-bottom:14px; letter-spacing:.03em; }
  .footer-col a{ display:block; font-size:14.5px; color:var(--ink-soft); margin-bottom:10px; transition:color .2s; }
  .footer-col a:hover{ color:var(--ink); }
  .footer-bottom{
    margin-top:50px; padding-top:24px; border-top:1px solid var(--border);
    display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:14px;
    font-size:13px; color:var(--muted);
  }

  .reveal{ opacity:0; transform:translateY(22px); transition:opacity .7s ease, transform .7s ease; }
  .reveal.in{ opacity:1; transform:translateY(0); }

  @media (max-width:980px){
    .hero-inner{ grid-template-columns:1fr; }
    .hero-visual{ margin-top:20px; }
    .feature-grid{ grid-template-columns:repeat(2,1fr); }
    .steps{ grid-template-columns:1fr; gap:40px; }
    .step-line{ display:none; }
    .testi-grid{ grid-template-columns:1fr; }
    .rewards-card{ grid-template-columns:1fr; }
    .footer-top{ flex-direction:column; }
  }
  @media (max-width:640px){
    .nav-links{
      position:fixed; top:64px; left:0; right:0; bottom:0; background:var(--cream);
      flex-direction:column; padding:32px 24px; transform:translateX(100%);
      transition:transform .3s ease; align-items:stretch; gap:22px;
      overflow-y:auto;
    }
    .nav-links.open{ transform:translateX(0); }
    .nav-links a{ font-size:18px; display:block; width:100%; padding:8px 0; }
    .menu-btn{ display:block; }
    .nav-cta{ display:none; }
    .nav-links .nav-cta-mobile{ display:inline-block; margin-top:10px; }
    .feature-grid{ grid-template-columns:1fr; }
    section{ padding:72px 0; }
    .hero{ padding:126px 0 60px; }
    .download-cta{ padding:46px 24px; }
    .hero-ctas, .download-cta .hero-ctas{ flex-direction:column; align-items:center; }
    .btn-store{ width:100%; max-width:280px; justify-content:center; padding:11px 18px; }
    .btn-store svg{ width:19px; height:19px; }
    .btn-store .store-text small{ font-size:9.5px; }
    .btn-store .store-text strong{ font-size:13.5px; }
    .chip-weather, .chip-mood{ display:none; }
    .phone{ width:min(230px, 62vw); }
    .showcase-item{ width:180px; }
    .showcase-item .phone-frame{ width:180px; }
    .mood-chip{ flex:1 1 100%; }
    .footer-links{
      display:grid;
      grid-template-columns:repeat(3, 1fr);
      gap:24px 12px;
      width:100%;
    }
    .footer-links a{ font-size:13px; white-space:normal; }
  }

  /* Legal / Privacy Page Styles */
  .legal-hero {
    padding: 140px 0 60px;
    background: radial-gradient(ellipse 700px 400px at 50% -10%, rgba(217, 166, 46, 0.12), transparent 60%);
    text-align: center;
    border-bottom: 1px solid var(--border);
  }
  .legal-hero h1 {
    font-size: clamp(32px, 4vw, 48px);
    margin-top: 10px;
  }
  .legal-content {
    padding: 60px 0 100px;
  }
  .legal-text {
    max-width: 800px;
    margin: 0 auto;
  }
  .legal-text h2 {
    font-size: 22px;
    margin: 40px 0 16px;
    font-family: var(--serif);
    font-weight: 600;
    color: var(--ink);
  }
  .legal-text p {
    color: var(--ink-soft);
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 20px;
  }
  .legal-text ul {
    list-style: disc;
    margin-left: 24px;
    margin-bottom: 20px;
    color: var(--ink-soft);
    font-size: 15px;
  }
  .legal-text li {
    margin-bottom: 8px;
    line-height: 1.6;
  }
  .last-updated {
    font-family: var(--mono);
    font-size: 12.5px;
    color: var(--muted);
  }

  /* Legal Tables */
  .legal-table-wrapper {
    overflow-x: auto;
    margin: 28px 0;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: var(--card);
  }
  .legal-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 14px;
    min-width: 600px;
  }
  .legal-table th, .legal-table td {
    padding: 14px 18px;
    border-bottom: 1px solid var(--border);
    line-height: 1.5;
  }
  .legal-table th {
    background: var(--cream-alt);
    font-family: var(--sans);
    font-weight: 600;
    color: var(--ink);
  }
  .legal-table td {
    color: var(--ink-soft);
    vertical-align: top;
  }
  .legal-table tr:last-child td {
    border-bottom: none;
  }

  /* Quick Summary Card */
  .summary-card {
    background: linear-gradient(135deg, rgba(217, 166, 46, 0.1), rgba(217, 166, 46, 0.03));
    border: 1px solid rgba(217, 166, 46, 0.25);
    border-radius: 18px;
    padding: 26px;
    margin-bottom: 40px;
  }
  .summary-card h3 {
    font-size: 17px;
    margin-bottom: 16px;
    color: var(--gold-dark);
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--sans);
    font-weight: 600;
  }
  .summary-card ul {
    list-style: none !important;
    margin-left: 0 !important;
    margin-bottom: 0 !important;
  }
  .summary-card li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--ink-soft);
    line-height: 1.6;
  }
  .summary-card li:last-child {
    margin-bottom: 0;
  }
  .summary-card li::before {
    content: "⚡";
    position: absolute;
    left: 0;
    top: 0px;
    font-size: 13px;
  }