:root{
      --ink:#171815;
      --ink-soft:#42443f;
      --muted:#72766e;
      --cream:#F3EFE7;
      --paper:#FCFAF6;
      --paper-2:#F7F3EC;
      --line:#DDD7CB;
      --moss:#66785F;
      --moss-dark:#4D6049;
      --mist:#DDE3D7;
      --peach:#E9D6C2;
      --lav:#D8D2E0;
      --sun:#E9DFC0;
      --black:#11120F;
      --white:#FFFFFF;
      --shadow:0 30px 90px rgba(43, 39, 31, .10);
      --shadow-soft:0 14px 40px rgba(43, 39, 31, .07);
      --radius-xl:36px;
      --radius-lg:28px;
      --radius-md:20px;
      --max:1180px;
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      color:var(--ink);
      background:
        radial-gradient(circle at 82% 8%, rgba(221,227,215,.65), transparent 28rem),
        radial-gradient(circle at 10% 34%, rgba(233,214,194,.42), transparent 24rem),
        var(--cream);
      font-family:"DM Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      line-height:1.55;
      -webkit-font-smoothing:antialiased;
    }

    a{color:inherit;text-decoration:none}
    button,input,textarea{font:inherit}
    .wrap{width:min(calc(100% - 40px),var(--max));margin-inline:auto}
    .serif{font-family:"Newsreader", Georgia, serif}
    .muted{color:var(--muted)}
    .desktop-only{display:block}

    .site-header{
      position:fixed;
      inset:0 0 auto;
      z-index:50;
      transition:.25s ease;
    }
    .site-header.is-scrolled{
      background:rgba(243,239,231,.84);
      backdrop-filter:blur(18px);
      border-bottom:1px solid rgba(221,215,203,.72);
    }
    .nav{
      height:76px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:22px;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:10px;
      font-size:22px;
      font-weight:600;
      letter-spacing:-.02em;
    }
    .brand-mark{
      width:34px;height:34px;border-radius:50%;
      display:grid;place-items:center;
      background:var(--black);color:white;
      font-family:"Newsreader", Georgia, serif;
      font-size:19px;
    }
    .nav-center{
      display:flex;gap:28px;
      font-size:14px;color:#565950;
    }
    .nav-center a:hover{color:var(--ink)}
    .btn{
      min-height:48px;
      padding:0 21px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:9px;
      border-radius:999px;
      border:1px solid transparent;
      font-weight:600;
      font-size:14px;
      transition:.2s ease;
      cursor:pointer;
    }
    .btn:hover{transform:translateY(-1px)}
    .btn-dark{
      background:var(--black);color:white;
      box-shadow:0 8px 24px rgba(17,18,15,.14);
    }
    .btn-light{
      background:rgba(255,255,255,.55);
      border-color:var(--line);
      color:var(--ink);
    }

    .hero{
      min-height:880px;
      padding:140px 0 88px;
      display:grid;
      grid-template-columns:minmax(0,1fr) minmax(420px,.9fr);
      gap:76px;
      align-items:center;
    }
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:9px;
      text-transform:uppercase;
      letter-spacing:.14em;
      font-size:12px;
      font-weight:700;
      color:var(--moss-dark);
    }
    .eyebrow::before{
      content:"";
      width:22px;height:1px;background:currentColor;opacity:.65;
    }
    h1,h2,h3,p{margin-top:0}
    .hero h1{
      font-family:"Newsreader", Georgia, serif;
      font-weight:400;
      font-size:clamp(64px,7.6vw,104px);
      line-height:.91;
      letter-spacing:-.055em;
      max-width:760px;
      margin:20px 0 28px;
    }
    .hero h1 em{
      font-style:italic;
      color:var(--moss-dark);
    }
    .hero .lede{
      font-size:20px;
      line-height:1.65;
      color:#5E625A;
      max-width:650px;
      margin-bottom:32px;
    }
    .hero-actions{display:flex;gap:12px;flex-wrap:wrap}
    .subnote{
      margin-top:16px;
      color:#777A73;
      font-size:13px;
    }

    .product-stage{
      position:relative;
      min-height:680px;
      display:grid;
      place-items:center;
    }
    .ambient{
      position:absolute;
      inset:70px 0 40px;
      border-radius:50%;
      background:
        radial-gradient(circle at 50% 30%, rgba(255,255,255,.95), rgba(221,227,215,.48) 44%, rgba(233,214,194,.24) 66%, transparent 72%);
      filter:blur(3px);
    }
    .phone{
      position:relative;
      z-index:3;
      width:355px;
      min-height:710px;
      border-radius:48px;
      background:#151613;
      padding:10px;
      box-shadow:0 45px 110px rgba(35,34,29,.22);
      transform:rotate(1.5deg);
    }
    .phone-screen{
      position:relative;
      overflow:hidden;
      min-height:690px;
      border-radius:39px;
      background:
        linear-gradient(180deg,rgba(255,255,255,.78),rgba(255,255,255,.12)),
        #F5F1EA;
      padding:26px 24px 22px;
      display:flex;
      flex-direction:column;
    }
    .phone-notch{
      position:absolute;
      top:10px;left:50%;transform:translateX(-50%);
      width:94px;height:28px;border-radius:18px;background:#151613;
    }
    .phone-top{
      padding-top:28px;
      display:flex;justify-content:space-between;align-items:center;
      font-size:12px;color:#696D65;
    }
    .phone-logo{
      font-family:"Newsreader", Georgia, serif;
      font-size:18px;color:#30332D;
    }
    .phone-body{
      margin:auto 0;
      padding:44px 0;
    }
    .phone-date{
      text-transform:uppercase;
      letter-spacing:.13em;
      font-size:11px;font-weight:700;
      color:var(--moss-dark);
      margin-bottom:17px;
    }
    .phone-question{
      font-family:"Newsreader", Georgia, serif;
      font-size:41px;
      line-height:1.08;
      letter-spacing:-.025em;
      margin-bottom:34px;
    }
    .answer-box{
      background:rgba(255,255,255,.58);
      border:1px solid rgba(192,188,177,.75);
      border-radius:22px;
      min-height:150px;
      padding:18px;
      color:#7A7E75;
      font-size:14px;
      line-height:1.65;
    }
    .phone-actions{
      margin-top:14px;
      display:flex;
      justify-content:space-between;
      align-items:center;
    }
    .voice{
      font-size:13px;font-weight:600;color:var(--moss-dark);
    }
    .circle-btn{
      width:44px;height:44px;border-radius:50%;
      display:grid;place-items:center;
      color:white;background:var(--black);
      font-size:18px;
    }
    .progress{
      display:flex;gap:6px;justify-content:center;
      margin-top:auto;
    }
    .progress span{
      width:24px;height:3px;border-radius:99px;background:#D2CEC4;
    }
    .progress span.active{background:var(--moss)}

    .memory-card,.journal-card,.voice-card{
      position:absolute;
      z-index:4;
      background:rgba(252,250,246,.93);
      backdrop-filter:blur(12px);
      border:1px solid rgba(210,204,193,.95);
      border-radius:22px;
      box-shadow:var(--shadow-soft);
    }
    .memory-card{
      width:245px;
      top:88px;
      right:-42px;
      padding:18px;
      transform:rotate(-2deg);
    }
    .journal-card{
      width:252px;
      bottom:58px;
      left:-65px;
      padding:20px;
      transform:rotate(-3deg);
    }
    .voice-card{
      width:190px;
      right:-40px;
      bottom:138px;
      padding:14px 16px;
      transform:rotate(2deg);
    }
    .card-kicker{
      text-transform:uppercase;
      letter-spacing:.12em;
      font-size:10px;
      font-weight:700;
      color:var(--moss-dark);
      margin-bottom:8px;
    }
    .memory-card strong,.voice-card strong{
      display:block;font-size:14px;line-height:1.4;
    }
    .memory-card p,.voice-card p{
      margin:6px 0 0;
      color:var(--muted);font-size:12px;line-height:1.5;
    }
    .journal-card time{
      display:block;
      color:#888B84;font-size:10px;text-transform:uppercase;letter-spacing:.12em;
      margin-bottom:8px;
    }
    .journal-card h4{
      font-family:"Newsreader", Georgia, serif;
      font-size:21px;font-weight:400;
      margin:0 0 10px;
    }
    .journal-card p{
      color:#5C6059;
      font-family:"Newsreader", Georgia, serif;
      font-size:13px;line-height:1.55;
      margin:0;
    }

    .trust-row{
      padding:0 0 34px;
    }
    .trust-inner{
      border-top:1px solid var(--line);
      border-bottom:1px solid var(--line);
      padding:18px 0;
      display:flex;align-items:center;justify-content:space-between;gap:20px;
      color:#777A72;font-size:13px;
    }
    .trust-items{display:flex;gap:24px;flex-wrap:wrap}
    .trust-items span::before{content:"✓";color:var(--moss-dark);font-weight:700;margin-right:7px}

    .section{padding:112px 0}
    .section-heading{
      max-width:820px;
      margin-bottom:54px;
    }
    .section-heading h2{
      font-family:"Newsreader", Georgia, serif;
      font-size:clamp(48px,5.6vw,76px);
      font-weight:400;
      line-height:.98;
      letter-spacing:-.045em;
      margin:14px 0 18px;
    }
    .section-heading p{
      color:var(--muted);
      font-size:18px;
      max-width:660px;
    }

    .ritual-grid{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:18px;
    }
    .ritual{
      position:relative;
      min-height:350px;
      border:1px solid var(--line);
      border-radius:var(--radius-lg);
      padding:30px;
      overflow:hidden;
      background:rgba(252,250,246,.76);
    }
    .ritual:nth-child(1){background:linear-gradient(160deg,#F9F6F0,#E7EDE2)}
    .ritual:nth-child(2){background:linear-gradient(160deg,#FBF7F1,#F0E1D1)}
    .ritual:nth-child(3){background:linear-gradient(160deg,#F9F7F2,#E3DEE8)}
    .ritual-num{
      width:42px;height:42px;border-radius:50%;
      display:grid;place-items:center;
      background:rgba(255,255,255,.68);
      border:1px solid rgba(190,184,173,.55);
      font-size:12px;font-weight:700;
      color:#62665E;
    }
    .ritual h3{
      font-family:"Newsreader", Georgia, serif;
      font-size:34px;font-weight:400;
      margin:76px 0 12px;
    }
    .ritual p{
      color:#64685F;
      font-size:15px;
      max-width:30ch;
    }
    .ritual .mini{
      position:absolute;right:22px;bottom:22px;left:22px;
      border-top:1px solid rgba(105,105,95,.16);
      padding-top:14px;
      font-size:12px;color:#71756D;
    }

    .personal-section{
      padding:118px 0;
      background:var(--black);
      color:white;
      position:relative;
      overflow:hidden;
    }
    .personal-section::before{
      content:"";
      position:absolute;
      width:700px;height:700px;border-radius:50%;
      right:-220px;top:-300px;
      background:radial-gradient(circle, rgba(131,151,123,.42), transparent 67%);
      pointer-events:none;
    }
    .personal-grid{
      display:grid;
      grid-template-columns:.82fr 1.18fr;
      gap:84px;
      align-items:center;
      position:relative;
      z-index:2;
    }
    .personal-copy h2{
      font-family:"Newsreader", Georgia, serif;
      font-size:clamp(50px,5.7vw,78px);
      line-height:.98;
      font-weight:400;
      letter-spacing:-.04em;
      margin:16px 0 24px;
    }
    .personal-copy p{color:#B7BAB2;font-size:18px;max-width:520px}
    .question-stack{display:grid;gap:13px}
    .question-pill{
      border:1px solid rgba(255,255,255,.13);
      background:rgba(255,255,255,.06);
      border-radius:22px;
      padding:20px 22px;
      font-family:"Newsreader", Georgia, serif;
      font-size:24px;
      line-height:1.28;
      color:#F6F4EF;
      transition:.2s ease;
    }
    .question-pill:nth-child(2){margin-left:42px;color:#E9E3D5}
    .question-pill:nth-child(3){margin-left:82px;color:#D9DED3}
    .question-pill span{
      display:block;
      font-family:"DM Sans", sans-serif;
      font-size:10px;
      text-transform:uppercase;
      letter-spacing:.12em;
      color:#8FA087;
      margin-bottom:8px;
      font-weight:700;
    }

    .journal-showcase{
      display:grid;
      grid-template-columns:minmax(0,1.1fr) minmax(300px,.9fr);
      gap:54px;
      align-items:center;
    }
    .paper{
      background:var(--paper);
      border:1px solid var(--line);
      box-shadow:var(--shadow);
      border-radius:32px;
      padding:48px;
    }
    .paper time{
      color:#858880;
      text-transform:uppercase;
      letter-spacing:.13em;
      font-size:11px;
    }
    .paper h3{
      font-family:"Newsreader", Georgia, serif;
      font-size:42px;
      font-weight:400;
      line-height:1.05;
      margin:14px 0 24px;
    }
    .paper p{
      font-family:"Newsreader", Georgia, serif;
      color:#4E524A;
      font-size:19px;
      line-height:1.72;
    }
    .tag-row{display:flex;gap:8px;flex-wrap:wrap;margin-top:26px}
    .tag{
      font-family:"DM Sans", sans-serif;
      font-size:11px;
      color:#6A6E66;
      background:#F0ECE4;
      border-radius:999px;
      padding:8px 11px;
    }

    .switcher{
      display:flex;
      gap:8px;
      padding:5px;
      border:1px solid var(--line);
      border-radius:999px;
      background:rgba(255,255,255,.4);
      width:max-content;
      margin-bottom:24px;
    }
    .switcher span{
      padding:8px 12px;
      border-radius:999px;
      font-size:12px;font-weight:600;
      color:#73766F;
    }
    .switcher .active{background:var(--black);color:white}
    .showcase-copy h2{
      font-family:"Newsreader", Georgia, serif;
      font-size:clamp(48px,5vw,68px);
      line-height:1;
      font-weight:400;
      letter-spacing:-.04em;
      margin:0 0 18px;
    }
    .showcase-copy p{color:var(--muted);font-size:17px}
    .feature-list{display:grid;gap:16px;margin-top:28px}
    .feature{
      display:grid;
      grid-template-columns:34px 1fr;
      gap:12px;
      align-items:start;
    }
    .feature-icon{
      width:34px;height:34px;border-radius:10px;background:var(--mist);
      display:grid;place-items:center;color:var(--moss-dark);font-weight:700;
    }
    .feature strong{display:block;font-size:14px;margin-top:2px}
    .feature small{display:block;color:var(--muted);font-size:13px;margin-top:3px;line-height:1.45}

    .ask-section{
      padding:110px 0;
      background:linear-gradient(180deg,#EDE8DE,#F3EFE7);
    }
    .ask-card{
      position:relative;
      overflow:hidden;
      border-radius:38px;
      padding:58px;
      min-height:500px;
      background:linear-gradient(135deg,#F9F7F2,#E5EBDD);
      border:1px solid var(--line);
      box-shadow:var(--shadow-soft);
    }
    .ask-card h2{
      font-family:"Newsreader", Georgia, serif;
      font-size:clamp(46px,5.2vw,72px);
      line-height:1;
      font-weight:400;
      letter-spacing:-.04em;
      max-width:650px;
      margin:14px 0 18px;
    }
    .ask-card > p{color:#64685F;font-size:17px;max-width:620px}
    .ask-demo{
      margin-top:44px;
      display:grid;
      grid-template-columns:1fr 1.25fr;
      gap:16px;
    }
    .ask-input,.ask-answer{
      border:1px solid rgba(176,177,165,.65);
      background:rgba(255,255,255,.62);
      border-radius:22px;
      padding:20px;
    }
    .ask-input{
      font-family:"Newsreader", Georgia, serif;
      font-size:25px;
      min-height:110px;
    }
    .ask-answer{
      color:#555950;
      font-size:14px;
      line-height:1.65;
    }
    .source-row{
      display:flex;gap:8px;flex-wrap:wrap;margin-top:12px;
    }
    .source{
      background:rgba(255,255,255,.75);
      border:1px solid rgba(170,170,160,.48);
      border-radius:999px;
      padding:7px 10px;
      font-size:10px;
      color:#6F736A;
    }

    .privacy-section{padding:112px 0}
    .privacy-grid{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:44px;
      align-items:center;
    }
    .privacy-copy h2{
      font-family:"Newsreader", Georgia, serif;
      font-size:clamp(48px,5.2vw,70px);
      font-weight:400;
      line-height:1;
      letter-spacing:-.04em;
      margin:16px 0 20px;
    }
    .privacy-copy p{color:var(--muted);font-size:18px;max-width:580px}
    .privacy-panel{
      border-radius:32px;
      background:#E4E8DE;
      border:1px solid #D0D7C9;
      padding:34px;
    }
    .privacy-item{
      display:grid;
      grid-template-columns:40px 1fr;
      gap:14px;
      padding:18px 0;
      border-bottom:1px solid rgba(93,108,88,.16);
    }
    .privacy-item:last-child{border-bottom:0}
    .privacy-item .dot{
      width:40px;height:40px;border-radius:50%;background:rgba(255,255,255,.62);
      display:grid;place-items:center;color:var(--moss-dark);font-weight:700;
    }
    .privacy-item strong{display:block;font-size:14px}
    .privacy-item span{display:block;color:#667061;font-size:13px;margin-top:4px}

    .final-cta{padding:20px 0 90px}
    .final-card{
      overflow:hidden;
      position:relative;
      text-align:center;
      background:var(--black);
      color:white;
      border-radius:42px;
      padding:88px 30px;
    }
    .final-card::before,.final-card::after{
      content:"";
      position:absolute;border-radius:50%;filter:blur(1px);opacity:.7;
    }
    .final-card::before{
      width:420px;height:420px;left:-180px;bottom:-260px;
      background:radial-gradient(circle,#617359,transparent 70%);
    }
    .final-card::after{
      width:380px;height:380px;right:-150px;top:-220px;
      background:radial-gradient(circle,#806B5E,transparent 70%);
    }
    .final-card > *{position:relative;z-index:2}
    .final-card h2{
      font-family:"Newsreader", Georgia, serif;
      font-size:clamp(52px,6vw,82px);
      line-height:.96;
      font-weight:400;
      letter-spacing:-.045em;
      margin:0 auto 20px;
      max-width:760px;
    }
    .final-card p{color:#BFC1BA;font-size:17px;margin-bottom:28px}

    footer{padding:0 0 40px}
    .footer{
      padding-top:24px;
      border-top:1px solid var(--line);
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:22px;
      color:#777A73;
      font-size:12px;
      flex-wrap:wrap;
    }
    .footer-links{display:flex;gap:20px}

    .reveal{
      opacity:0;
      transform:translateY(14px);
      transition:opacity .55s ease, transform .55s ease;
    }
    .reveal.is-in{
      opacity:1;
      transform:none;
    }

    @media (max-width: 980px){
      .nav-center{display:none}
      .hero{
        grid-template-columns:1fr;
        gap:26px;
        padding-top:126px;
      }
      .hero-copy{text-align:center}
      .hero .lede{margin-inline:auto}
      .hero-actions{justify-content:center}
      .product-stage{min-height:670px}
      .personal-grid,.journal-showcase,.privacy-grid{grid-template-columns:1fr}
      .personal-grid{gap:48px}
      .journal-showcase{gap:40px}
      .ritual-grid{grid-template-columns:1fr}
      .ritual{min-height:270px}
      .ritual h3{margin-top:54px}
      .ask-demo{grid-template-columns:1fr}
    }

    @media (max-width: 620px){
      .wrap{width:min(calc(100% - 26px),var(--max))}
      .site-header .btn{min-height:42px;padding:0 15px}
      .nav{height:66px}
      .brand{font-size:20px}
      .brand-mark{width:31px;height:31px}
      .hero{
        min-height:auto;
        padding:112px 0 54px;
      }
      .hero h1{
        font-size:clamp(58px,17vw,78px);
        max-width:9ch;
        margin-inline:auto;
      }
      .hero .lede{font-size:17px}
      .btn{width:100%}
      .hero-actions{display:grid;grid-template-columns:1fr 1fr}
      .hero-actions .btn{padding-inline:12px}
      .subnote{text-align:center}
      .product-stage{min-height:590px;margin-top:12px}
      .phone{
        width:285px;
        min-height:575px;
        border-radius:40px;
      }
      .phone-screen{min-height:555px;border-radius:32px;padding:22px 19px}
      .phone-question{font-size:34px}
      .phone-body{padding:36px 0}
      .answer-box{min-height:122px}
      .memory-card{width:185px;right:-5px;top:34px;padding:13px}
      .journal-card{width:195px;left:-8px;bottom:4px;padding:14px}
      .journal-card p{display:none}
      .voice-card{display:none}
      .trust-inner{align-items:flex-start;flex-direction:column}
      .trust-items{gap:8px 18px}
      .section{padding:84px 0}
      .section-heading h2{font-size:54px}
      .personal-section{padding:86px 0}
      .question-pill{font-size:21px}
      .question-pill:nth-child(2){margin-left:12px}
      .question-pill:nth-child(3){margin-left:24px}
      .paper{padding:30px 24px}
      .paper h3{font-size:35px}
      .paper p{font-size:18px}
      .ask-section{padding:78px 0}
      .ask-card{padding:34px 22px;min-height:auto}
      .ask-card h2{font-size:48px}
      .privacy-section{padding:84px 0}
      .privacy-panel{padding:22px}
      .final-card{padding:66px 20px;border-radius:32px}
      .footer{align-items:flex-start;flex-direction:column}
      .desktop-only{display:none}
    }

    @media (prefers-reduced-motion: reduce){
      html{scroll-behavior:auto}
      *,*::before,*::after{transition:none !important;animation:none !important}
      .reveal{opacity:1;transform:none}
      .btn:hover{transform:none}
    }


/* Production additions */
.hidden{display:none !important}
.trust-lead{color:var(--ink);font-size:13px}
.eyebrow-on-dark{color:#92A58A}
.switcher{display:flex;gap:8px;padding:5px;border:1px solid var(--line);border-radius:999px;background:rgba(255,255,255,.4);width:max-content;margin-bottom:24px}
.switcher-btn{
  appearance:none;border:0;background:transparent;cursor:pointer;
  padding:8px 12px;border-radius:999px;font-size:12px;font-weight:600;color:#73766F;
}
.switcher-btn.active{background:var(--black);color:white}
.answer-block{padding:14px 0;border-bottom:1px solid var(--line)}
.answer-block:last-child{border-bottom:0}
.answer-block strong{display:block;font-size:13px;margin-bottom:6px;color:var(--moss-dark)}
.answer-block p{margin:0;font-family:"Newsreader",Georgia,serif;font-size:17px;color:#4E524A;line-height:1.55}
.btn-on-dark{background:#fff;color:var(--black);border-color:#fff}
.showcase-copy .eyebrow{margin-bottom:10px}
.paper .switcher{margin-bottom:22px}
@media (max-width:620px){
  .hero-actions{grid-template-columns:1fr}
  .hero-actions .btn{width:100%}
}

