/* PitchNotes — Momentum design system (matches the iOS app: Theme.swift) */
:root{
  --paper:#fbf6ee;      /* app home background */
  --paper-alt:#f3ece1;  /* app settings background */
  --card:#ffffff;
  --ink:#211c17;        /* primary text */
  --body:#3a322a;       /* body copy */
  --muted:#9a8f82;      /* secondary text */
  --label:#b0a597;      /* eyebrow labels */
  --accent:#e4572e;     /* tangerine */
  --accent-deep:#c0341a;
  --accent-fill:#fbe7d8;
  --accent-text:#c05a1e;
  --line:rgba(33,28,23,.09);
  --divider:#f0eae0;
  --radius:8px;
  --display:"Bricolage Grotesque","Hanken Grotesk",system-ui,sans-serif;
  --sans:"Hanken Grotesk",system-ui,sans-serif;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{margin:0;color:var(--ink);font-family:var(--sans);background:var(--paper)}
a{color:inherit;text-decoration:none}

/* Header */
.site-header{height:76px;padding:0 max(6vw,28px);display:flex;align-items:center;justify-content:space-between;border-bottom:1px solid var(--line);position:relative;z-index:10;background:rgba(251,246,238,.94);backdrop-filter:blur(18px)}
.brand{display:flex;align-items:center;gap:12px;font-family:var(--display);font-weight:700;font-size:26px;letter-spacing:-.02em}
.wave{display:flex;align-items:center;gap:3px;height:28px}
.wave i{display:block;width:3px;border-radius:3px;background:var(--ink)}
.wave i:nth-child(3){background:var(--accent)}
.wave i:nth-child(1),.wave i:nth-child(5){height:9px}
.wave i:nth-child(2),.wave i:nth-child(4){height:19px}
.wave i:nth-child(3){height:27px}
.site-header nav{display:flex;gap:38px;font-size:14px;font-weight:500;color:var(--body)}
.site-header nav a,.text-link,.privacy a,footer a{transition:color .2s}
.site-header nav a:hover,.text-link:hover,footer a:hover{color:var(--accent)}

/* Buttons */
.button{display:inline-flex;align-items:center;justify-content:center;gap:10px;background:var(--accent);color:#fff;border-radius:var(--radius);padding:15px 21px;font-weight:700;font-size:15px;box-shadow:0 8px 22px rgba(228,87,46,.28);transition:transform .2s,background .2s}
.button:hover{transform:translateY(-2px);background:var(--accent-deep)}
.button-small{padding:11px 16px;font-size:13px}

/* Hero */
.hero{min-height:670px;padding:72px max(7vw,32px) 0;display:grid;grid-template-columns:1.05fr .95fr;align-items:center;overflow:hidden;border-bottom:1px solid var(--line)}
.hero-copy{max-width:690px;align-self:center;padding-bottom:75px}
.hero h1,.workflow h2,.outcomes h2,.privacy h2,.faq h2,.closing h2{font-family:var(--display);font-weight:700;letter-spacing:-.035em;margin:0}
.hero h1{font-size:clamp(58px,5.6vw,90px);line-height:.95}
.hero-copy>p{font-size:18px;line-height:1.55;color:var(--body);max-width:570px;margin:29px 0}
.hero-actions{display:flex;align-items:center;gap:28px}
.text-link{font-weight:600;border-bottom:1px solid var(--accent);padding:10px 0}
.text-link span{margin-left:15px}
.phone-stage{align-self:end;position:relative;height:620px;display:grid;place-items:end center}
.phone-glow{position:absolute;width:790px;height:560px;border-radius:50%;background:radial-gradient(circle,#f6dcc9 0,#f7ecdd 48%,rgba(251,246,238,0) 72%);right:-160px;bottom:-70px}
.phone-frame{position:relative;width:306px;height:626px;padding:10px;border:5px solid #1c1712;border-radius:52px;background:#14100c;box-shadow:0 25px 65px rgba(56,38,25,.28);overflow:hidden;transform:rotate(1.5deg)}
.phone-frame img{width:100%;height:100%;object-fit:cover;border-radius:38px}
.phone-speaker{position:absolute;z-index:2;top:17px;left:50%;transform:translateX(-50%);width:95px;height:25px;border-radius:20px;background:#14100c}

/* Workflow */
.workflow{padding:55px max(7vw,32px) 65px}
.workflow h2{font-size:43px;margin-bottom:36px}
.steps{display:flex;align-items:center;justify-content:space-between}
.steps article{display:flex;align-items:flex-start;gap:17px;max-width:290px}
.step-number{flex:0 0 auto;width:48px;height:48px;border-radius:50%;display:grid;place-items:center;background:var(--accent-fill);color:var(--accent-text);font-weight:700}
.steps h3{font-size:15px;margin:1px 0 7px}
.steps p{font-size:13px;color:var(--muted);line-height:1.45;margin:0}
.step-arrow{font-size:28px;color:var(--accent)}

/* Outcomes */
.outcomes{padding:95px max(7vw,32px);display:grid;grid-template-columns:1.1fr .9fr;gap:7vw;align-items:center;border-top:1px solid var(--line);background:var(--paper-alt)}
.outcomes h2{font-size:56px;line-height:.98}
.outcomes-copy>p,.faq>div>p{color:var(--body);line-height:1.55;max-width:440px}
.feature-list{list-style:none;padding:15px 0 0;margin:0}
.feature-list li{display:grid;grid-template-columns:26px 128px 1fr;align-items:center;padding:10px 0;border-bottom:1px solid var(--line);font-size:13px}
.feature-icon,.row-icon{width:21px;height:21px;border-radius:50%;display:grid;place-items:center;font-size:11px}
.feature-list li>span:last-child{color:var(--muted)}
.violet{background:var(--accent-fill);color:var(--accent-deep)}
.coral{background:#f8e3e3;color:#c23b3b}
.amber{background:#ffedce;color:#b86d05}
.green{background:#e7f0e9;color:#2e7d53}
.blue{background:#efeae2;color:#8b8073}

/* Outcomes phone */
.outcomes-phone{display:grid;place-items:center}
.outcomes-phone .phone-frame{transform:rotate(-1.5deg)}

/* Privacy band */
.privacy{padding:52px max(7vw,32px);display:grid;grid-template-columns:65px .7fr 1.4fr auto;gap:32px;align-items:center;background:var(--ink);color:#fff}
.shield{width:54px;height:60px;border:1px solid var(--accent);border-radius:50% 50% 42% 42%;display:grid;place-items:center;color:#f0a184}
.privacy h2{font-size:39px}
.privacy p{color:#d9d2c7;line-height:1.55;margin:0;font-size:14px}
.privacy a{color:#f0a184;font-size:13px;white-space:nowrap}
.privacy a:hover{color:#fff}

/* FAQ */
.faq{padding:110px max(7vw,32px);display:grid;grid-template-columns:.8fr 1.2fr;gap:10vw}
.faq h2{font-size:56px;line-height:1}
.questions details{border-top:1px solid var(--line);padding:22px 0}
.questions details:last-child{border-bottom:1px solid var(--line)}
.questions summary{cursor:pointer;font-weight:600;list-style:none;display:flex;justify-content:space-between}
.questions summary:after{content:"+";color:var(--accent);font-size:20px}
.questions details[open] summary:after{content:"−"}
.questions p{font-size:14px;line-height:1.6;color:var(--body);max-width:650px}

/* Closing + footer */
.closing{text-align:center;padding:90px 25px;background:linear-gradient(180deg,var(--paper-alt),var(--paper))}
.closing h2{font-size:58px}
.closing p{color:var(--body);margin:12px 0 26px}
footer{padding:32px max(6vw,28px);border-top:1px solid var(--line);display:grid;grid-template-columns:1fr 1fr 1fr;align-items:center}
footer p{text-align:center;font-size:12px;color:var(--muted)}
footer>div{display:flex;justify-content:flex-end;gap:25px;font-size:12px}
footer .brand{font-size:22px}

@media(max-width:900px){.site-header nav{display:none}.hero{grid-template-columns:1fr;padding-top:60px}.hero-copy{text-align:center;margin:auto;padding-bottom:45px}.hero-copy>p{margin:24px auto}.hero-actions{justify-content:center}.phone-stage{height:540px}.phone-frame{width:260px;height:532px}.steps{display:grid;gap:26px}.step-arrow{display:none}.steps article{max-width:none}.outcomes{grid-template-columns:1fr}.outcomes-phone .phone-frame{transform:none}.privacy{grid-template-columns:55px 1fr}.privacy p,.privacy a{grid-column:2}.faq{grid-template-columns:1fr;gap:55px}}
@media(max-width:580px){.site-header{height:66px;padding:0 18px}.site-header>.button{display:none}.brand{font-size:22px}.hero{padding:48px 20px 0;min-height:auto}.hero h1{font-size:48px}.hero-copy>p{font-size:16px}.hero-actions{flex-direction:column;gap:8px}.phone-stage{height:470px}.phone-frame{width:230px;height:470px;border-radius:42px}.workflow,.outcomes,.faq{padding:70px 22px}.workflow h2,.outcomes h2,.faq h2{font-size:40px}.feature-list li{grid-template-columns:26px 1fr}.feature-list li>span:last-child{grid-column:2;margin-top:3px}.outcomes-phone{margin-top:30px}.outcomes-phone .phone-frame{width:230px;height:499px;border-radius:42px}.privacy{padding:55px 22px;display:block}.privacy .shield{margin-bottom:20px}.privacy h2{font-size:40px}.privacy p{margin:15px 0 25px}.closing h2{font-size:44px}footer{grid-template-columns:1fr;text-align:center;gap:13px}footer .brand{justify-content:center}footer p{margin:0}footer>div{justify-content:center}}
@media(prefers-reduced-motion:reduce){html{scroll-behavior:auto}.button{transition:none}}

/* Legal + support pages */
.legal-page{background:var(--paper);color:var(--ink);min-height:100vh}
.legal-shell{width:min(760px,calc(100% - 40px));margin:0 auto;padding:70px 0 90px}
.legal-shell .brand{display:inline-flex;margin-bottom:55px}
.legal-shell h1{font-family:var(--display);font-size:clamp(42px,7vw,68px);letter-spacing:-.035em;margin:0 0 10px}
.legal-updated{color:#746b62;margin:0 0 42px}
.legal-shell section{padding:24px 0;border-top:1px solid rgba(33,28,23,.12)}
.legal-shell h2{font-family:var(--display);font-size:22px;margin:0 0 12px}
.legal-shell p,.legal-shell li{font-size:16px;line-height:1.65;color:var(--body)}
.legal-shell ul{padding-left:22px}
.legal-shell a{color:var(--accent-deep);text-decoration:underline;text-underline-offset:3px}
.legal-back{display:inline-block;margin-top:35px;font-weight:600}
.legal-shell a.brand,.legal-shell a.legal-back{color:var(--ink);text-decoration:none}
.support-card{margin:0 0 42px;padding:22px 24px;background:var(--card);border:1px solid var(--line);border-radius:var(--radius)}
.support-card p{margin:0 0 6px}
.support-card .support-email{font-family:var(--display);font-weight:700;font-size:22px}
.support-card small{color:var(--muted)}
