@font-face{
  font-family:"Guaraldo";
  src:url("/Guaraldo.ttf") format("truetype");
  font-weight:400 700; font-display:swap;
}
:root{
  --ink:#15110e; --muted:#6b645c; --line:#e7e7ea; --cream:#fbf7f1;
  --sunset:linear-gradient(135deg,#1d1633 0%,#5b2a6b 32%,#c0436a 60%,#f06b5c 82%,#f4a259 100%);
  --sunset-45:linear-gradient(135deg,#c0436a 0%,#f06b5c 55%,#f4a259 100%);
}
*{box-sizing:border-box;margin:0;padding:0}
html{-webkit-text-size-adjust:100%; scroll-behavior:smooth; scroll-snap-type:y proximity}
body{
  font-family:"Plus Jakarta Sans",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;
  color:var(--ink); line-height:1.6; background:#fff; overflow-x:hidden;
}
a{color:#c0436a;text-decoration:none}
a:hover{text-decoration:underline}

/* ── Screen 1 - hero ─────────────────────────────────────────── */
.hero{
  position:relative; overflow:hidden; min-height:100vh; min-height:100svh;
  background:var(--sunset); background-size:160% 160%;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  text-align:center; padding:64px 24px; color:#fff;
  scroll-snap-align:start;
  animation:bgshift 22s ease-in-out infinite;
}
@keyframes bgshift{
  0%{background-position:0% 0%} 50%{background-position:100% 100%} 100%{background-position:0% 0%}
}
/* drifting glow orbs */
.glow{position:absolute; border-radius:50%; filter:blur(70px); opacity:.5; pointer-events:none}
.glow-a{width:46vw; height:46vw; background:radial-gradient(circle,#ffb27a,transparent 65%); top:-8vw; right:-6vw; animation:float1 18s ease-in-out infinite}
.glow-b{width:40vw; height:40vw; background:radial-gradient(circle,#8b3fa0,transparent 65%); bottom:-10vw; left:-8vw; animation:float2 21s ease-in-out infinite}
@keyframes float1{0%,100%{transform:translate(0,0)}50%{transform:translate(-4vw,5vw)}}
@keyframes float2{0%,100%{transform:translate(0,0)}50%{transform:translate(5vw,-4vw)}}

.hero-inner{position:relative; z-index:1; display:flex; flex-direction:column; align-items:center}
.hero .wordmark{width:min(330px,74vw); height:auto;
  filter:drop-shadow(0 16px 30px rgba(0,0,0,.32));
  animation:rise .9s cubic-bezier(.2,.7,.2,1) both, bob 6s ease-in-out 1s infinite}
.hero .lede{margin-top:24px; font-size:clamp(17px,2.6vw,22px); font-weight:500; color:rgba(255,255,255,.94); max-width:580px; text-wrap:balance; animation:rise .9s cubic-bezier(.2,.7,.2,1) .12s both}
.hero .soon{
  margin-top:36px; text-transform:uppercase; letter-spacing:3px; font-size:11px;
  font-weight:800; color:rgba(255,255,255,.82); animation:rise .9s ease .22s both;
}
.hero .badges{margin-top:16px; display:flex; gap:12px; flex-wrap:wrap; justify-content:center; animation:rise .9s ease .3s both}
.badge{
  display:inline-flex; align-items:center; gap:11px;
  background:rgba(255,255,255,.1); border:1px solid rgba(255,255,255,.28);
  border-radius:14px; padding:10px 17px; backdrop-filter:blur(8px); -webkit-backdrop-filter:blur(8px);
  transition:transform .25s ease, background .25s ease, box-shadow .25s ease;
}
.badge:hover{transform:translateY(-3px); background:rgba(255,255,255,.18); box-shadow:0 12px 26px rgba(0,0,0,.22)}
.badge .b-text{display:flex; flex-direction:column; line-height:1.15; text-align:left}
.badge .b-text small{font-size:10px; color:rgba(255,255,255,.82); letter-spacing:.2px}
.badge .b-text strong{font-size:16px; color:#fff; font-weight:700}

.scroll-cue{
  position:absolute; left:0; right:0; bottom:26px; z-index:1;
  display:flex; flex-direction:column; align-items:center; gap:4px;
  color:rgba(255,255,255,.85); font-size:12px; font-weight:600; letter-spacing:.3px;
  animation:rise .9s ease .5s both;
}
.scroll-cue:hover{text-decoration:none; color:#fff}
.scroll-cue svg{animation:bobcue 1.8s ease-in-out infinite}
@keyframes bobcue{0%,100%{transform:translateY(0)}50%{transform:translateY(5px)}}
@keyframes rise{from{opacity:0;transform:translateY(20px)}to{opacity:1;transform:none}}
@keyframes bob{0%,100%{transform:translateY(0)}50%{transform:translateY(-9px)}}

/* ── Screen 2 - what it does ─────────────────────────────────── */
.about{
  min-height:100vh; min-height:100svh; background:var(--cream); scroll-snap-align:start;
  display:flex; flex-direction:column;
}
.about-inner{flex:1; display:flex; flex-direction:column; justify-content:center;
  max-width:1140px; width:100%; margin:0 auto; padding:72px 24px 28px; text-align:center}
.about .eyebrow{text-transform:uppercase; letter-spacing:3px; font-size:12px; font-weight:800; color:var(--accent,#c0436a)}
.about h1{margin-top:12px; font-family:"Guaraldo",serif; font-weight:700;
  font-size:clamp(34px,6vw,56px); line-height:1.02; letter-spacing:.3px}
.about .about-lead{margin:18px auto 0; max-width:600px; font-size:clamp(16px,2.2vw,18px); color:#4a423b; line-height:1.65; text-wrap:balance}
.features{
  margin-top:48px; display:grid; gap:18px;
  grid-template-columns:repeat(4,1fr); text-align:left;
}
.feature{
  background:#fff; border:1px solid var(--line); border-radius:18px; padding:24px 20px;
  box-shadow:0 1px 2px rgba(21,17,14,.04);
  transition:transform .3s cubic-bezier(.2,.7,.2,1), box-shadow .3s ease, border-color .3s ease;
}
.feature:hover{transform:translateY(-6px); box-shadow:0 18px 40px rgba(192,67,106,.16); border-color:#f0d3cf}
.ficon{
  display:grid; place-items:center; width:48px; height:48px; border-radius:14px;
  background:var(--sunset-45); color:#fff; margin-bottom:16px;
  box-shadow:0 8px 18px rgba(240,107,92,.32);
}
.feature h2{font-size:16px; font-weight:700; margin-bottom:7px; letter-spacing:-.2px}
.feature p{font-size:14px; color:#5a524b; line-height:1.55}
.about .about-note{margin:40px auto 0; max-width:600px; font-size:13px; color:var(--muted); line-height:1.6}

.site-foot{padding:26px 24px 34px; text-align:center; color:var(--muted); font-size:13px; line-height:2; border-top:1px solid var(--line)}
.site-foot a{color:var(--ink); font-weight:600}
.site-foot .copy{opacity:.75}

/* scroll-reveal */
.reveal{opacity:0; transform:translateY(20px); transition:opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1)}
.reveal.in{opacity:1; transform:none}
@media (prefers-reduced-motion:reduce){
  .reveal{opacity:1;transform:none;transition:none}
  .hero,.hero *,.glow,.scroll-cue svg{animation:none !important}
}

@media (max-width:880px){ .features{ grid-template-columns:1fr 1fr } }
@media (max-width:560px){
  /* Phones: drop scroll-snap (fights the address-bar resize) and let content flow */
  html{ scroll-snap-type:none }
  .hero,.about{ scroll-snap-align:none }
  .hero{ padding:48px 22px }
  .hero .lede{ font-size:18px; margin-top:20px }
  .hero .soon{ margin-top:30px }
  .badges{ width:100%; }
  .features{ grid-template-columns:1fr; margin-top:36px }
  .about-inner{ padding:72px 22px 24px }
  .about .about-note{ margin-top:32px }
  .glow{ filter:blur(54px); opacity:.42 }
}
/* Short landscape / small heights: keep the hero from clipping its own content */
@media (max-height:560px){
  .hero{ min-height:auto; padding:56px 24px }
  .scroll-cue{ display:none }
}

/* ── Document pages (privacy / terms) ────────────────────────── */
.doc-top{border-bottom:1px solid var(--line); padding:18px 24px}
.doc-top .wrap{max-width:760px; margin:0 auto; display:flex; align-items:center; gap:10px}
.doc-top img{height:26px;width:auto}
.doc-top a.home{font-weight:700; color:var(--ink); font-size:18px}
.doc{max-width:760px; margin:0 auto; padding:40px 24px 80px}
.doc h1{font-weight:700; font-size:clamp(28px,5vw,38px); line-height:1.15; letter-spacing:-.4px}
.doc h2{font-weight:700}
.doc .updated{color:var(--muted); font-size:14px; margin-top:8px; margin-bottom:28px}
.doc h2{font-size:20px; margin-top:34px; margin-bottom:8px}
.doc h3{font-size:16px; margin-top:20px; margin-bottom:4px}
.doc p, .doc li{font-size:16px; color:#322d28}
.doc ul{margin:8px 0 8px 22px}
.doc li{margin:5px 0}
.doc .note{background:var(--cream); border:1px solid var(--line); border-radius:12px; padding:14px 16px; font-size:14px; color:var(--muted); margin:20px 0}
.doc-foot{border-top:1px solid var(--line); padding:24px; text-align:center; color:var(--muted); font-size:13px}
