/* ==========================================================================
   Outright Comply — Site Stylesheet
   Brand: Navy #0A0267 / Deep #050133 · Gold #D8BF7C
   Fonts: Manrope (display) · DM Sans (body)
   ========================================================================== */

:root {
  --navy: #0A0267;
  --navy-deep: #050133;
  --navy-soft: #12094f;
  --gold: #D8BF7C;
  --gold-soft: rgba(216, 191, 124, 0.12);
  --ink: #1a1a2e;
  --slate: #55607a;
  --slate-light: #9aa3b8;
  --bg-light: #FDFDFD;
  --bg-tint: #f6f6fb;
  --white: #ffffff;
  --line-light: rgba(10, 2, 103, 0.08);
  --line-dark: rgba(255, 255, 255, 0.10);
  --radius: 14px;
  --radius-sm: 8px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --font-display: "Manrope", sans-serif;
  --font-body: "DM Sans", sans-serif;
  --nav-h: 80px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg-light);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

::selection { background: var(--gold); color: var(--navy); }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.15;
  margin: 0 0 0.5em;
  color: var(--navy);
}

p { margin: 0 0 1em; }

a { color: inherit; text-decoration: none; }

.container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --------------------------------------------------------------------------
   Shared bits
   -------------------------------------------------------------------------- */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.eyebrow .dot {
  position: relative;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  flex: none;
}

.eyebrow .dot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--gold);
  animation: ping 1.8s var(--ease) infinite;
}

@keyframes ping {
  0%   { transform: scale(1); opacity: 0.7; }
  80%, 100% { transform: scale(2.4); opacity: 0; }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
              background 0.35s var(--ease), color 0.35s var(--ease),
              border-color 0.35s var(--ease);
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(216, 191, 124, 0.35);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: rgba(216, 191, 124, 0.6);
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--navy);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  transition: color 0.3s var(--ease);
}

.link-arrow .material-symbols-outlined {
  font-size: 20px;
  transition: transform 0.3s var(--ease);
}

.link-arrow:hover { color: var(--gold); }
.link-arrow:hover .material-symbols-outlined { transform: translateX(5px); }

/* Section header pattern */
.section-head { max-width: 720px; margin-bottom: 44px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 {
  font-size: clamp(30px, 4.2vw, 44px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 14px 0 18px;
}
.section-head p { font-size: 18px; color: var(--slate); margin: 0; }

/* Dark sections */
.section-dark { background: var(--navy-deep); color: rgba(255, 255, 255, 0.85); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark .section-head p { color: rgba(255, 255, 255, 0.65); }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.revealed { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.12s; }
.reveal-d2 { transition-delay: 0.24s; }
.reveal-d3 { transition-delay: 0.36s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* --------------------------------------------------------------------------
   Navigation
   -------------------------------------------------------------------------- */

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-light);
}

.site-nav .nav-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 24px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo img { width: 168px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.02em;
  padding: 6px 0;
  position: relative;
  transition: color 0.3s var(--ease);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--navy); }

.nav-cta {
  padding: 12px 22px;
  font-size: 13px;
}

.nav-burger {
  display: none;
  background: none;
  border: none;
  color: var(--navy);
  cursor: pointer;
  padding: 8px;
}

.nav-burger .material-symbols-outlined { font-size: 30px; }

.mobile-menu {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--line-light);
  padding: 12px 24px 24px;
}

.mobile-menu.open { display: block; }

.mobile-menu a {
  display: block;
  padding: 14px 0;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
  border-bottom: 1px solid var(--line-light);
}

.mobile-menu a.mobile-cta {
  margin-top: 18px;
  border: none;
  background: var(--gold);
  color: var(--navy);
  text-align: center;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 14px;
  padding: 14px;
}

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: block; }
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 48px) 0 72px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 60% at 18% 42%, #150aa0 0%, transparent 55%),
    radial-gradient(ellipse 55% 50% at 82% 18%, #0A0267 0%, transparent 55%),
    radial-gradient(ellipse 50% 45% at 62% 85%, #0d058f 0%, transparent 50%),
    var(--navy-deep);
  color: var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.10) 1px, transparent 0);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse 70% 65% at 50% 40%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 65% at 50% 40%, black 30%, transparent 75%);
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  filter: blur(130px);
  pointer-events: none;
}

.hero-glow.gold { top: 18%; left: -140px; background: rgba(216, 191, 124, 0.14); }
.hero-glow.blue { bottom: 8%; right: -140px; background: rgba(20, 5, 163, 0.5); }

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 72px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(40px, 5.6vw, 66px);
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--white);
  margin: 26px 0;
}

.hero h1 .accent {
  font-weight: 800;
  font-style: italic;
  color: var(--gold);
}

.hero .lede {
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 14px;
}

.hero .sub {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.68);
  max-width: 560px;
  margin-bottom: 40px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
}

.hero-ctas .link-arrow { color: var(--white); }

/* Staged entrance */
.hero .stage {
  opacity: 0;
  transform: translateY(18px);
  animation: rise 0.9s var(--ease) forwards;
}
.hero .stage-1 { animation-delay: 0.05s; }
.hero .stage-2 { animation-delay: 0.2s; }
.hero .stage-3 { animation-delay: 0.45s; }
.hero .stage-4 { animation-delay: 0.65s; }
.hero .stage-5 { animation-delay: 0.85s; }

@keyframes rise {
  to { opacity: 1; transform: none; }
}

/* Audit status card */
.audit-card {
  position: relative;
  background: linear-gradient(160deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 36px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  animation: floatY 5s ease-in-out infinite;
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.audit-card .card-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 30px;
}

.audit-card .card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.audit-card .card-kicker {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 2px;
}

.audit-card .card-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin: 0;
}

.progress-track {
  height: 7px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
  margin-bottom: 26px;
}

.progress-fill {
  height: 100%;
  width: 0;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--gold), #ecd9a4);
  transition: width 2.4s var(--ease);
}

.progress-fill.animated { width: 100%; }

.audit-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.audit-stats .stat {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  padding: 18px;
}

.audit-stats .stat .label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate-light);
  margin: 0 0 6px;
}

.audit-stats .stat .value {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 800;
  color: var(--white);
  margin: 0;
}

.corner-frame { position: relative; }

.corner-frame::before,
.corner-frame::after {
  content: "";
  position: absolute;
  width: 130px;
  height: 130px;
  border: 2px solid var(--gold);
  opacity: 0.3;
  pointer-events: none;
}

.corner-frame::before {
  top: -34px; right: -34px;
  border-left: none; border-bottom: none;
  border-radius: 0 var(--radius-sm) 0 0;
}

.corner-frame::after {
  bottom: -34px; left: -34px;
  border-right: none; border-top: none;
  border-radius: 0 0 0 var(--radius-sm);
}

/* --------------------------------------------------------------------------
   Stats band + bento
   -------------------------------------------------------------------------- */

.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.bento {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 34px;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease),
              background 0.4s var(--ease);
}

.bento:hover {
  transform: translateY(-5px);
  border-color: rgba(216, 191, 124, 0.45);
  background: rgba(255, 255, 255, 0.06);
}

.bento .bento-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--gold-soft);
  border: 1px solid rgba(216, 191, 124, 0.25);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.bento h3 {
  font-size: 21px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.bento h3 em { color: var(--gold); }

.bento p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.62);
  margin: 0;
}

.bento.span-2 { grid-column: span 2; }
.bento.row-2 { grid-row: span 2; }

.bento.stat-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 180px;
}

.bento .big-number {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin: 0;
}

.bento .big-number .suffix { color: var(--gold); }

.bento .stat-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 12px 0 0;
}

.bento.stat-wide {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.bento.stat-wide .ring-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--line-dark);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  transition: border-color 0.4s var(--ease);
}

.bento.stat-wide:hover .ring-icon { border-color: var(--gold); }

@media (max-width: 1000px) {
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .bento.span-2, .bento.row-2 { grid-column: span 2; grid-row: auto; }
}

@media (max-width: 560px) {
  .bento-grid { grid-template-columns: 1fr; }
  .bento.span-2, .bento.row-2 { grid-column: auto; }
}

/* --------------------------------------------------------------------------
   Services
   -------------------------------------------------------------------------- */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  padding: 38px 34px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(10, 2, 103, 0.10);
}

.service-card .rule {
  height: 3px;
  width: 44px;
  border-radius: 2px;
  background: var(--gold);
  margin-bottom: 26px;
  transition: width 0.5s var(--ease);
}

.service-card:hover .rule { width: 100%; }

.service-card h3 {
  font-size: 21px;
  font-weight: 800;
}

.service-card p {
  font-size: 15.5px;
  color: var(--slate);
}

.service-card ul {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.service-card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
}

.service-card li .material-symbols-outlined {
  font-size: 19px;
  color: var(--gold);
  flex: none;
  margin-top: 1px;
}

@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.faq-item:hover { background: rgba(255, 255, 255, 0.08); }
.faq-item.active { border-color: rgba(216, 191, 124, 0.4); }

.faq-item button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 28px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--gold);
}

.faq-item button .material-symbols-outlined {
  color: var(--white);
  transition: transform 0.35s var(--ease);
  flex: none;
}

.faq-item.active button .material-symbols-outlined { transform: rotate(180deg); }

.faq-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s var(--ease);
}

.faq-item.active .faq-body { grid-template-rows: 1fr; }

.faq-body > div { overflow: hidden; }

.faq-body p {
  padding: 0 28px 26px;
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 16px;
}

/* --------------------------------------------------------------------------
   CTA banner
   -------------------------------------------------------------------------- */

.cta-banner {
  position: relative;
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
}

.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 2px 2px, rgba(216, 191, 124, 0.35) 1px, transparent 0);
  background-size: 40px 40px;
  opacity: 0.25;
  pointer-events: none;
}

.cta-banner .inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
  padding: 84px 24px;
}

.cta-banner h2 {
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 300;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}

.cta-banner h2 .accent { font-weight: 800; color: var(--gold); }

.cta-banner p {
  font-size: 19px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 620px;
  margin: 0 auto 44px;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.site-footer {
  background: var(--white);
  border-top: 1px solid var(--line-light);
  padding: 60px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-grid .brand img { width: 170px; margin-bottom: 20px; }

.footer-grid .brand p {
  font-size: 14px;
  color: var(--slate);
  margin: 0;
}

.footer-grid h5 {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 20px;
}

.footer-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.footer-grid ul a, .footer-grid .contact-line {
  font-size: 14.5px;
  color: var(--slate);
  transition: color 0.3s var(--ease);
}

.footer-grid ul a:hover { color: var(--gold); }

.footer-grid .contact-line { display: block; margin-bottom: 10px; }

.footer-bottom {
  border-top: 1px solid var(--line-light);
  padding-top: 30px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate-light);
}

.footer-bottom .legal { display: flex; gap: 28px; }
.footer-bottom a:hover { color: var(--gold); }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* --------------------------------------------------------------------------
   Page hero (inner pages)
   -------------------------------------------------------------------------- */

.page-hero {
  position: relative;
  padding: calc(var(--nav-h) + 72px) 0 72px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 50% 60% at 88% 10%, rgba(216, 191, 124, 0.10), transparent 65%),
    radial-gradient(ellipse 40% 50% at 5% 90%, rgba(10, 2, 103, 0.05), transparent 60%),
    var(--bg-light);
}

.page-hero h1 {
  font-size: clamp(36px, 4.8vw, 58px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 22px 0 24px;
}

.page-hero h1 .accent { color: var(--gold); }

.page-hero .lead {
  font-size: 19px;
  color: var(--slate);
  max-width: 640px;
  margin-bottom: 36px;
}

.page-hero.center { text-align: center; }
.page-hero.center .lead { margin-left: auto; margin-right: auto; }

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 999px;
  background: var(--gold-soft);
  border: 1px solid rgba(216, 191, 124, 0.4);
  color: #a8862f;
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

.hero-media-card {
  background: var(--white);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  box-shadow: 0 30px 70px rgba(10, 2, 103, 0.12);
  padding: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
}

.hero-media-card img { max-width: 340px; }

.stat-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: var(--white);
  border: 1px solid var(--line-light);
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(10, 2, 103, 0.08);
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--navy);
  font-size: 15px;
}

.stat-pill .material-symbols-outlined { color: var(--gold); }

@media (max-width: 900px) {
  .hero-split { grid-template-columns: 1fr; gap: 44px; }
  .page-hero { padding-top: calc(var(--nav-h) + 48px); }
}

/* --------------------------------------------------------------------------
   Logo marquee
   -------------------------------------------------------------------------- */

.marquee-band {
  background: var(--bg-tint);
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  padding: 56px 0;
}

.marquee-band .kicker {
  text-align: center;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--slate-light);
  margin: 0 0 8px;
}

.marquee-band .kicker-sub {
  text-align: center;
  font-size: 14.5px;
  color: var(--slate-light);
  margin: 0 0 36px;
}

.marquee-wrapper {
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 56px;
  width: max-content;
  animation: logoMarquee 35s linear infinite;
}

.marquee-track:hover, .marquee-track.paused { animation-play-state: paused; }

@keyframes logoMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.logo-chip {
  flex-shrink: 0;
  background: var(--white);
  border: 1px solid var(--line-light);
  border-radius: 12px;
  padding: 20px 40px;
  box-shadow: 0 4px 14px rgba(10, 2, 103, 0.05);
}

.logo-chip img { height: 52px; width: auto; }

.marquee-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid var(--line-light);
  background: var(--white);
  color: var(--slate-light);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}

.marquee-toggle:hover { color: var(--gold); border-color: rgba(216, 191, 124, 0.5); }
.marquee-toggle .material-symbols-outlined { font-size: 16px; }

/* --------------------------------------------------------------------------
   Icon cards (light feature cards)
   -------------------------------------------------------------------------- */

.icon-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.icon-card {
  background: var(--white);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease),
              border-color 0.4s var(--ease);
}

.icon-card:hover {
  transform: translateY(-6px);
  border-color: rgba(216, 191, 124, 0.5);
  box-shadow: 0 24px 60px rgba(10, 2, 103, 0.10);
}

.icon-card .icon-box {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold), #c4a75e);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 10px 24px rgba(216, 191, 124, 0.35);
}

.icon-card h3 { font-size: 21px; font-weight: 800; }
.icon-card p { font-size: 15.5px; color: var(--slate); margin: 0; }

@media (max-width: 900px) {
  .icon-card-grid { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   Roadmap (navy band with numbered steps)
   -------------------------------------------------------------------------- */

.roadmap { background: var(--navy); color: var(--white); }

.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.roadmap-step { text-align: center; position: relative; }

.step-circle {
  width: 78px;
  height: 78px;
  margin: 0 auto 26px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: var(--navy);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 23px;
  font-weight: 800;
  position: relative;
  z-index: 1;
  transition: background 0.45s var(--ease), color 0.45s var(--ease),
              box-shadow 0.45s var(--ease);
}

.roadmap-step:hover .step-circle {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 0 40px rgba(216, 191, 124, 0.35);
}

.step-circle.final {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 0 40px rgba(216, 191, 124, 0.4);
}

.roadmap-step .connector {
  position: absolute;
  top: 39px;
  left: calc(50% + 55px);
  width: calc(100% - 110px);
  border-top: 2px dashed rgba(216, 191, 124, 0.4);
}

.roadmap-step:last-child .connector { display: none; }

.roadmap-step h4 {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.roadmap-step p {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

@media (max-width: 900px) {
  .roadmap-grid { grid-template-columns: 1fr 1fr; gap: 44px 24px; }
  .roadmap-step .connector { display: none; }
}

@media (max-width: 560px) {
  .roadmap-grid { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   Pricing
   -------------------------------------------------------------------------- */

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}

.price-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-tint);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  padding: 44px 40px;
}

.price-card h3 { font-size: 27px; font-weight: 800; }
.price-card .tagline { color: var(--slate); margin-bottom: 30px; }

.price-card ul {
  list-style: none;
  margin: 0 0 34px;
  padding: 0;
  display: grid;
  gap: 16px;
  flex-grow: 1;
}

.price-card li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15.5px;
}

.price-card li .material-symbols-outlined {
  color: var(--gold);
  font-size: 21px;
  flex: none;
  margin-top: 1px;
}

.price-card .price-tag {
  text-align: center;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 18px;
}

.price-card .btn { width: 100%; }

.price-card.featured {
  background:
    radial-gradient(ellipse 80% 60% at 80% 0%, rgba(216, 191, 124, 0.14), transparent 60%),
    var(--navy);
  border: 1px solid rgba(216, 191, 124, 0.55);
  color: rgba(255, 255, 255, 0.88);
  box-shadow: 0 30px 70px rgba(10, 2, 103, 0.25);
}

.price-card.featured h3 { color: var(--white); }
.price-card.featured h3 .accent { color: var(--gold); }
.price-card.featured .tagline { color: rgba(255, 255, 255, 0.65); }
.price-card.featured .price-tag { color: var(--gold); }

.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.btn-navy:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(10, 2, 103, 0.3);
}

.pricing-footnote {
  margin: 22px 0 0;
  text-align: center;
  font-size: 13.5px;
  color: var(--slate-light);
}

.page-dark .pricing-footnote { color: rgba(255, 255, 255, 0.55); }

@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   Panel CTA (rounded navy banner)
   -------------------------------------------------------------------------- */

.panel-cta {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  border-radius: 24px;
  padding: 64px 56px;
  color: var(--white);
}

.panel-cta::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: rgba(216, 191, 124, 0.10);
  transform: skewX(12deg) translateX(25%);
}

.panel-cta .inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.panel-cta h2 {
  font-size: clamp(28px, 3.6vw, 42px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
}

.panel-cta p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 17px;
  max-width: 540px;
  margin: 0;
}

@media (max-width: 700px) {
  .panel-cta { padding: 44px 28px; text-align: center; }
  .panel-cta .inner { justify-content: center; }
}

/* --------------------------------------------------------------------------
   Dark warning / feature cards (Business Associates)
   -------------------------------------------------------------------------- */

.warn-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.warn-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line-dark);
  border-left-width: 4px;
  border-radius: var(--radius);
  padding: 34px;
  transition: transform 0.4s var(--ease), background 0.4s var(--ease);
}

.warn-card:hover { transform: translateY(-5px); background: rgba(255, 255, 255, 0.06); }

.warn-card.danger { border-left-color: #ef4444; }
.warn-card.caution { border-left-color: #f59e0b; }
.warn-card.gold { border-left-color: var(--gold); }

.warn-card .warn-icon {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.warn-card.danger .warn-icon { background: rgba(239, 68, 68, 0.15); color: #ef4444; }
.warn-card.caution .warn-icon { background: rgba(245, 158, 11, 0.15); color: #f59e0b; }
.warn-card.gold .warn-icon { background: rgba(216, 191, 124, 0.18); color: var(--gold); }

.warn-card h3 { font-size: 22px; font-weight: 800; color: var(--white); margin-bottom: 12px; }
.warn-card p { font-size: 15px; color: rgba(255, 255, 255, 0.62); margin: 0; }

.warn-tag {
  display: inline-block;
  margin-top: 20px;
  padding: 8px 16px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
}

.warn-card.caution .warn-tag {
  background: rgba(245, 158, 11, 0.15);
  color: #f59e0b;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.mini-tag {
  display: inline-block;
  margin-bottom: 14px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(216, 191, 124, 0.2);
  border: 1px solid rgba(216, 191, 124, 0.35);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .warn-grid { grid-template-columns: 1fr; }
}

/* Feature pills (dark) */
.feature-pill {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(216, 191, 124, 0.08);
  border: 1px solid rgba(216, 191, 124, 0.2);
  border-radius: 14px;
  padding: 18px 22px;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}

.feature-pill:hover {
  background: rgba(216, 191, 124, 0.14);
  border-color: rgba(216, 191, 124, 0.4);
}

.feature-pill .material-symbols-outlined { color: var(--gold); flex: none; margin-top: 2px; }
.feature-pill .pill-title { font-family: var(--font-display); font-weight: 800; color: var(--white); font-size: 15px; margin: 0 0 3px; }
.feature-pill .pill-sub { font-size: 14px; color: rgba(255, 255, 255, 0.6); margin: 0; }

/* Seal badge visual (dark) */
.seal-card {
  max-width: 380px;
  margin: 0 auto;
  border-radius: 24px;
  padding: 44px;
  text-align: center;
  background: linear-gradient(145deg, rgba(216, 191, 124, 0.12) 0%, rgba(10, 2, 103, 0.5) 100%);
  border: 1px solid rgba(216, 191, 124, 0.3);
  box-shadow: 0 0 80px rgba(216, 191, 124, 0.10);
}

.seal-card .seal-icon {
  width: 96px;
  height: 96px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: rgba(216, 191, 124, 0.2);
  border: 2px solid rgba(216, 191, 124, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.seal-card .seal-icon .material-symbols-outlined { font-size: 48px; }
.seal-card .seal-title { font-family: var(--font-display); font-size: 25px; font-weight: 800; color: var(--white); margin: 0 0 4px; }
.seal-card .seal-kicker { font-size: 13px; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin: 0 0 20px; }
.seal-card .seal-rule { height: 1px; background: rgba(216, 191, 124, 0.2); margin-bottom: 20px; }
.seal-card .seal-sub { font-size: 14px; color: rgba(255, 255, 255, 0.55); margin: 0; }

/* Shield columns (dark) */
.shield-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.shield-col {
  text-align: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 38px 32px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.shield-col:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(216, 191, 124, 0.12);
}

.shield-col.featured {
  background: rgba(216, 191, 124, 0.07);
  border-color: rgba(216, 191, 124, 0.25);
}

.shield-col .shield-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  border-radius: 16px;
  background: rgba(216, 191, 124, 0.15);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.shield-col h3 { font-size: 20px; font-weight: 800; color: var(--white); margin-bottom: 12px; }
.shield-col p { font-size: 14.5px; color: rgba(255, 255, 255, 0.62); margin: 0; }
.shield-col strong { color: var(--white); }

@media (max-width: 900px) {
  .shield-grid { grid-template-columns: 1fr; }
}

/* Comparison table (dark) */
.compare-wrap {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  overflow-x: auto;
}

.compare-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: 14.5px;
}

.compare-table th {
  padding: 20px 18px;
  background: rgba(10, 2, 103, 0.6);
  font-family: var(--font-display);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate-light);
  text-align: center;
}

.compare-table th:first-child { text-align: left; padding-left: 24px; }
.compare-table th.hl { color: var(--gold); }

.compare-table td {
  padding: 16px 18px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.7);
}

.compare-table td:first-child {
  text-align: left;
  padding-left: 24px;
  font-weight: 700;
  color: var(--white);
}

.compare-table tr:nth-child(odd) td { background: rgba(255, 255, 255, 0.02); }

.compare-table .hl-col {
  background: rgba(216, 191, 124, 0.08) !important;
  border-left: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
}

.compare-table .gold-text { color: var(--gold); font-weight: 800; }
.compare-table .yes { color: #4ade80; font-weight: 700; }
.compare-table .no { color: #f87171; font-weight: 700; }
.compare-table .partial { color: #fbbf24; font-weight: 700; }

/* --------------------------------------------------------------------------
   Split content (image + text)
   -------------------------------------------------------------------------- */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.split-media { position: relative; }

.split-media .photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(10, 2, 103, 0.18);
}

.split-media .photo img { width: 100%; object-fit: cover; }

.float-note {
  position: absolute;
  bottom: -32px;
  right: -24px;
  max-width: 300px;
  background: var(--navy);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 24px 60px rgba(10, 2, 103, 0.3);
}

.float-note .note-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  color: var(--gold);
  margin: 0 0 8px;
}

.float-note .note-body { font-size: 13.5px; color: rgba(255, 255, 255, 0.8); margin: 0; }

.split h2 {
  font-size: clamp(28px, 3.6vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.split .body-copy { font-size: 17px; color: var(--slate); margin-bottom: 28px; }

.check-list {
  list-style: none;
  margin: 0 0 34px;
  padding: 0;
  display: grid;
  gap: 20px;
}

.check-list li { display: flex; align-items: flex-start; gap: 14px; }
.check-list .material-symbols-outlined { color: var(--gold); flex: none; margin-top: 2px; }
.check-list .item-title { display: block; font-family: var(--font-display); font-weight: 800; color: var(--navy); font-size: 16px; margin-bottom: 2px; }
.check-list .item-sub { font-size: 14.5px; color: var(--slate); }

.feature-row {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.feature-row + .feature-row { margin-top: 26px; }

.feature-row .row-icon {
  width: 48px;
  height: 48px;
  flex: none;
  border-radius: 50%;
  background: var(--gold-soft);
  border: 1px solid rgba(216, 191, 124, 0.3);
  color: #a8862f;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-row h4 { font-size: 17.5px; font-weight: 800; margin-bottom: 4px; }
.feature-row p { font-size: 15px; color: var(--slate); margin: 0; }

@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 48px; }
  .float-note { position: static; max-width: none; margin-top: 20px; }
}

/* --------------------------------------------------------------------------
   Timeline (About)
   -------------------------------------------------------------------------- */

.timeline { position: relative; max-width: 900px; margin: 0 auto; }

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(to bottom, rgba(216, 191, 124, 0.6), rgba(10, 2, 103, 0.25));
}

.tl-item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 96px 1fr;
  align-items: center;
  margin-bottom: 72px;
}

.tl-item:last-child { margin-bottom: 0; }

.tl-node {
  grid-column: 2;
  width: 48px;
  height: 48px;
  margin: 0 auto;
  border-radius: 50%;
  background: var(--navy);
  border: 4px solid var(--bg-light);
  box-shadow: 0 8px 24px rgba(10, 2, 103, 0.25);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.tl-node.gold { background: var(--gold); color: var(--navy); }
.tl-node .material-symbols-outlined { font-size: 22px; }

.tl-content { grid-row: 1; }
.tl-item.left .tl-content { grid-column: 1; text-align: right; padding-right: 8px; }
.tl-item.right .tl-content { grid-column: 3; text-align: left; padding-left: 8px; }

.tl-year {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 6px;
  background: var(--gold-soft);
  color: #a8862f;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 12px;
}

.tl-content h3 { font-size: 23px; font-weight: 800; margin-bottom: 10px; }
.tl-content p { font-size: 15.5px; color: var(--slate); margin: 0; }

@media (max-width: 760px) {
  .timeline::before { display: none; }
  .tl-item { grid-template-columns: 1fr; margin-bottom: 48px; }
  .tl-node { grid-column: 1; grid-row: 1; margin-bottom: 18px; }
  .tl-content, .tl-item.left .tl-content, .tl-item.right .tl-content {
    grid-column: 1; grid-row: 2; text-align: center; padding: 0;
  }
}

/* --------------------------------------------------------------------------
   Dark page theme (.page-dark on <body>) — navy aesthetic for inner pages
   -------------------------------------------------------------------------- */

body.page-dark {
  background:
    radial-gradient(circle at 15% 50%, rgba(216, 191, 124, 0.04), transparent 60%),
    radial-gradient(circle at 85% 30%, rgba(10, 2, 103, 0.6), transparent 60%),
    var(--navy-deep);
  background-attachment: fixed;
  color: rgba(255, 255, 255, 0.85);
}

.page-dark .page-hero {
  background:
    radial-gradient(ellipse 60% 65% at 80% 12%, #10068c 0%, transparent 55%),
    radial-gradient(ellipse 45% 55% at 8% 90%, rgba(216, 191, 124, 0.10), transparent 60%),
    var(--navy-deep);
}

.page-dark .page-hero h1 { color: var(--white); }
.page-dark .page-hero .lead { color: rgba(255, 255, 255, 0.68); }

.page-dark .badge-pill {
  background: rgba(216, 191, 124, 0.12);
  border-color: rgba(216, 191, 124, 0.35);
  color: var(--gold);
}

.page-dark .btn-navy {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.page-dark .btn-navy:hover { box-shadow: 0 12px 32px rgba(255, 255, 255, 0.18); }

.page-dark .stat-pill {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--line-dark);
  color: var(--white);
  box-shadow: none;
}

.page-dark .section-head h2 { color: var(--white); }
.page-dark .section-head p { color: rgba(255, 255, 255, 0.65); }

/* Alternating band — light tint on light pages, subtle lift on dark */
.band { background: var(--bg-tint); }
.page-dark .band { background: rgba(255, 255, 255, 0.025); }

/* Marquee */
.page-dark .marquee-band {
  background: rgba(255, 255, 255, 0.025);
  border-color: var(--line-dark);
}

.page-dark .logo-chip { border-color: transparent; }

.page-dark .marquee-toggle {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--line-dark);
  color: var(--slate-light);
}

/* Icon cards */
.page-dark .icon-card {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--line-dark);
}

.page-dark .icon-card:hover {
  border-color: rgba(216, 191, 124, 0.5);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.page-dark .icon-card h3 { color: var(--white); }
.page-dark .icon-card p { color: rgba(255, 255, 255, 0.62); }

/* Pricing */
.page-dark .price-card {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--line-dark);
  color: rgba(255, 255, 255, 0.85);
}

.page-dark .price-card h3 { color: var(--white); }
.page-dark .price-card .tagline { color: rgba(255, 255, 255, 0.62); }
.page-dark .price-card .price-tag { color: var(--white); }

.page-dark .price-card.featured {
  background:
    radial-gradient(ellipse 80% 60% at 80% 0%, rgba(216, 191, 124, 0.14), transparent 60%),
    var(--navy);
  border-color: rgba(216, 191, 124, 0.55);
}

.page-dark .price-card.featured .price-tag { color: var(--gold); }

/* Split content */
.page-dark .split h2 { color: var(--white); }
.page-dark .split .body-copy { color: rgba(255, 255, 255, 0.68); }
.page-dark .check-list .item-title { color: var(--white); }
.page-dark .check-list .item-sub { color: rgba(255, 255, 255, 0.6); }
.page-dark .split-media .photo { box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45); }

.page-dark .float-note {
  background: var(--navy);
  border: 1px solid rgba(216, 191, 124, 0.35);
}

.page-dark .feature-row h4 { color: var(--white); }
.page-dark .feature-row p { color: rgba(255, 255, 255, 0.6); }

.page-dark .feature-row .row-icon {
  background: rgba(216, 191, 124, 0.12);
  border-color: rgba(216, 191, 124, 0.3);
  color: var(--gold);
}

/* Timeline */
.page-dark .timeline::before {
  background: linear-gradient(to bottom, rgba(216, 191, 124, 0.5), rgba(255, 255, 255, 0.12));
}

.page-dark .tl-node {
  border-color: var(--navy-deep);
  background: var(--navy-soft);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.page-dark .tl-node.gold { background: var(--gold); }
.page-dark .tl-year { color: var(--gold); }
.page-dark .tl-content h3 { color: var(--white); }
.page-dark .tl-content p { color: rgba(255, 255, 255, 0.62); }

/* Panel CTA + roadmap sit on dark bg — give them definition */
.page-dark .panel-cta { border: 1px solid rgba(216, 191, 124, 0.35); }
.page-dark .roadmap { background: var(--navy); border-radius: 0; }

/* Hero media card keeps a white face so seals/logos read correctly */
.page-dark .hero-media-card { box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45); }

/* --------------------------------------------------------------------------
   Sections / spacing
   -------------------------------------------------------------------------- */

.section { padding: 76px 0; }
.section-sm { padding: 56px 0; }

@media (max-width: 900px) {
  .section { padding: 60px 0; }
  .section-sm { padding: 44px 0; }

  .hero { padding-top: calc(var(--nav-h) + 48px); min-height: 0; }
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .corner-frame::before, .corner-frame::after { display: none; }
}
