:root {
  --oa-cream: #f7f5ef;
  --oa-paper: #ffffff;
  --oa-navy: #151d31;
  --oa-dark: #090e19;
  --oa-ink: #172036;
  --oa-muted: #626b7d;
  --oa-line: rgba(23, 32, 54, 0.13);
  --oa-orange: #f56b1f;
  --oa-red: #d44b43;
  --oa-cyan: #1ca7c4;
  --oa-shell: 1200px;
  --oa-font-display: "Bebas Neue", Impact, sans-serif;
  --oa-font-body: "Sora", Arial, sans-serif;
  --oa-font-mono: "JetBrains Mono", Consolas, monospace;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  border-radius: 4px;
  background: var(--oa-navy);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }
body {
  margin: 0;
  color: var(--oa-ink);
  background: var(--oa-cream);
  font-family: "Sora", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.shell,
.container,
.header-inner,
.nav-wrap {
  width: min(calc(100% - 48px), var(--oa-shell));
  max-width: var(--oa-shell);
  margin-right: auto;
  margin-left: auto;
}

/* One header treatment across both generations of page markup. */
.header,
.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  width: 100%;
  border-bottom: 1px solid var(--oa-line);
  background: rgba(247, 245, 239, 0.94);
  box-shadow: 0 8px 30px rgba(21, 29, 49, 0.035);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
}

.nav,
.header-inner,
.nav-wrap {
  min-height: 72px;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 30px;
}

.brand,
.logo-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  color: var(--oa-ink);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 23px;
  font-weight: 400;
  letter-spacing: 0.055em;
  text-decoration: none;
}

.brand img,
.logo-link img,
.site-header .logo-img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  filter: none;
}

.logo-text,
.logo-text-accent { color: var(--oa-ink); font: inherit; }

.navlinks,
.desktop-nav,
.nav-primary {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0 0 0 auto;
  white-space: nowrap;
}

.navlinks a,
.desktop-nav a,
.nav-primary a,
.login,
.login-link {
  padding: 4px 0;
  color: #4f596d;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.navlinks a:hover,
.desktop-nav a:hover,
.nav-primary a:hover,
.nav-primary a.nav-active,
.nav-primary a[aria-current="page"],
.desktop-nav a[aria-current="page"],
.login:hover,
.login-link:hover { color: var(--oa-orange); }

.navright,
.nav-actions { display: flex; align-items: center; gap: 18px; }

.button {
  display: inline-flex;
  width: auto;
  min-height: 52px;
  padding: 0 24px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  border-radius: 5px;
  background: var(--oa-orange);
  box-shadow: 0 12px 28px rgba(245, 107, 31, .2);
  color: #fff;
  font-family: "Sora", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, background .2s;
}
.button:hover,
.button:focus-visible {
  background: #e95d12;
  box-shadow: 0 18px 36px rgba(245, 107, 31, .28);
  color: #fff;
  transform: translateY(-2px);
}

.button.small,
.button-small,
.site-header .btn-sm,
.header-inner > .btn {
  width: auto;
  min-height: 42px;
  padding: 0 19px;
  border: 0;
  border-radius: 5px;
  background: var(--oa-orange);
  box-shadow: 0 10px 24px rgba(245, 107, 31, 0.2);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.menu,
.nav-toggle { margin-left: auto; }

/* One footer treatment across every standard public page. */
footer,
.site-footer,
.utility-footer {
  position: relative;
  border-top: 0;
  background:
    radial-gradient(circle at 18% 0, rgba(28, 167, 196, 0.07), transparent 32%),
    radial-gradient(circle at 78% 0, rgba(245, 107, 31, 0.055), transparent 28%),
    var(--oa-dark);
  color: #fff;
  font-family: "Sora", Arial, sans-serif;
}

.site-footer::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 8%, rgba(28, 167, 196, 0.55) 35%, rgba(245, 107, 31, 0.7) 65%, transparent 92%);
  content: "";
}

.site-footer {
  padding: 58px 0 22px !important;
  font-size: 16px !important;
  line-height: 1.6 !important;
}
.site-footer .footer-grid,
footer .footer-grid {
  display: grid;
  grid-template-columns: 1.55fr repeat(3, 0.8fr);
  gap: clamp(36px, 5vw, 78px);
  min-height: 183px;
  margin-bottom: 0;
}

.site-footer a.brand.footer-brand,
.site-footer .logo-link,
footer a.footer-brand {
  display: inline-flex;
  width: fit-content;
  height: 42px;
  align-items: center;
  flex-direction: row !important;
  gap: 12px;
  color: #fff;
  font: 400 25px/1 "Bebas Neue", Impact, sans-serif !important;
  letter-spacing: 0.06em !important;
}

.site-footer a.footer-brand span { font: inherit !important; letter-spacing: inherit !important; }

.site-footer .footer-brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 7px 18px rgba(245, 107, 31, 0.18));
}

.site-footer .footer-brand p,
footer .footer-grid p {
  max-width: 310px;
  margin: 18px 0 0;
  color: #9da7b9;
  font-size: 12px;
  line-height: 1.75;
}

.site-footer .footer-grid > div:not(:first-child),
footer .footer-grid > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.site-footer .footer-grid h3,
.site-footer .footer-grid b,
footer .footer-grid h3,
footer .footer-grid b {
  margin: 3px 0 9px;
  color: #78859a;
  font: 700 9px "JetBrains Mono", monospace;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-footer .footer-grid a:not(.brand):not(.logo-link),
footer .footer-grid a:not(.brand):not(.logo-link) {
  width: fit-content;
  color: #c6ccd6;
  font-size: 12px;
  line-height: 1.55;
  text-decoration: none;
  transition: color 180ms ease, transform 180ms ease;
}

.site-footer .footer-grid a:hover,
footer .footer-grid a:hover { color: #fff; transform: translateX(2px); }

.footer-social-block,
.site-footer .footer-social { margin-top: 25px; }

.footer-social-block .footer-social { margin-top: 0; }

.footer-social-label {
  display: block;
  margin-bottom: 11px;
  color: #aeb7c6;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.utility-footer-social::before {
  content: "Follow Us:";
  width: 100%;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer .footer-social,
.footer-social {
  position: relative;
  display: flex;
  align-items: center;
  gap: 9px;
}

.site-footer .footer-social a,
.footer-social a {
  display: grid !important;
  place-items: center;
  width: 38px !important;
  min-width: 38px !important;
  height: 38px;
  flex: 0 0 38px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: none;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.site-footer .footer-social a:hover,
.footer-social a:hover { border-color: var(--oa-orange); background: var(--oa-orange); transform: translateY(-2px); }

.site-footer .footer-social img,
.footer-social img {
  display: block;
  width: 18px;
  height: 18px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 1;
}

.footer-credentials { border-color: rgba(255, 255, 255, 0.09); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 44px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #788399;
  font: 500 9px/1.5 "JetBrains Mono", monospace;
  letter-spacing: 0.02em;
}

@media (max-width: 1000px) {
  .navlinks,
  .desktop-nav,
  .nav-primary { display: none; }

  .navright,
  .nav-actions,
  .header-inner > .btn { display: none; }
}

@media (max-width: 720px) {
  .shell,
  .container,
  .header-inner,
  .nav-wrap { width: min(calc(100% - 30px), var(--oa-shell)); padding-right: 0; padding-left: 0; }

  .nav,
  .header-inner,
  .nav-wrap {
    width: calc(100% - 30px) !important;
    min-width: 0;
    min-height: 68px;
    overflow: visible;
  }

  .brand,
  .logo-link { min-width: 0; }

  .menu,
  .nav-toggle {
    right: auto;
    flex: 0 0 42px;
    width: 42px;
    margin-right: 0;
  }

  .site-footer .footer-grid,
  footer .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px 18px;
    min-height: 0;
  }

  .site-footer .footer-grid > div:first-child,
  footer .footer-grid > div:first-child {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 12px 20px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .site-footer { padding: 42px 0 20px !important; }

  .site-footer a.brand.footer-brand {
    grid-column: 1;
    height: 38px;
    font-size: 23px !important;
  }

  .site-footer .footer-brand img {
    width: 38px;
    height: 38px;
  }

  .site-footer .footer-grid p {
    grid-column: 1;
    max-width: 245px;
    margin-top: 0;
    font-size: 11px;
  }

  .site-footer .footer-social-block {
    grid-column: 2;
    grid-row: 1 / 3;
    align-self: center;
    margin: 0;
  }

  .site-footer .footer-social-label {
    margin-bottom: 9px;
    text-align: center;
  }

  .site-footer .footer-grid > div:not(:first-child) { gap: 9px; }

  .site-footer .footer-grid h3,
  .site-footer .footer-grid b {
    margin-bottom: 5px;
    font-size: 8px;
    letter-spacing: 0.1em;
  }

  .site-footer .footer-grid a:not(.brand) {
    font-size: 10px;
    line-height: 1.45;
  }

  .site-footer .footer-social { gap: 7px; }

  .site-footer .footer-social a {
    width: 36px !important;
    min-width: 36px !important;
    height: 36px;
    flex-basis: 36px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
    margin-top: 30px;
    padding-top: 15px;
    font-size: 8px;
  }
}

@media (max-width: 420px) {
  .site-footer .footer-grid > div:first-child {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .site-footer .footer-social-block {
    grid-column: 1;
    grid-row: auto;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .site-footer .footer-social-label { margin: 0; text-align: left; }
}

/* Canonical site chrome. These rules intentionally win over page legacy CSS. */
.site-header,
.site-header.scrolled {
  position: sticky !important;
  top: 0 !important;
  z-index: 1000 !important;
  height: 73px !important;
  min-height: 73px !important;
  padding: 0 !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(23, 32, 54, 0.13) !important;
  background: rgba(247, 245, 239, 0.96) !important;
  box-shadow: 0 8px 30px rgba(21, 29, 49, 0.035) !important;
}

.site-header .nav-wrap {
  width: min(calc(100% - 48px), 1200px) !important;
  max-width: 1200px !important;
  height: 72px !important;
  min-height: 72px !important;
  margin: 0 auto !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
  gap: 30px !important;
}

.site-header .brand {
  width: auto !important;
  height: 38px !important;
  min-height: 38px !important;
  margin: 0 !important;
  padding: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  color: #172036 !important;
  font: 400 23px/1 "Bebas Neue", Impact, sans-serif !important;
  letter-spacing: 0.055em !important;
  border: 0 !important;
  box-shadow: none !important;
}

.site-footer .shell {
  width: min(calc(100% - 48px), 1200px) !important;
  max-width: 1200px !important;
  margin-right: auto !important;
  margin-left: auto !important;
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.site-header .brand img {
  width: 38px !important;
  height: 38px !important;
  flex: 0 0 38px !important;
  object-fit: contain !important;
}

.site-header .brand span {
  color: #172036 !important;
  font: inherit !important;
  letter-spacing: inherit !important;
  white-space: nowrap !important;
}

.site-header .desktop-nav {
  margin: 0 0 0 auto !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
  gap: 28px !important;
}

.site-header .desktop-nav a,
.site-header .login-link {
  margin: 0 !important;
  padding: 4px 0 !important;
  color: #4f596d !important;
  font: 600 13px/1.4 "Sora", Arial, sans-serif !important;
  letter-spacing: 0 !important;
  text-decoration: none !important;
}

.site-header .desktop-nav a:hover,
.site-header .login-link:hover { color: #f56b1f !important; }

.site-header .nav-actions {
  margin: 0 !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
  gap: 18px !important;
}

.site-header .button-small {
  width: auto !important;
  min-width: 0 !important;
  min-height: 42px !important;
  height: 42px !important;
  margin: 0 !important;
  padding: 0 19px !important;
  border: 0 !important;
  border-radius: 5px !important;
  background: #f56b1f !important;
  color: #fff !important;
  font: 700 12px/1 "Sora", Arial, sans-serif !important;
}

.site-header .nav-toggle { display: none !important; }
.site-header .mobile-nav { display: none !important; }

@media (max-width: 1000px) {
  .site-header .desktop-nav,
  .site-header .nav-actions { display: none !important; }

  .site-header .nav-toggle {
    width: 42px !important;
    height: 42px !important;
    margin: 0 0 0 auto !important;
    padding: 0 !important;
    border: 1px solid rgba(23, 32, 54, 0.13) !important;
    border-radius: 5px !important;
    background: rgba(255, 255, 255, 0.65) !important;
    display: flex !important;
    flex: 0 0 42px !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
  }

  .site-header .nav-toggle span {
    width: 18px !important;
    height: 2px !important;
    margin: 0 !important;
    background: #172036 !important;
    display: block !important;
  }

  .site-header .nav-toggle.open span:first-child { transform: translateY(4px) rotate(45deg) !important; }
  .site-header .nav-toggle.open span:last-child { transform: translateY(-4px) rotate(-45deg) !important; }

  .site-header .mobile-nav.open {
    position: absolute !important;
    top: 73px !important;
    right: 0 !important;
    left: 0 !important;
    width: 100% !important;
    padding: 12px 15px 20px !important;
    border-bottom: 1px solid rgba(23, 32, 54, 0.13) !important;
    background: #f7f5ef !important;
    display: grid !important;
  }

  .site-header .mobile-nav a {
    padding: 12px !important;
    border-bottom: 1px solid rgba(23, 32, 54, .1) !important;
    color: #303a50 !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    line-height: 1.35 !important;
    text-decoration: none !important;
  }

  .site-header .mobile-nav a:hover,
  .site-header .mobile-nav a:focus-visible { color: var(--oa-orange) !important; }
}

@media (max-width: 720px) {
  .site-header .nav-wrap { width: calc(100% - 30px) !important; }
  .site-footer .shell { width: calc(100% - 30px) !important; }
}
@media(max-width:720px){
  .pair-connector span,.site-footer .footer-grid b,.site-footer .footer-bottom{font-size:10px!important}
}

/* Evidence and methodology pages */
.results-hero {
  position: relative;
  overflow: hidden;
  padding: 132px 0 78px;
  color: #fff;
  background:
    radial-gradient(circle at 82% 12%, rgba(28, 167, 196, .19), transparent 34%),
    linear-gradient(135deg, #0a101d, #151d31 68%, #10192b);
}
.results-hero::after {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 46px 46px;
  content: "";
  pointer-events: none;
}
.results-hero .shell { position: relative; z-index: 1; }
.results-hero .eyebrow,
.results-heading .eyebrow {
  margin: 0 0 18px;
  color: #f6a273;
  font: 700 10px/1.4 "JetBrains Mono", Consolas, monospace;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.results-hero h1 {
  max-width: 930px;
  margin: 0;
  color: #fff;
  font-size: clamp(52px, 6.6vw, 92px);
  line-height: .96;
  letter-spacing: -.06em;
}
.results-hero > .shell > p:not(.eyebrow):not(.method-note) {
  max-width: 760px;
  margin: 24px 0 0;
  color: #b8c0d0;
  font-size: 16px;
  line-height: 1.7;
}
.results-scoreboard {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 54px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255,255,255,.035);
  backdrop-filter: blur(12px);
}
.results-scoreboard > div { min-height: 128px; padding: 26px; }
.results-scoreboard > div + div { border-left: 1px solid rgba(255,255,255,.12); }
.results-scoreboard strong {
  display: block;
  color: #fff;
  font: 600 clamp(25px, 3vw, 40px)/1 "JetBrains Mono", Consolas, monospace;
  letter-spacing: -.05em;
}
.results-scoreboard > div:nth-child(3) strong { color: #65d0df; }
.results-scoreboard span { display: block; margin-top: 12px; color: #9da8bb; font-size: 11px; line-height: 1.5; }
.method-note { margin: 20px 0 0; color: #8995aa; font-size: 10px; line-height: 1.6; }
.method-note a { color: #82d8e3; text-decoration: underline; }
.results-section,
.method-section { padding: 96px 0; background: #fff; }
.results-heading { max-width: 790px; }
.results-heading h2 { margin: 0; font-size: clamp(42px, 5vw, 70px); line-height: .98; letter-spacing: -.055em; }
.distribution-table {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 42px;
  border: 1px solid var(--oa-line);
  border-radius: 9px;
  overflow: hidden;
}
.distribution-table > div { display: flex; min-height: 120px; padding: 24px; flex-direction: column; justify-content: space-between; background: #f8f6f0; }
.distribution-table > div + div { border-left: 1px solid var(--oa-line); }
.distribution-table span { color: var(--oa-muted); font-size: 11px; line-height: 1.5; }
.distribution-table strong { font: 600 25px/1.1 "JetBrains Mono", Consolas, monospace; letter-spacing: -.05em; }
.range-bars { display: grid; gap: 16px; max-width: 900px; margin-top: 42px; }
.range-bars > div { display: grid; grid-template-columns: 150px minmax(170px, 1fr) 110px; align-items: center; gap: 18px; }
.range-bars span,
.range-bars b { font-size: 11px; }
.range-bars b { text-align: right; }
.range-bars i { position: relative; height: 13px; overflow: hidden; border-radius: 999px; background: #ebe7dd; }
.range-bars i::before { width: var(--w); height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--oa-orange), #ff9c43); content: ""; display: block; }
.range-bars .bar-50 { --w: 50%; }
.range-bars .bar-83 { --w: 83%; }
.range-bars .bar-100 { --w: 100%; }
.results-dark { color: #fff; background: #0b1220; }
.results-dark .results-heading h2 { color: #fff; }
.case-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 42px; }
.case-grid article { min-height: 220px; padding: 26px; border: 1px solid rgba(255,255,255,.1); border-radius: 9px; background: #111c30; }
.case-grid small { color: #8794a9; font: 700 8px/1.4 "JetBrains Mono", Consolas, monospace; letter-spacing: .12em; }
.case-grid strong { display: block; margin-top: 30px; color: #fff; font: 600 30px/1 "JetBrains Mono", Consolas, monospace; letter-spacing: -.05em; }
.case-grid span { display: block; min-height: 44px; margin-top: 11px; color: #aab4c6; font-size: 11px; line-height: 1.55; }
.case-grid b { display: block; margin-top: 20px; color: #65d0df; font-size: 10px; }
.method-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.method-grid article { min-height: 170px; padding: 28px; border: 1px solid var(--oa-line); border-radius: 8px; background: #f9f7f2; }
.method-grid h2 { margin: 0; font-size: 22px; letter-spacing: -.035em; }
.method-grid p { margin: 13px 0 0; color: var(--oa-muted); font-size: 12px; line-height: 1.7; }
.methodology-rule { margin-top: 28px; padding: 30px; border-left: 4px solid var(--oa-orange); background: var(--oa-navy); color: #fff; }
.methodology-rule strong { font-size: 20px; }
.methodology-rule p { max-width: 850px; margin: 10px 0 0; color: #aeb7c8; font-size: 12px; line-height: 1.7; }

@media(max-width:900px){
  .results-scoreboard,
  .distribution-table,
  .case-grid { grid-template-columns: 1fr 1fr; }
  .results-scoreboard > div:nth-child(3),
  .distribution-table > div:nth-child(3) { border-left: 0; }
  .results-scoreboard > div:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,.12); }
  .distribution-table > div:nth-child(n+3) { border-top: 1px solid var(--oa-line); }
}

@media(max-width:720px){
  .results-hero { padding: 104px 0 62px; }
  .results-hero h1 { font-size: 48px; }
  .results-scoreboard,
  .distribution-table,
  .case-grid,
  .method-grid { grid-template-columns: 1fr; }
  .results-scoreboard > div,
  .distribution-table > div { min-height: 100px; }
  .results-scoreboard > div + div,
  .distribution-table > div + div { border-left: 0; border-top: 1px solid rgba(255,255,255,.12); }
  .distribution-table > div + div { border-top-color: var(--oa-line); }
  .results-section,
  .method-section { padding: 72px 0; }
  .range-bars > div { grid-template-columns: 110px 1fr; gap: 12px; }
  .range-bars b { grid-column: 2; text-align: left; }
  .case-grid article { min-height: 180px; }
}

/* Focused evidence, ICP, pricing, and security pages */
.focus-hero { padding: 126px 0 82px; background: linear-gradient(140deg, #f8f6f0, #eef4f4); }
.focus-hero .shell { display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 70px; }
.focus-copy .eyebrow { margin: 0 0 20px; color: var(--oa-orange); font: 700 10px/1.4 "JetBrains Mono", Consolas, monospace; letter-spacing: .14em; text-transform: uppercase; }
.focus-copy h1 { margin: 0; font-size: clamp(48px, 6vw, 82px); line-height: .96; letter-spacing: -.06em; }
.focus-copy > p:not(.eyebrow) { max-width: 700px; margin: 26px 0 0; color: var(--oa-muted); font-size: 16px; line-height: 1.72; }
.focus-actions { display: flex; align-items: center; gap: 22px; margin-top: 30px; }
.focus-actions .button { white-space: nowrap; }
.focus-actions > a:not(.button),
.focus-cards article > a {
  color: #087f98;
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
}
.focus-actions > a:not(.button):hover,
.focus-cards article > a:hover { color: var(--oa-orange); }
.focus-proof { padding: 30px; border: 1px solid var(--oa-line); border-top: 4px solid var(--oa-orange); border-radius: 10px; background: #fff; box-shadow: 0 28px 70px rgba(15,24,42,.13); }
.focus-proof small { color: var(--oa-muted); font: 700 9px/1.4 "JetBrains Mono", Consolas, monospace; letter-spacing: .12em; }
.focus-proof strong { display: block; margin-top: 18px; font: 600 clamp(35px,4vw,52px)/1 "JetBrains Mono", Consolas, monospace; letter-spacing: -.055em; }
.focus-proof p { margin: 14px 0 0; color: var(--oa-muted); font-size: 12px; line-height: 1.65; }
.focus-proof dl { display: grid; gap: 0; margin: 24px 0 0; }
.focus-proof dl div { display: flex; justify-content: space-between; gap: 18px; padding: 13px 0; border-top: 1px solid var(--oa-line); font-size: 11px; }
.focus-proof dt { color: var(--oa-muted); }
.focus-proof dd { margin: 0; font-family: "JetBrains Mono", Consolas, monospace; font-weight: 700; }
.focus-section { padding: 92px 0; background: #fff; }
.focus-section.alt { background: #f0eee7; }
.focus-section.dark { color: #fff; background: #0b1220; }
.focus-head { max-width: 780px; }
.focus-head small { color: var(--oa-orange); font: 700 9px/1.4 "JetBrains Mono", Consolas, monospace; letter-spacing: .13em; }
.focus-head h2 { margin: 12px 0 0; font-size: clamp(40px,4.8vw,66px); line-height: .98; letter-spacing: -.055em; }
.focus-head p { margin: 20px 0 0; color: var(--oa-muted); font-size: 14px; line-height: 1.7; }
.dark .focus-head p { color: #aab4c6; }
.focus-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-top: 42px; }
.focus-cards article { min-height: 190px; padding: 26px; border: 1px solid var(--oa-line); border-radius: 8px; background: #faf8f3; }
.dark .focus-cards article { border-color: rgba(255,255,255,.1); background: #111c30; }
.focus-cards small { color: var(--oa-orange); font: 700 8px/1.4 "JetBrains Mono", Consolas, monospace; letter-spacing: .12em; }
.focus-cards h3 { margin: 18px 0 0; font-size: 22px; letter-spacing: -.035em; }
.focus-cards p { margin: 11px 0 0; color: var(--oa-muted); font-size: 11px; line-height: 1.65; }
.dark .focus-cards p { color: #aab4c6; }
.focus-disclosure { max-width: 900px; margin: 24px 0 0; color: var(--oa-muted); font-size: 10px; line-height: 1.7; }
.dark .focus-disclosure { color: #8995aa; }
.simple-price { display: grid; grid-template-columns: 1fr 420px; align-items: center; gap: 80px; }
.price-card { padding: 34px; border: 1px solid var(--oa-line); border-top: 4px solid var(--oa-orange); border-radius: 9px; background: #fff; box-shadow: 0 24px 65px rgba(15,24,42,.12); }
.price-card > small { color: var(--oa-orange); font: 700 9px/1.4 "JetBrains Mono", Consolas, monospace; letter-spacing: .12em; }
.price-card > strong { display: block; margin-top: 18px; font: 500 60px/1 "JetBrains Mono", Consolas, monospace; letter-spacing: -.06em; }
.price-card > span { color: var(--oa-muted); font-size: 12px; }
.price-list { display: grid; gap: 12px; margin: 26px 0; padding: 24px 0; border-top: 1px solid var(--oa-line); border-bottom: 1px solid var(--oa-line); list-style: none; }
.price-list li { font-size: 11px; font-weight: 700; }
.price-list li::before { margin-right: 9px; color: #258768; content: "✓"; }
.money-check { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 38px; }
.money-check-hero .shell { grid-template-columns: 1fr; }
.money-check form,
.money-check-output { padding: 28px; border: 1px solid var(--oa-line); border-radius: 9px; background: #fff; }
.check-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.check-fields label { display: grid; gap: 8px; color: var(--oa-muted); font-size: 10px; font-weight: 700; }
.check-fields input,
.check-fields select { width: 100%; min-height: 46px; padding: 0 13px; border: 1px solid var(--oa-line); border-radius: 5px; background: #fff; color: var(--oa-ink); font: 600 13px "JetBrains Mono", Consolas, monospace; }
.money-check form .button { margin-top: 20px; }
.money-check-output { display: flex; min-height: 390px; flex-direction: column; justify-content: center; background: var(--oa-navy); color: #fff; }
.money-check-output small { color: #8f9bb0; font: 700 8px/1.4 "JetBrains Mono", Consolas, monospace; letter-spacing: .12em; }
.money-check-output strong { display: block; margin-top: 18px; font: 600 42px/1 "JetBrains Mono", Consolas, monospace; letter-spacing: -.05em; }
.money-check-output p { color: #adb6c7; font-size: 12px; line-height: 1.7; }
.money-check-output .button { align-self: flex-start; margin-top: 14px; }

@media(max-width:900px){
  .focus-hero .shell,
  .simple-price { grid-template-columns: 1fr; gap: 44px; }
  .focus-proof { max-width: 620px; }
  .focus-cards { grid-template-columns: 1fr 1fr; }
  .money-check { grid-template-columns: 1fr; }
}

@media(max-width:720px){
  .focus-hero { padding: 102px 0 68px; }
  .focus-hero .shell { gap: 34px; }
  .focus-copy h1 { font-size: 47px; }
  .focus-actions { align-items: stretch; flex-direction: column; }
  .focus-section { padding: 72px 0; }
  .focus-cards,
  .check-fields { grid-template-columns: 1fr; }
  .focus-cards article { min-height: 0; }
  .price-card,
  .money-check form,
  .money-check-output { padding: 24px; }
}

/* Unified platform page */
.platform-hero .page-hero-copy{max-width:940px}
.platform-no-modules{margin:22px 0 0;color:var(--oa-ink);font-weight:800;font-size:15px}
.platform-proof{padding:28px 0 24px;color:#fff;background:var(--oa-navy)}
.platform-proof-grid{display:grid;grid-template-columns:230px 300px 1fr;align-items:center;gap:34px}
.platform-proof-grid>div{display:grid;gap:2px;padding-right:30px;border-right:1px solid rgba(255,255,255,.14)}
.platform-proof-grid strong{color:#fff;font-family:"Bebas Neue",Impact,sans-serif;font-size:48px;font-weight:400;line-height:1}
.platform-proof-grid span{color:#bec6d5;font-size:12px;line-height:1.5}
.platform-proof-grid p{margin:0;color:#d5dae4;font-size:13px;line-height:1.65}
.proof-disclaimer{margin-top:16px;color:#8e98ad;font-family:"JetBrains Mono",Consolas,monospace;font-size:9px;line-height:1.55}
.platform-answer{border-top:4px solid var(--oa-orange)}
.platform-answer:nth-child(2){border-top-color:var(--oa-red)}
.platform-answer:nth-child(3){border-top-color:var(--oa-cyan)}
.platform-answer h3{font-size:36px}
.platform-checklist{display:grid;grid-template-columns:1fr 1fr;gap:12px 22px;margin:28px 0 0;padding:0;list-style:none;color:#dce1ea;font-size:13px;font-weight:700}
.platform-checklist li::before{content:"✓";margin-right:8px;color:var(--oa-cyan)}
.score-card{width:100%;max-width:480px;justify-self:end;padding:32px;border:1px solid var(--oa-line);border-top:4px solid var(--oa-orange);border-radius:8px;background:#fff;color:var(--oa-ink);box-shadow:0 28px 70px rgba(0,0,0,.24)}
.score-top{display:flex;align-items:center;justify-content:space-between;gap:18px;color:#707b92;font-family:"JetBrains Mono",Consolas,monospace;font-size:10px;font-weight:700;letter-spacing:.11em}
.score-top b{padding:6px 8px;border-radius:3px;background:rgba(45,150,113,.1);color:#24795b;font-size:9px;white-space:nowrap}
.score-ring{display:grid;place-items:center;width:156px;height:156px;margin:28px auto;border:12px solid #d5a146;border-right-color:#ede8dd;border-radius:50%}
.score-ring strong{grid-area:1/1;color:var(--oa-ink);font-family:"JetBrains Mono",Consolas,monospace;font-size:40px;font-weight:700;line-height:1}
.score-ring span{grid-area:1/1;margin-top:55px;color:#94620e;font-family:"JetBrains Mono",Consolas,monospace;font-size:9px;font-weight:700;letter-spacing:.08em}
.score-lines{border-bottom:1px solid var(--oa-line)}
.score-lines>div{display:flex;align-items:center;justify-content:space-between;gap:20px;padding:12px 0;border-top:1px solid var(--oa-line);font-size:12px}
.score-lines span{color:var(--oa-muted)}
.score-lines b{color:var(--oa-ink);font-family:"JetBrains Mono",Consolas,monospace;font-size:11px;white-space:nowrap}
.score-card>.button{width:100%;margin-top:24px}
.score-card>small{display:block;margin-top:13px;color:var(--oa-muted);font-size:10px;line-height:1.5;text-align:center}
.platform-pricing{display:grid;grid-template-columns:1fr 430px;align-items:center;gap:80px}
.platform-pricing h2{font-size:clamp(52px,6vw,82px)}
.platform-pricing>div:first-child>p:last-child{max-width:650px;color:var(--oa-muted);font-size:16px}
.platform-price-card{display:flex;flex-direction:column;padding:38px;border:1px solid var(--oa-line);border-top:4px solid var(--oa-orange);border-radius:8px;background:#fff;box-shadow:0 24px 70px rgba(13,19,35,.13)}
.platform-price-card>span{color:var(--oa-orange);font-family:"JetBrains Mono",Consolas,monospace;font-size:11px;font-weight:700;letter-spacing:.12em}
.platform-price-card>strong{margin-top:18px;color:var(--oa-ink);font-family:"Bebas Neue",Impact,sans-serif;font-size:78px;font-weight:400;line-height:.9}
.platform-price-card>small{color:var(--oa-muted);font-size:13px}
.platform-annual{margin:21px 0;color:var(--oa-ink);font-family:"JetBrains Mono",Consolas,monospace;font-size:12px;font-weight:700}

@media(max-width:900px){
  .platform-proof-grid{grid-template-columns:1fr 1fr}
  .platform-proof-grid p{grid-column:1/-1}
  .score-card{max-width:560px;justify-self:start}
  .platform-pricing{grid-template-columns:1fr;gap:40px}
}

@media(max-width:720px){
  .platform-proof-grid{grid-template-columns:1fr;gap:20px}
  .platform-proof-grid>div{padding:0 0 18px;border-right:0;border-bottom:1px solid rgba(255,255,255,.14)}
  .platform-proof-grid p{grid-column:auto}
  .platform-proof-grid strong{font-size:44px}
  .proof-disclaimer{font-size:10px}
  .platform-checklist{grid-template-columns:1fr}
  .score-card{max-width:none;padding:26px 22px}
  .score-top{font-size:9px}
  .score-ring{width:144px;height:144px;margin:24px auto}
  .score-card>.button{white-space:normal;text-align:center}
  .platform-price-card{padding:30px}
  .platform-price-card>strong{font-size:68px}
}

/* Canonical Odyssey Apex typography.
   Display headlines use Bebas Neue, readable interface copy uses Sora,
   and verified financial figures use JetBrains Mono. */
html {
  font-family: var(--oa-font-body);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

body,
button,
input,
select,
textarea {
  font-family: var(--oa-font-body) !important;
}

body {
  font-size: 16px;
  line-height: 1.65;
}

h1,
h2 {
  font-family: var(--oa-font-display) !important;
  font-weight: 400 !important;
  letter-spacing: .018em !important;
}

h1 { line-height: .95 !important; }
h2 { line-height: 1 !important; }

h3,
h4,
h5,
h6 {
  font-family: var(--oa-font-body) !important;
  font-weight: 700 !important;
  letter-spacing: -.025em !important;
}

p,
li,
label,
summary,
button,
.button,
.btn,
.desktop-nav a,
.mobile-nav a {
  font-family: var(--oa-font-body) !important;
}

.eyebrow,
.kicker,
.article-kicker,
.announcement,
.footer-bottom,
.article-meta,
.proof-disclaimer,
.method-note,
.focus-copy .eyebrow,
.focus-head small,
.focus-proof small,
.focus-cards small,
.price-card > small,
.score-top,
.score-lines b,
.check-fields input,
.check-fields select,
.money-check-output small,
.money-check-output strong,
.results-scoreboard strong,
.distribution-table strong,
.range-bars b,
.case-grid strong,
.platform-proof-grid strong,
.platform-price-card > span,
.platform-annual {
  font-family: var(--oa-font-mono) !important;
}

.button,
.btn,
button {
  font-weight: 700;
  letter-spacing: 0;
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  h1 { line-height: .98 !important; }
}

/* Live product screen gallery */
.platform-screens {
  padding: 104px 0;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 88% 10%, rgba(28, 167, 196, .13), transparent 30%),
    #0b1220;
}

.platform-screens-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  align-items: end;
  gap: 70px;
}

.platform-screens-head .eyebrow { color: #f6a06f; }
.platform-screens-head h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(48px, 5.4vw, 76px);
}
.platform-screens-head > p {
  margin: 0 0 6px;
  color: #aab4c6;
  font-size: 14px;
  line-height: 1.75;
}

.platform-screen-tabs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-top: 44px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 9px;
  background: rgba(255, 255, 255, .045);
}

.platform-screen-tab {
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid transparent;
  border-radius: 6px;
  color: #8f9bb0;
  background: transparent;
  font-size: 12px;
  cursor: pointer;
  transition: color .2s, background .2s, border-color .2s, transform .2s;
}
.platform-screen-tab:hover,
.platform-screen-tab:focus-visible {
  color: #fff;
  border-color: rgba(255, 255, 255, .16);
  outline: 0;
}
.platform-screen-tab.active {
  color: #10182a;
  border-color: #f56b1f;
  background: #f56b1f;
  box-shadow: 0 10px 28px rgba(245, 107, 31, .22);
}

.platform-screen-stage {
  margin-top: 14px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 12px;
  background: #111a2b;
  box-shadow: 0 42px 100px rgba(0, 0, 0, .36);
}
.platform-screen-panel {
  margin: 0;
  overflow: hidden;
  border-radius: 7px;
  background: #f7f5ef;
}
.platform-screen-panel.active { animation: platformScreenIn .28s ease both; }
.platform-screen-panel img {
  display: block;
  width: 100%;
  height: auto;
}
.platform-screen-panel figcaption {
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding: 16px 18px;
  border-top: 1px solid rgba(23, 32, 54, .12);
  color: #626b7d;
  background: #fff;
  font-size: 11px;
  line-height: 1.6;
}
.platform-screen-panel figcaption strong {
  flex: 0 0 auto;
  color: #172036;
  font-size: 13px;
}
.platform-screen-note {
  margin: 14px 0 0;
  color: #7f8ba0;
  font-family: var(--oa-font-mono) !important;
  font-size: 9px;
  line-height: 1.6;
  text-align: center;
}

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

@media (max-width: 900px) {
  .platform-screens-head { grid-template-columns: 1fr; gap: 22px; }
  .platform-screens-head > p { max-width: 700px; }
}

@media (max-width: 720px) {
  .platform-screens { padding: 76px 0; }
  .platform-screens-head h2 { font-size: 48px; }
  .platform-screen-tabs { grid-template-columns: 1fr 1fr; }
  .platform-screen-tab:last-child { grid-column: 1 / -1; }
  .platform-screen-stage { padding: 6px; }
  .platform-screen-panel figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
    padding: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .platform-screen-panel.active { animation: none; }
}

/* Results page closing call to action */
.results-hero ~ .final-cta {
  padding: 82px 0 96px;
  background: linear-gradient(115deg, #faf9f5, #f3f0e8);
}
.results-hero ~ .final-cta .shell {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
.results-hero ~ .final-cta .eyebrow { margin: 0 0 18px; }
.results-hero ~ .final-cta h2 { margin: 0; }
.results-hero ~ .final-cta p:not(.eyebrow) { margin: 20px 0 0; }
.results-hero ~ .final-cta .button { margin-top: 24px; }

@media (max-width: 720px) {
  .results-hero ~ .final-cta { padding: 68px 0 78px; }
  .results-hero ~ .final-cta .button { width: auto; }
}
