html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  background: #ffffff;
  color: var(--navy);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
}

/* ─── Utility ──────────────────────────────────────── */
.section    { padding: 56px 0; }
.section--alt { background: var(--off-white); }
.section--dark { background: var(--navy); color: var(--white); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; color: var(--gold);
  background: rgba(201,168,76,.12); border: 1px solid rgba(201,168,76,.3);
  padding: 6px 14px; border-radius: 100px; margin-bottom: 20px;
}
.eyebrow svg { flex-shrink: 0; }
.section-title {
  font-size: clamp(28px, 4vw, 42px); font-weight: 800;
  line-height: 1.15; letter-spacing: -.02em;
}
.section-subtitle {
  font-size: 17px; color: var(--gray-500); margin-top: 14px;
  max-width: 560px;
}
.section-subtitle--center { text-align: center; margin: 14px auto 0; }
.text-center { text-align: center; }
.gold { color: var(--gold); }
.white { color: var(--white); }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius-sm);
  font-size: 15px; font-weight: 600; cursor: pointer;
  transition: transform .15s, box-shadow .15s, opacity .15s;
  border: none; white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-primary {
  background: var(--gold); color: var(--navy);
}
.btn-primary:hover { background: var(--gold-light); }
.btn-outline {
  background: transparent; color: var(--white);
  border: 1.5px solid rgba(255,255,255,.35);
}
.btn-outline:hover { border-color: rgba(255,255,255,.7); }
.btn-ghost {
  background: transparent; color: var(--navy);
  border: 1.5px solid var(--gray-300);
}
.btn-ghost:hover { border-color: var(--navy); }

/* ─── Navbar ───────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(10,22,40,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: border-color .3s;
}
.navbar__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; max-width: 1160px; margin: 0 auto; padding: 0 24px;
  transition: height .3s;
}
.navbar.scrolled .navbar__inner { height: 48px; }
.navbar.scrolled { border-bottom-color: rgba(255,255,255,.12); }
.navbar__links a.navbar__active {
  color: var(--gold);
  position: relative;
}
.navbar__links a.navbar__active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.navbar__links a.navbar__active:hover { color: var(--gold-light); }
.navbar__logo {
  display: flex; align-items: center; gap: 14px;
  font-size: 24px; font-weight: 800; color: var(--white);
  letter-spacing: -.03em;
}
.navbar__logo-mark {
  width: 49px; height: 49px; border-radius: 11px;
  object-fit: contain; display: block; flex-shrink: 0;
}
.navbar__links {
  display: flex; align-items: center; gap: 32px;
  list-style: none; margin-left: auto;
}
.navbar__links a {
  font-size: 14px; font-weight: 500; color: rgba(255,255,255,.65);
  transition: color .15s;
}
.navbar__links a:hover { color: var(--white); }
.navbar__cta { display: flex; align-items: center; gap: 12px; margin-left: 32px; }
.navbar__login {
  font-size: 14px; font-weight: 600; color: var(--navy);
  background: var(--white); border: 1px solid rgba(255,255,255,.2);
  padding: 8px 20px; border-radius: 999px;
  transition: background .15s, color .15s;
}
.navbar__login:hover { background: var(--off-white); color: var(--navy); }

/* ─── Hero ─────────────────────────────────────────── */
.hero {
  background: var(--navy);
  padding: 56px 0 80px;
  margin-top: 68px;
  overflow: hidden;
  position: relative;
}
.hero__grid-bg {
  position: absolute; inset: 0; pointer-events: none;
  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: 60px 60px;
}
.hero__glow {
  position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
  width: 900px; height: 600px; pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(201,168,76,.12) 0%, transparent 70%);
}
.hero__inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,.12); border: 1px solid rgba(201,168,76,.25);
  color: var(--gold-light); font-size: 12px; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px; margin-bottom: 24px;
}
.hero__badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(1.4); }
}
.hero__title {
  font-size: clamp(32px, 4.2vw, 52px);
  font-weight: 900; line-height: 1.12;
  letter-spacing: -.03em; color: var(--white);
}
.hero__title .accent {
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

/* ─── Rotating Word ────────────────────────────────── */
.hero__title .accent-static {
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.rotating-word-wrap {
  display: block;
  height: 1.12em;          /* locks height so layout never jumps */
  overflow: hidden;
  position: relative;
  line-height: 1.12;
}
.rotating-word {
  display: inline-block;
  position: relative;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  /* start visible */
  opacity: 1;
  transform: translateY(0);
  transition: opacity .35s ease, transform .35s ease;
}
.rotating-word.exit {
  opacity: 0;
  transform: translateY(-28px);
  transition: opacity .3s ease, transform .3s ease;
}
.rotating-word.enter {
  opacity: 0;
  transform: translateY(28px);
  transition: none;   /* snap into position below before animating in */
}
.rotating-word.enter-active {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .35s ease, transform .35s ease;
}
.hero__subtitle {
  margin-top: 20px; font-size: 18px;
  color: rgba(255,255,255,.6); line-height: 1.65;
  max-width: 480px;
}
.hero__actions {
  display: flex; align-items: center; gap: 14px;
  margin-top: 36px; flex-wrap: wrap;
}
.hero__social-proof {
  margin-top: 40px; display: flex; align-items: center; gap: 12px;
}
.hero__avatars {
  display: flex;
}
.hero__avatar {
  width: 32px; height: 32px; border-radius: 50%;
  border: 2px solid var(--navy);
  background: linear-gradient(135deg, var(--navy-light), var(--gold));
  margin-right: -8px; font-size: 11px; font-weight: 700;
  color: var(--white); display: flex; align-items: center; justify-content: center;
}
.hero__proof-text {
  font-size: 13px; color: rgba(255,255,255,.5);
}
.hero__proof-text strong { color: rgba(255,255,255,.85); }
.hero__visual {
  position: relative;
}
.hero__deck-preview {
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 60px rgba(201,168,76,.08);
}
.deck-topbar {
  background: #1a2a45;
  border-bottom: 1px solid rgba(255,255,255,.06);
  display: flex; align-items: center; justify-content: center; height: 32px;
}
.deck-title-bar {
  font-size: 11px; color: rgba(255,255,255,.45); font-weight: 500;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
/* Slide carousel */
.deck-slides-wrap {
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, #0D1F3C 0%, #0A1628 100%);
  height: 300px;
}
.deck-slide {
  padding: 16px 20px 16px;
  height: 300px; position: absolute;
  inset: 0;
  opacity: 0; transform: translateY(14px);
  transition: opacity .55s ease, transform .55s ease;
  pointer-events: none;
  box-sizing: border-box;
  overflow: hidden;
}
.deck-slide--active {
  opacity: 1; transform: translateY(0);
  pointer-events: auto;
}
/* Two-col layout inside slide */
.deck-slide__body { display: grid; grid-template-columns: 42% 58%; gap: 8px; margin-top: 6px; }
.deck-slide__body--full { grid-template-columns: 1fr; }
/* Metric cards */
.deck-metric { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); border-radius: 6px; padding: 3px 7px; }
.deck-metric__val { font-size: 15px; font-weight: 800; color: var(--gold); line-height: 1; }
.deck-metric__label { font-size: 8px; color: rgba(255,255,255,.4); margin-top: 2px; font-weight: 500; }
/* Tag badge */
.deck-tag { display: inline-block; font-size: 7px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; padding: 2px 5px; border-radius: 3px; background: rgba(201,168,76,.18); color: var(--gold); margin-bottom: 2px; }
.deck-tag--green { background: rgba(52,199,89,.15); color: #34C759; }
.deck-tag--red   { background: rgba(255,69,58,.15);  color: #FF453A; }
/* Bullet list */
.deck-slide__bullets { margin-top: 8px; display: flex; flex-direction: column; gap: 6px; }
.deck-bullet { display: flex; align-items: flex-start; gap: 7px; font-size: 10px; color: rgba(255,255,255,.65); line-height: 1.45; }
.deck-bullet-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); flex-shrink: 0; margin-top: 4px; }
/* Numbered finding box */
.deck-finding { display: flex; gap: 8px; align-items: center; background: rgba(255,255,255,.04); border-left: 2px solid var(--gold); border-radius: 0 4px 4px 0; padding: 5px 8px; font-size: 9.5px; color: rgba(255,255,255,.7); line-height: 1.2; margin-bottom: 5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.deck-finding-num { font-size: 11px; font-weight: 800; color: var(--gold); flex-shrink: 0; }
/* Bar chart */
.deck-slide__bar-chart { margin-top: 10px; display: flex; align-items: flex-end; gap: 6px; height: 52px; }
.bar-col { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 3px; }
.bar { width: 100%; border-radius: 3px 3px 0 0; background: rgba(201,168,76,.2); }
.bar--active { background: var(--gold); }
.bar-lbl { font-size: 8px; color: rgba(255,255,255,.3); }
/* Progress bar */
.deck-slide__progress { margin-top: 8px; }
.deck-prog-row { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.deck-prog-label { font-size: 9px; color: rgba(255,255,255,.45); width: 82px; flex-shrink: 0; }
.deck-prog-track { flex: 1; height: 4px; background: rgba(255,255,255,.07); border-radius: 2px; }
.deck-prog-fill { height: 100%; border-radius: 2px; background: var(--gold); }
.deck-prog-val { font-size: 9px; color: var(--gold); font-weight: 700; width: 28px; text-align: right; flex-shrink: 0; }
/* Mini sparkline dots */
.deck-sparkline { display: flex; align-items: flex-end; gap: 3px; height: 28px; margin-top: 6px; }
.spark-bar { flex: 1; border-radius: 2px 2px 0 0; background: rgba(201,168,76,.25); }
.spark-bar--hi { background: var(--gold); }
.deck-slide__label {
  font-size: 9px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--gold);
  opacity: .7; margin-bottom: 4px;
}
.deck-slide__heading {
  font-size: 17px; font-weight: 800; color: var(--white);
  line-height: 1.2; margin-bottom: 8px;
}
.deck-slide__divider {
  width: 36px; height: 2px; background: var(--gold);
  margin-bottom: 8px;
}
.deck-slide__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.deck-metric {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-sm); padding: 12px;
}
.deck-metric__val {
  font-size: 22px; font-weight: 800;
  color: var(--gold); line-height: 1;
}
.deck-metric__label {
  font-size: 10px; color: rgba(255,255,255,.45);
  margin-top: 4px; font-weight: 500;
}
.deck-slide__bar-chart {
  margin-top: 18px; display: flex; align-items: flex-end;
  gap: 8px; height: 60px;
}
.bar-col { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 4px; }
.bar { width: 100%; border-radius: 3px 3px 0 0; background: rgba(201,168,76,.25); }
.bar--active { background: var(--gold); }
.bar-lbl { font-size: 9px; color: rgba(255,255,255,.35); }
.deck-slide__footer {
  position: absolute; bottom: 16px; left: 28px; right: 28px;
  display: flex; justify-content: space-between; align-items: center;
}
.deck-footer-brand { font-size: 10px; font-weight: 700; color: rgba(255,255,255,.2); letter-spacing: .06em; }
.deck-footer-page  { font-size: 10px; color: rgba(255,255,255,.2); }
.deck-thumbnails {
  display: flex; gap: 8px; padding: 12px 16px;
  background: rgba(0,0,0,.2); overflow-x: auto;
}
.deck-thumb {
  flex-shrink: 0; width: 64px; height: 44px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 4px; position: relative; overflow: hidden;
}
.deck-thumb--active { border-color: var(--gold); }
.deck-thumb::after {
  content: ''; position: absolute; inset: 6px 6px 10px;
  background: repeating-linear-gradient(
    rgba(255,255,255,.1) 0, rgba(255,255,255,.1) 1px,
    transparent 1px, transparent 5px
  );
}

/* Real generated deck embed in hero */
.hero__real-output {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
}
.real-output__topbar {
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 16px;
  background: rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.real-output__window-dots {
  display: flex;
  gap: 7px;
  flex-shrink: 0;
}
.real-output__window-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,.32);
}
.real-output__title {
  min-width: 0;
  color: rgba(255,255,255,.62);
  font-size: 11px;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.real-output__viewport {
  overflow: hidden;
  background: #e7eaef;
}
.real-output__track {
  display: flex;
  width: 200%;
  transition: transform .45s cubic-bezier(.22,1,.36,1);
}
.real-output__page {
  flex: 0 0 50%;
  margin: 0;
  padding: 12px;
  background: #e7eaef;
}
.real-output__page img {
  width: 100%;
  display: block;
  background: #fff;
  box-shadow: 0 14px 34px rgba(10,22,40,.22);
}
.real-output__controls {
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: rgba(0,0,0,.18);
  border-top: 1px solid rgba(255,255,255,.08);
}
.real-output__arrow {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.8);
  background: rgba(255,255,255,.06);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}
.real-output__arrow:hover {
  color: var(--white);
  border-color: rgba(255,255,255,.32);
}
.real-output__dots {
  display: flex;
  align-items: center;
  gap: 8px;
}
.real-output__dot {
  width: 34px;
  height: 5px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
  cursor: pointer;
}
.real-output__dot.active {
  background: var(--gold);
}
.hero__floating-tag {
  position: absolute; top: 24px; right: -16px;
  background: var(--white); border-radius: var(--radius-md);
  padding: 10px 14px; box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; color: var(--navy);
  white-space: nowrap; animation: floatY 3s ease-in-out infinite;
  z-index: 10;
}
.hero__floating-tag-icon { font-size: 16px; }
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}
.tag-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); }

/* ─── Logos / Marquee ──────────────────────────────── */
.logos-section {
  padding: 22px 0;
  background: #C9A84C;
  overflow: hidden;
  position: relative;
}
/* Subtle gold shimmer overlay */
.logos-section::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at 50% 0%, rgba(201,168,76,.07) 0%, transparent 70%);
}
.logos-label {
  text-align: center; font-size: 14px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--navy); opacity: .9;
  margin-bottom: 20px; position: relative;
}
/* Outer mask — fades edges */
.logos-marquee-outer {
  position: relative; overflow: hidden;
}
.logos-marquee-outer::before,
.logos-marquee-outer::after {
  content: '';
  position: absolute; top: 0; bottom: 0; width: 140px;
  z-index: 2; pointer-events: none;
}
.logos-marquee-outer::before {
  left: 0;
  background: linear-gradient(to right, #C9A84C, transparent);
}
.logos-marquee-outer::after {
  right: 0;
  background: linear-gradient(to left, #C9A84C, transparent);
}
/* The scrolling track */
.logos-track {
  display: flex; align-items: center;
  width: max-content;
  animation: marquee 48s linear infinite;
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.logo-pill {
  font-size: 14px; font-weight: 700; letter-spacing: .04em;
  color: rgba(14,31,58,.75); white-space: nowrap;
  padding: 0 40px;
  transition: color .2s;
}
.logo-pill:hover { color: var(--navy); }
/* Dot separator between pills */
.logo-sep {
  width: 4px; height: 4px; border-radius: 50%;
  background: rgba(14,31,58,.3); flex-shrink: 0;
}

/* ─── Bento Features ────────────────────────────────── */
.bento-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 14px; margin-top: 56px;
}
.bento-card {
  background: #F7F8FA; border: 1px solid #E8EAED;
  border-radius: 20px; padding: 32px;
  display: flex; flex-direction: column;
  transition: box-shadow .2s, transform .2s;
}
.bento-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,.08); transform: translateY(-2px); }
.bento-card--wide { grid-column: span 2; }
.bento-card--navy {
  background: var(--navy); border-color: transparent;
}
.bento-card--navy .bento-title { color: var(--white); }
.bento-card--navy .bento-desc  { color: rgba(255,255,255,.5); }
.bento-card--navy:hover { box-shadow: 0 8px 32px rgba(0,0,0,.3); }
.bento-icon {
  width: 42px; height: 42px; border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px; flex-shrink: 0;
}
.bento-icon--gold { background: rgba(201,168,76,.15); }
.bento-icon--blue { background: rgba(59,130,246,.1); }
.bento-icon--red  { background: rgba(232,95,74,.1); }
.bento-icon--soft { background: rgba(10,22,40,.06); border: 1px solid #E8EAED; }
.bento-title {
  font-size: 18px; font-weight: 800; color: var(--navy);
  margin-bottom: 10px; line-height: 1.25; letter-spacing: -.01em;
}
.bento-card--wide .bento-title { font-size: 21px; }
.bento-desc { font-size: 13.5px; color: var(--gray-500); line-height: 1.7; flex: 1; }

/* --- Features two-tier layout ----------------------------------------- */
.feat-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; margin-top: 24px; }
.feat-hero-card {
  padding: 44px 40px 48px; background: #F4F5F7;
  position: relative; overflow: hidden; transition: background .2s;
}
.feat-hero-card:first-child { border-radius: 16px 0 0 0; }
.feat-hero-card:last-child  { border-radius: 0 16px 0 0; }
.feat-hero-card:hover { background: #ECEEF2; }
.feat-hero-card::after {
  content: attr(data-num); position: absolute;
  bottom: -16px; right: 24px;
  font-size: 130px; font-weight: 900; letter-spacing: -.04em;
  color: rgba(10,22,40,.055); line-height: 1; pointer-events: none;
}
.feat-hero-num { font-size: 11px; font-weight: 800; color: var(--gold); letter-spacing: .08em; margin-bottom: 18px; display: block; }
.feat-hero-title { font-size: 22px; font-weight: 800; color: var(--navy); letter-spacing: -.02em; line-height: 1.25; margin-bottom: 14px; }
.feat-hero-desc { font-size: 14px; color: var(--gray-500); line-height: 1.72; max-width: 360px; position: relative; z-index: 1; }
.feat-minor { display: grid; grid-template-columns: repeat(4, 1fr); gap: 3px; margin-top: 3px; }
.feat-minor-card {
  padding: 28px 26px 32px; background: #F4F5F7;
  border-top: 3px solid transparent; transition: border-color .2s, background .2s;
}
.feat-minor-card:first-child { border-radius: 0 0 0 16px; }
.feat-minor-card:last-child  { border-radius: 0 0 16px 0; }
.feat-minor-card:hover { border-top-color: var(--gold); background: #ECEEF2; }
.feat-minor-num { font-size: 11px; font-weight: 800; color: var(--gold); letter-spacing: .08em; opacity: .75; margin-bottom: 14px; display: block; }
.feat-minor-title { font-size: 15px; font-weight: 800; color: var(--navy); letter-spacing: -.01em; line-height: 1.3; margin-bottom: 10px; }
.feat-minor-desc { font-size: 13px; color: var(--gray-500); line-height: 1.68; }
.feat-hero-card:nth-child(2) { transition-delay: .12s; }
.feat-minor-card:nth-child(2) { transition-delay: .08s; }
.feat-minor-card:nth-child(3) { transition-delay: .16s; }
.feat-minor-card:nth-child(4) { transition-delay: .24s; }

/* ─── How It Works ─────────────────────────────────── */
.steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px; margin-top: 64px; position: relative;
}
.steps::before {
  content: '';
  position: absolute; top: 28px; left: calc(16.66% + 16px); right: calc(16.66% + 16px);
  height: 1px; background: linear-gradient(90deg, var(--gold), rgba(201,168,76,.2));
}
.step { text-align: center; }
.step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--gold); color: var(--navy);
  font-size: 18px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; position: relative; z-index: 1;
  box-shadow: 0 0 0 6px rgba(201,168,76,.15);
}
.step-title { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.step-desc { font-size: 14px; color: var(--gray-500); line-height: 1.65; }

/* ─── Deck Types Scroll ─────────────────────────────── */
.deck-scroll-wrap { margin-top: 56px; display: flex; flex-direction: column; gap: 12px; overflow: hidden; }
.deck-track { display: flex; gap: 10px; width: max-content; }
.deck-track--fwd { animation: deckScrollFwd 50s linear infinite; }
.deck-track--rev { animation: deckScrollRev 50s linear infinite; }
@keyframes deckScrollFwd {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes deckScrollRev {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}
.deck-scroll-wrap { position: relative; }
.deck-scroll-wrap::before, .deck-scroll-wrap::after {
  content: ""; position: absolute; top: 0; width: 140px; height: 100%;
  z-index: 2; pointer-events: none;
}
.deck-scroll-wrap::before { left: 0; background: linear-gradient(90deg, var(--navy), transparent); }
.deck-scroll-wrap::after  { right: 0; background: linear-gradient(270deg, var(--navy), transparent); }
.dtc {
  display: flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.09);
  border-radius: 100px; padding: 9px 18px; white-space: nowrap;
  transition: background .15s, border-color .15s;
}
.dtc:hover { background: rgba(255,255,255,.09); border-color: rgba(201,168,76,.3); }
.dtc-badge {
  font-size: 9.5px; font-weight: 800; letter-spacing: .05em;
  padding: 2px 7px; border-radius: 100px; text-transform: uppercase; flex-shrink: 0;
}
.dtc-badge--ib   { background: rgba(201,168,76,.18); color: #d4af5a; }
.dtc-badge--con  { background: rgba(96,165,250,.18);  color: #93c5fd; }
.dtc-badge--aud  { background: rgba(232,95,74,.18);   color: #fca5a5; }
.dtc-badge--corp { background: rgba(167,139,250,.18); color: #c4b5fd; }
.dtc-name { font-size: 13.5px; font-weight: 500; color: rgba(255,255,255,.78); }

/* ─── Stats Banner ─────────────────────────────────── */
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 8px; margin-top: 0;
}
.stat-block {
  padding: 48px 32px; text-align: center;
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,.06);
}
.stat-block:first-child { border-radius: var(--radius-md) 0 0 var(--radius-md); }
.stat-block:last-child  { border-radius: 0 var(--radius-md) var(--radius-md) 0; }
.stat-val {
  font-size: clamp(32px, 4vw, 48px); font-weight: 900;
  color: var(--gold); line-height: 1;
}
.stat-label { font-size: 14px; color: rgba(255,255,255,.5); margin-top: 8px; }

/* ─── Testimonials ─────────────────────────────────── */
.testi-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 24px;
}
.testi-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg); padding: 32px;
  transition: transform .2s, box-shadow .2s;
}
.testi-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.testi-stars { color: var(--gold); font-size: 14px; letter-spacing: 2px; margin-bottom: 16px; }
.testi-quote { font-size: 15px; line-height: 1.7; color: #2C3E52; font-style: italic; margin-bottom: 24px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: var(--white);
  flex-shrink: 0;
}
.av-1 { background: linear-gradient(135deg, #0A1628, #1C3358); }
.av-2 { background: linear-gradient(135deg, #1A3B5D, #2C5F8A); }
.av-3 { background: linear-gradient(135deg, #2D1B4E, #5A3A8A); }
.testi-name { font-size: 14px; font-weight: 700; }
.testi-role { font-size: 12px; color: var(--gray-500); }

/* ─── Pricing strip (homepage) ─────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 32px 0;
  align-items: stretch;
}
.pricing-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 24px 24px 22px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  text-decoration: none;
  color: inherit;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.pricing-card:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
  box-shadow: 0 12px 32px rgba(10,22,40,.08);
}
.pricing-card:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}
.pricing-card--featured {
  background: var(--navy);
  color: var(--white);
  border-color: var(--gold);
}
.pricing-card--featured:hover {
  border-color: var(--gold-light);
}
.pricing-tier {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gold);
}
.pricing-card--featured .pricing-tier { color: var(--gold-light); }
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.pricing-currency {
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-500);
  align-self: flex-start;
  margin-top: 8px;
}
.pricing-card--featured .pricing-currency { color: rgba(255,255,255,.6); }
.pricing-amount {
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
  color: var(--navy);
  letter-spacing: -.02em;
}
.pricing-card--featured .pricing-amount { color: var(--white); }
.pricing-period {
  font-size: 13px;
  color: var(--gray-500);
  margin-left: 4px;
}
.pricing-card--featured .pricing-period { color: rgba(255,255,255,.6); }
.pricing-desc {
  margin: 0;
  font-size: 13.5px;
  color: var(--gray-500);
  line-height: 1.45;
}
.pricing-card--featured .pricing-desc { color: rgba(255,255,255,.75); }
@media (max-width: 760px) {
  .pricing-grid { grid-template-columns: 1fr; }
}

/* ─── CTA Banner ───────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 96px 0;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; top: -50%; left: 50%; transform: translateX(-50%);
  width: 800px; height: 500px; pointer-events: none;
  background: radial-gradient(ellipse, rgba(201,168,76,.1) 0%, transparent 65%);
}
.cta-inner { position: relative; z-index: 1; text-align: center; }
.cta-title {
  font-size: clamp(28px, 4vw, 44px); font-weight: 900;
  color: var(--white); line-height: 1.1; letter-spacing: -.02em;
}
.cta-sub {
  font-size: 17px; color: rgba(255,255,255,.55);
  margin: 16px auto 40px; max-width: 500px;
}
.cta-actions { display: flex; align-items: center; justify-content: center; gap: 14px; }
.cta-note { font-size: 13px; color: rgba(255,255,255,.35); margin-top: 20px; }

/* ─── Footer ───────────────────────────────────────── */
.footer__hk-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; color: rgba(255,255,255,.35); margin-top: 8px;
}

/* ─── Responsive ───────────────────────────────────── */
@media (max-width: 900px) {
  .hero__inner      { grid-template-columns: 1fr; }
  .hero__visual     { display: block; }
  .hero__real-output { max-width: 720px; margin: 0 auto; }
  .features-grid    { grid-template-columns: 1fr 1fr; }
  .styles-grid      { grid-template-columns: 1fr; }
  .stats-grid       { grid-template-columns: 1fr 1fr; }
  .stat-block:first-child { border-radius: var(--radius-md) 0 0 0; }
  .stat-block:last-child  { border-radius: 0 0 var(--radius-md) 0; }
  .stat-block       { padding: 28px 16px; }
  .stat-val         { font-size: 28px; }
  .stat-label       { font-size: 12px; }
  .testi-grid       { grid-template-columns: 1fr; }
  .pricing-grid     { grid-template-columns: 1fr; }
  .pricing-card--featured { transform: none; }
  .footer__grid     { grid-template-columns: 1fr; }
  .steps            { grid-template-columns: 1fr; }
  .steps::before    { display: none; }
  .navbar__links    { display: none; }
  .feat-hero        { grid-template-columns: 1fr; }
  .feat-minor       { grid-template-columns: 1fr; }
  .feat-hero-card:first-child { border-radius: 16px 16px 0 0; }
  .feat-hero-card:last-child  { border-radius: 0; }
  .feat-minor-card:first-child { border-radius: 0; }
  .feat-minor-card:last-child  { border-radius: 0 0 16px 16px; }
}
@media (max-width: 600px) {
  .hero { padding: 44px 0 56px; }
  .hero__inner,
  .hero__visual,
  .hero__inner > div:first-child,
  .hero__copy { min-width: 0; }
  .hero__inner > div:first-child {
    width: 100%;
    max-width: 100%;
  }
  .hero__title { font-size: clamp(38px, 12vw, 48px); }
  .hero__subtitle { max-width: 100%; font-size: 16px; line-height: 1.55; }
  .features-grid { grid-template-columns: 1fr; }
  .stats-grid    { grid-template-columns: 1fr 1fr; }
  .footer__grid  { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .cta-actions   { flex-direction: column; }
  .hero__social-proof { display: none; }
  .hero__real-output {
    width: 100%;
    max-width: 100%;
    margin: 0;
    border-radius: 0;
  }
  .real-output__topbar {
    height: 34px;
    padding: 0 12px;
  }
  .real-output__title {
    font-size: 10.5px;
  }
  .real-output__viewport {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .real-output__viewport::-webkit-scrollbar { display: none; }
  .real-output__track {
    width: 200%;
    transform: none !important;
  }
  .real-output__page {
    flex: 0 0 50%;
    padding: 10px;
    scroll-snap-align: start;
  }
  .real-output__controls {
    display: none;
  }
}

/* ─── Issue 1 Category A — modifier classes replacing one-off inline styles ── */
/* Hero CTA button (larger than default .btn-primary) */
.btn-primary--hero { font-size: 16px; padding: 16px 32px; }
/* Deck styles section needs overflow hidden + relative positioning */
.section--styles   { overflow: hidden; position: relative; padding-bottom: 24px; }

/* ── Scroll animations — applied by index.js via IntersectionObserver ────────
   These were previously injected at runtime via document.createElement('style').
   Moving them here: parsed before JS runs, eliminating any flash of unanimated
   content, and keeping all styles in CSS where they belong.
   ──────────────────────────────────────────────────────────────────────────── */
.anim-fade-up   { opacity: 0; transform: translateY(36px); transition: opacity .6s ease, transform .6s ease; }
.anim-fade-in   { opacity: 0; transition: opacity .7s ease; }
.anim-scale-in  { opacity: 0; transform: scale(.88); transition: opacity .55s ease, transform .55s cubic-bezier(.22,1,.36,1); }
.anim-slide-left  { opacity: 0; transform: translateX(-44px); transition: opacity .65s ease, transform .65s cubic-bezier(.22,1,.36,1); }
.anim-slide-right { opacity: 0; transform: translateX(44px);  transition: opacity .65s ease, transform .65s cubic-bezier(.22,1,.36,1); }

.anim-fade-up.in,
.anim-fade-in.in,
.anim-scale-in.in,
.anim-slide-left.in,
.anim-slide-right.in { opacity: 1; transform: none; }

.anim-stagger > *:nth-child(1) { transition-delay: 0s; }
.anim-stagger > *:nth-child(2) { transition-delay: .1s; }
.anim-stagger > *:nth-child(3) { transition-delay: .2s; }
.anim-stagger > *:nth-child(4) { transition-delay: .3s; }
.anim-stagger > *:nth-child(5) { transition-delay: .4s; }
.anim-stagger > *:nth-child(6) { transition-delay: .5s; }
