/* ============================================================
   KWICKPREP 2.0 — Design System Preview
   Professional grotesk system · Light + Dark themes
   ============================================================ */
:root{
  --ff-display:'Schibsted Grotesk', system-ui, sans-serif;
  --ff-body:'Hanken Grotesk', system-ui, sans-serif;
  --ff-mono:'JetBrains Mono', ui-monospace, monospace;
  --r-sm:8px; --r:14px; --r-lg:20px; --r-xl:28px;
  --container:1200px;
  --ease:cubic-bezier(.22,.8,.2,1);
}
[data-theme="light"]{
  --bg:#F5F8F9; --bg-2:#EDF3F4; --surface:#FFFFFF; --surface-2:#F7FAFB;
  --ink:#0E1A2C; --body:#3A4C61; --muted:#6B7E92;
  --teal:#0A93A2; --teal-fill:#00A6B8; --teal-deep:#0E7C8C;
  --teal-tint:#E6F7F9; --teal-tint-2:#CDEFF3;
  --gold:#E9A300; --gold-text:#B8810A; --gold-soft:#FFF4D6;
  --success:#1FA971;
  --border:#DCE6EC; --border-strong:#C3D2DB; --grid-line:rgba(10,147,162,.09);
  --shadow-sm:0 1px 2px rgba(14,26,44,.04),0 2px 8px rgba(14,26,44,.05);
  --shadow:0 6px 16px rgba(14,26,44,.07),0 18px 40px rgba(14,26,44,.07);
  --shadow-lg:0 12px 28px rgba(14,26,44,.10),0 30px 70px rgba(14,26,44,.12);
  --on-dark:#EAF2F4; --logo-l:block; --logo-d:none;
}
[data-theme="dark"]{
  --bg:#0A1320; --bg-2:#0D1827; --surface:#111F31; --surface-2:#0F1B2B;
  --ink:#F2F7FA; --body:#B7C7D6; --muted:#8094A8;
  --teal:#34C2D1; --teal-fill:#1FB4C6; --teal-deep:#0E7C8C;
  --teal-tint:rgba(52,194,209,.12); --teal-tint-2:rgba(52,194,209,.20);
  --gold:#F5B400; --gold-text:#F5B400; --gold-soft:rgba(245,180,0,.14);
  --success:#37C98E;
  --border:rgba(255,255,255,.09); --border-strong:rgba(255,255,255,.16); --grid-line:rgba(52,194,209,.10);
  --shadow-sm:0 1px 2px rgba(0,0,0,.3);
  --shadow:0 10px 30px rgba(0,0,0,.4);
  --shadow-lg:0 20px 60px rgba(0,0,0,.55);
  --on-dark:#EAF2F4; --logo-l:none; --logo-d:block;
}
*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{font-family:var(--ff-body);background:var(--bg);color:var(--body);line-height:1.6;
  -webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;overflow-x:hidden;
  transition:background .4s var(--ease),color .4s var(--ease)}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
.container{max-width:var(--container);margin:0 auto;padding:0 24px}
h1,h2,h3{font-family:var(--ff-display);color:var(--ink);font-weight:700;line-height:1.08;letter-spacing:-.02em}
.tl{color:var(--teal)}
.eyebrow{font-family:var(--ff-mono);font-size:12px;font-weight:700;letter-spacing:.12em;
  text-transform:uppercase;color:var(--teal);display:inline-flex;align-items:center;gap:8px}
.eyebrow::before{content:"//";opacity:.55}

.blueprint{position:relative}
.blueprint::before{content:"";position:absolute;inset:0;pointer-events:none;z-index:0;
  background-image:
    repeating-linear-gradient(to right,var(--grid-line) 0 1px,transparent 1px 64px),
    repeating-linear-gradient(to bottom,var(--grid-line) 0 1px,transparent 1px 64px);
  -webkit-mask-image:radial-gradient(120% 90% at 72% 8%,#000,transparent 70%);
          mask-image:radial-gradient(120% 90% at 72% 8%,#000,transparent 70%)}
.blueprint>*{position:relative;z-index:1}

.btn{display:inline-flex;align-items:center;justify-content:center;gap:9px;font-family:var(--ff-body);
  font-weight:700;font-size:15px;padding:12px 22px;border-radius:var(--r-sm);border:1.5px solid transparent;
  cursor:pointer;transition:.22s var(--ease);white-space:nowrap}
.btn-primary{background:var(--teal-fill);color:#fff;box-shadow:0 6px 18px -6px var(--teal-fill)}
.btn-primary:hover{background:var(--teal-deep);transform:translateY(-2px);box-shadow:0 12px 26px -8px var(--teal-fill)}
.btn-ghost{background:transparent;color:var(--ink);border-color:var(--border-strong)}
.btn-ghost:hover{border-color:var(--teal);color:var(--teal);transform:translateY(-2px)}
.btn-gold{background:var(--gold);color:#3a2c00}
.btn-gold:hover{filter:brightness(1.05);transform:translateY(-2px)}
.btn-login{background:var(--teal-tint);color:var(--teal);border-color:var(--teal-tint-2);box-shadow:inset 0 0 0 1px var(--teal-tint-2)}
.btn-login:hover{background:var(--teal-fill);color:#fff;border-color:var(--teal-fill);transform:translateY(-2px);box-shadow:0 8px 18px -6px var(--teal-fill)}
.btn-sm{padding:9px 16px;font-size:14px}

/* topbar */
.topbar{background:var(--ink);color:var(--on-dark);font-size:13px}
[data-theme="dark"] .topbar{background:#06101c;border-bottom:1px solid var(--border)}
.topbar .container{display:flex;align-items:center;justify-content:center;gap:12px;padding:9px 24px;flex-wrap:wrap}
.topbar .dot{width:7px;height:7px;border-radius:50%;background:var(--gold);box-shadow:0 0 0 3px rgba(245,180,0,.25)}
.topbar b{color:#fff}
.topbar a{color:var(--teal);font-family:var(--ff-mono);font-size:12px;font-weight:700}
.topbar a:hover{text-decoration:underline}

/* header */
header.nav{position:sticky;top:0;z-index:50;background:color-mix(in srgb,var(--bg) 84%,transparent);
  backdrop-filter:saturate(150%) blur(12px);-webkit-backdrop-filter:saturate(150%) blur(12px);border-bottom:1px solid var(--border)}
.nav-in{display:flex;align-items:center;gap:18px;padding:13px 24px;max-width:var(--container);margin:0 auto}
.brand{display:flex;align-items:center}
.brand img{height:44px;width:auto}
.brand .logo-l{display:var(--logo-l)} .brand .logo-d{display:var(--logo-d)}
.nav-links{display:flex;gap:19px;margin-left:6px}
.nav-links a{font-weight:600;font-size:14.5px;color:var(--body);position:relative;padding:4px 0;white-space:nowrap}
.nav-links a:hover{color:var(--teal)}
.nav-links a::after{content:"";position:absolute;left:0;right:100%;bottom:-2px;height:2px;background:var(--teal);transition:right .25s var(--ease)}
.nav-links a:hover::after{right:0}
.nav-right{margin-left:auto;display:flex;align-items:center;gap:10px}
.nav-actions{display:flex;align-items:center;gap:9px}

/* mobile nav */
.hamburger{display:none;width:42px;height:38px;border:1.5px solid var(--border-strong);border-radius:9px;
  background:var(--surface-2);cursor:pointer;place-items:center;color:var(--ink);flex-shrink:0}
.hamburger svg{width:20px;height:20px}
.mm-overlay{position:fixed;inset:0;background:rgba(8,16,28,.5);z-index:69;opacity:0;pointer-events:none;
  transition:opacity .3s var(--ease);backdrop-filter:blur(2px);-webkit-backdrop-filter:blur(2px)}
.mm-overlay.open{opacity:1;pointer-events:auto}
.mobile-menu{position:fixed;top:0;right:0;bottom:0;width:min(86vw,330px);background:var(--surface);z-index:70;
  transform:translateX(106%);transition:transform .32s var(--ease);box-shadow:var(--shadow-lg);
  padding:62px 22px 26px;display:flex;flex-direction:column;overflow-y:auto;border-left:1px solid var(--border)}
.mobile-menu.open{transform:translateX(0)}
.mm-close{position:absolute;top:15px;right:15px;width:38px;height:38px;border:1px solid var(--border);
  border-radius:10px;background:var(--surface-2);color:var(--ink);font-size:15px;cursor:pointer}
.mm-links{display:flex;flex-direction:column}
.mm-links a{padding:14px 4px;font-weight:600;font-size:17px;color:var(--ink);border-bottom:1px solid var(--border)}
.mm-links a:hover{color:var(--teal)}
.mm-actions{display:flex;flex-direction:column;gap:10px;margin-top:22px}
.mm-actions .btn{width:100%}

.toggle{position:relative;width:56px;height:29px;border-radius:30px;border:1.5px solid var(--border-strong);
  background:var(--surface-2);cursor:pointer;flex-shrink:0}
.toggle .knob{position:absolute;top:2px;left:2px;width:21px;height:21px;border-radius:50%;background:var(--teal-fill);
  transition:.32s var(--ease);display:grid;place-items:center;color:#fff;font-size:11px}
[data-theme="dark"] .toggle .knob{left:30px;background:var(--gold);color:#3a2c00}

/* HERO */
.hero{padding:60px 0 26px;overflow:hidden}
.hero-grid{display:grid;grid-template-columns:1.06fr .94fr;gap:48px;align-items:center}
.hero h1{font-size:clamp(38px,5.2vw,64px);font-weight:800;color:var(--ink);margin:18px 0 0;letter-spacing:-.035em}
.hero .lead{font-size:18.5px;color:var(--body);max-width:520px;margin:20px 0 0}
.hero .lead b{color:var(--ink);font-weight:700}
.hero-cta{display:flex;gap:13px;margin-top:28px;flex-wrap:wrap}
.founder-chip{display:inline-flex;align-items:center;gap:12px;margin-top:26px;padding:8px 16px 8px 8px;
  background:var(--surface);border:1px solid var(--border);border-radius:60px;box-shadow:var(--shadow-sm)}
.founder-chip img{width:42px;height:42px;border-radius:50%;object-fit:cover;border:2px solid var(--teal-tint-2)}
.founder-chip .fc-name{font-weight:700;color:var(--ink);font-size:14px;line-height:1.2}
.founder-chip .fc-sub{font-family:var(--ff-mono);font-size:10px;color:var(--muted);letter-spacing:.03em;margin-top:2px}
.founder-chip .stars{color:var(--gold);font-size:12px;letter-spacing:1px;margin-left:2px}

/* rotating course card */
.hero-visual{position:relative}
.rotator{background:var(--surface);border:1px solid var(--border);border-radius:var(--r-lg);
  padding:24px;box-shadow:var(--shadow-lg);position:relative;z-index:2;min-height:296px}
.rot-inner{transition:opacity .4s var(--ease),transform .4s var(--ease)}
.rotator.swapping .rot-inner{opacity:0;transform:translateY(8px)}
.ccd-top{display:flex;align-items:center;gap:14px;margin-bottom:16px}
.glyph{width:54px;height:54px;border-radius:15px;display:grid;place-items:center;flex-shrink:0;
  background:var(--teal-tint);border:1px solid var(--teal-tint-2);color:var(--teal)}
.glyph svg{width:28px;height:28px}
.ccd-top .t-meta{font-family:var(--ff-mono);font-size:11px;color:var(--muted);letter-spacing:.05em;text-transform:uppercase}
.ccd-top h3{font-size:21px;margin-top:3px;letter-spacing:-.01em}
.chips{display:flex;gap:7px;flex-wrap:wrap;margin-bottom:16px;min-height:26px}
.chip{font-family:var(--ff-mono);font-size:10.5px;font-weight:700;letter-spacing:.03em;
  padding:5px 9px;border-radius:6px;background:var(--surface-2);border:1px solid var(--border);color:var(--body)}
.chip.solid{background:var(--ink);color:#fff;border-color:var(--ink)}
.price-row{display:grid;grid-template-columns:1fr 1fr;gap:10px;margin-bottom:16px}
.price-row.single{grid-template-columns:1fr}
.price-box{border:1px solid var(--border);border-radius:var(--r);padding:12px 14px;background:var(--surface-2)}
.price-box.active{border-color:var(--teal);background:var(--teal-tint)}
.price-box .pm{font-family:var(--ff-mono);font-size:10px;letter-spacing:.07em;text-transform:uppercase;color:var(--muted)}
.price-box .pv{font-family:var(--ff-display);font-size:24px;font-weight:700;color:var(--ink);margin-top:3px}
.price-box .pv small{font-size:12px;color:var(--muted);font-weight:500}
.ccd-cta{display:flex;gap:10px}
.ccd-cta .btn{flex:1}
.rot-dots{display:flex;gap:6px;justify-content:center;margin-top:16px}
.rot-dots i{width:6px;height:6px;border-radius:50%;background:var(--border-strong);transition:.3s;cursor:pointer}
.rot-dots i.on{background:var(--teal);width:18px;border-radius:6px}
.float-stat{position:absolute;z-index:3;border-radius:var(--r);padding:12px 16px;box-shadow:var(--shadow-lg)}
.float-stat .n{font-family:var(--ff-display);font-size:28px;font-weight:800;line-height:1}
.float-stat .l{font-family:var(--ff-mono);font-size:9.5px;letter-spacing:.05em;margin-top:3px}
.float-stat.fs1{top:-20px;right:-12px;background:var(--ink);color:#fff;border:1px solid rgba(255,255,255,.08)}
.float-stat.fs1 .n{color:var(--gold)} .float-stat.fs1 .l{color:#aebccd}
.float-stat.fs2{bottom:-20px;left:-16px;background:var(--surface);border:1px solid var(--border)}
.float-stat.fs2 .n{color:var(--teal)} .float-stat.fs2 .l{color:var(--muted)}

/* marquee */
.marquee{border-top:1px solid var(--border);border-bottom:1px solid var(--border);background:var(--surface-2);
  padding:14px 0;overflow:hidden;margin-top:34px;-webkit-mask-image:linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent);
  mask-image:linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent)}
.mq-track{display:flex;gap:14px;width:max-content;animation:mq 38s linear infinite}
.marquee:hover .mq-track{animation-play-state:paused}
@keyframes mq{to{transform:translateX(-50%)}}
.mq-pill{font-family:var(--ff-mono);font-size:12.5px;font-weight:500;color:var(--body);
  padding:7px 15px;border:1px solid var(--border);border-radius:30px;background:var(--surface);white-space:nowrap}
.mq-pill b{color:var(--teal)}

/* stat bar */
.statbar{background:var(--bg)}
.statbar .container{display:grid;grid-template-columns:repeat(4,1fr);gap:24px;padding:46px 24px}
.stat{text-align:center}
.stat .n{font-family:var(--ff-display);font-size:clamp(34px,4vw,48px);font-weight:800;color:var(--ink);line-height:1;font-variant-numeric:tabular-nums}
.stat .n .u{color:var(--teal)}
.stat .l{font-family:var(--ff-mono);font-size:11px;letter-spacing:.07em;text-transform:uppercase;color:var(--muted);margin-top:9px}

section.block{padding:78px 0}
.sec-head{text-align:center;max-width:680px;margin:0 auto 46px}
.sec-head h2{font-size:clamp(30px,3.8vw,44px);font-weight:800}
.sec-head p{margin-top:13px;font-size:17px;color:var(--muted)}
.divider{display:flex;align-items:center;justify-content:center;gap:14px;margin-bottom:10px;color:var(--teal);opacity:.55;font-family:var(--ff-mono);font-weight:700}
.divider::before,.divider::after{content:"";height:1px;width:50px;background:var(--border-strong)}

.boards{display:grid;grid-template-columns:repeat(6,1fr);gap:14px;max-width:980px;margin:0 auto}
.board{background:var(--surface);border:1px solid var(--border);border-radius:var(--r);padding:20px 12px;text-align:center;transition:.22s var(--ease);cursor:pointer}
.board:hover{transform:translateY(-4px);border-color:var(--teal);box-shadow:var(--shadow)}
.board .bn{font-family:var(--ff-display);font-weight:800;font-size:19px;color:var(--ink)}
.board .bc{font-family:var(--ff-mono);font-size:10.5px;color:var(--muted);margin-top:5px;letter-spacing:.03em}

.cgrid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
.course{background:var(--surface);border:1px solid var(--border);border-radius:var(--r-lg);padding:22px;
  transition:.25s var(--ease);display:flex;flex-direction:column;position:relative}
.course:hover{transform:translateY(-5px);box-shadow:var(--shadow-lg);border-color:var(--border-strong)}
.course .badge{position:absolute;top:16px;right:16px;font-family:var(--ff-mono);font-size:9.5px;font-weight:700;
  letter-spacing:.05em;padding:4px 9px;border-radius:30px;background:var(--gold-soft);color:var(--gold-text);text-transform:uppercase}
.course .ctop{display:flex;align-items:center;gap:13px;margin-bottom:15px}
.course h3{font-size:19px;letter-spacing:-.01em}
.course .meta{font-family:var(--ff-mono);font-size:10.5px;color:var(--muted);letter-spacing:.04em;text-transform:uppercase;margin-top:2px}
.course .desc{font-size:14px;color:var(--body);margin-bottom:16px}
.course .pmini{display:flex;gap:20px;padding:13px 0;border-top:1px dashed var(--border);margin-top:auto}
.course .pmini .k{font-family:var(--ff-mono);font-size:9.5px;letter-spacing:.05em;text-transform:uppercase;color:var(--muted)}
.course .pmini .v{font-family:var(--ff-display);font-size:18px;font-weight:700;color:var(--ink)}
.course .cbtns{display:flex;gap:9px;margin-top:14px}
.course .cbtns .btn{flex:1;font-size:13.5px;padding:10px}

/* comparison */
.vs{background:var(--surface);border:1px solid var(--border);border-radius:var(--r-xl);overflow:hidden;box-shadow:var(--shadow)}
.vs-row{display:grid;grid-template-columns:1.1fr 1fr 1fr;align-items:center}
.vs-row+.vs-row{border-top:1px solid var(--border)}
.vs-row>div{padding:16px 20px}
.vs-head{background:var(--surface-2)}
.vs-head .vs-k{color:var(--muted);font-family:var(--ff-mono);font-size:11px;letter-spacing:.08em;text-transform:uppercase}
.vs-head .vs-kp{color:var(--teal);font-weight:800;font-family:var(--ff-display);font-size:18px;display:flex;align-items:center;gap:8px}
.vs-head .vs-cv{color:var(--muted);font-weight:700;font-family:var(--ff-display);font-size:16px}
.vs-aspect{font-weight:700;color:var(--ink);font-size:14.5px}
.vs-kp-cell{font-size:14px;color:var(--ink);font-weight:600;display:flex;gap:9px;align-items:flex-start;background:var(--teal-tint)}
[data-theme="light"] .vs-kp-cell{background:linear-gradient(0deg,var(--teal-tint),var(--teal-tint))}
.vs-kp-cell .ic{color:var(--success);flex-shrink:0;margin-top:2px}
.vs-cv-cell{font-size:14px;color:var(--muted);display:flex;gap:9px;align-items:flex-start}
.vs-cv-cell .ic{color:#C0556B;flex-shrink:0;margin-top:2px}

/* how it works */
.steps{display:grid;grid-template-columns:repeat(4,1fr);gap:18px;counter-reset:s}
.step{background:var(--surface);border:1px solid var(--border);border-radius:var(--r-lg);padding:26px 22px;position:relative}
.step::before{counter-increment:s;content:"0" counter(s);position:absolute;top:18px;right:20px;
  font-family:var(--ff-mono);font-weight:700;font-size:13px;color:var(--teal);opacity:.5}
.step .si{width:46px;height:46px;border-radius:13px;background:var(--teal-tint);color:var(--teal);border:1px solid var(--teal-tint-2);display:grid;place-items:center;margin-bottom:16px}
.step .si svg{width:23px;height:23px}
.step h3{font-size:17px;margin-bottom:7px}
.step p{font-size:13.5px;color:var(--body)}

/* mentor / founder */
.mentor-wrap{background:var(--bg-2);border-top:1px solid var(--border);border-bottom:1px solid var(--border)}
.mentor{display:grid;grid-template-columns:.82fr 1.18fr;gap:56px;align-items:center}
.mentor-photo{position:relative;width:330px;height:330px;justify-self:center;flex-shrink:0}
.mentor-photo .ring{position:absolute;inset:-16px;border-radius:50%;border:2px dashed var(--teal);opacity:.4}
.mentor-photo .frame{position:absolute;inset:0;border-radius:50%;overflow:hidden;
  background:radial-gradient(circle at 50% 35%,var(--teal-tint),var(--surface) 75%);
  border:1px solid var(--border-strong);box-shadow:var(--shadow-lg)}
.mentor-photo .frame img{width:100%;height:100%;object-fit:cover;object-position:center top}
.mentor-photo .cred-badge{position:absolute;bottom:2px;left:50%;transform:translateX(-50%);z-index:2;
  background:var(--ink);color:#fff;border-radius:30px;padding:8px 16px;text-align:center;box-shadow:var(--shadow);white-space:nowrap;border:1px solid rgba(255,255,255,.08)}
.mentor-photo .cred-badge .nm{font-family:var(--ff-display);font-weight:700;font-size:15px;line-height:1}
.mentor-photo .cred-badge .ti{font-family:var(--ff-mono);font-size:9px;letter-spacing:.08em;color:var(--teal);margin-top:3px}
.mentor-photo .award{position:absolute;top:8px;right:-6px;z-index:2;background:var(--gold);color:#3a2c00;
  border-radius:12px;padding:8px 12px;text-align:center;box-shadow:var(--shadow);transform:rotate(3deg)}
.mentor-photo .award .a-n{font-family:var(--ff-display);font-weight:800;font-size:18px;line-height:1}
.mentor-photo .award .a-l{font-family:var(--ff-mono);font-size:8px;letter-spacing:.06em;margin-top:2px}
.mentor-content .eyebrow{margin-bottom:14px}
.mentor-content h2{font-size:clamp(28px,3.6vw,42px);font-weight:800}
.mentor-bio{font-size:16.5px;color:var(--body);margin:18px 0 0;max-width:560px}
.mentor-bio b{color:var(--ink)}
.mentor-creds{display:flex;flex-wrap:wrap;gap:9px;margin:22px 0}
.cred{display:inline-flex;align-items:center;gap:7px;font-family:var(--ff-mono);font-size:11.5px;font-weight:500;
  color:var(--ink);background:var(--surface);border:1px solid var(--border);border-radius:8px;padding:7px 12px}
.cred svg{width:14px;height:14px;color:var(--teal)}
.mentor-quote{border-left:3px solid var(--teal);padding:4px 0 4px 18px;margin:6px 0 24px;
  font-family:var(--ff-display);font-style:italic;font-size:18px;color:var(--ink);font-weight:500;max-width:540px}
.mentor-cta{display:flex;gap:13px;flex-wrap:wrap}

/* results ledger */
.ledger{background:var(--ink);color:#fff;border-radius:var(--r-xl);padding:44px;position:relative;overflow:hidden}
[data-theme="dark"] .ledger{border:1px solid var(--border)}
.ledger::before{content:"";position:absolute;inset:0;background:radial-gradient(60% 80% at 85% 0%,rgba(0,176,192,.22),transparent 60%);pointer-events:none}
.ledger h2{color:#fff;font-size:clamp(26px,3.4vw,38px);position:relative}
.ledger .lhead{display:flex;justify-content:space-between;align-items:flex-end;gap:20px;flex-wrap:wrap;margin-bottom:28px;position:relative}
.ledger .lhead p{color:#aebccd;max-width:430px;margin-top:8px}
.lrows{display:grid;grid-template-columns:repeat(3,1fr);gap:14px;position:relative}
.lrow{background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.1);border-radius:var(--r);padding:18px 20px;display:flex;align-items:center;justify-content:space-between;gap:14px}
.lrow.top{background:rgba(245,180,0,.1);border-color:rgba(245,180,0,.35)}
.lrow .nm{font-family:var(--ff-display);font-weight:700;font-size:19px;color:#fff}
.lrow .sub{font-family:var(--ff-mono);font-size:10px;color:#9fb0c2;letter-spacing:.03em;margin-top:3px}
.lrow .sc{font-family:var(--ff-display);font-size:34px;font-weight:800;color:var(--teal);line-height:1;font-variant-numeric:tabular-nums}
.lrow.top .sc{color:var(--gold)}

.why{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
.feat{background:var(--surface);border:1px solid var(--border);border-radius:var(--r-lg);padding:28px}
.feat .fi{width:50px;height:50px;border-radius:14px;display:grid;place-items:center;margin-bottom:18px;background:var(--teal-tint);color:var(--teal);border:1px solid var(--teal-tint-2)}
.feat .fi svg{width:25px;height:25px}
.feat h3{font-size:20px;margin-bottom:8px}
.feat p{font-size:14.5px;color:var(--body)}

.ctaband{padding:68px 0}
.ctaband-in{background:linear-gradient(135deg,var(--teal-deep),var(--teal-fill));border-radius:var(--r-xl);padding:54px;text-align:center;color:#fff;position:relative;overflow:hidden}
.ctaband-in::after{content:"</>";position:absolute;right:34px;bottom:-14px;font-family:var(--ff-mono);font-size:120px;font-weight:700;color:rgba(255,255,255,.08)}
.ctaband-in h2{color:#fff;font-size:clamp(28px,3.6vw,42px);position:relative}
.ctaband-in p{color:rgba(255,255,255,.92);font-size:18px;margin:13px 0 26px;position:relative}
.ctaband-in .btn{position:relative}

footer{background:var(--surface-2);border-top:1px solid var(--border);padding:54px 0 26px;color:var(--muted)}
.foot-grid{display:grid;grid-template-columns:1.7fr 1fr 1fr 1fr;gap:34px;margin-bottom:32px}
footer h4{font-family:var(--ff-mono);font-size:11px;letter-spacing:.1em;text-transform:uppercase;color:var(--ink);margin-bottom:16px}
footer ul{list-style:none} footer li{margin-bottom:10px}
footer a:hover{color:var(--teal)}
.foot-logo{height:48px;width:auto;margin-bottom:14px}
.foot-logo.logo-l{display:var(--logo-l)} .foot-logo.logo-d{display:var(--logo-d)}
.foot-bottom{border-top:1px solid var(--border);padding-top:22px;display:flex;justify-content:space-between;gap:16px;flex-wrap:wrap;font-size:13px}

.previewnote{position:fixed;bottom:16px;left:16px;z-index:99;background:var(--ink);color:#fff;font-family:var(--ff-mono);font-size:11px;padding:8px 13px;border-radius:8px;box-shadow:var(--shadow-lg);opacity:.92}
.previewnote b{color:var(--gold)}

@media(max-width:980px){
  .hero-grid{grid-template-columns:1fr;gap:40px}
  .hero-visual{max-width:430px}
  .cgrid,.why{grid-template-columns:1fr 1fr}
  .lrows{grid-template-columns:1fr 1fr}
  .boards{grid-template-columns:repeat(3,1fr)}
  .mentor{grid-template-columns:1fr;gap:36px;text-align:center}
  .mentor-photo{margin:0 auto}
  .mentor-bio,.mentor-quote{margin-left:auto;margin-right:auto}
  .mentor-quote{border-left:none;padding-left:0;border-top:1px solid var(--border);padding-top:16px}
  .mentor-creds,.mentor-cta{justify-content:center}
  .foot-grid{grid-template-columns:1fr 1fr}
}
@media(max-width:1080px){.nav-links{display:none}.nav-actions{display:none}.hamburger{display:grid}}
@media(max-width:680px){
  .statbar .container{grid-template-columns:1fr 1fr;gap:26px;padding:34px 24px}
  .cgrid,.why,.lrows{grid-template-columns:1fr}
  .boards{grid-template-columns:repeat(2,1fr)}
  .hero{padding:40px 0 20px}
  .hero h1{font-size:34px}
  section.block{padding:52px 0}
  .ledger,.ctaband-in{padding:24px}
  .ledger .lhead .btn{width:100%}
  /* comparison: stack with per-column labels */
  .vs-row{grid-template-columns:1fr}
  .vs-row>div{border-top:1px solid var(--border);padding:14px 18px}
  .vs-head{display:none}
  .vs-aspect{background:var(--surface-2);font-family:var(--ff-mono);font-size:11px;letter-spacing:.07em;text-transform:uppercase;color:var(--muted)}
  .vs-kp-cell,.vs-cv-cell{flex-wrap:wrap}
  .vs-kp-cell::before{content:"✦ Kwickprep";width:100%;font-family:var(--ff-mono);font-size:10px;font-weight:700;letter-spacing:.06em;text-transform:uppercase;color:var(--teal);margin-bottom:3px}
  .vs-cv-cell::before{content:"Conventional";width:100%;font-family:var(--ff-mono);font-size:10px;font-weight:700;letter-spacing:.06em;text-transform:uppercase;color:var(--muted);margin-bottom:3px}
  /* keep floating stats inside viewport */
  .float-stat{padding:9px 13px}
  .float-stat .n{font-size:22px}
  .float-stat.fs1{right:-4px;top:-14px}
  .float-stat.fs2{left:-6px;bottom:-14px}
  .mentor-photo{width:250px;height:250px}
  .mentor-quote{font-size:16px}
  .foot-grid{grid-template-columns:1fr 1fr}
}
@media(prefers-reduced-motion:reduce){*{animation:none!important;transition:none!important}}

/* ============ ENQUIRY / DEMO MODAL ============ */
.enq-overlay{position:fixed;inset:0;background:rgba(8,16,28,.6);backdrop-filter:blur(3px);-webkit-backdrop-filter:blur(3px);
  z-index:200;opacity:0;pointer-events:none;transition:opacity .28s var(--ease)}
.enq-overlay.open{opacity:1;pointer-events:auto}
.enq-modal{position:fixed;z-index:201;top:50%;left:50%;transform:translate(-50%,-46%) scale(.98);opacity:0;pointer-events:none;
  width:min(92vw,560px);max-height:92vh;overflow-y:auto;background:var(--surface);border:1px solid var(--border);
  border-radius:var(--r-xl);box-shadow:var(--shadow-lg);padding:30px;transition:opacity .28s var(--ease),transform .28s var(--ease)}
.enq-modal.open{opacity:1;pointer-events:auto;transform:translate(-50%,-50%) scale(1)}
.enq-close{position:absolute;top:16px;right:16px;width:38px;height:38px;border:1px solid var(--border);border-radius:10px;
  background:var(--surface-2);color:var(--ink);font-size:15px;cursor:pointer;transition:.2s}
.enq-close:hover{border-color:var(--teal);color:var(--teal);transform:rotate(90deg)}
.enq-head{margin-bottom:18px}
.enq-head h3{font-size:24px;margin-top:8px}
.enq-sub{color:var(--muted);font-size:14px;margin-top:6px}
.enq-form label{display:block;font-weight:600;font-size:13px;color:var(--ink);margin-bottom:13px}
.enq-row{display:grid;grid-template-columns:1fr 1fr;gap:13px}
.enq-form input,.enq-form select,.enq-form textarea{width:100%;margin-top:6px;font-family:var(--ff-body);font-size:14.5px;
  font-weight:500;color:var(--ink);background:var(--surface-2);border:1.5px solid var(--border);border-radius:10px;
  padding:11px 13px;transition:.18s;outline:none}
.enq-form input::placeholder,.enq-form textarea::placeholder{color:var(--muted);font-weight:400}
.enq-form input:focus,.enq-form select:focus,.enq-form textarea:focus{border-color:var(--teal);box-shadow:0 0 0 3px var(--teal-tint)}
.enq-form .invalid input,.enq-form .invalid select{border-color:#D9536B;box-shadow:0 0 0 3px rgba(217,83,107,.12)}
.enq-modes{display:flex;gap:10px;margin-top:6px}
.enq-modes label{flex:1;margin:0;cursor:pointer}
.enq-modes input{position:absolute;opacity:0;width:0;height:0}
.enq-modes .chip-opt{display:block;text-align:center;font-weight:600;font-size:13.5px;padding:10px;border:1.5px solid var(--border);
  border-radius:10px;background:var(--surface-2);color:var(--body);transition:.18s}
.enq-modes input:checked+.chip-opt{border-color:var(--teal);background:var(--teal-tint);color:var(--teal)}
.enq-submit{width:100%;margin-top:4px}
.enq-note{font-family:var(--ff-mono);font-size:10.5px;color:var(--muted);text-align:center;margin-top:11px;line-height:1.5}
.enq-success{text-align:center;padding:24px 6px}
.enq-tick{width:64px;height:64px;border-radius:50%;background:var(--success);color:#fff;font-size:30px;display:grid;place-items:center;margin:0 auto 16px}
.enq-success h3{font-size:22px;margin-bottom:8px}
.enq-success p{color:var(--muted);font-size:14px}
.enq-success a{color:var(--teal);font-weight:700}
@media(max-width:560px){.enq-modal{padding:22px}.enq-row{grid-template-columns:1fr}.enq-head h3{font-size:21px}}
body.enq-lock{overflow:hidden}


/* ===== COURSE PAGE ===== */
.container.narrow{max-width:860px}
.sec-head.left{text-align:left;margin-left:0;margin-right:0;max-width:none}
.sec-head.left .divider{justify-content:flex-start}
.crumbs{display:flex;flex-wrap:wrap;align-items:center;gap:8px;padding:20px 0 4px;font-family:var(--ff-mono);font-size:12px;color:var(--muted)}
.crumbs a{color:var(--teal)} .crumbs a:hover{text-decoration:underline}
.crumbs .cur{color:var(--ink);font-weight:700}
.course-hero{padding:30px 0 56px}
.course-hero-grid{display:grid;grid-template-columns:1.25fr .75fr;gap:46px;align-items:start}
.course-hero h1{font-size:clamp(32px,4.4vw,52px);font-weight:800;color:var(--ink);margin:14px 0 0;letter-spacing:-.03em}
.course-hero .lead{font-size:19px;color:var(--ink);font-weight:600;margin-top:14px}
.course-hero .course-desc{font-size:15.5px;color:var(--body);margin-top:14px}
.course-card-side{position:sticky;top:90px;background:var(--surface);border:1px solid var(--border);border-radius:var(--r-xl);padding:24px;box-shadow:var(--shadow-lg)}
.ccs-top{display:flex;align-items:center;gap:13px;margin-bottom:18px}
.ccs-top .t-meta{font-family:var(--ff-mono);font-size:10.5px;color:var(--muted);letter-spacing:.05em;text-transform:uppercase}
.ccs-title{font-family:var(--ff-display);font-weight:800;font-size:19px;color:var(--ink);margin-top:2px}
.mode-box{margin-bottom:16px}
.mode-box input{position:absolute;opacity:0;pointer-events:none}
.mode-tabs{display:flex;gap:6px;background:var(--surface-2);border:1px solid var(--border);border-radius:10px;padding:4px;margin-bottom:14px}
.mode-tabs label{flex:1;text-align:center;font-weight:700;font-size:13px;padding:9px;border-radius:7px;cursor:pointer;color:var(--muted);transition:.18s}
.mode-tabs .mode-only{flex:1;text-align:center;font-weight:700;font-size:13px;padding:9px;color:var(--teal)}
#m-group:checked~.mode-tabs label[for=m-group],#m-one:checked~.mode-tabs label[for=m-one]{background:var(--surface);color:var(--teal);box-shadow:var(--shadow-sm)}
.price-display .pd{display:none}
#m-group:checked~.price-display .pd-group,#m-one:checked~.price-display .pd-one{display:block}
.pd-amt{font-family:var(--ff-display);font-size:38px;font-weight:800;color:var(--ink);line-height:1}
.pd-amt small{font-size:15px;color:var(--muted);font-weight:500}
.pd-meta{font-size:12.5px;color:var(--muted);margin-top:6px}
.ccs-incl{list-style:none;margin:18px 0;display:flex;flex-direction:column;gap:9px}
.ccs-incl li{display:flex;gap:9px;font-size:13.5px;color:var(--body)}
.tick{color:var(--success);font-weight:800;flex-shrink:0}
.ccs-cta{width:100%}
.ccs-note{font-family:var(--ff-mono);font-size:10px;color:var(--muted);text-align:center;margin-top:11px}
.learn-list{list-style:none;display:grid;grid-template-columns:1fr 1fr;gap:14px}
.learn-list li{display:flex;gap:10px;font-size:15px;color:var(--body);background:var(--surface);border:1px solid var(--border);border-radius:12px;padding:14px 16px}
.syllabus{display:flex;flex-direction:column;gap:10px}
.unit{background:var(--surface);border:1px solid var(--border);border-radius:14px;overflow:hidden}
.unit summary{display:flex;align-items:center;gap:14px;padding:16px 20px;cursor:pointer;font-family:var(--ff-display);font-weight:700;font-size:16.5px;color:var(--ink);list-style:none}
.unit summary::-webkit-details-marker{display:none}
.unit .u-n{font-family:var(--ff-mono);font-size:13px;color:var(--teal);font-weight:700}
.unit .u-ic{margin-left:auto;font-size:20px;color:var(--teal);transition:.2s}
.unit[open] .u-ic{transform:rotate(45deg)}
.u-topics{margin:0;padding:0 20px 18px 54px;display:flex;flex-direction:column;gap:7px}
.u-topics li{font-size:14px;color:var(--body);list-style:disc}
.info-grid{display:grid;grid-template-columns:1fr 1fr;gap:18px}
.info-card{background:var(--surface);border:1px solid var(--border);border-radius:16px;padding:24px}
.info-card h3{font-size:17px;margin-bottom:12px}
.info-card p{font-size:14px;color:var(--body)}
.tools{display:flex;flex-wrap:wrap;gap:8px}
.tool{font-family:var(--ff-mono);font-size:12px;font-weight:500;color:var(--ink);background:var(--teal-tint);border:1px solid var(--teal-tint-2);border-radius:8px;padding:7px 12px}
@media(max-width:880px){
  .course-hero-grid{grid-template-columns:1fr;gap:30px}
  .course-card-side{position:static;order:-1}
  .learn-list,.info-grid{grid-template-columns:1fr}
}


/* ===== PAGES ===== */
.page-hero{padding:48px 0 12px}
.page-hero h1{font-size:clamp(34px,5vw,56px);font-weight:800;color:var(--ink);letter-spacing:-.03em;margin-top:14px}
.page-hero .lead{font-size:19px;color:var(--body);max-width:660px;margin-top:16px}
.facet-intro{font-size:17px;color:var(--body);line-height:1.7}
.muted{color:var(--muted)}
/* catalog */
.cat-layout{display:grid;grid-template-columns:262px 1fr;gap:34px;align-items:start}
.cat-filters{position:sticky;top:88px;background:var(--surface);border:1px solid var(--border);border-radius:16px;padding:20px}
.cat-search input{width:100%;padding:10px 12px;border:1.5px solid var(--border);border-radius:10px;background:var(--surface-2);font-family:var(--ff-body);font-size:14px;color:var(--ink);margin-bottom:14px;outline:none}
.cat-search input:focus{border-color:var(--teal);box-shadow:0 0 0 3px var(--teal-tint)}
.fgroup{margin-bottom:16px;border-top:1px solid var(--border);padding-top:14px}
.fgroup.first,.fgroup:first-of-type{border-top:none;padding-top:0}
.fgroup h4{font-family:var(--ff-mono);font-size:11px;letter-spacing:.08em;text-transform:uppercase;color:var(--muted);margin-bottom:9px}
.fopt{display:flex;align-items:center;gap:9px;padding:5px 0;font-size:13.5px;color:var(--body);cursor:pointer}
.fopt input{width:16px;height:16px;accent-color:var(--teal-fill);cursor:pointer}
.cat-bar{display:flex;align-items:center;justify-content:space-between;margin-bottom:20px;gap:12px}
.cat-count{font-size:14px;color:var(--muted)} .cat-count strong{color:var(--ink)}
#filtToggle{display:none}
.cat-empty{text-align:center;padding:50px 20px;color:var(--muted)}
.cat-empty a{color:var(--teal);font-weight:700}
.cat-main .cgrid{grid-template-columns:repeat(2,1fr)}
.card-link{display:block;color:inherit}
.course .card-link .desc{margin-bottom:14px}
/* testimonials */
.tgrid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.tcard{display:flex;flex-direction:column}
.tcard .stars{color:var(--gold);font-size:13px;letter-spacing:1px;margin-bottom:10px}
.tcard p{font-size:14.5px;color:var(--body);margin-bottom:14px;flex:1}
.tname{font-family:var(--ff-display);font-weight:700;font-size:14px;color:var(--ink)}
/* blog */
.blog-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
.blog-card{display:block;background:var(--surface);border:1px solid var(--border);border-radius:18px;padding:24px;transition:.25s var(--ease)}
.blog-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-lg);border-color:var(--border-strong)}
.bdate{font-family:var(--ff-mono);font-size:11px;color:var(--teal);letter-spacing:.05em;margin-bottom:10px}
.blog-card h3{font-size:18px;margin-bottom:10px;letter-spacing:-.01em}
.blog-card p{font-size:14px;color:var(--body);margin-bottom:14px}
.bmore{font-weight:700;color:var(--teal);font-size:14px}
/* contact */
.contact-grid{display:grid;grid-template-columns:1.1fr .9fr;gap:30px;align-items:start}
.contact-cards{display:grid;grid-template-columns:1fr 1fr;gap:16px}
.cinfo{background:var(--surface);border:1px solid var(--border);border-radius:14px;padding:20px;font-size:14.5px;color:var(--body)}
.cinfo h4{font-family:var(--ff-mono);font-size:11px;letter-spacing:.07em;text-transform:uppercase;color:var(--muted);margin-bottom:10px}
.cinfo a{color:var(--teal);font-weight:600}
.contact-cta-card{background:var(--ink);color:#fff;border-radius:20px;padding:32px}
.contact-cta-card h3{color:#fff;font-size:22px;margin-bottom:12px}
.contact-cta-card p{color:#aebccd;font-size:14.5px;margin-bottom:18px}
.contact-cta-card .btn{width:100%}
.contact-cta-card .ccs-note{color:#8298ac;margin-top:14px}
.contact-cta-card .ccs-note a{color:#34C2D1}
/* international */
.intl-card{text-align:center;align-items:center}
.intl-flag{font-size:42px;margin-bottom:6px;line-height:1}
/* faq / legal */
.fa{padding:0 20px 18px;font-size:14.5px;color:var(--body);line-height:1.7}
.legal-body{font-size:16px;color:var(--body);line-height:1.85}
@media(max-width:980px){
  .cat-layout{grid-template-columns:1fr}
  .cat-filters{position:static;display:none;margin-bottom:18px}
  .cat-filters.open{display:block}
  #filtToggle{display:inline-flex}
  .tgrid,.blog-grid{grid-template-columns:1fr 1fr}
  .contact-grid{grid-template-columns:1fr}
}
@media(max-width:680px){
  .cat-main .cgrid,.tgrid,.blog-grid,.contact-cards{grid-template-columns:1fr}
}


.why-wrap{background:var(--bg-2);border-top:1px solid var(--border);border-bottom:1px solid var(--border)}

/* ===== CATALOG CARDS ===== */
.cat-wide{max-width:1340px}
.ccard{display:flex;flex-direction:column;background:var(--surface);border:1px solid var(--border);border-radius:16px;padding:22px;transition:.22s var(--ease);color:inherit}
.ccard:hover{border-color:var(--teal);box-shadow:var(--shadow);transform:translateY(-3px)}
.ccard:hover .ccard-arrow{color:var(--teal)}
.ccard-top{display:flex;align-items:center;gap:11px;margin-bottom:13px}
.ccard .glyph{width:46px;height:46px;border-radius:12px}
.ccard .glyph svg{width:23px;height:23px}
.ccard-board{font-family:var(--ff-mono);font-size:10.5px;letter-spacing:.05em;text-transform:uppercase;color:var(--muted)}
.ccard h3{font-size:18px;letter-spacing:-.01em;margin-bottom:8px;color:var(--ink)}
.ccard-desc{font-size:13.5px;color:var(--body);line-height:1.55;margin-bottom:14px;flex:1}
.ccard-tags{display:flex;flex-wrap:wrap;gap:6px;margin-bottom:15px}
.ccard-tags span{font-family:var(--ff-mono);font-size:10px;color:var(--teal);background:var(--teal-tint);border:1px solid var(--teal-tint-2);border-radius:6px;padding:4px 8px}
.ccard-foot{display:flex;align-items:center;justify-content:space-between;gap:10px;border-top:1px solid var(--border);padding-top:13px;margin-top:auto}
.ccard-fee{font-size:12px;color:var(--muted)}
.ccard-fee b{color:var(--ink);font-weight:700}
.ccard-arrow{font-weight:700;color:var(--muted);font-size:13px;white-space:nowrap;transition:.2s}
.cat-main .cgrid{grid-template-columns:repeat(3,1fr);gap:18px}
.enq-actions{display:flex;gap:10px;margin-top:2px}
.enq-actions .btn{flex:1}
.enq-actions .btn svg{width:16px;height:16px}
@media(max-width:1180px){.cat-main .cgrid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:560px){.enq-actions{flex-direction:column}}
@media(max-width:680px){.cat-main .cgrid{grid-template-columns:1fr}}


/* ===== VIDEO / ICONS / FEES ===== */
.intro-grid{display:grid;grid-template-columns:1.7fr .75fr;gap:26px;align-items:center}
.intro-player{position:relative;border-radius:18px;overflow:hidden;box-shadow:var(--shadow-lg);border:1px solid var(--border);background:#0a1320;aspect-ratio:16/9}
.intro-player video{width:100%;height:100%;display:block;object-fit:cover}
.motion-logo{border-radius:18px;overflow:hidden;background:var(--surface-2);border:1px solid var(--border);max-width:260px;margin:0 auto;box-shadow:var(--shadow)}
.motion-logo video{width:100%;display:block}
.feat .fi.brand{background:var(--teal-tint);padding:0}
.feat .fi.brand img{width:30px;height:30px;display:block}
.fees-grid{display:grid;grid-template-columns:.92fr 1.08fr;gap:34px;align-items:start}
.fees-qr{background:var(--surface);border:1px solid var(--border);border-radius:20px;padding:18px;text-align:center;box-shadow:var(--shadow)}
.fees-qr img{width:100%;max-width:430px;border-radius:12px;margin:0 auto}
.bank-table{width:100%;border-collapse:collapse;background:var(--surface);border:1px solid var(--border);border-radius:14px;overflow:hidden}
.bank-table td{padding:13px 16px;border-bottom:1px solid var(--border);font-size:14.5px}
.bank-table tr:last-child td{border-bottom:none}
.bank-table td:first-child{color:var(--muted);font-family:var(--ff-mono);font-size:10.5px;letter-spacing:.04em;text-transform:uppercase;white-space:nowrap;width:44%;vertical-align:top}
.bank-table td:last-child{color:var(--ink);font-weight:700}
.pay-warn{background:var(--gold-soft);border:1px solid var(--gold);border-radius:14px;padding:18px 20px;margin-top:22px;font-size:13.5px;color:var(--ink);line-height:1.65}
.pay-warn a{color:var(--teal);font-weight:700}
@media(max-width:880px){.intro-grid{grid-template-columns:1fr}.motion-logo{max-width:200px}.fees-grid{grid-template-columns:1fr}}


/* ===== INTL / FEES COPY / BRAND BAND ===== */
.intl-hero{position:relative;color:#fff;padding:96px 0 84px;background-size:cover;background-position:center}
.intl-hero .eyebrow{color:#fff;opacity:.95}
.intl-hero h1{color:#fff;font-size:clamp(34px,5vw,56px);font-weight:800;letter-spacing:-.03em;margin-top:12px}
.intl-hero .lead{color:rgba(255,255,255,.92);font-size:19px;max-width:660px;margin-top:16px}
.intl-chips{display:flex;flex-wrap:wrap;gap:10px;margin-top:24px}
.intl-chips span{font-family:var(--ff-mono);font-size:12px;font-weight:700;color:#fff;background:rgba(255,255,255,.14);border:1px solid rgba(255,255,255,.28);border-radius:30px;padding:8px 14px}
.intl-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
.intl-card2{position:relative;border-radius:20px;overflow:hidden;min-height:340px;display:flex;flex-direction:column;justify-content:flex-end;color:#fff;padding:28px;background-size:cover;background-position:center;text-decoration:none;transition:.25s var(--ease)}
.intl-card2::after{content:"";position:absolute;inset:0;background:linear-gradient(to top,rgba(8,16,28,.95) 6%,rgba(8,16,28,.22));z-index:0}
.intl-card2>*{position:relative;z-index:1}
.intl-card2:hover{transform:translateY(-5px);box-shadow:var(--shadow-lg)}
.intl-badge{align-self:flex-start;font-family:var(--ff-mono);font-size:10.5px;font-weight:700;letter-spacing:.05em;background:var(--gold);color:#3a2c00;border-radius:30px;padding:5px 12px;margin-bottom:auto}
.intl-card2 h3{color:#fff;font-size:25px;margin:14px 0 6px}
.intl-card2 p{color:rgba(255,255,255,.85);font-size:14px;margin-bottom:12px}
.intl-meta{display:flex;flex-direction:column;gap:5px;font-size:13px;color:rgba(255,255,255,.9);margin-bottom:14px}
.intl-go{font-weight:700;color:#fff}
.prog-grid{grid-template-columns:repeat(3,1fr)}
.prog-card{background:var(--surface);border:1px solid var(--border);border-radius:18px;padding:24px;display:flex;flex-direction:column}
.prog-board{align-self:flex-start;font-family:var(--ff-mono);font-size:10px;font-weight:700;letter-spacing:.06em;color:var(--teal);background:var(--teal-tint);border:1px solid var(--teal-tint-2);border-radius:6px;padding:4px 9px;margin-bottom:12px}
.prog-card h3{font-size:17px;margin-bottom:12px}
.prog-list{list-style:none;margin:0 0 16px;display:flex;flex-direction:column;gap:7px;flex:1}
.prog-list li{font-size:13.5px;color:var(--body);padding-left:18px;position:relative}
.prog-list li::before{content:"\203A";position:absolute;left:2px;color:var(--teal);font-weight:700}
.fees-qr img{max-width:480px}
.pay-list{display:flex;flex-direction:column;gap:12px}
.pay-row{display:grid;grid-template-columns:1fr auto;align-items:center;gap:16px;background:var(--surface);border:1px solid var(--border);border-radius:14px;padding:16px 20px}
.pay-k{font-family:var(--ff-mono);font-size:11px;letter-spacing:.05em;text-transform:uppercase;color:var(--muted);margin-bottom:5px}
.pay-v{font-family:var(--ff-display);font-size:21px;font-weight:700;color:var(--ink);word-break:break-word;line-height:1.2}
.copy-btn{display:inline-flex;align-items:center;gap:6px;background:var(--teal-tint);color:var(--teal);border:1px solid var(--teal-tint-2);border-radius:10px;padding:10px 15px;font-family:var(--ff-body);font-weight:700;font-size:13.5px;cursor:pointer;white-space:nowrap;transition:.18s}
.copy-btn:hover{background:var(--teal-fill);color:#fff;border-color:var(--teal-fill)}
.copy-btn.copied{background:var(--success);color:#fff;border-color:var(--success)}
.copy-btn svg{flex-shrink:0}
.brand-band{padding:62px 0;text-align:center;background:var(--bg-2);border-top:1px solid var(--border);border-bottom:1px solid var(--border)}
.brand-band-logo{width:168px;margin:0 auto 20px;border-radius:18px;overflow:hidden;box-shadow:var(--shadow)}
.brand-band-logo video{width:100%;display:block}
.brand-band h2{font-size:clamp(26px,3.4vw,38px)}
.brand-band p{font-size:17px;color:var(--muted);max-width:560px;margin:12px auto 24px}
.brand-band-cta{display:flex;gap:13px;justify-content:center;flex-wrap:wrap}
a.board{text-decoration:none;color:inherit;display:block}
.sec-cta{text-align:center;margin-top:34px}
@media(max-width:880px){.intl-grid,.prog-grid{grid-template-columns:1fr}.intl-hero{padding:64px 0 54px}}
@media(max-width:560px){.pay-row{grid-template-columns:1fr;gap:12px}.copy-btn{justify-self:start}}


/* ===== NAV WIDTH / SCROLL-TOP / INTL CARDS ===== */
header.nav .nav-in{max-width:none;padding-left:46px;padding-right:46px}
@media(max-width:760px){header.nav .nav-in{padding-left:18px;padding-right:18px}}
.to-top{position:fixed;right:22px;bottom:22px;width:46px;height:46px;border-radius:50%;border:1px solid var(--border);background:var(--surface);color:var(--teal);box-shadow:var(--shadow-lg);cursor:pointer;display:grid;place-items:center;opacity:0;transform:translateY(12px);pointer-events:none;transition:.25s var(--ease);z-index:80}
.to-top.show{opacity:1;transform:none;pointer-events:auto}
.to-top:hover{background:var(--teal-fill);color:#fff;border-color:var(--teal-fill)}
.to-top svg{width:20px;height:20px}
@media(max-width:560px){.to-top{right:14px;bottom:14px;width:42px;height:42px}}
/* intl gradient hero + banner cards */
.intl-hero{background:linear-gradient(135deg,#0E1A2C 0%,#0E7C8C 58%,#00A6B8 100%)!important}
.intl-hero::after{display:none}
.intl-hero .tl{color:var(--gold)}
.intl-card3{display:flex;flex-direction:column;background:var(--surface);border:1px solid var(--border);border-radius:18px;overflow:hidden;text-decoration:none;color:inherit;transition:.25s var(--ease)}
.intl-card3:hover{transform:translateY(-5px);box-shadow:var(--shadow-lg);border-color:var(--border-strong)}
.intl-card3-img{height:172px;overflow:hidden}
.intl-card3-img img{width:100%;height:100%;object-fit:cover;transition:.45s var(--ease)}
.intl-card3:hover .intl-card3-img img{transform:scale(1.06)}
.intl-card3-body{padding:22px;display:flex;flex-direction:column;flex:1}
.intl-card3 .intl-badge{margin-bottom:0;align-self:flex-start}
.intl-card3-body h3{font-size:22px;margin:13px 0 8px;color:var(--ink)}
.intl-card3-body p{font-size:14px;color:var(--body);margin-bottom:14px;flex:1}
.intl-meta2{display:flex;flex-direction:column;gap:8px;font-size:13px;color:var(--muted);margin-bottom:16px}
.intl-meta2 span{display:flex;align-items:center;gap:8px}
.intl-meta2 svg{width:15px;height:15px;color:var(--teal);flex-shrink:0}
.intl-go2{font-weight:700;color:var(--teal)}
.intl-banner{border-radius:20px;overflow:hidden;box-shadow:var(--shadow);max-height:320px}
.intl-banner img{width:100%;height:320px;object-fit:cover;display:block}
@media(max-width:680px){.intl-banner img{height:200px}}


/* ===== INTL GLOBAL / CALLOUT ===== */
.intl-global-wrap{background:var(--bg-2);border-top:1px solid var(--border);border-bottom:1px solid var(--border)}
.intl-global{display:grid;grid-template-columns:1.4fr .6fr;gap:32px;align-items:center}
.intl-global h2{font-size:clamp(24px,3vw,34px)}
.intl-global p{font-size:16px;color:var(--body);margin-top:12px;max-width:640px}
.intl-global-cta{display:flex;flex-direction:column;gap:10px}
.intl-callout{display:flex;align-items:center;justify-content:space-between;gap:22px;background:linear-gradient(135deg,var(--teal-deep),var(--teal-fill));color:#fff;border-radius:18px;padding:26px 30px;text-decoration:none;flex-wrap:wrap}
.intl-callout h3{color:#fff;font-size:21px;display:flex;align-items:center;gap:11px}
.intl-callout p{color:rgba(255,255,255,.92);font-size:14.5px;margin-top:7px;max-width:580px}
.intl-callout .ic-go{font-weight:700;color:#fff;white-space:nowrap;background:rgba(255,255,255,.18);padding:12px 20px;border-radius:10px;border:1px solid rgba(255,255,255,.32);transition:.2s}
.intl-callout:hover .ic-go{background:rgba(255,255,255,.3)}
.intl-callout svg{width:23px;height:23px;flex-shrink:0}
@media(max-width:880px){.intl-global{grid-template-columns:1fr}.intl-global-cta{flex-direction:row;flex-wrap:wrap}.intl-callout{justify-content:flex-start}}


/* ===== BLOG / RESULTS ===== */
.bcat{display:inline-block;font-family:var(--ff-mono);font-size:10.5px;font-weight:700;letter-spacing:.06em;text-transform:uppercase;color:var(--teal);background:var(--teal-tint);border:1px solid var(--teal-tint-2);border-radius:6px;padding:4px 9px;margin-bottom:12px}
.blog-card{display:flex;flex-direction:column}
.blog-card .bcat{align-self:flex-start}
.bmeta{display:flex;align-items:center;justify-content:space-between;margin-top:auto;padding-top:13px;font-family:var(--ff-mono);font-size:11px;color:var(--muted)}
.blog-article{padding:36px 0 0}
.blog-h1{font-size:clamp(29px,4vw,44px);font-weight:800;letter-spacing:-.025em;margin:10px 0 26px;color:var(--ink);line-height:1.12}
.blog-body{font-size:17px;line-height:1.8;color:var(--body)}
.blog-body h2{font-size:25px;font-weight:800;margin:34px 0 12px;color:var(--ink);letter-spacing:-.01em}
.blog-body h3{font-size:19px;font-weight:700;margin:24px 0 9px;color:var(--ink)}
.blog-body p{margin-bottom:16px}
.blog-body ul,.blog-body ol{margin:0 0 18px 4px;padding-left:20px;display:flex;flex-direction:column;gap:8px}
.blog-body li{font-size:16.5px;line-height:1.7}
.blog-body a{color:var(--teal);font-weight:600;text-decoration:underline;text-underline-offset:2px}
.blog-body strong{color:var(--ink);font-weight:700}
.blog-body blockquote{border-left:3px solid var(--teal);padding:6px 0 6px 18px;margin:20px 0;font-style:italic;color:var(--ink)}
.blog-related{margin-top:36px;background:var(--surface-2);border:1px solid var(--border);border-radius:16px;padding:24px}
.blog-related h3{font-size:18px;margin-bottom:13px}
.blog-related ul{list-style:none;display:flex;flex-wrap:wrap;gap:10px}
.blog-related a{color:var(--teal);font-weight:600;background:var(--surface);border:1px solid var(--border);border-radius:8px;padding:8px 14px;display:inline-block}
.blog-faq{margin-top:36px}
.blog-faq h2{font-size:23px;margin-bottom:16px}
.blog-cta{margin:34px 0;display:flex;gap:12px;flex-wrap:wrap}
.year-tabs{display:flex;gap:10px;justify-content:center;flex-wrap:wrap;margin-bottom:36px}
.year-tab{font-family:var(--ff-body);font-weight:700;font-size:14.5px;padding:11px 22px;border-radius:30px;border:1.5px solid var(--border-strong);background:var(--surface);color:var(--body);cursor:pointer;transition:.2s}
.year-tab.active{background:var(--teal-fill);color:#fff;border-color:var(--teal-fill);box-shadow:0 6px 16px -6px var(--teal-fill)}
.res-panel{display:none}
.res-panel.active{display:block}
.res-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
.res-card{background:var(--surface);border:1px solid var(--border);border-radius:14px;padding:18px 20px;display:flex;align-items:center;justify-content:space-between;gap:14px}
.res-card.top{border-color:var(--gold);box-shadow:0 0 0 1px var(--gold) inset}
.res-info{min-width:0}
.res-name{font-family:var(--ff-display);font-weight:700;font-size:18px;color:var(--ink)}
.res-meta{font-family:var(--ff-mono);font-size:10px;color:var(--muted);letter-spacing:.03em;text-transform:uppercase;margin-top:4px}
.res-loc{display:flex;align-items:center;gap:5px;font-size:12px;color:var(--muted);margin-top:6px}
.res-loc svg{width:13px;height:13px;color:var(--teal);flex-shrink:0}
.res-score{font-family:var(--ff-display);font-weight:800;font-size:31px;color:var(--teal);line-height:1;font-variant-numeric:tabular-nums;flex-shrink:0}
.res-card.top .res-score{color:var(--gold)}
.res-score span{font-size:12px;color:var(--muted);font-weight:500}
.res-card.nos{background:var(--surface-2)}
.res-more-h{text-align:center;font-size:20px;margin:42px 0 18px;color:var(--ink)}
@media(max-width:880px){.res-grid{grid-template-columns:1fr 1fr}}
@media(max-width:560px){.res-grid{grid-template-columns:1fr}}


/* ===== TESTIMONIALS / INTL-CHERO / BRAND-BAND LR / BOARD LOGOS ===== */
.intl-chero{position:relative;color:#fff;padding:96px 0 84px;background-size:cover;background-position:center;overflow:hidden}
.intl-chero::after{content:"";position:absolute;inset:0;background:linear-gradient(120deg,rgba(8,16,28,.92),rgba(8,16,28,.5));z-index:0}
.intl-chero>.container{position:relative;z-index:1}
.intl-chero .eyebrow{color:#fff;opacity:.95}
.intl-chero h1{color:#fff;font-size:clamp(34px,5vw,56px);font-weight:800;letter-spacing:-.03em;margin-top:12px}
.intl-chero .tl{color:var(--gold)}
.intl-chero .lead{color:rgba(255,255,255,.92);font-size:19px;max-width:660px;margin-top:16px}
.intl-chero .intl-chips{display:flex;flex-wrap:wrap;gap:10px;margin-top:24px}
.intl-chero .intl-chips span{font-family:var(--ff-mono);font-size:12px;font-weight:700;color:#fff;background:rgba(255,255,255,.14);border:1px solid rgba(255,255,255,.28);border-radius:30px;padding:8px 14px}
.t-filters{display:flex;gap:10px;justify-content:center;margin-bottom:34px;flex-wrap:wrap}
.t-filter{font-family:var(--ff-body);font-weight:700;font-size:14px;padding:9px 20px;border-radius:30px;border:1.5px solid var(--border-strong);background:var(--surface);color:var(--body);cursor:pointer;transition:.2s}
.t-filter.active{background:var(--ink);color:#fff;border-color:var(--ink)}
.tmasonry{column-count:3;column-gap:20px}
@media(max-width:880px){.tmasonry{column-count:2}}
@media(max-width:560px){.tmasonry{column-count:1}}
.tcard2{break-inside:avoid;margin-bottom:20px;background:var(--surface);border:1px solid var(--border);border-radius:18px;padding:24px;position:relative;transition:.22s var(--ease);overflow:hidden}
.tcard2:hover{transform:translateY(-3px);box-shadow:var(--shadow);border-color:var(--border-strong)}
.tquote{font-family:var(--ff-display);font-size:64px;line-height:.5;color:var(--teal-tint-2);position:absolute;top:24px;right:20px;pointer-events:none}
.tstars{color:var(--gold);font-size:13px;letter-spacing:1px;margin-bottom:12px;position:relative}
.tcard2 p{font-size:15px;line-height:1.65;color:var(--body);margin-bottom:18px;position:relative;z-index:1}
.tfoot{display:flex;align-items:center;gap:12px}
.tavatar{width:42px;height:42px;border-radius:50%;display:grid;place-items:center;font-family:var(--ff-display);font-weight:700;font-size:18px;flex-shrink:0}
.tname{font-family:var(--ff-display);font-weight:700;font-size:15px;color:var(--ink)}
.trole{font-family:var(--ff-mono);font-size:10px;letter-spacing:.05em;text-transform:uppercase;color:var(--muted);margin-top:2px}
.tcard2.hl{background:var(--ink);border-color:var(--ink)}
.tcard2.hl p{color:#dbe6ef}.tcard2.hl .tname{color:#fff}.tcard2.hl .tquote{color:rgba(255,255,255,.12)}
.brand-band{text-align:left}
.brand-band-grid{display:grid;grid-template-columns:auto 1fr;gap:46px;align-items:center}
.brand-band .brand-band-logo{margin:0;width:178px}
.brand-band-text p{margin:12px 0 24px;max-width:560px}
.brand-band .brand-band-cta{justify-content:flex-start}
@media(max-width:680px){.brand-band-grid{grid-template-columns:1fr;text-align:center}.brand-band .brand-band-logo{margin:0 auto}.brand-band .brand-band-cta{justify-content:center}}
.board-logo{height:44px;display:flex;align-items:center;justify-content:center;margin-bottom:11px}
.board-logo img{max-height:44px;max-width:80px;width:auto;object-fit:contain}
[data-theme="dark"] .board-logo img{background:#fff;border-radius:7px;padding:4px 7px}
.board-mono{width:44px;height:44px;border-radius:12px;background:var(--teal-tint);color:var(--teal);border:1px solid var(--teal-tint-2);font-family:var(--ff-display);font-weight:800;font-size:15px;display:grid;place-items:center;margin:0 auto 11px}
.board-mono svg{width:23px;height:23px}
.vs-kp img{height:25px;width:auto;vertical-align:middle}
.vs-kp .logo-l{display:var(--logo-l)}
.vs-kp .logo-d{display:var(--logo-d)}


/* ===== RESULTS PHOTO CARDS ===== */
.ynew{background:var(--gold);color:#3a2c00;font-family:var(--ff-mono);font-size:9px;font-weight:700;padding:2px 7px;border-radius:10px;margin-left:7px;vertical-align:middle}
.rgrid{display:grid;grid-template-columns:repeat(4,1fr);gap:22px}
.rcard{background:var(--surface);border:2px solid var(--border);border-radius:18px;padding:30px 22px 24px;text-align:center;position:relative;transition:.22s var(--ease)}
.rcard:hover{transform:translateY(-4px);box-shadow:var(--shadow-lg)}
.rcard.top{border-color:var(--gold)}
.rcard.intl{border-color:var(--teal)}
.rbadge{position:absolute;top:-13px;left:50%;transform:translateX(-50%);font-family:var(--ff-mono);font-size:10px;font-weight:700;letter-spacing:.06em;padding:6px 14px;border-radius:30px;white-space:nowrap;display:inline-flex;align-items:center;gap:6px;box-shadow:var(--shadow-sm)}
.rbadge.g{background:var(--gold);color:#3a2c00}
.rbadge.t{background:var(--teal-fill);color:#fff}
.rbadge svg{width:12px;height:12px}
.rphoto{width:106px;height:106px;border-radius:50%;overflow:hidden;margin:4px auto 16px;background:linear-gradient(135deg,var(--teal-tint),var(--surface));box-shadow:var(--shadow-sm)}
.rphoto img{width:100%;height:100%;object-fit:cover}
.rcard h3{font-size:21px;margin-bottom:7px;color:var(--ink)}
.rdetail{font-size:13px;color:var(--muted);margin-bottom:16px;min-height:34px;line-height:1.4}
.rscore{background:linear-gradient(135deg,var(--teal-fill),var(--teal-deep));color:#fff;border-radius:12px;padding:16px;margin-bottom:14px;font-family:var(--ff-display);font-size:40px;font-weight:800;line-height:1}
.rscore span{display:block;font-family:var(--ff-body);font-size:12px;font-weight:500;opacity:.92;margin-top:6px}
.rcard.top .rscore{background:var(--ink);color:var(--gold)}
.rcard.top .rscore span{color:#fff;opacity:.85}
.rloc{display:flex;align-items:center;justify-content:center;gap:6px;font-size:13px;color:var(--muted)}
.rloc svg{width:14px;height:14px;color:var(--teal);flex-shrink:0}
.rcard.fam{padding:24px 18px}
.rcard.fam .rphoto{width:78px;height:78px;margin-bottom:12px}
.rcard.fam h3{font-size:17px;margin-bottom:9px}
.rpill{display:inline-block;font-family:var(--ff-mono);font-size:10px;font-weight:700;letter-spacing:.04em;color:var(--teal);background:var(--teal-tint);border:1px solid var(--teal-tint-2);border-radius:6px;padding:4px 10px;margin-bottom:11px}
@media(max-width:980px){.rgrid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:520px){.rgrid{grid-template-columns:1fr}}


/* ===== NAV ACTIVE STATE + TESTIMONIAL FIXES ===== */
.nav-links a.active{color:var(--teal)}
.nav-links a.active::after{right:0}
.mm-links a.active{color:var(--teal);font-weight:800}
.mm-links a.active::before{content:"";display:inline-block;width:4px;height:15px;border-radius:3px;background:var(--teal);margin-right:9px;vertical-align:-2px}
/* testimonial masonry hover-flicker fix (CSS columns + transform bug) */
.tcard2{transform:translateZ(0);backface-visibility:hidden}
.tcard2:hover{transform:translate3d(0,-3px,0)}
/* highlight card: fixed dark in BOTH themes (var(--ink) flips light in dark mode) */
.tcard2.hl{background:#0B1422;border-color:#1f3147}
.tcard2.hl p{color:#cdd9e6}
.tcard2.hl .tname{color:#fff}
.tcard2.hl .tquote{color:rgba(255,255,255,.10)}


/* testimonials: grid instead of CSS columns (fixes Safari hover flicker) */
.tmasonry{display:grid!important;grid-template-columns:repeat(3,1fr);gap:20px;align-items:start;column-count:initial!important}
.tcard2{break-inside:auto;transform:none;backface-visibility:visible;margin-bottom:0}
.tcard2:hover{transform:translateY(-3px)}
@media(max-width:880px){.tmasonry{grid-template-columns:repeat(2,1fr)}}
@media(max-width:560px){.tmasonry{grid-template-columns:1fr}}


/* homepage dedicated international section */
.intl-home{background:linear-gradient(135deg,#0E1A2C 0%,#0E7C8C 60%,#00A6B8 100%);color:#fff;padding:66px 0;text-align:center}
.intl-home .eyebrow{color:#fff;opacity:.95;justify-content:center}
.intl-home h2{color:#fff;font-size:clamp(28px,3.6vw,40px);margin-top:12px;letter-spacing:-.02em}
.intl-home .tl{color:var(--gold)}
.intl-home p{color:rgba(255,255,255,.92);font-size:17px;max-width:690px;margin:14px auto 22px;line-height:1.6}
.intl-home-chips{display:flex;gap:10px;justify-content:center;flex-wrap:wrap;margin-bottom:26px}
.intl-home-chips span{font-family:var(--ff-mono);font-size:12px;font-weight:700;color:#fff;background:rgba(255,255,255,.14);border:1px solid rgba(255,255,255,.28);border-radius:30px;padding:8px 14px}
.intl-home-cta{display:flex;gap:13px;justify-content:center;flex-wrap:wrap}
.intl-home-cta .btn-ghost{color:#fff;border-color:rgba(255,255,255,.45)}
.intl-home-cta .btn-ghost:hover{background:rgba(255,255,255,.12);border-color:#fff;color:#fff}
/* country hero: more height + anchor so the skyline/building isn't cropped out */
.intl-chero{min-height:560px;display:flex;align-items:center;padding:80px 0!important;background-position:center 28%!important}
@media(max-width:680px){.intl-chero{min-height:440px;background-position:center 30%!important}}

/* ===== CHAT ASSISTANT WIDGET ===== */
.kp-bot{position:fixed;z-index:9000;font-family:var(--ff-body)}
.kp-launch{position:fixed;right:20px;bottom:20px;width:62px;height:62px;border-radius:50%;border:1px solid var(--border);padding:0;cursor:pointer;box-shadow:var(--shadow-lg);background:#fff;overflow:visible;transition:transform .2s var(--ease),opacity .2s}
.kp-launch:hover{transform:scale(1.06)}
.kp-launch.hidden{opacity:0;pointer-events:none;transform:scale(.6)}
.kp-launch-av{width:62px;height:62px;border-radius:50%;object-fit:contain;padding:9px;display:block;background:#fff}
.kp-launch-ic{position:absolute;right:-2px;bottom:-2px;width:24px;height:24px;border-radius:50%;background:var(--teal-fill);color:#fff;display:grid;place-items:center;box-shadow:0 2px 6px rgba(0,0,0,.25);border:2px solid var(--surface)}
.kp-launch-ic svg{width:13px;height:13px}
.kp-dot{position:absolute;top:-3px;right:-3px;min-width:19px;height:19px;border-radius:10px;background:var(--gold);color:#3a2c00;font:700 11px/19px var(--ff-mono);text-align:center;border:2px solid var(--surface)}
.kp-dot.gone{display:none}
.kp-nudge{position:fixed;right:20px;bottom:94px;max-width:248px;background:var(--surface);border:1px solid var(--border);border-radius:16px;border-bottom-right-radius:5px;box-shadow:var(--shadow-lg);padding:13px 15px;display:flex;align-items:center;gap:10px;cursor:pointer;opacity:0;transform:translateY(10px);transition:.24s var(--ease);z-index:9001}
.kp-nudge.show{opacity:1;transform:none}
.kp-nudge img{width:34px;height:34px;border-radius:50%;object-fit:contain;background:#fff;padding:2px;border:1px solid var(--border);flex-shrink:0}
.kp-nudge span{font-size:13px;color:var(--ink);line-height:1.4}
.kp-nudge-x{position:absolute;top:-9px;right:-9px;width:22px;height:22px;border-radius:50%;border:1px solid var(--border);background:var(--surface);color:var(--muted);font-size:15px;line-height:1;cursor:pointer;box-shadow:var(--shadow-sm)}
.kp-overlay{position:fixed;inset:0;background:rgba(8,16,28,.42);opacity:0;pointer-events:none;transition:.25s;z-index:8998}
.kp-overlay.open{opacity:1;pointer-events:auto}
.kp-panel{position:fixed;right:20px;bottom:20px;width:min(374px,calc(100vw - 32px));height:min(594px,calc(100dvh - 110px));background:var(--surface);border:1px solid var(--border);border-radius:20px;box-shadow:var(--shadow-lg);display:flex;flex-direction:column;overflow:hidden;z-index:8999;opacity:0;visibility:hidden;pointer-events:none;transform:translateY(16px) scale(.98);transform-origin:bottom right;transition:opacity .26s var(--ease),transform .26s var(--ease),visibility .26s}
.kp-panel.open{opacity:1;visibility:visible;pointer-events:auto;transform:none}
.kp-grab{display:none}
.kp-head{display:flex;align-items:center;gap:11px;padding:14px 14px;background:linear-gradient(135deg,var(--teal-deep),var(--teal-fill));color:#fff;flex-shrink:0}
.kp-head img{width:40px;height:40px;border-radius:50%;object-fit:contain;background:#fff;padding:3px;border:2px solid rgba(255,255,255,.6)}
.kp-head-t{display:flex;flex-direction:column;line-height:1.25;flex:1;min-width:0}
.kp-head-t b{font-family:var(--ff-display);font-size:15.5px}
.kp-head-t span{font-size:11px;opacity:.9}
.kp-x{margin-left:auto;width:32px;height:32px;border-radius:50%;border:none;background:rgba(255,255,255,.16);color:#fff;cursor:pointer;display:grid;place-items:center}
.kp-x:hover{background:rgba(255,255,255,.28)}
.kp-x svg{width:17px;height:17px}
.kp-log{flex:1;overflow-y:auto;padding:18px 14px 8px;display:flex;flex-direction:column;gap:11px;background:var(--bg-2)}
.kp-row{display:flex;gap:8px;align-items:flex-end;max-width:100%}
.kp-row.me{justify-content:flex-end}
.kp-av{width:28px;height:28px;border-radius:50%;object-fit:contain;background:#fff;padding:2px;border:1px solid var(--border);flex-shrink:0}
.kp-bubble{max-width:78%;padding:10px 13px;border-radius:15px;font-size:14.5px;line-height:1.5;white-space:pre-line;word-wrap:break-word}
.kp-bubble.bot{background:var(--surface);border:1px solid var(--border);color:var(--body);border-bottom-left-radius:5px}
.kp-bubble.me{background:var(--teal-fill);color:#fff;border-bottom-right-radius:5px}
.kp-typing{display:flex;gap:4px;align-items:center;padding:13px}
.kp-typing span{width:6px;height:6px;border-radius:50%;background:var(--muted);display:inline-block;animation:kpblink 1s infinite}
.kp-typing span:nth-child(2){animation-delay:.2s}
.kp-typing span:nth-child(3){animation-delay:.4s}
@keyframes kpblink{0%,80%,100%{opacity:.3}40%{opacity:1}}
.kp-tray{display:flex;flex-wrap:wrap;gap:8px;padding:10px 14px;background:var(--bg-2);border-top:1px solid var(--border)}
.kp-chip{display:inline-flex;align-items:center;gap:6px;padding:9px 13px;border:1.5px solid var(--teal);color:var(--teal);background:var(--teal-tint);border-radius:30px;font:600 13.5px var(--ff-body);cursor:pointer;transition:.16s}
.kp-chip:hover{background:var(--teal-fill);color:#fff;border-color:var(--teal-fill)}
.kp-chip:focus-visible{outline:2px solid var(--teal-deep);outline-offset:2px}
.kp-chip-ic{display:inline-flex;align-items:center}
.kp-chip svg{width:15px;height:15px;flex-shrink:0}
.kp-chip-t{display:inline-flex}
.kp-foot{display:flex;gap:8px;padding:10px 14px;border-top:1px solid var(--border);background:var(--surface);flex-shrink:0}
.kp-foot-wa{flex:1;display:inline-flex;align-items:center;justify-content:center;gap:7px;padding:10px;border-radius:11px;border:none;background:#25D366;color:#fff;font:700 13.5px var(--ff-body);cursor:pointer}
.kp-foot-wa svg{width:17px;height:17px}
.kp-foot-reset{padding:10px 14px;border-radius:11px;border:1px solid var(--border);background:var(--surface);color:var(--muted);font:600 13px var(--ff-body);cursor:pointer}
.kp-foot-reset:hover{color:var(--ink);border-color:var(--border-strong)}
/* keep the scroll-to-top button clear of the launcher */
.to-top{bottom:92px!important}
@media(max-width:560px){
  .to-top{bottom:84px!important;right:14px}
  .kp-launch{right:16px;bottom:16px}
  .kp-nudge{right:16px;bottom:88px}
  .kp-panel{left:0;right:0;bottom:0;width:100%;height:88dvh;max-height:88dvh;border-radius:20px 20px 0 0;transform:translateY(100%);padding-bottom:env(safe-area-inset-bottom)}
  .kp-panel.open{transform:none}
  .kp-grab{display:block;width:38px;height:4px;border-radius:3px;background:var(--border-strong);margin:8px auto 0;flex-shrink:0}
}
@media(prefers-reduced-motion:reduce){.kp-panel,.kp-nudge,.kp-launch{transition:none}.kp-typing span{animation:none}}

