/* =============================================================
   MONTARI — Landing  ·  Design tokens + base
   Font: Plus Jakarta Sans   ·   Content max 1200
   ============================================================= */
:root{
  /* --- palette (from Figma) --- */
  --white:#ffffff;
  --ink:#0f172a;          /* primary heading ink */
  --navy:#14223c;         /* deep navy (footer / dark blocks) */
  --ink-3:#1c2740;
  --accent:#3a5afe;       /* primary brand accent (blue) */
  --accent-2:#7b74f8;     /* indigo */
  --violet:#827aea;       /* soft violet */
  --violet-t:#eaecf9;     /* violet tint */
  --mint:#9c6b3c;         /* Memorise */
  --mint-2:#b98a52;
  --mint-d:#6f4a26;
  --coral:#e8506a;        /* Define */
  --burgundy:#9f1f35;     /* Recall */
  --amber:#f5a623;
  --amber-2:#f5c445;
  --muted:#64748b;
  --muted-2:#93a0b8;
  --faint:#aab4c6;
  --line:#e9edf0;
  --line-2:#eef1f6;
  --surface:#f7f9fc;
  --surface-2:#f2f6fc;

  /* --- radii --- */
  --r-xs:8px; --r-sm:12px; --r-md:16px; --r-lg:20px; --r-xl:24px; --r-2xl:30px; --r-3xl:50px; --r-pill:999px;

  /* --- shadows (navy-tinted, low, large blur) --- */
  --sh-sm:0 1px 2px rgba(15,23,42,.04), 0 6px 16px -8px rgba(15,23,42,.10);
  --sh-md:0 10px 30px -12px rgba(15,23,42,.14);
  --sh-lg:0 24px 54px -18px rgba(15,23,42,.20);
  --sh-xl:0 40px 90px -30px rgba(15,23,42,.28);
  --sh-accent:0 22px 48px -18px rgba(58,90,254,.42);
  --sh-mint:0 22px 48px -18px rgba(122,84,44,.40);

  /* --- layout --- */
  --container:1200px;
  --gutter:clamp(20px, 5vw, 40px);

  --font:'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --ease:cubic-bezier(.22,.7,.2,1);
}

/* ---------- reset ---------- */
*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{
  font-family:var(--font);
  background:var(--white);
  color:var(--ink);
  line-height:1.5;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
  overflow-x:hidden;
}
a{color:inherit;text-decoration:none}
img{display:block;max-width:100%}
button{font-family:inherit;cursor:pointer;border:0;background:none}
ul{list-style:none}

/* ---------- layout helpers ---------- */
.wrap{width:100%;max-width:var(--container);margin-inline:auto;padding-inline:var(--gutter)}
.section{position:relative}
.stack{display:flex;flex-direction:column}

/* ---------- shared type ---------- */
.eyebrow{
  display:inline-flex;align-items:center;gap:8px;
  font-size:12px;font-weight:700;letter-spacing:.12em;text-transform:uppercase;
  color:var(--accent);
}
.eyebrow .dot{width:6px;height:6px;border-radius:50%;background:currentColor}
h1,h2,h3{letter-spacing:-.025em;line-height:1.04;font-weight:800;color:var(--ink)}
.h1{font-size:clamp(38px,6vw,72px)}
.h2{font-size:clamp(30px,4.4vw,50px)}
.h3{font-size:clamp(22px,2.6vw,30px);font-weight:700}
.lead{font-size:clamp(16px,1.5vw,20px);color:var(--muted);font-weight:400;line-height:1.6}
.muted{color:var(--muted)}

/* ---------- buttons ---------- */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:9px;
  font-weight:600;font-size:15px;line-height:1;
  border-radius:var(--r-pill);padding:15px 24px;white-space:nowrap;
  transition:transform .22s var(--ease), box-shadow .3s var(--ease), background .2s, color .2s;
}
.btn:active{transform:translateY(0) scale(.99)}
.btn-dark{background:var(--ink);color:#fff}
.btn-dark:hover{transform:translateY(-2px);box-shadow:var(--sh-lg)}
.btn-accent{background:var(--accent);color:#fff;box-shadow:var(--sh-accent)}
.btn-accent:hover{transform:translateY(-2px);box-shadow:0 30px 60px -18px rgba(58,90,254,.55)}
.btn-ghost{background:#fff;color:var(--ink);border:1px solid var(--line);box-shadow:var(--sh-sm)}
.btn-ghost:hover{transform:translateY(-2px);box-shadow:var(--sh-md)}
.btn svg{width:18px;height:18px;flex:none}

/* App Store pill */
.btn-store{display:inline-flex;align-items:center;gap:10px;background:var(--ink);color:#fff;border-radius:var(--r-pill);padding:11px 20px;transition:transform .22s var(--ease),box-shadow .3s}
.btn-store:hover{transform:translateY(-2px);box-shadow:var(--sh-lg)}
.btn-store svg{width:20px;height:20px}
.btn-store .lab{display:flex;flex-direction:column;line-height:1.05;text-align:left}
.btn-store .lab small{font-size:10px;font-weight:500;opacity:.82}
.btn-store .lab b{font-size:15px;font-weight:700}

/* pill chip */
.chip{display:inline-flex;align-items:center;gap:7px;font-size:13px;font-weight:600;color:var(--ink);background:#fff;border:1px solid var(--line);border-radius:var(--r-pill);padding:8px 14px;box-shadow:var(--sh-sm)}

/* ---------- scroll reveal ---------- */
.reveal{opacity:0;transform:translateY(28px);transition:opacity .7s var(--ease), transform .7s var(--ease)}
.reveal.in{opacity:1;transform:none}
.reveal.d1{transition-delay:.08s}
.reveal.d2{transition-delay:.16s}
.reveal.d3{transition-delay:.24s}
@media (prefers-reduced-motion:reduce){.reveal{opacity:1;transform:none;transition:none}}

/* =============================================================
   Section styles are appended below as each is built
   ============================================================= */

/* =============================================================
   NAV — floating white pill (1:1)
   ============================================================= */
.nav{position:fixed;top:0;left:0;right:0;z-index:60;display:flex;justify-content:center;padding:18px var(--gutter) 0;pointer-events:none}
.nav-pill{pointer-events:auto;display:flex;align-items:center;gap:24px;width:100%;max-width:1240px;height:72px;padding:0 14px 0 22px;background:rgba(255,255,255,.9);backdrop-filter:saturate(180%) blur(20px);-webkit-backdrop-filter:saturate(180%) blur(20px);border:1px solid rgba(255,255,255,.65);border-radius:var(--r-pill);box-shadow:0 12px 34px -14px rgba(20,18,60,.30);transition:box-shadow .3s,background .3s}
.nav.scrolled .nav-pill{background:rgba(255,255,255,.97);box-shadow:0 14px 38px -14px rgba(20,18,60,.36)}
.brand{display:inline-flex;align-items:center;gap:11px}
.brand-mark{width:auto;height:34px;display:block}
.footer .brand-mark{height:32px}
.brand-name{font-weight:800;font-size:20px;letter-spacing:-.02em;color:var(--ink)}
.nav-links{display:flex;gap:26px;margin-inline:auto}
.nav-links a{font-size:15px;font-weight:500;color:#2a3550;transition:color .2s;white-space:nowrap}
.nav-links a:hover{color:var(--accent)}
.nav-cta{display:inline-flex;align-items:center;gap:8px;background:#0d172b;color:#fff;font-size:15px;font-weight:600;padding:13px 22px;border-radius:var(--r-pill);white-space:nowrap;transition:transform .2s var(--ease),box-shadow .3s}
.nav-cta svg{width:17px;height:17px;color:#fff}
.nav-cta:hover{transform:translateY(-1px);box-shadow:0 12px 24px -8px rgba(13,23,43,.5)}
.nav-cta-mob{display:none;align-items:center;justify-content:center;width:44px;height:44px;padding:0;background:#0d172b;color:#fff;border-radius:var(--r-pill)}
.nav-cta-mob svg{width:19px;height:19px}
.nav-burger{display:none;flex-direction:column;gap:5px;padding:8px;border-radius:10px;margin-left:auto}
.nav-burger span{width:22px;height:2px;background:var(--ink);border-radius:2px;transition:.25s var(--ease)}
.nav-burger.open span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.nav-burger.open span:nth-child(2){opacity:0}
.nav-burger.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}
.nav-mobile{position:fixed;inset:92px 0 auto 0;z-index:55;background:rgba(255,255,255,.98);backdrop-filter:blur(18px);display:flex;flex-direction:column;gap:6px;padding:16px var(--gutter) 28px;transform:translateY(-135%);transition:transform .35s var(--ease);box-shadow:var(--sh-lg)}
.nav-mobile.open{transform:none}
.nav-mobile a{padding:14px 6px;font-size:17px;font-weight:600;border-bottom:1px solid var(--line-2)}
.nav-mobile .btn{margin-top:12px;justify-content:center}

/* =============================================================
   01 HERO — 1:1 canvas (design 1728×1770)
   ============================================================= */
/* full-bleed purple gradient across the whole viewport width; only the content cluster is capped */
.hero{position:relative;overflow:hidden;background:linear-gradient(212deg,#d9e0f2 0%,#8fa0c8 22%,#576a99 38%,#33456f 52%,#1b2a49 72%,#0f172a 100%)}
/* subtle noise dither to kill gradient banding */
.hero::before{content:"";position:absolute;inset:0;z-index:0;pointer-events:none;mix-blend-mode:overlay;opacity:.09;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E")}
/* content cluster capped ~1280 (was 1728 → hero rendered oversized on laptops). Aspect kept so the
   absolute-positioned scene doesn't compress/overlap; smaller max-width shrinks the whole cluster. */
.hero-canvas{position:relative;z-index:2;width:100%;max-width:1280px;margin-inline:auto;aspect-ratio:1728/1680;container-type:inline-size;overflow:hidden}
.hc-stage{display:contents}
/* desktop: cluster as one scalable/movable unit (bigger + pushed lower, phone cut into the transition) */
@media (min-width:1025px){
  .hc-stage{display:block;position:absolute;inset:0;z-index:2;pointer-events:none;
    transform:translateY(2.5%) scale(1.09);transform-origin:50% 40%}
  .hc-stage .hc-card,.hc-stage .hc-deck,.hc-stage .hc-stat{pointer-events:auto}
}
.hc{position:absolute;height:auto;display:block}
.hc-scene{left:36.9%;top:34.5%;width:25.2%;z-index:2}
.hc-scene>img{display:block;width:100%;height:auto;filter:drop-shadow(0 2.6cqw 5.2cqw rgba(15,23,42,.36));
  -webkit-mask-image:linear-gradient(180deg,#000 0%,#000 45%,rgba(0,0,0,.32) 57%,rgba(0,0,0,.1) 70%,rgba(0,0,0,.02) 81%,transparent 90%);
  mask-image:linear-gradient(180deg,#000 0%,#000 45%,rgba(0,0,0,.32) 57%,rgba(0,0,0,.1) 70%,rgba(0,0,0,.02) 81%,transparent 90%)}
/* coded floating cards (font-size = canvas-cqw base; internals in em) */
.hc-card{position:absolute;background:#fff;border-radius:1.375em;box-shadow:0 1.5cqw 2.8cqw rgba(8,6,34,.24);z-index:4;font-size:.93cqw;color:#0f172a;text-align:left}
.hc-input{left:23.55%;top:47.85%;width:19.97%;padding:1.375em}
.hc-mode{left:56.54%;top:47.18%;width:19.97%;padding:1.3em 1.19em}

/* coded deck cards (streak + F1 background) */
.hc-deck{position:absolute;font-size:.93cqw;border-radius:1.3em;overflow:hidden;background:#fff}
.hc-deck .dk-img{width:100%;display:block}
.dk-body{padding:.6em 1.1em 1.15em}
.dk-title{font-size:1.15em;font-weight:700;color:#0f172a;letter-spacing:-.01em}
.dk-sub{font-size:.6em;font-weight:600;letter-spacing:.16em;text-transform:uppercase;color:#9aa4b6;margin-top:.35em}
.dk-bar{margin-top:.85em;height:.42em;background:#eef1f6;border-radius:999px;overflow:hidden}
.dk-bar span{display:block;height:100%;background:#b98a52;border-radius:999px}
.dk-foot{display:flex;justify-content:space-between;font-size:.62em;font-weight:600;letter-spacing:.02em;margin-top:.75em}
.hc-streak{left:13.77%;top:35.65%;width:19.56%;z-index:2;box-shadow:0 1.5cqw 2.8cqw rgba(8,6,34,.22)}
.hc-f1{left:70.5%;top:33.5%;width:19.5%;z-index:1;background:#fff;opacity:.5;box-shadow:0 1.5cqw 2.8cqw rgba(8,6,34,.16)}
.hc-f1 .dk-img{width:100%;margin:0}
.hc-f1 .dk-foot{color:#9aa4b6}

/* coded 80% strong stat card */
.hc-stat{position:absolute;left:52.8%;top:38.5%;width:23.6%;z-index:4;font-size:1.12cqw;background:#fff;border-radius:1.15em;padding:.65em .65em .65em .85em;display:flex;align-items:center;gap:.7em;box-shadow:0 1.5cqw 2.8cqw rgba(8,6,34,.2)}
.st-ring{width:2.7em;height:2.7em;flex:none}
.st-ring svg{width:100%;height:100%;display:block}
.st-info{flex:1;display:flex;flex-direction:column;line-height:1.14;min-width:0}
.st-info small{font-size:.58em;font-weight:700;letter-spacing:.11em;text-transform:uppercase;color:#9aa4b6}
.st-info b{font-size:1.02em;font-weight:700;color:#0f172a;white-space:nowrap}
.st-info span{font-size:.66em;color:#9aa4b6;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.st-recover{flex:none;background:#0f172a;color:#fff;font-size:.72em;font-weight:600;padding:.75em .95em;border-radius:999px;display:inline-flex;align-items:center;gap:.35em;white-space:nowrap}
.st-recover svg{width:1em;height:1em}

.ic-label{font-size:.625em;font-weight:700;letter-spacing:.06em;text-transform:uppercase;color:#9aa4b6}
.ic-label-2{margin-top:1.5em}
.ic-input{margin-top:.55em;min-height:7.7em;border:1px solid #e9edf0;border-radius:.94em;padding:1em;display:flex;align-items:flex-start}
.ic-input span{font-size:1em;font-weight:600;color:#0f172a}
.ic-caret{width:2px;height:1.3em;background:#9c6b3c;border-radius:1px;margin-left:1px;animation:caret 1.05s steps(1) infinite}
@keyframes caret{50%{opacity:0}}
.ic-lang{margin-top:.55em;height:2.8em;background:#f7f9fc;border-radius:.81em;display:flex;align-items:center;gap:.7em;padding:0 1em}
.ic-modes{margin-top:.55em;display:flex;gap:.4em}
.ic-mode{flex:1;height:2.6em;display:flex;align-items:center;justify-content:center;background:#f7f9fc;border-radius:.7em;font-size:.7em;font-weight:700;color:#64748b;border:1px solid transparent;white-space:nowrap}
.ic-mode-on{background:#eaecf9;color:#3730d6;border-color:#d7d9f6}
.ic-flag{font-size:1.15em;line-height:1}
.ic-lang-name{font-size:.875em;font-weight:700;color:#3730d6;flex:1}
.ic-check{width:1.1em;height:1.1em}
.ic-generate{margin-top:.95em;height:2.87em;background:#0f172a;color:#fff;border-radius:.875em;display:flex;align-items:center;justify-content:center;font-size:.875em;font-weight:700;transition:transform .2s var(--ease)}
.ic-generate:hover{transform:translateY(-1px)}

.mc-label{font-size:.625em;font-weight:600;letter-spacing:.06em;text-transform:uppercase;color:#9aa4b6;margin-bottom:1.15em}
.mc-row{display:flex;align-items:center;gap:.8em;height:3.75em;background:#f7f9fc;border-radius:.875em;padding:0 .85em;margin-bottom:.54em}
.mc-row:last-child{margin-bottom:0}
.mc-icon{width:2.375em;height:2.375em;border-radius:.69em;display:grid;place-items:center;flex:none}
.mc-icon svg{width:1.25em;height:1.25em}
.mc-icon-mem{background:rgba(156,107,60,.14);color:#6f4a26}
.mc-icon-recall{background:rgba(159,31,53,.14);color:#9f1f35}
.mc-text{display:flex;flex-direction:column;line-height:1.18;flex:1;min-width:0}
.mc-text b{font-size:.9375em;font-weight:700;color:#0f172a}
.mc-text small{font-size:.75em;font-weight:500;color:#64748b;margin-top:.12em}
.mc-row-active{background:#7b74f8}
.mc-row-active .mc-icon-learn{background:rgba(255,255,255,.22);color:#fff}
.mc-row-active .mc-text b{color:#fff}
.mc-row-active .mc-text small{color:rgba(255,255,255,.85)}
.mc-check{width:1.05em;height:1.05em;flex:none}
/* transition: stronger white feather from purple to white (like habitline's bottom wave) */
.hero-fade{position:absolute;left:0;right:0;top:42%;bottom:0;z-index:1;pointer-events:none;
  background:linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 6%, rgba(255,255,255,.6) 22%, rgba(255,255,255,.95) 36%, #fff 46%);}

/* infinite subject marquee */
.hero-marquee{position:absolute;left:0;right:0;top:80.4%;z-index:5;padding:2.4cqw 0;
  -webkit-mask-image:linear-gradient(90deg,transparent,#000 7%,#000 93%,transparent);
  mask-image:linear-gradient(90deg,transparent,#000 7%,#000 93%,transparent);}
.marquee-track{display:flex;gap:1.3cqw;width:max-content;padding-inline:.65cqw;animation:marquee 42s linear infinite;will-change:transform}
@keyframes marquee{from{transform:translate3d(-50%,0,0)}to{transform:translate3d(0,0,0)}}
@media (prefers-reduced-motion:reduce){.marquee-track{animation:none}}
.strip-card{flex:0 0 auto;width:14cqw;background:#fff;border-radius:1.3cqw;padding:.95cqw;box-shadow:0 1.2cqw 2.4cqw -.9cqw rgba(22,20,60,.16)}
.strip-card img{width:100%;height:auto;display:block;border-radius:.7cqw}
.strip-card .st-title{margin-top:.55cqw;font-size:.93cqw;font-weight:700;letter-spacing:-.01em;color:#0f172a}
.strip-card .st-count{margin-top:.12cqw;font-size:.6cqw;font-weight:600;letter-spacing:.09em;text-transform:uppercase;color:#9aa4b6}
.strip-card .st-bar{margin-top:.7cqw;height:.35cqw;background:#eef1f6;border-radius:999px;overflow:hidden}
.strip-card .st-bar span{display:block;height:100%;border-radius:999px}

.hero-copy2{position:absolute;left:0;right:0;top:15.65%;z-index:5;display:flex;flex-direction:column;align-items:center;text-align:center;pointer-events:none}
.hero-copy2 a{pointer-events:auto}
.hero-tag{display:inline-flex;align-items:center;gap:.55em;font-size:clamp(12px,.87cqw,15px);font-weight:500;color:#fff;background:rgba(255,255,255,.14);border:1px solid rgba(255,255,255,.22);border-radius:999px;padding:.5em 1.05em .5em .7em;backdrop-filter:blur(8px);-webkit-backdrop-filter:blur(8px)}
.hero-tag-mark{width:1.35em;height:1.35em;display:block}
.hero-createpill{position:absolute;left:50%;top:78.6%;transform:translateX(-50%);z-index:6;display:inline-flex;align-items:center;gap:.65em;white-space:nowrap;background:#fff;border-radius:999px;padding:.45em 1.35em .45em .45em;font-size:clamp(12px,.9cqw,15.5px);font-weight:500;color:#0f172a;box-shadow:0 1cqw 2.2cqw -.9cqw rgba(20,20,60,.24)}
.hcp-mark{width:1.75em;height:1.75em;border-radius:.55em;background:#0f172a;display:grid;place-items:center;flex:none}
.hcp-mark img{width:1.05em;height:1.05em;display:block}
.hero-title{margin-top:.9cqw;font-size:clamp(48px,5.21cqw,90px);line-height:.94;font-weight:500;letter-spacing:-.022em;color:#fff}
.hero-btns2{display:flex;gap:clamp(12px,.93cqw,16px);margin-top:clamp(22px,2.5cqw,44px);align-items:center}
.hbtn{display:inline-flex;align-items:center;justify-content:center;gap:.5em;height:clamp(46px,3.13cqw,54px);padding:0 1.6em;border-radius:999px;font-size:clamp(15px,1.04cqw,18px);font-weight:600;white-space:nowrap;transition:transform .2s var(--ease),box-shadow .3s}
.hbtn svg{width:1.15em;height:1.15em;flex:none}
.hbtn-primary{background:#fff;color:#131515;box-shadow:0 1cqw 1.8cqw -0.6cqw rgba(0,0,0,.35)}
.hbtn-primary:hover{transform:translateY(-2px)}
.hbtn-glass{background:linear-gradient(180deg,rgba(255,255,255,0),rgba(255,255,255,.14));color:#fff;border:1px solid rgba(255,255,255,.30)}
.hbtn-glass svg{width:1.1em;height:1.1em}
.hbtn-glass:hover{background:rgba(255,255,255,.18)}

/* ===== reusable canvas for 1:1 content sections ===== */
.sec-canvas{position:relative;width:100%;max-width:1728px;margin-inline:auto;container-type:inline-size}

/* =============================================================
   02 FORGETTING
   ============================================================= */
.sec-forget{background:#fff;padding:92px 24px 56px}
/* gray inset panel — content box stays ~1184px so cqw math is unchanged (~11.84px/cqw) */
.sf-canvas{max-width:1296px;background:#f2f4f7;border-radius:36px;padding:64px 56px;display:flex;align-items:center;gap:6%}
.sf-left{flex:1 1 52%;display:flex;flex-direction:column;align-items:flex-start}
.sf-eyebrow{display:inline-flex;align-items:center;gap:.6cqw;background:#fff;border-radius:999px;padding:.5cqw 1.2cqw .5cqw .5cqw;box-shadow:0 .6cqw 1.5cqw -.6cqw rgba(20,20,60,.16);font-size:1.05cqw;font-weight:700;letter-spacing:.06em;text-transform:uppercase;color:#131515}
.sf-eyeicon{width:2.1cqw;height:2.1cqw;border-radius:50%;background:#0f172a;display:flex;align-items:center;justify-content:center;flex:none}
.sf-eyeicon img{width:1.25cqw;height:1.25cqw;display:block}
.sf-title{margin-top:2.6cqw;font-size:clamp(26px,3.7vw,44px);line-height:1.07;font-weight:500;letter-spacing:-.022em;color:#131515}
.sf-title .v{color:#7b74f8}
.sf-body{margin-top:2.9cqw;font-size:1.67cqw;line-height:1.5;font-weight:400;color:#64748b;max-width:42cqw}
.sf-caption{margin-top:2cqw;font-size:1.08cqw;font-weight:500;letter-spacing:.13em;text-transform:uppercase;color:#9aa0af}
.sf-stats{display:flex;gap:1cqw;margin-top:1.5cqw;width:100%}
.sf-stat{flex:1;background:#fff;border-radius:1.4cqw;padding:1.5cqw 1.4cqw;box-shadow:0 1cqw 2.6cqw -1.4cqw rgba(20,20,60,.14)}
.sf-stat b{display:block;font-size:2.9cqw;font-weight:600;color:#14223c;letter-spacing:-.02em;line-height:1}
.sf-pct{font-size:.58em;font-weight:600;color:#9aa4b6;margin-left:.04em}
.sf-stat small{display:block;margin-top:.95cqw;font-size:1.05cqw;line-height:1.35;color:#64748b}
.sf-btn{margin-top:2.6cqw;display:inline-flex;align-items:center;gap:9px;background:#131515;color:#fff;font-size:15px;font-weight:600;padding:15px 24px;border-radius:999px;transition:transform .2s var(--ease),box-shadow .3s}
.sf-btn svg{width:18px;height:18px}
.sf-btn:hover{transform:translateY(-2px);box-shadow:0 1.4cqw 2.4cqw -.6cqw rgba(19,21,21,.5)}
.sf-charts{flex:0 0 38%;font-size:1.12cqw;display:flex;flex-direction:column;gap:.9em}
.sf-ctop{display:flex;gap:.9em}
.sf-cc{flex:1;background:#fff;border:1px solid #eef1f6;border-radius:1.5em;padding:1.5em 1.3em;box-shadow:0 1.4em 2.4em -1.4em rgba(20,20,60,.12);display:flex;flex-direction:column;align-items:center;text-align:center;min-width:0}
.sf-cc-t{font-size:1.6em;font-weight:700;letter-spacing:-.01em;color:#0f172a}
.sf-gaugewrap{position:relative;width:82%;margin:1em 0 .7em}
.sf-gauge{width:100%;display:block}
.sf-gauge-brain{position:absolute;left:50%;top:76%;transform:translate(-50%,-50%);font-size:1.5em;line-height:1;filter:drop-shadow(0 .1em .2em rgba(20,20,60,.15))}
.sf-forget{margin:.8em 0 .5em;width:90%}
.sf-forget svg{width:100%;display:block}
.sf-days{display:flex;justify-content:space-between;padding:0 .35em;margin-top:.25em}
.sf-days span{font-size:.82em;font-weight:700;color:#c2c8d6}
.sf-cc-c{font-size:1.05em;line-height:1.4;color:#64748b;margin-top:auto}
.sf-cbig{align-items:stretch;text-align:left;padding:1.8em 1.7em}
.sf-bighead{display:flex;align-items:flex-start;justify-content:space-between;gap:1em}
.sf-hcol{display:flex;flex-direction:column;gap:.55em;min-width:0}
.sf-hcol-r{align-items:flex-end;text-align:right;flex:none}
.sf-bigtitle{font-size:2.5em;font-weight:800;letter-spacing:-.02em;color:#e4e7ef;line-height:1}
.sf-brain{font-size:.85em}
.sf-bigpct{font-size:2.9em;font-weight:800;color:#6f4a26;letter-spacing:-.02em;line-height:1}
.sf-lg-out{font-size:.82em;font-weight:700;letter-spacing:.06em;text-transform:uppercase;color:#9aa4b6}
.sf-lg-in{display:inline-flex;align-items:center;gap:.45em;font-size:.82em;font-weight:700;letter-spacing:.06em;text-transform:uppercase;color:#6f4a26;background:#e2f4ee;border-radius:999px;padding:.5em 1em;opacity:0;transition:opacity .4s ease}
.sf-lg-in i{width:.55em;height:.55em;border-radius:50%;background:#6f4a26}
.sf-cbig.pgr .sf-lg-in{opacity:1}
.sf-memwrap{position:relative;margin-top:.7em}
.sf-memchart{width:100%;display:block}

/* ===== animated charts ===== */
.cv-gauge{width:100%;display:block}
.cv-gauge line{stroke-width:3;stroke-linecap:round}
.gt-gray{stroke:#d7dbe6;opacity:.9}
.gt-blue{stroke:#3a5afe;opacity:.14;transition:opacity .5s ease;transition-delay:var(--d)}
.sf-cc.in .gt-blue{opacity:1}

/* forget bars: just fade in left -> right (no movement) */
.fbar{opacity:0;transition:opacity .6s ease;transition-delay:var(--d)}
.sf-cc.in .fbar{opacity:1}

/* big memory chart: JS-driven story, fade in left -> right (no movement) */
.cv-mem{transition:opacity .45s ease}
.sf-cbig.fade .cv-mem{opacity:0}
.mc-gbar,.mc-grbar{opacity:0;transition:opacity .6s ease;transition-delay:var(--d)}
.mc-dot{opacity:0;transition:opacity .45s ease;transition-delay:var(--d)}
.mc-retline{opacity:0;transition:opacity .45s ease}
.mc-curve{transition:stroke-dashoffset 1.3s ease .15s}
.sf-retested{opacity:0;transform:translateX(-50%);transition:opacity .5s ease}
.sf-cbig.pg .mc-gbar{opacity:1}
.sf-cbig.pg .mc-dot{opacity:1}
.sf-cbig.pr .mc-retline{opacity:1}
.sf-cbig.pr .sf-retested{opacity:1}
.sf-cbig.pgr .mc-grbar{opacity:1}
@media (prefers-reduced-motion:reduce){.gt-blue,.fbar,.mc-gbar,.mc-grbar,.mc-dot,.mc-retline{opacity:1!important;transform:none!important;transition:none!important}.sf-retested{opacity:1!important;transform:translateX(-50%)!important}}
.sf-retested{position:absolute;left:54.9%;top:13%;transform:translateX(-50%);white-space:nowrap;font-size:.92em;font-weight:700;color:#fff;background:#b98a52;border-radius:999px;padding:.42em 1em;box-shadow:0 .5em 1em -.4em rgba(122,84,44,.6)}
.sf-bignote{font-size:1.05em;font-weight:500;color:#334155;text-align:center;margin-top:.6em}
.sf-foot{font-size:.92em;line-height:1.45;color:#aeb6c4;text-align:center;padding:0 1.4em}

/* =============================================================
   03 SUBJECTS
   ============================================================= */
.sec-subjects{background:#fff;padding:70px 0 40px}
.ss-canvas{position:relative;width:100%;max-width:1728px;margin-inline:auto;aspect-ratio:1728/1320;container-type:inline-size;overflow:hidden}
.ss-head{position:absolute;top:0;left:0;right:0;display:flex;flex-direction:column;align-items:center;text-align:center;z-index:5}
.ss-title{font-size:clamp(26px,3.7vw,44px);line-height:1.07;font-weight:500;letter-spacing:-.022em;color:#131515}
.ss-title .v{color:#7b74f8}
.ss-sub{margin-top:1.3cqw;font-size:1.16cqw;line-height:1.5;font-weight:400;color:#64748b}
.ss-chips{display:flex;gap:.6cqw;margin-top:1.5cqw}
.ss-chips span{font-size:.81cqw;font-weight:500;color:#475069;background:#eef2f8;border-radius:999px;padding:.55em 1.05em}
.ss-grid{position:absolute;left:0;right:0;top:50%;transform:translateY(-50%);z-index:1;display:flex;flex-direction:column;gap:1cqw}
.ss-row{position:relative;padding:2.6cqw 0;
  -webkit-mask-image:linear-gradient(90deg,transparent,#000 6%,#000 94%,transparent);
  mask-image:linear-gradient(90deg,transparent,#000 6%,#000 94%,transparent);}
.ss-grid .strip-card{box-shadow:0 .7cqw 1.6cqw -.5cqw rgba(22,20,60,.15)}
.ss-track{display:flex;gap:1.3cqw;width:max-content;padding-inline:.65cqw;will-change:transform}
.ss-track-l{animation:marq-left 55s linear infinite}
.ss-track-r{animation:marq-right 55s linear infinite}
@keyframes marq-left{from{transform:translate3d(0,0,0)}to{transform:translate3d(-50%,0,0)}}
@keyframes marq-right{from{transform:translate3d(-50%,0,0)}to{transform:translate3d(0,0,0)}}
@media (prefers-reduced-motion:reduce){.ss-track{animation:none}}
.ss-grid .strip-card{width:11.4cqw}
.ss-phone{position:absolute;left:37.1%;top:19%;width:24.6%;height:auto;z-index:2;display:block;filter:drop-shadow(0 2.8cqw 5.6cqw rgba(15,23,42,.28))}
.ss-foot{position:absolute;bottom:0;left:0;right:0;display:flex;flex-direction:column;align-items:center;text-align:center;z-index:5}
.ss-rating{display:inline-flex;align-items:center;gap:.6em;font-size:.81cqw;font-weight:500;color:#64748b}
.ss-rating .stars{color:var(--amber);letter-spacing:.05em}
.ss-blurb{margin-top:1cqw;font-size:1.04cqw;line-height:1.5;color:#64748b;max-width:34cqw}
.ss-dl{margin-top:1.6cqw}

/* =============================================================
   04 MODES — "Three ways to make it stick"
   ============================================================= */
/* bottom padding must clear the card shadow (~55px reach) — otherwise the next
   opaque section paints its background over the overflowing shadow and cuts it */
.sec-modes{background:#fff;padding:64px 0 96px}
.md-canvas{width:min(1200px, 100% - 2 * var(--gutter))}

/* header */
.md-head{display:flex;align-items:flex-start;justify-content:space-between;gap:2cqw}
.md-title{font-size:clamp(26px,3.7vw,44px);line-height:1.07;font-weight:500;letter-spacing:-.022em;color:#131515}
.md-trust{display:flex;flex-direction:column;align-items:flex-end;gap:.5cqw;padding-top:.4cqw}
.md-avatars{display:flex}
.md-av{width:3.67cqw;height:3.67cqw;border-radius:50%;background-size:cover;background-position:center;box-shadow:0 0 0 .17cqw #fff;flex:none}
.md-av + .md-av{margin-left:-.83cqw}
.md-count{display:flex;align-items:center;justify-content:center;background:#131515;color:#fff;font-size:1.05cqw;font-weight:400;letter-spacing:-.01em}
.md-stars{width:9.33cqw;height:1.33cqw;display:block}
.md-trust-txt{font-size:1.5cqw;font-weight:500;color:#494d4d}

/* card grid */
.md-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:2.5cqw;margin-top:4.6cqw}
.md-card{position:relative;height:40.25cqw;border-radius:4.17cqw;padding:3.83cqw 3.08cqw 3.5cqw;display:flex;flex-direction:column;isolation:isolate;box-shadow:0 2.4cqw 3.6cqw -1.4cqw rgba(24,20,52,.34)}
/* sheen clipped to rounded corners via border-radius:inherit — NOT overflow:hidden, which would clip the inner white cards' shadows */
.md-card::before{content:"";position:absolute;inset:0;z-index:-1;border-radius:inherit;background:radial-gradient(120% 80% at 22% 6%,rgba(255,255,255,.28),rgba(255,255,255,0) 55%);pointer-events:none}
.md-learn{background:linear-gradient(212deg,#d4d9f6 0%,#6d5bae 47%,#0a1544 100%)}
.md-memorise{background:linear-gradient(210deg,#dcc09a 2%,#9c6b3c 50%,#3d2812 100%)}
.md-recall{background:linear-gradient(149deg,#bea2b0 0%,#854666 50%,#390e25 100%)}
.md-mode{font-size:3.33cqw;line-height:1;font-weight:500;letter-spacing:-.02em;color:#fff}
.md-desc{margin-top:auto;font-size:1.35cqw;line-height:1.4;font-weight:400;color:rgba(255,255,255,.92);max-width:25.6cqw}

/* generic white mockup */
.md-mock{margin-top:2cqw}
.md-mock-learn,.md-mock-rec,.mm-item{background:#fff;box-shadow:0 1.2cqw 2.2cqw -1cqw rgba(20,20,60,.22)}

/* --- Learn mockup --- */
.md-mock-learn{border-radius:1.58cqw;padding:1.5cqw}
.ml-head{display:flex;align-items:flex-start;justify-content:space-between;gap:.8cqw}
.ml-title{font-size:1.67cqw;font-weight:500;letter-spacing:-.01em;color:#1c2740;line-height:1.15}
.ml-sub{margin-top:.25cqw;font-size:.92cqw;font-weight:400;color:#8a93a8}
.ml-toggle{position:relative;width:2.67cqw;height:2.67cqw;border-radius:50%;background:#f4f6fb;flex:none}
.ml-toggle::before{content:"";position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);width:.83cqw;height:.16cqw;border-radius:1px;background:#8a93a8}
.ml-stats{display:flex;margin-top:1.33cqw;background:#f7f8fc;border-radius:1.17cqw;padding:1cqw 0}
.ml-stat{flex:1;display:flex;flex-direction:column;align-items:center;text-align:center}
.ml-stat + .ml-stat{border-left:1px solid #e4e7f0}
.ml-stat b{font-size:1.5cqw;font-weight:600;color:#1c2740;line-height:1;letter-spacing:-.01em}
.ml-stat b.ml-accent{color:#6257e6}
.ml-stat small{margin-top:.42cqw;font-size:.67cqw;font-weight:600;letter-spacing:.05em;text-transform:uppercase;color:#a0a8bc}
.ml-prog{display:flex;align-items:center;gap:.9cqw;margin-top:1.33cqw}
.ml-track{flex:1;height:.58cqw;background:#eceef5;border-radius:.33cqw;overflow:hidden}
.ml-track span{display:block;height:100%;background:#6257e6;border-radius:inherit}
.ml-cap{flex:none;font-size:.83cqw;font-weight:600;color:#8a93a8}
.ml-btn{margin-top:1.33cqw;display:flex;align-items:center;justify-content:center;gap:.7cqw;width:100%;height:3.92cqw;background:#6257e6;border-radius:1.08cqw;color:#fff;font-size:1.17cqw;font-weight:500;letter-spacing:-.01em;transition:transform .2s var(--ease),filter .2s}
.ml-btn:hover{filter:brightness(1.06);transform:translateY(-1px)}
.ml-play{display:flex;align-items:center;justify-content:center;width:1.58cqw;height:1.58cqw;border-radius:50%;background:rgba(255,255,255,.22)}
.ml-play svg{width:.72cqw;height:auto}

/* --- Memorise mockup --- */
.md-mock-mem{margin-top:2cqw;display:flex;flex-direction:column;gap:.92cqw}
.mm-item{border-radius:1.33cqw;padding:1.08cqw;display:flex;flex-direction:column}
.mm-ic{display:flex;align-items:center;justify-content:center;width:2.5cqw;height:2.5cqw;border-radius:.75cqw}
.mm-ic svg{width:1.5cqw;height:1.5cqw}
.mm-ic-pic{background:#eaecf9;color:#a97e4a}
.mm-ic-card{background:#f1f4fb;color:#1c2740}
.mm-title{margin-top:.72cqw;font-size:1.67cqw;font-weight:500;letter-spacing:-.01em;color:#1c2740;line-height:1.1}
.mm-sub{margin-top:.25cqw;font-size:.92cqw;font-weight:400;color:#8a93a8}

/* --- Recall mockup --- */
.md-mock-rec{border-radius:1.5cqw;padding:1.58cqw;display:flex;flex-direction:column}
.mr-tag{align-self:flex-start;background:#f6e5e9;color:#9e2740;border-radius:.42cqw;padding:.3cqw .55cqw;font-size:.75cqw;font-weight:600;letter-spacing:.04em}
.mr-q{margin-top:.9cqw;font-size:1.67cqw;font-weight:500;letter-spacing:-.01em;color:#1c2740;line-height:1.25}
.mr-div{margin-top:1.2cqw;height:1px;background:#eef1f7}
.mr-answer{margin-top:1.2cqw;font-size:.75cqw;font-weight:600;letter-spacing:.09em;text-transform:uppercase;color:#9e2740}
.mr-btns{display:flex;gap:.75cqw;margin-top:.75cqw}
.mr-b{flex:1;height:3.67cqw;border-radius:1cqw;font-size:1.08cqw;font-weight:600;letter-spacing:-.01em;display:flex;align-items:center;justify-content:center;transition:transform .18s var(--ease)}
.mr-b:hover{transform:translateY(-1px)}
.mr-hard{background:#fff;border:1px solid #eef1f7;color:#5b6480}
.mr-med{background:#f6e5e9;color:#9e2740}
.mr-easy{background:#9e2740;color:#fff}

/* =============================================================
   05 STUDY TYPES
   ============================================================= */
.sec-study{background:#fff;padding:56px 0 72px}
.st-canvas{width:min(1200px, 100% - 2 * var(--gutter))}

.st-head{margin-bottom:2.5cqw}
.st-title{font-size:clamp(26px,3.7vw,44px);line-height:1.07;font-weight:500;letter-spacing:-.022em;color:#131515}

/* full-bleed auto-scrolling marquee (left → right).
   padding-block gives the card shadows vertical room INSIDE the overflow:hidden box
   so they aren't clipped top/bottom — overflow only trims the horizontal scroll edges. */
.st-marquee{position:relative;width:100%;overflow:hidden;padding-block:36px;
  -webkit-mask-image:linear-gradient(90deg,transparent,#000 5%,#000 95%,transparent);
          mask-image:linear-gradient(90deg,transparent,#000 5%,#000 95%,transparent)}
.st-track{display:flex;width:max-content;animation:st-scroll 46s linear infinite;will-change:transform}
@media (prefers-reduced-motion:reduce){.st-track{animation:none}}
/* 3 identical sets; step = one set (-33.333%). margin-right on every card makes
   set width include its trailing gap, so the wrap lands exactly on a card edge — no seam, no empty frame. */
@keyframes st-scroll{from{transform:translate3d(0,0,0)}to{transform:translate3d(-33.3333%,0,0)}}

.st-card{flex:none;display:flex;flex-direction:column;width:210px;height:248px;margin-right:20px;padding:20px;background:#fff;border-radius:26px;
  box-shadow:0 1px 2px rgba(15,23,42,.04),0 8px 24px rgba(15,23,42,.06)}

.st-surface{display:flex;align-items:center;justify-content:center;height:101px;border-radius:20px;background:#f7f9fc}
.st-glow{display:flex;align-items:center;justify-content:center;width:58px;height:58px;border-radius:50%}
.st-letter{font-size:17px;font-weight:500;line-height:1;color:#fff}
.st-burgundy{background:#9f1f35;box-shadow:0 8px 18px rgba(159,31,53,.28)}
.st-mint{background:#9c6b3c;box-shadow:0 8px 18px rgba(156,107,60,.28)}
.st-indigo{background:#7b74f8;box-shadow:0 8px 18px rgba(123,116,248,.28)}

.st-name{margin-top:18px;font-size:17px;line-height:1.2;font-weight:500;letter-spacing:-.01em;color:#0f172a}
.st-desc{margin-top:5px;font-size:13px;line-height:1.4;font-weight:400;color:#64748b}

/* =============================================================
   06 TEACHER  (wide rounded panel, absolute cqw layout — canvas 1667)
   ============================================================= */
.sec-teacher{background:#fff;padding:32px 24px 48px}
.te-canvas{max-width:1667px}
/* one long panel holding all 3 capabilities (Generate → Understand → See) */
.teach{position:relative;background:#f2f0fd;border-radius:3.6cqw;overflow:hidden;padding-bottom:1cqw}
.te-panel{position:relative;height:71.09cqw}
.te-stage{background:none}

.te-eyebrow{position:absolute;left:50%;top:11.22cqw;transform:translateX(-50%);display:inline-flex;align-items:center;gap:.5cqw;background:#fff;border-radius:999px;padding:.42cqw .96cqw .42cqw .42cqw;box-shadow:0 .6cqw 1.4cqw -.6cqw rgba(20,20,60,.16);white-space:nowrap}
.te-eyebrow-ic{width:1.32cqw;height:1.32cqw;border-radius:50%;background:#0f172a;display:flex;align-items:center;justify-content:center;flex:none}
.te-eyebrow-ic img{width:.82cqw;height:.82cqw}
.te-eyebrow-txt{font-size:.78cqw;font-weight:700;letter-spacing:.07em;color:#131515}

.te-title{position:absolute;top:13.9cqw;left:0;right:0;text-align:center;font-size:clamp(26px,3.7vw,44px);line-height:1.07;font-weight:500;letter-spacing:-.022em;color:#131515}
.te-sub{position:absolute;top:21.4cqw;left:50%;transform:translateX(-50%);width:43.2cqw;text-align:center;font-size:1.2cqw;line-height:1.5;font-weight:400;color:#64748b}

/* flanking faded deck cards */
/* wrappers are invisible on desktop (children keep absolute cqw layout); become layout boxes on mobile */
.te-scene,.te-decks{display:contents}
.te-deck{position:absolute;width:11.28cqw;height:12.72cqw;background:#fff;border-radius:1.8cqw;padding:.9cqw;opacity:.6;z-index:1;box-shadow:0 1.2cqw 2.6cqw -1cqw rgba(22,20,60,.16)}
.te-deck-l{left:9.18cqw;top:20.4cqw}
.te-deck-r{left:77.8cqw;top:18.72cqw}
.te-deck-img{width:100%;height:7.14cqw;border-radius:1.1cqw;background-size:contain;background-repeat:no-repeat;background-position:center}
.te-deck-body{margin-top:.55cqw;padding:0 .3cqw}
.te-deck-title{font-size:.9cqw;font-weight:600;letter-spacing:-.01em;color:#14223c}
.te-deck-meta{margin-top:.3cqw;font-size:.48cqw;font-weight:600;letter-spacing:.09em;color:#60758d}
.te-deck-bar{margin-top:.5cqw;height:.18cqw;background:#d9d9d9;border-radius:999px;overflow:hidden}
.te-deck-bar span{display:block;height:100%;background:#827aea;border-radius:999px}

.te-3d{position:absolute;left:39.4cqw;top:28.9cqw;width:17.52cqw;height:17.52cqw;z-index:2}

/* white mockup cards */
.te-card{position:absolute;background:#fff;border-radius:1.56cqw;z-index:3;box-shadow:0 1.8cqw 3.6cqw -1.4cqw rgba(20,20,60,.18)}
.te-input{left:15.18cqw;top:27.89cqw;width:24cqw;height:23.16cqw;padding:1.56cqw}
.te-mode{left:57.17cqw;top:27.89cqw;width:24cqw;height:18.72cqw;padding:1.32cqw}
.te-lbl{font-size:.66cqw;font-weight:700;letter-spacing:.08em;color:#9aa4b6}

.te-inputbox{margin-top:.72cqw;height:8.64cqw;border:1px solid #eef1f6;border-radius:1.08cqw;padding:1.2cqw;display:flex;align-items:flex-start}
.te-inputtxt{font-size:1.08cqw;font-weight:600;letter-spacing:-.01em;color:#0f172a}
.te-caret{display:inline-block;width:.18cqw;height:1.44cqw;background:#9c6b3c;border-radius:.1cqw;margin-left:.12cqw;transform:translateY(.05cqw);animation:caret 1.05s steps(1) infinite}
.te-lbl-2{margin-top:1.2cqw}
.te-langrow{margin-top:.72cqw;height:3.12cqw;background:#f7f9fc;border-radius:.9cqw;display:flex;align-items:center;gap:.6cqw;padding:0 1.02cqw}
.te-flag{font-size:1.15cqw;line-height:1}
.te-langtxt{font-size:.96cqw;font-weight:700;color:#0f172a;margin-right:auto}
.te-check{width:1.2cqw;height:1.2cqw;display:flex;flex:none}
.te-check-mint{color:#a97e4a}
.te-gen{margin-top:.96cqw;width:100%;height:3.24cqw;background:#0f172a;color:#fff;border:none;border-radius:.96cqw;font-size:.96cqw;font-weight:700;font-family:inherit;display:flex;align-items:center;justify-content:center;cursor:pointer}

/* mode rows */
.te-moderow{margin-top:.6cqw;height:4.2cqw;background:#f7f9fc;border-radius:.96cqw;display:flex;align-items:center;gap:.84cqw;padding:0 .9cqw}
.te-moderow:first-of-type{margin-top:1.08cqw}
.te-mode-ic{width:2.64cqw;height:2.64cqw;border-radius:.78cqw;display:flex;align-items:center;justify-content:center;flex:none}
.te-mode-ic svg{width:1.38cqw;height:1.38cqw}
.te-mode-txt{flex:1;min-width:0}
.te-mode-title{font-size:1.02cqw;font-weight:700;letter-spacing:-.01em;color:#0f172a}
.te-mode-sub{margin-top:.1cqw;font-size:.84cqw;font-weight:500;color:#64748b}
.te-moderow-active{background:#7b74f8}
.te-moderow-active .te-mode-title{color:#fff}
.te-moderow-active .te-mode-sub{color:rgba(255,255,255,.82)}
.te-mode-check{margin-left:auto;width:1.4cqw;height:1.4cqw;color:#fff;display:flex;flex:none}

.te-ic-mint{background:rgba(156,107,60,.14);color:#6f4a26}
.te-ic-burg{background:rgba(159,31,53,.14);color:#9f1f35}
.te-ic-indigo{background:rgba(123,116,248,.14);color:#6257e6}
.te-ic-coral{background:rgba(232,80,106,.14);color:#e8506a}
.te-ic-glass{background:rgba(255,255,255,.22);color:#fff}

/* feature points */
.te-points{position:absolute;left:12.42cqw;top:57.17cqw;width:71.51cqw;display:flex;gap:3.36cqw}
.te-point{width:21.6cqw;display:flex;align-items:center;gap:.84cqw}
.te-point-ic{width:2.76cqw;height:2.76cqw;border-radius:.78cqw;display:flex;align-items:center;justify-content:center;flex:none}
.te-point-ic svg{width:1.5cqw;height:1.5cqw}
.te-point-title{font-size:1.02cqw;font-weight:600;letter-spacing:-.01em;color:#0f172a}
.te-point-sub{margin-top:.1cqw;font-size:.84cqw;font-weight:400;color:#64748b}

/* =============================================================
   06b · UNDERSTAND + SEE  (extends the Deck Generation section)
   ============================================================= */
/* shared block primitives (static eyebrow / heading / body / benefit rows) */
.blk-eyebrow{display:inline-flex;align-items:center;gap:.5cqw;background:#fff;border-radius:999px;padding:.42cqw .96cqw .42cqw .42cqw;box-shadow:0 .6cqw 1.4cqw -.6cqw rgba(20,20,60,.16);white-space:nowrap}
.blk-eyebrow-c{align-self:center}
.blk-title{margin-top:1.5cqw;font-size:clamp(26px,3.7vw,44px);line-height:1.07;font-weight:500;letter-spacing:-.022em;color:#131515}
.blk-body{margin-top:1.3cqw;font-size:1.14cqw;line-height:1.55;font-weight:400;color:#64748b}
.blk-points{margin-top:2.4cqw;display:flex;flex-direction:column;gap:1.5cqw}

/* ---- 02 · GUIDED EXPLANATIONS ---- */
.ex-block{position:relative;padding:1.6cqw 5cqw 3.2cqw;
  display:grid;grid-template-columns:1fr 1.05fr;gap:4cqw;align-items:center}
.ex-block::before{content:"";position:absolute;left:5cqw;right:5cqw;top:0;height:1px;background:linear-gradient(90deg,transparent,rgba(123,116,248,.16),transparent)}
.ex-left{min-width:0}
.ex-left .blk-body{max-width:34cqw}
.ex-left .te-point{width:100%}
.ex-left .te-point-title{font-size:1.16cqw}
.ex-left .te-point-sub{font-size:.98cqw;margin-top:.15cqw}
.ex-left .te-point-ic{width:3cqw;height:3cqw;border-radius:.9cqw}
.ex-left .te-point-ic svg{width:1.65cqw;height:1.65cqw}

/* explanation card — Raw → Clear (a tangled source becomes a clear explanation) */
.ex-clarity{
  --ink:#0f172a;--muted:#64748b;--muted2:#94a3b8;--hair:#eef0f7;--surface:#f7f8fc;
  --indigo:#7b74f8;--indigo2:#6257e6;--mint:#6f4a26;--mint-bg:rgba(156,107,60,.16);--amber:#d98a12;
  font-size:.94cqw;color:var(--ink);
  /* no frame — the plant PNG + floating step cards sit straight on the lavender panel */
  padding:.3em .6em 0;display:flex;flex-direction:column;gap:.9em;box-sizing:border-box}
.ex-c-head{display:flex;align-items:center;justify-content:space-between;gap:.75em}
.ex-c-eyebrow{display:inline-flex;align-items:center;gap:.5em;font-size:.72em;font-weight:600;letter-spacing:.09em;text-transform:uppercase;color:var(--muted)}
.ex-c-dot{width:.62em;height:.62em;border-radius:50%;background:linear-gradient(135deg,var(--indigo),var(--indigo2))}
.ex-c-topic{font-size:.78em;font-weight:600;line-height:1;color:var(--indigo2);background:rgba(123,116,248,.10);border:1px solid rgba(123,116,248,.22);padding:.5em .8em;border-radius:999px;white-space:nowrap}
/* persona PNG in the CENTRE, 4 big clean step cards popping around it (no frame) */
.ex-stage{position:relative;width:100%;aspect-ratio:1/1;margin:.2em 0 .3em}
.ex-plant{position:absolute;left:50%;bottom:0;height:100%;width:auto;transform:translateX(-50%);z-index:1;
  filter:drop-shadow(0 1.4em 1.8em rgba(40,35,80,.16))}
.ex-fcard{position:absolute;width:55%;background:#fff;border-radius:1.3em;padding:1.05em 1.15em;
  box-shadow:0 1.8em 3.4em -1.3em rgba(30,25,90,.3),0 .18em .7em -.3em rgba(15,23,42,.08);
  display:flex;flex-direction:row;align-items:center;gap:.95em}
.ex-f-ic{flex:none;width:3.1em;height:3.1em;border-radius:.85em;background:var(--cb);color:var(--c);display:grid;place-items:center}
.ex-f-ic svg{width:1.7em;height:1.7em}
.ex-f-body{display:flex;flex-direction:column;gap:.16em;min-width:0}
.ex-f-title{font-size:1.16em;font-weight:600;letter-spacing:-.01em;color:#131515;line-height:1.15}
.ex-f-sub{font-size:.96em;line-height:1.3;color:#64748b}
/* left cards sit BEHIND the person, right cards IN FRONT — depth like the reference */
.ex-f1{top:13%;left:0;z-index:0}
.ex-f2{top:3%;right:0;z-index:2}
.ex-f3{bottom:15%;left:0;z-index:0}
.ex-f4{bottom:1%;right:0;z-index:2}
.ex-signature{display:flex;align-items:flex-start;gap:.55em;margin-top:1.4em;padding-top:1.05em;border-top:1px solid var(--hair);font-size:.8em;line-height:1.45;color:var(--muted)}
.ex-signature svg{width:1.15em;height:1.15em;color:var(--indigo2);flex:none;margin-top:.1em}
.ex-signature strong{color:var(--ink);font-weight:600}

/* ---- 03 · VISUAL EXPLANATIONS (full-width infographic carousel) ---- */
.vx-block{position:relative;padding:2.8cqw 3cqw 2.4cqw}
.vx-block::before{content:"";position:absolute;left:5cqw;right:5cqw;top:0;height:1px;background:linear-gradient(90deg,transparent,rgba(123,116,248,.16),transparent)}
.vx-head{display:flex;flex-direction:column;align-items:center;text-align:center;max-width:52cqw;margin:0 auto}
.vx-title{margin-top:1.4cqw}
.vx-body{margin-top:1.2cqw;font-size:1.2cqw}
.vx-carousel{position:relative;margin-top:3cqw;width:100%;
  -webkit-mask-image:linear-gradient(90deg,transparent,#000 9%,#000 91%,transparent);
  mask-image:linear-gradient(90deg,transparent,#000 9%,#000 91%,transparent)}
.vx-track{display:flex;gap:2cqw;align-items:stretch;will-change:transform;cursor:grab;touch-action:pan-y}
.vx-track.vx-anim{transition:transform .82s cubic-bezier(.4,0,.15,1)}
.vx-track.vx-drag{cursor:grabbing;transition:none}
.vx-card{flex:0 0 47%;background:#fff;border-radius:1.7cqw;padding:1.3cqw;box-shadow:0 2.6cqw 5.6cqw -2.6cqw rgba(30,25,90,.28);
  transform:scale(.9);opacity:.5;transition:transform .82s cubic-bezier(.4,0,.15,1),opacity .82s var(--ease)}
.vx-card.vx-active{transform:scale(1);opacity:1}
.vx-card img{display:block;width:100%;height:auto;aspect-ratio:1200/896;object-fit:contain;border-radius:1cqw;background:#fbfbfe;-webkit-user-drag:none;user-select:none;pointer-events:none}
.vx-nav{position:absolute;top:50%;transform:translateY(-50%);z-index:3;width:3.4cqw;height:3.4cqw;border-radius:50%;background:#fff;border:1px solid #ece9fb;box-shadow:0 1cqw 2.4cqw -1cqw rgba(20,20,60,.28);color:#413c78;display:flex;align-items:center;justify-content:center;cursor:pointer;transition:all .2s var(--ease)}
.vx-nav:hover{background:#6257e6;border-color:#6257e6;color:#fff}
.vx-nav svg{width:1.5cqw;height:1.5cqw}
.vx-prev{left:22%}
.vx-next{right:22%}
.vx-dots{display:flex;justify-content:center;gap:.6cqw;margin-top:2.6cqw}
.vx-dots button{width:.7cqw;height:.7cqw;padding:0;border:none;border-radius:999px;background:#cfc9ef;cursor:pointer;transition:all .3s var(--ease)}
.vx-dots button.on{width:2.2cqw;background:#6257e6}
.vx-points{margin-top:3.2cqw;flex-direction:row;gap:3cqw;max-width:none}
.vx-points .te-point{flex:1;width:auto}
.vx-points .te-point-title{font-size:1.16cqw}
.vx-points .te-point-sub{font-size:.98cqw;margin-top:.15cqw}
.vx-points .te-point-ic{width:3cqw;height:3cqw;border-radius:.9cqw}
.vx-points .te-point-ic svg{width:1.65cqw;height:1.65cqw}

/* =============================================================
   06c · ACHIEVE YOUR GOALS — tabbed use-cases
   ============================================================= */
.sec-goals{background:#fff;padding:92px 24px}
.gl-canvas{max-width:1180px;margin:0 auto}
.gl-title{text-align:center;font-size:clamp(36px,6vw,70px);font-weight:800;letter-spacing:-.03em;color:#1c1c22;line-height:1}
.gl-ul{position:relative;display:inline-block;white-space:nowrap}
.gl-ul svg{position:absolute;left:-1%;right:-1%;bottom:-.14em;width:102%;height:.32em;overflow:visible}
.gl-tabs{display:flex;gap:6px;margin:46px auto 0;background:#fff;border:1px solid #eceaf6;border-radius:20px;padding:8px;box-shadow:0 16px 38px -24px rgba(30,25,90,.22)}
.gl-tab{flex:1;display:inline-flex;align-items:center;justify-content:center;gap:9px;font:inherit;font-size:clamp(13px,1.12vw,17px);font-weight:600;color:#64748b;background:none;border:none;border-radius:13px;padding:14px 12px;cursor:pointer;white-space:nowrap;transition:background .2s var(--ease),color .2s var(--ease)}
.gl-tab:hover{color:#413c78}
.gl-tab.active{background:#f0eefc;color:#6257e6}
.gl-tab-e{font-size:1.2em}
.gl-stage{margin-top:22px}
.gl-panel{display:none;background:#fff;border:1px solid #eef0f6;border-radius:32px;padding:clamp(32px,4vw,64px);box-shadow:0 40px 80px -56px rgba(40,30,100,.3)}
.gl-panel.active{display:grid;grid-template-columns:1fr 1fr;gap:56px;align-items:center}
.gp-h{font-size:clamp(26px,2.8vw,38px);font-weight:700;letter-spacing:-.02em;color:#131515;margin-bottom:22px}
.gp-p{font-size:clamp(15px,1.15vw,18px);line-height:1.6;color:#475569;margin-bottom:15px}
.gp-author{display:flex;align-items:center;gap:14px;margin-top:28px}
.gp-author img{width:52px;height:52px;border-radius:50%;object-fit:cover;flex:none}
.gp-author b{display:block;font-size:17px;font-weight:700;color:#131515}
.gp-author span{font-size:15px;color:#94a3b8}
/* deck card mockup */
.gp-right{display:flex;justify-content:center}
.gp-deck{position:relative;width:min(330px,100%)}
.gp-c{background:#fff;border:1px solid #eef0f6;border-radius:22px;box-shadow:0 34px 64px -36px rgba(30,25,90,.42)}
.gp-c1,.gp-c2{position:absolute;left:0;right:0;top:0;bottom:44px;z-index:0}
.gp-c1{transform:rotate(4.5deg) translateY(4px);opacity:.65}
.gp-c2{transform:rotate(-5.5deg) translateY(9px);opacity:.4}
.gp-c0{position:relative;z-index:1;padding:24px 22px;text-align:center;min-height:330px;display:flex;flex-direction:column;align-items:center}
.gp-c-tag{font-size:13px;font-weight:700;color:#9aa4b6;letter-spacing:.02em}
.gp-c-img{width:88%;height:auto;aspect-ratio:1200/896;object-fit:contain;border-radius:12px;margin:12px 0 auto}
.gp-c-q{font-size:16px;font-weight:600;line-height:1.35;color:#1f2937;margin-top:16px}
.gp-c-lang{justify-content:center;gap:6px}
.gp-lang-word{font-size:30px;font-weight:700;color:#131515;letter-spacing:-.01em}
.gp-lang-tr{display:flex;align-items:center;justify-content:center;gap:8px;font-size:17px;color:#64748b}
.gp-flag{font-size:1.1em}
.gp-lang-audio{margin-top:22px;width:48px;height:48px;border-radius:50%;background:#f0eefc;color:#6257e6;display:grid;place-items:center}
.gp-lang-audio svg{width:24px;height:24px}
.gp-bar{position:relative;z-index:1;margin-top:14px;background:#fff;border:1px solid #eef0f6;border-radius:16px;box-shadow:0 22px 42px -30px rgba(30,25,90,.36);padding:14px 16px;display:flex;align-items:center;justify-content:space-between;gap:12px}
.gp-bar b{display:block;font-size:15px;font-weight:700;color:#131515}
.gp-bar span{font-size:13px;color:#94a3b8}
.gp-bar-ic{flex:none;width:30px;height:30px;border-radius:50%;background:#eaf2ff;color:#4285f4;display:grid;place-items:center;font-size:20px;line-height:1}
@media (max-width:900px){
  .gl-tabs{flex-wrap:wrap}
  .gl-tab{flex:1 1 44%}
}
@media (max-width:760px){
  .sec-goals{padding:48px 16px}
  .gl-title{font-size:clamp(32px,10vw,44px)}
  .gl-tabs{flex-direction:column;gap:4px;border-radius:18px;margin-top:30px}
  .gl-tab{flex:none;justify-content:flex-start;padding:13px 16px;font-size:15px}
  .gl-panel.active{grid-template-columns:1fr;gap:30px}
  .gp-right{order:-1}
}

/* =============================================================
   07 BENEFITS  (2x2 image cards, canvas 1200)
   ============================================================= */
.sec-benefits{background:#fff;padding:80px 0}
.be-canvas{width:min(1200px, 100% - 2 * var(--gutter))}
.be-head{margin-bottom:3.08cqw}
.be-eyebrow{display:inline-flex;align-items:center;gap:.55cqw;background:#fff;border:1px solid #eef1f6;border-radius:999px;padding:.42cqw 1.05cqw .42cqw .42cqw;box-shadow:0 .5cqw 1.2cqw -.5cqw rgba(20,20,60,.1);margin-bottom:1.5cqw}
.be-eyebrow-ic{width:2cqw;height:2cqw;border-radius:50%;background:#f2f0fd;display:flex;align-items:center;justify-content:center;flex:none}
.be-eyebrow-ic img{width:1.15cqw;height:1.15cqw}
.be-eyebrow-txt{font-size:1.08cqw;font-weight:700;letter-spacing:.07em;color:#131515}
.be-title{font-size:clamp(26px,3.7vw,44px);line-height:1.07;font-weight:500;letter-spacing:-.022em;color:#131515}
.be-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:2cqw}
.be-card{position:relative;aspect-ratio:588/588;border-radius:4.17cqw;box-shadow:0 2cqw 4.5cqw -2cqw rgba(20,20,60,.16)}
.be-bg{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;border-radius:inherit}
.be-h{position:absolute;left:3.33cqw;top:3.33cqw;margin:0;font-size:2.83cqw;line-height:1.08;font-weight:500;letter-spacing:-.012em;color:#fff}
.be-d{position:absolute;left:3.33cqw;width:42.33cqw;margin:0;font-size:1.35cqw;line-height:1.4;font-weight:400;color:rgba(255,255,255,.92)}
.be-d1{top:42.83cqw}.be-d2{top:40.67cqw}.be-d3{top:40.42cqw}.be-d4{top:40.67cqw}

/* inner white mock (base) */
.bm{position:absolute;left:3.33cqw;top:15.42cqw;width:42.33cqw;border-radius:2.5cqw;padding:2cqw}
.bm .bm1-name{font-size:1.33cqw;font-weight:600;letter-spacing:-.01em;color:#0f172a}

/* mock 1 — deck generating */
.bm1{background:rgba(255,255,255,.9);-webkit-backdrop-filter:blur(6px);backdrop-filter:blur(6px);height:23.25cqw;display:flex;flex-direction:column;gap:1.67cqw}
.bm1-input{display:flex;align-items:center;gap:.85cqw;height:4.5cqw;background:#f5f8fc;border-radius:1.17cqw;padding:0 1.1cqw}
.bm1-doc{width:1.42cqw;height:1.42cqw;color:#94a3b8;display:flex;flex:none}
.bm1-gen{margin-left:auto;display:inline-flex;align-items:center;gap:.4cqw;background:rgba(123,116,248,.14);color:#6a61e0;font-size:1cqw;font-weight:600;padding:.35cqw .85cqw;border-radius:999px;white-space:nowrap}
.bm1-gen i{width:.58cqw;height:.58cqw;border-radius:50%;background:#7b74f8}
.bm1-mid{display:flex;align-items:center;gap:1.1cqw;padding:0 .5cqw}
.bm1-ic{display:flex;align-items:center;justify-content:center;flex:none;color:#fff}
.bm1-bolt{width:4.33cqw;height:4.33cqw;border-radius:1.25cqw;background:linear-gradient(150deg,#9a90f7,#5a4fca)}
.bm1-bolt svg{width:2.1cqw;height:2.1cqw}
.bm1-5s{font-size:3.67cqw;font-weight:700;line-height:1;letter-spacing:-.02em;color:#0f172a}
.bm1-cap{margin-top:.25cqw;font-size:1.17cqw;color:#0f172a}
.bm1-deck{display:flex;align-items:center;gap:1.05cqw;height:6.17cqw;background:#fff;border-radius:1.17cqw;padding:0 1.1cqw;box-shadow:0 1cqw 2cqw -1cqw rgba(20,20,60,.14)}
.bm1-book{width:4cqw;height:4cqw;border-radius:1cqw;background:linear-gradient(150deg,#9a90f7,#5a4fca)}
.bm1-book svg{width:2cqw;height:2cqw}
.bm1-deckt{flex:1;min-width:0}
.bm1-sub{margin-top:.15cqw;font-size:1.08cqw;font-weight:600;letter-spacing:.02em;color:#94a3b8}
.bm1-check{width:2.17cqw;height:2.17cqw;border-radius:50%;background:#9c6b3c;display:flex;align-items:center;justify-content:center;flex:none}
.bm1-check svg{width:1.15cqw;height:1.15cqw}

/* mock 2 — explanation card */
.bm2{background:#fff;height:21.08cqw;display:flex;flex-direction:column}
.bm2-top{display:flex;align-items:center;justify-content:space-between}
/* Explained-better card: recolor green background art to our bronze */
.be-explained .be-bg{filter:sepia(1) saturate(1.3) hue-rotate(-22deg) brightness(.78)}
.bm2-tag{display:inline-flex;align-items:center;gap:.4cqw;background:rgba(123,116,248,.13);color:#6a61e0;font-size:.92cqw;font-weight:600;letter-spacing:.05em;padding:.32cqw .75cqw;border-radius:999px}
.bm2-tag i{width:.58cqw;height:.58cqw;border-radius:50%;background:#7b74f8}
.bm2-badge{display:inline-flex;align-items:center;gap:.35cqw;background:linear-gradient(120deg,#b98a52,#9c6b3c);color:#fff;font-size:1cqw;font-weight:700;padding:.34cqw .8cqw;border-radius:999px}
.bm2-badge svg{width:1.05cqw;height:1.05cqw}
.bm2-title{margin-top:1.5cqw;font-size:1.75cqw;font-weight:800;letter-spacing:-.02em;color:#0f172a}
.bm2-body{margin-top:1cqw;font-size:1.25cqw;line-height:1.5;color:#475069}
.bm2-div{margin-top:1.5cqw;height:1px;background:#eef1f6}
.bm2-foot{margin-top:1.33cqw;display:flex;align-items:center;gap:.9cqw}
.bm2-stars{width:6.9cqw;height:1.17cqw;display:block;flex:none}
.bm2-foott{font-size:1.17cqw;font-weight:600;color:#64748b}

/* mock 3 — learning report gauges */
.bm3{background:#fff;height:20.83cqw}
.bm3-title{text-align:center;font-size:2.17cqw;font-weight:500;letter-spacing:-.01em;color:#0f172a}
.bm3-gauges{display:flex;justify-content:space-around;margin-top:2cqw}
.bm3-g{position:relative;display:flex;flex-direction:column;align-items:center}
.bm3-ring{width:8cqw;height:8cqw;display:block}
.bm3-pct{position:absolute;top:4cqw;left:50%;transform:translate(-50%,-50%);font-size:1.5cqw;font-weight:700;color:#0f172a}
.bm3-lbl{margin-top:1cqw;font-size:1.67cqw;font-weight:500;color:#64748b}

/* mock 4 — contribution grid */
.bm4{background:#fff;height:21.08cqw;border-radius:1.67cqw}
.bm4-title{font-size:2.17cqw;font-weight:500;line-height:1.24;letter-spacing:-.01em;color:#0f172a}
.bm4-dots{margin-top:1.6cqw;display:grid;grid-template-columns:repeat(26,1fr);gap:.34cqw}
.bm4-dots span{aspect-ratio:1;border-radius:.28cqw;background:#eef1f6}

/* =============================================================
   08 INDUSTRIES  (header 1240 + full-bleed photo-card marquee)
   ============================================================= */
.sec-industries{background:#fff;padding:80px 0 88px;overflow:hidden}
.in-canvas{width:min(1240px, 100% - 2 * var(--gutter))}
.in-head{display:flex;justify-content:space-between;align-items:flex-start;gap:2cqw;margin-bottom:2.6cqw}
.in-title{font-size:clamp(26px,3.7vw,44px);line-height:1.07;font-weight:500;letter-spacing:-.022em;color:#131515}
.in-trust{align-items:flex-end}

.in-tags{display:flex;gap:1.2cqw}
.in-tag{flex:1;display:flex;align-items:center;gap:.9cqw;padding:1.05cqw 1.25cqw;border-radius:1.45cqw;border:1px solid transparent}
.in-tag-active{background:#fff;border-color:#eef1f6;box-shadow:0 1.15cqw 2.8cqw -1.4cqw rgba(20,20,60,.22)}
.in-tag-ic{width:2.9cqw;height:2.9cqw;border-radius:.9cqw;background:#f3f5f9;color:#1c2740;display:flex;align-items:center;justify-content:center;flex:none}
.in-tag-active .in-tag-ic{background:#f2f0fd;color:#6257e6}
.in-tag-ic svg{width:1.6cqw;height:1.6cqw}
.in-tag-title{font-size:1.45cqw;font-weight:600;letter-spacing:-.01em;color:#131515}
.in-tag-sub{margin-top:.15cqw;font-size:1.13cqw;font-weight:400;color:#64748b}

/* full-bleed marquee */
.in-marquee{position:relative;width:100%;overflow:hidden;margin-top:2.8cqw;padding-block:44px}
.in-track{display:flex;gap:22px;width:max-content;padding-inline:24px;animation:marq-left 62s linear infinite;will-change:transform}
@media (prefers-reduced-motion:reduce){.in-track{animation:none}}

.in-card{position:relative;flex:none;width:300px;height:470px;border-radius:24px;overflow:hidden;background:#0a0e14;box-shadow:0 18px 40px -24px rgba(10,14,20,.45)}
.in-photo{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;object-position:center 18%}
.in-scrim{position:absolute;left:0;right:0;bottom:0;height:64%;background:linear-gradient(180deg,rgba(8,11,17,0),rgba(8,11,17,.94))}
.in-pill{position:absolute;top:18px;left:18px;display:inline-flex;align-items:center;background:rgba(255,255,255,.16);border:1px solid rgba(255,255,255,.34);-webkit-backdrop-filter:blur(12px) saturate(1.3);backdrop-filter:blur(12px) saturate(1.3);color:#fff;font-size:12px;font-weight:600;letter-spacing:.01em;padding:8px 13px;border-radius:999px;text-shadow:0 1px 3px rgba(8,10,20,.35);box-shadow:0 2px 10px -4px rgba(8,10,20,.3)}
.in-info{position:absolute;left:24px;right:68px;bottom:24px}
.in-cat{font-size:14px;font-weight:600;color:rgba(255,255,255,.82)}
.in-stat{margin-top:6px;font-size:50px;font-weight:700;line-height:1;letter-spacing:-.02em;color:#fff}
.in-desc{margin-top:14px;font-size:14px;font-weight:400;line-height:1.32;color:rgba(255,255,255,.8)}
.in-arrow{position:absolute;right:20px;bottom:24px;width:40px;height:40px;border-radius:50%;background:rgba(255,255,255,.16);-webkit-backdrop-filter:blur(4px);backdrop-filter:blur(4px);color:#fff;display:flex;align-items:center;justify-content:center;border:none;cursor:pointer}
.in-arrow svg{width:18px;height:18px}

/* =============================================================
   08b SUMMARY BAND
   ============================================================= */
.sec-band{background:#fff;padding:10px 0}
.band-canvas{width:min(1240px, 100% - 2 * var(--gutter))}
.in-band{border-top:1px solid #eef1f6;padding-top:2.8cqw;display:grid;grid-template-columns:repeat(3,1fr);gap:2.6cqw}
.in-bandcol{max-width:31.6cqw}
.in-band-ic{width:3.71cqw;height:3.71cqw;border-radius:1.05cqw;display:flex;align-items:center;justify-content:center;margin-bottom:1.15cqw}
.in-band-ic svg{width:2cqw;height:2cqw}
.in-ic-b-mint{background:rgba(169,126,74,.13);color:#6f4a26}
.in-ic-b-indigo{background:rgba(123,116,248,.13);color:#6257e6}
.in-ic-b-coral{background:rgba(232,80,106,.13);color:#e8506a}
.in-band-title{font-size:1.53cqw;font-weight:700;letter-spacing:-.01em;color:#131515}
.in-band-sub{margin-top:.5cqw;font-size:1.21cqw;font-weight:400;line-height:1.45;color:#64748b}

/* =============================================================
   09 CTA  (dark rounded panel + phone, canvas 1281)
   ============================================================= */
.sec-cta{background:#fff;padding:48px 24px 88px}
.cta-canvas{max-width:1281px}
.cta-panel{position:relative;height:55.43cqw;border-radius:3.9cqw;overflow:hidden;
  background:
    radial-gradient(52% 60% at 80% 62%,rgba(206,199,241,.95) 0%,rgba(206,199,241,.4) 46%,rgba(206,199,241,0) 74%),
    radial-gradient(130% 125% at 84% 2%,#9a8ef6 0%,#6559d6 24%,#33257f 56%,#180f47 100%)}
.cta-phone{position:absolute;right:6.5cqw;top:3.5cqw;bottom:auto;width:33cqw;display:block;
  filter:drop-shadow(0 3cqw 6cqw rgba(8,6,34,.32))}
.cta-content{position:absolute;left:9.06cqw;top:12.96cqw;width:50cqw}
.cta-eyebrow{display:inline-flex;align-items:center;gap:.45cqw;background:rgba(255,255,255,.16);border-radius:999px;padding:.42cqw 1.05cqw .42cqw .5cqw}
.cta-eyebrow-ic{width:1.6cqw;height:1.6cqw;display:flex;align-items:center;justify-content:center;flex:none}
.cta-eyebrow-ic img{width:100%;height:100%}
.cta-eyebrow-txt{font-size:1.01cqw;font-weight:700;letter-spacing:.07em;color:#fff}
.cta-title{margin-top:1.9cqw;font-size:clamp(26px,3.7vw,44px);line-height:1.07;font-weight:500;letter-spacing:-.022em;color:#fff}
.cta-sub{margin-top:1.56cqw;font-size:1.56cqw;line-height:1.5;font-weight:400;color:rgba(255,255,255,.85);max-width:47cqw}
.cta-btn{margin-top:2.6cqw;display:inline-flex;align-items:center;gap:.6cqw;background:#fff;color:#0f172a;border-radius:999px;padding:.98cqw 1.7cqw;font-size:1.4cqw;font-weight:500;box-shadow:0 1.4cqw 2.8cqw -1cqw rgba(0,0,0,.35)}
.cta-btn svg{width:1.4cqw;height:1.4cqw}
.cta-caption{margin-top:1.75cqw;display:flex;align-items:center;gap:.7cqw;font-size:1.17cqw;color:rgba(255,255,255,.78)}
.cta-stars{width:7cqw;height:1.1cqw;flex:none}

/* =============================================================
   10 FOOTER
   ============================================================= */
.footer{background:#f6f5fb;color:#64748b;margin-top:0;padding:80px 0 40px}
.footer-in{display:grid;grid-template-columns:auto 1fr;gap:72px;align-items:start}
/* left — use the app + QR placeholder */
.footer-app-h{font-size:22px;font-weight:700;letter-spacing:-.01em;color:#131515;margin-bottom:20px}
.footer-qr{width:134px;height:134px;background:#fff;border:1px solid #e7e6f1;border-radius:16px;
  display:flex;align-items:center;justify-content:center;box-shadow:0 10px 24px -14px rgba(30,25,90,.2);
  background-image:radial-gradient(#d9d8e6 1.1px,transparent 1.1px);background-size:9px 9px;background-position:9px 9px}
.footer-qr-badge{width:54px;height:34px;background:#fff;border-radius:999px;box-shadow:0 5px 14px -5px rgba(20,20,60,.28);display:flex;align-items:center;justify-content:center;gap:5px}
.footer-qr-badge svg{width:16px;height:16px;flex:none}
.footer-qr-badge svg:first-child{color:#0f172a}
.footer-qr-label{display:block;margin-top:14px;font-size:14px;color:#94a3b8}
/* right — link columns */
.footer-cols{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:40px;justify-items:start;max-width:760px;margin-left:auto}
.footer-col h4{font-size:15px;font-weight:500;color:#9aa4b6;margin-bottom:18px}
.footer-col a{display:block;font-size:17px;color:#475569;padding:8px 0;transition:color .2s}
.footer-col a:hover{color:#131515}
.footer-bottom{margin-top:52px;padding-top:26px;border-top:1px solid rgba(30,25,90,.09);font-size:13px;color:#9aa4b6}

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width:900px){
  .nav-links{display:none}
  .nav-cta{display:none}
  /* mobile nav: burger left · logo centre · download right */
  .nav-pill{position:relative;gap:10px;padding:0 12px}
  .nav-burger{display:flex;order:0;margin-left:0}
  .brand{position:absolute;left:50%;transform:translateX(-50%)}
  .nav-cta-mob{display:inline-flex;order:2;margin-left:auto}
  .footer-in{grid-template-columns:1fr;gap:40px}
  .footer-cols{grid-template-columns:repeat(2,1fr);max-width:none;margin-left:0;gap:24px 32px}
  .footer-col a{font-size:16px}
}

/* =============================================================
   MOBILE REFLOW  (≤760px) — stack everything, px type
   ============================================================= */
/* HERO stacks earlier (≤1024) — the absolute scene needs ~1100px+ or the buttons overlap the cards */
@media (max-width:1024px){
  .hero-canvas{aspect-ratio:auto;display:flex;flex-direction:column;align-items:center;
    padding:150px 22px 64px;overflow:visible}
  /* mobile fade — behind the canvas (z-index 1 < 2), whitens the dark hero bottom into the next section */
  .hero-fade{display:block;top:auto;bottom:0;height:46%;
    background:linear-gradient(180deg,rgba(255,255,255,0) 0%,rgba(255,255,255,.55) 45%,rgba(255,255,255,.92) 78%,#fff 100%)}
  .hero-copy2{position:static;order:1;width:100%;pointer-events:auto}
  .hero-tag{font-size:clamp(12px,1.7vw,14px)}
  .hero-title{margin-top:16px;font-size:clamp(30px,6.6vw,52px);line-height:1.06}
  .hero-btns2{flex-direction:column;gap:12px;margin-top:24px;width:100%;max-width:360px}
  .hbtn{width:100%;height:clamp(50px,6vw,56px);font-size:clamp(15px,2vw,17px)}
  .hbtn-glass{background:rgba(255,255,255,.16)}
  /* tablet: keep the whole floater cluster, scaled to fit as one unit (cropped to cluster bounds) */
  .hc-stage{display:block;position:relative;order:2;width:min(94%,580px);
    aspect-ratio:975/662;margin-top:22px;container-type:inline-size;overflow:visible}
  .hc-card,.hc-deck,.hc-stat{font-size:1.2cqw}
  .hc-scene{left:31.3%;top:4.4%;width:31.9%;-webkit-mask-image:none;mask-image:none}
  .hc-f1{left:74.4%;top:0;width:25.6%}
  .hc-streak{left:0;top:4%;width:25.7%}
  .hc-input{left:12.8%;top:27%;width:26.2%}
  .hc-mode{left:56.1%;top:25.7%;width:26.2%}
  .hc-stat{left:53.4%;top:11.3%;width:26%}
  .hero-createpill{position:static;order:3;left:auto;top:auto;transform:none;margin-top:26px;
    font-size:clamp(12px,1.7vw,14px);white-space:normal;text-align:center;max-width:340px;line-height:1.35}
  .hero-marquee{position:static;order:4;left:auto;top:auto;margin-top:-64px;padding-block:14px;z-index:2;
    width:calc(100% + 44px);margin-inline:-22px}
  .hero-marquee .marquee-track{gap:14px;padding-inline:14px}
  .hero-marquee .strip-card{width:clamp(140px,20vw,180px)}
}

@media (max-width:760px){
  /* mobile hero: BIG phone in back, the 2 cards in front overlapping its lower half */
  .hero-createpill{display:none}
  .hc-f1,.hc-streak,.hc-stat{display:none}
  .hc-stage{width:min(62%,244px);aspect-ratio:auto;height:auto;overflow:visible}
  .hc-scene{position:relative;left:auto;top:auto;width:100%;z-index:1;margin:0;border-radius:22px;
    -webkit-mask-image:none;mask-image:none}
  .hc-scene-vid{width:100%;margin:0}
  .hc-card{font-size:8px}
  .hc-input{left:-9%;right:auto;top:auto;bottom:14%;width:54%;z-index:3}
  .hc-mode{left:auto;right:-9%;top:auto;bottom:25%;width:54%;z-index:3}

  .strip-card{width:150px;padding:10px;border-radius:16px}
  .strip-card img{border-radius:9px}
  .strip-card .st-title{margin-top:8px;font-size:13px}
  .strip-card .st-count{margin-top:2px;font-size:8.5px}
  .strip-card .st-bar{margin-top:8px;height:5px}

  /* ---------- 02 FORGET — gray panel, stacked ---------- */
  .sec-forget{padding:48px 16px}
  .sf-canvas{flex-direction:column;padding:28px 22px;border-radius:24px;gap:26px;align-items:stretch}
  .sf-left{align-items:flex-start}
  /* cqw padding collapses to ~1.5px on mobile → icon pokes out of the pill; force px */
  .sf-eyebrow{font-size:12px;gap:9px;padding:6px 15px 6px 6px}
  .sf-eyeicon{width:28px;height:28px;border-radius:9px}
  .sf-eyeicon img{width:15px;height:15px}
  .sf-title{margin-top:14px;font-size:clamp(26px,7.6vw,35px);line-height:1.14}
  .sf-body{margin-top:14px;font-size:clamp(14px,4.2vw,16.5px);line-height:1.5;max-width:none}
  .sf-caption{margin-top:16px;font-size:11px}
  .sf-stats{gap:12px;margin-top:14px}
  .sf-stat{padding:16px 14px;border-radius:16px}
  .sf-stat b{font-size:30px}
  .sf-stat small{margin-top:6px;font-size:11px}
  .sf-btn{display:none}
  .sf-charts{flex:none;width:100%;font-size:clamp(11px,3.6vw,15px)}
  /* big "Your Memory" card: stack the header so the title can't collide with the 94% badge */
  .sf-bighead{flex-direction:column;align-items:flex-start;gap:.7em}
  .sf-hcol-r{align-items:flex-start;text-align:left}
  .sf-bigtitle{font-size:2em}
  .sf-bigpct{font-size:2.4em}

  /* ---------- 03 SUBJECTS — heading + marquee rows, hide center phone ---------- */
  .sec-subjects{padding:48px 0}
  .ss-canvas{aspect-ratio:auto;height:auto}
  .ss-head{position:static;padding-inline:16px}
  .ss-title{font-size:clamp(26px,7.6vw,35px);line-height:1.14}
  .ss-sub{margin-top:10px;font-size:clamp(14px,4.2vw,16.5px)}
  .ss-chips{flex-wrap:wrap;justify-content:center;gap:8px;margin-top:16px}
  .ss-chips span{font-size:12px;padding:8px 14px}
  .ss-phone{display:none}
  .ss-grid{position:static;transform:none;margin-top:28px;gap:12px}
  .ss-row{padding:6px 0}
  .ss-grid .strip-card{width:150px}
  .ss-foot{position:static;left:auto;bottom:auto;transform:none;margin-top:30px;padding-inline:16px;text-align:center;display:flex;flex-direction:column;align-items:center}
  .ss-rating{font-size:13px}
  .ss-blurb{font-size:15px;line-height:1.5;margin-top:12px;max-width:none}
  .ss-dl{margin-top:20px}

  /* ---------- 04 MODES (mobile vertical padding; rail layout in the ≤1024 tier) ---------- */
  .sec-modes{padding:48px 0}
  .md-title{font-size:clamp(26px,7.6vw,35px)}

  /* ---------- 05 STUDY marquee ---------- */
  .sec-study{padding:48px 0}
  .st-title{font-size:clamp(26px,7.6vw,35px)}
  .st-head{margin-bottom:22px}

  /* ---------- 07 BENEFITS — 1 column ---------- */
  .sec-benefits{padding:48px 0}
  .be-eyebrow-txt{font-size:12px}
  .be-eyebrow-ic{width:26px;height:26px}
  .be-eyebrow-ic img{width:15px;height:15px}
  .be-title{font-size:clamp(26px,7.6vw,35px);line-height:1.14}
  /* horizontal scroll-snap rail — full-bleed, cards peek right so it reads as scrollable */
  .be-grid{display:flex;grid-template-columns:none;gap:16px;
    margin-inline:calc(-1 * var(--gutter));padding-inline:var(--gutter);
    overflow-x:auto;scroll-snap-type:x mandatory;-webkit-overflow-scrolling:touch;
    scroll-padding-inline:var(--gutter);scrollbar-width:none}
  .be-grid::-webkit-scrollbar{display:none}
  /* mobile: flow card (bg + headline + desc); inner mock is a desktop-only detail */
  .be-card{flex:0 0 clamp(272px,82vw,330px);scroll-snap-align:center;aspect-ratio:auto;height:auto;min-height:340px;display:flex;flex-direction:column;justify-content:space-between;gap:24px;padding:28px 24px;overflow:hidden}
  .be-bg{z-index:0}
  .be-h{position:relative;z-index:1;font-size:clamp(25px,7.2vw,33px);line-height:1.08;letter-spacing:-.02em}
  /* mobile: show the inner mockups — cqw rebased to px (≈cqw×8.16) for the ~400px card.
     position:relative;z-index:1 keeps them ABOVE the z-index:0 .be-bg. */
  .bm{position:relative;z-index:1;width:100%;left:auto;top:auto;border-radius:20px;padding:16px}
  .bm .bm1-name{font-size:11px}
  .bm1{height:auto;gap:14px}
  .bm1-input{gap:7px;height:37px;border-radius:10px;padding:0 9px}
  .bm1-doc{width:12px;height:12px}
  .bm1-gen{gap:3px;font-size:9px;padding:3px 7px}
  .bm1-gen i{width:5px;height:5px}
  .bm1-mid{gap:9px;padding:0 4px}
  .bm1-bolt{width:35px;height:35px;border-radius:10px}
  .bm1-bolt svg{width:17px;height:17px}
  .bm1-5s{font-size:30px}
  .bm1-cap{margin-top:2px;font-size:10px}
  .bm1-deck{gap:9px;height:50px;border-radius:10px;padding:0 9px;box-shadow:0 8px 16px -8px rgba(20,20,60,.14)}
  .bm1-book{width:33px;height:33px;border-radius:8px}
  .bm1-book svg{width:16px;height:16px}
  .bm1-sub{margin-top:1px;font-size:9px}
  .bm1-check{width:18px;height:18px}
  .bm1-check svg{width:9px;height:9px}
  .bm2{height:auto}
  .bm2-tag{gap:3px;font-size:9px;padding:3px 6px}
  .bm2-tag i{width:5px;height:5px}
  .bm2-badge{gap:3px;font-size:9px;padding:3px 7px}
  .bm2-badge svg{width:9px;height:9px}
  .bm2-title{margin-top:12px;font-size:15px}
  .bm2-body{margin-top:8px;font-size:11px}
  .bm2-div{margin-top:12px}
  .bm2-foot{margin-top:11px;gap:7px}
  .bm2-stars{width:56px;height:10px}
  .bm2-foott{font-size:10px}
  .bm3{height:auto}
  .bm3-title{font-size:18px}
  .bm3-gauges{margin-top:16px}
  .bm3-ring{width:65px;height:65px}
  .bm3-pct{top:33px;font-size:12px}
  .bm3-lbl{margin-top:8px;font-size:14px}
  .bm4{height:auto;border-radius:14px}
  .bm4-title{font-size:18px}
  .bm4-dots{margin-top:13px;gap:3px}
  .bm4-dots span{border-radius:2px}
  .be-d{position:relative;z-index:1;width:auto;font-size:clamp(14px,4.2vw,16.5px);line-height:1.4;margin:0}
  .be-d1,.be-d2,.be-d3,.be-d4{top:auto;bottom:auto}

  /* ---------- 08b BAND — 1 column ---------- */
  .in-band{grid-template-columns:1fr;gap:22px;padding-top:26px}
  .in-bandcol{max-width:none}
  .in-band-ic{width:44px;height:44px;border-radius:13px;margin-bottom:12px}
  .in-band-ic svg{width:24px;height:24px}
  .in-band-title{font-size:clamp(16px,4.7vw,19px)}
  .in-band-sub{font-size:clamp(13px,3.9vw,15px)}

  /* ---------- 08 INDUSTRIES ---------- */
  .sec-industries{padding:48px 0}
  .in-head{flex-direction:column;align-items:flex-start;gap:18px}
  .in-title{font-size:clamp(26px,7.6vw,35px);line-height:1.14}
  .in-trust{align-items:flex-start}
  .in-tags{flex-direction:column;gap:10px}
  .in-tag{padding:12px 14px}
  .in-tag-ic{width:40px;height:40px;border-radius:12px}
  .in-tag-ic svg{width:22px;height:22px}
  .in-tag-title{font-size:clamp(15px,4.5vw,18px)}
  .in-tag-sub{font-size:clamp(13px,3.9vw,15px)}

  /* ---------- 06 TEACHER — stacked, keep 3D + points ---------- */
  .sec-teacher{padding:48px 16px}
  .teach{border-radius:26px}
  .te-panel{height:auto;display:flex;flex-direction:column;align-items:center;text-align:center;padding:40px 22px 8px}
  .te-eyebrow{position:static;left:auto;top:auto;transform:none;padding:6px 14px 6px 6px}
  .te-eyebrow-ic{width:22px;height:22px}
  .te-eyebrow-ic img{width:13px;height:13px}
  .te-eyebrow-txt{font-size:12px}
  .te-title{position:static;margin-top:18px;font-size:clamp(26px,7.6vw,35px);line-height:1.1}
  .te-sub{position:static;left:auto;top:auto;transform:none;width:auto;margin-top:14px;font-size:clamp(14px,4.2vw,16.5px);line-height:1.5}
  /* ===== DECK GENERATION collage — one scaled decorative ASSET (not a functional form) =====
     te-scene becomes the query container; the cards keep their desktop absolute cqw layout and
     scale down together as a single floating collage. Card tops are shifted up so the empty
     heading band (desktop had the text overlaid there) is cropped out. */
  .te-scene{display:block;position:relative;width:100%;aspect-ratio:100/40;container-type:inline-size;order:1;margin-top:16px}
  .te-points{order:2}
  .te-deck-r{top:4.72cqw}
  .te-deck-l{top:6.4cqw}
  .te-input{top:13.89cqw}
  .te-3d{top:14.9cqw}
  .te-mode{top:13.89cqw}
  .te-points{position:static;left:auto;top:auto;width:100%;flex-direction:column;gap:20px;margin-top:28px}
  .te-point{width:100%;text-align:left}
  .te-point-ic{width:44px;height:44px;border-radius:13px}
  .te-point-ic svg{width:24px;height:24px}
  .te-point-title{font-size:clamp(15px,4.5vw,18px)}
  .te-point-sub{font-size:clamp(13px,3.9vw,15px)}

  /* ---------- 06b UNDERSTAND + SEE (mobile) ---------- */
  .blk-eyebrow{padding:6px 14px 6px 6px}
  .blk-title{font-size:clamp(26px,7.6vw,35px);line-height:1.14;margin-top:16px}
  .blk-body{font-size:clamp(14px,4.2vw,16.5px);line-height:1.55;margin-top:14px}
  .blk-points{gap:18px;margin-top:26px}
  .blk-points .te-point-ic,.ex-left .te-point-ic,.vx-points .te-point-ic{width:44px;height:44px;border-radius:13px}
  .blk-points .te-point-ic svg,.ex-left .te-point-ic svg,.vx-points .te-point-ic svg{width:24px;height:24px}
  .blk-points .te-point-title,.ex-left .te-point-title,.vx-points .te-point-title{font-size:clamp(15px,4.5vw,18px)}
  .blk-points .te-point-sub,.ex-left .te-point-sub,.vx-points .te-point-sub{font-size:clamp(13px,3.9vw,15px)}

  .ex-block{grid-template-columns:1fr;gap:26px;padding:30px 22px}
  /* text moves BELOW the persona scene */
  .ex-right{order:1}
  .ex-left{order:2}
  .ex-block::before,.vx-block::before{left:22px;right:22px}
  .ex-left .blk-body{max-width:none}
  .ex-clarity{font-size:15px;padding:20px;border-radius:22px}
  .ex-c-head{flex-wrap:wrap}
  .ex-c-topic{order:2}
  .ex-stage{aspect-ratio:auto;display:flex;flex-direction:column;align-items:center;gap:12px;margin:14px 0 4px}
  .ex-plant{position:static;transform:none;width:auto;height:230px;animation:none}
  .ex-fcard{position:static;width:100%;animation:none}
  .ex-f-txt{font-size:.9em}

  /* text (vx-head) moves BELOW the carousel */
  .vx-block{display:flex;flex-direction:column;padding:30px 16px 26px}
  .vx-carousel{order:0}
  .vx-dots{order:1}
  .vx-head{order:2;margin-top:26px;max-width:none}
  .vx-title{margin-top:14px}
  .vx-body{font-size:clamp(14px,4.2vw,16.5px);margin-top:12px}
  .vx-carousel{margin-top:24px;-webkit-mask-image:none;mask-image:none}
  .vx-track{gap:14px}
  .vx-card{flex:0 0 86%;border-radius:18px;padding:12px;box-shadow:0 18px 40px -20px rgba(30,25,90,.26)}
  .vx-card img{border-radius:11px}
  .vx-nav{display:none}
  .vx-dots{margin-top:22px;gap:7px}
  .vx-dots button{width:8px;height:8px}
  .vx-dots button.on{width:22px}
  .vx-points{flex-direction:column;gap:18px;margin-top:28px}
  .vx-points .te-point{width:100%}

  /* ---------- 09 CTA — content centered on top, phone emerging from the bottom ---------- */
  .sec-cta{padding:48px 16px}
  .cta-panel{height:auto;display:flex;flex-direction:column;align-items:center;padding:44px 22px 0;border-radius:28px;overflow:hidden}
  .cta-content{position:static;left:auto;top:auto;width:100%;order:1;display:flex;flex-direction:column;align-items:center;text-align:center}
  .cta-eyebrow{padding:6px 14px 6px 8px}
  .cta-eyebrow-ic{width:16px;height:16px}
  .cta-eyebrow-txt{font-size:12px}
  .cta-title{margin-top:18px;font-size:clamp(26px,7.6vw,35px);line-height:1.14}
  .cta-sub{width:auto;max-width:none;margin-top:14px;font-size:clamp(14px,4.2vw,16.5px);line-height:1.5}
  .cta-btn{margin-top:24px;padding:15px 26px;font-size:clamp(15px,4.4vw,17px)}
  .cta-btn svg{width:18px;height:18px}
  .cta-caption{margin-top:16px;gap:8px;font-size:12px;justify-content:center}
  .cta-stars{width:84px;height:13px}
  /* phone sits at the bottom, its lower edge clipped by the panel (overflow:hidden) — "sticking out" */
  .cta-phone{position:static;left:auto;right:auto;top:auto;bottom:auto;order:2;width:76%;max-width:280px;margin:36px auto -52px;display:block;border-radius:26px;clip-path:inset(1.5px round 26px)}

  /* ---------- UNIFIED EYEBROW TAGS (smaller + consistent across all sections) ---------- */
  .sf-eyebrow,.te-eyebrow,.blk-eyebrow,.be-eyebrow,.cta-eyebrow{padding:5px 12px 5px 5px;gap:7px}
  .sf-eyebrow{font-size:11px}
  .te-eyebrow-txt,.be-eyebrow-txt,.cta-eyebrow-txt{font-size:11px;letter-spacing:.06em}
  .sf-eyeicon,.te-eyebrow-ic,.be-eyebrow-ic{width:20px;height:20px;border-radius:6px}
  .sf-eyeicon img,.te-eyebrow-ic img,.be-eyebrow-ic img{width:11px;height:11px}
  .cta-eyebrow-ic{width:15px;height:15px}

  /* ---------- trust cluster (avatars + stars) — cqw collapses on mobile, force px ---------- */
  .md-av{width:34px;height:34px;box-shadow:0 0 0 2px #fff}
  .md-av + .md-av{margin-left:-9px}
  .md-count{font-size:12px}
  .md-stars{width:96px;height:15px}
  .md-trust-txt{font-size:14px}
}

/* ---- TABLET tier: 2-up grids so wide-phone / tablet isn't sparse (600–760px) ---- */
@media (min-width:600px) and (max-width:760px){
  .in-band{grid-template-columns:repeat(3,1fr);gap:20px}
  .in-bandcol{max-width:none}
  .in-tags{flex-direction:row}
  .in-tag{flex:1}
  .hero-btns2{flex-direction:row;max-width:none;width:auto}
  .hbtn{width:auto}
}

/* =============================================================
   TABLET + MOBILE TIER  (≤1024) — MODES single column
   The mode-card mockups are authored in cqw (canvas-relative). In a
   single-column layout the canvas ≈ viewport, so cqw collapses and the
   mockups render at 2–6px. Rebase the mockup internals to px here so they
   stay legible; desktop (≥1025) keeps the original cqw layout untouched.
   ============================================================= */
@media (max-width:1024px){
  .md-head{flex-direction:column;align-items:center;text-align:center;gap:16px}
  .md-title{line-height:1.1}
  .md-trust{align-items:center}
  /* horizontal scroll-snap rail — full-bleed to the section edges, cards peek + snap */
  .md-grid{display:flex;grid-template-columns:none;gap:16px;max-width:none;margin-top:32px;
    margin-inline:calc(-1 * var(--gutter));padding-inline:var(--gutter);
    overflow-x:auto;scroll-snap-type:x mandatory;-webkit-overflow-scrolling:touch;
    scroll-padding-inline:var(--gutter);scrollbar-width:none}
  .md-grid::-webkit-scrollbar{display:none}
  .md-card{flex:0 0 clamp(258px,80vw,332px);height:auto;max-width:none;margin-inline:0;
    scroll-snap-align:center;border-radius:28px;padding:28px 26px 32px}
  .md-mode{font-size:clamp(24px,3.6vw,30px)}
  .md-desc{font-size:16px;line-height:1.5;max-width:none;margin-top:24px}
  .md-mock{margin-top:24px}
  /* Learn mockup */
  .md-mock-learn{padding:20px;border-radius:20px}
  .ml-title{font-size:20px}
  .ml-sub{margin-top:3px;font-size:12px}
  .ml-toggle{width:34px;height:34px}
  .ml-toggle::before{width:11px;height:2px}
  .ml-stats{margin-top:16px;border-radius:14px;padding:12px 0}
  .ml-stat b{font-size:19px}
  .ml-stat small{margin-top:5px;font-size:9px}
  .ml-prog{gap:12px;margin-top:16px}
  .ml-track{height:7px;border-radius:4px}
  .ml-cap{font-size:11px}
  .ml-btn{margin-top:16px;height:50px;border-radius:14px;font-size:15px;gap:9px}
  .ml-play{width:20px;height:20px}
  .ml-play svg{width:9px}
  /* Memorise mockup */
  .md-mock-mem{margin-top:24px;gap:11px}
  .mm-item{border-radius:16px;padding:14px}
  .mm-ic{width:32px;height:32px;border-radius:9px}
  .mm-ic svg{width:18px;height:18px}
  .mm-title{margin-top:9px;font-size:19px}
  .mm-sub{margin-top:3px;font-size:12px}
  /* Recall mockup */
  .md-mock-rec{border-radius:18px;padding:20px}
  .mr-tag{padding:4px 8px;font-size:10px;border-radius:6px}
  .mr-q{margin-top:12px;font-size:19px}
  .mr-div{margin-top:15px}
  .mr-answer{margin-top:15px;font-size:10px}
  .mr-btns{gap:10px;margin-top:10px}
  .mr-b{height:46px;border-radius:13px;font-size:14px}
}

/* =============================================================
   TABLET TIER  (761–1024) — sections whose desktop cqw layout would
   overlap or scale to unreadable sizes are recomposed for this range.
   Mobile (≤760) and desktop (≥1025) are untouched.
   ============================================================= */
@media (min-width:761px) and (max-width:1024px){
  /* TEACHER · panel 1 — the absolute cqw scene collides when the title
     wraps; stack it (same treatment as mobile, points kept in a row). */
  .te-panel{height:auto;display:flex;flex-direction:column;align-items:center;text-align:center;padding:56px 40px 20px}
  .te-eyebrow,.te-title,.te-sub{position:static;left:auto;top:auto;transform:none}
  .te-eyebrow{padding:6px 14px 6px 6px}
  .te-eyebrow-ic{width:22px;height:22px}
  .te-eyebrow-ic img{width:13px;height:13px}
  .te-eyebrow-txt{font-size:12px}
  .te-title{margin-top:20px}
  .te-sub{width:min(560px,92%);margin-top:16px;font-size:16px;line-height:1.55}
  .te-deck-l,.te-deck-r,.te-input,.te-mode{display:none}
  .te-3d{position:static;left:auto;top:auto;width:200px;height:200px;margin-top:28px}
  .te-points{position:static;left:auto;top:auto;width:100%;flex-direction:row;gap:26px;margin-top:38px}
  .te-point{flex:1;width:auto}
  .te-point-ic{width:46px;height:46px;border-radius:13px}
  .te-point-ic svg{width:25px;height:25px}
  .te-point-title{font-size:16px}
  .te-point-sub{font-size:14px;margin-top:3px}

  /* SUMMARY BAND · keep 3 columns, readable px type */
  .in-band-ic{width:46px;height:46px;border-radius:13px;margin-bottom:14px}
  .in-band-ic svg{width:25px;height:25px}
  .in-band-title{font-size:17px}
  .in-band-sub{font-size:14px;line-height:1.5;margin-top:7px}
  .in-bandcol{max-width:none}

  /* INDUSTRIES · stacked header, readable tag type (row of 3) */
  .in-head{flex-direction:column;align-items:flex-start;gap:18px}
  .in-trust{align-items:flex-start}
  .in-tag{padding:14px;border-radius:16px;gap:12px}
  .in-tag-ic{width:44px;height:44px;border-radius:12px}
  .in-tag-ic svg{width:23px;height:23px}
  .in-tag-title{font-size:16px}
  .in-tag-sub{font-size:13px;line-height:1.4;margin-top:3px}

  /* TEACHER · blocks 2 & 3 (Guided / Visual) — readable body + points */
  .blk-body{font-size:16px;line-height:1.55;margin-top:14px}
  .blk-points{gap:18px;margin-top:26px}
  .blk-points .te-point-ic,.ex-left .te-point-ic,.vx-points .te-point-ic{width:44px;height:44px;border-radius:13px}
  .blk-points .te-point-ic svg,.ex-left .te-point-ic svg,.vx-points .te-point-ic svg{width:24px;height:24px}
  .blk-points .te-point-title,.ex-left .te-point-title,.vx-points .te-point-title{font-size:16px}
  .blk-points .te-point-sub,.ex-left .te-point-sub,.vx-points .te-point-sub{font-size:14px;margin-top:3px}
  .ex-left .blk-body{max-width:none}
  /* guided-explanations scene: stack (multi-layer scene reads clearer vertically) */
  .ex-block{grid-template-columns:1fr;gap:28px;padding:36px 40px}
  .ex-block::before,.vx-block::before{left:40px;right:40px}
  .ex-clarity{font-size:15px}
  .ex-stage{aspect-ratio:auto;display:flex;flex-direction:column;align-items:center;gap:14px;margin:16px 0 4px}
  .ex-plant{position:static;transform:none;width:auto;height:260px}
  .ex-fcard{position:static;width:100%;max-width:440px}
  /* visual carousel copy */
  .vx-body{font-size:16px}
  .vx-block{padding-inline:40px}
}
