/* =====================================================================
   Sarawak Digital Champion — Business Activation Portal (Beta)
   style.css — design system inspired by the SDC posters
   Navy · Orange · White | premium, corporate, government-innovation
   ===================================================================== */

:root {
  --navy-900: #08182f;
  --navy-800: #0b1f3a;
  --navy-700: #102a4c;
  --navy-600: #16365f;
  --navy-500: #1f4a7a;
  --orange:   #f47c20;
  --orange-lt:#ff9a45;
  --orange-2: #ff6a00;
  --violet-300:#c8b6ff;
  --violet-400:#a98bff;
  --violet-500:#8b5cf6;
  --violet-600:#7c3aed;
  --indigo:   #6366f1;
  --electric: #8b6cff;
  --ink:      #0f2138;
  --muted:    #5b6b80;
  --line:     #e2e8f0;
  --paper:    #f7f9fc;
  --white:    #ffffff;
  --ok:       #1f9d6b;
  --warn:     #e8a33d;
  --shadow:   0 10px 30px rgba(8,24,47,.10);
  --shadow-lg:0 20px 50px rgba(8,24,47,.18);
  --radius:   16px;
  --radius-sm:10px;
  --ease:     cubic-bezier(.4,0,.2,1);
  --maxw:     1080px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
               Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { line-height: 1.15; margin: 0 0 .4em; letter-spacing: -.01em; }
p { margin: 0 0 1em; }
a { color: var(--navy-500); }
img { max-width: 100%; }

/* ---------- Mission ticker ---------------------------------------- */
.ticker-bar {
  position: sticky; top: 0; z-index: 200;
  height: 34px; overflow: hidden;
  background: var(--navy-900); color: #cfe0f5;
  display: flex; align-items: center;
  font-size: .76rem; letter-spacing: .04em;
}
.ticker-track { display: flex; white-space: nowrap; animation: ticker 28s linear infinite; }
.ticker-item { display: inline-flex; align-items: center; padding: 0 1.6rem; }
.ticker-icon { width: 14px; height: 14px; margin-right: 7px; vertical-align: -2px; flex: none; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .ticker-track { animation: none; } }

/* ---------- Header ------------------------------------------------ */
.site-head {
  position: sticky; top: 34px; z-index: 180;
  background: rgba(255,255,255,.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.head-inner {
  max-width: var(--maxw); margin: 0 auto; padding: .7rem 1.25rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.brand { display: flex; align-items: center; gap: .65rem; font-weight: 800; color: var(--navy-800); }
.brand .logo {
  width: 38px; height: 38px; border-radius: 10px; flex: none;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-900));
  display: grid; place-items: center; color: var(--orange); font-weight: 900;
  box-shadow: var(--shadow);
}
.brand small { display: block; font-weight: 500; color: var(--muted); font-size: .72rem; letter-spacing: .02em; }
.head-cta { display: flex; gap: .6rem; align-items: center; }

/* ---------- Buttons ----------------------------------------------- */
.btn {
  appearance: none; border: 0; cursor: pointer; font: inherit; font-weight: 700;
  padding: .8rem 1.4rem; border-radius: 999px; transition: transform .15s var(--ease), box-shadow .2s var(--ease), background .2s;
  display: inline-flex; align-items: center; gap: .5rem; text-decoration: none;
}
.btn-primary { background: linear-gradient(135deg, var(--orange), var(--orange-2)); color: #fff; box-shadow: 0 8px 20px rgba(244,124,32,.35); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(244,124,32,.45); }
.btn-ghost { background: transparent; color: var(--navy-700); border: 1.5px solid var(--line); }
.btn-ghost:hover { border-color: var(--navy-500); color: var(--navy-800); }
.btn-dark { background: var(--navy-800); color: #fff; }
.btn-dark:hover { background: var(--navy-700); transform: translateY(-2px); }
.btn:disabled { opacity: .5; cursor: not-allowed; transform: none; }
.btn-sm { padding: .5rem .9rem; font-size: .85rem; }

/* ---------- Hero -------------------------------------------------- */
.hero {
  position: relative; overflow: hidden; color: #fff;
  background: radial-gradient(1200px 500px at 80% -10%, var(--navy-600), transparent 60%),
              linear-gradient(160deg, var(--navy-800), var(--navy-900));
}
.hero::after {
  content: ""; 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: 44px 44px; mask-image: radial-gradient(900px 380px at 75% 0%, #000, transparent 70%);
}
.hero-inner { position: relative; z-index: 1; max-width: var(--maxw); margin: 0 auto; padding: 4.5rem 1.25rem 4rem; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem; font-size: .78rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; color: var(--orange-lt);
  background: rgba(244,124,32,.12); border: 1px solid rgba(244,124,32,.3);
  padding: .35rem .8rem; border-radius: 999px;
}
.hero h1 { font-size: clamp(2.1rem, 5.5vw, 3.6rem); font-weight: 900; margin-top: 1rem; max-width: 16ch; }
.hero h1 .accent { color: var(--orange); }
.hero .sub { font-size: clamp(1rem, 2vw, 1.2rem); color: #c7d6ec; max-width: 56ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.8rem; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 2rem; margin-top: 2.6rem; }
.hero-stats .stat strong { display: block; font-size: 1.9rem; font-weight: 900; color: #fff; }
.hero-stats .stat span { color: #9fb4d1; font-size: .85rem; }

/* poster pillars */
.pillars { max-width: var(--maxw); margin: -2.4rem auto 0; padding: 0 1.25rem; position: relative; z-index: 5; }
.pillars-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; }
.pillar { background: #fff; border-radius: var(--radius); padding: 1.2rem; box-shadow: var(--shadow); border: 1px solid var(--line); }
.pillar .ic { width: 40px; height: 40px; border-radius: 10px; background: rgba(244,124,32,.12); color: var(--orange); display: grid; place-items: center; margin-bottom: .6rem; }
.pillar h3 { font-size: .98rem; }
.pillar p { font-size: .82rem; color: var(--muted); margin: 0; }

/* ---------- Wizard shell ------------------------------------------ */
.wizard-wrap { max-width: 860px; margin: 3.5rem auto; padding: 0 1.25rem; }
.progress { position: sticky; top: 96px; z-index: 50; background: var(--paper); padding: .5rem 0 1rem; }
.progress-bar { height: 8px; background: var(--line); border-radius: 999px; overflow: hidden; }
.progress-fill { height: 100%; width: 0; background: linear-gradient(90deg, var(--orange), var(--orange-2)); transition: width .35s var(--ease); }
.progress-meta { display: flex; justify-content: space-between; font-size: .8rem; color: var(--muted); margin-top: .45rem; }
.progress-meta strong { color: var(--navy-700); }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 2rem; margin-top: 1.2rem;
}
.step { display: none; animation: fade .35s var(--ease); }
.step.active { display: block; }
@keyframes fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.step-kicker { color: var(--orange); font-weight: 800; font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; }
.step h2 { font-size: 1.5rem; margin-top: .25rem; }
.step .lead { color: var(--muted); margin-bottom: 1.5rem; }

/* ---------- Form fields ------------------------------------------- */
.field { margin-bottom: 1.15rem; }
.field > label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: .4rem; color: var(--navy-700); }
.field .req { color: var(--orange-2); }
.hint { font-size: .8rem; color: var(--muted); margin-top: .35rem; }
.ai-hint { font-size: .82rem; color: var(--navy-500); background: rgba(31,74,122,.06); border-left: 3px solid var(--orange); padding: .5rem .7rem; border-radius: 6px; margin-bottom: .5rem; }
input, select, textarea {
  width: 100%; font: inherit; color: var(--ink);
  padding: .7rem .85rem; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background: #fff; transition: border-color .15s, box-shadow .15s;
}
textarea { resize: vertical; min-height: 92px; }
input:focus, select:focus, textarea:focus {
  outline: 0; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(244,124,32,.15);
}
input.invalid, select.invalid, textarea.invalid { border-color: #e0494b; box-shadow: 0 0 0 3px rgba(224,73,75,.12); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field-error { color: #d23b3d; font-size: .78rem; margin-top: .3rem; display: none; }
.field-error.show { display: block; }

/* check / multi-select chips */
.chips { display: flex; flex-wrap: wrap; gap: .55rem; }
.chip {
  display: inline-flex; align-items: center; gap: .45rem; cursor: pointer; user-select: none;
  padding: .55rem .9rem; border: 1.5px solid var(--line); border-radius: 999px;
  font-size: .88rem; transition: all .15s var(--ease); background: #fff;
}
.chip input { width: auto; margin: 0; }
.chip:hover { border-color: var(--orange-lt); }
.chip.checked { background: rgba(244,124,32,.1); border-color: var(--orange); color: var(--navy-800); font-weight: 600; }

/* dynamic link rows */
.repeat-row { display: flex; gap: .6rem; margin-bottom: .6rem; }
.repeat-row input { flex: 1; }
.icon-btn { flex: none; width: 44px; border: 1.5px solid var(--line); background: #fff; border-radius: var(--radius-sm); cursor: pointer; font-size: 1.2rem; color: var(--muted); }
.icon-btn:hover { border-color: #e0494b; color: #e0494b; }
.link-add { background: none; border: 1.5px dashed var(--line); color: var(--navy-600); padding: .55rem 1rem; border-radius: var(--radius-sm); cursor: pointer; font-weight: 600; font-size: .85rem; }
.link-add:hover { border-color: var(--orange); color: var(--orange-2); }

/* map */
.map-frame { border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; height: 280px; margin-bottom: .8rem; background: var(--navy-700); }
.map-frame iframe { width: 100%; height: 100%; border: 0; display: block; }

/* file vault */
.dropzone {
  border: 2px dashed var(--line); border-radius: var(--radius); padding: 2.2rem 1rem; text-align: center;
  color: var(--muted); cursor: pointer; transition: all .2s var(--ease); background: var(--paper);
}
.dropzone.drag { border-color: var(--orange); background: rgba(244,124,32,.06); color: var(--navy-700); }
.dropzone strong { color: var(--navy-700); }
.file-list { margin-top: 1rem; display: grid; gap: .6rem; }
.file-item { display: flex; align-items: center; gap: .8rem; padding: .65rem .85rem; border: 1px solid var(--line); border-radius: var(--radius-sm); background: #fff; }
.file-item .fi-ic { width: 36px; height: 36px; border-radius: 8px; background: var(--navy-800); color: var(--orange); display: grid; place-items: center; font-size: .7rem; font-weight: 800; flex: none; }
.file-item .fi-meta { flex: 1; min-width: 0; }
.file-item .fi-meta b { display: block; font-size: .85rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.file-item .fi-meta span { font-size: .75rem; color: var(--muted); }
.file-item select { width: auto; padding: .35rem .5rem; font-size: .8rem; }

/* AI summary panel */
.ai-panel { background: linear-gradient(160deg, var(--navy-800), var(--navy-900)); color: #fff; border-radius: var(--radius); padding: 1.6rem; }
.ai-panel h3 { color: var(--orange-lt); display: flex; align-items: center; gap: .5rem; }
.ai-rows { display: grid; gap: .7rem; margin: 1rem 0; }
.ai-row { display: grid; grid-template-columns: 150px 1fr; gap: .8rem; font-size: .9rem; border-bottom: 1px solid rgba(255,255,255,.08); padding-bottom: .55rem; }
.ai-row .k { color: #9fb4d1; }
.ai-row .v { font-weight: 600; }
.ai-row .v ul { margin: 0; padding-left: 1.1rem; }
.readiness { display: inline-flex; align-items: center; gap: .6rem; }
.readiness .bar { width: 120px; height: 8px; border-radius: 999px; background: rgba(255,255,255,.15); overflow: hidden; }
.readiness .bar i { display: block; height: 100%; background: var(--orange); }
.score-badge { display: inline-grid; place-items: center; width: 64px; height: 64px; border-radius: 50%; background: rgba(244,124,32,.18); border: 2px solid var(--orange); font-weight: 900; font-size: 1.3rem; color: #fff; }

/* nav buttons */
.wizard-nav { display: flex; justify-content: space-between; margin-top: 1.6rem; gap: 1rem; }
.saved-tag { font-size: .78rem; color: var(--ok); align-self: center; }

/* success */
.success-box { text-align: center; padding: 1rem 0; }
.success-box .tick { width: 76px; height: 76px; border-radius: 50%; background: rgba(31,157,107,.12); color: var(--ok); display: grid; place-items: center; margin: 0 auto 1rem; font-size: 2.2rem; }

/* ---------- Footer ------------------------------------------------ */
.site-foot { background: var(--navy-900); color: #b9c8de; margin-top: 4rem; }
.foot-inner { max-width: var(--maxw); margin: 0 auto; padding: 2.6rem 1.25rem 1.5rem; display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 2rem; }
.foot-brand .logo { width: 40px; height: 40px; border-radius: 10px; background: linear-gradient(135deg, var(--navy-600), var(--navy-700)); color: var(--orange); display: grid; place-items: center; font-weight: 900; margin-bottom: .7rem; }
.foot-brand p { font-size: .85rem; max-width: 38ch; }
.foot-col h4 { color: #fff; font-size: .85rem; text-transform: uppercase; letter-spacing: .06em; }
.foot-col a { display: block; color: #9fb4d1; text-decoration: none; font-size: .88rem; padding: .2rem 0; }
.foot-col a:hover { color: var(--orange-lt); }
.foot-org { display: block; color: #9fb4d1; font-size: .88rem; padding: .2rem 0; }
.foot-fine { color: #6f86a6; font-size: .78rem; font-weight: 300; line-height: 1.55; max-width: 34ch; margin: .35rem 0 0; }
.foot-fine b, .foot-fine strong { font-weight: 400; }
.foot-org-sub { color: #7d93b3; font-size: .8rem; max-width: 30ch; font-style: italic; }
.foot-orgs { list-style: none; margin: .35rem 0 .55rem; padding: 0; }
.foot-orgs li { color: #c3d2e8; font-size: .9rem; font-weight: 600; padding: .12rem 0; display: flex; align-items: center; gap: .45rem; }
.foot-orgs li::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--orange); flex: none; }
.foot-copy { border-top: 1px solid rgba(255,255,255,.08); text-align: center; font-size: .8rem; color: #8aa0bd; padding: 1rem; line-height: 1.6; }
.kobis-bar { min-height: .75in; display: grid; place-items: center; background: var(--navy-900); border-top: 1px solid rgba(255,255,255,.06); padding: .7rem 1rem; }
.kobis-bar p { margin: 0; font-size: .72rem; font-weight: 300; color: rgba(255,255,255,.85); }
.kobis-bar .kobis-link { color: inherit; text-decoration: none; font-weight: 600; transition: .2s; }
.kobis-bar .kobis-link:hover {
  background: linear-gradient(135deg, var(--orange-lt), var(--orange), var(--navy-500));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ---------- Responsive -------------------------------------------- */
@media (max-width: 860px) {
  .pillars-grid { grid-template-columns: 1fr 1fr; }
  .foot-inner { grid-template-columns: 1fr; gap: 1.6rem; text-align: center; }
  .foot-brand .logo { margin-left: auto; margin-right: auto; }
  .foot-brand p, .foot-org-sub, .foot-fine { max-width: 40ch; margin-left: auto; margin-right: auto; }
}
@media (max-width: 600px) {
  .grid-2 { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr; }
  .ai-row { grid-template-columns: 1fr; gap: .2rem; }
  .card { padding: 1.3rem; }
  .hero-inner { padding: 3rem 1.25rem; }
  .progress { top: 64px; }
}

/* =====================================================================
   Admin dashboard
   ===================================================================== */
.admin-wrap { max-width: 1180px; margin: 2rem auto; padding: 0 1.25rem; }
.admin-head { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1.5rem; }
.admin-head h1 { font-size: 1.6rem; margin: 0; }
.kpis { display: grid; grid-template-columns: repeat(5,1fr); gap: 1rem; margin-bottom: 1.5rem; }
.kpi { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.1rem 1.2rem; box-shadow: var(--shadow); }
.kpi strong { display: block; font-size: 1.9rem; font-weight: 900; color: var(--navy-800); }
.kpi span { font-size: .8rem; color: var(--muted); }
.kpi.accent { background: linear-gradient(150deg,var(--navy-800),var(--navy-900)); color: #fff; }
.kpi.accent strong { color: var(--orange-lt); }
.kpi.accent span { color: #9fb4d1; }

.toolbar { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 1rem; align-items: center; }
.toolbar input, .toolbar select { width: auto; }
.toolbar .spacer { flex: 1; }

.table-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
table.subs { width: 100%; border-collapse: collapse; font-size: .88rem; }
table.subs th { text-align: left; background: var(--paper); color: var(--muted); font-weight: 700; font-size: .72rem; text-transform: uppercase; letter-spacing: .05em; padding: .8rem 1rem; border-bottom: 1px solid var(--line); }
table.subs td { padding: .8rem 1rem; border-bottom: 1px solid var(--line); vertical-align: middle; }
table.subs tr:hover td { background: #fbfcfe; cursor: pointer; }
.score-pill { display: inline-grid; place-items: center; min-width: 38px; height: 28px; border-radius: 999px; font-weight: 800; font-size: .82rem; color: #fff; padding: 0 .5rem; }
.status-tag { font-size: .74rem; font-weight: 700; padding: .25rem .6rem; border-radius: 999px; background: rgba(31,74,122,.1); color: var(--navy-700); white-space: nowrap; }
.empty { text-align: center; padding: 3rem; color: var(--muted); }

/* drawer */
.drawer-back { position: fixed; inset: 0; background: rgba(8,24,47,.5); backdrop-filter: blur(2px); display: none; z-index: 300; }
.drawer-back.open { display: block; }
.drawer { position: fixed; top: 0; right: 0; height: 100%; width: min(560px, 100%); background: var(--paper); box-shadow: var(--shadow-lg); transform: translateX(100%); transition: transform .3s var(--ease); z-index: 310; overflow-y: auto; }
.drawer.open { transform: none; }
.drawer-head { position: sticky; top: 0; background: var(--navy-900); color: #fff; padding: 1.2rem 1.4rem; display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; }
.drawer-head h2 { margin: 0; font-size: 1.2rem; }
.drawer-head .x { background: none; border: 0; color: #fff; font-size: 1.6rem; cursor: pointer; line-height: 1; }
.drawer-body { padding: 1.4rem; }
.d-section { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 1rem 1.1rem; margin-bottom: 1rem; }
.d-section h4 { margin: 0 0 .6rem; font-size: .76rem; text-transform: uppercase; letter-spacing: .06em; color: var(--orange-2); }
.d-row { display: grid; grid-template-columns: 130px 1fr; gap: .6rem; font-size: .86rem; padding: .3rem 0; border-bottom: 1px solid #f1f4f8; }
.d-row:last-child { border-bottom: 0; }
.d-row .k { color: var(--muted); }
.d-row a { word-break: break-all; }
.d-actions { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: .5rem; }
.gen-output { background: var(--navy-900); color: #d7e3f5; border-radius: var(--radius-sm); padding: 1rem; font-size: .82rem; white-space: pre-wrap; margin-top: .8rem; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; max-height: 340px; overflow: auto; }
@media (max-width: 760px){ .kpis{ grid-template-columns:1fr 1fr; } .admin-wrap{ margin-top:1rem; } table.subs .hide-sm{ display:none; } }

/* =====================================================================
   v2 — Landing (brand register) + short form + pipeline dashboard
   ===================================================================== */

/* nav + button variants */
.head-nav { display: none; gap: 1.4rem; }
.head-nav a { color: var(--navy-700); text-decoration: none; font-weight: 600; font-size: .9rem; }
.head-nav a:hover { color: var(--orange-2); }
@media (min-width: 880px) { .head-nav { display: flex; } }
.btn-lg { padding: .95rem 1.7rem; font-size: 1.02rem; }
.btn-outline { background: transparent; color: var(--navy-800); border: 1.5px solid var(--navy-800); }
.btn-outline:hover { background: var(--navy-800); color: #fff; }
.btn-outline-light { background: rgba(255,255,255,.06); color: #fff; border: 1.5px solid rgba(255,255,255,.4); }
.btn-outline-light:hover { background: rgba(255,255,255,.16); border-color: #fff; }

/* shared section frame */
.lp-wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 1.25rem; }
.lp-section { padding: 4.2rem 0; }
.section-head { max-width: 60ch; margin-bottom: 2.2rem; }
.section-head h2 { font-size: clamp(1.6rem, 3.5vw, 2.3rem); font-weight: 800; text-wrap: balance; }
.section-head p { color: var(--muted); font-size: 1.05rem; }

/* ---- HERO ---- */
.lp-hero { position: relative; overflow: hidden; color: #fff;
  background: radial-gradient(1100px 480px at 78% -8%, var(--navy-600), transparent 62%), linear-gradient(155deg, var(--navy-800), var(--navy-900)); }
.lp-hero::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: 46px 46px; mask-image: radial-gradient(820px 360px at 72% 8%, #000, transparent 72%); }
.lp-hero-inner { position: relative; z-index: 1; max-width: var(--maxw); margin: 0 auto; padding: 3.6rem 1.25rem 4rem;
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 2.4rem; align-items: center; }
.champion-tag { display: inline-block; font-size: .76rem; font-weight: 700; letter-spacing: .04em; color: #ffd9b3;
  background: rgba(244,124,32,.14); border: 1px solid rgba(244,124,32,.34); padding: .4rem .85rem; border-radius: 999px; }
.lp-hero-copy h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 900; margin: 1rem 0; letter-spacing: -.02em; text-wrap: balance; }
.lp-hero-copy h1 .accent { color: var(--orange); }
.lp-hero-copy .sub { font-size: clamp(1rem, 1.6vw, 1.18rem); color: #cddcf0; max-width: 52ch; }
.lp-hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin: 1.8rem 0 1.4rem; }
.lp-trust-row { display: flex; flex-wrap: wrap; align-items: center; gap: .5rem; font-size: .82rem; color: #9fb4d1; }
.lp-trust-row strong { color: #e7eefa; }
/* portrait */
.lp-hero-portrait { display: flex; justify-content: center; }
.portrait-frame { position: relative; width: 100%; max-width: 330px; aspect-ratio: 4/5; border-radius: 22px;
  background: linear-gradient(160deg, var(--navy-600), var(--navy-900)); border: 1px solid rgba(255,255,255,.14);
  box-shadow: var(--shadow-lg); overflow: hidden; }
.portrait-photo { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
/* blend the studio headshot into the navy hero: warm glow up top,
   crisp through the face, navy melt at the bottom so the badge seats. */
.portrait-frame::after { content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(244,124,32,.16) 0%, transparent 24%),
    radial-gradient(130% 80% at 50% -6%, transparent 58%, rgba(8,24,47,.30)),
    linear-gradient(180deg, transparent 42%, rgba(8,24,47,.55) 78%, var(--navy-900) 100%); }
.portrait-img { width: 100%; height: 100%; display: grid; place-items: center; font-size: 4rem; font-weight: 900;
  color: rgba(255,255,255,.16); letter-spacing: .1em;
  background: radial-gradient(120% 90% at 50% 0%, rgba(244,124,32,.22), transparent 60%); }
.portrait-badge { position: absolute; left: 12px; right: 12px; bottom: 12px; z-index: 2; background: rgba(8,24,47,.7);
  backdrop-filter: blur(6px); border: 1px solid rgba(255,255,255,.14); border-radius: 12px; padding: .7rem .9rem; }
.portrait-badge strong { display: block; color: #fff; font-size: .98rem; }
.portrait-badge span { color: var(--orange-lt); font-size: .8rem; font-weight: 600; }

/* ---- pillars ---- */
.pillar-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.pillar-row .pillar { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.3rem; box-shadow: var(--shadow); }
.pillar-row .ic { width: 44px; height: 44px; border-radius: 12px; background: rgba(244,124,32,.12); display: grid; place-items: center; font-size: 1.3rem; margin-bottom: .7rem; }
.pillar-row h3 { font-size: 1.02rem; margin-bottom: .25rem; }
.pillar-row p { font-size: .85rem; color: var(--muted); margin: 0; }
.progress-pledge { margin-top: 2.4rem; max-width: 620px; }
.pledge-bar { height: 12px; border-radius: 999px; background: var(--line); overflow: hidden; }
.pledge-fill { height: 100%; width: 0; border-radius: 999px; background: linear-gradient(90deg, var(--orange), var(--orange-2)); transition: width 1.1s cubic-bezier(.16,1,.3,1); }
.progress-pledge p { margin-top: .7rem; color: var(--navy-700); font-weight: 600; }
.progress-pledge strong { color: var(--orange-2); font-size: 1.15rem; }

/* ---- offer ---- */
.lp-offer { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.offer-banner { background: linear-gradient(150deg, var(--navy-800), var(--navy-900)); color: #fff; border-radius: 20px;
  padding: 2.2rem; box-shadow: var(--shadow-lg); }
.offer-flag { display: inline-block; font-size: .78rem; font-weight: 700; color: #ffd9b3; background: rgba(244,124,32,.16);
  border: 1px solid rgba(244,124,32,.34); padding: .35rem .8rem; border-radius: 999px; margin-bottom: 1rem; }
.offer-banner h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 900; margin: 0 0 .4rem; }
.price-now { color: var(--orange); }
.price-was { color: #b9c8de; }
.price-was strong { color: #fff; }
.offer-banner .btn { margin-top: 1.2rem; }
.offer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(248px, 1fr)); gap: .65rem 1.4rem; }
.offer-item { display: flex; gap: .7rem; align-items: flex-start; padding: .65rem 0; border-bottom: 1px solid var(--line); }
.offer-check { width: 22px; height: 22px; color: var(--ok); flex: none; margin-top: 2px; }
.offer-item b { display: block; font-size: .94rem; color: var(--ink); }
.offer-item span { font-size: .82rem; color: var(--muted); }

/* ---- how ---- */
.how-steps { list-style: none; counter-reset: s; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.how-steps li { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; box-shadow: var(--shadow); }
.how-n { display: inline-grid; place-items: center; width: 38px; height: 38px; border-radius: 10px; background: var(--navy-800); color: var(--orange); font-weight: 900; margin-bottom: .8rem; }
.how-steps h3 { font-size: 1.1rem; }
.how-steps p { font-size: .9rem; color: var(--muted); margin: 0; }

/* ---- support ---- */
.lp-support { background: linear-gradient(160deg, #fff, var(--paper)); }
.support-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.4rem; align-items: center; }
.support-quote .q { font-size: clamp(1.2rem, 2.4vw, 1.7rem); font-weight: 700; color: var(--navy-800); line-height: 1.35; text-wrap: balance; }
.support-quote .q-by { color: var(--muted); font-weight: 600; }
.support-cta h2 { font-size: 1.7rem; }
.support-actions { display: flex; flex-wrap: wrap; gap: .7rem; margin: 1rem 0; }
.support-tags { font-size: .82rem; color: var(--muted); }

/* ---- final ---- */
.lp-final { background: var(--navy-900); color: #fff; text-align: center; padding: 4rem 0; }
.lp-final h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 900; }
.lp-final p { color: #b9c8de; margin-bottom: 1.6rem; }

/* ---- activate intro ---- */
.activate-intro { background: linear-gradient(155deg, var(--navy-800), var(--navy-900)); color: #fff; padding: 2.6rem 0 2.2rem; }
.activate-intro h1 { font-size: clamp(1.7rem, 4vw, 2.4rem); font-weight: 900; }
.activate-intro p { color: #c7d6ec; max-width: 56ch; margin: 0; }

/* ---- smart link chips ---- */
.smart-detected { display: flex; flex-wrap: wrap; gap: .5rem; margin: .4rem 0 .2rem; }
.detected-chip { display: inline-flex; align-items: center; gap: .45rem; background: rgba(31,157,107,.1);
  border: 1px solid rgba(31,157,107,.3); color: var(--navy-800); border-radius: 999px; padding: .4rem .8rem; font-size: .84rem; font-weight: 600;
  animation: pop .25s cubic-bezier(.16,1,.3,1); }
.detected-chip .dc-ic { font-size: .95rem; }
.detected-chip .dc-host { color: var(--muted); font-weight: 400; font-size: .76rem; }
@keyframes pop { from { transform: scale(.85); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.hint-inline { font-weight: 400; color: var(--muted); font-size: .8rem; }

/* dropzone refinements */
.dropzone .dz-ic { font-size: 1.8rem; display: block; margin-bottom: .4rem; }
.dropzone strong { display: block; color: var(--navy-700); }

/* more toggle */
.more-toggle { border: 1px solid var(--line); border-radius: var(--radius-sm); padding: .4rem 1rem; margin: 1rem 0; background: var(--paper); }
.more-toggle summary { cursor: pointer; font-weight: 600; color: var(--navy-700); padding: .5rem 0; }
.more-toggle[open] summary { margin-bottom: .6rem; }

/* consent */
.consent-block { margin-top: 1rem; display: grid; gap: .6rem; }
.chip.consent { display: flex; width: 100%; text-align: left; align-items: flex-start; }
.chip.consent span { font-weight: 500; }
.ai-sub { color: #9fb4d1; font-size: .85rem; margin: -.4rem 0 .6rem; }

/* ---- dashboard additions ---- */
.lead-head { display: flex; align-items: center; gap: .9rem; margin-bottom: .7rem; }
.score-pill.big { height: 44px; min-width: 54px; font-size: 1.15rem; }
ul.rec { margin: .2rem 0; padding-left: 1.1rem; }
.d-section.pipeline { background: #fff; border: 1px solid var(--orange); box-shadow: 0 6px 18px rgba(244,124,32,.12); }
.pipe-note { font-size: .82rem; color: var(--muted); margin: 0 0 .7rem; }
.drive-note { font-size: .8rem; color: var(--navy-600); background: var(--paper); border-radius: 8px; padding: .5rem .7rem; margin: .7rem 0; word-break: break-word; }
.zip-zone { border: 2px dashed var(--line); border-radius: var(--radius-sm); padding: 1.3rem; text-align: center; color: var(--muted); cursor: pointer; transition: .2s; }
.zip-zone:hover, .zip-zone.drag { border-color: var(--orange); background: rgba(244,124,32,.05); }
.zip-zone.filled { border-style: solid; border-color: var(--ok); background: rgba(31,157,107,.05); cursor: default; text-align: left; }
.zip-zone .zip-ic { font-size: 1.5rem; display: block; }
.zip-zone strong { color: var(--navy-700); display: block; margin-top: .2rem; }
.zip-filled { display: flex; align-items: center; gap: .8rem; }
.zip-filled .zip-ic { font-size: 1.8rem; }
.zip-filled b { display: block; font-size: .9rem; color: var(--navy-800); }
.zip-filled span { font-size: .78rem; color: var(--muted); }

@media (max-width: 880px) {
  .lp-hero-inner { grid-template-columns: 1fr; }
  .lp-hero-portrait { order: -1; }
  .portrait-frame { max-width: 240px; }
  .pillar-row { grid-template-columns: 1fr 1fr; }
  .how-steps { grid-template-columns: 1fr; }
  .support-grid { grid-template-columns: 1fr; gap: 1.4rem; }
}
@media (max-width: 560px) {
  .pillar-row { grid-template-columns: 1fr; }
  .offer-banner { padding: 1.5rem; }
}

/* ---- language switch (EN · BM · 中 · IB) ---- */
.lang-switch { display: inline-flex; border: 1.5px solid var(--line); border-radius: 999px; overflow: hidden; background: #fff; }
.lang-switch button { appearance: none; border: 0; background: transparent; cursor: pointer; font: inherit;
  font-weight: 700; font-size: .76rem; color: var(--muted); padding: .34rem .55rem; line-height: 1; transition: .15s; }
.lang-switch button + button { border-left: 1px solid var(--line); }
.lang-switch button:hover { color: var(--navy-800); background: var(--paper); }
.lang-switch button.active { background: var(--navy-800); color: #fff; }
@media (max-width: 420px) { .lang-switch button { padding: .3rem .42rem; font-size: .72rem; } }

/* ---- mobile header: stop the language toggle + CTA from cramping ---- */
@media (max-width: 600px) {
  .head-inner { flex-wrap: wrap; gap: .45rem .6rem; padding: .55rem .95rem; }
  .head-cta { flex: 1 1 100%; justify-content: flex-end; }
  .head-cta .btn-primary { padding: .5rem .85rem; font-size: .82rem; }
}
@media (max-width: 360px) {
  .head-cta .btn-primary { padding: .45rem .65rem; font-size: .76rem; }
  .lang-switch button { padding: .3rem .38rem; font-size: .7rem; }
}

/* ---- pipeline: 2-step + embedded package list ---- */
.pipe-step { font-size: .82rem; font-weight: 700; color: var(--navy-700); margin: 1rem 0 .5rem; }
.pipe-step:first-of-type { margin-top: .4rem; }
.zip-info { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: .15rem; }
.zip-info .pf { font-size: .82rem; color: var(--navy-800); font-weight: 600; }
.zip-info .pf em { color: var(--muted); font-weight: 400; font-style: normal; }
.zip-info .zip-meta { font-size: .74rem; color: var(--muted); margin-top: .2rem; }

/* portrait photo (real headshot; falls back to AK initials) */
.portrait-photo { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }

/* =====================================================================
   v3 — Digital violet glow-up (impeccable: bolder · colorize · delight)
   Navy base · orange action · electric-violet digital shine
   ===================================================================== */

/* hero gets violet + indigo ambient light over the navy */
.lp-hero {
  background:
    radial-gradient(900px 440px at 10% -4%, rgba(124,58,237,.34), transparent 60%),
    radial-gradient(1100px 520px at 90% -10%, rgba(99,102,241,.24), transparent 62%),
    linear-gradient(155deg, var(--navy-800), var(--navy-900));
}
.aurora { position: absolute; z-index: 0; border-radius: 50%; filter: blur(72px); opacity: .55; pointer-events: none; }
.aurora-1 { width: 520px; height: 520px; left: -130px; top: -170px;
  background: radial-gradient(circle, rgba(124,58,237,.6), transparent 65%); animation: auroraDrift 16s ease-in-out infinite alternate; }
.aurora-2 { width: 460px; height: 460px; right: -110px; bottom: -190px;
  background: radial-gradient(circle, rgba(255,106,0,.32), transparent 65%); animation: auroraDrift 21s ease-in-out infinite alternate-reverse; }

.champion-tag {
  background: linear-gradient(120deg, rgba(139,92,246,.20), rgba(244,124,32,.14));
  border-color: rgba(139,92,246,.42); color: #ead9ff;
}

/* verify link (in hero copy) */
.verify-link { display: inline-flex; align-items: center; gap: .7rem; margin-top: 1.5rem;
  padding: .55rem .95rem .55rem .6rem; border-radius: 14px; text-decoration: none; color: #eaf0fb;
  background: linear-gradient(120deg, rgba(139,92,246,.20), rgba(255,106,0,.10));
  border: 1px solid rgba(139,92,246,.4); backdrop-filter: blur(6px); transition: transform .2s var(--ease), box-shadow .2s, border-color .2s; }
.verify-link:hover { transform: translateY(-2px); border-color: var(--violet-400); box-shadow: 0 12px 30px rgba(124,58,237,.34); }
.verify-check { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 9px; flex: none;
  background: linear-gradient(150deg, var(--violet-500), var(--indigo)); color: #fff; font-weight: 900; box-shadow: 0 4px 12px rgba(124,58,237,.5); }
.verify-link b { display: block; font-size: .86rem; color: #fff; }
.verify-link em { font-style: normal; font-size: .76rem; color: #bcc6ec; }
.verify-ext { color: var(--violet-300); font-weight: 800; margin-left: .1rem; }

/* ---- stylish portrait composition ---- */
.portrait-stack { position: relative; width: min(360px, 100%); margin-inline: auto; isolation: isolate; }
.orb { position: absolute; border-radius: 50%; filter: blur(46px); z-index: 0; }
.orb-1 { width: 250px; height: 250px; left: -46px; top: -34px;
  background: radial-gradient(circle, rgba(139,92,246,.85), transparent 70%); animation: orbFloat 9s ease-in-out infinite alternate; }
.orb-2 { width: 230px; height: 230px; right: -54px; bottom: -26px;
  background: radial-gradient(circle, rgba(255,106,0,.6), transparent 70%); animation: orbFloat 12s ease-in-out infinite alternate-reverse; }
.spark { position: absolute; width: 8px; height: 8px; border-radius: 50%; background: #fff; z-index: 3; }
.spark-1 { top: 7%; right: 5%; box-shadow: 0 0 12px 2px var(--violet-300); animation: twinkle 3s ease-in-out infinite; }
.spark-2 { bottom: 16%; left: 1%; width: 6px; height: 6px; box-shadow: 0 0 10px 2px var(--orange-lt); animation: twinkle 2.4s ease-in-out infinite .6s; }

.portrait-frame { position: relative; z-index: 2; padding: 3px; border-radius: 26px; max-width: none; aspect-ratio: auto;
  background: linear-gradient(150deg, var(--violet-400), var(--orange) 55%, var(--violet-600)); border: 0;
  box-shadow: 0 30px 70px -22px rgba(124,58,237,.6), 0 12px 32px rgba(8,24,47,.5);
  animation: floaty 6s ease-in-out infinite alternate; }
.portrait-frame::after { content: none; }
.portrait-inner { position: relative; border-radius: 23px; overflow: hidden; aspect-ratio: 4/5;
  background: linear-gradient(160deg, var(--navy-600), var(--navy-900)); }
.portrait-inner::after { content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(139,92,246,.18) 0%, transparent 24%),
    radial-gradient(130% 80% at 50% -6%, transparent 56%, rgba(8,24,47,.30)),
    linear-gradient(180deg, transparent 42%, rgba(8,24,47,.5) 76%, var(--navy-900) 100%); }
.portrait-badge { z-index: 2; }

.verify-chip { position: absolute; z-index: 4; top: 14px; left: -8px; display: inline-flex; align-items: center; gap: .45rem;
  padding: .42rem .72rem; border-radius: 999px; text-decoration: none; color: #fff; font-size: .74rem; font-weight: 700;
  background: rgba(8,24,47,.72); backdrop-filter: blur(8px); border: 1px solid rgba(139,92,246,.5);
  box-shadow: 0 8px 24px rgba(124,58,237,.4); transition: transform .2s var(--ease), border-color .2s; }
.verify-chip:hover { transform: translateY(-2px); border-color: var(--violet-400); }
.vc-dot { width: 8px; height: 8px; border-radius: 50%; background: #33d17a; box-shadow: 0 0 0 0 rgba(51,209,122,.6); animation: pulse 2s infinite; }

/* ---- purple sprinkled across the page ---- */
.pillar-row .ic { background: linear-gradient(150deg, rgba(139,92,246,.20), rgba(244,124,32,.16)); }
.pillar-row .pillar { transition: transform .2s var(--ease), box-shadow .25s var(--ease), border-color .2s; }
.pillar-row .pillar:hover { transform: translateY(-5px); box-shadow: 0 20px 44px -16px rgba(124,58,237,.4); border-color: rgba(139,92,246,.4); }
.pledge-fill { background: linear-gradient(90deg, var(--orange), var(--violet-500)); }
.progress-pledge strong { color: var(--violet-400); }

.lp-offer { border-top: 1px solid rgba(139,92,246,.2); }
.offer-banner { position: relative; overflow: hidden;
  background: radial-gradient(620px 320px at 100% 0%, rgba(124,58,237,.45), transparent 60%), linear-gradient(150deg, var(--navy-800), var(--navy-900));
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(139,92,246,.18); }
.offer-flag { background: rgba(139,92,246,.18); border-color: rgba(139,92,246,.4); color: #ead9ff; }
.offer-item { transition: transform .15s var(--ease); }
.offer-item:hover { transform: translateX(3px); }
.offer-check { color: var(--violet-400); }

.how-n { background: linear-gradient(150deg, var(--violet-600), var(--indigo)); color: #fff; box-shadow: 0 6px 16px rgba(124,58,237,.4); }
.how-steps li { transition: transform .2s var(--ease), box-shadow .25s var(--ease), border-color .2s; }
.how-steps li:hover { transform: translateY(-5px); box-shadow: 0 20px 44px -18px rgba(124,58,237,.34); border-color: rgba(139,92,246,.35); }

.btn-primary { box-shadow: 0 8px 22px rgba(244,124,32,.34), 0 0 0 0 rgba(139,92,246,0); }
.btn-primary:hover { box-shadow: 0 12px 28px rgba(244,124,32,.45), 0 6px 24px rgba(124,58,237,.3); }
.btn-outline-light:hover { box-shadow: 0 8px 26px rgba(124,58,237,.3); }

.lp-final { background: radial-gradient(720px 340px at 50% -10%, rgba(124,58,237,.4), transparent 62%), var(--navy-900); }

/* sticky CTA shimmer on the header button */
.site-head .btn-primary { background: linear-gradient(135deg, var(--orange), var(--orange-2)); }

/* ---- keyframes + reduced motion ---- */
@keyframes orbFloat { from { transform: translate(0,0); } to { transform: translate(16px,-20px); } }
@keyframes auroraDrift { from { transform: translate(0,0) scale(1); } to { transform: translate(42px,28px) scale(1.14); } }
@keyframes twinkle { 0%,100% { opacity: .25; transform: scale(.7); } 50% { opacity: 1; transform: scale(1); } }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(51,209,122,.55); } 70% { box-shadow: 0 0 0 7px rgba(51,209,122,0); } 100% { box-shadow: 0 0 0 0 rgba(51,209,122,0); } }
@keyframes floaty { from { transform: translateY(0); } to { transform: translateY(-10px); } }
@media (prefers-reduced-motion: reduce) {
  .orb, .aurora, .spark, .vc-dot, .portrait-frame { animation: none !important; }
}

/* ---- dashboard: how-it-works strip + Stage C preview row ---- */
.how-strip { display: flex; flex-wrap: wrap; align-items: center; gap: .5rem 1rem; margin-bottom: 1.2rem;
  padding: .8rem 1.1rem; border-radius: var(--radius-sm); font-size: .86rem; color: var(--navy-700);
  background: linear-gradient(120deg, rgba(139,92,246,.10), rgba(244,124,32,.08)); border: 1px solid rgba(139,92,246,.25); }
.how-strip strong { color: var(--navy-800); }
.how-strip span { display: inline-flex; align-items: center; gap: .4rem; color: var(--muted); }
.how-strip span b { display: grid; place-items: center; width: 20px; height: 20px; border-radius: 6px; font-size: .72rem;
  background: var(--navy-800); color: #fff; }
.preview-row { display: flex; gap: .5rem; margin-bottom: .7rem; }
.preview-row input { flex: 1; }

/* ---- Stage C: live message copywriting preview ---- */
.msg-preview { display: grid; grid-template-columns: 1fr 1fr; gap: .7rem; margin-bottom: .3rem; }
@media (max-width: 760px){ .msg-preview { grid-template-columns: 1fr; } }
.msg-card { background: var(--navy-900); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius-sm); padding: .7rem .8rem; }
.msg-card-head { display: flex; align-items: center; justify-content: space-between; gap: .5rem;
  font-size: .82rem; font-weight: 700; color: #cfe0f5; margin-bottom: .45rem; }
.msg-card-head em { color: #ff9b6b; font-weight: 500; font-style: normal; }
.msg-subj { font-size: .8rem; color: #9fb3cf; margin-bottom: .4rem; }
.msg-subj b { color: #cfe0f5; }
.msg-body { white-space: pre-wrap; word-break: break-word; font-size: .8rem; line-height: 1.45;
  color: #d7e3f5; margin: 0; font-family: inherit; max-height: 220px; overflow: auto; }
.btn.is-off { opacity: .55; }

/* ---- Stage C: client open counter ---- */
.opens-row { display: flex; flex-wrap: wrap; align-items: center; gap: .6rem; margin-top: .7rem; }
.opens-pill { display: inline-flex; align-items: center; gap: .4rem; font-size: .9rem; font-weight: 700; color: var(--navy-800);
  background: rgba(139,92,246,.12); border: 1px solid rgba(139,92,246,.3); border-radius: 999px; padding: .4rem .8rem; }
.opens-pill b { font-size: 1.05rem; color: var(--violet-600); }
.opens-hint { font-size: .78rem; color: var(--muted); flex-basis: 100%; }

/* =====================================================================
   Checkout / pay page
   ===================================================================== */
.pay-hero { position: relative; overflow: hidden; color: #fff;
  background: radial-gradient(900px 420px at 10% -10%, rgba(124,58,237,.34), transparent 60%),
              radial-gradient(900px 460px at 92% -10%, rgba(244,124,32,.22), transparent 62%),
              linear-gradient(155deg, var(--navy-800), var(--navy-900)); }
.pay-hero-inner { position: relative; z-index: 1; padding: 3rem 1.25rem 2.4rem; text-align: center; }
.pay-hero h1 { font-size: clamp(1.8rem, 4.5vw, 3rem); font-weight: 900; margin: .8rem 0 .4rem; }
.pay-hero h1 .accent { color: var(--orange); }
.pay-hero .sub { color: #cddcf0; max-width: 54ch; margin: 0 auto; }

.pay-wrap { margin: -1.4rem auto 3rem; position: relative; z-index: 5; }
.pay-grid { display: grid; grid-template-columns: 1.6fr .9fr; gap: 1.4rem; align-items: start; }
.pay-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 1.6rem; margin-bottom: 1.4rem; }

.base-card { border: 2px solid rgba(244,124,32,.4); }
.base-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.1rem; }
.base-head h2 { font-size: 1.4rem; margin: 0; }
.base-sub { color: var(--muted); font-size: .9rem; margin: .2rem 0 0; }
.base-price { text-align: right; line-height: 1.1; }
.base-price .was { display: block; color: var(--muted); text-decoration: line-through; font-size: .9rem; }
.base-price strong { font-size: 2.1rem; font-weight: 900; color: var(--navy-800); }
.base-price .off { display: inline-block; margin-top: .2rem; font-size: .72rem; font-weight: 800; color: #fff;
  background: var(--orange-2); padding: .15rem .5rem; border-radius: 6px; }
.incl-grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: .45rem 1rem; }
.incl-grid li { display: flex; align-items: center; gap: .5rem; font-size: .88rem; color: var(--ink); }
.incl-grid svg { width: 17px; height: 17px; color: var(--ok); flex: none; }
.free-badge { display: inline-block; font-size: .6rem; font-weight: 800; letter-spacing: .04em; line-height: 1;
  color: #fff; background: var(--ok); padding: .2rem .4rem; border-radius: 999px; vertical-align: middle; }
.offer-item .free-badge { font-size: .62rem; margin-left: .25rem; }
.offer-item.is-free .offer-check, .incl-grid li.is-free svg { color: var(--orange-2); }

.addon-title { font-size: 1.15rem; margin: 0; }
.addon-title span { color: var(--muted); font-weight: 500; font-size: .9rem; }
.addon-lead { color: var(--muted); font-size: .88rem; margin: .3rem 0 1rem; }
.addon-list { display: grid; gap: .6rem; }
.addon { display: flex; align-items: center; gap: .8rem; padding: .8rem .9rem; border: 1.5px solid var(--line);
  border-radius: var(--radius-sm); cursor: pointer; transition: all .15s var(--ease); }
.addon:hover { border-color: var(--violet-400); }
.addon.checked { border-color: var(--violet-500); background: rgba(139,92,246,.07); }
.addon input { width: 18px; height: 18px; flex: none; accent-color: var(--violet-600); }
.addon-info { flex: 1; min-width: 0; }
.addon-info b { display: block; font-size: .92rem; }
.addon-info em { font-style: normal; font-size: .8rem; color: var(--muted); }
.addon-price { font-weight: 800; color: var(--violet-600); white-space: nowrap; }

.pay-side { position: sticky; top: 96px; }
.summary h3 { font-size: 1.15rem; margin: 0 0 .8rem; }
.sum-rows { display: grid; gap: .5rem; padding-bottom: .8rem; border-bottom: 1px solid var(--line); }
.sum-row { display: flex; justify-content: space-between; font-size: .9rem; color: var(--ink); }
.sum-row.base { font-weight: 600; }
.sum-total { display: flex; justify-content: space-between; align-items: center; margin: .9rem 0 1.1rem; }
.sum-total span { font-weight: 600; }
.sum-total strong { font-size: 1.7rem; font-weight: 900; color: var(--navy-800); }
.pay-cta { width: 100%; justify-content: center; }
.pay-trust { display: flex; flex-wrap: wrap; gap: .4rem .9rem; justify-content: center; margin-top: 1rem; font-size: .76rem; color: var(--muted); }
.pay-methods { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--line); }
.pay-methods p { font-size: .82rem; color: var(--muted); margin: 0 0 .4rem; }
.pay-methods strong { color: var(--navy-700); }

@media (max-width: 880px) {
  .pay-grid { grid-template-columns: 1fr; }
  .pay-side { position: static; }
}
@media (max-width: 520px) {
  .incl-grid { grid-template-columns: 1fr; }
}
