/* ========================================
   Morning — Design tokens & site styles
   Structural pattern (fixed nav, alternating
   feature rows, signal grid, testimonial wall,
   rich footer) modeled after get-monai.app;
   all colors, type and copy are Morning's own.
   ======================================== */

:root {
  /* Colors */
  --ground: #FAFAFA;
  --cream: #F6F4EF;
  --surface: #FFFFFF;
  --surface-2: #F4F4F7;
  --hairline: #ECECF1;
  --ink: #16161A;
  --muted: #6B6B76;
  --light: rgba(22, 22, 26, 0.45);

  --accent: #F2F07C;      /* butter — primary CTA */
  --accent-ink: #16161A;  /* text on accent */
  --met: #0B8052;         /* on-track green */
  --met-bright: #35C97F;
  --short: #C92E72;       /* behind-target pink */
  --in: #4AA8F0;          /* in-progress blue */

  /* Typography */
  --font-body: "DM Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-display: "Poppins", var(--font-body);

  /* Spacing */
  --sp-xs: .5rem;
  --sp-sm: .75rem;
  --sp-md: 1rem;
  --sp-lg: 1.5rem;
  --sp-xl: 2rem;
  --sp-2xl: 3rem;
  --sp-3xl: 4.5rem;

  /* Radius / shadow / motion */
  --radius-sm: .625rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --radius-full: 999px;
  --shadow-sm: 0 1px 2px rgba(22,22,26,.04);
  --shadow-md: 0 10px 30px -12px rgba(22,22,26,.18);
  --shadow-lg: 0 30px 60px -30px rgba(22,22,26,.28);
  --ease: 300ms cubic-bezier(.4,0,.2,1);

  /* Layout */
  --container-max: 1160px;
  --nav-height: 76px;
}

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{
  font-family:var(--font-body);
  font-size:17px;line-height:1.6;
  color:var(--ink);background:var(--ground);
  overflow-x:hidden;
}
img,video{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
ul{list-style:none}
button{font-family:inherit;cursor:pointer;border:0;background:none}
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}

.container{width:100%;max-width:var(--container-max);margin:0 auto;padding:0 24px}

h1,h2,h3,h4{font-family:var(--font-display);font-weight:600;letter-spacing:-.03em;text-wrap:balance}
h1{font-size:clamp(38px,6vw,64px);line-height:1.22;letter-spacing:-.01em}
h2{font-size:clamp(26px,3.6vw,40px);line-height:1.12}
h3{font-size:19px;letter-spacing:-.02em}
h4{font-size:16px;letter-spacing:-.01em}
.eyebrow{font-family:var(--font-display);font-weight:600;font-size:12px;letter-spacing:.09em;text-transform:uppercase;color:var(--muted)}
.lede{font-size:19px;color:var(--muted);max-width:36em}
.fine{font-size:13px;color:var(--muted)}
.muted{color:var(--ink-title, var(--title-muted, #b9b7a1))}
.title-muted{color:#C9C7A9}

/* Buttons */
.btn{display:inline-flex;align-items:center;gap:8px;border-radius:var(--radius-full);padding:15px 26px;font-family:var(--font-display);font-weight:500;font-size:15px;white-space:nowrap;transition:transform var(--ease),box-shadow var(--ease)}
.btn:hover{transform:translateY(-1px)}
.btn-accent{background:var(--accent);color:var(--accent-ink)}
.btn-accent:hover{box-shadow:var(--shadow-md)}
.btn-ink{background:var(--ink);color:#fff}
.btn-ghost{background:var(--surface);border:1px solid var(--hairline);color:var(--ink)}
.btn-sm{padding:10px 18px;font-size:14px}
.app-store-cta{display:inline-flex;transition:transform var(--ease),opacity var(--ease)}
.app-store-cta:hover{transform:translateY(-1px);opacity:.85}
.app-store-badge{display:block;height:40px;width:auto}
.app-store-badge--sm{height:34px}
.app-store-badge--lg{height:50px}

/* ── Nav ─────────────────────────────────────────── */
.nav{position:fixed;top:0;left:0;right:0;height:var(--nav-height);z-index:1000;
  background:rgba(250,250,250,0);backdrop-filter:blur(0px);
  transition:background var(--ease),backdrop-filter var(--ease),border-color var(--ease)}
.nav.scrolled{background:rgba(250,250,250,.9);backdrop-filter:blur(16px) saturate(160%)}
.nav-container{height:var(--nav-height);display:flex;align-items:center;justify-content:space-between;gap:16px}
.nav-logo{display:flex;align-items:center;gap:10px;font-family:var(--font-display);font-weight:600;font-size:18px}
.nav-logo i{width:28px;height:28px;border-radius:9px;background:var(--accent);display:inline-grid;place-items:center;font-style:normal;font-size:14px;font-weight:600}
.nav-links{display:flex;align-items:center;gap:28px}
.nav-link{color:var(--muted);font-weight:500;font-size:15px}
.nav-link:hover{color:var(--ink)}
.nav-right{display:flex;align-items:center;gap:14px}
.lang-toggle{display:flex;align-items:center;gap:5px;font-size:13px;font-weight:600;color:var(--muted);padding:6px 10px;border-radius:var(--radius-full);border:1px solid var(--hairline)}
.lang-toggle:hover{color:var(--ink);border-color:var(--ink)}
.nav-hamburger{display:none;flex-direction:column;gap:4px;padding:6px}
.nav-hamburger span{width:20px;height:2px;background:var(--ink);border-radius:2px}
.mobile-menu{display:none;position:fixed;inset:var(--nav-height) 0 0 0;background:var(--surface);z-index:999;padding:24px;flex-direction:column;gap:4px}
.mobile-menu.open{display:flex}
.mobile-menu-link{padding:14px 4px;border-bottom:1px solid var(--hairline);font-size:17px;font-weight:500}
.mobile-lang-toggle{display:flex;gap:8px;margin-top:18px}
.mobile-lang-toggle button{padding:8px 16px;border:1px solid var(--hairline);border-radius:var(--radius-full);font-size:13px;font-weight:600}
.mobile-lang-toggle button.active{background:var(--ink);color:#fff;border-color:var(--ink)}

/* ── Hero ────────────────────────────────────────── */
.hero{min-height:100vh;box-sizing:border-box;display:flex;align-items:center;padding:calc(var(--nav-height) + 40px) 0 40px}
.hero-container{display:grid;grid-template-columns:1.1fr .9fr;gap:var(--sp-2xl);align-items:center}
.hero-content{max-width:560px}
.hero-content h1{margin:10px 0 18px}
.hero-content .lede{max-width:440px}
.hero-buttons{display:flex;gap:12px;flex-wrap:wrap;align-items:center;margin-top:26px}

.hero-mock{position:relative;max-width:460px;margin:0 auto}
.hero-mock-img{display:block;width:100%;height:auto}


/* ── Section shell ───────────────────────────────── */
section{padding:var(--sp-3xl) 0}
#how{background:var(--cream);min-height:100vh;box-sizing:border-box;display:flex;align-items:center}
#how .container{width:100%}
.section-header{max-width:640px;margin:0 auto var(--sp-2xl);text-align:center}
.section-header.left{text-align:left;margin-left:0}
.section-label{display:inline-block;font-family:var(--font-display);font-weight:600;font-size:12px;letter-spacing:.09em;text-transform:uppercase;color:var(--muted);margin-bottom:10px}
.section-title{margin-bottom:10px}
.section-subtitle{color:var(--muted);font-size:17px}

/* ── Track everything (3-card showcase) ───────────── */
.gcards{display:grid;grid-template-columns:repeat(3,1fr);gap:var(--sp-lg)}
.gcard{position:relative;border-radius:28px;padding:36px 32px 40px;overflow:hidden}
.gcard h3{font-size:26px;margin-bottom:10px}
.gcard p{color:var(--muted);font-size:16px;line-height:1.5;max-width:280px}
.gcard--dosing{background:linear-gradient(160deg,#E4E8FA,#F8F8FC)}
.gcard--side{background:linear-gradient(160deg,#FBE7E7,#FBF6F3)}
.gcard--progress{background:linear-gradient(160deg,#DFF3E4,#F6FBF7)}

.gphone{position:relative;width:230px;margin:28px auto 0}
.gphone-frame{background:linear-gradient(160deg,#3a3a42,#0e0e12);border-radius:40px;padding:5px;box-shadow:0 30px 50px -20px rgba(0,0,0,.4),inset 0 0 0 1px rgba(255,255,255,.08)}
.gphone-notch{position:absolute;top:5px;left:50%;transform:translateX(-50%);width:84px;height:24px;background:#0e0e12;border-radius:0 0 16px 16px;z-index:2;display:flex;align-items:center;justify-content:flex-end;padding-right:10px}
.gphone-notch i{width:6px;height:6px;border-radius:50%;background:#26262e}
.gphone-screen{position:relative;background:var(--surface);border-radius:35px;overflow:hidden;padding:20px 16px 18px;min-height:400px}
.gphone-status{display:flex;justify-content:space-between;align-items:center;font-size:12px;font-weight:600;margin-bottom:14px}
.g-status-icons{display:flex;align-items:center;gap:4px}

.g-screen-header{display:flex;align-items:center;justify-content:space-between;margin-bottom:6px}
.g-icon-btn{display:grid;place-items:center;width:26px;height:26px;border-radius:50%;background:var(--surface-2);color:var(--muted);font-size:11px}
.g-date{font-size:13px;font-weight:600}
.g-screen-title{font-family:var(--font-display);font-weight:600;font-size:16px;margin-bottom:12px}

.g-row{display:flex;align-items:center;gap:8px;font-size:13px;color:var(--muted);font-weight:500}
.g-row b{margin-left:auto;color:var(--ink);font-family:var(--font-display);font-weight:600;font-size:14px;white-space:nowrap}
.g-chev{color:var(--light);font-size:15px;margin-left:8px}

.g-bars-labels{display:flex;justify-content:space-between;margin-top:8px;font-size:10px;color:var(--muted)}

.g-pen-badge{width:130px;height:130px;border-radius:50%;background:radial-gradient(circle at 50% 40%,#EEEBFB,#E2DEF6 72%);display:grid;place-items:center;margin:8px auto 14px}
.g-pen-badge svg{width:52px;height:104px}
.g-shot-title{text-align:center;font-family:var(--font-display);font-weight:600;font-size:18px}
.g-shot-sub{text-align:center;color:var(--muted);font-size:12.5px;margin:2px 0 16px}
.g-next-row{display:flex;align-items:center;gap:10px;background:var(--surface-2);border-radius:12px;padding:11px 13px}
.g-next-icon{display:grid;place-items:center;width:26px;height:26px;border-radius:8px;background:var(--surface);font-size:12px;flex:none}

.g-list{display:flex;flex-direction:column;gap:7px;margin-bottom:14px}
.g-list-row{display:flex;align-items:center;gap:9px;background:var(--surface-2);border-radius:11px;padding:9px 11px;font-size:12.5px;font-weight:500}
.g-dot{width:11px;height:11px;border-radius:50%;flex:none}
.g-dot--nausea{background:#E85D75}
.g-dot--headache{background:#E8935D}
.g-dot--fatigue{background:#D9A62E}
.g-dot--bloating{background:#8B7FD1}

.g-freq-header{display:flex;justify-content:space-between;align-items:baseline;font-family:var(--font-display);font-weight:600;font-size:13px;margin-bottom:8px}
.g-freq-header small{font-family:var(--font-body);font-weight:400;font-size:10.5px;color:var(--muted)}
.g-freq-row{display:flex;align-items:center;gap:6px;margin-bottom:6px}
.g-freq-label{width:52px;flex:none;font-size:9.5px;color:var(--muted)}
.g-freq-dots{display:flex;gap:2px;flex:1}
.g-freq-dots i{flex:1;height:11px;border-radius:2.5px;background:var(--hairline)}
.g-freq-dots--nausea i.on{background:#E85D75}
.g-freq-dots--headache i.on{background:#E8935D}
.g-freq-dots--fatigue i.on{background:#D9A62E}
.g-freq-dots--bloating i.on{background:#8B7FD1}

.g-weight-top{display:flex;align-items:flex-start;justify-content:space-between;margin-top:8px}
.g-weight-num{font-family:var(--font-display);font-weight:600;font-size:24px;letter-spacing:-.02em}
.g-weight-num small{font-size:12px;font-weight:500;color:var(--muted)}
.g-weight-delta{color:var(--met);font-weight:600;font-size:12px;margin-top:2px}
.g-seg{display:flex;background:var(--surface-2);border-radius:8px;padding:2px;gap:1px}
.g-seg span{padding:4px 7px;font-size:10px;font-weight:600;border-radius:6px;color:var(--muted)}
.g-seg span.active{background:var(--ink);color:#fff}
.g-chart-wrap{position:relative;margin-top:14px}
.g-sparkline{width:100%;height:72px;display:block}
.g-chart-axis{position:absolute;top:0;right:0;height:72px;display:flex;flex-direction:column;justify-content:space-between;font-size:9px;color:var(--muted)}

.g-trophy{display:flex;align-items:center;gap:10px;background:#E1F1E6;border-radius:12px;padding:11px 13px;margin-top:14px}
.g-trophy-icon{display:grid;place-items:center;width:28px;height:28px;border-radius:50%;background:var(--surface);font-size:13px;flex:none}
.g-trophy .g-row-text{min-width:0}
.g-trophy .g-row-text small{white-space:normal;line-height:1.3}
.g-trophy .g-chev{flex:none}
.g-row-text{display:flex;flex-direction:column;margin-right:auto;min-width:0}
.g-row-text b{font-size:12.5px;font-weight:600;white-space:nowrap}
.g-row-text small{font-size:10.5px;color:var(--muted);white-space:nowrap}
.g-trophy .g-row-text b{color:#1E7A45}

.count[data-target]{font-variant-numeric:tabular-nums}

/* ── Features (alternating rows) ─────────────────── */
.feature-card{display:grid;grid-template-columns:1fr 1fr;gap:var(--sp-2xl);align-items:center;
  padding:var(--sp-2xl);margin-bottom:var(--sp-lg);background:var(--surface);
  border:1px solid var(--hairline);border-radius:var(--radius-lg);box-shadow:var(--shadow-sm)}
.feature-card--reverse{direction:rtl}
.feature-card--reverse>*{direction:ltr}
.feature-card--wide{grid-template-columns:.7fr 1.3fr}
.feature-card--chat{grid-template-columns:.95fr 1.3fr}

.feature-phone.feature-photo-combo{background:none;padding:0;min-height:0;display:flex;align-items:flex-start;justify-content:center;gap:24px;flex-wrap:wrap}
.photo-card{position:relative;flex:1 1 260px;min-width:220px;max-width:340px;border-radius:24px;overflow:hidden;box-shadow:var(--shadow-lg);background:var(--surface)}
.meal-photo{display:block;width:100%;height:auto}
.photo-corners{position:absolute;inset:20px;pointer-events:none}
.photo-corners i{position:absolute;width:20px;height:20px;border:2px solid #fff}
.photo-corners i:nth-child(1){top:0;left:0;border-right:none;border-bottom:none;border-radius:4px 0 0 0}
.photo-corners i:nth-child(2){top:0;right:0;border-left:none;border-bottom:none;border-radius:0 4px 0 0}
.photo-corners i:nth-child(3){bottom:0;left:0;border-right:none;border-top:none;border-radius:0 0 0 4px}
.photo-corners i:nth-child(4){bottom:0;right:0;border-left:none;border-top:none;border-radius:0 0 4px 0}
.analyzing-toast{position:absolute;left:14px;right:14px;bottom:14px;background:var(--surface);border-radius:14px;padding:12px 15px;display:flex;align-items:center;gap:10px;box-shadow:var(--shadow-md);font-size:13px;font-weight:500}
.analyzing-spinner{width:14px;height:14px;border-radius:50%;border:2px solid var(--hairline);border-top-color:var(--muted);flex:none;animation:spin 1s linear infinite}
@keyframes spin{to{transform:rotate(360deg)}}

.nutri-card{flex:1 1 320px;min-width:280px;max-width:380px;background:var(--surface);border:1px solid var(--hairline);border-radius:18px;padding:20px;box-shadow:var(--shadow-md)}
.nutri-head{display:flex;align-items:center;justify-content:space-between;margin-bottom:12px}
.nutri-head b{font-family:var(--font-display);font-weight:600;font-size:18px}
.nutri-sure{background:#E1F1E6;color:#1E7A45;font-size:11px;font-weight:600;padding:4px 10px;border-radius:99px}
.nutri-macros{display:grid;grid-template-columns:repeat(3,1fr);gap:14px;margin-bottom:18px}
.nutri-macro b{display:block;font-family:var(--font-display);font-weight:600;font-size:22px;letter-spacing:-.02em}
.nutri-macro small{display:block;color:var(--muted);font-size:12px;margin:1px 0 8px}
.nutri-dots{display:flex;gap:2px}
.nutri-dots i{flex:1;height:7px;border-radius:2px;background:var(--hairline)}
.nutri-dots--protein i.on{background:#4AA8F0}
.nutri-dots--carbs i.on{background:#E8A23D}
.nutri-dots--fat i.on{background:#E85D9E}
.nutri-kcal-row{display:flex;align-items:center;justify-content:space-between;background:var(--surface-2);border-radius:14px;padding:14px 16px;margin-bottom:18px}
.nutri-kcal-row .g-row-text b{font-size:16px}
.nutri-foods-head{display:flex;align-items:center;gap:8px;font-family:var(--font-display);font-weight:600;font-size:15px;margin-bottom:10px}
.nutri-count{background:var(--surface-2);color:var(--muted);font-size:11px;font-weight:600;padding:2px 8px;border-radius:99px}
.nutri-food-row{display:flex;align-items:center;gap:12px;padding:9px 0;font-size:13px}
.nutri-food-row img{width:42px;height:42px;border-radius:11px;object-fit:cover;flex:none}
.nutri-food-row .g-row-text b{font-size:14px}
.nutri-food-row .g-row-text small{font-size:12px}
.nutri-kcal{color:var(--muted);font-size:12.5px;white-space:nowrap}
.nutri-adjust{display:flex;align-items:center;gap:12px;background:var(--surface-2);border-radius:14px;padding:14px 16px;margin-top:14px}
.nutri-adjust-icon{display:grid;place-items:center;width:30px;height:30px;border-radius:9px;background:var(--surface);font-size:13px;flex:none}
.nutri-adjust .g-row-text b{font-size:14px}
.nutri-adjust .g-row-text small{font-size:12px}

.chat-combo{position:relative;background:none;padding:24px 10px;min-height:0;display:flex;justify-content:center}
.chat-lines{position:absolute;inset:0;width:100%;height:100%;z-index:0}
.chat-lines path{stroke:#C7D1EE}
.chat-phone{width:230px;flex:none;position:relative;z-index:1}
.chat-screen{padding:14px 13px 13px;display:flex;flex-direction:column}
.chat-header{display:flex;align-items:center;justify-content:space-between}
.chat-avatar{display:grid;place-items:center;width:36px;height:36px;border-radius:50%;background:radial-gradient(circle at 40% 35%,#C9BEF0,#A99CE0);color:#fff;font-size:10px;letter-spacing:1px}
.chat-title{text-align:center;font-family:var(--font-display);font-weight:600;font-size:14px;margin-top:6px}
.chat-subtitle{text-align:center;color:var(--muted);font-size:10.5px;margin-bottom:12px}
.chat-msg{border-radius:13px;padding:9px 12px;font-size:12px;line-height:1.4}
.chat-msg--me{align-self:flex-end;background:#E7E9FB;color:var(--ink);max-width:85%;border-bottom-right-radius:4px}
.chat-time{font-size:9px;color:var(--light);margin-top:4px}
.chat-time--me{align-self:flex-end;margin-bottom:8px}
.chat-msg--ai{background:var(--surface-2);border-bottom-left-radius:4px;margin-bottom:8px}
.chat-msg--ai p{margin:0 0 7px}
.chat-msg--ai p:last-of-type{margin-bottom:5px}
.chat-msg--ai ul{margin:0;padding-left:15px}
.chat-msg--ai li{margin-bottom:2px}
.chat-feedback{display:flex;align-items:center;justify-content:space-between;margin-bottom:auto;padding-bottom:10px}
.chat-thumbs{font-size:11px;opacity:.6}
.chat-input{margin-top:10px;display:flex;align-items:center;justify-content:space-between;background:var(--surface-2);border-radius:99px;padding:9px 14px;font-size:11px;color:var(--muted)}

.chat-card{position:absolute;z-index:2;display:flex;align-items:center;gap:8px;background:var(--surface);border-radius:13px;padding:9px 12px;box-shadow:var(--shadow-md);max-width:150px}
.chat-card--dose{top:2px;left:-6px}
.chat-card--nausea{top:44%;left:-14px}
.chat-card--sleep{top:42%;right:-14px}
.chat-card-icon{display:grid;place-items:center;width:28px;height:28px;border-radius:50%;flex:none}
.chat-card-icon svg{width:14px;height:14px}
.chat-card-icon--dose{background:#DCEBFB;color:#2F7FD6}
.chat-card-icon--nausea{background:#FBE1E6;color:#D14E6E}
.chat-card-icon--sleep{background:#E7E1FA;color:#7357D1}
.chat-card .g-row-text small{font-size:9.5px;white-space:nowrap}
.chat-card .g-row-text b{font-size:12px;margin:1px 0}

.shot-card--reminder{top:0;right:-30px;max-width:225px}
.shot-card--reminder .g-row-text b{white-space:normal}
.shot-card--dose{top:48%;left:-26px}
.shot-card--symptoms{top:56%;right:-30px}
.shot-icon--reminder{background:#E7E1FA;color:#7357D1;font-size:13px}
.shot-icon--dose{background:#DCEBFB;color:#2F7FD6;font-size:13px}
.shot-icon--symptoms{background:#FBE1E6;color:#D14E6E;font-size:13px}
.shot-toggle{width:30px;height:18px;border-radius:99px;background:var(--met-bright);flex:none;position:relative}
.shot-toggle i{position:absolute;top:2px;right:2px;width:14px;height:14px;border-radius:50%;background:#fff}

.shot-med-row{display:flex;align-items:center;gap:10px;background:var(--surface-2);border-radius:12px;padding:10px 12px;margin-bottom:8px}
.shot-med-icon{display:grid;place-items:center;width:28px;height:28px;border-radius:9px;background:#DCEBFB;color:#2F7FD6;font-size:12px;flex:none}
.shot-med-row .g-row-text b{font-size:13px}
.shot-med-row .g-row-text small{font-size:11px;color:var(--muted)}

.shot-next-card{background:var(--surface-2);border-radius:12px;padding:12px;margin-bottom:10px}
.shot-next-head{display:flex;align-items:center;justify-content:space-between;font-family:var(--font-display);font-weight:600;font-size:12.5px;margin-bottom:6px}
.shot-pill{background:#E7E1FA;color:#7357D1;font-size:10px;font-weight:600;padding:2px 9px;border-radius:99px}
.shot-next-date{font-family:var(--font-display);font-weight:600;font-size:16px;margin-bottom:8px}
.shot-next-row{display:flex;align-items:center;justify-content:space-between}
.shot-next-time{color:var(--muted);font-size:11.5px}
.shot-btn{background:var(--ink);color:#fff;font-size:10.5px;font-weight:600;padding:7px 12px;border-radius:99px;white-space:nowrap}

.shot-section-head{display:flex;align-items:center;justify-content:space-between;font-family:var(--font-display);font-weight:600;font-size:12.5px;margin:4px 0 8px}
.shot-section-head span{font-family:var(--font-body);font-weight:400;color:var(--muted);font-size:10.5px}

.shot-timeline{background:var(--surface-2);border-radius:12px;padding:12px 10px;margin-bottom:10px}
.shot-tl-track{display:flex;align-items:center}
.shot-tl-track i{flex:1;height:2px;background:var(--hairline);position:relative}
.shot-tl-track i::before{content:"";position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:14px;height:14px;border-radius:50%;background:var(--surface);border:2px solid var(--hairline)}
.shot-tl-track i.on{background:#7357D1}
.shot-tl-track i.on::before{background:#7357D1;border-color:#7357D1}
.shot-tl-track i:first-child::before{content:"✓";color:#fff;font-size:9px;display:grid;place-items:center}
.shot-tl-labels{display:flex;margin-top:8px}
.shot-tl-labels div{flex:1;text-align:center}
.shot-tl-labels b{display:block;font-size:10.5px;font-weight:600}
.shot-tl-labels small{font-size:9px;color:var(--muted)}

.shot-feel-label{flex:1;font-size:12.5px;font-weight:500}
.shot-feel-status{color:var(--muted);font-size:11.5px;white-space:nowrap;margin-right:0}
.g-list-row .g-icon-badge{margin-right:0}

.feature-title{margin-bottom:10px}
.feature-title-muted{color:#B9B7A1}
.feature-card--wide h3,.feature-card--chat h3{font-size:clamp(34px,4vw,52px);line-height:1.05;letter-spacing:-.03em;margin-bottom:18px}
.feature-description{color:var(--muted);margin-bottom:16px}
.feature-list{display:flex;flex-direction:column;gap:8px}
.feature-list li{position:relative;padding-left:22px;font-size:15px;color:var(--ink)}
.feature-list li::before{content:"";position:absolute;left:0;top:7px;width:8px;height:8px;border-radius:2px;background:var(--accent)}

.feature-phone{background:var(--surface-2);border-radius:var(--radius-lg);min-height:280px;display:grid;place-items:center;padding:24px}
.mock-frame{width:100%;max-width:230px;background:var(--surface);border-radius:26px;border:1px solid var(--hairline);box-shadow:var(--shadow-md);padding:16px;min-height:260px}
.mock-chat .mock-bubble{background:var(--surface-2);border-radius:14px 14px 14px 4px;padding:10px 12px;font-size:13px;margin-bottom:8px;max-width:88%}
.mock-chat .mock-bubble.me{background:var(--ink);color:#fff;border-radius:14px 14px 4px 14px;margin-left:auto}
.mock-health .mock-row{display:flex;justify-content:space-between;padding:9px 0;border-bottom:1px solid var(--hairline);font-size:13px}
.mock-health .mock-row:last-child{border:0}
.mock-labs .mock-marker{display:flex;justify-content:space-between;align-items:center;padding:8px 10px;background:var(--surface-2);border-radius:10px;margin-bottom:8px;font-size:12px}
.mock-labs .mock-flag{width:8px;height:8px;border-radius:50%;background:var(--met-bright)}
.mock-labs .mock-flag.watch{background:var(--short)}
.mock-duo{display:flex;flex-direction:column;align-items:center;gap:10px;text-align:center;padding-top:12px}
.mock-duo .mock-avatars{display:flex}
.mock-duo .mock-avatar{width:44px;height:44px;border-radius:50%;background:var(--surface-2);border:2px solid var(--surface);display:grid;place-items:center;font-family:var(--font-display);font-weight:600}
.mock-duo .mock-avatar:last-child{margin-left:-14px}
.mock-camera{display:grid;place-items:center;gap:10px;text-align:center;padding-top:30px}
.mock-camera .mock-shutter{width:56px;height:56px;border-radius:50%;border:3px solid var(--ink)}
.mock-shot{display:flex;flex-direction:column;align-items:center;gap:12px;text-align:center;padding-top:22px}
.mock-shot .mock-pill{background:var(--surface-2);border-radius:var(--radius-full);padding:8px 16px;font-size:12px;font-weight:600}
.mock-shot .mock-days{display:flex;gap:5px}
.mock-shot .mock-days i{width:22px;height:22px;border-radius:50%;background:var(--surface-2);display:grid;place-items:center;font-style:normal;font-size:10px;color:var(--muted)}
.mock-shot .mock-days i.on{background:var(--accent);color:var(--ink)}

/* ── Signals grid (what feeds the score) ─────────── */
.signals-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:var(--sp-md)}
.signal-card{background:var(--surface);border:1px solid var(--hairline);border-radius:var(--radius-md);padding:var(--sp-lg);transition:transform var(--ease),box-shadow var(--ease),border-color var(--ease)}
.signal-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-md);border-color:transparent}
.signal-icon{width:44px;height:44px;display:flex;align-items:center;justify-content:center;background:var(--surface-2);border-radius:var(--radius-sm);color:var(--ink);margin-bottom:12px}
.signal-icon svg{width:22px;height:22px}
.signal-title{margin-bottom:4px}
.signal-desc{color:var(--muted);font-size:14px}

/* ── Trust / honest section ───────────────────────── */
.trust{display:grid;grid-template-columns:.8fr 1.2fr;gap:var(--sp-2xl);align-items:center}
.trust-badge{background:var(--surface);border:1px solid var(--hairline);border-radius:var(--radius-lg);padding:var(--sp-2xl);text-align:center;box-shadow:var(--shadow-sm)}
.trust-badge .big{font-family:var(--font-display);font-weight:600;font-size:44px;letter-spacing:-.03em}
.trust-copy p{color:var(--muted);margin-bottom:12px;font-size:15px}
.trust-copy p:last-child{margin-bottom:0}

/* ── Testimonials wall ─────────────────────────────── */
.marquee-row{overflow:hidden;-webkit-mask-image:linear-gradient(90deg,transparent,#000 6%,#000 94%,transparent);mask-image:linear-gradient(90deg,transparent,#000 6%,#000 94%,transparent);margin-bottom:var(--sp-md)}
.marquee-track{display:flex;gap:var(--sp-lg);width:max-content;animation:marquee 50s linear infinite}
.marquee-row--reverse .marquee-track{animation-name:marquee-reverse}
.marquee-row:hover .marquee-track{animation-play-state:paused}
@keyframes marquee{from{transform:translateX(0)}to{transform:translateX(-50%)}}
@keyframes marquee-reverse{from{transform:translateX(-50%)}to{transform:translateX(0)}}
.testimonial-card{flex:0 0 320px;background:var(--surface);border:1px solid var(--hairline);border-radius:var(--radius-md);padding:var(--sp-lg);box-shadow:var(--shadow-sm)}
.stars{color:#E3A008;letter-spacing:2px;font-size:15px;margin-bottom:10px}
.testimonial-text{font-size:15px;color:var(--ink);margin:0 0 14px;line-height:1.5}
.testimonial-author{font-size:13px;color:var(--muted);font-weight:600}

/* ── Final CTA ─────────────────────────────────────── */
.cta-section{text-align:center}
.cta-section .lede{margin:0 auto 26px}
.cta-buttons{display:flex;justify-content:center;gap:12px;flex-wrap:wrap}

/* ── Footer ────────────────────────────────────────── */
.footer{padding:var(--sp-2xl) 0 var(--sp-xl);border-top:1px solid var(--hairline)}
.footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr;gap:var(--sp-2xl);margin-bottom:var(--sp-2xl)}
.footer-logo{font-family:var(--font-display);font-weight:600;font-size:18px}
.footer-tagline{color:var(--muted);font-size:14px;margin-top:8px;max-width:26em}
.footer-heading{font-size:13px;text-transform:uppercase;letter-spacing:.06em;color:var(--muted);margin-bottom:12px}
.footer-links{display:flex;flex-direction:column;gap:9px}
.footer-links a{font-size:14px;color:var(--ink)}
.footer-links a:hover{color:var(--muted)}
.footer-bottom{padding-top:var(--sp-lg);border-top:1px solid var(--hairline);color:var(--muted);font-size:13px}

/* ── Legal / doc pages ─────────────────────────────── */
.doc{max-width:720px;margin:0 auto;padding:calc(var(--nav-height) + 32px) 24px 64px}
.doc h1{font-size:40px}
.doc h2{font-size:22px;margin-top:34px;margin-bottom:10px}
.doc p,.doc li{color:#2B2B33;font-size:16px;margin-bottom:10px}
.doc ul{padding-left:20px;list-style:disc}
.doc .fine{margin-bottom:24px}

.center{text-align:center;max-width:560px;margin:0 auto;padding:calc(var(--nav-height) + 80px) 24px 80px}

/* ── Cookie consent ────────────────────────────────── */
.consent{position:fixed;left:16px;right:16px;bottom:16px;z-index:1200;
  max-width:560px;margin:0 auto;background:var(--surface);border:1px solid var(--hairline);
  border-radius:var(--radius-md);box-shadow:var(--shadow-lg);padding:18px 20px;
  display:flex;gap:16px;align-items:center;flex-wrap:wrap;
  transform:translateY(140%);transition:transform .4s var(--ease)}
.consent.show{transform:translateY(0)}
.consent p{font-size:13px;color:var(--muted);flex:1;min-width:220px}
.consent-actions{display:flex;gap:8px}

/* ── Reveal (GSAP hook) ────────────────────────────── */
.reveal{opacity:0;transform:translateY(18px)}

@media (max-width:860px){
  .nav-links{display:none}
  .nav-hamburger{display:flex}
  .hero-container{grid-template-columns:1fr;padding-top:8px}
  .gcards{grid-template-columns:1fr}
  .feature-card,.feature-card--reverse,.feature-card--wide,.feature-card--chat{grid-template-columns:1fr;direction:ltr;padding:var(--sp-lg)}
  .chat-card,.chat-lines{display:none}
  .signals-grid{grid-template-columns:1fr 1fr}
  .trust{grid-template-columns:1fr}
  .testimonial-card{flex-basis:260px}
  .footer-grid{grid-template-columns:1fr;gap:var(--sp-lg)}
}
@media (prefers-reduced-motion:reduce){
  .reveal{opacity:1;transform:none}
  .marquee-track{animation:none}
  .marquee-row{overflow-x:auto}
}
