:root {
  --bg: #050816;
  --bg-soft: rgba(255, 255, 255, 0.04);
  --panel: rgba(11, 17, 36, 0.74);
  --panel-soft: rgba(255, 255, 255, 0.03);
  --line: rgba(255, 255, 255, 0.1);
  --text: #f8fafc;
  --muted: rgba(248, 250, 252, 0.72);
  --subtle: rgba(248, 250, 252, 0.54);
  --cyan: #67e8f9;
  --cyan-deep: #22d3ee;
  --violet: #8b5cf6;
  --gold: #f1d18a;
  --rose: #f0abfc;
  --font-display: "Avenir Next", "Neue Haas Grotesk Display Pro", "Segoe UI", sans-serif;
  --font-copy: "Inter", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  --font-serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  --tone-main: 103 232 249;
  --tone-accent: 139 92 246;
  --tone-contrast: 241 209 138;
  --tone-main-solid: rgb(103 232 249);
  --tone-accent-solid: rgb(139 92 246);
  --tone-contrast-solid: rgb(241 209 138);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  font-family: var(--font-copy);
  background:
    radial-gradient(circle at 10% 0%, rgb(var(--tone-main) / 0.16), transparent 26%),
    radial-gradient(circle at 90% 4%, rgb(var(--tone-accent) / 0.14), transparent 28%),
    radial-gradient(circle at 50% 100%, rgb(var(--tone-contrast) / 0.08), transparent 20%),
    linear-gradient(180deg, #07111e 0%, #050816 54%, #040611 100%);
  color: var(--text);
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

body::before {
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45), transparent 82%);
}

body::after {
  inset: auto 0 0;
  height: 280px;
  background: linear-gradient(180deg, transparent, rgba(3, 6, 15, 0.78));
}

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

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

.shell {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(4, 8, 22, 0.85);
  backdrop-filter: blur(24px);
}

.site-header-inner {
  width: min(100%, 1440px);
  height: 92px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 0 24px;
}

.site-header-brand {
  min-width: 260px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 60px;
}

.site-header-brand-mark {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
}

.site-header-brand-mark img {
  width: 28px;
  height: 28px;
}

.site-header-brand-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.site-header-brand-kicker {
  color: rgba(103, 232, 249, 0.82);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  line-height: 1.1;
  text-transform: uppercase;
}

.site-header-brand-name {
  margin-top: 8px;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1;
}

.site-header-nav-wrap {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
}

.site-header-nav {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.site-header-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 0;
  color: rgba(248, 250, 252, 0.64);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.site-header-link:hover,
.site-header-link.is-active {
  color: var(--text);
}

.site-header-link-underline {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -15px;
  height: 1px;
  background: rgba(103, 232, 249, 0.78);
  opacity: 0;
  transition: opacity 180ms ease;
}

.site-header-link.is-active .site-header-link-underline {
  opacity: 1;
}

.site-header-cta {
  margin-left: auto;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-header-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 32px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.site-header-contact:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.07);
}

.site-header-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(248, 250, 252, 0.9);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.site-header-menu-toggle:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
}

.site-header-menu-icon {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 16px;
}

.site-header-menu-bar {
  width: 16px;
  height: 1.5px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.site-header.is-open .site-header-menu-bar:nth-child(1) {
  transform: translateY(5.5px) rotate(45deg);
}

.site-header.is-open .site-header-menu-bar:nth-child(2) {
  opacity: 0;
}

.site-header.is-open .site-header-menu-bar:nth-child(3) {
  transform: translateY(-5.5px) rotate(-45deg);
}

.site-header-mobile-nav {
  display: none;
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: 0 24px 18px;
  gap: 10px;
}

.site-header-mobile-link {
  justify-content: center;
  min-height: 44px;
  padding: 11px 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  text-align: center;
  line-height: 1.35;
}

.site-header-mobile-link.is-active {
  border-color: rgba(103, 232, 249, 0.35);
  background: rgba(255, 255, 255, 0.06);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 13px 20px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 38px rgba(6, 10, 24, 0.28);
}

.button-primary {
  background: linear-gradient(90deg, rgb(var(--tone-main)) 0%, rgb(var(--tone-accent)) 55%, rgb(var(--tone-contrast)) 100%);
  border-color: transparent;
  color: white;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

.hero {
  position: relative;
  padding: 72px 0 44px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 44px;
  align-items: start;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: rgb(var(--tone-main) / 0.8);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.page-title {
  margin: 24px 0 0;
  max-width: 760px;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.99;
  letter-spacing: -0.05em;
  font-weight: 650;
  font-family: var(--font-display);
  overflow-wrap: anywhere;
  hyphens: auto;
  text-wrap: balance;
}

.page-title .gradient {
  background: linear-gradient(90deg, rgb(var(--tone-main)) 0%, #ffffff 45%, rgb(var(--tone-accent)) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lede {
  margin: 24px 0 0;
  max-width: 680px;
  font-size: 18px;
  line-height: 1.82;
  color: var(--muted);
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-actions-note {
  margin: 14px 0 0;
  color: var(--subtle);
  font-size: 14px;
  line-height: 1.7;
}

.hero-actions-note a {
  color: var(--text);
  border-bottom: 1px solid rgb(var(--tone-main) / 0.28);
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.hero-point {
  border-left: 1px solid rgb(var(--tone-main) / 0.24);
  padding-left: 16px;
}

.hero-point strong {
  display: block;
  font-size: 18px;
  margin-bottom: 8px;
}

.hero-point span {
  color: var(--subtle);
  font-size: 14px;
  line-height: 1.7;
}

.insight-card {
  background: linear-gradient(180deg, rgba(11, 17, 36, 0.94), rgba(7, 12, 25, 0.92));
  border: 1px solid var(--line);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
  position: relative;
}

.insight-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgb(var(--tone-main) / 0.4), rgba(255, 255, 255, 0));
}

.insight-head {
  padding: 30px;
  border-bottom: 1px solid var(--line);
}

.insight-label {
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgb(var(--tone-main) / 0.72);
}

.insight-title {
  margin: 14px 0 0;
  font-size: 29px;
  line-height: 1.18;
  font-family: var(--font-display);
  overflow-wrap: anywhere;
  hyphens: auto;
  text-wrap: balance;
}

.insight-copy {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.82;
}

.insight-body {
  padding: 30px;
  display: grid;
  gap: 18px;
}

.panel {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--panel-soft);
  padding: 22px;
  backdrop-filter: blur(16px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.panel h3,
.panel h4 {
  margin: 0;
}

.panel p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.panel,
.score-box strong,
.score-box p,
.content-card h3,
.content-card p,
.content-card li,
.cta h2,
.cta p,
.chip,
.footer-links-column a,
.footer-copy,
.footer-meta {
  overflow-wrap: anywhere;
}

.mini-label {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(248, 250, 252, 0.42);
}

.score-grid,
.card-grid,
.columns-2,
.columns-3 {
  display: grid;
  gap: 18px;
}

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

.insight-body .score-grid,
.insight-body .columns-3 {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  align-items: stretch;
}

.score-box {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.03);
  min-width: 0;
  backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.score-box strong {
  display: block;
  margin-top: 8px;
  font-size: 28px;
  line-height: 1.05;
}

.score-box p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.insight-body .panel,
.insight-body .score-box {
  min-height: 100%;
}

.insight-body .columns-3 .panel {
  line-height: 1.7;
}

.section {
  padding: 32px 0 0;
}

.section + .section {
  padding-top: 80px;
}

.section-header {
  max-width: 760px;
  margin-bottom: 30px;
}

.section-header h2 {
  margin: 14px 0 0;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.04;
  letter-spacing: -0.04em;
  font-family: var(--font-display);
  text-wrap: balance;
}

.section-header p {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.9;
  font-size: 18px;
}

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

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

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

.content-card {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--panel-soft);
  padding: 30px;
  backdrop-filter: blur(14px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.content-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.14;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.content-card p,
.content-card li {
  color: var(--muted);
  line-height: 1.85;
}

.content-card ul {
  margin: 18px 0 0;
  padding-left: 18px;
}

.vertical-map,
.hub-route-grid {
  display: grid;
  gap: 18px;
}

.vertical-map {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.vertical-card,
.hub-route-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(103, 232, 249, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.024));
  padding: 28px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(16px);
}

.vertical-card::before,
.hub-route-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(103, 232, 249, 0.32), rgba(255, 255, 255, 0));
}

.vertical-card h3,
.hub-route-card h3 {
  margin: 12px 0 0;
  font-family: var(--font-display);
  font-size: clamp(28px, 3.2vw, 36px);
  line-height: 1.04;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.vertical-card p,
.hub-route-card p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.82;
}

.vertical-card__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
  padding-top: 22px;
}

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

.hub-route-card .inline-list {
  margin-top: 20px;
}

.inline-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 13px;
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.chip:hover {
  border-color: rgb(var(--tone-main) / 0.24);
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.table {
  width: 100%;
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-collapse: collapse;
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
}

.table th,
.table td {
  padding: 18px 20px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.table th {
  color: rgba(103, 232, 249, 0.84);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

.table td {
  color: var(--muted);
  line-height: 1.72;
}

.cta {
  margin: 82px 0 104px;
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: 42px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.2);
}

.cta h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.04em;
  font-family: var(--font-display);
  text-wrap: balance;
}

.cta p {
  margin: 18px 0 0;
  max-width: 720px;
  color: var(--muted);
  line-height: 1.9;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.footer {
  padding: 0 0 44px;
  color: var(--subtle);
  font-size: 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(180px, 0.68fr) minmax(220px, 0.9fr) minmax(240px, 1fr);
  gap: 28px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  box-shadow: 0 26px 72px rgba(0, 0, 0, 0.2);
}

.footer-brand h3 {
  margin: 14px 0 0;
  font-size: 28px;
  line-height: 1.18;
  letter-spacing: -0.03em;
  color: var(--text);
  font-family: var(--font-display);
  text-wrap: balance;
}

.footer-copy {
  margin: 16px 0 0;
  max-width: 420px;
  color: var(--muted);
  line-height: 1.82;
}

.footer-heading {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(248, 250, 252, 0.42);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.footer-links-column {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.footer-links-column a {
  color: var(--muted);
  transition: color 180ms ease;
}

.footer-links-column a:hover,
.footer-meta a:hover {
  color: var(--text);
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 20px;
  color: var(--muted);
  line-height: 1.8;
}

.footer-meta a {
  color: inherit;
  transition: color 180ms ease;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px 28px;
  margin-top: 18px;
  padding: 18px 8px 0;
  border-top: 1px solid rgb(var(--tone-main) / 0.16);
}

.footer-legal a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 2px 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1;
  transition: color 180ms ease, opacity 180ms ease;
}

.footer-legal a:hover {
  color: rgb(var(--tone-main) / 0.92);
}

.footer-legal a:not(:first-child) {
  position: relative;
}

.footer-legal a:not(:first-child)::before {
  content: "";
  position: absolute;
  left: -14px;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(248, 250, 252, 0.22);
  transform: translateY(-50%);
}

.page-premium .hero-grid {
  gap: 52px;
}

.page-premium .hero-grid > section {
  position: relative;
}

.page-premium .hero-grid > section::after {
  content: "";
  position: absolute;
  left: 0;
  top: -18px;
  width: 72px;
  height: 1px;
  background: linear-gradient(90deg, rgb(var(--tone-main) / 0.7), rgb(var(--tone-main) / 0));
}

.stat-band,
.showcase-band,
.policy-nav {
  margin-top: 34px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.18);
}

.stat-band,
.showcase-band {
  padding: 28px;
}

.showcase-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: start;
}

.showcase-copy h2,
.policy-lede h2 {
  margin: 12px 0 0;
  font-family: var(--font-display);
  font-size: clamp(30px, 4.5vw, 48px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.showcase-copy p,
.policy-lede p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.82;
}

.stat-strip,
.showcase-grid,
.policy-grid,
.proof-grid,
.timeline-grid {
  display: grid;
  gap: 18px;
}

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

.stat-tile,
.showcase-card,
.policy-card,
.proof-card,
.timeline-step {
  position: relative;
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(16px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.stat-tile::before,
.showcase-card::before,
.policy-card::before,
.proof-card::before,
.timeline-step::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgb(var(--tone-main) / 0.3), rgba(255, 255, 255, 0));
}

.stat-tile strong,
.showcase-card h3,
.policy-card h3,
.proof-card h3,
.timeline-step h3 {
  display: block;
  margin-top: 10px;
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.stat-tile p,
.showcase-card p,
.policy-card p,
.proof-card p,
.timeline-step p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.showcase-grid,
.policy-grid,
.proof-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.showcase-card-feature,
.proof-card-feature {
  grid-column: span 2;
  background:
    radial-gradient(circle at top right, rgb(var(--tone-main) / 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.03));
}

.showcase-card blockquote,
.proof-card blockquote {
  margin: 18px 0 0;
  padding: 0 0 0 18px;
  border-left: 1px solid rgb(var(--tone-main) / 0.32);
  color: rgba(248, 250, 252, 0.9);
  font-family: var(--font-serif);
  font-size: 22px;
  line-height: 1.5;
}

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

.timeline-step {
  padding-top: 28px;
}

.timeline-step .mini-label {
  color: rgba(241, 209, 138, 0.72);
}

.timeline-step strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 14px;
  color: var(--gold);
}

.policy-nav {
  padding: 22px 24px;
  display: grid;
  gap: 18px;
}

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

.policy-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.policy-tab:hover,
.policy-tab.current {
  color: var(--text);
  border-color: rgb(var(--tone-main) / 0.34);
  background: rgba(255, 255, 255, 0.07);
}

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

.policy-card h3 {
  font-size: 20px;
}

.page-about .showcase-card-feature,
.page-method .showcase-card-feature {
  background:
    radial-gradient(circle at top right, rgba(240, 171, 252, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.03));
}

.page-proof .showcase-card-feature {
  background:
    radial-gradient(circle at top right, rgba(103, 232, 249, 0.14), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.03));
}

.page-legal .eyebrow {
  color: rgba(241, 209, 138, 0.82);
}

.page-legal .hero-grid {
  grid-template-columns: 1fr;
  gap: 28px;
}

.page-legal .hero-grid > section {
  max-width: 940px;
}

.page-legal .insight-card {
  max-width: none;
}

.page-legal .table {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.025));
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.16);
}

.page-legal .table th {
  color: rgba(241, 209, 138, 0.86);
}

.page-about .hero-points,
.page-proof .hero-points,
.page-method .hero-points,
.page-legal .hero-points {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.page-about .hero-point,
.page-proof .hero-point,
.page-method .hero-point,
.page-legal .hero-point {
  padding: 18px 0 0 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.page-legal .policy-nav,
.page-legal .section,
.page-legal .cta {
  max-width: none;
}

.page-service .hero-grid {
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.98fr);
  gap: 48px;
}

.page-service .hero-grid > section {
  padding-right: 18px;
}

.page-service .hero-grid > section::after {
  content: "";
  display: block;
  width: 108px;
  height: 1px;
  margin-top: 32px;
  background: linear-gradient(90deg, rgb(var(--tone-main) / 0.72), rgb(var(--tone-accent) / 0));
}

.page-service .insight-card {
  position: sticky;
  top: 108px;
}

.page-service .insight-card::before {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgb(var(--tone-accent) / 0.36), rgba(255, 255, 255, 0));
}

.page-service .columns-3 .panel {
  min-height: 100%;
}

.page-vertical .hero-grid,
.page-hub .hero-grid {
  grid-template-columns: 1fr;
  gap: 26px;
}

.page-vertical .hero-grid > section,
.page-hub .hero-grid > section {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 36px;
  background:
    radial-gradient(circle at top right, rgba(103, 232, 249, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.18);
}

.page-vertical .hero-grid > section::before,
.page-hub .hero-grid > section::before {
  content: "";
  display: block;
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background:
    radial-gradient(circle at 35% 35%, rgb(var(--tone-main) / 0.2), transparent 55%),
    rgba(255, 255, 255, 0.03);
}

.page-vertical .hero-grid > section::after,
.page-hub .hero-grid > section::after {
  display: none;
}

.page-vertical .insight-card,
.page-hub .insight-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
}

.page-vertical .insight-head,
.page-hub .insight-head {
  border-right: 1px solid var(--line);
  border-bottom: none;
}

.page-vertical .insight-body,
.page-hub .insight-body {
  align-content: center;
}

.page-vertical .score-grid,
.page-hub .score-grid {
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
}

.page-vertical .hero-points,
.page-hub .hero-points {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.page-vertical .hero-point,
.page-hub .hero-point {
  padding: 18px 0 0 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.page-vertical .card-grid .content-card:nth-child(odd) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.022)),
    var(--panel-soft);
}

.page-hub .hero-grid > section {
  padding-bottom: 38px;
}

.page-hub .hero-points {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.page-hub .insight-card::before {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgb(var(--tone-contrast) / 0.35), rgba(255, 255, 255, 0));
}

.page-guide .hero-grid {
  grid-template-columns: minmax(0, 1fr);
  gap: 30px;
}

.page-guide .hero-grid > section {
  max-width: 900px;
}

.page-guide .hero-grid > section::after {
  content: "";
  display: block;
  width: 124px;
  height: 1px;
  margin-top: 28px;
  background: linear-gradient(90deg, rgb(var(--tone-contrast) / 0.76), rgb(var(--tone-main) / 0));
}

.page-guide .insight-card {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(0, 1.26fr);
  background:
    radial-gradient(circle at top left, rgb(var(--tone-contrast) / 0.12), transparent 26%),
    linear-gradient(180deg, rgba(11, 17, 36, 0.94), rgba(7, 12, 25, 0.92));
}

.page-service .content-card,
.page-guide .content-card,
.page-vertical .content-card {
  position: relative;
  overflow: hidden;
}

.page-service .content-card::before,
.page-guide .content-card::before,
.page-vertical .content-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgb(var(--tone-main) / 0.3), rgba(255, 255, 255, 0));
}

.page-service .content-card {
  background:
    radial-gradient(circle at top right, rgb(var(--tone-main) / 0.06), transparent 34%),
    var(--panel-soft);
}

.page-guide .content-card {
  background:
    radial-gradient(circle at top left, rgb(var(--tone-contrast) / 0.08), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.024));
}

.page-vertical .content-card {
  background:
    radial-gradient(circle at top right, rgb(var(--tone-main) / 0.08), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.024));
}

.page-track-seo .eyebrow {
  border-color: rgb(var(--tone-main) / 0.24);
}

.page-track-seo .page-title .gradient {
  background: linear-gradient(90deg, rgb(var(--tone-main)) 0%, #ffffff 42%, rgb(var(--tone-contrast)) 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.page-track-seo .insight-card {
  background:
    radial-gradient(circle at top right, rgb(var(--tone-main) / 0.11), transparent 28%),
    linear-gradient(180deg, rgba(11, 17, 36, 0.94), rgba(7, 12, 25, 0.92));
}

.page-track-seo .score-box,
.page-track-seo .content-card {
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.page-track-geo .eyebrow {
  border-color: rgb(var(--tone-accent) / 0.26);
  color: rgb(var(--tone-accent) / 0.82);
}

.page-track-geo .page-title .gradient {
  background: linear-gradient(90deg, rgb(var(--tone-accent)) 0%, #ffffff 45%, rgb(var(--tone-main)) 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.page-track-geo .insight-card {
  background:
    radial-gradient(circle at top left, rgb(var(--tone-accent) / 0.12), transparent 28%),
    linear-gradient(180deg, rgba(11, 17, 36, 0.94), rgba(7, 12, 25, 0.92));
}

.page-track-geo .score-box {
  background:
    radial-gradient(circle at top left, rgb(var(--tone-accent) / 0.08), transparent 36%),
    rgba(255, 255, 255, 0.03);
}

.page-track-geo .content-card {
  background:
    radial-gradient(circle at top left, rgb(var(--tone-accent) / 0.08), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.024));
}

.page-guide .section-header,
.page-legal .section-header {
  max-width: 820px;
}

.page-guide .inline-list,
.page-vertical .inline-list {
  gap: 10px;
}

.page-guide .chip,
.page-vertical .chip {
  background: rgba(255, 255, 255, 0.045);
}

.theme-geo-core {
  --tone-main: 103 232 249;
  --tone-accent: 192 132 252;
  --tone-contrast: 241 209 138;
}

.theme-audit {
  --tone-main: 125 211 252;
  --tone-accent: 16 185 129;
  --tone-contrast: 245 158 11;
}

.theme-compare {
  --tone-main: 165 180 252;
  --tone-accent: 103 232 249;
  --tone-contrast: 244 114 182;
}

.theme-law {
  --tone-main: 96 165 250;
  --tone-accent: 103 232 249;
  --tone-contrast: 241 209 138;
}

.theme-real-estate {
  --tone-main: 241 209 138;
  --tone-accent: 103 232 249;
  --tone-contrast: 167 243 208;
}

.theme-med-spa {
  --tone-main: 244 114 182;
  --tone-accent: 192 132 252;
  --tone-contrast: 251 191 36;
}

.theme-private-equity {
  --tone-main: 196 181 253;
  --tone-accent: 125 211 252;
  --tone-contrast: 241 209 138;
}

.theme-oil-gas {
  --tone-main: 251 191 36;
  --tone-accent: 103 232 249;
  --tone-contrast: 249 115 22;
}

.theme-industries {
  --tone-main: 103 232 249;
  --tone-accent: 192 132 252;
  --tone-contrast: 241 209 138;
}

.theme-founder {
  --tone-main: 103 232 249;
  --tone-accent: 240 171 252;
  --tone-contrast: 241 209 138;
}

.theme-proof {
  --tone-main: 103 232 249;
  --tone-accent: 94 234 212;
  --tone-contrast: 241 209 138;
}

.theme-method {
  --tone-main: 241 209 138;
  --tone-accent: 103 232 249;
  --tone-contrast: 192 132 252;
}

.theme-chatgpt {
  --tone-main: 103 232 249;
  --tone-accent: 167 243 208;
  --tone-contrast: 241 209 138;
}

.theme-overviews {
  --tone-main: 96 165 250;
  --tone-accent: 251 191 36;
  --tone-contrast: 103 232 249;
}

.theme-privacy {
  --tone-main: 241 209 138;
  --tone-accent: 103 232 249;
  --tone-contrast: 192 132 252;
}

.theme-terms {
  --tone-main: 192 132 252;
  --tone-accent: 125 211 252;
  --tone-contrast: 241 209 138;
}

.theme-cookies {
  --tone-main: 167 243 208;
  --tone-accent: 103 232 249;
  --tone-contrast: 241 209 138;
}

.page-guide .insight-head {
  border-right: 1px solid var(--line);
  border-bottom: none;
}

.page-guide .insight-title {
  max-width: 16ch;
}

.page-guide .insight-body {
  grid-template-columns: 1fr;
}

.page-guide .insight-body .score-grid:last-child .score-box strong {
  font-size: 22px;
}

.page-guide .hero-points {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.page-guide .hero-point {
  padding: 18px 0 0 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (min-width: 1024px) {
  .site-header-nav {
    display: flex;
  }

  .site-header-menu-toggle {
    display: none;
  }
}

@media (max-width: 980px) {
  html {
    scroll-padding-top: 96px;
  }

  .hero-grid,
  .columns-2,
  .columns-3,
  .card-grid,
  .footer-grid,
  .hub-route-grid {
    grid-template-columns: 1fr;
  }

  .score-grid,
  .hero-points,
  .stat-strip,
  .showcase-band,
  .showcase-grid,
  .policy-grid,
  .proof-grid,
  .timeline-grid {
    grid-template-columns: 1fr;
  }

  .nav {
    display: none;
    width: 100%;
    order: 3;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    overflow: visible;
    padding: 10px 0 0;
    margin-top: 2px;
    border-top: 1px solid var(--line);
  }

  .topbar.nav-open .nav {
    display: grid;
    animation: navReveal 180ms ease;
  }

  .nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 12px;
    border: 1px solid var(--line);
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.03);
    text-align: center;
    line-height: 1.4;
    white-space: normal;
  }

  .nav a.nav-current::after {
    display: none;
  }

  .topbar-inner {
    flex-wrap: wrap;
    align-items: center;
    gap: 16px 18px;
  }

  .topbar-actions {
    order: 2;
    margin-left: auto;
    flex: 0 0 auto;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .hero {
    padding-top: 56px;
  }

  .hero-grid {
    gap: 28px;
  }

  .page-premium .hero-grid,
  .page-service .hero-grid,
  .page-guide .hero-grid,
  .page-legal .hero-grid {
    grid-template-columns: 1fr;
  }

  .page-service .hero-grid > section {
    padding-right: 0;
  }

  .page-service .hero-grid > section::after,
  .page-guide .hero-grid > section::after {
    margin-top: 24px;
    width: 88px;
  }

  .page-guide .hero-grid > section {
    max-width: none;
  }

  .page-premium .hero-grid > section,
  .page-legal .hero-grid > section {
    max-width: none;
  }

  .page-about .hero-points,
  .page-proof .hero-points,
  .page-method .hero-points,
  .page-legal .hero-points {
    grid-template-columns: 1fr;
  }

  .page-vertical .hero-grid > section,
  .page-hub .hero-grid > section {
    padding: 28px;
    border-radius: 30px;
  }

  .page-vertical .hero-grid > section::before,
  .page-hub .hero-grid > section::before {
    width: 44px;
    height: 44px;
    margin-bottom: 16px;
    border-radius: 16px;
  }

  .hero-actions .button {
    flex: 1 1 220px;
  }

  .section + .section {
    padding-top: 64px;
  }

  .policy-nav {
    padding: 20px;
    border-radius: 28px;
  }

  .policy-links {
    gap: 10px;
  }

  .insight-head,
  .insight-body,
  .content-card,
  .vertical-card,
  .hub-route-card,
  .panel,
  .cta,
  .footer-grid {
    padding: 24px;
  }

  .showcase-card-feature,
  .proof-card-feature {
    grid-column: auto;
  }

  .page-service .insight-card,
  .page-vertical .insight-card,
  .page-hub .insight-card,
  .page-guide .insight-card {
    position: static;
    grid-template-columns: 1fr;
  }

  .page-vertical .insight-head,
  .page-hub .insight-head,
  .page-guide .insight-head {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .page-vertical .hero-points,
  .page-hub .hero-points,
  .page-guide .hero-points {
    grid-template-columns: 1fr;
  }

  .site-header-inner {
    height: auto;
    min-height: 92px;
    gap: 18px;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .site-header-contact {
    min-height: 44px;
    padding: 0 18px;
    font-size: 14px;
  }

  .site-header.is-open .site-header-mobile-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    animation: navReveal 180ms ease;
  }
}

@media (max-width: 640px) {
  .shell {
    width: min(100% - 16px, 1120px);
  }

  html {
    scroll-padding-top: 88px;
  }

  .site-header-inner {
    min-height: 84px;
    gap: 14px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .site-header-brand {
    min-width: 0;
    flex: 1 1 auto;
    gap: 12px;
  }

  .site-header-brand-mark {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
    border-radius: 15px;
  }

  .site-header-brand-mark img {
    width: 24px;
    height: 24px;
  }

  .site-header-brand-kicker {
    font-size: 9px;
    letter-spacing: 0.22em;
  }

  .site-header-brand-name {
    margin-top: 6px;
    font-size: 15px;
  }

  .site-header-cta {
    gap: 10px;
  }

  .site-header-contact {
    padding: 0 14px;
    font-size: 13px;
  }

  .site-header-mobile-nav {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero {
    padding-top: 44px;
  }

  .topbar-inner {
    padding: 12px 0;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 14px;
  }

  .brand-mark img {
    width: 24px;
    height: 24px;
  }

  .brand-meta {
    gap: 2px;
  }

  .brand-kicker {
    font-size: 9px;
    letter-spacing: 0.22em;
  }

  .brand-name {
    font-size: 14px;
  }

  .nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    font-size: 10px;
    letter-spacing: 0.13em;
  }

  .button {
    width: 100%;
  }

  .topbar-actions {
    order: 2;
    width: auto;
    margin-left: auto;
    flex: 0 0 auto;
  }

  .topbar-actions .button {
    width: auto;
    min-width: 0;
    min-height: 40px;
    padding: 10px 14px;
  }

  .nav a {
    justify-content: center;
    font-size: 10px;
    letter-spacing: 0.11em;
    padding: 9px 10px;
    min-height: 40px;
  }

  .nav a:last-child {
    grid-column: 1 / -1;
  }

  .eyebrow {
    padding: 8px 12px;
    font-size: 11px;
    letter-spacing: 0.22em;
  }

  .page-title {
    margin-top: 18px;
    font-size: clamp(32px, 12vw, 46px);
    line-height: 1.02;
  }

  .lede,
  .section-header p,
  .cta p {
    font-size: 15.5px;
    line-height: 1.72;
  }

  .section-header {
    margin-bottom: 24px;
  }

  .section-header h2 {
    font-size: clamp(28px, 9vw, 38px);
  }

  .hero-points {
    margin-top: 30px;
    gap: 14px;
  }

  .hero-point strong {
    font-size: 17px;
  }

  .insight-card,
  .content-card,
  .vertical-card,
  .hub-route-card,
  .cta,
  .footer-grid {
    border-radius: 24px;
  }

  .insight-head,
  .insight-body,
  .content-card,
  .vertical-card,
  .hub-route-card,
  .panel,
  .cta,
  .footer-grid {
    padding: 18px;
  }

  .content-card h3,
  .vertical-card h3,
  .hub-route-card h3 {
    font-size: 22px;
  }

  .content-card p,
  .content-card li,
  .policy-card p,
  .showcase-card p,
  .panel p,
  .insight-copy,
  .hero-point span {
    font-size: 15px;
    line-height: 1.72;
  }

  .inline-list {
    flex-direction: column;
  }

  .inline-list .chip {
    width: 100%;
  }

  .policy-nav {
    padding: 18px;
    border-radius: 24px;
    gap: 14px;
  }

  .policy-links {
    flex-direction: column;
  }

  .policy-tab {
    width: 100%;
    justify-content: flex-start;
    min-height: 50px;
    padding: 0 16px;
    font-size: 12px;
    letter-spacing: 0.04em;
  }

  .policy-grid {
    gap: 14px;
  }

  .policy-card h3 {
    font-size: 19px;
  }

  .page-legal .section-header,
  .page-guide .section-header {
    max-width: none;
  }

  .page-legal .card-grid,
  .page-legal .columns-2,
  .page-legal .columns-3 {
    gap: 14px;
  }

  .page-legal .content-card,
  .page-legal .policy-card,
  .page-legal .panel {
    border-radius: 20px;
  }

  .score-box strong {
    font-size: 24px;
  }

  .table {
    border: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .table tbody {
    display: grid;
    gap: 14px;
  }

  .table tr {
    display: block;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.14);
  }

  .table td {
    display: grid;
    grid-template-columns: minmax(96px, 112px) minmax(0, 1fr);
    gap: 12px;
    padding: 14px 16px;
    border-bottom: 1px solid var(--line);
  }

  .table tr td:last-child {
    border-bottom: none;
  }

  .table td::before {
    content: attr(data-label);
    color: rgba(248, 250, 252, 0.42);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.22em;
    line-height: 1.6;
    text-transform: uppercase;
  }

  .vertical-card__links {
    flex-direction: column;
  }

  .vertical-card__links .chip,
  .footer-links .chip {
    width: 100%;
  }

  .cta,
  .footer-grid {
    padding: 20px;
  }

  .cta {
    margin: 72px 0 88px;
  }

  .hero-actions .button,
  .cta-actions .button {
    width: 100%;
  }

  .footer-brand h3 {
    font-size: 24px;
  }

  .footer-meta {
    flex-direction: column;
    gap: 4px;
  }

  .footer-legal {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
    width: 100%;
    gap: 8px 12px;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
  }

  .footer-legal a {
    width: 100%;
    min-height: 34px;
    text-align: center;
    line-height: 1.35;
  }

  .footer-legal a:not(:first-child)::before {
    display: none;
  }
}

@media (max-width: 520px) {
  html {
    scroll-padding-top: 84px;
  }

  .site-header-contact {
    display: none;
  }

  .site-header.is-open .site-header-mobile-nav {
    grid-template-columns: 1fr;
  }

  .topbar-inner {
    align-items: center;
  }

  .brand {
    flex: 1 1 auto;
    min-width: 0;
  }

  .topbar-actions {
    width: auto;
    order: 2;
    margin-left: auto;
  }

  .topbar-actions .button {
    width: auto;
  }

  .nav {
    order: 3;
  }
}

@media (max-width: 768px) {
  .section,
  .cta,
  .footer {
    content-visibility: auto;
    contain-intrinsic-size: 1px 840px;
  }
}

@keyframes navReveal {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

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