/* partners.css — shared design system for the Helm Signage partner/reseller
   site (public/partners/). Same structural approach as
   public/css/marketing.css (Flagship's site), but a distinct palette
   matching the REAL, already-established Helm dashboard brand
   (helmBrandMark() in public/dashboard/dashboard.js: navy #112449 ink,
   gold #C9A227 accent, "Baloo 2" wordmark font) rather than reusing
   Flagship's black/gold - two related but visually distinct properties,
   not a reskin of one another. 2026-08-25. */

:root {
  --bg: #0a1128;
  --bg-raised: #0f1a3d;
  --bg-card: #122050;
  --border: rgba(255, 255, 255, 0.09);
  --border-strong: rgba(255, 255, 255, 0.16);
  --gold: #c9a227;
  --gold-bright: #e6c14a;
  --gold-dim: #8a6f1c;
  --text: #f4f6fb;
  --text-muted: #aab2cc;
  --text-faint: #6d76a0;
  --radius: 14px;
  --radius-sm: 8px;
  --max-w: 1160px;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "General Sans", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: "Baloo 2", "General Sans", sans-serif;
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1em; color: var(--text-muted); }
a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-bright); }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

.gold-text {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold) 55%, var(--gold-dim));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10, 17, 40, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo svg { height: 60px; width: auto; display: block; }
.nav-logo .wordmark { font-family: "Baloo 2", sans-serif; font-weight: 800; font-size: 1.15rem; color: var(--text); letter-spacing: 0.01em; }
.nav-logo .wordmark span { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { color: var(--text-muted); font-size: 0.94rem; font-weight: 500; }
.nav-links a:hover { color: var(--text); }
.nav-links .btn { color: var(--bg); }

/* ---------- Currency toggle (2026-08-25, display-only) ---------- */
.currency-select {
  background: var(--bg-raised); color: var(--text-muted); border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm); padding: 6px 10px; font-size: 0.82rem; font-family: inherit;
  cursor: pointer;
}
.currency-select:hover { color: var(--text); border-color: var(--gold); }
.currency-select:focus-visible { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.35); }
[data-usd].cvt-active { color: var(--gold-bright); }
.currency-note {
  display: none; text-align: center; font-size: 0.78rem; color: var(--text-faint);
  max-width: 640px; margin: -8px auto 32px; font-style: italic;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 26px; border-radius: 999px; font-weight: 700; font-size: 0.95rem;
  cursor: pointer; border: none; transition: transform 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap; font-family: "General Sans", sans-serif;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #1a1400;
  box-shadow: 0 8px 24px rgba(201, 162, 39, 0.28);
}
.btn-primary:hover { box-shadow: 0 10px 30px rgba(201, 162, 39, 0.42); color: #1a1400; }
.btn-ghost { background: transparent; color: var(--text); border: 1px solid var(--border-strong); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-bright); }
.btn-lg { padding: 16px 34px; font-size: 1.02rem; }
.btn-block { width: 100%; }
.btn[disabled] { opacity: 0.6; cursor: default; transform: none; }

/* ---------- Hero ---------- */
.hero { padding: 100px 0 70px; text-align: center; position: relative; overflow: hidden; }
.hero-logo-mark { display: flex; flex-direction: column; align-items: center; gap: 12px; margin-bottom: 22px; position: relative; }
.hero-logo-row { display: flex; align-items: center; gap: 16px; }
.hero-logo-icon { height: clamp(46px, 6vw, 68px); width: auto; display: block; }
.hero-logo-word { font-family: "Baloo 2", sans-serif; font-weight: 800; font-size: clamp(2rem, 5vw, 2.9rem); color: #FFFFFF; letter-spacing: 0.01em; line-height: 1; }
.hero-logo-word span { color: #C9A227; }
.hero-logo-tagline { font-family: "General Sans", sans-serif; font-weight: 700; font-size: 0.9rem; letter-spacing: 0.1em; }
.hero-logo-tagline .dim { color: var(--text-faint); }
.hero-logo-tagline .gold { color: #C9A227; }
.hero::before {
  content: ""; position: absolute; top: -20%; left: 50%; transform: translateX(-50%);
  width: 900px; height: 500px;
  background: radial-gradient(ellipse at center, rgba(201, 162, 39, 0.18), transparent 65%);
  pointer-events: none; animation: pulse-glow 6s ease-in-out infinite;
}
@keyframes pulse-glow { 0%, 100% { opacity: 0.75; } 50% { opacity: 1; } }

/* Spotlight (2026-08-25) - real technique ported from Aceternity UI's
   Spotlight component (fetched keyframes, adapted to plain CSS - same
   translate/scale/opacity mechanics, no React/build step needed). A second,
   off-axis radial glow behind the hero that sweeps into place on load,
   layered on top of the existing pulse-glow so the hero has real depth
   instead of one flat centered blob. */
.hero::after {
  content: ""; position: absolute; top: 0; left: 30%; width: 60%; height: 70%;
  background: radial-gradient(ellipse at center, rgba(230, 193, 74, 0.22), transparent 60%);
  pointer-events: none; transform-origin: center;
  animation: spotlight 2s ease 0.4s 1 forwards;
  opacity: 0;
}
@keyframes spotlight {
  0% { opacity: 0; transform: translate(-72%, -62%) scale(0.5); }
  100% { opacity: 1; transform: translate(-50%, -40%) scale(1); }
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; padding: 7px 16px; border-radius: 999px;
  border: 1px solid var(--border-strong); color: var(--gold-bright); font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 24px;
}
.hero h1 { max-width: 820px; margin-left: auto; margin-right: auto; position: relative; }
.hero-sub { max-width: 640px; margin: 22px auto 36px; font-size: 1.15rem; color: var(--text-muted); position: relative; }
.hero-pills { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; margin-bottom: 28px; }
.hero-pill {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  padding: 10px 20px; border-radius: 14px; border: 1px solid var(--border-strong);
  background: var(--bg-raised); text-align: center; min-width: 220px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.hero-pill:hover { border-color: var(--gold); transform: translateY(-1px); }
.hero-pill.featured { border-color: var(--gold); background: linear-gradient(135deg, rgba(201, 162, 39, 0.12), var(--bg-raised)); }
.hero-pill-name { font-family: "Baloo 2", sans-serif; font-weight: 700; font-size: 0.95rem; color: var(--text); }
.hero-pill-desc { font-size: 0.78rem; color: var(--text-faint); }
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }
.hero-note { margin-top: 18px; font-size: 0.86rem; color: var(--text-faint); position: relative; }

section { padding: 70px 0; }
.section-head { text-align: center; max-width: 660px; margin: 0 auto 52px; }
.section-head .eyebrow { margin-bottom: 16px; }
.section-head p { font-size: 1.05rem; }

/* ---------- Screenshot placeholder ---------- */
.shot-placeholder {
  border: 2px dashed var(--border-strong);
  border-radius: var(--radius);
  background: var(--bg-raised);
  aspect-ratio: 16 / 10;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; padding: 24px; text-align: center;
  color: var(--text-faint);
}
.shot-placeholder .shot-icon { font-size: 2.2rem; opacity: 0.5; }
.shot-placeholder .shot-label { font-family: "Baloo 2", sans-serif; font-weight: 700; color: var(--text-muted); font-size: 1rem; }
.shot-placeholder .shot-hint { font-size: 0.82rem; max-width: 320px; }

.shot-img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow);
}
.shot-img-wrap img { display: block; width: 100%; height: auto; }

/* ---------- Feature-proof pairs (screenshot + claim) ---------- */
.proof-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
  margin-bottom: 72px;
}
.proof-row:last-child { margin-bottom: 0; }
.proof-row.reverse .proof-shot { order: 2; }
.proof-row.reverse .proof-copy { order: 1; }
@media (max-width: 820px) {
  .proof-row, .proof-row.reverse { grid-template-columns: 1fr; }
  .proof-row.reverse .proof-shot, .proof-row.reverse .proof-copy { order: initial; }
}
.proof-copy .eyebrow { margin-bottom: 14px; }
.proof-copy h3 { font-size: 1.5rem; margin-bottom: 12px; }
.proof-copy p { font-size: 1rem; }

/* ---------- The Wall (0 vs 500) ---------- */
.wall { position: relative; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 40px; padding: 20px 0; }
@media (max-width: 780px) { .wall { grid-template-columns: 1fr; text-align: center; } .wall-vs { transform: rotate(90deg); } }
.wall-side { text-align: center; }
.wall-num { font-family: "Baloo 2", sans-serif; font-weight: 800; font-size: clamp(4.5rem, 12vw, 8rem); line-height: 1; letter-spacing: -0.02em; }
.wall-side.them .wall-num {
  font-family: "Poppins", sans-serif; font-weight: 800; font-style: italic;
  font-size: clamp(3.2rem, 8vw, 5.5rem);
  color: var(--text-faint); position: relative; margin: 1.6em 0 1.9em;
}
/* The 3.2rem clamp floor above is fine down to ~560px, but on real phones
   (360-430px) "HUNDREDS" at 51px is wide enough to crowd or overflow its
   column, and the prohibit-icon (sized in em off this same font-size)
   inherits the same oversized floor - shrink both together instead of
   letting the icon dominate a word it can no longer sit cleanly inside. */
@media (max-width: 560px) {
  .wall-side.them .wall-num { font-size: clamp(1.8rem, 9vw, 3.2rem); }
}
.prohibit-icon {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 3.6em; height: 3.6em; pointer-events: none;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.4));
}
.wall-side.us .wall-num {
  font-size: clamp(7rem, 20vw, 13rem);
  background: linear-gradient(135deg, var(--gold-bright), var(--gold) 60%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  filter: drop-shadow(0 0 40px rgba(201, 162, 39, 0.35));
}
.wall-label { font-size: 0.95rem; color: var(--text-muted); margin-top: 8px; font-weight: 500; }
.wall-vs {
  font-family: "Baloo 2", sans-serif; font-weight: 700; color: var(--text-faint); font-size: 1rem;
  border: 1px solid var(--border-strong); border-radius: 50%; width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
}

/* ---------- Grid / cards ---------- */
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 860px) { .grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .grid { grid-template-columns: 1fr; } }
.card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; transition: border-color 0.2s ease, transform 0.2s ease; }
.card:hover { border-color: var(--border-strong); transform: translateY(-2px); }
.card .icon { width: 42px; height: 42px; display: flex; align-items: center; justify-content: center; border-radius: 10px; background: rgba(201, 162, 39, 0.14); font-size: 1.3rem; margin-bottom: 16px; }
.card h3 { margin-bottom: 8px; color: var(--text); }
.card p { margin: 0; font-size: 0.93rem; }

/* ---------- Platform carousel (2026-08-27) ----------
   Replaces the static platform grid with a swipeable, snap-scrolling
   carousel - native CSS scroll-snap (touch/trackpad swipe works for free,
   no drag library), with prev/next arrows and dot pagination wired up in
   marketing.js. Cards keep the existing .card styling (border, hover
   lift) and just get a fixed width + centered layout on top of it. */
.platform-carousel { position: relative; display: flex; align-items: center; gap: 12px; }
.carousel-track {
  display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory;
  scroll-behavior: smooth; padding: 6px 4px 10px; flex: 1;
  scrollbar-width: none; -ms-overflow-style: none;
}
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-card {
  flex: 0 0 auto; width: 240px; scroll-snap-align: start;
  text-align: center; display: flex; flex-direction: column; align-items: center;
}
.carousel-card .icon {
  width: 72px; height: 72px; border-radius: 20px;
  margin: 0 auto 18px;
}
.carousel-card .icon svg { width: 34px; height: 34px; color: var(--gold-bright); }
/* Samsung's mark is a wordmark, not a symbol - the default square glyph
   size squeezes it unreadably thin, so it gets a larger box to compensate. */
.carousel-card .icon.icon-wordmark svg { width: 52px; height: 52px; }
.platform-attribution { text-align: center; font-size: 0.76rem; color: var(--text-faint); margin: 10px 0 0; }
.carousel-arrow {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--border-strong); background: var(--bg-raised); color: var(--text);
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
}
.carousel-arrow svg { width: 18px; height: 18px; }
.carousel-arrow:hover { border-color: var(--gold); color: var(--gold-bright); transform: translateY(-1px); }
.carousel-arrow:disabled { opacity: 0.3; cursor: default; pointer-events: none; transform: none; }
.carousel-dots { display: flex; justify-content: center; gap: 8px; margin-top: 14px; }
.carousel-dot { width: 7px; height: 7px; padding: 0; border: none; border-radius: 50%; background: var(--border-strong); cursor: pointer; transition: background 0.2s ease, transform 0.2s ease; }
.carousel-dot:hover { background: var(--text-faint); }
.carousel-dot.active { background: var(--gold); transform: scale(1.3); }
@media (max-width: 640px) {
  .carousel-arrow { display: none; }
}

/* ---------- Reseller vs White Label program cards ---------- */
.program-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 780px) { .program-grid { grid-template-columns: 1fr; } }
.program-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; display: flex; flex-direction: column; }
.program-card.featured { border-color: var(--gold); background: linear-gradient(180deg, rgba(201, 162, 39, 0.08), var(--bg-card) 40%); position: relative; }
.program-card.featured::before {
  content: "Fastest way to start"; position: absolute; top: -12px; left: 30px; background: var(--gold); color: #1a1400;
  font-size: 0.72rem; font-weight: 800; padding: 4px 12px; border-radius: 999px; letter-spacing: 0.03em;
}

/* ---------- Base-rate callout (2026-08-25) ---------- */
.base-rate {
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.1), var(--bg-card) 60%);
  border: 1px solid var(--gold); border-radius: var(--radius); padding: 28px 32px; margin-bottom: 28px;
}
.base-rate-amt { font-family: "Baloo 2", sans-serif; font-weight: 800; font-size: 2.6rem; color: var(--gold-bright); white-space: nowrap; line-height: 1; }
.base-rate-amt sub { font-family: "General Sans", sans-serif; font-weight: 600; font-size: 0.95rem; color: var(--text-muted); }
.base-rate-copy { flex: 1; min-width: 240px; }
.base-rate-copy h3 { font-size: 1.05rem; margin-bottom: 6px; }
.base-rate-copy p { margin: 0; font-size: 0.92rem; }

/* ---------- Margin example table ---------- */
.econ-note { font-size: 0.82rem; color: var(--text-faint); margin-top: 14px; margin-bottom: 0; }
.margin-callout {
  background: var(--bg-card); border: 1px solid var(--border-strong); border-radius: var(--radius);
  padding: 28px 32px; margin-top: 40px;
}
.margin-callout h3 { font-size: 1.3rem; margin-bottom: 4px; }
.margin-callout > p { font-size: 0.95rem; max-width: 620px; }
.sign-shop-note {
  display: flex; gap: 12px; align-items: flex-start; margin-top: 18px; padding: 16px 18px;
  background: var(--bg-raised); border: 1px solid var(--border); border-radius: var(--radius-sm);
}
.sign-shop-note .tag { flex-shrink: 0; font-family: "Baloo 2", sans-serif; font-weight: 800; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--gold-bright); background: rgba(201, 162, 39, 0.14); padding: 4px 10px; border-radius: 999px; }
/* "No hardware? No problem" stamp treatment - a larger, two-line, rotated
   badge instead of the default small pill, so it reads as a stamped seal
   rather than an inline label. Scoped to .tag-stamp only, not every
   .sign-shop-note tag on the page. */
.sign-shop-note .tag.tag-stamp {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  align-self: center; text-align: center; line-height: 1.15;
  font-size: 1.08rem; padding: 16px 14px; min-width: 126px; border-radius: 16px;
  border: 2px solid rgba(201, 162, 39, 0.4);
  transform: rotate(-7deg);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.3);
}
.sign-shop-note p { margin: 0; font-size: 0.9rem; }
.sign-shop-note.featured { border-color: var(--gold); background: linear-gradient(135deg, rgba(201, 162, 39, 0.1), var(--bg-raised)); padding: 20px 22px; }
.sign-shop-note.featured p { font-size: 0.98rem; }
/* Mobile: the nowrap flex row squeezes <p> down to its leftover width once
   the tag/tag-stamp claims its own space - on a ~360-400px phone that's as
   little as 100px, forcing the paragraph into a near-unreadable tall
   sliver (or overflow, for the wide plain-.tag notes). Stack instead. */
@media (max-width: 560px) {
  .sign-shop-note { flex-direction: column; align-items: flex-start; gap: 10px; }
  .sign-shop-note .tag.tag-stamp { align-self: center; }
}

/* ---------- Revenue example (2026-08-25) ---------- */
.revenue-compare { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 900px; margin: 0 auto 28px; }
@media (max-width: 720px) { .revenue-compare { grid-template-columns: 1fr; max-width: 480px; } }
.revenue-example {
  background: var(--bg-card); border: 1px solid var(--gold);
  border-radius: var(--radius); padding: 30px 32px;
}
.revenue-title { font-family: "Baloo 2", sans-serif; font-weight: 800; font-size: 1.2rem; color: var(--text); text-align: center; margin-bottom: 2px; }
.revenue-sub { text-align: center; font-size: 0.82rem; color: var(--text-faint); margin-bottom: 20px; text-transform: uppercase; letter-spacing: 0.04em; font-weight: 700; }
.revenue-rows { list-style: none; margin: 0 0 16px; padding: 0; }
.revenue-rows li { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; padding: 9px 0; border-bottom: 1px dashed var(--border); font-size: 0.92rem; color: var(--text-muted); }
.revenue-rows li span { flex: 1; }
.revenue-rows li b { font-family: "Baloo 2", sans-serif; font-weight: 700; color: var(--text); white-space: nowrap; }
.revenue-rows li.neg b { color: var(--text-faint); }
.revenue-rows li.subtotal { border-bottom: 1px solid var(--border-strong); font-weight: 600; }
.revenue-rows li.subtotal span, .revenue-rows li.subtotal b { color: var(--text); }
.revenue-rows li.total { border-bottom: none; padding-top: 14px; font-size: 0.98rem; align-items: center; }
.revenue-rows li.total span { color: var(--text); font-weight: 700; font-size: 0.86rem; line-height: 1.3; }
.revenue-rows li.total b { color: var(--gold-bright); font-size: 1.2rem; }
.revenue-note { text-align: center; font-size: 0.86rem; color: var(--text-muted); margin: 0 0 6px; }

/* ---------- Managed content service tiers (2026-08-25) ---------- */
.grid-label {
  text-align: center; font-family: "Baloo 2", sans-serif; font-weight: 700; font-size: 0.78rem;
  text-transform: uppercase; letter-spacing: 0.06em; color: var(--gold-bright); margin-bottom: 16px;
}
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 900px) { .service-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .service-grid { grid-template-columns: 1fr; } }
.svc-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px 20px; display: flex; flex-direction: column; }
.svc-card.popular { border-color: var(--gold); background: linear-gradient(180deg, rgba(201, 162, 39, 0.09), var(--bg-card) 45%); position: relative; }
.svc-card.popular::before {
  content: "Most requested"; position: absolute; top: -11px; left: 20px; background: var(--gold); color: #1a1400;
  font-size: 0.66rem; font-weight: 800; padding: 3px 10px; border-radius: 999px; letter-spacing: 0.03em;
}
.svc-name { font-family: "Baloo 2", sans-serif; font-weight: 800; font-size: 1.02rem; color: var(--text); margin-bottom: 6px; }
.svc-tagline { font-size: 0.8rem; color: var(--text-faint); margin-bottom: 16px; min-height: 2.6em; }
.svc-price { font-family: "Baloo 2", sans-serif; font-weight: 800; font-size: 1.6rem; color: var(--gold-bright); line-height: 1; }
.svc-price span { font-size: 0.75rem; font-weight: 600; color: var(--text-muted); }
.svc-edits { font-size: 0.78rem; color: var(--gold-bright); font-weight: 700; margin: 6px 0 16px; }
.svc-list { list-style: none; margin: 0; padding: 0; font-size: 0.84rem; flex: 1; }
.svc-list li { padding: 4px 0; color: var(--text-muted); display: flex; gap: 7px; }
.svc-list li::before { content: "✓"; color: var(--gold); font-weight: 700; flex-shrink: 0; }
.svc-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 22px; }
@media (max-width: 700px) { .svc-detail-grid { grid-template-columns: 1fr; } }
.svc-detail-grid h4 { font-size: 0.88rem; color: var(--text); margin-bottom: 6px; }
.svc-detail-grid p, .svc-detail-grid ul { font-size: 0.86rem; margin: 0; }
.svc-detail-grid ul { padding-left: 18px; color: var(--text-muted); }
.program-name { font-family: "Baloo 2", sans-serif; font-size: 1.3rem; font-weight: 800; color: var(--text); margin-bottom: 6px; }
.program-desc { font-size: 0.93rem; margin-bottom: 20px; }
.program-fee { display: flex; align-items: baseline; gap: 8px; margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.program-fee .amt { font-family: "Baloo 2", sans-serif; font-weight: 800; font-size: 2rem; color: var(--gold-bright); }
.program-fee .lbl { font-size: 0.85rem; color: var(--text-muted); }
.program-tiers { list-style: none; margin: 0 0 20px; padding: 0; flex: 1; }
.program-tiers li { display: flex; justify-content: space-between; font-size: 0.9rem; color: var(--text-muted); padding: 7px 0; border-bottom: 1px dashed var(--border); }
.program-tiers li:last-child { border-bottom: none; }
.program-tiers li b { color: var(--gold-bright); }
.program-includes { list-style: none; margin: 0; padding: 0; font-size: 0.88rem; }
.program-includes li { display: flex; align-items: flex-start; gap: 8px; color: var(--text-muted); padding: 4px 0; }
.program-includes li::before { content: "✓"; color: var(--gold); font-weight: 700; flex-shrink: 0; }

/* ---------- Economics table ---------- */
.econ-table { width: 100%; border-collapse: collapse; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.econ-table th, .econ-table td { padding: 14px 18px; text-align: left; font-size: 0.92rem; }
.econ-table thead th { background: var(--bg-raised); color: var(--text-faint); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.04em; font-weight: 700; }
.econ-table tbody tr { border-top: 1px solid var(--border); }
.econ-table td.num { color: var(--gold-bright); font-weight: 700; font-family: "Baloo 2", sans-serif; }
.econ-fees { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 24px; }
@media (max-width: 640px) { .econ-fees { grid-template-columns: 1fr; } }
.econ-fee-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; text-align: center; }
.econ-fee-card .amt { font-family: "Baloo 2", sans-serif; font-weight: 800; font-size: 2.2rem; color: var(--gold-bright); }
.econ-fee-card .lbl { font-size: 0.9rem; color: var(--text-muted); margin-top: 4px; }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(135deg, #14224f, #0a1128 70%); border: 1px solid var(--border-strong); border-radius: 24px; padding: 64px 40px; text-align: center; }
.cta-band h2 { margin-bottom: 14px; }
.cta-band p { max-width: 520px; margin: 0 auto 32px; font-size: 1.05rem; }

/* ---------- Footer ---------- */
footer { border-top: 1px solid var(--border); padding: 40px 0; margin-top: 40px; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { color: var(--text-faint); font-size: 0.88rem; }
.footer-links a:hover { color: var(--text-muted); }
.footer-brand { display: flex; align-items: center; gap: 8px; color: var(--text-faint); font-size: 0.85rem; }

/* ---------- Form (Apply page) ---------- */
.form-card { max-width: 520px; margin: 0 auto; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 40px; }
.form-field { margin-bottom: 18px; }
.form-field label { display: block; font-size: 0.85rem; font-weight: 700; color: var(--text-muted); margin-bottom: 7px; }
.form-field input, .form-field textarea, .form-field select {
  width: 100%; padding: 12px 14px; border-radius: var(--radius-sm); border: 1px solid var(--border-strong);
  background: var(--bg-raised); color: var(--text); font-size: 0.95rem; font-family: inherit;
}
.form-field textarea { resize: vertical; min-height: 90px; }
.form-field input:focus-visible, .form-field textarea:focus-visible, .form-field select:focus-visible { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.35); }
.form-error {
  background: rgba(220, 38, 38, 0.12); border: 1px solid rgba(220, 38, 38, 0.35); color: #fca5a5;
  padding: 10px 14px; border-radius: var(--radius-sm); font-size: 0.88rem; margin-bottom: 18px; display: none;
}
.form-error.show { display: block; }
.form-success {
  background: rgba(34, 197, 94, 0.12); border: 1px solid rgba(34, 197, 94, 0.35); color: #86efac;
  padding: 18px; border-radius: var(--radius-sm); font-size: 0.95rem; text-align: center; display: none;
}
.form-success.show { display: block; }
.form-hint { font-size: 0.82rem; color: var(--text-faint); text-align: center; margin-top: 18px; }

/* ---------- Marquee ---------- */
.marquee-wrap { overflow: hidden; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 22px 0; background: var(--bg-raised); }
.marquee-track { display: flex; gap: 56px; width: max-content; animation: marquee 30s linear infinite; }
.marquee-track span { font-family: "Baloo 2", sans-serif; font-weight: 700; font-size: 1.05rem; color: var(--gold-bright); white-space: nowrap; letter-spacing: 0.02em; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
/* Pause the ticker on hover/focus so it's actually readable, not just ambient. */
.marquee-wrap:hover .marquee-track, .marquee-wrap:focus-within .marquee-track { animation-play-state: paused; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- Staggered reveal for card/grid groups (2026-08-27) ----------
   The container (.grid.reveal etc.) still fades in as a unit via the rule
   above; these re-home opacity/transform onto each CHILD too so cards
   cascade in one after another instead of appearing as a single flat block.
   Capped at 6 explicit nth-child delays - covers every grid on the site
   (platform grid maxes out at 6 cards). */
.grid.reveal .card,
.program-grid.reveal .program-card,
.service-grid.reveal .svc-card,
.revenue-compare.reveal .revenue-example {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.grid.reveal.in .card,
.program-grid.reveal.in .program-card,
.service-grid.reveal.in .svc-card,
.revenue-compare.reveal.in .revenue-example {
  opacity: 1; transform: none;
}
.grid .card:nth-child(1), .program-grid .program-card:nth-child(1), .service-grid .svc-card:nth-child(1), .revenue-compare .revenue-example:nth-child(1) { transition-delay: 0.05s; }
.grid .card:nth-child(2), .program-grid .program-card:nth-child(2), .service-grid .svc-card:nth-child(2), .revenue-compare .revenue-example:nth-child(2) { transition-delay: 0.15s; }
.grid .card:nth-child(3), .service-grid .svc-card:nth-child(3) { transition-delay: 0.25s; }
.grid .card:nth-child(4), .service-grid .svc-card:nth-child(4) { transition-delay: 0.35s; }
.grid .card:nth-child(5) { transition-delay: 0.45s; }
.grid .card:nth-child(6) { transition-delay: 0.55s; }

/* proof-row: screenshot lands a beat before its copy, not simultaneously */
.proof-row.reveal .proof-shot, .proof-row.reveal .proof-copy {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.proof-row.reveal .proof-copy { transition-delay: 0.12s; }
.proof-row.reveal.in .proof-shot, .proof-row.reveal.in .proof-copy { opacity: 1; transform: none; }

/* ---------- "0 vs hundreds" wall: choreographed reveal (2026-08-27) ----------
   The prohibited circle/slash draws itself in via stroke-dashoffset, then
   the gold "0" pops in with an overshoot once the icon has landed - a small
   sequenced beat instead of everything appearing at once. */
.prohibit-icon circle { stroke-dasharray: 283; stroke-dashoffset: 283; transition: stroke-dashoffset 1s cubic-bezier(0.2, 0.7, 0.3, 1); }
.prohibit-icon line { stroke-dasharray: 88; stroke-dashoffset: 88; transition: stroke-dashoffset 0.5s ease; transition-delay: 0.5s; }
.wall.reveal.in .prohibit-icon circle,
.wall.reveal.in .prohibit-icon line { stroke-dashoffset: 0; }
.wall-side.us .wall-num {
  display: inline-block;
  opacity: 0; transform: scale(0.4);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition-delay: 0.9s;
}
.wall.reveal.in .wall-side.us .wall-num { opacity: 1; transform: scale(1); }

/* ---------- Hover polish on interactive surfaces (2026-08-27) ---------- */
.program-card, .svc-card, .revenue-example {
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.program-card:hover, .svc-card:hover, .revenue-example:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}
.econ-table tbody tr { transition: background-color 0.15s ease; }
.econ-table tbody tr:hover { background: rgba(201, 162, 39, 0.07); }
.shot-img-wrap { transition: transform 0.35s ease, box-shadow 0.35s ease; }
.shot-img-wrap:hover { transform: translateY(-3px); box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(201, 162, 39, 0.35); }
.shot-img-wrap img { transition: transform 0.5s ease; }
.shot-img-wrap:hover img { transform: scale(1.035); }

/* Primary-button shine sweep on hover */
.btn-primary { position: relative; overflow: hidden; }
.btn-primary::after {
  content: ""; position: absolute; top: 0; left: -60%; width: 40%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-20deg); pointer-events: none;
}
.btn-primary:hover::after { animation: btn-shine 0.85s ease; }
@keyframes btn-shine { from { left: -60%; } to { left: 130%; } }

/* ---------- Ambient hero motion (2026-08-27) ----------
   A slow-rotating dashed ring behind the wordmark - a quiet helm-wheel nod
   that keeps the hero from feeling like a static screenshot, without
   competing with the logo itself. */
.hero-logo-mark::before {
  content: ""; position: absolute; top: 50%; left: 50%;
  width: 260px; height: 260px; margin: -130px 0 0 -130px;
  border: 1.5px dashed rgba(201, 162, 39, 0.25); border-radius: 50%;
  animation: helm-spin 50s linear infinite; pointer-events: none; z-index: -1;
}
@keyframes helm-spin { to { transform: rotate(360deg); } }

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .grid.reveal .card, .program-grid.reveal .program-card, .service-grid.reveal .svc-card, .revenue-compare.reveal .revenue-example,
  .proof-row.reveal .proof-shot, .proof-row.reveal .proof-copy,
  .wall-side.us .wall-num {
    opacity: 1; transform: none; transition: none;
  }
  .marquee-track { animation: none; }
  .hero::before, .hero::after, .hero-logo-mark::before { animation: none; }
  .prohibit-icon circle, .prohibit-icon line { stroke-dashoffset: 0; transition: none; }
  .btn-primary:hover::after { animation: none; }
}

/* ---------- Accessibility: focus + skip link (2026-08-26) ---------- */
a:focus-visible, button:focus-visible, .btn:focus-visible, .hero-pill:focus-visible {
  outline: 3px solid var(--gold); outline-offset: 2px;
}
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--gold); color: #1a1400; font-weight: 700;
  padding: 12px 20px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }
