:root {
  --bg: #fff9ec;
  --bg-deep: #144e8c;
  --bg-soft: #fff6d6;
  --surface: rgba(255, 252, 247, 0.9);
  --surface-strong: #fffefb;
  --surface-dark: rgba(20, 78, 140, 0.8);
  --text: #18344d;
  --text-soft: #4e5964;
  --text-muted: #706855;
  --text-on-dark: #fff7eb;
  --text-on-dark-soft: rgba(255, 247, 235, 0.82);
  --brand: #ffbe34;
  --brand-strong: #ffd766;
  --brand-deep: #b45416;
  --accent: #2f86d1;
  --accent-warm: #ff8c38;
  --line: rgba(20, 78, 140, 0.12);
  --line-strong: rgba(255, 255, 255, 0.12);
  --shadow-sm: 0 16px 34px rgba(20, 78, 140, 0.1);
  --shadow-lg: 0 28px 90px rgba(20, 78, 140, 0.18);
  --radius-sm: 16px;
  --radius-lg: 28px;
  --radius-xl: 40px;
  --max-width: 1180px;
  --section-gap: 32px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 190, 52, 0.18), transparent 22%),
    radial-gradient(circle at right 14%, rgba(255, 140, 56, 0.12), transparent 18%),
    linear-gradient(180deg, #fffdf6 0%, #fff8e7 42%, #fff2d2 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.5;
  background:
    radial-gradient(circle at 15% 18%, rgba(255, 255, 255, 0.18), transparent 14%),
    repeating-radial-gradient(circle at 88% 12%, rgba(213, 107, 27, 0.04) 0 2px, transparent 2px 16px);
}

main,
.site-header,
.site-footer {
  position: relative;
  z-index: 1;
}

main { overflow: clip; }

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

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

.site-header {
  position: relative;
  z-index: 30;
  backdrop-filter: blur(18px);
  background:
    radial-gradient(circle at top right, rgba(255, 190, 52, 0.16), transparent 26%),
    linear-gradient(180deg, rgba(20, 78, 140, 0.96), rgba(16, 62, 112, 0.92));
  border-bottom: 1px solid var(--line-strong);
}

.nav-shell,
.hero-inner,
.page-hero-inner,
.page-shell,
.footer-shell {
  width: min(var(--max-width), calc(100% - 32px));
  margin: 0 auto;
}

.nav-shell {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 14px 0 16px;
}

.brand-mark,
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark {
  align-self: flex-start;
}

.brand-rpm,
.brand-copy {
  transition: transform 0.24s ease, opacity 0.24s ease;
}

.brand-rpm {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand-copy {
  display: block;
  min-width: 0;
}

.brand-rpm:hover,
.brand-rpm:focus-visible,
.brand-copy:hover,
.brand-copy:focus-visible {
  transform: translateY(-1px);
}

.brand-chip {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  padding: 9px;
  border: 1px solid rgba(255, 190, 52, 0.26);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04)),
    linear-gradient(135deg, rgba(255, 190, 52, 0.28), rgba(255, 140, 56, 0.12));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
  object-fit: contain;
}

.brand-logo {
  width: 72px;
  height: auto;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand-copy strong,
.footer-brand strong {
  display: block;
  color: var(--text-on-dark);
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.12em;
}

.brand-copy span,
.footer-brand span {
  display: block;
  color: rgba(255, 247, 235, 0.9);
  font-size: 0.82rem;
  line-height: 1.45;
}

.brand-copy strong {
  font-size: 1.1rem;
}

.brand-copy span {
  max-width: 42ch;
}

.site-nav {
  display: grid;
  gap: 10px;
  width: 100%;
}

.nav-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 8px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 243, 219, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 42px;
  width: 100%;
  padding: 0 16px;
  border-radius: 18px;
  color: rgba(255, 247, 235, 0.92);
  font-size: 0.98rem;
  font-weight: 700;
  transition: color 0.22s ease, background 0.22s ease, transform 0.22s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a[aria-current="page"] {
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(255, 190, 52, 0.22), rgba(255, 140, 56, 0.14));
  transform: translateY(-1px);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease,
    box-shadow 0.22s ease,
    color 0.22s ease;
}

.nav-cta {
  width: 100%;
  border-color: rgba(255, 190, 52, 0.38);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.08)),
    linear-gradient(135deg, rgba(255, 215, 102, 0.98), rgba(255, 140, 56, 0.9));
  color: #173a67;
  box-shadow: 0 12px 28px rgba(213, 107, 27, 0.22);
}

.nav-cta:hover,
.nav-cta:focus-visible,
.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
  color: var(--text-on-dark);
  background:
    radial-gradient(circle at top left, rgba(255, 190, 52, 0.22), transparent 22%),
    radial-gradient(circle at 86% 18%, rgba(255, 140, 56, 0.16), transparent 18%),
    linear-gradient(135deg, rgba(20, 78, 140, 0.52), rgba(47, 134, 209, 0.22)),
    linear-gradient(180deg, rgba(20, 78, 140, 0.12), rgba(16, 62, 112, 0.48)),
    url("./hero-landing.jpg") center center / cover no-repeat;
}

.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: auto -10% -28% 52%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(255, 190, 52, 0.28), transparent 62%);
  filter: blur(10px);
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background:
    radial-gradient(circle at 12% 28%, transparent 0 38px, rgba(255, 255, 255, 0.16) 39px 40px, transparent 41px 72px),
    radial-gradient(circle at 84% 72%, transparent 0 44px, rgba(255, 255, 255, 0.14) 45px 46px, transparent 47px 86px);
}

.hero-inner,
.page-hero-inner {
  position: relative;
  z-index: 1;
}

.hero-inner {
  min-height: 74vh;
  display: grid;
  align-items: end;
  padding: 108px 0 78px;
}

.page-hero-inner {
  padding: 118px 26px 78px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(20, 78, 140, 0.22);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(10px);
}

.hero-grid {
  display: grid;
  gap: 18px;
  align-items: end;
}

.page-home .hero-grid {
  grid-template-columns: minmax(0, 1fr);
}

.hero-panel,
.hero-spotlight {
  position: relative;
  overflow: hidden;
  padding: 26px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02)),
    rgba(20, 78, 140, 0.4);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(12px);
}

.page-home .hero-panel {
  max-width: 760px;
  padding-left: 0;
  border-color: transparent;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.hero-panel::before,
.hero-spotlight::before,
.page-hero-inner::before,
.cta-banner::before,
.panel::before,
.card::before,
.stat-card::before,
.contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.14), transparent 34%);
}

.page-home .hero-panel::before {
  display: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 190, 52, 0.42);
  background: rgba(255, 215, 102, 0.18);
  color: #b55d18;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow,
.page-hero .eyebrow,
.cta-banner .eyebrow,
.hero-panel .eyebrow,
.hero-spotlight .eyebrow {
  border-color: rgba(255, 215, 102, 0.32);
  background: rgba(255, 190, 52, 0.14);
  color: #ffe9b2;
}

.hero h1,
.page-hero h1 {
  margin: 18px 0 16px;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: clamp(2.1rem, 8vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.page-hero h1 { font-size: clamp(1.9rem, 7vw, 4rem); }

.hero p,
.page-hero p {
  margin: 0;
  max-width: 62ch;
  color: var(--text-on-dark-soft);
  font-size: 1.01rem;
  line-height: 1.75;
}

.hero-actions,
.page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.button {
  min-height: 52px;
  padding: 0 22px;
}

.button-primary {
  background: linear-gradient(180deg, #ffe07c, #ffb52d 62%, #ff902f);
  color: #173a67;
  box-shadow: 0 14px 34px rgba(213, 107, 27, 0.24);
}

.button-primary:hover,
.button-primary:focus-visible { box-shadow: 0 18px 40px rgba(213, 107, 27, 0.34); }

.button-secondary {
  background: rgba(20, 78, 140, 0.3);
  border-color: rgba(255, 215, 102, 0.34);
  color: #fff7eb;
}

.button-light {
  background: #1d5f9d;
  color: #ffffff;
  box-shadow: var(--shadow-sm);
}

.button-outline {
  background: rgba(255, 247, 231, 0.78);
  border-color: rgba(213, 107, 27, 0.14);
  color: var(--text);
}

.button-secondary:hover,
.button-secondary:focus-visible,
.button-light:hover,
.button-light:focus-visible,
.button-outline:hover,
.button-outline:focus-visible {
  border-color: rgba(255, 140, 56, 0.32);
  box-shadow: var(--shadow-sm);
}

.hero-note {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
  color: rgba(255, 247, 235, 0.9);
  font-size: 0.9rem;
}

.hero-note span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.hero-note span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(47, 134, 209, 0.16);
}

.hero-spotlight h2 {
  margin: 16px 0 0;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: clamp(1.55rem, 6vw, 2.3rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.spotlight-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.spotlight-item {
  padding: 14px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
}

.spotlight-item strong {
  display: block;
  margin-bottom: 6px;
  color: #ffffff;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 1rem;
}

.spotlight-item span {
  display: block;
  color: rgba(255, 247, 235, 0.88);
  line-height: 1.65;
  font-size: 0.94rem;
}

.preview-band {
  display: grid;
  gap: 18px;
}

.preview-card,
.preview-pane {
  position: relative;
  overflow: hidden;
  padding: 22px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
}

.preview-card {
  grid-column: 1 / -1;
}

.preview-card::before,
.preview-pane::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.18), transparent 34%);
}

.preview-window {
  display: grid;
  gap: 14px;
}

.window-bar {
  display: flex;
  align-items: center;
  gap: 8px;
}

.window-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(19, 33, 28, 0.18);
}

.preview-layout {
  display: grid;
  gap: 14px;
}

.preview-pane.dark {
  border-color: rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at top right, rgba(255, 190, 52, 0.18), transparent 34%),
    rgba(16, 62, 112, 0.94);
  color: var(--text-on-dark);
}

.preview-kicker,
.mini-label {
  color: var(--brand-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.preview-pane.dark .preview-kicker,
.preview-pane.dark .mini-label {
  color: var(--brand-strong);
}

.preview-pane h3,
.preview-pane strong {
  margin: 10px 0 0;
  display: block;
  font-family: "Sora", "Segoe UI", sans-serif;
  letter-spacing: -0.03em;
}

.preview-pane p,
.preview-pane li {
  color: var(--text-soft);
  line-height: 1.7;
}

.preview-pane.dark p,
.preview-pane.dark li {
  color: rgba(255, 247, 235, 0.88);
}

.preview-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
}

.preview-list span,
.preview-stat {
  display: block;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(19, 33, 28, 0.05);
}

.preview-pane.dark .preview-list span,
.preview-pane.dark .preview-stat {
  background: rgba(255, 255, 255, 0.06);
}

.preview-stat-grid {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.preview-stat strong {
  margin: 0 0 6px;
  font-size: 1rem;
}

.content-band {
  position: relative;
  z-index: 2;
  margin-top: -22px;
}

.page-shell { padding: 56px 0 72px; }

.page-shell > section + section,
.page-shell > div + section,
.page-shell > section + div,
.page-shell > div + div {
  margin-top: var(--section-gap);
}

.band-grid,
.card-grid,
.cover-grid,
.feature-grid,
.three-grid,
.two-grid,
.legal-grid,
.contact-grid,
.split-callout {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1fr);
}

.panel,
.card,
.stat-card,
.legal-nav,
.contact-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
}

.card,
.panel,
.stat-card,
.contact-card {
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.card:hover,
.card:focus-within,
.panel:hover,
.panel:focus-within,
.stat-card:hover,
.stat-card:focus-within,
.contact-card:hover,
.contact-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(47, 134, 209, 0.22);
  box-shadow: 0 22px 44px rgba(20, 78, 140, 0.14);
}

.cover-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cover-shot {
  width: min(100%, 310px);
  height: auto;
  align-self: center;
  border-radius: 18px;
  border: 1px solid rgba(20, 78, 140, 0.1);
  box-shadow: 0 14px 30px rgba(20, 78, 140, 0.1);
  background: #ffffff;
}

.surface-shot {
  position: relative;
  overflow: hidden;
  padding: 16px;
  border-radius: 20px;
  border: 1px solid rgba(20, 78, 140, 0.12);
  background:
    radial-gradient(circle at top right, rgba(255, 190, 52, 0.22), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.62));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.46);
}

.surface-shot.dark {
  border-color: rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top right, rgba(255, 190, 52, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(47, 134, 209, 0.96), rgba(20, 78, 140, 0.96));
  color: var(--text-on-dark);
}

.surface-top,
.surface-lines,
.surface-tags,
.surface-stack {
  display: grid;
  gap: 10px;
}

.surface-top {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
}

.surface-pill,
.surface-chip,
.surface-line,
.surface-tag {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
}

.surface-pill {
  justify-self: start;
  padding: 8px 12px;
  background: rgba(20, 78, 140, 0.08);
  color: var(--brand-deep);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.surface-shot.dark .surface-pill {
  background: rgba(255, 255, 255, 0.1);
  color: var(--brand-strong);
}

.surface-chip {
  justify-self: end;
  padding: 7px 10px;
  background: rgba(20, 78, 140, 0.07);
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 700;
}

.surface-shot.dark .surface-chip {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-on-dark);
}

.surface-label {
  margin: 2px 0 0;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 1.04rem;
  letter-spacing: -0.03em;
}

.surface-shot.dark .surface-label {
  color: var(--text-on-dark);
}

.surface-lines {
  margin-top: 10px;
}

.surface-line {
  min-height: 12px;
  background: rgba(20, 78, 140, 0.08);
}

.surface-line.long { width: 100%; }
.surface-line.mid { width: 72%; }
.surface-line.short { width: 48%; }

.surface-shot.dark .surface-line {
  background: rgba(255, 255, 255, 0.1);
}

.surface-tags {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 12px;
}

.surface-tag {
  justify-content: center;
  min-height: 40px;
  padding: 0 10px;
  background: rgba(20, 78, 140, 0.06);
  color: var(--text);
  font-size: 0.84rem;
  font-weight: 700;
}

.surface-shot.dark .surface-tag {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-on-dark);
}

.surface-stack {
  margin-top: 12px;
}

.stat-card {
  padding-top: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.58)),
    linear-gradient(140deg, rgba(255, 215, 102, 0.2), rgba(255, 140, 56, 0.12));
}

.stat-card strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 1.28rem;
  letter-spacing: -0.03em;
}

.section-title { margin-bottom: 14px; }

.section-title .eyebrow {
  margin-bottom: 14px;
}

.section-title h2,
.section-title h3,
.cta-banner h2,
.legal-copy h2 {
  margin: 0;
  font-family: "Sora", "Segoe UI", sans-serif;
  line-height: 1.14;
  letter-spacing: -0.04em;
}

.section-title h2,
.cta-banner h2 { font-size: clamp(1.95rem, 7vw, 3.3rem); }

.section-title h3 { font-size: clamp(1.35rem, 5vw, 2rem); }

.section-title p {
  margin: 8px 0 0;
  max-width: 62ch;
  color: var(--text-soft);
  line-height: 1.75;
}

.card h3,
.panel h3,
.contact-card h3 {
  margin: 0 0 14px;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 1.18rem;
  letter-spacing: -0.03em;
  line-height: 1.16;
}

.card p,
.panel p,
.stat-card span,
.contact-card p,
.card li,
.panel li,
.legal-copy p,
.legal-copy li {
  color: var(--text-soft);
  line-height: 1.74;
}

.card ul,
.panel ul,
.legal-copy ul {
  margin: 0;
  padding-left: 20px;
}

.card ul li + li,
.panel ul li + li,
.legal-copy ul li + li {
  margin-top: 8px;
}

.icon-pill {
  display: none;
}

.cta-banner {
  position: relative;
  overflow: hidden;
  padding: 30px 24px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top right, rgba(255, 190, 52, 0.24), transparent 30%),
    radial-gradient(circle at 14% 12%, rgba(255, 140, 56, 0.18), transparent 20%),
    linear-gradient(135deg, rgba(20, 78, 140, 0.96), rgba(18, 69, 123, 0.92)),
    url("./hero-landing.jpg") center center / cover no-repeat;
  color: var(--text-on-dark);
  box-shadow: var(--shadow-lg);
}

.cta-banner p {
  margin: 0;
  max-width: 58ch;
  color: var(--text-on-dark-soft);
  line-height: 1.74;
}

.cta-banner .hero-actions { margin-top: 24px; }

.site-footer {
  background:
    radial-gradient(circle at top left, rgba(255, 190, 52, 0.12), transparent 18%),
    #123b67;
  color: var(--text-on-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-shell {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 34px 0 40px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 999px;
  color: rgba(255, 247, 235, 0.88);
  font-size: 0.92rem;
  transition: color 0.22s ease, background 0.22s ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #ffe38d;
  background: rgba(255, 255, 255, 0.06);
}

.footer-meta {
  color: rgba(255, 247, 235, 0.86);
  font-size: 0.92rem;
}

.footer-meta a { color: var(--brand-strong); }

.legal-grid { align-items: start; }

.legal-nav {
  display: grid;
  gap: 8px;
  position: sticky;
  top: 94px;
}

.legal-nav a {
  padding: 10px 12px;
  border-radius: 14px;
  color: var(--text-soft);
  font-weight: 700;
  transition: background 0.22s ease, color 0.22s ease;
}

.legal-nav a:hover,
.legal-nav a:focus-visible {
  background: rgba(255, 190, 52, 0.12);
  color: var(--text);
}

.legal-copy section + section { margin-top: 34px; }

.legal-copy h2 { font-size: 1.38rem; }

@keyframes fade-up {
  from {
    opacity: 0.92;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-panel,
  .hero-spotlight,
  .page-hero-inner,
  .cta-banner,
  .preview-band > *,
  .band-grid > *,
  .card-grid > *,
  .feature-grid > *,
  .three-grid > *,
  .two-grid > *,
  .split-callout > *,
  .contact-grid > *,
  .legal-grid > * {
    opacity: 1;
    animation: fade-up 0.32s cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .hero-spotlight,
  .page-hero-inner,
  .preview-band > *:nth-child(2),
  .cta-banner,
  .band-grid > *:nth-child(2),
  .card-grid > *:nth-child(2),
  .feature-grid > *:nth-child(2),
  .three-grid > *:nth-child(2),
  .two-grid > *:nth-child(2),
  .split-callout > *:nth-child(2),
  .contact-grid > *:nth-child(2) {
    animation-delay: 0.03s;
  }

  .band-grid > *:nth-child(3),
  .card-grid > *:nth-child(3),
  .feature-grid > *:nth-child(3),
  .three-grid > *:nth-child(3) {
    animation-delay: 0.06s;
  }

  .feature-grid > *:nth-child(4) {
    animation-delay: 0.09s;
  }
}

@media (min-width: 720px) {
  :root { --section-gap: 40px; }

  .hero-inner {
    min-height: 78vh;
    padding: 120px 0 88px;
  }

  .hero-panel,
  .hero-spotlight,
  .page-hero-inner,
  .cta-banner,
  .preview-card,
  .preview-pane,
  .panel,
  .card,
  .stat-card,
  .legal-nav,
  .contact-card {
    padding: 30px;
  }

  .band-grid,
  .card-grid,
  .cover-grid,
  .three-grid,
  .two-grid,
  .contact-grid,
  .split-callout,
  .preview-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .preview-layout,
  .preview-stat-grid,
  .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .footer-shell {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 960px) {
  .site-header {
    position: sticky;
    top: 0;
  }

  .nav-shell {
    min-height: 82px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 14px 0;
  }

  .brand-logo {
    width: 86px;
  }

  .site-nav {
    width: auto;
    grid-template-columns: auto auto;
    align-items: center;
  }

  .nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 4px;
  }

  .nav-links a {
    justify-content: center;
    width: auto;
    border-radius: 999px;
    padding: 0 12px;
    font-size: 0.9rem;
  }

  .nav-cta {
    width: auto;
    min-width: 176px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.78fr);
  }

  .page-home .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .content-band { margin-top: -56px; }

  .band-grid,
  .card-grid,
  .cover-grid,
  .three-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

  .feature-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }

  .split-callout { grid-template-columns: repeat(3, minmax(0, 1fr)); }

  .legal-grid { grid-template-columns: 280px minmax(0, 1fr); }

  .preview-band { grid-template-columns: 1.15fr 0.85fr; }

  .preview-layout { grid-template-columns: 0.98fr 1.02fr; }
}
