:root {
  color-scheme: dark;
  --bg: #0b0b0b;
  --bg-soft: #111111;
  --panel: rgba(17, 17, 17, .86);
  --panel-2: #151515;
  --text-primary: #ffffff;
  --text-secondary: #d8d8d8;
  --text-muted: #9a9a9a;
  --border: rgba(255, 255, 255, .13);
  --border-strong: rgba(212, 175, 55, .46);
  --accent: #d4af37;
  --accent-2: #f1d06a;
  --success: #42c978;
  --danger: #e35f5f;
  --blue: #4aa3ff;
  --shadow: 0 28px 80px rgba(0, 0, 0, .52);
  --shadow-soft: 0 16px 44px rgba(0, 0, 0, .28);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --max: 1840px;
}

:root[data-theme="light"] {
  color-scheme: light;
  --bg: #f7f5f0;
  --bg-soft: #f0ece2;
  --panel: rgba(255, 255, 255, .92);
  --panel-2: #ffffff;
  --text-primary: #171717;
  --text-secondary: #4b4b4b;
  --text-muted: #6f6a60;
  --border: #e7e1d3;
  --border-strong: rgba(185, 143, 38, .45);
  --accent: #d4af37;
  --accent-2: #b98913;
  --success: #14935a;
  --danger: #c84040;
  --blue: #1070c9;
  --shadow: 0 26px 70px rgba(44, 34, 16, .13);
  --shadow-soft: 0 14px 34px rgba(44, 34, 16, .10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  background:
    linear-gradient(120deg, rgba(212, 175, 55, .14), transparent 22%),
    repeating-linear-gradient(112deg, transparent 0 42px, rgba(212, 175, 55, .055) 43px 44px),
    var(--bg);
  color: var(--text-primary);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.45;
}

:root[data-theme="light"] body {
  background:
    linear-gradient(120deg, rgba(212, 175, 55, .18), transparent 24%),
    repeating-linear-gradient(112deg, transparent 0 42px, rgba(212, 175, 55, .08) 43px 44px),
    var(--bg);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.032) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, #000 0 64%, transparent 100%);
}

:root[data-theme="light"] body::before {
  background:
    linear-gradient(90deg, rgba(23,23,23,.045) 1px, transparent 1px),
    linear-gradient(rgba(23,23,23,.04) 1px, transparent 1px);
}

a { color: inherit; }
img { max-width: 100%; height: auto; }
h1, h2, h3, p { margin: 0; }
h1, h2, h3 { line-height: .96; letter-spacing: 0; }
p { color: var(--text-secondary); }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.ara-public { width: min(var(--max), calc(100% - 48px)); margin: 0 auto; }
.ara-skip {
  position: absolute;
  top: 12px;
  left: -999px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--accent);
  color: #111;
  font-weight: 950;
}
.ara-skip:focus { left: 16px; }

.ara-site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: color-mix(in srgb, var(--bg) 83%, transparent);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(18px);
}
.ara-header-inner {
  min-height: 72px;
  display: grid;
  grid-template-columns: 260px 1fr auto;
  align-items: center;
  gap: 18px;
}
.ara-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 950;
}
.ara-logo img {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}
.ara-logo span {
  display: grid;
  gap: 2px;
  font-size: 22px;
  line-height: 1;
  letter-spacing: .08em;
}
.ara-logo small {
  color: var(--text-secondary);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .14em;
}
.ara-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.8vw, 30px);
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 950;
}
.ara-nav a {
  text-decoration: none;
  color: var(--text-primary);
  white-space: nowrap;
}
.ara-nav a:hover { color: var(--accent); }
.ara-header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}
.ara-btn,
.ara-theme-toggle {
  min-height: 38px;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 9px 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-primary);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  white-space: nowrap;
  background: color-mix(in srgb, var(--panel-2) 82%, transparent);
  box-shadow: none;
  cursor: pointer;
}
.ara-btn:hover,
.ara-theme-toggle:hover {
  transform: translateY(-1px);
  border-color: var(--border-strong);
}
.ara-btn-gold {
  border-color: color-mix(in srgb, var(--accent) 86%, #fff 14%);
  background: linear-gradient(135deg, var(--accent), #f7d872);
  color: #16120a;
  box-shadow: 0 18px 40px rgba(212, 175, 55, .22);
}
.ara-btn-ghost { background: transparent; }
.ara-btn-outline {
  border-color: var(--border-strong);
  background: transparent;
}
.ara-btn-xl { min-height: 44px; padding-inline: 22px; }
.ara-theme-toggle {
  min-height: 36px;
  padding: 8px 10px;
  border-radius: 999px;
  text-transform: none;
}
.ara-theme-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 18%, transparent);
}
.ara-mobile-menu {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--panel);
  color: var(--text-primary);
  padding: 10px;
}
.ara-mobile-menu span:not(.sr-only) {
  display: block;
  height: 3px;
  margin: 5px 0;
  background: currentColor;
  border-radius: 999px;
}

.ara-topbar {
  position: sticky;
  top: 0;
  z-index: 35;
  background: color-mix(in srgb, var(--bg) 86%, transparent);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(16px);
}
.ara-topbar > .ara-public {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.ara-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 950;
}
.ara-brand img {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #fff;
}
.ara-brand span { display: block; }
.ara-brand small {
  display: block;
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 800;
}
.ara-btn.primary {
  border-color: color-mix(in srgb, var(--accent) 86%, #fff 14%);
  background: linear-gradient(135deg, var(--accent), #f7d872);
  color: #16120a;
}
.ara-kicker {
  display: inline-flex;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 12px;
  font-weight: 950;
}

.ara-hero {
  min-height: 420px;
  display: grid;
  grid-template-columns: minmax(390px, .68fr) minmax(620px, 1.32fr);
  gap: 10px;
  align-items: center;
  padding: 24px 0 10px;
}
.ara-hero-copy { position: relative; z-index: 2; min-width: 0; overflow: hidden; }
.ara-eyebrow {
  margin-bottom: 12px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 11px;
  font-weight: 950;
}
.ara-hero h1 {
  max-width: 600px;
  font-size: clamp(36px, 3.35vw, 62px);
  text-transform: uppercase;
}
.ara-hero h1 span {
  display: block;
  color: var(--accent);
}
.ara-hero-lead {
  max-width: 540px;
  margin-top: 16px;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.45;
}
.ara-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}
.ara-proof-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
  max-width: 620px;
}
.ara-proof-row article {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 2px 9px;
  align-items: center;
  border-right: 1px solid var(--border);
}
.ara-proof-row article:last-child { border-right: 0; }
.ara-proof-row img {
  grid-row: 1 / span 2;
  filter: drop-shadow(0 6px 14px rgba(212, 175, 55, .22));
}
.ara-proof-row strong {
  font-size: 10px;
  text-transform: uppercase;
}
.ara-proof-row span {
  color: var(--text-muted);
  font-size: 10px;
}

.ara-hero-stage {
  position: relative;
  min-height: 405px;
  isolation: isolate;
  overflow: visible;
}
.ara-hero-stage::before {
  content: "";
  position: absolute;
  inset: 4% -2% 3% 1%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(360px 180px at 42% 54%, rgba(212, 175, 55, .18), transparent 68%),
    radial-gradient(460px 220px at 70% 36%, rgba(16, 112, 201, .08), transparent 70%);
  filter: blur(2px);
}
.ara-athlete-composition {
  position: absolute;
  left: -12%;
  right: -2%;
  top: 6px;
  bottom: 0;
  z-index: 1;
  pointer-events: none;
}
.sport-line {
  position: absolute;
  width: 92%;
  height: 2px;
  left: 2%;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transform: rotate(-22deg);
  opacity: .76;
  box-shadow: 0 0 28px rgba(212, 175, 55, .34);
}
.line-a { top: 21%; }
.line-b { top: 60%; left: 11%; opacity: .52; }
.hero-athlete {
  position: absolute;
  display: block;
  width: auto;
  max-width: none;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 32px 30px rgba(0, 0, 0, .26));
  user-select: none;
}
.hero-swimmer {
  width: min(35vw, 560px);
  left: 3%;
  bottom: -4px;
  z-index: 2;
}
.hero-cyclist {
  width: min(28vw, 430px);
  left: 45%;
  top: -18px;
  z-index: 4;
}
.hero-runner {
  width: min(22vw, 320px);
  left: 70%;
  top: 22px;
  z-index: 3;
}
.ara-module-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  padding: 0 0 10px;
}
.module-card,
.metrics-strip,
.info-panel,
.final-cta {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: color-mix(in srgb, var(--panel-2) 89%, transparent);
  box-shadow: var(--shadow-soft);
}
.module-card {
  min-height: 136px;
  padding: 16px;
  position: relative;
  overflow: hidden;
}
.module-card::after {
  content: "";
  position: absolute;
  inset: auto 16px 16px auto;
  width: 92px;
  height: 58px;
  border: 1px solid var(--border);
  border-radius: 12px;
  opacity: .55;
  background: linear-gradient(135deg, rgba(212,175,55,.16), transparent);
}
.module-card img {
  width: 28px;
  height: 28px;
}
.module-card h2 {
  margin-top: 12px;
  font-size: 14px;
  text-transform: uppercase;
}
.module-card p {
  margin-top: 8px;
  font-size: 11px;
  line-height: 1.35;
  max-width: 260px;
}
.module-card a,
.info-panel a {
  display: inline-flex;
  margin-top: 10px;
  color: var(--accent);
  text-transform: uppercase;
  text-decoration: none;
  font-size: 10px;
  font-weight: 950;
}

.metrics-strip {
  display: grid;
  grid-template-columns: 1.3fr repeat(6, 1fr);
  align-items: center;
  margin-top: 8px;
  padding: 10px 14px;
}
.metrics-title,
.metrics-strip article {
  min-height: 48px;
  display: grid;
  align-content: center;
  border-right: 1px solid var(--border);
  padding-right: 18px;
}
.metrics-strip article {
  grid-template-columns: 26px 1fr;
  gap: 0 8px;
  padding-left: 12px;
}
.metrics-strip article:last-child { border-right: 0; }
.metrics-title strong,
.metrics-strip b {
  text-transform: uppercase;
  font-size: 10px;
}
.metrics-title span,
.metrics-strip span {
  color: var(--text-muted);
  font-size: 10px;
}
.metrics-strip img {
  grid-row: 1 / span 3;
  align-self: center;
}
.metrics-strip strong {
  font-size: 18px;
  line-height: 1;
}

.ara-lower-grid {
  display: grid;
  grid-template-columns: 1.05fr 1.35fr .95fr;
  gap: 12px;
  padding-top: 12px;
}
.info-panel {
  min-height: 190px;
  padding: 22px;
}
.info-panel h2 {
  font-size: 22px;
  text-transform: uppercase;
}
.info-panel p { margin-top: 6px; }
.integration-logos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 20px;
}
.integration-logos span {
  min-height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: color-mix(in srgb, var(--bg) 58%, transparent);
  font-size: 18px;
  font-weight: 950;
  letter-spacing: .03em;
}
.method-panel {
  display: grid;
  grid-template-columns: 1fr 180px;
  align-items: center;
  gap: 22px;
}
.method-panel h2 {
  font-size: 34px;
  letter-spacing: .05em;
}
.method-panel img {
  justify-self: center;
}
.method-points {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 20px;
}
.method-points span {
  border-right: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 900;
  text-align: center;
}
.method-points span:last-child { border-right: 0; }
.testimonial-panel header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.testimonial {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 14px;
  margin-top: 22px;
}
.testimonial img {
  border-radius: 999px;
  border: 1px solid var(--border-strong);
}
.stars {
  color: var(--accent);
  letter-spacing: .18em;
}
blockquote {
  margin: 8px 0 12px;
  color: var(--text-secondary);
}
.testimonial strong,
.testimonial span {
  display: block;
}
.testimonial span {
  color: var(--text-muted);
  font-size: 12px;
}

.final-cta {
  margin-top: 12px;
  margin-bottom: 36px;
  padding: 24px 28px;
  display: grid;
  grid-template-columns: 1.2fr 1.6fr auto;
  align-items: center;
  gap: 24px;
}
.final-cta h2 {
  font-size: 32px;
  text-transform: uppercase;
}
.final-cta h2 span { color: var(--accent); }
.cta-points {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.cta-points article {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 2px 10px;
  align-items: center;
  border-right: 1px solid var(--border);
}
.cta-points article:last-child { border-right: 0; }
.cta-points img {
  grid-row: 1 / span 2;
}
.cta-points b {
  text-transform: uppercase;
  font-size: 12px;
}
.cta-points span,
.final-cta p {
  color: var(--text-muted);
  font-size: 12px;
}
.final-cta p {
  grid-column: 3;
  text-align: center;
}

.ara-footer {
  border-top: 1px solid var(--border);
  padding: 26px 0;
  background: color-mix(in srgb, var(--bg) 92%, transparent);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-inner nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-inner a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 800;
}
.footer-inner span {
  color: var(--text-muted);
  font-size: 12px;
}

.ara-legal-page { padding: 46px 0 70px; }
.ara-legal-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}
.ara-legal-toc {
  position: sticky;
  top: 112px;
  border: 1px solid var(--border);
  background: var(--panel);
  border-radius: var(--radius-md);
  padding: 16px;
  display: grid;
  gap: 8px;
}
.ara-legal-toc a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 13px;
  font-weight: 850;
}
.ara-legal-doc {
  border: 1px solid var(--border);
  background: var(--panel-2);
  color: var(--text-primary);
  border-radius: var(--radius-lg);
  padding: clamp(22px, 4vw, 48px);
  box-shadow: var(--shadow);
}
.ara-legal-doc p,
.ara-legal-doc li { color: var(--text-secondary); }
.ara-legal-doc h1 { font-size: clamp(36px, 5vw, 64px); }
.ara-legal-doc h2 {
  margin-top: 34px;
  font-size: 28px;
}
.ara-legal-doc h3 { margin-top: 22px; }
.ara-legal-doc ul { padding-left: 22px; }
.ara-legal-doc a {
  color: var(--accent);
  font-weight: 900;
}
.ara-legal-note {
  margin: 22px 0;
  border: 1px solid var(--border-strong);
  background: color-mix(in srgb, var(--accent) 12%, transparent);
  border-radius: var(--radius-md);
  padding: 16px;
}
.ara-lang-switch {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 6px;
}
.ara-lang-switch a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 14px;
  background: var(--panel);
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 1000;
}
.ara-legal-subdoc { scroll-margin-top: 110px; }
.ara-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 16px 0;
}
.ara-mini-grid section {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px;
  background: var(--panel);
}
.ara-legal-divider {
  border: 0;
  border-top: 1px solid var(--border);
  margin: 42px 0;
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}
@media (max-width: 1320px) {
  .ara-public { width: min(100% - 32px, var(--max)); }
  .ara-header-inner {
    min-height: 54px;
    grid-template-columns: 190px 1fr auto;
    gap: 10px;
  }
  .ara-header-actions {
    grid-column: auto;
    justify-content: flex-end;
  }
  .ara-logo { gap: 8px; }
  .ara-logo span { font-size: 16px; letter-spacing: .06em; }
  .ara-logo img { width: 34px; height: 34px; border-radius: 8px; }
  .ara-logo small { font-size: 7px; }
  .ara-nav { gap: 8px; font-size: 8px; }
  .ara-theme-toggle { min-height: 30px; padding: 5px 8px; font-size: 9px; }
  .ara-header-actions { gap: 6px; }
  .ara-header-actions .ara-btn { min-height: 30px; padding-inline: 9px; font-size: 8px; }
  .ara-nav { justify-content: flex-end; }
  .ara-hero {
    grid-template-columns: minmax(320px, .68fr) minmax(520px, 1.32fr);
    min-height: 290px;
    gap: 10px;
    padding: 14px 0 4px;
  }
  .ara-eyebrow {
    margin-bottom: 8px;
    font-size: 9px;
  }
  .ara-hero h1 {
    max-width: 330px;
    font-size: clamp(24px, 2.9vw, 30px);
    line-height: .92;
  }
  .ara-hero-lead {
    max-width: 360px;
    margin-top: 8px;
    font-size: 10px;
    line-height: 1.36;
  }
  .ara-hero-actions {
    margin-top: 12px;
    gap: 8px;
  }
  .ara-hero-actions .ara-btn {
    min-height: 32px;
    padding-inline: 14px;
    font-size: 8px;
  }
  .ara-proof-row {
    margin-top: 12px;
    gap: 8px;
    max-width: 430px;
  }
  .ara-proof-row article {
    grid-template-columns: 22px 1fr;
    gap: 1px 6px;
  }
  .ara-proof-row img {
    width: 20px;
    height: 20px;
  }
  .ara-proof-row strong,
  .ara-proof-row span {
    font-size: 8px;
  }
  .ara-hero-stage {
    min-height: 278px;
    overflow: visible;
  }
  .ara-athlete-composition {
    left: -2%;
    right: -2%;
  }
  .hero-swimmer { width: min(31vw, 330px); left: 3%; }
  .hero-cyclist { width: min(27vw, 282px); left: 45%; }
  .hero-runner { width: min(20vw, 210px); left: 68%; }
  .ara-module-grid {
    position: relative;
    z-index: 8;
    margin-top: -18px;
  }
  .module-card {
    min-height: 118px;
    padding: 12px;
  }
  .module-card::after {
    width: 72px;
    height: 46px;
    right: 10px;
    bottom: 10px;
  }
  .module-card img {
    width: 24px;
    height: 24px;
  }
  .module-card h2 {
    margin-top: 8px;
    font-size: 12px;
  }
  .module-card p {
    margin-top: 6px;
    font-size: 9px;
    line-height: 1.28;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .module-card a {
    margin-top: 8px;
    font-size: 8px;
  }
  .metrics-strip {
    padding: 8px 12px;
  }
  .metrics-title,
  .metrics-strip article {
    min-height: 42px;
  }
}
@media (max-width: 820px) {
  .ara-public { width: min(100% - 32px, var(--max)); }
  .ara-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .ara-header-inner {
    min-height: 78px;
    grid-template-columns: 1fr auto;
  }
  .ara-logo img { width: 52px; height: 52px; }
  .ara-logo span { font-size: 21px; }
  .ara-logo small { font-size: 9px; }
  .ara-mobile-menu { display: block; grid-column: 2; grid-row: 1; }
  .ara-nav,
  .ara-header-actions {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
  }
  .ara-site-header.is-open .ara-nav,
  .ara-site-header.is-open .ara-header-actions {
    display: grid;
  }
  .ara-nav {
    justify-items: start;
    justify-content: stretch;
    gap: 0;
    border-top: 1px solid var(--border);
    padding-top: 12px;
  }
  .ara-nav a,
  .ara-theme-toggle {
    width: 100%;
    justify-content: flex-start;
    border: 0;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
    padding: 14px 0;
    background: transparent;
  }
  .ara-header-actions { grid-template-columns: 1fr 1fr; }
  .ara-module-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .metrics-strip { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .metrics-title { grid-column: 1 / -1; border-right: 0; }
  .ara-lower-grid,
  .final-cta { grid-template-columns: 1fr; }
  .final-cta p { grid-column: auto; }
  .ara-legal-layout { grid-template-columns: 1fr; }
  .ara-legal-toc { position: static; }
}
@media (max-width: 720px) {
  body {
    background:
      linear-gradient(135deg, rgba(212, 175, 55, .15), transparent 32%),
      var(--bg);
  }
  .ara-public { width: min(100% - 24px, var(--max)); }
  .ara-header-actions { grid-template-columns: 1fr; }
  .ara-hero {
    padding: 28px 0 14px;
  }
  .ara-hero h1 {
    font-size: clamp(36px, 10.2vw, 56px);
  }
  .ara-hero-lead {
    font-size: 16px;
  }
  .ara-hero-actions,
  .ara-hero-actions .ara-btn {
    width: 100%;
  }
  .ara-proof-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .ara-proof-row article {
    border-right: 0;
    border-bottom: 1px solid var(--border);
    padding-bottom: 12px;
  }
  .ara-hero-stage {
    min-height: 420px;
    display: block;
    overflow: hidden;
  }
  .ara-athlete-composition {
    inset: 0 0 auto;
    height: 390px;
    overflow: visible;
  }
  .hero-swimmer {
    width: 330px;
    left: -92px;
    bottom: -4px;
  }
  .hero-cyclist {
    width: 255px;
    left: 106px;
    top: 0;
  }
  .hero-runner {
    width: 188px;
    left: 260px;
    top: 66px;
  }
  .ara-module-grid,
  .metrics-strip,
  .integration-logos,
  .method-panel,
  .method-points,
  .cta-points,
  .ara-mini-grid {
    grid-template-columns: 1fr;
  }
  .metrics-strip article,
  .metrics-title,
  .cta-points article,
  .method-points span {
    border-right: 0;
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
  }
  .metrics-strip article:last-child,
  .cta-points article:last-child,
  .method-points span:last-child {
    border-bottom: 0;
  }
  .method-panel img {
    width: 120px;
  }
  .testimonial-panel header {
    display: grid;
  }
  .testimonial {
    grid-template-columns: 58px 1fr;
  }
}
