/* ============================================================
   UNI MAX — Clean Trust (A-tier, white-dominant, YMYL-safe)
   Adapted palette: getbase-style clean editorial
   ============================================================ */

/* ---- Fonts ---- (loaded via <link> in <head> for non-blocking render; see index.html) */

/* ---- Tokens ---- */
:root {
  --bg:        oklch(0.99 0.004 95);   /* primary white / warm off-white */
  --bg-alt:    oklch(0.972 0.008 90);  /* faint cream alt sections */
  --bg-tint:   oklch(0.965 0.012 250); /* faint cool tint */
  --ink:       oklch(0.22 0.02 260);   /* near-black headlines */
  --ink-muted: oklch(0.50 0.02 260);   /* grey body copy */
  --ink-faint: oklch(0.62 0.015 260);  /* lighter captions */
  --navy:      oklch(0.40 0.09 255);   /* CTAs, links, emphasis */
  --navy-700:  oklch(0.34 0.09 255);   /* hover */
  --blue:      oklch(0.62 0.16 245);   /* electric blue pop */
  --blue-ink:  oklch(0.52 0.17 250);   /* blue for smaller text (AA) */
  --gold:      oklch(0.74 0.10 80);    /* champagne gold, sparing */
  --band-dark: oklch(0.205 0.055 270); /* cosmic deep navy-purple */
  --band-deep: oklch(0.16 0.05 270);

  --line:      oklch(0.91 0.006 260);  /* hairline divider */
  --line-soft: oklch(0.94 0.005 260);
  --white:     #ffffff;
  --wa:        #25D366;                /* whatsapp green (icon only) */

  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-pill: 999px;

  --shadow-xs: 0 1px 2px rgba(20,30,60,.05);
  --shadow-sm: 0 2px 8px rgba(20,30,60,.06), 0 1px 2px rgba(20,30,60,.04);
  --shadow-md: 0 10px 30px -8px rgba(20,30,60,.14), 0 2px 8px rgba(20,30,60,.06);
  --shadow-lg: 0 30px 60px -18px rgba(15,25,55,.30);

  --maxw: 1180px;
  --pad: clamp(20px, 5vw, 40px);

  --font-display: 'Sora', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){ html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1,h2,h3,h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.05; color: var(--ink); letter-spacing: -0.02em; text-wrap: balance; }
p { text-wrap: pretty; }
img, svg { display: block; max-width: 100%; }
a { color: var(--navy); text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; border-radius: 4px; }

.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; }

/* ---- Layout helpers ---- */
.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }
.section { padding-block: clamp(56px, 9vw, 110px); }
.section--tight { padding-block: clamp(40px, 6vw, 72px); }
.bg-alt { background: var(--bg-alt); }
.bg-tint { background: var(--bg-tint); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 12.5px; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--blue-ink);
  display: inline-flex; align-items: center; gap: 9px;
}
.eyebrow::before { content:""; width: 22px; height: 1.5px; background: currentColor; opacity: .6; }
.eyebrow.center::before { display: none; }

.section-head { max-width: 760px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 {
  font-size: clamp(2rem, 4.6vw, 3.25rem);
  margin-top: 18px;
  letter-spacing: -0.03em;
}
.section-head p { color: var(--ink-muted); font-size: clamp(1.02rem, 1.6vw, 1.18rem); margin-top: 18px; max-width: 60ch; }
.section-head.center p { margin-inline: auto; }
.hl { color: var(--blue-ink); }
.hl-navy { color: var(--navy); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-weight: 600; font-size: 15.5px; letter-spacing: -0.01em;
  padding: 14px 24px; border-radius: var(--r-pill);
  transition: transform .18s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease), color .2s;
  white-space: nowrap; line-height: 1;
}
.btn svg { width: 18px; height: 18px; }
.btn img.wa { width: 20px; height: 20px; object-fit: contain; display: inline-block; vertical-align: middle; flex-shrink: 0; }
.btn--primary { background: var(--navy); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--navy-700); transform: translateY(-2px); box-shadow: var(--shadow-md); }
/* footer social WA icon */
.footer-social img.wa { width: 22px; height: 22px; object-fit: contain; display: inline-block; vertical-align: middle; }
.footer-contact img.wa { width: 18px; height: 18px; object-fit: contain; display: inline-block; vertical-align: middle; flex-shrink: 0; }
.btn--ghost { background: var(--white); color: var(--ink); border: 1px solid var(--line); }
.btn--ghost:hover { border-color: var(--navy); color: var(--navy); transform: translateY(-2px); }
.btn--light { background: rgba(255,255,255,.12); color:#fff; border:1px solid rgba(255,255,255,.28); backdrop-filter: blur(4px); }
.btn--light:hover { background: rgba(255,255,255,.2); transform: translateY(-2px); }
.btn--lg { padding: 17px 30px; font-size: 16.5px; }
.btn--block { width: 100%; }

/* ============================================================
   Announcement bar
   ============================================================ */
.announce {
  background: var(--band-dark);
  color: #eaf0fb;
  font-size: 13px; font-weight: 500;
  text-align: center;
  padding: 9px var(--pad);
  display: flex; align-items: center; justify-content: center; gap: 10px;
  letter-spacing: .01em;
}
.announce .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); flex: none; }
.announce b { color: var(--gold); font-weight: 600; }

/* ============================================================
   Header / nav
   ============================================================ */
.header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in oklab, var(--bg) 86%, transparent);
  backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s, background .3s;
}
.header.scrolled { border-bottom-color: var(--line); box-shadow: 0 1px 0 rgba(20,30,60,.02); }
.nav { display: flex; align-items: center; gap: 28px; height: 66px; }
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 800; font-size: 21px; letter-spacing: -0.04em; color: var(--ink); }
.brand .mark { width: 30px; height: 30px; flex: none; }
.brand small { font-weight: 700; color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 26px; margin-left: 14px; }
.nav-links a { color: var(--ink-muted); font-size: 14.5px; font-weight: 500; transition: color .18s; }
.nav-links a:hover { color: var(--ink); }
.nav-right { margin-left: auto; display: flex; align-items: center; gap: 14px; }

/* language switch */
.lang { position: relative; }
.lang-btn { display:flex; align-items:center; gap:7px; font-size:14px; font-weight:600; color: var(--ink); padding:8px 12px; border-radius: var(--r-pill); border:1px solid var(--line); background: var(--white); transition: border-color .2s; }
.lang-btn:hover { border-color: var(--navy); }
.lang-btn svg { width: 15px; height: 15px; color: var(--ink-muted); }
.lang-menu { position:absolute; right:0; top: calc(100% + 8px); background:#fff; border:1px solid var(--line); border-radius: var(--r-md); box-shadow: var(--shadow-md); padding:6px; min-width: 150px; display:none; }
.lang-menu.open { display:block; animation: pop .16s var(--ease); }
.lang-menu button { display:flex; width:100%; align-items:center; justify-content:space-between; gap:10px; padding:9px 12px; border-radius:8px; font-size:14px; font-weight:500; color: var(--ink); text-align:left; }
.lang-menu button:hover { background: var(--bg-tint); }
.lang-menu button.active { color: var(--navy); font-weight:700; }
.lang-menu button .tick { opacity:0; width:15px; height:15px; }
.lang-menu button.active .tick { opacity:1; }

.nav-toggle { display:none; width:42px; height:42px; border-radius:10px; border:1px solid var(--line); align-items:center; justify-content:center; background:#fff; }
.nav-toggle svg { width:20px; height:20px; color: var(--ink); }

@keyframes pop { from { opacity:0; transform: translateY(-6px); } to { opacity:1; transform:none; } }

/* mobile drawer */
.drawer { position: fixed; inset: 0; z-index: 60; visibility: hidden; }
.drawer.open { visibility: visible; }
.drawer-scrim { position:absolute; inset:0; background: rgba(15,22,45,.4); opacity:0; transition: opacity .25s; }
.drawer.open .drawer-scrim { opacity:1; }
.drawer-panel { position:absolute; right:0; top:0; height:100%; width: min(84vw, 340px); background:#fff; box-shadow: var(--shadow-lg); transform: translateX(100%); transition: transform .3s var(--ease); display:flex; flex-direction:column; padding: 22px; gap: 6px; }
.drawer.open .drawer-panel { transform:none; }
.drawer-panel a { padding: 14px 8px; font-size: 17px; font-weight: 500; color: var(--ink); border-bottom: 1px solid var(--line-soft); }
.drawer-head { display:flex; align-items:center; justify-content:space-between; margin-bottom: 12px; }
.drawer-head button { width:40px; height:40px; border-radius:10px; border:1px solid var(--line); display:flex; align-items:center; justify-content:center; }

/* ============================================================
   Hero
   ============================================================ */
.hero { position: relative; padding-block: clamp(40px, 6vw, 78px) clamp(48px, 7vw, 90px); overflow: clip; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(30px, 5vw, 64px); align-items: center; }
.hero-copy { max-width: 600px; }
.hero h1 {
  font-size: clamp(2.6rem, 7vw, 4.9rem);
  line-height: 0.98; letter-spacing: -0.04em; font-weight: 800;
  margin-top: 22px;
}
.hero h1 em { font-style: normal; color: var(--blue-ink); }
.hero h1 .gold { color: var(--gold); }
.hero-sub { font-size: clamp(1.05rem, 1.7vw, 1.22rem); color: var(--ink-muted); margin-top: 24px; max-width: 46ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero-meta { display:flex; flex-wrap:wrap; gap: 10px 22px; margin-top: 30px; }
.hero-meta span { display:flex; align-items:center; gap:8px; font-size:13.5px; font-weight:500; color: var(--ink-faint); }
.hero-meta svg { width:16px; height:16px; color: var(--blue-ink); }
.hero-proof { font-size: 13.5px; color: var(--ink-faint); font-weight: 500; margin-top: 16px; letter-spacing: 0.02em; }

.hero-visual { position: relative; }
.hero-card {
  position: relative; border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 4.4;
  background: var(--band-deep);
}
.hero-card img { width:100%; height:100%; object-fit: cover; object-position: center 18%; }
.hero-badge {
  position: absolute; left: 18px; bottom: 18px; right: 18px;
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,.93);
  backdrop-filter: blur(6px);
  border-radius: var(--r-md); padding: 12px 16px;
  box-shadow: var(--shadow-sm);
}
.hero-badge .num { font-family: var(--font-display); font-weight: 800; font-size: 24px; color: var(--navy); line-height: 1; }
.hero-badge .lbl { font-size: 12.5px; color: var(--ink-muted); line-height: 1.3; }
.hero-float {
  position:absolute; top: 26px; right: -10px;
  background:#fff; border-radius: var(--r-pill); padding: 10px 16px;
  box-shadow: var(--shadow-md); display:flex; align-items:center; gap:9px;
  font-size: 13.5px; font-weight: 600; color: var(--ink);
}
.hero-float .pulse { width:8px;height:8px;border-radius:50%;background: var(--wa); box-shadow:0 0 0 0 rgba(37,211,102,.5); animation: pulse 2.4s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(37,211,102,.5);} 70%{box-shadow:0 0 0 9px rgba(37,211,102,0);} 100%{box-shadow:0 0 0 0 rgba(37,211,102,0);} }
@media (prefers-reduced-motion: reduce){ .hero-float .pulse { animation: none; } }

/* logo strip under hero */
.hero-trust { margin-top: clamp(40px,5vw,60px); padding-top: 26px; border-top: 1px solid var(--line); display:flex; align-items:center; gap: clamp(18px,3vw,44px); flex-wrap: wrap; }
.hero-trust .label { font-size: 12px; letter-spacing:.12em; text-transform:uppercase; color: var(--ink-faint); font-weight:600; }
.hero-trust .certs { display:flex; gap: clamp(14px,2.4vw,30px); flex-wrap:wrap; align-items:center; }
.hero-trust .certs span { font-family: var(--font-display); font-weight:700; font-size: 15px; color: var(--ink-faint); letter-spacing:-0.01em; }

/* ============================================================
   Intro / What is
   ============================================================ */
.intro-grid { display:grid; grid-template-columns: 1fr 1fr; gap: clamp(30px,5vw,70px); align-items:center; }
.intro-lead { font-size: clamp(1.5rem, 2.8vw, 2.1rem); font-family: var(--font-display); font-weight: 600; line-height: 1.25; letter-spacing:-0.02em; }
.intro-lead em { font-style: normal; color: var(--blue-ink); }
.intro-body { color: var(--ink-muted); font-size: 1.08rem; }
.intro-body p + p { margin-top: 16px; }
.intro-stats { display:grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-top: 30px; }
.stat { background: var(--white); border:1px solid var(--line); border-radius: var(--r-md); padding: 20px 18px; }
.stat .v { font-family: var(--font-display); font-weight: 800; font-size: 30px; color: var(--navy); letter-spacing:-0.02em; }
.stat .v .u { font-size: 16px; color: var(--ink-faint); font-weight:700; }
.stat .k { font-size: 13px; color: var(--ink-muted); margin-top: 4px; }

/* ============================================================
   Benefits grid
   ============================================================ */
.bgrid { display:grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: clamp(34px,4vw,52px); }
.bcard {
  background: var(--white); border:1px solid var(--line); border-radius: var(--r-lg);
  padding: 28px 26px; transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s;
}
.bcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.bcard .ico { width: 48px; height: 48px; border-radius: 13px; display:flex; align-items:center; justify-content:center; background: var(--bg-tint); color: var(--navy); margin-bottom: 20px; }
.bcard .ico svg { width: 24px; height: 24px; }
.bcard h3 { font-size: 1.22rem; font-weight: 700; letter-spacing:-0.02em; }
.bcard p { color: var(--ink-muted); font-size: 0.97rem; margin-top: 10px; }
.bcard .n { font-family: var(--font-display); font-size: 12px; font-weight:700; color: var(--ink-faint); letter-spacing:.1em; float:right; }

/* ============================================================
   Ingredient story — dark cosmic band
   ============================================================ */
.band {
  background:
    radial-gradient(120% 90% at 80% 0%, oklch(0.30 0.10 285 / .55), transparent 55%),
    radial-gradient(90% 80% at 0% 100%, oklch(0.34 0.13 250 / .45), transparent 55%),
    var(--band-dark);
  color: #e9eefb;
  position: relative; overflow: clip;
}
.band .eyebrow { color: oklch(0.78 0.10 250); }
.band h2 { color: #fff; }
.band .muted { color: oklch(0.78 0.02 260); }
.band-grid { display:grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(34px,5vw,72px); align-items: start; }
.band-sticky { position: sticky; top: 100px; }
.band-visual { border-radius: var(--r-xl); overflow:hidden; box-shadow: var(--shadow-lg); border:1px solid rgba(255,255,255,.08); }
.band-visual img { width:100%; display:block; }
.band-sticky h2 { font-size: clamp(2rem, 4vw, 3rem); margin-top: 16px; }
.band-sticky p { color: oklch(0.80 0.02 260); margin-top: 18px; max-width: 42ch; }
.band-note { margin-top: 22px; display:flex; gap:10px; align-items:flex-start; font-size:13.5px; color: oklch(0.72 0.02 260); }
.band-note svg { width:17px;height:17px;flex:none;margin-top:1px;color: var(--gold); }

.ing-list { display:flex; flex-direction: column; gap: 16px; }
.ing {
  background: oklch(0.26 0.045 270 / .55);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--r-lg); padding: 26px 26px;
  backdrop-filter: blur(2px);
}
.ing-top { display:flex; align-items:center; gap:14px; }
.ing-num { font-family: var(--font-display); font-weight:800; font-size: 13px; color: var(--band-dark); background: var(--gold); width: 30px; height:30px; border-radius: 9px; display:flex; align-items:center; justify-content:center; flex:none; }
.ing h3 { color:#fff; font-size: 1.22rem; font-weight:700; letter-spacing:-0.01em; }
.ing .role { font-size: 12px; letter-spacing:.12em; text-transform:uppercase; color: oklch(0.78 0.09 250); font-weight:600; margin-top:2px; }
.ing .desc { color: oklch(0.82 0.018 260); font-size: 0.98rem; margin-top: 14px; }
.ing .chips { display:flex; flex-wrap:wrap; gap:8px; margin-top: 16px; }
.chip { font-size: 12.5px; font-weight:500; padding: 6px 12px; border-radius: var(--r-pill); background: rgba(255,255,255,.08); color: #dce6fb; border:1px solid rgba(255,255,255,.1); }
.chip.gold { color: var(--gold); border-color: oklch(0.74 0.10 80 / .4); }

/* ============================================================
   One Sip strip
   ============================================================ */
.sip { display:grid; grid-template-columns: repeat(5,1fr); gap: 14px; margin-top: clamp(34px,4vw,48px); }
.sip-item { text-align:center; padding: 28px 18px; border-radius: var(--r-lg); background: var(--white); border:1px solid var(--line); transition: transform .25s var(--ease), box-shadow .25s; }
.sip-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.sip-item .ico { width:46px; height:46px; margin: 0 auto 16px; border-radius:50%; display:flex; align-items:center; justify-content:center; background: var(--bg-tint); color: var(--navy); }
.sip-item .ico svg { width:22px; height:22px; }
.sip-item h4 { font-size: 1rem; font-weight:700; letter-spacing:-0.01em; }
.sip-item p { font-size: 13px; color: var(--ink-muted); margin-top: 7px; }

/* ============================================================
   Who it's for — persona cards
   ============================================================ */
.personas { display:grid; grid-template-columns: repeat(5,1fr); gap: 14px; margin-top: clamp(34px,4vw,48px); }
.persona { border-radius: var(--r-lg); overflow:hidden; background: var(--white); border:1px solid var(--line); transition: transform .25s var(--ease), box-shadow .25s; }
.persona:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.ph {
  aspect-ratio: 3/3.4; position:relative;
  background-color: var(--bg-tint);
  background-image: repeating-linear-gradient(135deg, rgba(40,70,130,.05) 0 11px, transparent 11px 22px);
  display:flex; align-items:flex-end; padding: 14px;
}
.ph .tag { font-family: var(--font-mono, monospace); font-size: 11px; color: var(--ink-faint); background: rgba(255,255,255,.8); padding: 4px 8px; border-radius: 6px; }
.ph .pico { position:absolute; top:14px; left:14px; width:34px;height:34px; border-radius:9px; background:#fff; box-shadow: var(--shadow-xs); display:flex;align-items:center;justify-content:center; color: var(--navy); }
.ph .pico svg { width:18px;height:18px; }
.persona .pbody { padding: 18px 18px 22px; }
.persona h4 { font-size: 1.05rem; font-weight:700; letter-spacing:-0.01em; }
.persona p { font-size: 13.5px; color: var(--ink-muted); margin-top: 7px; }

/* ============================================================
   Trust bar
   ============================================================ */
.trust { background: var(--band-dark); color:#e9eefb; }
.trust .wrap { text-align:center; }
.trust .eyebrow { color: oklch(0.80 0.09 250); justify-content:center; }
.trust h2 { color:#fff; font-size: clamp(1.7rem,3.4vw,2.5rem); margin-top:14px; }
.trust p { color: oklch(0.80 0.02 260); margin: 16px auto 0; max-width: 52ch; }
.badges { display:flex; flex-wrap:wrap; justify-content:center; gap: 16px; margin-top: 40px; }
.badge {
  display:flex; flex-direction:column; align-items:center; gap:12px;
  width: 168px; padding: 24px 18px; border-radius: var(--r-lg);
  background: rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.1);
  transition: transform .25s var(--ease), background .25s; cursor: pointer; color: inherit;
}
.badge:hover { transform: translateY(-4px); background: rgba(255,255,255,.09); }
.badge .seal { width:58px; height:58px; border-radius:50%; display:flex; align-items:center; justify-content:center; background: linear-gradient(160deg, oklch(0.34 0.08 255), oklch(0.26 0.06 270)); border:1px solid rgba(255,255,255,.16); color: var(--gold); }
.badge .seal svg { width:26px;height:26px; }
.badge .bname { font-family: var(--font-display); font-weight:700; font-size: 15px; color:#fff; letter-spacing:-0.01em; }
.badge .bsub { font-size: 11.5px; color: oklch(0.74 0.02 260); }
.badge .view { font-size: 11px; color: oklch(0.80 0.09 250); display:flex; align-items:center; gap:4px; opacity:0; transition: opacity .2s; }
.badge:hover .view { opacity:1; }

/* ============================================================
   Research + references
   ============================================================ */
.research-card { background: var(--white); border:1px solid var(--line); border-radius: var(--r-xl); padding: clamp(28px,4vw,48px); box-shadow: var(--shadow-sm); }
.research-grid { display:grid; grid-template-columns: 1.1fr .9fr; gap: clamp(28px,4vw,56px); align-items:center; }
.research-card h2 { font-size: clamp(1.7rem,3.4vw,2.4rem); margin-top:14px; }
.research-card p { color: var(--ink-muted); margin-top: 16px; }
.research-pills { display:flex; gap:10px; flex-wrap:wrap; margin-top: 22px; }
.rpill { display:flex; align-items:center; gap:8px; font-size:13.5px; font-weight:600; color: var(--navy); background: var(--bg-tint); border:1px solid var(--line); padding: 9px 15px; border-radius: var(--r-pill); }
.rpill svg { width:15px;height:15px; }
.research-stats { display:grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.rstat { background: var(--bg-tint); border-radius: var(--r-md); padding: 22px; }
.rstat .v { font-family: var(--font-display); font-weight:800; font-size: 34px; color: var(--navy); letter-spacing:-0.02em; }
.rstat .k { font-size: 13px; color: var(--ink-muted); margin-top:4px; }

.refbox { margin-top: 26px; border-top: 1px solid var(--line); padding-top: 22px; }
.ref-toggle { display:flex; align-items:center; justify-content:space-between; width:100%; gap: 14px; padding: 6px 0; }
.ref-toggle .t { font-family: var(--font-display); font-weight:700; font-size: 1.1rem; color: var(--ink); letter-spacing:-0.01em; }
.ref-toggle .chev { width:34px;height:34px;border-radius:50%;border:1px solid var(--line); display:flex;align-items:center;justify-content:center; transition: transform .3s var(--ease), background .2s; color: var(--navy); flex:none; }
.ref-toggle[aria-expanded="true"] .chev { transform: rotate(180deg); background: var(--bg-tint); }
.ref-panel { overflow:hidden; max-height:0; transition: max-height .45s var(--ease); }
.ref-panel.open { max-height: 3200px; }
.ref-inner { padding-top: 20px; }
.ref-note { font-size: 13px; color: var(--ink-faint); background: var(--warning-bg, var(--bg-tint)); border-radius: 10px; padding: 12px 16px; margin-bottom: 18px; display:flex; gap:9px; align-items:flex-start; }
.ref-note svg { width:16px;height:16px;flex:none;margin-top:2px;color: var(--ink-faint); }
.ref-list { list-style: none; counter-reset: ref; display:grid; gap: 12px; max-height: 420px; overflow-y: auto; padding-right: 10px; }
.ref-list li { counter-increment: ref; position:relative; padding-left: 40px; font-size: 13.2px; color: var(--ink-muted); line-height: 1.5; }
.ref-list li::before { content: counter(ref); position:absolute; left:0; top:1px; font-family: var(--font-display); font-weight:700; font-size:11px; color: var(--navy); background: var(--bg-tint); width:28px; height:20px; border-radius: 6px; display:flex; align-items:center; justify-content:center; }
.ref-list a { color: var(--navy); text-decoration: underline; text-underline-offset: 2px; word-break: break-word; }
.ref-list::-webkit-scrollbar { width: 8px; }
.ref-list::-webkit-scrollbar-thumb { background: var(--line); border-radius: 8px; }

/* ============================================================
   Direction of use
   ============================================================ */
.steps { display:grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: clamp(34px,4vw,48px); }
.step { background: var(--white); border:1px solid var(--line); border-radius: var(--r-lg); padding: 28px 26px; position:relative; }
.step .sn { font-family: var(--font-display); font-weight:800; font-size: 14px; color:#fff; background: var(--navy); width:34px;height:34px;border-radius:50%; display:flex;align-items:center;justify-content:center; margin-bottom: 18px; }
.step h4 { font-size: 1.1rem; font-weight:700; letter-spacing:-0.01em; }
.step p { color: var(--ink-muted); font-size: 0.96rem; margin-top: 9px; }
.dose-note { margin-top: 22px; display:flex; gap:10px; align-items:center; justify-content:center; font-size:13.5px; color: var(--ink-faint); }
.dose-note svg { width:16px;height:16px; color: var(--blue-ink); }

/* ============================================================
   Reviews carousel
   ============================================================ */
.rev-head { display:flex; align-items:flex-end; justify-content:space-between; gap: 20px; flex-wrap: wrap; }
.rev-track-wrap { overflow: hidden; margin-top: clamp(30px,4vw,44px); }
.rev-track { display:flex; gap: 18px; transition: transform .5s var(--ease); }
.review { flex: 0 0 calc((100% - 36px)/3); background: var(--white); border:1px solid var(--line); border-radius: var(--r-lg); padding: 28px 26px; display:flex; flex-direction:column; }
.review .stars { display:flex; gap:3px; color: var(--gold); margin-bottom: 16px; }
.review .stars svg { width:16px;height:16px; }
.review blockquote { font-size: 1.05rem; line-height: 1.55; color: var(--ink); letter-spacing:-0.01em; }
.review .who { display:flex; align-items:center; gap:12px; margin-top: auto; padding-top: 22px; }
.review .av { width:42px;height:42px;border-radius:50%; background: linear-gradient(150deg, var(--blue), var(--navy)); color:#fff; display:flex;align-items:center;justify-content:center; font-weight:700; font-family: var(--font-display); font-size:15px; flex:none; }
.review .who .nm { font-weight:600; font-size:14.5px; }
.review .who .rl { font-size: 12.5px; color: var(--ink-faint); }
.rev-controls { display:flex; gap:10px; }
.rev-controls button { width:46px;height:46px;border-radius:50%;border:1px solid var(--line); background:#fff; display:flex;align-items:center;justify-content:center; color: var(--ink); transition: border-color .2s, color .2s, background .2s; }
.rev-controls button:hover { border-color: var(--navy); color: var(--navy); }
.rev-controls button:disabled { opacity:.4; cursor: default; }
.rev-controls svg { width:20px;height:20px; }
.sample-tag { font-size:11px; letter-spacing:.1em; text-transform:uppercase; color: var(--ink-faint); font-weight:600; }

/* review pagination dots */
.rev-dots { display:flex; justify-content:center; align-items:center; gap:8px; margin-top:24px; }
.rev-dot {
  width:8px; height:8px; border-radius:50%;
  background:var(--line); border:none; cursor:pointer; padding:0;
  transition: width .35s var(--ease), background .3s var(--ease),
              border-radius .35s var(--ease), transform .2s;
  flex:none;
}
.rev-dot:hover { background:var(--ink-faint); transform:scale(1.3); }
.rev-dot.active {
  width:28px; border-radius:4px; pointer-events:none;
  overflow:hidden; position:relative;
  background:oklch(0.40 0.09 255 / .22);
}
.rev-dot.active::after {
  content:""; position:absolute; inset:0;
  background:var(--navy); border-radius:4px;
  transform-origin:left;
  animation:dot-fill 3s linear forwards;
}
@keyframes dot-fill { from { transform:scaleX(0); } to { transform:scaleX(1); } }

/* ============================================================
   FAQ
   ============================================================ */
.faq-grid { display:grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(30px,5vw,64px); align-items:start; }
.faq-list { display:flex; flex-direction:column; }
.fitem { border-bottom: 1px solid var(--line); }
.fitem:first-child { border-top: 1px solid var(--line); }
.fq { display:flex; align-items:center; justify-content:space-between; gap: 18px; width:100%; text-align:left; padding: 22px 4px; }
.fq .qt { font-family: var(--font-display); font-weight:600; font-size: 1.1rem; color: var(--ink); letter-spacing:-0.01em; }
.fq .pm { width:30px;height:30px;flex:none; border-radius:50%; border:1px solid var(--line); display:flex;align-items:center;justify-content:center; color: var(--navy); transition: transform .3s var(--ease), background .2s; }
.fq[aria-expanded="true"] .pm { background: var(--navy); color:#fff; transform: rotate(45deg); border-color: var(--navy); }
.fq .pm svg { width:16px;height:16px; }
.fa { overflow:hidden; max-height:0; transition: max-height .4s var(--ease); }
.fa-inner { padding: 0 4px 24px; color: var(--ink-muted); font-size: 1rem; max-width: 60ch; }
.faq-aside { background: var(--white); border:1px solid var(--line); border-radius: var(--r-xl); padding: clamp(26px,3vw,36px); position: sticky; top: 92px; }
.faq-aside h3 { font-size: 1.4rem; font-weight:700; }
.faq-aside p { color: var(--ink-muted); font-size: 0.98rem; margin-top: 12px; }
.faq-aside .btn { margin-top: 22px; }

/* ============================================================
   CTA banner
   ============================================================ */
.cta-band {
  background:
    radial-gradient(110% 120% at 90% 10%, oklch(0.34 0.12 250 / .5), transparent 55%),
    var(--band-dark);
  color:#fff; border-radius: clamp(20px,3vw,32px); overflow:clip;
  padding: clamp(40px,6vw,72px) clamp(28px,5vw,72px);
  display:grid; grid-template-columns: 1.3fr .7fr; gap: 36px; align-items:center;
}
.cta-band h2 { color:#fff; font-size: clamp(1.9rem,4vw,3rem); }
.cta-band p { color: oklch(0.82 0.02 260); margin-top: 16px; max-width: 44ch; }
.cta-actions { display:flex; flex-direction:column; gap: 14px; }
.cta-actions .btn--primary { background:#fff; color: var(--navy); }
.cta-actions .btn--primary:hover { background:#eef2fb; }

/* ============================================================
   Footer
   ============================================================ */
.footer { background: var(--bg-alt); border-top: 1px solid var(--line); padding-block: clamp(48px,6vw,72px) 32px; }
.footer-top { display:grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 36px; }
.footer .brand { color: var(--ink); margin-bottom: 16px; }
.footer-about p { color: var(--ink-muted); font-size: 14px; max-width: 34ch; }
.footer-social { display:flex; gap:10px; margin-top: 18px; }
.footer-social a { width:40px;height:40px;border-radius:50%;border:1px solid var(--line);background:#fff; display:flex;align-items:center;justify-content:center; color: var(--ink-muted); transition: color .2s, border-color .2s; }
.footer-social a:hover { color: var(--navy); border-color: var(--navy); }
.footer-social svg { width:18px;height:18px; }
.footer-col h5 { font-family: var(--font-display); font-size: 13px; text-transform:uppercase; letter-spacing:.1em; color: var(--ink); font-weight:700; margin-bottom: 16px; }
.footer-col ul { display:flex; flex-direction:column; gap: 11px; }
.footer-col a, .footer-col li { color: var(--ink-muted); font-size: 14px; }
.footer-col a:hover { color: var(--navy); }
.footer-contact a { display:flex; align-items:center; gap:9px; }
.footer-contact svg { width:16px;height:16px; color: var(--blue-ink); flex:none; }
.footer-lang { margin-top: 4px; }
.footer-lang .lang-btn { width:100%; justify-content:space-between; }
.disclaimer { margin-top: clamp(36px,5vw,52px); padding-top: 26px; border-top: 1px solid var(--line); display:flex; gap:14px; align-items:flex-start; }
.disclaimer svg { width:22px;height:22px;flex:none; color: var(--ink-faint); margin-top:2px; }
.disclaimer p { font-size: 12.5px; color: var(--ink-faint); line-height: 1.6; max-width: 95ch; }
.footer-base { margin-top: 26px; display:flex; justify-content:space-between; gap:14px; flex-wrap:wrap; font-size: 12.5px; color: var(--ink-faint); }

/* ============================================================
   Lightbox
   ============================================================ */
.lightbox { position: fixed; inset:0; z-index: 90; display:none; align-items:center; justify-content:center; padding: 30px; background: rgba(12,18,38,.8); backdrop-filter: blur(6px); }
.lightbox.open { display:flex; animation: fade .2s; }
.lightbox img { max-width: min(620px, 92vw); max-height: 88vh; border-radius: 12px; box-shadow: var(--shadow-lg); }
.lightbox .lb-close { position:absolute; top:22px; right:22px; width:46px;height:46px;border-radius:50%; background:rgba(255,255,255,.14); color:#fff; display:flex;align-items:center;justify-content:center; border:1px solid rgba(255,255,255,.25); }
.lightbox .lb-cap { position:absolute; bottom:26px; left:0; right:0; text-align:center; color:#dbe4f7; font-size:13px; }
@keyframes fade { from{opacity:0;} to{opacity:1;} }

/* ============================================================
   Scroll reveal
   ============================================================ */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"]{ transition-delay:.07s; }
.reveal[data-d="2"]{ transition-delay:.14s; }
.reveal[data-d="3"]{ transition-delay:.21s; }
.reveal[data-d="4"]{ transition-delay:.28s; }
@media (prefers-reduced-motion: reduce){ .reveal { opacity:1 !important; transform:none !important; transition:none; } }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px){
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 460px; }
  .band-grid { grid-template-columns: 1fr; }
  .band-sticky { position: static; }
  .bgrid { grid-template-columns: repeat(2,1fr); }
  .sip { grid-template-columns: repeat(3,1fr); }
  .personas { grid-template-columns: repeat(3,1fr); }
  .research-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-aside { position: static; }
  .cta-band { grid-template-columns: 1fr; }
  .review { flex: 0 0 calc((100% - 18px)/2); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 30px; }
}
@media (max-width: 760px){
  .nav-links, .nav-right .lang { display:none; }
  .nav-toggle { display:flex; }
  .intro-grid { grid-template-columns: 1fr; }
  .bgrid { grid-template-columns: 1fr; }
  .sip { grid-template-columns: repeat(2,1fr); }
  .personas { grid-template-columns: repeat(2,1fr); }
  .steps { grid-template-columns: 1fr; }
  .review { flex: 0 0 100%; }
  .research-stats { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-trust { gap: 14px; }
}
@media (max-width: 460px){
  .sip, .personas { grid-template-columns: 1fr 1fr; }
  body { font-size: 16px; }
}

/* ============================================================
   ████  REDESIGN v2 — air, brand logo, photography, motion  ████
   ============================================================ */

:root {
  --maxw: 1240px;
  --pad: clamp(22px, 5vw, 56px);
  --gold-2: oklch(0.82 0.11 85);
}

/* ---- brand image logo ---- */
.logo-img {
  height: 36px;
  width: auto;
  display: block;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,.18));
}
.logo-img--lg { height: 46px; }


.section { padding-block: clamp(72px, 11vw, 144px); }
.section--tight { padding-block: clamp(52px, 7vw, 90px); }
.section-head h2 { margin-top: 20px; letter-spacing: -0.035em; line-height: 1.02; }
.section-head p { margin-top: 22px; }
body { font-size: 17.5px; line-height: 1.65; }

/* ============================================================
   Brand wordmark logo (gold UNI / ink MAX) — consistent
   ============================================================ */
.logo {
  display: inline-grid; line-height: 0.74;
  font-family: 'Playfair Display', Georgia, serif;
  text-decoration: none;
}
.logo .lu {
  font-weight: 800; font-size: 1.34em; letter-spacing: 0.03em;
  background: linear-gradient(165deg, #e8cd86 0%, #cda24f 45%, #a87b34 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.logo .lm {
  font-weight: 800; font-size: 1.06em; letter-spacing: 0.01em;
  color: var(--ink); justify-self: start; margin-left: 1.15em; margin-top: -0.1em;
}
.logo--light .lm { color: #fff; }
.brand.logo { gap: 0; }

/* nav refinement */
.nav { height: 74px; gap: 30px; }
.header { background: color-mix(in oklab, var(--bg) 80%, transparent); }
.nav-links a { font-size: 15px; }
.lang-btn { border-radius: var(--r-pill); }

/* ============================================================
   HERO v2 — light, floating product, airy
   ============================================================ */
.hero { padding-block: clamp(44px, 6vw, 88px) clamp(40px, 6vw, 80px); }
.hero-grid { gap: clamp(34px, 5vw, 80px); align-items: center; }
/* tuned for longer hook copy — question + answer on two visual lines */
.hero h1 {
  font-size: clamp(1.9rem, 3.4vw, 2.9rem);
  letter-spacing: -0.035em;
  line-height: 1.14;
  text-wrap: pretty;
}
.hero h1 em { position: relative; color: var(--blue-ink); white-space: nowrap; }
.hero h1 .h1-result {
  display: inline-block;
  background: linear-gradient(135deg, #e8cd86 0%, #cda24f 45%, #a07228 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.hero h1 em::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0.06em; height: 0.13em;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  border-radius: 3px; transform: scaleX(0); transform-origin: left;
  animation: underline 0.9s 0.5s var(--ease) forwards;
}
@keyframes underline { to { transform: scaleX(1); } }
@media (prefers-reduced-motion: reduce){ .hero h1 em::after { transform: scaleX(1); animation: none; } }
.hero-sub { font-size: clamp(1.08rem, 1.7vw, 1.28rem); max-width: 40ch; margin-top: 26px; }

/* floating product stage */
.hero-visual { max-width: none; }
.hero-stage {
  position: relative; aspect-ratio: 1/1;
  display: grid; place-items: center;
}
.hero-stage::before {
  content: ""; position: absolute; inset: 6% 6% 10%;
  background: radial-gradient(60% 55% at 50% 42%, oklch(0.82 0.07 250 / .35), transparent 70%);
  filter: blur(8px); z-index: 0;
}
.hero-shot {
  position: relative; z-index: 2; width: 100%; height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 40px 50px rgba(20,30,70,.22));
  animation: floaty 6s ease-in-out infinite;
}
@keyframes floaty { 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(-12px); } }
@media (prefers-reduced-motion: reduce){ .hero-shot { animation: none; } }
.orb { position: absolute; border-radius: 50%; z-index: 1; filter: blur(1px);
  background: radial-gradient(circle at 35% 30%, #8fc4ff, #2f6fd0); box-shadow: 0 10px 26px rgba(47,111,208,.4); }
.orb-a { width: 60px; height: 60px; top: 14%; left: 6%; animation: floaty 5s ease-in-out infinite; }
.orb-b { width: 38px; height: 38px; bottom: 20%; right: 9%; animation: floaty 7s ease-in-out infinite reverse; }
.orb-c { width: 22px; height: 22px; top: 30%; right: 18%; opacity: .7; animation: floaty 6.4s ease-in-out infinite; }
@media (prefers-reduced-motion: reduce){ .orb { animation: none !important; } }

.hero-chip {
  position: absolute; z-index: 3; display: flex; align-items: center; gap: 11px;
  background: rgba(255,255,255,.92); backdrop-filter: blur(8px);
  border: 1px solid var(--line); border-radius: 16px; padding: 12px 16px;
  box-shadow: var(--shadow-md);
}
.hero-chip .ci { width: 38px; height: 38px; border-radius: 11px; flex: none;
  display: flex; align-items: center; justify-content: center; background: var(--bg-tint); color: var(--navy); }
.hero-chip .ci svg { width: 20px; height: 20px; }
.hero-chip .num { font-family: var(--font-display); font-weight: 800; font-size: 20px; color: var(--navy); line-height: 1; }
.hero-chip .ct { font-size: 12.5px; color: var(--ink-muted); line-height: 1.3; font-weight: 500; }
.hero-chip .ct b { color: var(--ink); font-weight: 700; display: block; }
.chip-1 { left: -4%; bottom: 16%; animation: floaty 6.5s ease-in-out infinite; }
.chip-2 { right: -2%; top: 12%; animation: floaty 5.5s ease-in-out infinite reverse; }
@media (prefers-reduced-motion: reduce){ .hero-chip { animation: none !important; } }

/* certs strip a touch airier */
.hero-trust { margin-top: clamp(34px,5vw,56px); }

/* ============================================================
   FEATURE STRIP (4 product features)
   ============================================================ */
.features { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-alt); }
.features .wrap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.feat {
  display: flex; align-items: center; gap: 16px; padding: 34px clamp(18px,2.4vw,30px);
  position: relative;
}
.feat + .feat::before { content: ""; position: absolute; left: 0; top: 22%; bottom: 22%; width: 1px; background: var(--line); }
.feat .fi { width: 50px; height: 50px; flex: none; color: var(--gold); }
.feat .fi svg { width: 100%; height: 100%; }
.feat .ft { font-family: var(--font-display); font-weight: 600; font-size: 1.02rem; letter-spacing: -0.01em; color: var(--ink); line-height: 1.25; }
.feat .fs { font-size: 12.5px; color: var(--ink-faint); margin-top: 3px; }

/* ============================================================
   INTRO v2 — add product photo + airy
   ============================================================ */
.intro-grid { gap: clamp(34px,5vw,84px); }
.intro-lead { font-size: clamp(1.6rem, 3vw, 2.35rem); line-height: 1.22; }
.intro-media { position: relative; border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-md); background: var(--bg-tint); }
.intro-media img { width: 100%; height: auto; display: block; aspect-ratio: 1/1; object-fit: cover; transition: transform .8s var(--ease); }
.intro-media:hover img { transform: scale(1.04); }
.intro-media .imtag { position: absolute; left: 18px; bottom: 18px; background: rgba(255,255,255,.92); backdrop-filter: blur(6px);
  border-radius: 12px; padding: 10px 15px; font-size: 13px; font-weight: 600; color: var(--ink); box-shadow: var(--shadow-sm); display: flex; align-items: center; gap: 8px; }
.intro-media .imtag svg { width: 16px; height: 16px; color: var(--blue-ink); }

/* ============================================================
   BENEFITS v2 — airier
   ============================================================ */
.bgrid { gap: 20px; margin-top: clamp(40px,5vw,64px); }
.bcard { padding: 34px 32px; border-radius: var(--r-xl); }
.bcard .ico { width: 54px; height: 54px; transition: transform .3s var(--ease), background .3s; }
.bcard:hover .ico { transform: translateY(-3px) rotate(-4deg); background: var(--navy); color: #fff; }
.bcard h3 { font-size: 1.28rem; }

/* ============================================================
   INGREDIENT BAND v2 — animated bg + scroll-active
   ============================================================ */
.band {
  background:
    radial-gradient(120% 90% at 80% 0%, oklch(0.30 0.10 285 / .55), transparent 55%),
    radial-gradient(90% 80% at 0% 100%, oklch(0.34 0.13 250 / .45), transparent 55%),
    var(--band-dark);
}
.band::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(40% 40% at 20% 30%, oklch(0.5 0.16 250 / .14), transparent 60%);
  animation: bandglow 14s ease-in-out infinite alternate;
}
@keyframes bandglow { 0%{ transform: translate(0,0); } 100%{ transform: translate(12%, 8%); } }
@media (prefers-reduced-motion: reduce){ .band::before { animation: none; } }
.band .wrap { position: relative; z-index: 1; }
.band-grid { gap: clamp(40px,5vw,90px); }
.band-sticky h2 { font-size: clamp(2.2rem, 4.4vw, 3.3rem); }
.band-visual { border-radius: var(--r-xl); }
.band-visual img { height: auto; transition: transform .9s var(--ease); }
.band-visual:hover img { transform: scale(1.05); }

.ing-list { gap: 18px; }
.ing {
  padding: 28px 30px; transition: transform .4s var(--ease), filter .4s, background .4s, border-color .4s, box-shadow .4s;
}
.ing:not(.active) { filter: brightness(.72) saturate(.9); }
.ing.active {
  transform: translateX(6px);
  background: oklch(0.30 0.06 270 / .7);
  border-color: oklch(0.74 0.10 80 / .45);
  box-shadow: -4px 0 0 var(--gold), 0 20px 40px -16px rgba(0,0,0,.5);
}
.ing h3 { font-size: 1.3rem; }
.ing .desc { transition: max-height .4s var(--ease), opacity .4s; }

/* ============================================================
   ONE SIP v2
   ============================================================ */
.sip { gap: 18px; margin-top: clamp(40px,5vw,60px); }
.sip-item { padding: 34px 22px; border-radius: var(--r-xl); }
.sip-item .ico { width: 54px; height: 54px; transition: transform .4s var(--ease); }
.sip-item:hover .ico { transform: scale(1.12) rotate(6deg); }

/* ============================================================
   PERSONAS v2 — clean icon cards (no fake photos)
   ============================================================ */
.persona { border-radius: var(--r-xl); overflow: hidden; }
.p-top {
  aspect-ratio: 16/10; position: relative; display: grid; place-items: center;
  background:
    radial-gradient(80% 90% at 50% 0%, oklch(0.95 0.02 250), transparent),
    var(--bg-tint);
  overflow: hidden;
}
.p-top::after { content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(135deg, oklch(0.55 0.09 255 / .05) 0 14px, transparent 14px 28px); }
.p-top .p-ico { position: relative; z-index: 1; width: 60px; height: 60px; border-radius: 18px;
  background: #fff; box-shadow: var(--shadow-sm); display: grid; place-items: center; color: var(--navy);
  transition: transform .4s var(--ease); }
.persona:hover .p-top .p-ico { transform: translateY(-4px) scale(1.06); color: var(--gold); }
.p-top .p-ico svg { width: 30px; height: 30px; }
.persona .pbody { padding: 22px 22px 26px; }
.persona h4 { font-size: 1.12rem; }

/* ============================================================
   TRUST v2
   ============================================================ */
.badge { width: 178px; border-radius: var(--r-xl); transition: transform .3s var(--ease), background .3s, border-color .3s; }
.badge:hover { border-color: oklch(0.74 0.10 80 / .4); }
.badge .seal { transition: transform .4s var(--ease); }
.badge:hover .seal { transform: rotateY(180deg) scale(1.05); }

/* ============================================================
   CTA band v2 — with photo
   ============================================================ */
.cta-band { grid-template-columns: 1.15fr .85fr; overflow: hidden; position: relative; }
.cta-photo { position: relative; border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4/3; box-shadow: var(--shadow-lg); }
.cta-photo img { width: 100%; height: 100%; object-fit: cover; }
.cta-inner { display: grid; grid-template-columns: 1.25fr .75fr; gap: clamp(28px,4vw,56px); align-items: center; }

/* ============================================================
   STAT count-up
   ============================================================ */
.stat .v, .rstat .v { font-variant-numeric: tabular-nums; }

/* ============================================================
   Reveal: add a scale/blur flavor
   ============================================================ */
.reveal { transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { transform: none; }

/* ============================================================
   Responsive v2
   ============================================================ */
@media (max-width: 1024px){
  .features .wrap { grid-template-columns: 1fr 1fr; }
  .feat:nth-child(2)::before, .feat:nth-child(4)::before { display: none; }
  .feat:nth-child(3)::before, .feat:nth-child(4)::before { display: block; }
  .cta-inner { grid-template-columns: 1fr; }
  .cta-photo { order: -1; aspect-ratio: 16/9; }
}
@media (max-width: 760px){
  .features .wrap { grid-template-columns: 1fr; }
  .feat + .feat::before { display: none; }
  .feat { border-top: 1px solid var(--line); }
  .feat:first-child { border-top: none; }
  .intro-media { max-width: 460px; }
  .hero-chip { padding: 9px 12px; }
  .hero-chip .num { font-size: 17px; }
  .chip-1 { left: 0; } .chip-2 { right: 0; }
}

/* ============================================================
   ████  v3 — bright photography, gallery, less-rigid layout  ████
   ============================================================ */

/* CTA band fix — was 2-col with 1 child, leaving empty void */
.cta-band { display: block !important; }
.cta-inner { display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(28px,4vw,56px); align-items: center; }
.cta-photo img { width: 100%; height: auto; object-fit: cover; display: block; }
@media (max-width: 1024px){
  .cta-inner { grid-template-columns: 1fr; }
  .cta-photo { order: -1; }
  .cta-photo img { aspect-ratio: 16/9; object-fit: cover; height: auto; }
}

/* Persona section — tighter, no dead whitespace */
#who.section { padding-bottom: clamp(36px,5vw,60px); }

/* hero: bright product, no boxy shadow (image bg is light) */
.hero-stage { aspect-ratio: 1 / 1.08; }
.hero-shot { filter: drop-shadow(0 26px 34px rgba(20,30,70,.14)); border-radius: var(--r-xl); }

/* intro: natural-ratio editorial photo card + overlap chip */
.intro-grid { align-items: center; }
.intro-media { background: transparent; box-shadow: none; overflow: visible; }
.intro-media .imframe { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-md); position: relative; }
.intro-media .imframe img { width: 100%; height: auto; display: block; aspect-ratio: auto; }
.intro-media:hover .imframe img { transform: scale(1.04); }
.intro-media .imtag { left: auto; right: 18px; bottom: 18px; }
.intro-pop {
  position: absolute; left: -22px; bottom: 34px; z-index: 3;
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  padding: 14px 18px; box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 12px;
}
.intro-pop .pv { font-family: var(--font-display); font-weight: 800; font-size: 26px; color: var(--navy); line-height: 1; letter-spacing: -0.02em; }
.intro-pop .pk { font-size: 12.5px; color: var(--ink-muted); line-height: 1.3; font-weight: 500; }
.intro-pop .pk b { display: block; color: var(--ink); font-weight: 700; }

/* ============================================================
   GALLERY — asymmetric editorial bento
   ============================================================ */
.gallery-grid {
  display: grid; grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 224px; gap: 18px; margin-top: clamp(40px,5vw,60px);
}
.gtile {
  border-radius: var(--r-xl); overflow: hidden; position: relative;
  background: var(--bg-tint); box-shadow: var(--shadow-sm);
  border: 1px solid var(--line-soft);
}
.gtile img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); display: block; }
.gtile:hover img { transform: scale(1.06); }
.gtile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,22,45,.22), transparent 42%); opacity: 0; transition: opacity .4s; }
.gtile:hover::after { opacity: 1; }
.gcap {
  position: absolute; left: 16px; bottom: 16px; z-index: 2;
  background: rgba(255,255,255,.92); backdrop-filter: blur(6px);
  border-radius: 11px; padding: 8px 14px; font-size: 13px; font-weight: 600; color: var(--ink);
  box-shadow: var(--shadow-xs); display: inline-flex; align-items: center; gap: 8px;
  transform: translateY(6px); opacity: 0; transition: transform .4s var(--ease), opacity .4s;
}
.gtile:hover .gcap, .gtile.reveal.in .gcap { transform: none; opacity: 1; }
.gcap svg { width: 15px; height: 15px; color: var(--blue-ink); }
.g1 { grid-column: span 5; grid-row: span 2; }
.g2 { grid-column: span 7; grid-row: span 1; }
.g3 { grid-column: span 4; grid-row: span 1; }
.g4 { grid-column: span 3; grid-row: span 1; }

/* Persona marquee */
.personas-outer { overflow: hidden; margin-top: clamp(36px,4vw,52px); position: relative; }
.personas-outer::before, .personas-outer::after { content:''; position:absolute; top:0; bottom:0; width:80px; z-index:2; pointer-events:none; }
.personas-outer::before { left:0; background:linear-gradient(to right, var(--bg-alt), transparent); }
.personas-outer::after { right:0; background:linear-gradient(to left, var(--bg-alt), transparent); }
.personas-track { display:flex; gap:20px; width:max-content; animation: marquee-left 34s linear infinite; padding-block: 8px 24px; }
.personas-outer:hover .personas-track { animation-play-state: paused; }
@keyframes marquee-left { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce){ .personas-track { animation: none; } }
.wcard {
  flex: none; width: 260px; border-radius: var(--r-xl); overflow:hidden;
  position: relative; box-shadow: var(--shadow-md); border: 1px solid var(--line-soft);
  transition: transform .35s var(--ease); cursor: default;
}
.personas-outer:hover .wcard:hover { transform: translateY(-6px) scale(1.02); }
.wcard .wimg { aspect-ratio: 2/2.7; overflow:hidden; background: var(--bg-tint); }
.wcard .wimg img { width:100%; height:100%; object-fit:cover; transition: transform .8s var(--ease); display: block; }
.wcard:hover .wimg img { transform: scale(1.07); }
.wcard .wbody { padding: 18px 18px 22px; background: #fff; }
.wcard h4 { font-size: 1.04rem; font-weight: 700; letter-spacing: -0.015em; }
.wcard p { font-size: 13.5px; color: var(--ink-muted); margin-top: 7px; }

/* cert pill badges — hero trust strip */
.cert-pill { font-family:var(--font-display); font-weight:700; font-size:13px; letter-spacing:.04em; padding:6px 14px; border-radius:var(--r-pill); border:1.5px solid; cursor:pointer; transition:opacity .2s, transform .2s; }
.cert-pill:hover { opacity:.85; transform:translateY(-1px); }
.cert-halal  { color:#007b3b; border-color:#00a651; background:rgba(0,166,81,.08); }
.cert-gmp    { color:#b04500; border-color:#e85e00; background:rgba(232,94,0,.08); }
.cert-mesti  { color:#004899; border-color:#005eb8; background:rgba(0,94,184,.09); }
.cert-iso    { color:#162a54; border-color:#1d3c6e; background:rgba(29,60,110,.07); }
.cert-haccp  { color:#9c0000; border-color:#cc0000; background:rgba(204,0,0,.07); }

/* Real logo image seals */
.badge .seal.seal--img {
  background: #fff;
  border-radius: 12px;
  padding: 6px;
  width: 84px;
  height: 84px;
  box-shadow: 0 2px 12px rgba(0,0,0,.18);
}
.badge .seal.seal--img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
/* Keep gradient background only for SVG icon badges (none currently) */

/* badge seal icons — white on gradient */
.badge .seal { color: rgba(255,255,255,.95); }

/* direction-of-use: add visual interest, offset header */
.use-head { display: grid; grid-template-columns: 1.1fr .9fr; gap: 30px; align-items: end; }

/* ============================================================
   ████  v4 — CONVERSION: comparison, pricing, sticky CTA  ████
   ============================================================ */

/* ---- visual refinement: calm the hero, remove gimmicky flips ---- */
.orb { display: none; }
.hero-shot { animation-duration: 7s; }
.badge:hover .seal { transform: translateY(-3px); }      /* was rotateY flip */
.badge .seal.seal--img { transition: transform .3s var(--ease), box-shadow .3s; }
.badge:hover .seal.seal--img { transform: translateY(-3px); box-shadow: 0 8px 22px rgba(0,0,0,.26); }
.bcard:hover .ico { transform: translateY(-2px); }        /* was rotate */

/* nav pricing emphasised */
.nav-pricing { color: var(--navy) !important; font-weight: 700 !important; position: relative; }
.nav-pricing::after { content:""; position:absolute; left:0; right:0; bottom:-3px; height:2px; background: var(--gold); border-radius:2px; transform: scaleX(0); transform-origin:left; transition: transform .25s var(--ease); }
.nav-pricing:hover::after { transform: scaleX(1); }

/* ============================================================
   WHY SWITCH — comparison
   ============================================================ */
.compare {
  display: grid; grid-template-columns: 1fr auto 1fr; gap: clamp(16px,3vw,30px);
  align-items: stretch; margin-top: clamp(36px,4vw,52px); max-width: 1000px; margin-inline: auto;
}
.compare-col { border-radius: var(--r-xl); padding: clamp(26px,3vw,38px); border: 1px solid var(--line); }
.compare-old { background: var(--white); }
.compare-new {
  background: linear-gradient(165deg, oklch(0.99 0.01 250), oklch(0.965 0.02 250));
  border-color: oklch(0.74 0.10 80 / .5);
  box-shadow: 0 24px 50px -22px rgba(20,30,70,.28);
}
.compare-tag { display:inline-block; font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-faint); padding: 5px 12px; border-radius: var(--r-pill); background: var(--bg-tint); }
.compare-tag--gold { color: #8a6a1e; background: oklch(0.74 0.10 80 / .16); }
.compare-col h3 { font-size: clamp(1.12rem, 1.9vw, 1.4rem); margin-top: 16px; letter-spacing: -0.02em; line-height: 1.2; }
.compare-list { margin-top: 22px; display: flex; flex-direction: column; gap: 14px; }
.compare-list li { position: relative; padding-left: 32px; font-size: 0.98rem; color: var(--ink-muted); line-height: 1.45; }
.compare-list li::before {
  content: ""; position: absolute; left: 0; top: 1px; width: 21px; height: 21px; border-radius: 50%;
  background: var(--bg-tint) center / 13px no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23929aac' stroke-width='3' stroke-linecap='round'%3E%3Cpath d='M18 6 6 18M6 6l12 12'/%3E%3C/svg%3E");
}
.compare-list--check li { color: var(--ink); font-weight: 500; }
.compare-list--check li::before {
  background-color: oklch(0.40 0.09 255);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
}
.compare-vs { display: grid; place-items: center; }
.compare-vs span {
  font-family: var(--font-display); font-weight: 800; font-size: 13px; letter-spacing: .04em;
  width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center;
  background: var(--ink); color: #fff; box-shadow: var(--shadow-md);
}

/* ============================================================
   OFFER / PRICING
   ============================================================ */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: clamp(40px,5vw,60px); align-items: stretch; }
.plan {
  position: relative; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-xl); padding: 32px 30px; display: flex; flex-direction: column;
  transition: transform .25s var(--ease), box-shadow .25s, border-color .25s;
}
.plan:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.plan--featured {
  border-color: var(--navy); box-shadow: 0 30px 60px -24px rgba(20,30,70,.34);
  background: linear-gradient(180deg, oklch(0.99 0.008 250), #fff 22%);
}
.plan--featured:hover { transform: translateY(-6px); }
.plan-badge {
  position: absolute; top: 0; left: 50%; transform: translate(-50%,-50%);
  background: var(--navy); color: #fff; font-size: 11.5px; font-weight: 700; letter-spacing: .04em;
  padding: 7px 16px; border-radius: var(--r-pill); white-space: nowrap; box-shadow: var(--shadow-sm);
}
.plan-name { font-family: var(--font-display); font-weight: 700; font-size: 1.18rem; letter-spacing: -0.02em; }
.plan-tag { font-size: 13px; color: var(--ink-faint); margin-top: 4px; }
.plan-price { display: flex; align-items: baseline; gap: 3px; margin-top: 22px; color: var(--ink); }
.plan-price .cur { font-family: var(--font-display); font-weight: 700; font-size: 18px; color: var(--ink-muted); }
.plan-price .amt { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.6rem,4vw,3.1rem); letter-spacing: -0.03em; line-height: 1; }
.plan-price .per { font-size: 14px; color: var(--ink-faint); font-weight: 500; margin-left: 3px; }
.plan-day { font-size: 13.5px; color: var(--ink-muted); margin-top: 8px; }
.plan-save { display:inline-block; font-weight: 700; color: #1f7a44; background: oklch(0.92 0.08 150 / .5); padding: 2px 9px; border-radius: var(--r-pill); font-size: 12.5px; }
.plan-feat { margin-top: 22px; display: flex; flex-direction: column; gap: 12px; padding-bottom: 26px; }
.plan-feat li { position: relative; padding-left: 28px; font-size: 14.5px; color: var(--ink-muted); line-height: 1.4; }
.plan-feat li b { color: var(--ink); font-weight: 700; }
.plan-feat li::before {
  content: ""; position: absolute; left: 0; top: 2px; width: 18px; height: 18px; border-radius: 50%;
  background: var(--bg-tint) center / 11px no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234a5a8a' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
}
.plan .btn { margin-top: auto; }

.order-assure {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 30px;
  margin-top: clamp(30px,4vw,42px); padding-top: 28px; border-top: 1px solid var(--line);
}
.order-assure span { display: inline-flex; align-items: center; gap: 9px; font-size: 13.5px; font-weight: 500; color: var(--ink-muted); }
.order-assure svg { width: 18px; height: 18px; color: var(--blue-ink); flex: none; }

/* ============================================================
   STICKY MOBILE ORDER BAR
   ============================================================ */
.sticky-cta {
  position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 55;
  display: none; align-items: center; justify-content: space-between; gap: 14px;
  background: color-mix(in oklab, var(--bg) 92%, transparent); backdrop-filter: saturate(150%) blur(12px);
  border: 1px solid var(--line); border-radius: var(--r-pill);
  padding: 10px 12px 10px 20px; box-shadow: 0 14px 34px -10px rgba(15,25,55,.34);
  transform: translateY(140%); transition: transform .4s var(--ease);
}
.sticky-cta.show { transform: none; }
.sc-info { display: flex; flex-direction: column; line-height: 1.25; }
.sc-from { font-family: var(--font-display); font-weight: 700; font-size: 15px; color: var(--ink); letter-spacing: -0.01em; }
.sc-sub { font-size: 11.5px; color: var(--ink-faint); }
.sticky-cta .btn { padding: 12px 22px; flex: none; }
@media (max-width: 760px){ .sticky-cta { display: flex; } }

/* ============================================================
   Responsive — v4
   ============================================================ */
@media (max-width: 900px){
  .plans { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .plan-badge { font-size: 11px; }
}
@media (max-width: 760px){
  .compare { grid-template-columns: 1fr; }
  .compare-vs { transform: rotate(90deg); margin: -4px auto; }
}

@media (max-width: 1024px){
  .gallery-grid { grid-auto-rows: 200px; }
}
@media (max-width: 760px){
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 168px; }
  .g1 { grid-column: span 2; grid-row: span 2; }
  .g2 { grid-column: span 2; grid-row: span 1; }
  .g3 { grid-column: span 1; grid-row: span 1; }
  .g4 { grid-column: span 1; grid-row: span 1; }
  .gcap { opacity: 1; transform: none; }
  .intro-pop { left: 0; padding: 11px 14px; }
  .use-head { grid-template-columns: 1fr; }
}

/* ============================================================
   ████  v5 — Base-caliber: discipline, editorial type, selector  ████
   ============================================================ */

:root { --gold-deep: oklch(0.585 0.115 72); }   /* readable single accent */

/* ---- colour discipline: one accent (gold), navy eyebrows, drop electric-blue pops ---- */
.hl { color: var(--gold-deep); }
.eyebrow { color: var(--navy); }
.band .eyebrow, .trust .eyebrow { color: oklch(0.80 0.09 250); }   /* keep light on dark bands */

/* editorial serif accent (pairs Sora bold with Playfair italic, echoing the logo) */
.hl-script {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic; font-weight: 700; color: var(--gold-deep);
  letter-spacing: -0.005em;
}

/* ---- bolder, more editorial hero ---- */
.hero h1 { font-size: clamp(2.2rem, 4.7vw, 3.75rem); line-height: 1.07; letter-spacing: -0.04em; font-weight: 800; }
.hero-sub { max-width: 42ch; }

/* ============================================================
   ANNOUNCE — scrolling offer marquee
   ============================================================ */
.announce { justify-content: flex-start; overflow: hidden; padding-inline: 0; gap: 0; }
.announce-track { display: flex; width: max-content; white-space: nowrap; animation: announce-marquee 32s linear infinite; }
.announce-track span { padding-right: 54px; }
@keyframes announce-marquee { to { transform: translateX(-50%); } }
.announce:hover .announce-track { animation-play-state: paused; }
@media (prefers-reduced-motion: reduce){ .announce-track { animation: none; padding-left: var(--pad); } }

/* ============================================================
   ORDER — product panel + radio-pack selector (Base-style)
   ============================================================ */
.order-card {
  display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(24px,4vw,56px);
  align-items: center; max-width: 1060px; margin: clamp(36px,4vw,52px) auto 0;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-xl);
  padding: clamp(22px,3vw,40px); box-shadow: var(--shadow-md);
}
.order-media img { width: 100%; height: auto; border-radius: var(--r-lg); background: var(--bg-tint); }
.order-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 16px; }
.order-specs li { display: flex; flex-direction: column; padding: 12px 14px; background: var(--bg-tint); border-radius: var(--r-sm); }
.order-specs b { font-family: var(--font-display); font-weight: 800; font-size: 22px; color: var(--navy); letter-spacing: -0.02em; line-height: 1; }
.order-specs b i { font-style: normal; font-size: 14px; color: var(--ink-faint); }
.order-specs span { font-size: 12px; color: var(--ink-muted); margin-top: 5px; }

.pick-tag { display: inline-flex; align-items: center; font-size: 12.5px; font-weight: 700; color: #7d5e18; background: oklch(0.74 0.10 80 / .18); padding: 6px 13px; border-radius: var(--r-pill); }
.order-pick h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.22rem; margin-top: 16px; letter-spacing: -0.02em; }
.packs { display: flex; flex-direction: column; gap: 12px; margin-top: 16px; }
.pack { display: flex; align-items: center; gap: 14px; padding: 15px 18px; border: 1.5px solid var(--line); border-radius: var(--r-lg); cursor: pointer; position: relative; transition: border-color .2s, background .2s, box-shadow .2s; }
.pack:hover { border-color: var(--ink-faint); }
.pack input { position: absolute; opacity: 0; pointer-events: none; }
.pack-radio { width: 20px; height: 20px; border-radius: 50%; border: 2px solid var(--line); flex: none; position: relative; transition: border-color .2s; }
.pack.selected { border-color: var(--navy); background: oklch(0.40 0.09 255 / .045); box-shadow: 0 10px 26px -14px rgba(20,30,70,.4); }
.pack.selected .pack-radio { border-color: var(--navy); }
.pack.selected .pack-radio::after { content: ""; position: absolute; inset: 3px; border-radius: 50%; background: var(--navy); }
.pack-body { flex: 1; min-width: 0; }
.pack-name { font-family: var(--font-display); font-weight: 700; font-size: 1.02rem; color: var(--ink); letter-spacing: -0.01em; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.pack-flags { display: inline-flex; gap: 6px; }
.flag { font-size: 9.5px; font-weight: 800; letter-spacing: .05em; padding: 3px 7px; border-radius: var(--r-pill); white-space: nowrap; }
.flag-best { color: #fff; background: var(--navy); }
.flag-ship { color: #1c7a42; background: oklch(0.92 0.08 150 / .65); }
.pack-sub { display: block; font-size: 12.8px; color: var(--ink-muted); margin-top: 4px; }
.pack-price { text-align: right; flex: none; display: flex; flex-direction: column; align-items: flex-end; line-height: 1.25; }
.pp-was { font-size: 12px; color: var(--ink-faint); text-decoration: line-through; }
.pp-now { font-family: var(--font-display); font-weight: 800; font-size: 1.32rem; color: var(--ink); letter-spacing: -0.02em; }
.pp-save { font-size: 10.5px; font-weight: 800; color: #1c7a42; letter-spacing: .02em; }
#orderCta { margin-top: 20px; }
.order-pick .order-assure { margin-top: 18px; padding-top: 18px; justify-content: flex-start; gap: 12px 22px; }

@media (max-width: 860px){
  /* drop the boxy card frame on mobile — it only compressed the content */
  .order-card {
    grid-template-columns: 1fr; max-width: 520px; gap: 16px;
    background: transparent; border: none; box-shadow: none; padding: 0;
  }
  /* specs collapse into one compact divided strip, not 4 chunky boxes */
  .order-specs {
    display: flex; gap: 0; margin-top: 12px;
    border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden;
  }
  .order-specs li {
    flex: 1; padding: 10px 6px; background: transparent; border-radius: 0;
    border-right: 1px solid var(--line); align-items: center; text-align: center;
  }
  .order-specs li:last-child { border-right: none; }
  .order-specs b { font-size: 17px; }
  .order-specs b i { font-size: 11px; }
  .order-specs span { font-size: 10px; margin-top: 2px; }
}

/* ============================================================
   FLOATING CTA PILL (all viewports, Base-style)
   ============================================================ */
.sticky-cta {
  display: flex; left: 50%; right: auto; bottom: 18px;
  width: auto; max-width: calc(100vw - 24px);
  transform: translate(-50%, 160%); gap: 14px; padding: 8px 8px 8px 22px;
}
.sticky-cta.show { transform: translate(-50%, 0); }
.sc-q { font-family: var(--font-display); font-weight: 700; font-size: 14.5px; color: var(--ink); letter-spacing: -0.01em; white-space: nowrap; }
.sticky-cta .btn { padding: 11px 20px; flex: none; }
@media (max-width: 520px){ .sc-q { display: none; } .sticky-cta { padding: 8px; } }

/* ---- hero trust strip: real certification logos ---- */
.hero-trust .certs { gap: clamp(10px, 1.6vw, 18px); }
.cert-logo {
  height: 52px; padding: 7px 11px; background: var(--white);
  border: 1px solid var(--line); border-radius: var(--r-md);
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-xs); cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .2s, border-color .2s;
}
.cert-logo:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); border-color: oklch(0.74 0.10 80 / .5); }
.cert-logo img { height: 100%; width: auto; object-fit: contain; display: block; }
@media (max-width: 520px){ .cert-logo { height: 44px; padding: 6px 9px; } }

/* ============================================================
   v6 — HERO HEADLINE HIERARCHY (主次分明, single accent)
   Pain + Result are the two stars; the bridge line recedes.
   ============================================================ */
.hero h1 { display: flex; flex-direction: column; gap: 0; margin-top: 18px; }
/* PRIMARY — pain hook + result share the dominant size */
.h1-pain,
.hero h1 .h1-result {
  display: block;
  font-size: clamp(1.95rem, 3.9vw, 2.95rem);
  font-weight: 800; line-height: 1.08; letter-spacing: -0.035em;
  text-wrap: balance;
}
.h1-pain { color: var(--ink); }
/* the bridge — important too, just a step smaller than the result */
.h1-bridge {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.7vw, 1.85rem);
  font-weight: 800; color: var(--ink);
  letter-spacing: -0.025em; line-height: 1.12;
  margin: 0.14em 0 0.05em;
}
/* Chinese is compact — let the headline run larger & tighter than Latin scripts */
html[lang="zh-Hans"] .h1-pain,
html[lang="zh-Hans"] .hero h1 .h1-result { font-size: clamp(2.4rem, 5.2vw, 3.7rem); line-height: 1.04; letter-spacing: -0.02em; }
html[lang="zh-Hans"] .h1-bridge { font-size: clamp(1.7rem, 3.6vw, 2.6rem); line-height: 1.1; letter-spacing: -0.02em; }
/* .h1-result keeps its existing gold gradient = the one accent */

/* keyword spotlight — gold text on the two key words (no underline) */
.h1-hl {
  color: var(--gold-deep);
  white-space: nowrap;
}

/* ============================================================
   v7 — GOLD ACCENT TYPE
   Playfair italic only for WHOLE accent lines (the payoff phrase &
   section sub-line). Inline keywords stay in their line's own font,
   gold-coloured only — mixing fonts mid-line reads as chaotic.
   ============================================================ */
.hl-script,
.hero h1 .h1-result {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 700;
  color: var(--gold-deep);
  background: none;                 /* drop the old gradient clip on .h1-result */
  -webkit-text-fill-color: currentColor;
}
/* Chinese: Playfair has no CJK glyphs — keep a clean bold sans instead of faux-italic */
html[lang="zh-Hans"] .hl-script,
html[lang="zh-Hans"] .hero h1 .h1-result {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 800;
}
/* inline gold keywords: same font as the line, colour only */
.h1-hl, .hl { font-family: inherit; font-style: inherit; color: var(--gold-deep); }

/* ============================================================
   v8 — MOBILE REFINEMENT (graceful, not forced)
   ============================================================ */
@media (max-width: 760px){
  /* nav: drawer + hero CTA + sticky pill already cover ordering — drop the crowded nav button */
  .nav-order { display: none; }
  .nav { height: 62px; }
  .logo-img { height: 32px; }
  /* hero: a touch more breathing room */
  .hero { padding-block: 26px 40px; }
  /* decorative floating labels collide in the narrow width — hide them on mobile */
  .hero-chip, .intro-pop, .imtag { display: none; }
  .hero-cta .btn { flex: 1 1 auto; }      /* full-width CTAs */
}
@media (max-width: 520px){
  .order-specs span { font-size: 9.5px; }
  .pack { padding: 13px 14px; gap: 11px; }
  .pack-name { font-size: 0.95rem; }
  .pack-sub { font-size: 12px; }
  .pack-price .pp-now { font-size: 1.12rem; }
  .pick-tag { font-size: 11.5px; }
  /* keep the floating pill tidy on tiny screens */
  .sticky-cta { left: 12px; right: 12px; transform: translateY(160%); max-width: none; }
  .sticky-cta.show { transform: translateY(0); }
  .sticky-cta .btn { flex: 1; justify-content: center; }
}

/* ============================================================
   v9 — HERO re-order + GALLERY + mobile certification rail
   ============================================================ */
/* hero: keep proof/meta under the copy on desktop (image spans both rows) */
.hero-grid { row-gap: 0; }
.hero-copy   { grid-column: 1; grid-row: 1; }
.hero-aside  { grid-column: 1; grid-row: 2; }
.hero-visual { grid-column: 2; grid-row: 1 / span 2; align-self: center; }
.hero-aside .hero-proof { margin-top: 18px; }

/* swipeable product gallery in the order panel */
.order-gallery {
  display: flex; overflow-x: auto; scroll-snap-type: x mandatory;
  border-radius: var(--r-lg); background: var(--bg-tint);
  -webkit-overflow-scrolling: touch; scrollbar-width: none;
}
.order-gallery::-webkit-scrollbar { display: none; }
.order-gallery img {
  flex: 0 0 100%; width: 100%; aspect-ratio: 1 / 1; object-fit: cover;
  scroll-snap-align: center; border-radius: var(--r-lg); display: block;
}
.order-thumbs { display: flex; gap: 8px; margin-top: 12px; }
.order-thumb {
  flex: 1; min-width: 0; aspect-ratio: 1 / 1; border-radius: 10px; overflow: hidden;
  border: 2px solid var(--line); background: var(--bg-tint); padding: 0; cursor: pointer;
  transition: border-color .2s, transform .2s;
}
.order-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.order-thumb:hover { transform: translateY(-2px); }
.order-thumb.active { border-color: var(--navy); }

/* mobile: certification badges become a horizontal swipe rail */
@media (max-width: 760px){
  .badges {
    flex-wrap: nowrap; overflow-x: auto; justify-content: flex-start;
    scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
    gap: 12px; padding: 4px 2px 10px; margin-inline: calc(var(--pad) * -0.5);
    padding-inline: calc(var(--pad) * 0.5); scrollbar-width: none;
  }
  .badges::-webkit-scrollbar { display: none; }
  .badge { flex: 0 0 auto; width: 144px; scroll-snap-align: start; }
  .trust .wrap { text-align: left; }
  .trust .eyebrow { justify-content: flex-start; }
  .trust p { margin-inline: 0; }
}
@media (max-width: 1024px){
  /* mobile/tablet: bulletproof vertical stack (copy → image → CTAs/proof), no grid-row overlap */
  .hero-grid { display: flex; flex-direction: column; row-gap: 0; }
  .hero-copy { order: 1; }
  .hero-visual { order: 2; grid-row: auto; width: 100%; max-width: 420px; align-self: center; margin-top: 24px; }
  .hero-aside { order: 3; grid-row: auto; grid-column: auto; align-self: stretch; margin-top: 22px; }
}

/* mobile: simplify the CTA band — no nested image box compressing the space */
@media (max-width: 760px){
  .cta-photo { display: none; }
  .cta-band { padding: 32px 22px; }
  .cta-inner { grid-template-columns: 1fr; }
  .cta-band h2 { font-size: clamp(1.6rem, 6vw, 2rem); }
  .cta-actions { max-width: none !important; }
}

/* sub-paragraph: trimmed so it supports, not competes */
.hero-sub {
  font-size: clamp(0.96rem, 1.3vw, 1.1rem);
  max-width: 40ch; margin-top: 20px; color: var(--ink-muted); line-height: 1.55;
}
