/* Equity Empire — design system */

@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&family=Inter:wght@500;600;700&family=Montserrat:wght@500;600;700&display=swap");

:root {
  --charcoal: #0b0f14;
  --navy: #121a24;
  --navy-light: #1a2433;
  --gold: #c4a35a;
  --gold-light: #d4b76e;
  --gold-dark: #a8893f;
  --text: #e8eaed;
  --muted: #8a9199;
  --border: rgba(196, 163, 90, 0.15);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-heading: "Montserrat", "DM Sans", system-ui, sans-serif;
  --font-sans: "DM Sans", system-ui, sans-serif;
  --font-stat: "Inter", "DM Sans", system-ui, sans-serif;
  --max-width: 1200px;
  --nav-height: 88px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: var(--charcoal);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 500;
  font-variant-numeric: lining-nums;
}

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

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

.container {
  width: min(100% - 2.5rem, var(--max-width));
  margin-inline: auto;
}

/* ── Nav ── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-height);
  background: rgba(11, 15, 20, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  flex-shrink: 0;
}

.logo-img {
  display: block;
  flex-shrink: 0;
  height: 52px;
  width: auto;
  background: transparent;
}

.logo-mark {
  width: 28px;
  height: 28px;
  border: 1.5px solid var(--gold);
  border-radius: 4px;
  display: grid;
  place-items: center;
  font-size: 0.65rem;
  color: var(--gold);
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.875rem;
  color: var(--muted);
  transition: color 0.2s;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.25s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.4rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 4px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
}

.btn:hover {
  transform: translateY(-1px);
}

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

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

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-text {
  background: none;
  border: none;
  color: var(--muted);
  padding: 0.5rem;
}

.btn-text:hover {
  color: var(--text);
}

.btn-copy {
  background: none;
  border: none;
  color: var(--gold);
  font-weight: 500;
  font-size: 0.85rem;
  cursor: pointer;
  padding: 0;
  transition: color 0.2s;
}

.btn-copy:hover {
  color: var(--gold-light);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ── Hero ── */

.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-height));
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(196, 163, 90, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196, 163, 90, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.4) 40%, rgba(0, 0, 0, 0.9) 100%);
}

.hero-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 75% 40%, rgba(196, 163, 90, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(26, 36, 51, 0.8) 0%, transparent 60%),
    linear-gradient(to bottom, transparent 60%, var(--charcoal) 100%);
}

.hero-bg-chart {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.25) 30%, rgba(0, 0, 0, 0.7) 65%, rgba(0, 0, 0, 0.35) 100%);
}

.hero-bg-chart canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  align-items: center;
  gap: 3rem;
  min-height: calc(100vh - var(--nav-height));
  padding: 4rem 0 5rem;
}

.hero-content {
  animation: slideUp 0.9s ease-out forwards;
}

.hero-badge {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border);
  padding: 0.35rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
  background: rgba(196, 163, 90, 0.06);
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 1.25rem;
}

.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 500;
  color: var(--text);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-sub {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 28rem;
  margin-bottom: 2rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.hero-stat-value {
  display: block;
  font-family: var(--font-stat);
  font-size: 1.85rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.03em;
  color: var(--gold);
  line-height: 1.2;
}

.hero-stat-label {
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── Hero chart panel ── */

.hero-visual {
  animation: fadeIn 1.2s ease-out forwards;
}

.hero-chart-panel {
  background: rgba(18, 26, 36, 0.88);
  border: 1px solid var(--border);
  border-radius: 10px;
  backdrop-filter: blur(16px);
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(196, 163, 90, 0.06) inset;
  overflow: hidden;
}

.hero-chart-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
  background: rgba(11, 15, 20, 0.55);
  font-size: 0.75rem;
}

.hero-chart-live {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text);
  font-weight: 500;
  letter-spacing: 0.04em;
}

.hero-chart-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #5cb87a;
  box-shadow: 0 0 8px rgba(92, 184, 122, 0.55);
  animation: pulseLive 2s ease-in-out infinite;
}

.hero-chart-note {
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.65rem;
}

.hero-chart-canvas {
  display: block;
  width: 100%;
  height: 340px;
}

@keyframes pulseLive {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@keyframes pulseRing {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(2); opacity: 0; }
}

/* ── About ── */

.about-section {
  background: var(--navy);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-lead {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  line-height: 1.5;
  color: var(--text);
  margin-bottom: 1.25rem;
}

.about-body {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.about-focus {
  background: rgba(11, 15, 20, 0.6);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
}

.about-focus-title {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.focus-list {
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.focus-list li {
  font-size: 0.95rem;
  color: var(--text);
  padding-left: 1.25rem;
  position: relative;
}

.focus-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

.about-page-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  align-items: start;
}

.about-mission-copy .about-lead {
  font-size: 1.12rem;
  line-height: 1.6;
  color: var(--gold);
}

.about-page-main .about-lead {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.about-sidebar-block {
  background: var(--navy);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.75rem;
  margin-bottom: 1.5rem;
}

.about-sidebar-block h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.service-list {
  list-style: none;
}

.service-list li {
  color: var(--muted);
  font-size: 0.95rem;
  padding: 0.5rem 0;
  padding-left: 1.25rem;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.service-list li:last-child {
  border-bottom: none;
}

.service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85em;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

/* ── About page (dedicated) ── */

.page-hero.about-hero {
  position: relative;
  overflow: hidden;
  padding: 3.25rem 0 2rem;
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.about-hero-glow {
  position: absolute;
  top: 10%;
  right: 5%;
  width: min(520px, 60vw);
  height: min(520px, 60vw);
  background: radial-gradient(circle, rgba(196, 163, 90, 0.12) 0%, transparent 68%);
}

.about-hero-sub {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 34rem;
  margin-top: 0.75rem;
}

.about-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.about-hero-actions .btn {
  min-height: 2.75rem;
}

.about-hero-visual {
  position: relative;
}

.about-chart-panel {
  min-height: 250px;
}

.about-chart-panel .hero-chart-canvas {
  height: 210px;
}

.about-stats-band {
  background: var(--navy);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.1rem 0;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.about-stat {
  text-align: center;
  padding: 0.2rem 0.75rem;
  border-right: 1px solid var(--border);
}

.about-stat:last-child {
  border-right: none;
}

.about-stat-value {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.5vw, 1.9rem);
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.2rem;
}

.about-stat-label {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.3;
}

.section.about-mission-section {
  padding: 2rem 0 4rem;
}

.about-mission-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 3rem;
  align-items: center;
}

.about-mission-visual {
  overflow: visible;
}

.about-orbit-card {
  position: relative;
  aspect-ratio: 1;
  width: min(368px, 100%);
  max-width: 368px;
  margin: 0 auto;
  padding: 0.35rem;
  display: grid;
  place-items: center;
}

.about-orbit-ring {
  position: absolute;
  border: 1px solid rgba(196, 163, 90, 0.22);
  border-radius: 14px;
  pointer-events: none;
}

.about-orbit-ring--outer {
  inset: 0;
  animation: about-orbit-spin 48s linear infinite;
}

.about-orbit-ring--inner {
  inset: 18%;
  border-style: dashed;
  border-color: rgba(196, 163, 90, 0.18);
  animation: about-orbit-spin 32s linear infinite reverse;
}

@keyframes about-orbit-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.about-orbit-diagram {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.about-orbit-frame {
  fill: none;
  stroke: rgba(196, 163, 90, 0.1);
  stroke-width: 1;
}

.about-orbit-spoke {
  stroke: rgba(196, 163, 90, 0.28);
  stroke-width: 1;
  stroke-dasharray: 4 8;
  animation: about-orbit-spoke-flow 2.4s linear infinite;
}

@keyframes about-orbit-spoke-flow {
  to { stroke-dashoffset: -24; }
}

.about-orbit-flow-dot {
  fill: var(--gold);
  opacity: 0.85;
}

.about-orbit-flow-dot--1 { animation: about-orbit-dot-1 3.2s ease-in-out infinite; }
.about-orbit-flow-dot--2 { animation: about-orbit-dot-2 3.2s ease-in-out infinite 0.8s; }
.about-orbit-flow-dot--3 { animation: about-orbit-dot-3 3.2s ease-in-out infinite 1.6s; }
.about-orbit-flow-dot--4 { animation: about-orbit-dot-4 3.2s ease-in-out infinite 2.4s; }

@keyframes about-orbit-dot-1 {
  0%, 100% { transform: translateY(0); opacity: 0.3; }
  50% { transform: translateY(72px); opacity: 1; }
}

@keyframes about-orbit-dot-2 {
  0%, 100% { transform: translateX(0); opacity: 0.3; }
  50% { transform: translateX(-72px); opacity: 1; }
}

@keyframes about-orbit-dot-3 {
  0%, 100% { transform: translateY(0); opacity: 0.3; }
  50% { transform: translateY(-72px); opacity: 1; }
}

@keyframes about-orbit-dot-4 {
  0%, 100% { transform: translateX(0); opacity: 0.3; }
  50% { transform: translateX(72px); opacity: 1; }
}

.about-orbit-core {
  position: relative;
  z-index: 2;
  width: 108px;
  height: 108px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(11, 15, 20, 0.92);
  border: 1px solid rgba(196, 163, 90, 0.35);
  border-radius: 12px;
  box-shadow: 0 0 48px rgba(196, 163, 90, 0.14);
}

.about-orbit-logo {
  display: block;
  height: 50px;
  width: auto;
  object-fit: contain;
  background: transparent;
}

.about-orbit-node {
  position: absolute;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  min-width: 5.5rem;
  padding: 0.65rem 0.75rem;
  text-align: center;
  background: var(--navy-light);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.about-orbit-node-icon {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: var(--gold);
  background: rgba(196, 163, 90, 0.08);
  border: 1px solid rgba(196, 163, 90, 0.2);
  border-radius: 8px;
}

.about-orbit-node-icon svg {
  width: 18px;
  height: 18px;
}

.about-orbit-node-label {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1.2;
}

.about-orbit-node--1 { top: 3%; left: 50%; transform: translateX(-50%); }
.about-orbit-node--2 { top: 50%; right: 3%; transform: translateY(-50%); }
.about-orbit-node--3 { bottom: 3%; left: 50%; transform: translateX(-50%); }
.about-orbit-node--4 { top: 50%; left: 3%; transform: translateY(-50%); }

.about-orbit-caption {
  margin: 0.85rem auto 0;
  max-width: 22rem;
  text-align: center;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.55;
}

.about-pillars-section {
  background: var(--navy);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-pillars-header {
  margin-bottom: 2.5rem;
}

.about-pillars-header-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.about-pillars-header-copy {
  grid-column: 1 / 3;
}

.about-pillars-header-copy .section-title {
  margin-bottom: 0.75rem;
}

.about-topics-grid.about-pillars-topics {
  grid-template-columns: 1fr;
  margin: 0;
}

.about-pillars-lead {
  max-width: none;
  margin-top: 0;
}

.about-pillars-header-copy .about-body {
  max-width: none;
}

.about-pillars-header-copy .about-body + .about-body {
  margin-top: 1rem;
}

.about-pillars-intro {
  max-width: none;
  margin: 0 0 2.5rem;
}

.about-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.about-pillar-card {
  background: rgba(11, 15, 20, 0.55);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2rem 1.75rem;
  transition: border-color 0.2s, transform 0.2s;
}

.about-pillar-card:hover {
  border-color: rgba(196, 163, 90, 0.35);
  transform: translateY(-3px);
}

.about-pillar-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 1.25rem;
  color: var(--gold);
  background: rgba(196, 163, 90, 0.08);
  border: 1px solid rgba(196, 163, 90, 0.2);
  border-radius: 8px;
}

.about-pillar-icon svg {
  width: 24px;
  height: 24px;
}

.about-pillar-card h3 {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 0.65rem;
}

.about-pillar-card p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
  margin: 0 0 1rem;
}

.about-pillar-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.about-pillar-list li {
  position: relative;
  padding-left: 1rem;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.55;
}

.about-pillar-list li + li {
  margin-top: 0.45rem;
}

.about-pillar-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

.about-pillars-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 2.5rem;
  padding: 1.75rem 2rem;
  background: rgba(11, 15, 20, 0.55);
  border: 1px solid var(--border);
  border-radius: 10px;
}

.about-pillars-footer-copy h3 {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0.45rem;
}

.about-pillars-footer-copy p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0;
  max-width: 40rem;
}

.about-pillars-footer .btn {
  flex-shrink: 0;
}

.about-topics-section {
  padding-bottom: 2rem;
}

.about-topics-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 3rem;
  align-items: start;
}

.about-topics-intro {
  max-width: 36rem;
}

.about-topics-intro--solo {
  max-width: 42rem;
}

.about-services-list {
  margin-top: 1.5rem;
}

.about-topics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}

.about-topic-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.15rem;
  background: var(--navy);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.92rem;
  color: var(--text);
  transition: border-color 0.2s, background 0.2s;
}

.about-topic-card:hover {
  border-color: rgba(196, 163, 90, 0.3);
  background: rgba(196, 163, 90, 0.04);
}

.about-topic-dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px rgba(196, 163, 90, 0.45);
}

.about-flow-section .section-header {
  margin-bottom: 2rem;
}

.about-flow-section {
  background: linear-gradient(180deg, rgba(18, 26, 36, 0.4) 0%, var(--navy) 100%);
  border-top: 1px solid var(--border);
  padding-bottom: 4rem;
}

.about-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0.75rem;
  align-items: stretch;
  margin-top: 2rem;
}

.about-flow-step {
  background: rgba(11, 15, 20, 0.55);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.25rem 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.about-flow-step strong {
  font-size: 1rem;
  font-weight: 500;
}

.about-flow-step span:last-child {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.45;
}

.about-flow-step--highlight {
  border-color: rgba(196, 163, 90, 0.45);
  background: rgba(196, 163, 90, 0.06);
}

.about-flow-step--highlight strong {
  color: var(--gold);
}

.about-flow-num {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: var(--gold);
}

.about-flow-connector {
  align-self: center;
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.about-flow-outro {
  max-width: 38rem;
  margin: 2rem auto 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.about-flow-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

/* ── Sections ── */

.section {
  padding: 5rem 0;
}

.section-header {
  margin-bottom: 2.5rem;
}

.section-label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  letter-spacing: -0.02em;
}

.section-sub {
  color: var(--muted);
  margin-top: 0.5rem;
  max-width: 36rem;
}

.about-flow-section .section-sub.about-flow-intro {
  max-width: none;
  width: 100%;
  margin-top: 0.85rem;
  font-size: 1.02rem;
  line-height: 1.75;
}

/* ── Strategy rows ── */

.strategy-list {
  border-top: 1px solid var(--border);
}

.strategy-row {
  display: grid;
  grid-template-columns: 5.5rem minmax(0, 1.5fr) repeat(5, minmax(0, 1fr)) auto;
  align-items: center;
  gap: 0.85rem 1.25rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}

.strategy-row:hover {
  background: rgba(196, 163, 90, 0.03);
}

.strategy-row--header {
  padding: 0.75rem 0;
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.015);
}

.strategy-row--header:hover {
  background: rgba(255, 255, 255, 0.015);
}

.strategy-row--header .stat {
  font-size: inherit;
  line-height: inherit;
}

.strategy-row-header-copy {
  visibility: hidden;
  pointer-events: none;
}

.strategy-row-tag-spacer {
  width: 5.5rem;
}

.strategy-name {
  font-weight: 500;
  font-size: 0.98rem;
  line-height: 1.35;
  min-width: 0;
}

.strategy-name a:hover {
  color: var(--gold);
}

.strategy-tags {
  display: flex;
  flex-shrink: 0;
  width: 5.5rem;
  margin-top: 0;
}

.tag {
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.24rem 0.58rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--muted);
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.02);
  box-sizing: border-box;
}

.stat {
  font-size: 0.85rem;
  line-height: 1.4;
}

.stat-positive {
  color: #6ecf8a;
}

.stat-negative {
  color: #e07a7a;
}

.stat-label {
  display: none;
  font-size: 0.68rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stat-pending {
  font-size: 0.82rem;
  color: var(--muted);
}

/* ── How it works ── */

.how-it-works-section {
  padding-top: 4rem;
}

.how-it-works-section > .container > .steps:first-of-type {
  margin-top: 1.6rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.step {
  padding: 2rem;
  background: var(--navy);
  border: 1px solid var(--border);
  border-radius: 6px;
}

.step-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.step h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.step p {
  color: var(--muted);
  font-size: 0.9rem;
}

/* ── Brokers grid ── */

.broker-disclaimer {
  background: rgba(196, 163, 90, 0.06);
  border: 1px solid var(--gold);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  margin-top: 2rem;
}

.broker-disclaimer-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.broker-disclaimer p:last-child {
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.35;
  margin: 0;
}

.broker-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(168px, 1fr));
  gap: 1rem;
}

.broker-card {
  display: block;
  background: var(--navy);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.25rem 1rem 1rem;
  text-align: center;
  color: inherit;
  text-decoration: none;
  transition: border-color 0.2s, transform 0.15s;
}

.broker-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.broker-card:hover h3 {
  color: var(--gold);
}

.broker-logo-wrap {
  width: 56px;
  height: 56px;
  margin: 0 auto 0.85rem;
  border-radius: 8px;
  background: #fff;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 6px;
}

.broker-logo {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.broker-logo-fallback {
  font-family: var(--font-stat);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: 0.02em;
}

.broker-card h3 {
  font-size: 0.82rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
  line-height: 1.3;
}

.broker-card p {
  font-size: 0.7rem;
  color: var(--muted);
}

/* ── Pricing ── */

.pricing-section {
  padding-top: 4rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1.25rem;
  align-items: stretch;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--navy);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2rem;
}

.pricing-card.featured {
  border-color: var(--gold);
}

.pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.pricing-price {
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold);
  margin: 1rem 0;
}

.pricing-price span {
  font-size: 0.875rem;
  color: var(--muted);
  font-weight: 400;
}

.pricing-features {
  list-style: none;
  margin: 1.5rem 0 0;
  flex: 1;
}

.pricing-card .btn {
  margin-top: 1.5rem;
  width: 100%;
}

.pricing-features li {
  padding: 0.4rem 0;
  font-size: 0.9rem;
  color: var(--muted);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-features li::before {
  content: "—";
  color: var(--gold);
  margin-right: 0.5rem;
}

/* ── Strategy detail ── */

.detail-hero {
  padding: 2rem 0 1.25rem;
  border-bottom: 1px solid var(--border);
}

.detail-back-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.detail-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s;
}

.detail-back-link:hover {
  color: var(--gold-light);
}

.detail-nav-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
}

.detail-nav-link {
  font-size: 0.82rem;
  color: var(--muted);
  text-decoration: none;
  max-width: 14rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.2s;
}

.detail-nav-link:hover {
  color: var(--text);
}

.detail-nav-link--disabled {
  font-size: 0.82rem;
  color: rgba(138, 145, 153, 0.45);
  max-width: 14rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.detail-bottom-nav-section {
  padding: 0 0 3rem;
  border-top: 1px solid var(--border);
}

.detail-bottom-nav-section .detail-back-nav {
  margin-bottom: 0;
  padding-top: 1.5rem;
  padding-bottom: 0;
  border-bottom: none;
}

.detail-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.detail-tagline {
  color: var(--muted);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.detail-section-title {
  font-size: 1.75rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.detail-description {
  color: var(--muted);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.strategy-body-section {
  padding: 1.25rem 0 1.5rem;
}

.detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  padding: 0;
}

.detail-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.detail-stat {
  display: inline-flex;
  flex-direction: column;
  width: fit-content;
  max-width: 100%;
  background: var(--navy);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.55rem 0.8rem;
}

.detail-stat .stat-label {
  display: block;
  margin-bottom: 0.15rem;
}

.detail-stat .stat-value {
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.2;
}

.detail-stat .stat-value:not(:has(.stat-pending)) {
  white-space: nowrap;
}

.detail-stat .stat-pending {
  font-size: 0.72rem;
  font-weight: 500;
  line-height: 1.3;
  white-space: normal;
}

.detail-stat .stat-value--sm {
  font-size: 0.9rem;
  font-weight: 500;
}

.trade-stats-block {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.trade-stats-title {
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.trade-stats-grid {
  margin-top: 0;
}

.copy-panel {
  background: var(--navy);
  border: 1px solid var(--gold);
  border-radius: 6px;
  padding: 2rem;
  position: sticky;
  top: calc(var(--nav-height) + 1.5rem);
}

.copy-panel h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.copy-panel p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.copy-note {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.monthly-results-section {
  padding: 1.25rem 0 1.5rem;
  border-top: 1px solid var(--border);
}

.past-trades-section {
  padding: 1.25rem 0 3rem;
  border-top: 1px solid var(--border);
}

.past-trades-scroll {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--navy);
  max-height: 520px;
  overflow-y: auto;
}

.past-trades-table {
  width: 100%;
  min-width: 980px;
  border-collapse: collapse;
  font-size: 0.82rem;
}

.past-trades-table th,
.past-trades-table td {
  padding: 0.65rem 0.75rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  vertical-align: top;
}

.past-trades-table thead th {
  position: sticky;
  top: 0;
  z-index: 1;
  color: var(--muted);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--navy-light);
  box-shadow: 0 1px 0 var(--border);
}

.past-trades-cell--symbol {
  color: var(--gold);
  font-weight: 600;
  white-space: nowrap;
}

.past-trades-cell--desc {
  color: var(--muted);
  max-width: 220px;
}

.past-trades-cell--opened {
  white-space: nowrap;
}

.past-trades-cell--pl {
  white-space: nowrap;
  text-align: right;
}

.past-trades-table th:last-child,
.past-trades-table td:last-child {
  text-align: right;
}

.trade-side {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.15rem 0.4rem;
  border-radius: 3px;
  border: 1px solid var(--border);
}

.trade-side--long {
  color: #6ecf8a;
}

.trade-side--short {
  color: #e07a7a;
}

.monthly-results-empty {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--navy);
  padding: 2.5rem 1.5rem;
  text-align: center;
}

.monthly-results-link {
  text-decoration: none;
}

.monthly-results-link:hover {
  color: var(--gold);
}

.monthly-results-header {
  margin-bottom: 1.25rem;
}

.monthly-results-title {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
}

.monthly-results-note {
  color: var(--muted);
  font-size: 0.82rem;
}

.monthly-results-scroll {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--navy);
}

.monthly-results-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: 0.82rem;
  font-family: var(--font-stat);
}

.monthly-results-table th,
.monthly-results-table td {
  padding: 0.65rem 0.5rem;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.monthly-results-table thead th {
  color: var(--muted);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(11, 15, 20, 0.35);
}

.monthly-year {
  text-align: left;
  padding-left: 1rem;
  color: var(--gold);
  font-weight: 600;
  white-space: nowrap;
}

.monthly-cell--empty {
  color: rgba(138, 145, 153, 0.45);
}

.monthly-cell--pos {
  color: #6ecf8a;
}

.monthly-cell--neg {
  color: #e07a7a;
}

.monthly-cell--ytd {
  font-weight: 600;
  background: rgba(196, 163, 90, 0.06);
}

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

.page-hero {
  padding: 4rem 0 3rem;
  border-bottom: 1px solid var(--border);
}

.page-hero--compact {
  padding-bottom: 1.5rem;
}

.page-hero-split {
  display: grid;
  grid-template-columns: 1fr minmax(480px, 54%);
  align-items: center;
  gap: 2.5rem;
}

.page-hero-content {
  max-width: 42rem;
}

.hero-cta-panel {
  background: var(--navy);
  border: 1px solid var(--gold);
  border-radius: 10px;
  padding: 1.35rem 1.5rem;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

.hero-cta-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.35rem;
}

.hero-cta-title {
  font-size: 1.35rem;
  line-height: 1.25;
  margin-bottom: 0.4rem;
}

.hero-cta-text {
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.5;
  margin: 0;
}

.hero-cta-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.hero-cta-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  flex: 1;
  min-width: 0;
}

.hero-cta-points li {
  position: relative;
  padding-left: 0.85rem;
  font-size: 0.78rem;
  color: var(--text);
  margin: 0;
  white-space: nowrap;
}

.hero-cta-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
}

.hero-cta-buttons {
  display: flex;
  flex-shrink: 0;
  gap: 0.65rem;
}

.hero-cta-buttons .btn {
  min-height: 44px;
  padding: 0.65rem 1.15rem;
  font-size: 0.875rem;
  white-space: nowrap;
}

.section--compact-top {
  padding-top: 2.5rem;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 0.75rem;
}

.page-hero p {
  color: var(--muted);
  max-width: 36rem;
}

/* ── Legal ── */

.legal-content {
  max-width: 720px;
  padding: 3rem 0 5rem;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin: 2rem 0 0.75rem;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

/* ── Contact ── */

.contact-section {
  padding-top: 4.25rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.9fr);
  gap: 3rem;
  align-items: start;
  padding-bottom: 4rem;
}

.contact-form {
  background: var(--navy);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-field {
  margin-bottom: 1.25rem;
}

.form-field label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.45rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text);
  background: rgba(11, 15, 20, 0.55);
  border: 1px solid var(--border);
  border-radius: 4px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: rgba(196, 163, 90, 0.45);
  box-shadow: 0 0 0 3px rgba(196, 163, 90, 0.08);
}

.form-field textarea {
  resize: vertical;
  min-height: 140px;
}

.form-honey {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
}

.form-note {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.form-status {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 4px;
  font-size: 0.9rem;
}

.form-status--success {
  color: #6ecf8a;
  background: rgba(110, 207, 138, 0.08);
  border: 1px solid rgba(110, 207, 138, 0.2);
}

.form-status--error {
  color: #e07a7a;
  background: rgba(224, 122, 122, 0.08);
  border: 1px solid rgba(224, 122, 122, 0.2);
}

.contact-aside-block {
  margin-bottom: 2rem;
}

.contact-aside-block h3 {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0.85rem;
}

.contact-aside-block p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 0.75rem;
}

.contact-social-list,
.footer-social-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-social-list li,
.footer-social-list li {
  margin-bottom: 0.55rem;
}

.contact-social-list a,
.footer-social-list a {
  color: var(--muted);
  font-size: 0.9rem;
  transition: color 0.2s;
}

.contact-social-list a:hover,
.footer-social-list a:hover {
  color: var(--gold);
}

.footer-social-list {
  margin-top: 0.35rem;
}

.contact-inline-link {
  color: var(--gold);
  font-size: 0.9rem;
}

.contact-inline-link:hover {
  color: var(--gold-light);
}

.legal-content ul {
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

/* ── Footer ── */

.site-footer {
  border-top: 1px solid var(--border);
  padding: 3rem 0 2rem;
  margin-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand p {
  color: var(--muted);
  font-size: 0.875rem;
  margin-top: 0.75rem;
  max-width: 24rem;
}

.footer-col h4 {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 0.5rem;
}

.footer-col a {
  font-size: 0.875rem;
  color: var(--muted);
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--text);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center;
}

.risk-banner {
  background: var(--navy);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.25rem;
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 2rem;
}

.risk-banner--lead {
  margin-top: 0;
  margin-bottom: 2rem;
}

/* ── Animations ── */

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.8s ease-out forwards;
}

/* ── Responsive ── */

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 3rem 0 4rem;
  }

  .hero-visual {
    order: -1;
  }

  .hero-chart-canvas {
    height: 260px;
  }

  .hero-bg-chart {
    opacity: 0.25;
  }

  .hero-stats {
    gap: 1.5rem;
  }

  .about-grid,
  .about-page-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .about-stat:nth-child(2) {
    border-right: none;
  }

  .about-mission-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-mission-visual {
    order: -1;
  }

  .about-pillars-header-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .about-topics-grid.about-pillars-topics {
    width: 100%;
  }

  .about-pillars-grid {
    grid-template-columns: 1fr;
  }

  .about-pillars-footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem;
  }

  .about-pillars-footer .btn {
    width: 100%;
    justify-content: center;
  }

  .about-topics-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-flow {
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 22rem;
    margin-left: auto;
    margin-right: auto;
  }

  .about-flow-connector {
    width: 2px;
    height: 20px;
    margin: 0 auto;
    background: linear-gradient(180deg, transparent, var(--gold), transparent);
  }

  .page-hero-split {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .hero-cta-panel {
    max-width: 100%;
  }

  .hero-cta-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-cta-points {
    flex-direction: column;
    gap: 0.5rem;
  }

  .hero-cta-points li {
    white-space: normal;
  }

  .hero-cta-buttons {
    flex-direction: column;
  }

  .hero-cta-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .strategy-row {
    grid-template-columns: 1fr;
    gap: 0.65rem;
    padding: 1rem 0;
  }

  .strategy-row--header {
    display: none;
  }

  .strategy-row .stat-label {
    display: block;
  }

  .strategy-row-tag-spacer {
    display: none;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .detail-grid {
    grid-template-columns: 1fr;
  }

  .detail-back-nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .detail-nav-actions {
    width: 100%;
    justify-content: space-between;
  }

  .detail-nav-link,
  .detail-nav-link--disabled {
    max-width: 48%;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .copy-panel {
    position: static;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .logo {
    font-size: 1.1rem;
    gap: 0.6rem;
    letter-spacing: 0.06em;
  }

  .logo-img {
    height: 42px;
  }

  .nav-links,
  .nav-actions .btn-text {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--charcoal);
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
    gap: 1rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .about-stats-grid {
    grid-template-columns: 1fr;
  }

  .about-stat {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 0.65rem 0.5rem;
  }

  .about-stat:last-child {
    border-bottom: none;
  }

  .about-topics-grid {
    grid-template-columns: 1fr;
  }

  .about-orbit-node--2 { right: -0.25rem; }
  .about-orbit-node--4 { left: -0.25rem; }

  .about-orbit-node {
    min-width: 4.75rem;
    padding: 0.5rem 0.55rem;
  }
}
