/* ==========================================================================
   Seuor — design system
   Ink + signal orange, Sora display / Inter text.
   ========================================================================== */

:root {
  --ink: #0B0B0C;
  --ink-2: #111114;
  --ink-3: #18181D;
  --ink-4: #222229;
  --line-d: rgba(255,255,255,.09);
  --line-d2: rgba(255,255,255,.16);
  --txt-d: #F4F4F2;
  --mut-d: #A2A2AB;

  --paper: #FAFAF7;
  --paper-2: #F3F2ED;
  --white: #FFFFFF;
  --line: #E6E4DD;
  --line-2: #D9D6CD;
  --txt: #111113;
  --mut: #5D5D66;
  --mut-2: #8A8A93;

  --brand: #FF8339;
  --brand-600: #F26A1B;
  --brand-700: #D95A10;
  --brand-50: #FFF2E9;
  --brand-100: #FFE2CF;

  --learn: #FF8339;
  --launch: #4C7DFF;
  --grow: #19B36B;
  --invest: #D9A441;

  --ok: #16A34A;
  --warn: #D97706;
  --bad: #DC2626;

  --r-sm: 10px;
  --r: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --sh-1: 0 1px 2px rgba(16,16,20,.06), 0 2px 8px rgba(16,16,20,.04);
  --sh-2: 0 10px 30px -10px rgba(16,16,20,.18), 0 2px 6px rgba(16,16,20,.05);
  --sh-3: 0 30px 80px -24px rgba(16,16,20,.35);
  --glow: 0 0 0 1px rgba(255,131,57,.35), 0 18px 60px -18px rgba(255,131,57,.55);

  --f-display: "Sora", "Inter", system-ui, sans-serif;
  --f-text: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --container: 1240px;
  --gutter: clamp(18px, 4vw, 40px);
  --header-h: 76px;
  --ease: cubic-bezier(.2,.7,.2,1);
  --accent: var(--brand);
}

*,*::before,*::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
body {
  margin: 0; font-family: var(--f-text); font-size: 16px; line-height: 1.6; color: var(--txt);
  background: var(--paper); -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video, canvas { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }
h1,h2,h3,h4,h5 { font-family: var(--f-display); font-weight: 600; letter-spacing: -.025em; line-height: 1.08; margin: 0 0 .5em; }
p { margin: 0 0 1em; }
::selection { background: var(--brand); color: #fff; }
:focus-visible { outline: 2px solid var(--brand); outline-offset: 3px; border-radius: 6px; }
.ic { width: 1.25em; height: 1.25em; flex: none; }
.flag { width: 28px; height: auto; border-radius: 4px; box-shadow: 0 0 0 1px rgba(0,0,0,.08); flex: none; }
.sr-only { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip { position: absolute; left: -999px; top: 8px; z-index: 999; background: var(--brand); color: #fff; padding: 10px 16px; border-radius: 8px; }
.skip:focus { left: 8px; }

/* ------------------------------------------------------------- layout */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.container-sm { max-width: 860px; }
.container-md { max-width: 1040px; }
.section { padding: clamp(72px, 10vw, 136px) 0; position: relative; }
.section-sm { padding: clamp(48px, 6vw, 84px) 0; }
.section-dark { background: var(--ink); color: var(--txt-d); }
.section-dark .lead, .section-dark .muted { color: var(--mut-d); }
.section-tint { background: var(--paper-2); }
.section-white { background: var(--white); }
.grid { display: grid; gap: 24px; }
.g-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.g-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.g-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(32px, 6vw, 88px); align-items: center; }
.split-top { align-items: start; }
.stack > * + * { margin-top: 16px; }
.row { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.row-between { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-0 { margin-top: 0 !important; } .mb-0 { margin-bottom: 0 !important; }
.mt-2 { margin-top: 16px; } .mt-3 { margin-top: 24px; } .mt-4 { margin-top: 32px; } .mt-5 { margin-top: 48px; } .mt-6 { margin-top: 64px; }
.mb-2 { margin-bottom: 16px; } .mb-3 { margin-bottom: 24px; } .mb-4 { margin-bottom: 32px; } .mb-5 { margin-bottom: 48px; }
.muted { color: var(--mut); }
.small { font-size: 14px; }
.tiny { font-size: 12.5px; }
.nowrap { white-space: nowrap; }
.hide-sm {}
@media (max-width: 1080px) { .g-4 { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; }
  .g-3 { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 640px) {
  .g-2, .g-3, .g-4 { grid-template-columns: 1fr; }
  .hide-sm { display: none !important; }
}

/* ---------------------------------------------------------- typography */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px; font: 600 12.5px/1 var(--f-text); letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 20px;
}
.eyebrow::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: currentColor; box-shadow: 0 0 0 4px color-mix(in srgb, currentColor 18%, transparent); }
.display { font-size: clamp(42px, 6vw, 84px); line-height: .98; letter-spacing: -.045em; font-weight: 600; }
.h1 { font-size: clamp(38px, 5vw, 68px); line-height: 1.02; letter-spacing: -.04em; }
.h2 { font-size: clamp(32px, 4vw, 54px); line-height: 1.05; letter-spacing: -.035em; }
.h3 { font-size: clamp(22px, 2.2vw, 28px); line-height: 1.2; letter-spacing: -.02em; }
.h4 { font-size: 19px; line-height: 1.3; letter-spacing: -.01em; }
.lead { font-size: clamp(17px, 1.45vw, 20px); line-height: 1.6; color: var(--mut); max-width: 62ch; }
.grad { background: linear-gradient(100deg, #FFB27A 0%, var(--brand) 45%, #FF5A1F 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.grad-soft { background: linear-gradient(180deg, #fff 30%, rgba(255,255,255,.55)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.section-head { max-width: 780px; margin-bottom: clamp(40px, 5vw, 64px); }
.section-head.center { margin-left: auto; margin-right: auto; }
.section-head .lead { margin-top: 18px; }
.center .lead { margin-left: auto; margin-right: auto; }

/* -------------------------------------------------------------- buttons */
.btn {
  --b-bg: var(--ink); --b-fg: #fff; --b-bd: transparent;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px; height: 50px; padding: 0 24px; border-radius: 999px;
  background: var(--b-bg); color: var(--b-fg); border: 1px solid var(--b-bd); font-weight: 600; font-size: 15px; letter-spacing: -.005em;
  white-space: nowrap; transition: transform .25s var(--ease), background .25s, box-shadow .25s, color .25s, border-color .25s; position: relative; isolation: isolate;
}
.btn .ic { width: 18px; height: 18px; transition: transform .3s var(--ease); }
.btn:hover .ic-arrow, .btn:hover .ic:last-child:not(:first-child) { transform: translateX(3px); }
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary { --b-bg: var(--brand); --b-fg: #fff; box-shadow: 0 10px 30px -10px rgba(255,131,57,.8), inset 0 1px 0 rgba(255,255,255,.25); }
.btn-primary:hover { --b-bg: var(--brand-600); box-shadow: 0 16px 40px -12px rgba(255,131,57,.9), inset 0 1px 0 rgba(255,255,255,.25); }
.btn-dark { --b-bg: var(--ink); --b-fg: #fff; }
.btn-dark:hover { --b-bg: #26262c; }
.btn-light { --b-bg: #fff; --b-fg: var(--ink); }
.btn-light:hover { --b-bg: #f1f0ec; }
.btn-ghost { --b-bg: transparent; --b-fg: var(--txt); --b-bd: var(--line-2); }
.btn-ghost:hover { --b-bd: var(--txt); }
.btn-ghost-d { --b-bg: rgba(255,255,255,.04); --b-fg: #fff; --b-bd: var(--line-d2); backdrop-filter: blur(8px); }
.btn-ghost-d:hover { --b-bg: rgba(255,255,255,.1); --b-bd: rgba(255,255,255,.35); }
.btn-wa { --b-bg: #1FAF59; --b-fg: #fff; }
.btn-wa:hover { --b-bg: #18974B; }
.btn-lg { height: 58px; padding: 0 30px; font-size: 16px; }
.btn-sm { height: 40px; padding: 0 16px; font-size: 14px; }
.btn-xs { height: 32px; padding: 0 12px; font-size: 13px; gap: 6px; }
.btn-block { width: 100%; }
.btn[disabled], .btn.is-loading { opacity: .6; pointer-events: none; }
.link { color: var(--brand-600); font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }
.link .ic { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.link:hover .ic { transform: translateX(3px); }
.link-d { color: #fff; }

/* ---------------------------------------------------------------- chips */
.chip { display: inline-flex; align-items: center; gap: 8px; padding: 7px 14px; border-radius: 999px; font-size: 13.5px; font-weight: 500;
  background: var(--white); border: 1px solid var(--line); color: var(--txt); transition: all .2s; }
.chip:hover, .chip.is-active { border-color: var(--txt); }
.chip.is-active { background: var(--ink); color: #fff; }
.chip-d { background: rgba(255,255,255,.05); border-color: var(--line-d2); color: var(--txt-d); }
.chip-d:hover { border-color: rgba(255,255,255,.4); }
.chip .ic { width: 15px; height: 15px; }
.tag { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; letter-spacing: .02em; padding: 4px 10px; border-radius: 999px; background: var(--brand-50); color: var(--brand-700); }
.tag-d { background: rgba(255,131,57,.14); color: #FFB27A; }
.tag-grey { background: var(--paper-2); color: var(--mut); }
.pill { display: inline-flex; align-items: center; padding: 3px 10px; border-radius: 999px; font-size: 12px; font-weight: 600; white-space: nowrap; }
.pill-green { background: #E7F7EE; color: #127A43; } .pill-amber { background: #FFF4E0; color: #A45C00; } .pill-blue { background: #E8F0FF; color: #2553C9; }
.pill-violet { background: #F0EBFF; color: #5B3FC4; } .pill-grey { background: #EFEFEC; color: #5D5D66; } .pill-red { background: #FDECEC; color: #B42318; }

/* --------------------------------------------------------------- header */
.announce { background: var(--brand); color: #fff; text-align: center; font-size: 14px; font-weight: 500; padding: 9px 16px; position: relative; z-index: 60; }
.announce a { text-decoration: underline; text-underline-offset: 3px; }
.header { position: sticky; top: 0; z-index: 50; height: var(--header-h); background: rgba(11,11,12,.72); backdrop-filter: saturate(160%) blur(18px); -webkit-backdrop-filter: saturate(160%) blur(18px);
  border-bottom: 1px solid transparent; transition: background .3s, border-color .3s; color: var(--txt-d); }
.header.is-scrolled { background: rgba(11,11,12,.9); border-bottom-color: var(--line-d); }
.header-in { height: 100%; display: flex; align-items: center; gap: 28px; }
.logo { display: flex; align-items: center; flex: none; }
.logo img { height: 34px; width: auto; }
.nav { display: flex; align-items: center; gap: 2px; margin-left: 6px; }
.nav-item { position: relative; }
.nav-link { display: flex; align-items: center; gap: 6px; height: 40px; padding: 0 13px; border-radius: 999px; font-size: 14.5px; font-weight: 500; color: #D8D8DC; transition: color .2s, background .2s; background: none; border: 0; }
.nav-link .ic { width: 14px; height: 14px; opacity: .6; transition: transform .25s; }
.nav-link:hover, .nav-item.is-open > .nav-link, .nav-link.is-current { color: #fff; background: rgba(255,255,255,.07); }
.nav-item.is-open > .nav-link .ic { transform: rotate(180deg); }
.nav-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--c, var(--brand)); }
.header-cta { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.icon-btn { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,.06); border: 1px solid var(--line-d); color: #fff; transition: background .2s; }
.icon-btn:hover { background: rgba(255,255,255,.12); }
.icon-btn .ic { width: 18px; height: 18px; }
.burger { display: none; }

.mega { position: absolute; top: calc(100% + 14px); left: 50%; transform: translate(-50%, 8px); width: min(880px, 92vw); background: #121216; border: 1px solid var(--line-d); border-radius: 22px;
  box-shadow: 0 40px 100px -20px rgba(0,0,0,.7); padding: 14px; display: grid; grid-template-columns: 280px 1fr; gap: 14px; opacity: 0; visibility: hidden; transition: opacity .2s, transform .25s var(--ease), visibility .2s; }
.mega::before { content: ""; position: absolute; inset: -16px 0 auto; height: 16px; }
.nav-item.is-open .mega { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.mega-intro { border-radius: 16px; padding: 24px; background: radial-gradient(120% 100% at 0% 0%, color-mix(in srgb, var(--c) 30%, transparent), transparent 60%), #17171c; border: 1px solid var(--line-d); display: flex; flex-direction: column; }
.mega-intro .ic-lg { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; background: color-mix(in srgb, var(--c) 18%, transparent); color: var(--c); margin-bottom: 18px; }
.mega-intro h4 { color: #fff; font-size: 20px; margin-bottom: 8px; }
.mega-intro p { color: var(--mut-d); font-size: 14px; line-height: 1.55; }
.mega-intro .link { margin-top: auto; color: var(--c); }
.mega-links { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; align-content: start; padding: 6px; }
.mega-links a { display: flex; gap: 12px; padding: 12px; border-radius: 12px; transition: background .15s; }
.mega-links a:hover { background: rgba(255,255,255,.05); }
.mega-links .mi { width: 36px; height: 36px; border-radius: 10px; display: grid; place-items: center; background: rgba(255,255,255,.05); color: #fff; flex: none; }
.mega-links .mi .ic { width: 18px; height: 18px; }
.mega-links strong { display: block; color: #fff; font-size: 14.5px; font-weight: 600; letter-spacing: -.01em; }
.mega-links span { display: block; color: var(--mut-d); font-size: 13px; line-height: 1.4; margin-top: 2px; }
.mega-links .flag { width: 36px; border-radius: 6px; }

@media (max-width: 1180px) {
  .nav, .header-cta .hide-md { display: none; }
  .burger { display: grid; }
}

/* mobile drawer */
.drawer { position: fixed; inset: 0; z-index: 80; background: var(--ink); color: var(--txt-d); transform: translateX(100%); transition: transform .4s var(--ease); display: flex; flex-direction: column; }
.drawer.is-open { transform: none; }
.drawer-top { height: var(--header-h); display: flex; align-items: center; justify-content: space-between; padding: 0 var(--gutter); border-bottom: 1px solid var(--line-d); flex: none; }
.drawer-body { overflow-y: auto; padding: 16px var(--gutter) 40px; flex: 1; }
.drawer details { border-bottom: 1px solid var(--line-d); }
.drawer summary, .drawer .d-link { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; font: 600 20px/1.2 var(--f-display); letter-spacing: -.02em; list-style: none; cursor: pointer; }
.drawer summary::-webkit-details-marker { display: none; }
.drawer summary .ic { transition: transform .25s; }
.drawer details[open] summary .ic { transform: rotate(180deg); }
.drawer .d-sub { padding: 0 0 16px; display: grid; gap: 2px; }
.drawer .d-sub a { padding: 10px 0; color: var(--mut-d); font-size: 16px; }
.drawer .d-link { border-bottom: 1px solid var(--line-d); }
.drawer-foot { padding: 16px var(--gutter) calc(20px + env(safe-area-inset-bottom)); border-top: 1px solid var(--line-d); display: grid; gap: 10px; flex: none; }
body.no-scroll { overflow: hidden; }

/* ----------------------------------------------------------------- hero */
.hero { position: relative; background: var(--ink); color: var(--txt-d); overflow: hidden; isolation: isolate; margin-top: calc(-1 * var(--header-h)); padding-top: var(--header-h); }
.hero-bg { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 72px 72px; mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, #000 30%, transparent 75%); -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, #000 30%, transparent 75%); }
.orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: .55; }
.orb-1 { width: 620px; height: 620px; background: radial-gradient(circle, rgba(255,131,57,.55), transparent 65%); top: -180px; right: -120px; animation: float 16s ease-in-out infinite; }
.orb-2 { width: 520px; height: 520px; background: radial-gradient(circle, rgba(76,125,255,.28), transparent 65%); bottom: -220px; left: -160px; animation: float 20s ease-in-out infinite reverse; }
@keyframes float { 0%,100% { transform: translate(0,0); } 50% { transform: translate(30px, 40px); } }
.hero-home { min-height: min(100vh, 1000px); display: flex; flex-direction: column; }
.hero-home .container { position: relative; z-index: 2; }
.hero-main { display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 24px; padding: clamp(48px, 8vh, 100px) 0 40px; flex: 1; }
.hero-copy .lead { color: var(--mut-d); margin-top: 26px; max-width: 58ch; }
.hero-copy .display { margin: 0; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.hero-badge { display: inline-flex; align-items: center; gap: 10px; padding: 7px 14px 7px 8px; border-radius: 999px; background: rgba(255,255,255,.05); border: 1px solid var(--line-d); font-size: 13.5px; color: #E4E4E8; }
.hero-badge .flag { width: 22px; }
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: #2BD576; box-shadow: 0 0 0 4px rgba(43,213,118,.18); margin-left: 4px; }
.globe-wrap { position: relative; aspect-ratio: 1; width: 100%; max-width: 640px; justify-self: end; }
.globe-wrap canvas { width: 100%; height: 100%; }
.globe-card { position: absolute; display: flex; align-items: center; gap: 10px; padding: 10px 14px; border-radius: 14px; background: rgba(20,20,25,.72); border: 1px solid var(--line-d2);
  backdrop-filter: blur(12px); font-size: 13px; color: #fff; box-shadow: 0 20px 40px -12px rgba(0,0,0,.6); white-space: nowrap; animation: bob 6s ease-in-out infinite; }
.globe-card small { display: block; color: var(--mut-d); font-size: 11.5px; }
.globe-card .flag { width: 26px; }
.gc-1 { top: 18%; left: 2%; } .gc-2 { top: 8%; right: 10%; animation-delay: -2s; } .gc-3 { bottom: 22%; right: 0; animation-delay: -4s; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

.journeys { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; padding-bottom: clamp(40px, 6vh, 72px); }
.journey { --c: var(--brand); position: relative; display: flex; flex-direction: column; gap: 14px; padding: 22px; border-radius: 22px; background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border: 1px solid var(--line-d); overflow: hidden; transition: transform .35s var(--ease), border-color .3s, background .3s; min-height: 170px; }
.journey::before { content: ""; position: absolute; inset: 0; background: radial-gradient(120% 90% at 100% 0%, color-mix(in srgb, var(--c) 32%, transparent), transparent 55%); opacity: .55; transition: opacity .35s; z-index: -1; }
.journey:hover { transform: translateY(-4px); border-color: color-mix(in srgb, var(--c) 55%, transparent); }
.journey:hover::before { opacity: 1; }
.journey .j-top { display: flex; align-items: center; justify-content: space-between; }
.journey .j-ic { width: 44px; height: 44px; border-radius: 13px; display: grid; place-items: center; background: color-mix(in srgb, var(--c) 18%, transparent); color: var(--c); }
.journey .j-ic .ic { width: 22px; height: 22px; }
.journey .j-go { width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; border: 1px solid var(--line-d2); color: #fff; transition: all .3s var(--ease); }
.journey:hover .j-go { background: var(--c); border-color: var(--c); transform: rotate(-45deg); }
.journey .j-go .ic { width: 16px; height: 16px; }
.journey small { color: var(--c); font-weight: 600; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; }
.journey strong { display: block; font: 600 19px/1.25 var(--f-display); letter-spacing: -.02em; color: #fff; margin-top: 4px; }
.journey p { color: var(--mut-d); font-size: 13.5px; line-height: 1.5; margin: 0; }
@media (max-width: 1080px) {
  .hero-main { grid-template-columns: 1fr; }
  .globe-wrap { position: absolute; right: -30%; top: 6%; width: 90%; opacity: .45; z-index: -1; max-width: none; }
  .globe-card { display: none; }
  .journeys { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) { .journeys { grid-template-columns: 1fr; } .journey { min-height: 0; } .globe-wrap { right: -55%; width: 130%; top: 0; } }

/* marquee */
.marquee { border-top: 1px solid var(--line-d); border-bottom: 1px solid var(--line-d); overflow: hidden; background: var(--ink); color: var(--mut-d); position: relative; }
.marquee::before, .marquee::after { content: ""; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; pointer-events: none; }
.marquee::before { left: 0; background: linear-gradient(90deg, var(--ink), transparent); }
.marquee::after { right: 0; background: linear-gradient(-90deg, var(--ink), transparent); }
.marquee-track { display: flex; gap: 56px; padding: 22px 0; width: max-content; animation: marquee 40s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item { display: flex; align-items: center; gap: 12px; font: 600 17px/1 var(--f-display); letter-spacing: -.01em; white-space: nowrap; color: #CFCFD4; }
.marquee-item .ic { color: var(--brand); width: 18px; height: 18px; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* page hero (inner pages) */
.page-hero { position: relative; background: var(--ink); color: var(--txt-d); overflow: hidden; isolation: isolate; margin-top: calc(-1 * var(--header-h)); padding: calc(var(--header-h) + clamp(48px, 7vw, 96px)) 0 clamp(56px, 7vw, 96px); }
.page-hero .lead { color: var(--mut-d); margin-top: 22px; }
.page-hero .h1 { max-width: 16ch; }
.page-hero.wide .h1 { max-width: 22ch; }
.page-hero .glow { position: absolute; width: 900px; height: 900px; border-radius: 50%; right: -300px; top: -420px; background: radial-gradient(circle, color-mix(in srgb, var(--accent) 38%, transparent), transparent 62%); z-index: -1; filter: blur(20px); }
.page-hero .glow-2 { position: absolute; width: 600px; height: 600px; border-radius: 50%; left: -260px; bottom: -380px; background: radial-gradient(circle, rgba(255,255,255,.07), transparent 65%); z-index: -1; }
.crumbs { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; font-size: 13.5px; color: var(--mut-d); margin-bottom: 28px; }
.crumbs a:hover { color: #fff; }
.crumbs .ic { width: 14px; height: 14px; opacity: .5; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 28px; margin-top: 44px; padding-top: 28px; border-top: 1px solid var(--line-d); }
.hero-meta div { min-width: 120px; }
.hero-meta strong { display: block; font: 600 26px/1.1 var(--f-display); color: #fff; letter-spacing: -.02em; }
.hero-meta span { font-size: 13.5px; color: var(--mut-d); }

/* ---------------------------------------------------------------- cards */
.card { position: relative; background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px; transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .3s; }
.card-hover:hover { transform: translateY(-4px); box-shadow: var(--sh-2); border-color: var(--line-2); }
.card-d { background: var(--ink-3); border-color: var(--line-d); color: var(--txt-d); }
.card-d p { color: var(--mut-d); }
.card-glass { background: rgba(255,255,255,.04); border: 1px solid var(--line-d); backdrop-filter: blur(10px); color: var(--txt-d); }
.card .ic-box, .ic-box { width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; background: color-mix(in srgb, var(--c, var(--brand)) 12%, transparent); color: var(--c, var(--brand)); margin-bottom: 20px; }
.ic-box .ic { width: 23px; height: 23px; }
.ic-box-sm { width: 38px; height: 38px; border-radius: 11px; margin-bottom: 0; }
.ic-box-sm .ic { width: 18px; height: 18px; }
.card h3 { font-size: 20px; letter-spacing: -.02em; margin-bottom: 10px; }
.card p { color: var(--mut); font-size: 15px; margin-bottom: 0; }
.card .card-foot { margin-top: 22px; }
.card-link::after { content: ""; position: absolute; inset: 0; border-radius: inherit; }

/* pillar cards */
.pillar { --c: var(--brand); position: relative; border-radius: var(--r-xl); padding: 34px; overflow: hidden; background: var(--ink-3); color: var(--txt-d); border: 1px solid var(--line-d);
  display: flex; flex-direction: column; min-height: 440px; isolation: isolate; transition: transform .4s var(--ease), border-color .3s; }
.pillar::before { content: ""; position: absolute; inset: 0; background: radial-gradient(90% 70% at 100% 0%, color-mix(in srgb, var(--c) 36%, transparent), transparent 60%); z-index: -1; transition: opacity .4s; opacity: .7; }
.pillar::after { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.08) 1px, transparent 1px); background-size: 18px 18px; mask-image: linear-gradient(180deg, transparent, #000 70%); -webkit-mask-image: linear-gradient(180deg, transparent, #000 70%); z-index: -1; opacity: .5; }
.pillar:hover { transform: translateY(-6px); border-color: color-mix(in srgb, var(--c) 50%, transparent); }
.pillar:hover::before { opacity: 1; }
.pillar .p-num { font: 600 13px/1 var(--f-text); color: var(--mut-d); letter-spacing: .1em; }
.pillar .p-ic { width: 60px; height: 60px; border-radius: 18px; display: grid; place-items: center; background: color-mix(in srgb, var(--c) 18%, transparent); color: var(--c); margin: 26px 0 22px; }
.pillar .p-ic .ic { width: 28px; height: 28px; }
.pillar h3 { font-size: 34px; color: #fff; margin-bottom: 6px; letter-spacing: -.035em; }
.pillar .p-label { color: var(--c); font-weight: 600; font-size: 14px; margin-bottom: 16px; }
.pillar p { color: var(--mut-d); font-size: 15px; }
.pillar ul { list-style: none; padding: 0; margin: 8px 0 28px; display: grid; gap: 9px; }
.pillar li { display: flex; gap: 10px; align-items: center; font-size: 14.5px; color: #DDDDE2; }
.pillar li .ic { width: 16px; height: 16px; color: var(--c); }
.pillar .btn { margin-top: auto; align-self: flex-start; }

/* ecosystem orbit */
.orbit { position: relative; width: min(560px, 100%); aspect-ratio: 1; margin: 0 auto; }
.orbit .ring { position: absolute; border-radius: 50%; border: 1px dashed rgba(255,255,255,.14); }
.orbit .ring-1 { inset: 0; animation: spin 60s linear infinite; }
.orbit .ring-2 { inset: 16%; border-style: solid; border-color: rgba(255,255,255,.07); }
.orbit .ring-3 { inset: 32%; border-color: rgba(255,131,57,.25); animation: spin 40s linear infinite reverse; }
@keyframes spin { to { transform: rotate(360deg); } }
.orbit .core { position: absolute; inset: 37%; border-radius: 50%; background: radial-gradient(circle at 30% 30%, #26262d, #0f0f12); border: 1px solid var(--line-d2); display: grid; place-items: center;
  box-shadow: 0 0 80px rgba(255,131,57,.3), inset 0 0 30px rgba(255,131,57,.12); }
.orbit .core img { width: 56%; }
.orbit .node { --c: var(--brand); position: absolute; width: 132px; transform: translate(-50%, -50%); text-align: center; }
.orbit .node a { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.orbit .node .n-ic { width: 70px; height: 70px; border-radius: 22px; display: grid; place-items: center; background: #16161b; border: 1px solid color-mix(in srgb, var(--c) 50%, transparent); color: var(--c);
  box-shadow: 0 0 0 8px color-mix(in srgb, var(--c) 8%, transparent), 0 20px 40px -10px color-mix(in srgb, var(--c) 45%, transparent); transition: transform .35s var(--ease); }
.orbit .node a:hover .n-ic { transform: scale(1.08); }
.orbit .node .n-ic .ic { width: 30px; height: 30px; }
.orbit .node strong { color: #fff; font: 600 17px/1 var(--f-display); }
.orbit .node span { color: var(--mut-d); font-size: 12.5px; }
.orbit .n-1 { left: 50%; top: 0; } .orbit .n-2 { left: 100%; top: 50%; } .orbit .n-3 { left: 50%; top: 100%; } .orbit .n-4 { left: 0; top: 50%; }
.orbit svg.links { position: absolute; inset: 0; width: 100%; height: 100%; }
@media (max-width: 560px) { .orbit .node { width: 96px; } .orbit .node .n-ic { width: 54px; height: 54px; border-radius: 16px; } .orbit .node span { display: none; } }

/* stats */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--white); overflow: hidden; }
.stat { padding: 30px 28px; border-right: 1px solid var(--line); }
.stat:last-child { border-right: 0; }
.stat strong { display: block; font: 600 clamp(34px, 3.4vw, 48px)/1 var(--f-display); letter-spacing: -.04em; }
.stat span { color: var(--mut); font-size: 14.5px; margin-top: 10px; display: block; }
.stats-d { background: rgba(255,255,255,.03); border-color: var(--line-d); }
.stats-d .stat { border-color: var(--line-d); }
.stats-d .stat strong { color: #fff; }
.stats-d .stat span { color: var(--mut-d); }
@media (max-width: 800px) { .stats { grid-template-columns: repeat(2, 1fr); } .stat:nth-child(2) { border-right: 0; } .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); } .stats-d .stat:nth-child(-n+2) { border-color: var(--line-d); } }

/* countries */
.country { position: relative; border-radius: var(--r-xl); overflow: hidden; background: var(--white); border: 1px solid var(--line); display: flex; flex-direction: column; transition: transform .35s var(--ease), box-shadow .35s; }
.country:hover { transform: translateY(-5px); box-shadow: var(--sh-2); }
.country-top { padding: 30px 30px 26px; background: linear-gradient(135deg, color-mix(in srgb, var(--c) 12%, #fff), #fff 70%); border-bottom: 1px solid var(--line); }
.country-top .flag { width: 54px; border-radius: 7px; margin-bottom: 22px; }
.country-top h3 { font-size: 28px; margin-bottom: 4px; }
.country-top small { color: var(--mut); font-size: 13.5px; }
.country-body { padding: 24px 30px 30px; display: flex; flex-direction: column; flex: 1; }
.country-body ul { list-style: none; padding: 0; margin: 0 0 26px; display: grid; gap: 10px; }
.country-body li { display: flex; gap: 10px; font-size: 14.5px; color: #34343a; }
.country-body li .ic { width: 17px; height: 17px; color: var(--c); margin-top: 3px; }
.country-body .row { margin-top: auto; }

/* zero to hero timeline */
.z2h { position: relative; }
.z2h-track { display: grid; grid-template-columns: repeat(8, minmax(0, 1fr)); gap: 0; position: relative; }
.z2h-line { position: absolute; left: 0; right: 0; top: 31px; height: 2px; background: var(--line-d2); }
.z2h-line i { position: absolute; inset: 0 auto 0 0; width: 0; background: linear-gradient(90deg, var(--brand), #FFB27A); box-shadow: 0 0 20px rgba(255,131,57,.7); transition: width 2.4s var(--ease); }
.z2h.is-in .z2h-line i { width: 100%; }
.z2h-step { position: relative; padding: 0 10px; text-align: left; }
.z2h-dot { width: 64px; height: 64px; border-radius: 20px; display: grid; place-items: center; background: #16161b; border: 1px solid var(--line-d2); color: #fff; position: relative; z-index: 1; transition: all .5s var(--ease); }
.z2h-dot .ic { width: 26px; height: 26px; }
.z2h.is-in .z2h-step .z2h-dot { border-color: rgba(255,131,57,.6); color: var(--brand); box-shadow: 0 0 0 6px rgba(255,131,57,.08); }
.z2h-step:nth-child(2) .z2h-dot { transition-delay: .25s; } .z2h-step:nth-child(3) .z2h-dot { transition-delay: .5s; } .z2h-step:nth-child(4) .z2h-dot { transition-delay: .75s; }
.z2h-step:nth-child(5) .z2h-dot { transition-delay: 1s; } .z2h-step:nth-child(6) .z2h-dot { transition-delay: 1.25s; } .z2h-step:nth-child(7) .z2h-dot { transition-delay: 1.5s; } .z2h-step:nth-child(8) .z2h-dot { transition-delay: 1.75s; }
.z2h-step small { display: block; margin-top: 22px; color: var(--brand); font-weight: 600; font-size: 12px; letter-spacing: .1em; }
.z2h-step strong { display: block; font: 600 18px/1.2 var(--f-display); color: #fff; margin: 6px 0 8px; letter-spacing: -.02em; }
.z2h-step p { color: var(--mut-d); font-size: 13.5px; line-height: 1.5; margin: 0; }
@media (max-width: 1000px) {
  .z2h-track { grid-template-columns: 1fr 1fr; gap: 34px 20px; }
  .z2h-line { display: none; }
}
@media (max-width: 520px) { .z2h-track { grid-template-columns: 1fr; } .z2h-step { display: grid; grid-template-columns: 64px 1fr; gap: 0 18px; } .z2h-step small { margin-top: 4px; } .z2h-step > div { grid-column: 2; } .z2h-dot { grid-row: span 3; } }

/* bento */
.bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.bento > * { grid-column: span 2; }
.bento .b-wide { grid-column: span 3; }
.bento .b-xl { grid-column: span 4; }
.b-card { position: relative; border-radius: var(--r-lg); padding: 28px; background: var(--white); border: 1px solid var(--line); overflow: hidden; display: flex; flex-direction: column; min-height: 240px; transition: transform .35s var(--ease), box-shadow .35s; isolation: isolate; }
.b-card:hover { transform: translateY(-4px); box-shadow: var(--sh-2); }
.b-card h3 { font-size: 21px; margin: auto 0 8px; }
.b-card p { color: var(--mut); font-size: 14.5px; margin: 0; }
.b-card .ic-box { margin-bottom: 26px; }
.b-card .b-arrow { position: absolute; top: 24px; right: 24px; width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; transition: all .3s var(--ease); }
.b-card:hover .b-arrow { background: var(--ink); color: #fff; border-color: var(--ink); transform: rotate(-45deg); }
.b-card .b-arrow .ic { width: 16px; height: 16px; }
.b-dark { background: var(--ink); color: #fff; border-color: var(--ink); }
.b-dark p { color: var(--mut-d); }
.b-dark .b-arrow { border-color: var(--line-d2); }
.b-dark:hover .b-arrow { background: var(--brand); border-color: var(--brand); }
.b-brand { background: linear-gradient(145deg, #FF9A56, var(--brand) 45%, #F05A12); color: #fff; border: 0; }
.b-brand p { color: rgba(255,255,255,.85); }
.b-brand .ic-box { background: rgba(255,255,255,.18); color: #fff; }
.b-brand .b-arrow { border-color: rgba(255,255,255,.4); }
@media (max-width: 1000px) { .bento { grid-template-columns: repeat(2, 1fr); } .bento > *, .bento .b-wide, .bento .b-xl { grid-column: span 1; } }
@media (max-width: 600px) { .bento { grid-template-columns: 1fr; } }

/* courses */
.course-card { position: relative; display: flex; flex-direction: column; border-radius: var(--r-lg); background: var(--white); border: 1px solid var(--line); overflow: hidden; transition: transform .35s var(--ease), box-shadow .35s; height: 100%; }
.course-card:hover { transform: translateY(-5px); box-shadow: var(--sh-2); }
.course-cover { position: relative; aspect-ratio: 16/9; overflow: hidden; background: var(--ink); }
.course-cover svg, .course-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.course-card:hover .course-cover svg, .course-card:hover .course-cover img { transform: scale(1.04); }
.course-cover .tag { position: absolute; left: 16px; bottom: 16px; background: rgba(255,255,255,.95); color: var(--ink); }
.course-body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.course-body h3 { font-size: 19px; line-height: 1.3; margin-bottom: 10px; }
.course-body p { color: var(--mut); font-size: 14.5px; margin-bottom: 18px; }
.course-meta { display: flex; flex-wrap: wrap; gap: 14px; color: var(--mut); font-size: 13.5px; margin-top: auto; padding-top: 16px; border-top: 1px solid var(--line); }
.course-meta span { display: inline-flex; align-items: center; gap: 6px; }
.course-meta .ic { width: 15px; height: 15px; }
.course-price { display: flex; align-items: baseline; gap: 8px; margin-top: 14px; justify-content: space-between; }
.course-price strong { font: 600 24px/1 var(--f-display); letter-spacing: -.03em; }
.course-price s { color: var(--mut-2); font-size: 15px; }
.course-card-d { background: var(--ink-3); border-color: var(--line-d); color: #fff; }
.course-card-d p, .course-card-d .course-meta { color: var(--mut-d); border-color: var(--line-d); }

/* carousel */
.carousel { position: relative; }
.carousel-track { display: grid; grid-auto-flow: column; grid-auto-columns: calc((100% - 48px) / 3); gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; padding: 4px 2px 24px; }
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-track > * { scroll-snap-align: start; }
.carousel-nav { display: flex; gap: 10px; }
.carousel-nav button { width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--line-2); background: var(--white); display: grid; place-items: center; transition: all .2s; }
.carousel-nav button:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.section-dark .carousel-nav button { background: transparent; border-color: var(--line-d2); color: #fff; }
.section-dark .carousel-nav button:hover { background: #fff; color: var(--ink); }
@media (max-width: 1000px) { .carousel-track { grid-auto-columns: calc((100% - 24px) / 2); } }
@media (max-width: 640px) { .carousel-track { grid-auto-columns: 86%; } }

/* services list */
.svc { display: flex; gap: 16px; padding: 22px; border-radius: var(--r); background: var(--white); border: 1px solid var(--line); transition: all .25s var(--ease); position: relative; }
.svc:hover { border-color: var(--txt); transform: translateY(-2px); }
.svc .ic-box { margin: 0; width: 44px; height: 44px; border-radius: 12px; flex: none; }
.svc h4 { font-size: 16.5px; margin: 2px 0 4px; letter-spacing: -.015em; }
.svc p { font-size: 14px; color: var(--mut); margin: 0; line-height: 1.5; }
.svc .svc-go { position: absolute; top: 20px; right: 18px; color: var(--mut-2); transition: transform .25s, color .25s; }
.svc:hover .svc-go { color: var(--txt); transform: translateX(3px); }
.svc .svc-go .ic { width: 16px; height: 16px; }
.svc-d { background: rgba(255,255,255,.03); border-color: var(--line-d); }
.svc-d h4 { color: #fff; } .svc-d p { color: var(--mut-d); }
.svc-d:hover { border-color: rgba(255,255,255,.35); }

/* checklist */
.checks { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.checks li { display: flex; gap: 12px; align-items: flex-start; font-size: 15.5px; }
.checks li .ic { width: 20px; height: 20px; color: var(--accent); margin-top: 2px; flex: none; }
.checks-2 { grid-template-columns: 1fr 1fr; gap: 14px 28px; }
@media (max-width: 640px) { .checks-2 { grid-template-columns: 1fr; } }

/* pricing */
.price-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; align-items: stretch; }
.price { position: relative; border-radius: var(--r-xl); padding: 30px 26px; background: var(--white); border: 1px solid var(--line); display: flex; flex-direction: column; }
.price h3 { font-size: 22px; margin-bottom: 6px; }
.price .p-tag { color: var(--mut); font-size: 14px; min-height: 42px; }
.price .p-amt { display: flex; align-items: baseline; gap: 6px; margin: 18px 0 22px; }
.price .p-amt strong { font: 600 46px/1 var(--f-display); letter-spacing: -.045em; }
.price .p-amt span { color: var(--mut); font-size: 14px; }
.price ul { list-style: none; padding: 20px 0 0; margin: 0 0 26px; border-top: 1px solid var(--line); display: grid; gap: 11px; }
.price li { display: flex; gap: 10px; font-size: 14.5px; }
.price li .ic { width: 18px; height: 18px; color: var(--grow); margin-top: 2px; }
.price .btn { margin-top: auto; }
.price.is-hi { background: var(--ink); color: #fff; border-color: var(--ink); box-shadow: var(--sh-3); transform: translateY(-10px); }
.price.is-hi .p-tag, .price.is-hi .p-amt span { color: var(--mut-d); }
.price.is-hi ul { border-color: var(--line-d); }
.price.is-hi li .ic { color: var(--brand); }
.price .p-badge { position: absolute; top: -13px; left: 26px; background: var(--brand); color: #fff; font-size: 12px; font-weight: 700; padding: 5px 12px; border-radius: 999px; letter-spacing: .04em; }
@media (max-width: 1100px) { .price-grid { grid-template-columns: repeat(2, 1fr); } .price.is-hi { transform: none; } }
@media (max-width: 600px) { .price-grid { grid-template-columns: 1fr; } }

/* comparison / models */
.models { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.model { border-radius: var(--r-lg); padding: 28px 24px; background: rgba(255,255,255,.03); border: 1px solid var(--line-d); color: var(--txt-d); position: relative; overflow: hidden; }
.model .m-code { width: 52px; height: 52px; border-radius: 16px; display: grid; place-items: center; font: 700 22px/1 var(--f-display); background: linear-gradient(145deg, #F2C96B, var(--invest)); color: #1b1407; margin-bottom: 22px; }
.model h3 { color: #fff; font-size: 21px; margin-bottom: 10px; }
.model p { color: var(--mut-d); font-size: 14.5px; }
.model dl { margin: 18px 0 0; display: grid; gap: 10px; padding-top: 18px; border-top: 1px solid var(--line-d); }
.model dt { font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--mut-d); }
.model dd { margin: 2px 0 0; color: #fff; font-size: 14.5px; font-weight: 500; }
@media (max-width: 1000px) { .models { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .models { grid-template-columns: 1fr; } }

/* steps (numbered) */
.steps { counter-reset: s; display: grid; gap: 14px; }
.step { counter-increment: s; display: grid; grid-template-columns: 56px 1fr; gap: 18px; padding: 22px; border-radius: var(--r); background: var(--white); border: 1px solid var(--line); }
.step::before { content: counter(s, decimal-leading-zero); width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; font: 600 17px/1 var(--f-display); background: var(--paper-2); color: var(--txt); }
.step h4 { margin: 4px 0 4px; font-size: 17px; }
.step p { margin: 0; color: var(--mut); font-size: 14.5px; }
.steps-d .step { background: rgba(255,255,255,.03); border-color: var(--line-d); }
.steps-d .step::before { background: rgba(255,255,255,.06); color: var(--accent); }
.steps-d .step h4 { color: #fff; } .steps-d .step p { color: var(--mut-d); }

/* why grid */
.why { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.why > div { background: var(--white); padding: 30px 24px; }
.why .ic-box { margin-bottom: 18px; }
.why h4 { font-size: 17px; margin-bottom: 8px; }
.why p { color: var(--mut); font-size: 14px; margin: 0; }
@media (max-width: 1000px) { .why { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .why { grid-template-columns: 1fr; } }

/* investor entry panel */
.inv-panel { position: relative; border-radius: var(--r-xl); overflow: hidden; background: #0E0D0B; color: #F4EFE6; border: 1px solid rgba(217,164,65,.25); isolation: isolate; }
.inv-panel::before { content: ""; position: absolute; inset: 0; background: radial-gradient(70% 90% at 100% 0%, rgba(217,164,65,.3), transparent 60%), radial-gradient(60% 60% at 0% 100%, rgba(255,131,57,.12), transparent 60%); z-index: -1; }
.inv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; padding: clamp(28px, 5vw, 64px); align-items: center; }
.inv-panel .eyebrow { color: var(--invest); }
.inv-panel .lead { color: #B8B0A2; }
.quick-wiz { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); border-radius: var(--r-lg); padding: 26px; backdrop-filter: blur(10px); }
.quick-wiz .qw-step { display: none; }
.quick-wiz .qw-step.is-on { display: block; animation: fadeUp .4s var(--ease); }
.quick-wiz .qw-label { font-size: 12.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--invest); font-weight: 600; margin-bottom: 8px; }
.quick-wiz h4 { color: #fff; font-size: 20px; margin-bottom: 18px; }
.opt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.opt { display: flex; align-items: center; gap: 10px; padding: 14px; border-radius: 14px; border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.02); cursor: pointer; font-size: 14.5px; color: #EDE7DC; transition: all .2s; text-align: left; }
.opt:hover { border-color: rgba(217,164,65,.6); }
.opt.is-sel, .opt input:checked + span { border-color: var(--invest); }
.opt.is-sel { background: rgba(217,164,65,.12); }
.opt .flag { width: 26px; }
.qw-bar { height: 4px; border-radius: 4px; background: rgba(255,255,255,.1); margin-bottom: 22px; overflow: hidden; }
.qw-bar i { display: block; height: 100%; width: 25%; background: linear-gradient(90deg, #F2C96B, var(--invest)); transition: width .4s var(--ease); }
@media (max-width: 900px) { .inv-grid { grid-template-columns: 1fr; } }
@media (max-width: 480px) { .opt-grid { grid-template-columns: 1fr; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

/* testimonials */
.voices { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.voice { border-radius: var(--r-lg); background: var(--white); border: 1px solid var(--line); overflow: hidden; display: flex; flex-direction: column; }
.voice-media { position: relative; aspect-ratio: 9/12; background: var(--ink); overflow: hidden; }
.voice-media video, .voice-media img, .voice-media iframe { width: 100%; height: 100%; object-fit: cover; border: 0; }
.voice-media .play { position: absolute; inset: 0; margin: auto; width: 68px; height: 68px; border-radius: 50%; background: rgba(255,255,255,.95); color: var(--ink); display: grid; place-items: center; border: 0; box-shadow: 0 10px 30px rgba(0,0,0,.35); transition: transform .25s; }
.voice-media .play:hover { transform: scale(1.08); }
.voice-body { padding: 22px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.voice-body blockquote { margin: 0; font-size: 15.5px; line-height: 1.6; }
.voice-who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.avatar { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; background: var(--brand-50); color: var(--brand-700); font-weight: 700; font-size: 14px; flex: none; overflow: hidden; }
.avatar img { width: 100%; height: 100%; object-fit: cover; }
.voice-who strong { display: block; font-size: 14.5px; }
.voice-who span { font-size: 13px; color: var(--mut); }
.stars { display: flex; gap: 2px; color: #F5A524; }
.stars .ic { width: 16px; height: 16px; fill: currentColor; }
@media (max-width: 1000px) { .voices { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .voices { grid-template-columns: 1fr; } }

/* commitments (used when there are no testimonials yet) */
.promise { border-radius: var(--r-lg); padding: 28px; border: 1px solid var(--line); background: var(--white); }
.promise .ic-box { --c: var(--grow); }

/* FAQ */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 24px; padding: 24px 0; font: 600 18px/1.35 var(--f-display); letter-spacing: -.015em; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .fx { width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--line-2); display: grid; place-items: center; flex: none; transition: all .3s var(--ease); }
.faq summary .fx .ic { width: 16px; height: 16px; }
.faq details[open] summary .fx { transform: rotate(45deg); background: var(--ink); color: #fff; border-color: var(--ink); }
.faq .faq-a { padding: 0 60px 24px 0; color: var(--mut); font-size: 15.5px; line-height: 1.7; }
.faq-d { border-color: var(--line-d); }
.faq-d details { border-color: var(--line-d); }
.faq-d summary { color: #fff; }
.faq-d summary .fx { border-color: var(--line-d2); }
.faq-d details[open] summary .fx { background: #fff; color: var(--ink); }
.faq-d .faq-a { color: var(--mut-d); }

/* tabs */
.tabs { display: inline-flex; gap: 4px; padding: 5px; border-radius: 999px; background: var(--paper-2); border: 1px solid var(--line); flex-wrap: wrap; }
.tabs button { height: 42px; padding: 0 18px; border-radius: 999px; border: 0; background: none; font-weight: 600; font-size: 14.5px; color: var(--mut); display: inline-flex; align-items: center; gap: 8px; transition: all .2s; }
.tabs button.is-active { background: var(--white); color: var(--txt); box-shadow: var(--sh-1); }
.tabs button .flag { width: 22px; }
.tabs-d { background: rgba(255,255,255,.05); border-color: var(--line-d); }
.tabs-d button { color: var(--mut-d); }
.tabs-d button.is-active { background: #fff; color: var(--ink); }
.tab-panel { display: none; }
.tab-panel.is-active { display: block; animation: fadeUp .45s var(--ease); }

/* CTA band */
.cta-band { position: relative; border-radius: var(--r-xl); overflow: hidden; padding: clamp(40px, 7vw, 96px) clamp(24px, 6vw, 80px); background: var(--ink); color: #fff; isolation: isolate; text-align: center; }
.cta-band::before { content: ""; position: absolute; width: 900px; height: 900px; left: 50%; top: -520px; transform: translateX(-50%); border-radius: 50%; background: radial-gradient(circle, rgba(255,131,57,.55), transparent 60%); z-index: -1; }
.cta-band::after { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px); background-size: 56px 56px; z-index: -1; mask-image: radial-gradient(ellipse at center top, #000, transparent 70%); -webkit-mask-image: radial-gradient(ellipse at center top, #000, transparent 70%); }
.cta-band .lead { color: var(--mut-d); margin: 18px auto 0; }
.cta-band .row { justify-content: center; margin-top: 34px; }

/* forms */
.form-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-xl); padding: clamp(24px, 4vw, 44px); box-shadow: var(--sh-2); }
.form-card-d { background: #141418; border-color: var(--line-d); color: var(--txt-d); box-shadow: none; }
.fgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 18px; }
.fgrid .full { grid-column: 1 / -1; }
@media (max-width: 640px) { .fgrid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label, .label { font-size: 13.5px; font-weight: 600; color: var(--txt); }
.field label .opt-l { font-weight: 400; color: var(--mut-2); }
.input, .select, .textarea {
  width: 100%; height: 52px; padding: 0 16px; border-radius: 14px; border: 1px solid var(--line-2); background: var(--white); font-size: 15.5px; transition: border-color .2s, box-shadow .2s; appearance: none; -webkit-appearance: none;
}
.textarea { height: auto; min-height: 120px; padding: 14px 16px; resize: vertical; line-height: 1.55; }
.select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%235D5D66' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 44px; }
.input:focus, .select:focus, .textarea:focus { outline: 0; border-color: var(--brand); box-shadow: 0 0 0 4px rgba(255,131,57,.14); }
.form-card-d .field label { color: #EDEDF0; }
.form-card-d .input, .form-card-d .select, .form-card-d .textarea { background: rgba(255,255,255,.04); border-color: var(--line-d2); color: #fff; }
.form-card-d .select option { color: #111; }
.field .err { color: var(--bad); font-size: 13px; display: none; }
.field.has-err .input, .field.has-err .select, .field.has-err .textarea { border-color: var(--bad); }
.field.has-err .err { display: block; }
.hint { font-size: 12.5px; color: var(--mut-2); }
.check-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 8px; }
.check { display: flex; align-items: center; gap: 10px; padding: 12px 14px; border-radius: 12px; border: 1px solid var(--line-2); cursor: pointer; font-size: 14.5px; transition: all .2s; background: var(--white); user-select: none; }
.check:hover { border-color: var(--txt); }
.check input { width: 18px; height: 18px; accent-color: var(--brand); flex: none; margin: 0; }
.check:has(input:checked) { border-color: var(--brand); background: var(--brand-50); }
.form-card-d .check { background: rgba(255,255,255,.03); border-color: var(--line-d2); }
.form-card-d .check:has(input:checked) { background: rgba(255,131,57,.12); }
.radio-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 10px; }
.radio-card { position: relative; cursor: pointer; }
.radio-card input { position: absolute; opacity: 0; pointer-events: none; }
.radio-card span { display: flex; flex-direction: column; gap: 4px; padding: 16px; border-radius: 14px; border: 1px solid var(--line-2); background: var(--white); transition: all .2s; height: 100%; font-size: 14.5px; font-weight: 600; }
.radio-card span small { font-weight: 400; color: var(--mut); font-size: 13px; }
.radio-card span .flag { width: 30px; margin-bottom: 6px; }
.radio-card input:checked + span { border-color: var(--brand); background: var(--brand-50); box-shadow: 0 0 0 3px rgba(255,131,57,.14); }
.radio-card input:focus-visible + span { outline: 2px solid var(--brand); outline-offset: 2px; }
.form-card-d .radio-card span { background: rgba(255,255,255,.03); border-color: var(--line-d2); color: #fff; }
.form-card-d .radio-card span small { color: var(--mut-d); }
.form-card-d .radio-card input:checked + span { background: rgba(255,131,57,.12); }
.hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; }
.form-alert { padding: 14px 16px; border-radius: 12px; font-size: 14.5px; margin-bottom: 18px; display: none; }
.form-alert.is-on { display: block; }
.form-alert.bad { background: #FDECEC; color: #9B1C1C; }
.form-alert.ok { background: #E7F7EE; color: #0F6B39; }
.consent { font-size: 12.5px; color: var(--mut-2); margin-top: 14px; }
.consent a { text-decoration: underline; }

/* wizard */
.wizard .w-step { display: none; }
.wizard .w-step.is-on { display: block; animation: fadeUp .4s var(--ease); }
.w-progress { display: flex; gap: 6px; margin-bottom: 28px; }
.w-progress i { flex: 1; height: 5px; border-radius: 5px; background: var(--line); transition: background .3s; }
.w-progress i.is-done { background: var(--brand); }
.w-head small { color: var(--brand-600); font-weight: 600; font-size: 12.5px; letter-spacing: .12em; text-transform: uppercase; }
.w-head h3 { font-size: 26px; margin: 8px 0 24px; }
.w-nav { display: flex; justify-content: space-between; gap: 12px; margin-top: 28px; }

/* booking */
.book-days { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 8px; scrollbar-width: thin; }
.book-day { flex: none; width: 78px; padding: 12px 6px; border-radius: 14px; border: 1px solid var(--line-2); background: var(--white); text-align: center; transition: all .2s; }
.book-day small { display: block; font-size: 12px; color: var(--mut); text-transform: uppercase; letter-spacing: .06em; }
.book-day strong { display: block; font: 600 22px/1.2 var(--f-display); }
.book-day.is-sel { background: var(--ink); color: #fff; border-color: var(--ink); }
.book-day.is-sel small { color: var(--mut-d); }
.book-times { display: grid; grid-template-columns: repeat(auto-fill, minmax(96px, 1fr)); gap: 8px; margin-top: 16px; }
.book-time { height: 44px; border-radius: 12px; border: 1px solid var(--line-2); background: var(--white); font-weight: 600; font-size: 14px; transition: all .2s; }
.book-time:hover { border-color: var(--brand); }
.book-time.is-sel { background: var(--brand); color: #fff; border-color: var(--brand); }

/* prose */
.prose { font-size: 17.5px; line-height: 1.78; color: #26262b; }
.prose h2 { font-size: clamp(26px, 2.6vw, 34px); margin: 2em 0 .6em; }
.prose h3 { font-size: 23px; margin: 1.7em 0 .5em; }
.prose h4 { font-size: 19px; margin: 1.5em 0 .5em; }
.prose p, .prose ul, .prose ol { margin: 0 0 1.25em; }
.prose ul, .prose ol { padding-left: 1.3em; }
.prose li { margin: .35em 0; }
.prose li::marker { color: var(--brand); }
.prose a { color: var(--brand-600); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
.prose blockquote { margin: 1.8em 0; padding: 20px 24px; border-left: 3px solid var(--brand); background: var(--brand-50); border-radius: 0 14px 14px 0; font-size: 16px; color: #3a3a40; }
.prose strong { color: var(--txt); }
.prose code { background: var(--paper-2); padding: 2px 6px; border-radius: 6px; font-size: .9em; }
.prose hr { border: 0; border-top: 1px solid var(--line); margin: 2.4em 0; }
.prose-d { color: #D5D5DA; }
.prose-d strong { color: #fff; }
.toc { position: sticky; top: calc(var(--header-h) + 24px); }
.toc a { display: block; padding: 7px 0 7px 14px; border-left: 2px solid var(--line); color: var(--mut); font-size: 14px; transition: all .2s; }
.toc a:hover, .toc a.is-active { color: var(--txt); border-color: var(--brand); }

/* article cards */
.post-card { display: flex; flex-direction: column; border-radius: var(--r-lg); overflow: hidden; background: var(--white); border: 1px solid var(--line); transition: transform .35s var(--ease), box-shadow .35s; height: 100%; }
.post-card:hover { transform: translateY(-4px); box-shadow: var(--sh-2); }
.post-card .pc-cover { aspect-ratio: 16/9; background: var(--ink); overflow: hidden; }
.post-card .pc-cover svg, .post-card .pc-cover img { width: 100%; height: 100%; object-fit: cover; }
.post-card .pc-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.post-card h3 { font-size: 19px; line-height: 1.3; margin: 10px 0 10px; }
.post-card p { color: var(--mut); font-size: 14.5px; }
.post-card .pc-meta { margin-top: auto; font-size: 13px; color: var(--mut-2); }

/* course detail */
.course-hero-grid { display: grid; grid-template-columns: 1fr 400px; gap: 56px; align-items: start; }
.buy-card { position: sticky; top: calc(var(--header-h) + 20px); background: var(--white); color: var(--txt); border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-3); border: 1px solid var(--line); }
.buy-card .course-cover { aspect-ratio: 16/9; }
.buy-body { padding: 26px; }
.buy-price { display: flex; align-items: baseline; gap: 10px; margin-bottom: 18px; }
.buy-price strong { font: 600 42px/1 var(--f-display); letter-spacing: -.04em; }
.buy-price s { color: var(--mut-2); font-size: 18px; }
.buy-list { list-style: none; padding: 18px 0 0; margin: 18px 0 0; border-top: 1px solid var(--line); display: grid; gap: 11px; }
.buy-list li { display: flex; gap: 10px; font-size: 14.5px; align-items: center; }
.buy-list .ic { width: 18px; height: 18px; color: var(--mut); }
.course-layout { display: grid; grid-template-columns: 1fr 400px; gap: 56px; }
.curriculum .mod { border: 1px solid var(--line); border-radius: var(--r); background: var(--white); margin-bottom: 10px; overflow: hidden; }
.curriculum summary { list-style: none; cursor: pointer; display: flex; align-items: center; gap: 14px; padding: 18px 20px; font-weight: 600; }
.curriculum summary::-webkit-details-marker { display: none; }
.curriculum summary .m-n { width: 34px; height: 34px; border-radius: 10px; background: var(--paper-2); display: grid; place-items: center; font-size: 13px; font-weight: 700; flex: none; }
.curriculum summary .m-c { margin-left: auto; font-weight: 400; font-size: 13.5px; color: var(--mut); white-space: nowrap; }
.curriculum summary .ic { width: 18px; height: 18px; transition: transform .25s; color: var(--mut); }
.curriculum details[open] summary .ic { transform: rotate(180deg); }
.curriculum ul { list-style: none; margin: 0; padding: 0 20px 14px 68px; }
.curriculum li { display: flex; align-items: center; gap: 10px; padding: 9px 0; font-size: 14.5px; color: #3a3a40; border-top: 1px dashed var(--line); }
.curriculum li .ic { width: 16px; height: 16px; color: var(--mut-2); }
.curriculum li .tag { margin-left: auto; }
.buy-wrap { margin-top: -420px; position: relative; z-index: 5; }
.buy-wrap .buy-card { position: sticky; top: calc(var(--header-h) + 20px); }
@media (max-width: 1000px) {
  .course-hero-grid, .course-layout { grid-template-columns: 1fr; }
  .course-hero-grid > .hide-sm { display: none; }
  .buy-wrap { margin-top: 0; order: -1; }
  .buy-wrap .buy-card { position: static; }
}

/* instructor */
.instructor { display: flex; gap: 20px; align-items: flex-start; padding: 24px; border-radius: var(--r-lg); background: var(--white); border: 1px solid var(--line); }
.instructor .avatar { width: 72px; height: 72px; font-size: 22px; }

/* certificate preview */
.cert-mini { position: relative; aspect-ratio: 1.414; border-radius: 14px; background: #FFFDF8; color: #1b1b1f; box-shadow: var(--sh-3); padding: 7%; overflow: hidden; transform: rotate(-2deg); border: 1px solid #efe6d4; }
.cert-mini::before { content: ""; position: absolute; inset: 3.5%; border: 1.5px solid #D9A441; border-radius: 6px; }
.cert-mini::after { content: ""; position: absolute; inset: 5%; border: .5px solid rgba(217,164,65,.5); border-radius: 4px; }
.cert-mini .cm-top { display: flex; justify-content: space-between; align-items: center; position: relative; z-index: 1; }
.cert-mini .cm-top img { height: 22px; }
.cert-mini .cm-top small { font-size: 9px; letter-spacing: .12em; color: #8a7a5a; text-transform: uppercase; }
.cert-mini .cm-title { font: 600 clamp(14px, 2vw, 22px)/1.1 var(--f-display); text-align: center; margin: 9% 0 3%; position: relative; z-index: 1; letter-spacing: .02em; }
.cert-mini .cm-sub { text-align: center; font-size: clamp(8px, 1vw, 11px); color: #6b6456; position: relative; z-index: 1; }
.cert-mini .cm-name { text-align: center; font: italic 600 clamp(18px, 2.8vw, 32px)/1.1 Georgia, serif; margin: 4% 0; position: relative; z-index: 1; color: #111; }
.cert-mini .cm-foot { display: flex; justify-content: space-between; align-items: flex-end; position: absolute; left: 9%; right: 9%; bottom: 10%; font-size: clamp(7px, .8vw, 9.5px); color: #6b6456; z-index: 1; }
.cert-mini .seal { width: 16%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, #F2C96B, #C28A26); display: grid; place-items: center; color: #3a2a08; box-shadow: 0 4px 10px rgba(194,138,38,.4); }
.cert-mini .seal .ic { width: 45%; height: 45%; }

/* credentials */
.cred { display: flex; gap: 18px; align-items: center; padding: 22px; border-radius: var(--r); border: 1px solid var(--line); background: var(--white); }
.cred .ic-box { margin: 0; flex: none; }
.cred strong { display: block; font-size: 15.5px; }
.cred span { color: var(--mut); font-size: 14px; }
.cred-d { background: rgba(255,255,255,.03); border-color: var(--line-d); }
.cred-d strong { color: #fff; } .cred-d span { color: var(--mut-d); }

/* platforms strip */
.platforms { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 40px; opacity: .9; }
.platforms span { font: 700 20px/1 var(--f-display); letter-spacing: -.03em; color: #7a7a82; transition: color .2s; }
.platforms span:hover { color: var(--txt); }

/* contact */
.branch { border-radius: var(--r-lg); padding: 28px; background: var(--white); border: 1px solid var(--line); display: flex; flex-direction: column; gap: 14px; }
.branch-head { display: flex; align-items: center; gap: 14px; }
.branch-head .flag { width: 44px; }
.branch h3 { font-size: 21px; margin: 0; }
.branch .b-line { display: flex; gap: 12px; align-items: center; font-size: 15px; color: #33333a; }
.branch .b-line .ic { width: 18px; height: 18px; color: var(--mut); }

/* footer */
.footer { background: var(--ink); color: var(--mut-d); padding: 96px 0 32px; position: relative; overflow: hidden; isolation: isolate; }
.footer::before { content: ""; position: absolute; width: 800px; height: 800px; right: -300px; bottom: -500px; border-radius: 50%; background: radial-gradient(circle, rgba(255,131,57,.18), transparent 65%); z-index: -1; }
.footer-top { display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 40px; }
.footer .logo img { height: 40px; }
.footer p { font-size: 14.5px; line-height: 1.65; max-width: 36ch; margin-top: 22px; }
.footer h5 { color: #fff; font: 600 14px/1 var(--f-text); letter-spacing: .02em; margin: 6px 0 20px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.footer ul a { font-size: 14.5px; transition: color .2s; }
.footer ul a:hover { color: #fff; }
.footer-news { margin-top: 64px; padding: 32px; border-radius: var(--r-lg); background: rgba(255,255,255,.03); border: 1px solid var(--line-d); display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.footer-news h4 { color: #fff; font-size: 22px; margin: 0 0 4px; }
.footer-news form { display: flex; gap: 8px; flex: 1; max-width: 460px; min-width: 260px; }
.footer-news .input { background: rgba(255,255,255,.05); border-color: var(--line-d2); color: #fff; height: 50px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-top: 56px; padding-top: 26px; border-top: 1px solid var(--line-d); font-size: 13.5px; }
.footer-bottom a:hover { color: #fff; }
.footer .footer-legal { margin-top: 18px; font-size: 12.5px; color: #6f6f78; line-height: 1.6; max-width: 100ch; }
.socials { display: flex; gap: 8px; margin-top: 24px; }
.socials a { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; border: 1px solid var(--line-d2); font-size: 12px; font-weight: 700; color: #fff; transition: all .2s; }
.socials a:hover { background: var(--brand); border-color: var(--brand); }
.footer-offices { display: grid; gap: 14px; margin-top: 26px; }
.footer-offices div { display: flex; gap: 10px; align-items: center; font-size: 14px; }
.footer-offices .flag { width: 24px; }
.footer-offices a:hover { color: #fff; }
.footer-word { font: 700 clamp(80px, 19vw, 280px)/.8 var(--f-display); letter-spacing: -.06em; color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.07); text-align: center; margin-top: 60px; user-select: none; white-space: nowrap; }
@media (max-width: 1000px) { .footer-top { grid-template-columns: 1fr 1fr; } .footer-top > div:first-child { grid-column: 1 / -1; } }
@media (max-width: 520px) { .footer-top { grid-template-columns: 1fr; } }

/* WhatsApp float */
.wa-float { position: fixed; right: 20px; bottom: 20px; z-index: 70; }
.wa-btn { width: 60px; height: 60px; border-radius: 50%; background: #25D366; color: #fff; display: grid; place-items: center; border: 0; box-shadow: 0 14px 34px -8px rgba(37,211,102,.7); transition: transform .25s var(--ease); position: relative; }
.wa-btn:hover { transform: scale(1.06); }
.wa-btn .ic { width: 30px; height: 30px; }
.wa-btn::after { content: ""; position: absolute; inset: 0; border-radius: 50%; box-shadow: 0 0 0 0 rgba(37,211,102,.6); animation: ping 2.6s infinite; }
@keyframes ping { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,.55); } 80%,100% { box-shadow: 0 0 0 18px rgba(37,211,102,0); } }
.wa-panel { position: absolute; right: 0; bottom: 76px; width: 320px; background: var(--white); border-radius: 20px; box-shadow: var(--sh-3); border: 1px solid var(--line); overflow: hidden; transform-origin: bottom right; transform: scale(.9); opacity: 0; visibility: hidden; transition: all .25s var(--ease); }
.wa-float.is-open .wa-panel { transform: none; opacity: 1; visibility: visible; }
.wa-head { background: #075E54; color: #fff; padding: 18px 20px; }
.wa-head strong { display: block; font-size: 16px; }
.wa-head span { font-size: 13px; opacity: .85; }
.wa-list { padding: 10px; display: grid; gap: 6px; }
.wa-list a { display: flex; align-items: center; gap: 12px; padding: 12px; border-radius: 14px; transition: background .2s; }
.wa-list a:hover { background: var(--paper-2); }
.wa-list .flag { width: 34px; }
.wa-list strong { display: block; font-size: 14.5px; }
.wa-list small { color: var(--mut); font-size: 12.5px; }
.wa-list .ic { margin-left: auto; color: #25D366; width: 22px; height: 22px; }
.to-top { position: fixed; right: 30px; bottom: 96px; z-index: 69; width: 42px; height: 42px; border-radius: 50%; background: var(--ink); color: #fff; border: 1px solid var(--line-d2); display: grid; place-items: center; opacity: 0; visibility: hidden; transition: all .3s; }
.to-top.is-on { opacity: 1; visibility: visible; }
.to-top .ic { transform: rotate(-90deg); width: 18px; height: 18px; }

/* cookie */
.cookie { position: fixed; left: 20px; bottom: 20px; z-index: 75; max-width: 420px; background: var(--ink); color: var(--txt-d); border: 1px solid var(--line-d2); border-radius: 18px; padding: 20px; box-shadow: var(--sh-3); font-size: 14px; display: none; }
.cookie.is-on { display: block; animation: fadeUp .4s var(--ease); }
.cookie p { color: var(--mut-d); margin-bottom: 14px; }
.cookie a { text-decoration: underline; }

/* search overlay */
.search-ov { position: fixed; inset: 0; z-index: 90; background: rgba(8,8,10,.8); backdrop-filter: blur(8px); display: none; padding: 12vh var(--gutter) 0; }
.search-ov.is-on { display: block; animation: fadeUp .25s var(--ease); }
.search-box { max-width: 720px; margin: 0 auto; }
.search-box form { display: flex; align-items: center; gap: 12px; background: #fff; border-radius: 20px; padding: 0 20px; height: 70px; box-shadow: var(--sh-3); }
.search-box input { flex: 1; border: 0; outline: 0; font-size: 20px; background: none; }
.search-box .ic { width: 22px; height: 22px; color: var(--mut); }
.search-sugg { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }

/* reveal */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .08s; } .reveal-d2 { transition-delay: .16s; } .reveal-d3 { transition-delay: .24s; } .reveal-d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* misc */
.divider { height: 1px; background: var(--line); margin: 40px 0; }
.kbd { display: inline-block; padding: 2px 7px; border-radius: 6px; border: 1px solid var(--line-2); font-size: 12px; background: var(--white); }
.notice { display: flex; gap: 14px; padding: 18px 20px; border-radius: var(--r); background: #FFF8EC; border: 1px solid #F5DDB0; color: #6B4A10; font-size: 14.5px; }
.notice .ic { width: 20px; height: 20px; flex: none; margin-top: 2px; }
.notice-d { background: rgba(217,164,65,.08); border-color: rgba(217,164,65,.25); color: #D8CDB8; }
.empty { text-align: center; padding: 64px 20px; color: var(--mut); border: 1px dashed var(--line-2); border-radius: var(--r-lg); }
.empty .ic { width: 40px; height: 40px; margin: 0 auto 14px; color: var(--mut-2); }
.big-num { font: 600 clamp(60px, 8vw, 120px)/.9 var(--f-display); letter-spacing: -.06em; }
.thanks-ic { width: 88px; height: 88px; border-radius: 50%; display: grid; place-items: center; background: rgba(43,213,118,.12); color: #2BD576; margin: 0 auto 30px; box-shadow: 0 0 0 12px rgba(43,213,118,.06); }
.thanks-ic .ic { width: 42px; height: 42px; }
.ref-box { display: inline-flex; gap: 10px; align-items: center; padding: 12px 18px; border-radius: 14px; background: rgba(255,255,255,.06); border: 1px dashed var(--line-d2); font: 600 18px/1 var(--f-display); letter-spacing: .04em; color: #fff; }
.feature-media { position: relative; border-radius: var(--r-xl); overflow: hidden; background: var(--ink); aspect-ratio: 4/3.2; border: 1px solid var(--line-d); }
.feature-media > svg { width: 100%; height: 100%; }
.vis-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.vis-tile { border-radius: 18px; padding: 18px; background: rgba(255,255,255,.04); border: 1px solid var(--line-d); color: #fff; }
.vis-tile small { color: var(--mut-d); font-size: 12px; display: block; }
.vis-tile strong { font: 600 26px/1.2 var(--f-display); letter-spacing: -.03em; display: block; margin-top: 6px; }
.bar-chart { display: flex; align-items: flex-end; gap: 8px; height: 150px; }
.bar-chart i { flex: 1; border-radius: 8px 8px 3px 3px; background: linear-gradient(180deg, var(--grow), rgba(25,179,107,.25)); transform-origin: bottom; transform: scaleY(0); transition: transform 1.2s var(--ease); }
.is-in .bar-chart i { transform: scaleY(1); }
.bar-chart i:nth-child(2) { transition-delay: .1s; } .bar-chart i:nth-child(3) { transition-delay: .2s; } .bar-chart i:nth-child(4) { transition-delay: .3s; } .bar-chart i:nth-child(5) { transition-delay: .4s; } .bar-chart i:nth-child(6) { transition-delay: .5s; } .bar-chart i:nth-child(7) { transition-delay: .6s; } .bar-chart i:nth-child(8) { transition-delay: .7s; }
.growth-line path.gl { stroke-dasharray: 1400; stroke-dashoffset: 1400; transition: stroke-dashoffset 2.4s var(--ease); }
.is-in .growth-line path.gl { stroke-dashoffset: 0; }

/* pillar theming */
body[data-pillar="learn"] { --accent: var(--learn); }
body[data-pillar="launch"] { --accent: var(--launch); }
body[data-pillar="grow"] { --accent: var(--grow); }
body[data-pillar="invest"] { --accent: var(--invest); }
.pillar-bar { position: sticky; top: var(--header-h); z-index: 40; background: rgba(250,250,247,.9); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); }
.pillar-bar .container { display: flex; gap: 6px; overflow-x: auto; scrollbar-width: none; height: 56px; align-items: center; }
.pillar-bar .container::-webkit-scrollbar { display: none; }
.pillar-bar a { flex: none; font-size: 14px; font-weight: 500; color: var(--mut); padding: 7px 14px; border-radius: 999px; transition: all .2s; white-space: nowrap; }
.pillar-bar a:hover { color: var(--txt); background: var(--paper-2); }
.pillar-bar a.is-active { color: #fff; background: var(--ink); }
.pillar-bar .pb-label { font-weight: 700; color: var(--accent); padding-left: 0; margin-right: 6px; display: inline-flex; gap: 8px; align-items: center; }
.pillar-bar .pb-label .ic { width: 17px; height: 17px; }

/* print */
@media print { .header, .footer, .wa-float, .to-top, .cookie, .pillar-bar { display: none !important; } }

/* ------------------------------------------------------------ certificates */
.cert-wrap { position: relative; width: 100%; overflow: hidden; }
.cert-scale { width: 1123px; transform-origin: top left; }
.cert-doc { position: relative; width: 1123px; height: 794px; background: #FFFDF7; color: #1b1b1f; font-family: "Inter", sans-serif; overflow: hidden; box-shadow: 0 30px 80px -20px rgba(0,0,0,.45); }
.cert-guilloche { position: absolute; inset: 0; width: 100%; height: 100%; }
.cert-in { position: absolute; inset: 64px 84px 58px; display: flex; flex-direction: column; align-items: center; text-align: center; }
.cert-top { width: 100%; display: flex; justify-content: space-between; align-items: flex-start; }
.cert-logo { height: 58px; width: auto; }
.cert-idbox { text-align: right; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: #7b6f58; }
.cert-idbox strong { display: block; font: 700 15px/1.3 "Sora", sans-serif; letter-spacing: .06em; color: #1b1b1f; margin-top: 3px; }
.cert-org { margin-top: 4px; font-size: 11.5px; letter-spacing: .32em; color: #7b6f58; font-weight: 600; }
.cert-title { margin: 14px 0 0; font: 700 50px/1 "Cormorant Garamond", Georgia, serif; letter-spacing: .04em; color: #16161a; text-transform: uppercase; }
.cert-rule { display: flex; align-items: center; gap: 14px; margin: 14px 0 10px; color: var(--ca); }
.cert-rule i { width: 150px; height: 1.5px; background: linear-gradient(90deg, transparent, var(--ca)); }
.cert-rule i:last-child { background: linear-gradient(-90deg, transparent, var(--ca)); }
.cert-rule .ic { width: 16px; height: 16px; fill: currentColor; }
.cert-lead { margin: 0; font: italic 600 19px/1.4 "Cormorant Garamond", Georgia, serif; color: #5a5347; }
.cert-name { margin: 8px 0 4px; font: 400 64px/1.1 "Great Vibes", "Cormorant Garamond", cursive; color: #0f0f12; padding: 0 30px 6px; border-bottom: 1.5px solid var(--ca); min-width: 480px; }
.cert-body { margin: 12px 0 0; font: italic 600 18px/1.4 "Cormorant Garamond", Georgia, serif; color: #5a5347; }
.cert-subject { margin-top: 6px; font: 700 26px/1.25 "Sora", sans-serif; letter-spacing: -.01em; color: #16161a; max-width: 820px; }
.cert-meta { display: flex; gap: 22px; justify-content: center; margin: 12px 0 0; font-size: 12.5px; color: #6b6456; letter-spacing: .02em; flex-wrap: wrap; }
.cert-meta span + span::before { content: "◆"; color: var(--ca); margin-right: 22px; font-size: 8px; vertical-align: middle; }
.cert-note { margin: 8px 0 0; font-size: 12.5px; color: #6b6456; max-width: 700px; }
.cert-foot { margin-top: auto; width: 100%; display: grid; grid-template-columns: 1fr auto 1fr; align-items: end; gap: 20px; }
.cert-sign { display: flex; flex-direction: column; align-items: center; }
.sig-script { font: 400 34px/1 "Great Vibes", cursive; color: #1d2a6b; margin-bottom: 2px; white-space: nowrap; }
.sig-line { width: 230px; height: 1.2px; background: #3a3a40; margin-bottom: 8px; }
.cert-sign strong { font: 700 13.5px/1.2 "Sora", sans-serif; }
.cert-sign span { font-size: 11.5px; color: #6b6456; margin-top: 3px; }
.cert-seals { position: relative; display: flex; align-items: center; justify-content: center; width: 250px; height: 130px; }
.cert-seal { width: 118px; height: 118px; filter: drop-shadow(0 6px 10px rgba(122,87,22,.35)); position: relative; z-index: 1; }
.cert-stamp { width: 124px; height: 124px; object-fit: contain; transform: rotate(-12deg); opacity: .88; mix-blend-mode: multiply; margin-left: -34px; position: relative; z-index: 2; }
.cert-stamp-x { transform: rotate(9deg); margin-left: -40px; }
.cert-legal { width: 100%; display: flex; align-items: center; gap: 16px; margin-top: 16px; padding-top: 12px; border-top: 1px solid rgba(0,0,0,.08); text-align: left; }
.cert-legal p { margin: 0; font-size: 10.5px; line-height: 1.55; color: #6b6456; }
.cert-legal strong { color: #1b1b1f; }
.cert-qr { width: 58px; height: 58px; flex: none; background: repeating-linear-gradient(45deg, #eee 0 4px, #fff 4px 8px); border: 1px solid #e5e0d4; }
.cert-qr img, .cert-qr canvas { width: 58px !important; height: 58px !important; }
.cert-qr.has-qr { background: #fff; border: 0; }
.cert-sample { position: absolute; inset: 0; display: grid; place-items: center; font: 800 160px/1 "Sora", sans-serif; color: rgba(255,131,57,.10); transform: rotate(-18deg); pointer-events: none; letter-spacing: .1em; }
.cert-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.cert-card { border-radius: 18px; overflow: hidden; background: #fff; border: 1px solid var(--line); box-shadow: var(--sh-2); transition: transform .35s var(--ease); }
.cert-card:hover { transform: translateY(-6px) rotate(-.4deg); }
.cert-card .cert-doc { box-shadow: none; }
.cert-card figcaption { padding: 16px 18px; display: flex; justify-content: space-between; align-items: center; gap: 10px; border-top: 1px solid var(--line); }
.cert-card figcaption strong { font-size: 15px; }
@media (max-width: 900px) { .cert-gallery { grid-template-columns: 1fr; } }

/* ---------------------------------------------------------------- offices */
.office-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 18px; }
.office { border-radius: var(--r-lg); overflow: hidden; background: var(--white); border: 1px solid var(--line); transition: transform .35s var(--ease), box-shadow .35s; }
.office:hover { transform: translateY(-5px); box-shadow: var(--sh-2); }
.office-media { position: relative; aspect-ratio: 16/10; background: var(--ink); overflow: hidden; }
.office-media img, .office-media svg { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.office:hover .office-media img, .office:hover .office-media svg { transform: scale(1.05); }
.office.is-soon .office-media img { filter: saturate(.85); }
.office-badge { position: absolute; top: 14px; left: 14px; padding: 6px 12px; border-radius: 999px; font-size: 12px; font-weight: 700; letter-spacing: .04em; backdrop-filter: blur(8px); }
.office-badge.soon { background: rgba(11,11,12,.72); color: #FFB27A; border: 1px solid rgba(255,131,57,.5); }
.office-badge.open { background: rgba(22,163,74,.9); color: #fff; }
.office-concept { position: absolute; right: 10px; bottom: 10px; padding: 3px 8px; border-radius: 6px; font-size: 10.5px; background: rgba(0,0,0,.55); color: rgba(255,255,255,.85); }
.office-body { padding: 18px 20px 20px; }
.office-body h3 { font-size: 18px; margin: 0 0 2px; }
.office-body .ic { width: 14px; height: 14px; vertical-align: -2px; color: var(--mut); }
.cmp { width: 100%; border-collapse: collapse; min-width: 720px; font-size: 14.5px; }
.cmp th, .cmp td { padding: 16px 20px; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; }
.cmp thead th { background: var(--paper); font-weight: 600; white-space: nowrap; }
.cmp thead th .flag { display: inline-block; vertical-align: -3px; margin-right: 6px; width: 22px; }
.cmp tbody th { font-weight: 600; color: var(--mut); width: 22%; }
.cmp tr:last-child th, .cmp tr:last-child td { border-bottom: 0; }
.grad-gold { background: linear-gradient(100deg, #F6D98B, #D9A441 55%, #B9832A); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ============================================================ RICH LAYER */
/* film grain on dark surfaces */
.section-dark, .hero, .page-hero, .footer, .cta-band { position: relative; }
.section-dark::after, .hero::after, .page-hero::after, .footer::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0; opacity: .05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.section-dark > .container, .hero > .container, .page-hero > .container, .footer > .container { position: relative; z-index: 1; }

/* button shine */
.btn-primary::after, .btn-light::after { content: ""; position: absolute; inset: 0; border-radius: inherit; background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,.45) 50%, transparent 70%); transform: translateX(-120%); transition: transform .9s var(--ease); pointer-events: none; }
.btn-primary:hover::after, .btn-light:hover::after { transform: translateX(120%); }
.btn { overflow: hidden; }

/* cursor spotlight on premium cards */
.spot { --mx: 50%; --my: 50%; }
.spot::before { content: ""; position: absolute; inset: 0; border-radius: inherit; background: radial-gradient(420px circle at var(--mx) var(--my), rgba(255,255,255,.08), transparent 45%); opacity: 0; transition: opacity .3s; pointer-events: none; z-index: 0; }
.spot:hover::before { opacity: 1; }
.card.spot::before { background: radial-gradient(380px circle at var(--mx) var(--my), rgba(255,131,57,.08), transparent 45%); }

/* animated gradient border */
@property --ang { syntax: '<angle>'; initial-value: 0deg; inherits: false; }
.glow-border { position: relative; isolation: isolate; }
.glow-border::after { content: ""; position: absolute; inset: -1px; border-radius: inherit; padding: 1px; background: conic-gradient(from var(--ang), transparent 0 60%, #FFB27A 75%, var(--brand) 85%, transparent 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; animation: angle 5s linear infinite; pointer-events: none; z-index: 2; }
@keyframes angle { to { --ang: 360deg; } }
.price.is-hi { overflow: visible; }

/* header — logo and CTA kept distinct */
.header .logo img { filter: drop-shadow(0 0 14px rgba(255,131,57,.28)); }
.header .btn-cta { --b-bg: #fff; --b-fg: var(--ink); box-shadow: 0 8px 24px -10px rgba(255,255,255,.35); }
.header .btn-cta:hover { --b-bg: #F2F1EC; }
.header .btn-cta .dot-live { width: 8px; height: 8px; border-radius: 50%; background: var(--brand); box-shadow: 0 0 0 4px rgba(255,131,57,.2); }
.header-slogan { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: #8e8e98; border-left: 1px solid var(--line-d2); padding-left: 16px; margin-left: -8px; white-space: nowrap; }
@media (max-width: 1320px) { .header-slogan { display: none; } }

/* batch strip */
.batch-strip { display: inline-flex; align-items: center; gap: 12px; margin-top: 26px; padding: 10px 16px 10px 12px; border-radius: 999px; background: rgba(255,131,57,.1); border: 1px solid rgba(255,131,57,.35); color: #FFD9C2; font-size: 14px; transition: background .2s; max-width: 100%; }
.batch-strip:hover { background: rgba(255,131,57,.18); }
.batch-strip strong { color: #fff; font-weight: 600; }
.batch-strip .ic { width: 16px; height: 16px; flex: none; }
.bs-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--brand); box-shadow: 0 0 0 0 rgba(255,131,57,.7); animation: ping 2s infinite; flex: none; }

/* journey finder */
.finder { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.finder-side .lead { margin-top: 16px; }
.finder-trust { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 10px; }
.finder-trust li { display: flex; gap: 10px; align-items: center; font-weight: 500; }
.finder-trust .ic { color: var(--grow); }
.finder-card { position: relative; background: var(--white); border: 1px solid var(--line); border-radius: var(--r-xl); padding: clamp(24px, 4vw, 40px); box-shadow: var(--sh-3); min-height: 440px; overflow: hidden; }
.finder-card::before { content: ""; position: absolute; width: 380px; height: 380px; right: -160px; top: -160px; border-radius: 50%; background: radial-gradient(circle, rgba(255,131,57,.16), transparent 65%); }
.finder-step { display: none; position: relative; }
.finder-step.is-on { display: block; animation: fadeUp .45s var(--ease); }
.finder-k { color: var(--brand-600); font-weight: 700; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; }
.finder-step h3 { font-size: clamp(22px, 2.4vw, 28px); margin: 10px 0 22px; }
.finder-opts { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.finder-opt { display: flex; gap: 12px; align-items: center; text-align: left; padding: 16px; border-radius: 16px; border: 1px solid var(--line-2); background: var(--white); transition: all .2s var(--ease); }
.finder-opt:hover { border-color: var(--brand); transform: translateY(-2px); box-shadow: var(--sh-2); }
.finder-opt .ic-box { margin: 0; flex: none; }
.finder-opt strong { display: block; font-size: 15px; }
.finder-opt small { color: var(--mut); font-size: 13px; }
.finder-path { list-style: none; counter-reset: fp; padding: 0; margin: 18px 0 0; display: grid; gap: 10px; }
.finder-path li { counter-increment: fp; display: flex; gap: 12px; align-items: center; padding: 12px 14px; border-radius: 14px; background: var(--paper); border: 1px solid var(--line); font-weight: 500; }
.finder-path li::before { content: counter(fp); width: 28px; height: 28px; border-radius: 50%; background: var(--ink); color: #fff; display: grid; place-items: center; font-size: 13px; font-weight: 700; flex: none; }
@media (max-width: 900px) { .finder { grid-template-columns: 1fr; } }
@media (max-width: 520px) { .finder-opts { grid-template-columns: 1fr; } }

/* live mock */
.live-mock { position: relative; border-radius: 26px; background: #0f0f13; border: 1px solid var(--line-d2); padding: 14px; box-shadow: 0 50px 120px -40px rgba(255,131,57,.45), 0 30px 60px -30px rgba(0,0,0,.8); transform: perspective(1400px) rotateY(-6deg) rotateX(3deg); transition: transform .6s var(--ease); }
.live-mock:hover { transform: none; }
.lm-top { display: flex; align-items: center; gap: 10px; padding: 4px 6px 12px; color: #fff; font-size: 13px; font-weight: 600; }
.lm-top img { width: 22px; }
.lm-top em { margin-left: auto; font-style: normal; font-size: 11px; color: #fca5a5; display: inline-flex; align-items: center; gap: 6px; background: rgba(239,68,68,.14); padding: 4px 9px; border-radius: 999px; }
.lm-top em i { width: 7px; height: 7px; border-radius: 50%; background: #ef4444; animation: blinkA 1.2s infinite; }
.lm-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.lm-tile { position: relative; aspect-ratio: 16/11; border-radius: 14px; background: radial-gradient(circle at 50% 35%, color-mix(in srgb, var(--c) 30%, #1c1c22), #141418); display: grid; place-items: center; border: 2px solid transparent; }
.lm-tile.spk { border-color: var(--brand); box-shadow: 0 0 0 4px rgba(255,131,57,.15); }
.lm-av { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; background: color-mix(in srgb, var(--c) 25%, transparent); color: var(--c); font: 700 15px/1 var(--f-display); }
.lm-tile small { position: absolute; left: 8px; bottom: 7px; font-size: 10.5px; color: #e5e5ea; background: rgba(0,0,0,.5); padding: 2px 7px; border-radius: 6px; }
.lm-hand { position: absolute; top: 7px; left: 7px; font-size: 14px; background: #fcd34d; border-radius: 8px; width: 24px; height: 24px; display: grid; place-items: center; animation: wave 1s ease-in-out infinite; }
@keyframes wave { 0%,100% { transform: rotate(0); } 50% { transform: rotate(14deg); } }
.lm-bar { display: flex; justify-content: center; gap: 8px; padding: 14px 0 6px; }
.lm-bar span { width: 38px; height: 38px; border-radius: 12px; background: rgba(255,255,255,.07); border: 1px solid var(--line-d); }
.lm-bar span.on { background: rgba(255,131,57,.25); border-color: rgba(255,131,57,.6); }
.lm-bar span.end { background: #ef4444; border-color: #ef4444; }
.lm-chat { position: absolute; right: -18px; bottom: 60px; max-width: 250px; background: #fff; color: var(--ink); border-radius: 16px 16px 4px 16px; padding: 12px 14px; font-size: 13px; box-shadow: var(--sh-3); animation: bob 6s ease-in-out infinite; }
.lm-chat strong { display: block; font-size: 12px; color: var(--brand-700); }
.lm-chat em { font-style: normal; display: inline-block; margin-top: 6px; font-size: 12px; background: var(--paper-2); padding: 2px 8px; border-radius: 999px; }
@media (max-width: 900px) { .live-mock { transform: none; } .lm-chat { right: 8px; } }

/* credentials */
.cred-lux { background: linear-gradient(180deg, #fff, #FBFAF6); box-shadow: var(--sh-1); transition: transform .3s var(--ease), box-shadow .3s; }
.cred-lux:hover { transform: translateY(-3px); box-shadow: var(--sh-2); }
.cred-lux span { font-size: 13px; }
.soon-strip { display: flex; align-items: center; gap: 14px; margin-top: 22px; padding: 16px 20px; border-radius: var(--r); background: var(--white); border: 1px dashed var(--line-2); font-size: 14.5px; flex-wrap: wrap; }
.soon-strip .flag { width: 34px; }
.soon-strip .link { margin-left: auto; }

/* sticky mobile CTA */
.m-cta { display: none; }
@media (max-width: 760px) {
  .m-cta { position: fixed; left: 10px; right: 10px; bottom: 10px; z-index: 65; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 8px; border-radius: 20px; background: rgba(11,11,12,.92); backdrop-filter: blur(14px); border: 1px solid var(--line-d2); box-shadow: 0 20px 40px -12px rgba(0,0,0,.6); transform: translateY(140%); transition: transform .4s var(--ease); }
  .m-cta.is-on { transform: none; }
  .m-cta .btn { height: 46px; font-size: 14px; padding: 0 12px; }
  .wa-float { bottom: 84px; }
  .to-top { bottom: 150px; right: 26px; }
}

/* section eyebrow line accent */
.section-head .eyebrow::after { content: ""; width: 38px; height: 1px; background: linear-gradient(90deg, currentColor, transparent); margin-left: 4px; }
.center .eyebrow::after, .section-head.center .eyebrow::after { display: none; }

/* screenshot / print preview mode: show everything without scroll animations */
.shot .reveal { opacity: 1 !important; transform: none !important; }
.shot .z2h-line i { width: 100% !important; }
.shot .wa-float, .shot .m-cta, .shot .cookie { display: none !important; }

/* ---- audit fixes */
.header-slogan { display: none; }
@media (min-width: 1500px) { .header-slogan { display: inline; } }
.orbit { width: min(460px, calc(100% - 110px)); }
.orbit .node { width: 118px; }
.orbit .node span { white-space: nowrap; }
.bento .b-cta { grid-column: 1 / -1; min-height: 0; flex-direction: row; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; background: linear-gradient(120deg, var(--paper-2), #fff); }
.bento .b-cta h3 { margin: 0; }
@media (max-width: 1000px) { .bento .b-cta { grid-column: 1 / -1; } }
.cert-hero { display: block; border-radius: 10px; overflow: hidden; box-shadow: 0 40px 90px -30px rgba(0,0,0,.7), 0 0 0 1px rgba(255,255,255,.08); transform: rotate(-2deg); transition: transform .5s var(--ease); }
.cert-hero:hover { transform: rotate(0) scale(1.01); }
.cert-hero .cert-doc { box-shadow: none; }
.cert-stack { position: relative; padding: 30px 10px 40px; }
.cert-stack .cert-back { position: absolute; inset: 0 40px auto 40px; transform: rotate(4deg) translateY(-6px); opacity: .9; filter: saturate(.8); }
.cert-stack .cert-hero:not(.cert-back) { position: relative; margin-top: 60px; }
.buy-batch { display: flex; gap: 12px; align-items: center; padding: 12px 14px; border-radius: 14px; background: var(--brand-50); border: 1px solid var(--brand-100); color: var(--brand-700); font-size: 14px; margin-bottom: 16px; line-height: 1.35; }
.buy-batch .ic { width: 22px; height: 22px; flex: none; }
.buy-batch strong { color: var(--txt); }
.buy-batch small { color: var(--brand-700); font-weight: 600; }
.hq-art { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; color: #fff; text-align: center; padding: 16px;
  background: radial-gradient(circle at 50% 40%, rgba(255,131,57,.35), transparent 60%), linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px) 0 0 / 22px 22px, linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px) 0 0 / 22px 22px, #101015; }
.hq-pin { width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center; background: var(--brand); box-shadow: 0 0 0 10px rgba(255,131,57,.18), 0 0 0 22px rgba(255,131,57,.08); margin-bottom: 10px; }
.hq-pin .ic { width: 26px; height: 26px; }
.hq-art strong { font: 700 16px/1.2 var(--f-display); letter-spacing: .12em; }
.hq-art small { font-size: 11.5px; color: #c9c9d0; }
.concept-fig { position: relative; margin: 0; border-radius: var(--r-xl); overflow: hidden; box-shadow: 0 40px 90px -30px rgba(0,0,0,.7); border: 1px solid var(--line-d2); }
.concept-fig img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.concept-fig figcaption { position: absolute; left: 14px; bottom: 14px; padding: 5px 10px; border-radius: 8px; background: rgba(0,0,0,.6); color: #eee; font-size: 11.5px; backdrop-filter: blur(6px); }
.orbit { margin: 36px auto 60px; }
.office-meta { display: flex; gap: 8px; align-items: center; font-size: 13px; color: var(--mut); margin-top: 4px; }
.office-meta .flag { width: 20px; }

/* pitch band */
.pitch { position: relative; overflow: hidden; background: linear-gradient(110deg, #0f0f12 0%, #17120e 40%, color-mix(in srgb, var(--pc) 55%, #1a1410) 100%); color: #fff; border-bottom: 1px solid rgba(255,255,255,.06); isolation: isolate; }
.pitch::before { content: ""; position: absolute; inset: 0; background: radial-gradient(600px 200px at 85% 50%, color-mix(in srgb, var(--pc) 45%, transparent), transparent 70%); z-index: -1; }
.pitch-in { display: flex; align-items: center; gap: 22px; min-height: 108px; padding-top: 18px; padding-bottom: 18px; }
.pitch-mark { width: 50px; height: 50px; border-radius: 16px; display: grid; place-items: center; background: color-mix(in srgb, var(--pc) 22%, transparent); color: var(--pc); flex: none; box-shadow: 0 0 0 6px color-mix(in srgb, var(--pc) 8%, transparent); }
.pitch-mark .ic { width: 24px; height: 24px; }
.pitch-lines { position: relative; flex: 1; min-height: 64px; display: grid; align-items: center; }
.pitch-line { grid-area: 1 / 1; margin: 0; font: 600 clamp(19px, 2.1vw, 28px)/1.25 var(--f-display); letter-spacing: -.02em; opacity: 0; transform: translateY(14px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.pitch-line.is-on { opacity: 1; transform: none; }
.pitch-cta { flex: none; }
@media (max-width: 760px) { .pitch-in { flex-wrap: wrap; gap: 14px; } .pitch-mark { display: none; } .pitch-cta { width: 100%; } .pitch-lines { min-height: 90px; } }
.buy-pitch { margin: 0 0 14px; font: 600 15px/1.45 var(--f-display); color: var(--txt); letter-spacing: -.01em; padding-left: 12px; border-left: 3px solid var(--brand); }
