:root {
  --orange: #f2741d;
  --orange-deep: #d85a30;
  --orange-pale: #fdf1e6;
  --black: #161616;
  --ink: #1e1e1e;
  --grey-static: #5a5a5a;
  --grey-light: #f6f5f3;
  --grey-rule: #dddad5;
  --grey-meta: #8a8a8a;
  --grey-legal: #a9a6a0;
  --body: "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  --head: Georgia, "Times New Roman", serif;
  --content: 680px;
  --wide: 1060px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.74;
  color: var(--ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

/* ── NAV ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: #fff;
  border-bottom: 2px solid var(--black);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.nav-logo__img {
  display: block;
  height: 40px;
  width: auto;
}

.nav-wordmark {
  font-family: var(--head);
  font-size: 22px;
  font-weight: bold;
  color: var(--black);
  letter-spacing: -0.5px;
}

.nav-wordmark span {
  color: var(--orange);
}

.nav-divider {
  width: 1px;
  height: 22px;
  background: var(--grey-rule);
}

.nav-section {
  font-family: var(--head);
  font-size: 12px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--grey-meta);
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  font-family: var(--head);
  font-size: 12.5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--grey-static);
  text-decoration: none;
  transition: color 0.15s;
}

.nav-links a:hover {
  color: var(--black);
}

.nav-links a.active {
  color: var(--black);
  border-bottom: 2px solid var(--orange);
  padding-bottom: 2px;
}

.nav-cta {
  font-family: var(--head);
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--orange);
  color: #fff;
  padding: 7px 14px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s;
}

.nav-cta:hover {
  background: var(--orange-deep);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  margin-right: -8px;
  padding: 10px;
  border: none;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
}

.nav-toggle__bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--black);
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.nav.is-open .nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav.is-open .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.nav.is-open .nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── HERO ── */
.hero {
  background: var(--black);
  padding: 92px 48px 76px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--orange-deep) 1px, transparent 1px),
    linear-gradient(90deg, var(--orange-deep) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.04;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 4px;
  height: 100%;
  background: var(--orange);
}

.hero-inner {
  max-width: var(--wide);
  margin: 0 auto;
  position: relative;
}

.hero-eyebrow {
  font-family: var(--head);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--orange);
}

.hero-headline {
  font-family: var(--head);
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.12;
  font-weight: bold;
  color: #fff;
  max-width: 760px;
  margin-bottom: 28px;
  letter-spacing: -0.5px;
}

.hero-headline em {
  font-style: normal;
  color: var(--orange);
}

.hero-standfirst {
  font-family: var(--body);
  font-size: 19px;
  line-height: 1.6;
  color: #c2beb7;
  max-width: 640px;
}

/* ── STAT BAND ── */
.stat-band {
  background: var(--grey-light);
  border-bottom: 1px solid var(--grey-rule);
}

.stat-inner {
  max-width: var(--wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--grey-rule);
}

.stat {
  background: var(--grey-light);
  padding: 32px 24px;
}

.stat-n {
  font-family: var(--head);
  font-size: 33px;
  font-weight: bold;
  color: var(--black);
  line-height: 1;
  display: block;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.stat-n span {
  color: var(--orange);
}

.stat-l {
  font-family: var(--body);
  font-size: 13px;
  line-height: 1.45;
  color: var(--grey-static);
}

/* ── SECTION ── */
.section {
  max-width: var(--wide);
  margin: 0 auto;
  padding: 76px 48px;
}

.section + .section {
  padding-top: 0;
}

.rule {
  border: none;
  border-top: 1px solid var(--grey-rule);
  max-width: var(--wide);
  margin: 0 auto;
}

.section-label {
  font-family: var(--head);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 26px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-label::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--orange);
}

.prose {
  max-width: var(--content);
}

.prose p {
  font-family: var(--body);
  font-size: 17.5px;
  line-height: 1.74;
  color: var(--ink);
  margin-bottom: 22px;
}

.prose p:last-child {
  margin-bottom: 0;
}

.prose strong {
  font-weight: bold;
  color: var(--black);
}

.prose .dropcap::first-letter {
  font-family: var(--head);
  font-size: 70px;
  font-weight: bold;
  line-height: 0.78;
  float: left;
  margin-right: 7px;
  margin-top: 9px;
  color: var(--orange);
}

.pull {
  border-left: 3px solid var(--orange);
  margin: 36px 0 0;
  padding: 20px 28px;
  background: var(--orange-pale);
}

.pull p {
  font-family: var(--head);
  font-size: 20px;
  line-height: 1.45;
  color: var(--black);
  font-style: italic;
  margin: 0;
}

/* ── PILLARS ── */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--grey-rule);
  border: 1px solid var(--grey-rule);
  margin: 44px 0 0;
}

.pillar {
  background: #fff;
  padding: 34px 26px;
}

.pillar-number {
  font-family: var(--head);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}

.pillar-title {
  font-family: var(--head);
  font-size: 18px;
  font-weight: bold;
  color: var(--black);
  line-height: 1.25;
  margin-bottom: 12px;
}

.pillar-body {
  font-family: var(--body);
  font-size: 15px;
  line-height: 1.62;
  color: var(--grey-static);
}

/* ── DARK BAND ── */
.dark-band {
  background: var(--black);
  padding: 68px 48px;
  position: relative;
  overflow: hidden;
}

.dark-band::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--orange);
}

.dark-band-inner {
  max-width: var(--wide);
  margin: 0 auto;
}

.dark-band h2 {
  font-family: var(--head);
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: bold;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 22px;
  max-width: 720px;
}

.dark-band h2 em {
  color: var(--orange);
  font-style: normal;
  white-space: nowrap;
}

.dark-band p {
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.68;
  color: #c2beb7;
  max-width: 640px;
  margin-bottom: 18px;
}

.dark-band p:last-of-type {
  margin-bottom: 0;
}

/* ── LEAGUE TABLE TEASER ── */
.league {
  margin: 40px 0 0;
  border: 1px solid var(--grey-rule);
  background: #fff;
}

.league-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 26px 16px;
  border-bottom: 1px solid var(--grey-rule);
  flex-wrap: wrap;
}

.league-title {
  font-family: var(--head);
  font-size: 17px;
  font-weight: bold;
  color: var(--black);
}

.league-sub {
  font-family: var(--head);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey-meta);
}

.league-table {
  width: 100%;
  border-collapse: collapse;
}

.league-table th {
  font-family: var(--head);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey-meta);
  text-align: left;
  padding: 12px 26px;
  border-bottom: 1px solid var(--grey-rule);
  font-weight: normal;
}

.league-table th.num,
.league-table td.num {
  text-align: right;
}

.league-table td {
  font-family: var(--body);
  font-size: 15px;
  color: var(--ink);
  padding: 13px 26px;
  border-bottom: 1px solid var(--grey-light);
}

.league-rank {
  font-family: var(--head);
  font-weight: bold;
  color: var(--orange);
  width: 38px;
}

.league-name {
  position: relative;
}

.league-locked {
  display: inline-block;
  height: 13px;
  width: 150px;
  background: repeating-linear-gradient(
    90deg,
    #d9d6d1 0 7px,
    #e9e6e1 7px 14px
  );
  border-radius: 2px;
  vertical-align: middle;
}

.league-move-up {
  color: #2f7d4f;
  font-weight: bold;
}

.league-move-dn {
  color: var(--orange-deep);
  font-weight: bold;
}

.league-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 26px;
  background: var(--grey-light);
  flex-wrap: wrap;
}

.league-foot-note {
  font-family: var(--body);
  font-size: 13.5px;
  color: var(--grey-static);
}

.league-foot-note strong {
  color: var(--black);
}

.league-cta {
  font-family: var(--head);
  font-size: 11.5px;
  font-weight: bold;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: var(--orange);
  padding: 9px 18px;
  text-decoration: none;
  transition: background 0.15s;
  white-space: nowrap;
}

.league-cta:hover {
  background: var(--orange-deep);
}

.league-illus {
  font-family: var(--body);
  font-size: 11.5px;
  font-style: italic;
  color: var(--grey-meta);
  margin-top: 12px;
}

/* ── SERVE GRID ── */
.serve-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--grey-rule);
  border: 1px solid var(--grey-rule);
  margin-top: 40px;
}

.serve-cell {
  background: #fff;
  padding: 32px 30px;
  display: flex;
  flex-direction: column;
}

.serve-cell-label {
  font-family: var(--head);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 11px;
}

.serve-cell-title {
  font-family: var(--head);
  font-size: 17px;
  font-weight: bold;
  color: var(--black);
  margin-bottom: 11px;
}

.serve-cell-body {
  font-family: var(--body);
  font-size: 15px;
  line-height: 1.62;
  color: var(--grey-static);
  margin-bottom: 18px;
}

.serve-cta {
  font-family: var(--head);
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0.03em;
  color: var(--orange-deep);
  text-decoration: none;
  margin-top: auto;
  transition: color 0.15s;
}

.serve-cta:hover {
  color: var(--black);
}

/* ── PLATFORM SHOWCASE ── */
.showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 48px;
}

.showcase + .showcase,
.league + .showcase {
  margin-top: 64px;
}

.showcase--reverse .showcase-copy {
  order: 2;
}

.showcase--reverse .showcase-media {
  order: 1;
}

.showcase-label {
  font-family: var(--head);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

.showcase-title {
  font-family: var(--head);
  font-size: clamp(22px, 3vw, 28px);
  font-weight: bold;
  color: var(--black);
  line-height: 1.25;
  margin-bottom: 16px;
}

.showcase-body {
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.68;
  color: var(--grey-static);
}

.showcase-body p + p {
  margin-top: 14px;
}

.screenshot-frame {
  margin: 0;
  border: 1px solid var(--grey-rule);
  background: var(--grey-light);
  box-shadow: 0 18px 40px rgb(22 22 22 / 0.08);
}

.screenshot-frame img {
  display: block;
  width: 100%;
  height: auto;
  cursor: zoom-in;
}

.showcase-media {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.showcase-media img {
  display: block;
  width: 100%;
  height: auto;
  cursor: zoom-in;
}

.screenshot-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  padding: 32px;
  background:
    linear-gradient(var(--grey-rule) 1px, transparent 1px),
    linear-gradient(90deg, var(--grey-rule) 1px, transparent 1px),
    var(--grey-light);
  background-size: 24px 24px;
}

.screenshot-placeholder--lg {
  min-height: 420px;
  aspect-ratio: 16 / 10;
  width: 100%;
}

.screenshot-placeholder--on-dark {
  background:
    linear-gradient(rgb(255 255 255 / 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 0.08) 1px, transparent 1px),
    #1a1a1a;
  background-size: 24px 24px;
}

.screenshot-placeholder--on-dark .screenshot-placeholder__label {
  color: rgb(255 255 255 / 0.45);
}

.screenshot-placeholder__label {
  font-family: var(--head);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey-meta);
  text-align: center;
  max-width: 22rem;
  line-height: 1.5;
}

.showcase--media-heavy {
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  align-items: stretch;
  gap: 40px;
}

.showcase--media-heavy.showcase--reverse {
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
}

.showcase-title--hero {
  font-size: clamp(26px, 3.6vw, 34px);
}

.section-label--on-dark {
  color: var(--orange);
}

.section-label--on-dark::before {
  background: var(--orange);
}

.platform-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  margin-bottom: 36px;
  font-family: var(--head);
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--orange);
  color: #fff;
  border: none;
  padding: 9px 18px;
  cursor: pointer;
  transition: background 0.15s;
}

.platform-cta:hover {
  background: var(--orange-deep);
}

.platform-shot {
  margin: 0 0 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.platform-shot img {
  display: block;
  width: 100%;
  max-width: 960px;
  height: auto;
  cursor: zoom-in;
}

.platform-logo-shot {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  padding: 24px;
}

.platform-hero-logo {
  display: block;
  width: min(100%, 420px);
  height: auto;
  cursor: default;
}

.platform-intro {
  max-width: var(--content);
}

.platform-intro p {
  font-family: var(--body);
  font-size: 17.5px;
  line-height: 1.74;
  color: var(--ink);
}

.platform-section-head {
  max-width: var(--content);
  margin-bottom: 8px;
}

.platform-section-head p {
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.68;
  color: var(--grey-static);
  margin-top: 12px;
}

.audience-panel {
  margin-top: 36px;
  border: 1px solid var(--grey-rule);
  background: var(--grey-light);
  padding: 34px 30px;
}

.audience-panel__lead {
  font-family: var(--body);
  font-size: 17.5px;
  line-height: 1.74;
  color: var(--ink);
  max-width: var(--content);
  margin-bottom: 28px;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--grey-rule);
  border: 1px solid var(--grey-rule);
}

.audience-item {
  background: #fff;
  padding: 24px 22px;
}

.audience-item__role {
  font-family: var(--head);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}

.audience-item__title {
  font-family: var(--head);
  font-size: 16px;
  font-weight: bold;
  color: var(--black);
  margin-bottom: 8px;
}

.audience-item__body {
  font-family: var(--body);
  font-size: 14.5px;
  line-height: 1.62;
  color: var(--grey-static);
}

.value-band {
  margin-top: 36px;
  border-left: 3px solid var(--orange);
  padding: 24px 28px;
  background: var(--orange-pale);
}

.value-band p {
  font-family: var(--body);
  font-size: 16.5px;
  line-height: 1.68;
  color: var(--ink);
  margin: 0;
}

.value-band strong {
  color: var(--black);
}

.capability-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.capability-tag {
  font-family: var(--head);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--grey-static);
  border: 1px solid var(--grey-rule);
  background: #fff;
  padding: 8px 12px;
}

.showcase-points {
  margin-top: 18px;
  padding-left: 1.1rem;
}

.showcase-points li {
  font-family: var(--body);
  font-size: 15px;
  line-height: 1.62;
  color: var(--grey-static);
  margin-bottom: 8px;
}

.showcase-points li:last-child {
  margin-bottom: 0;
}

/* ── CONTACT ── */
.contact-section {
  background: var(--orange-pale);
  border-top: 2px solid var(--orange);
  padding: 60px 48px;
}

.contact-inner {
  max-width: var(--wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}

.contact-headline {
  font-family: var(--head);
  font-size: 26px;
  font-weight: bold;
  color: var(--black);
  line-height: 1.25;
  margin-bottom: 12px;
}

.contact-body {
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.62;
  color: var(--grey-static);
  max-width: 480px;
}

.contact-email-block {
  text-align: center;
  flex-shrink: 0;
}

.contact-email-label {
  font-family: var(--head);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-meta);
  margin-bottom: 10px;
  display: block;
}

.contact-email-link {
  font-family: var(--head);
  font-size: 18px;
  font-weight: bold;
  color: var(--black);
  text-decoration: none;
  border-bottom: 2px solid var(--orange);
  padding-bottom: 2px;
  transition:
    color 0.15s,
    border-color 0.15s;
  display: block;
  white-space: nowrap;
}

.contact-email-link:hover {
  color: var(--orange-deep);
  border-color: var(--orange-deep);
}

.contact-note {
  font-family: var(--body);
  font-size: 13px;
  color: var(--grey-meta);
  margin-top: 8px;
  font-style: italic;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--black);
  padding: 30px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.footer-wordmark {
  flex-shrink: 0;
}

.footer-logo {
  display: block;
  height: 28px;
  width: auto;
}

.footer-legal {
  font-family: var(--body);
  font-size: 11px;
  color: var(--grey-legal);
  line-height: 1.45;
  text-align: right;
  max-width: none;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

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

.hero-eyebrow {
  animation: fadeUp 0.5s ease both;
}

.hero-headline {
  animation: fadeUp 0.6s 0.1s ease both;
}

.hero-standfirst {
  animation: fadeUp 0.6s 0.22s ease both;
}

/* ── FOUNDING TEAM ── */
.team-section {
  max-width: var(--wide);
}

.team-list {
  border-top: none;
}

.team-list .founder:first-child {
  padding-top: 0;
}

.founder {
  display: grid;
  grid-template-columns: minmax(200px, 280px) minmax(0, 1fr);
  gap: 20px 56px;
  padding: 40px 0;
  border-bottom: 1px solid var(--grey-rule);
}

.founder__role {
  font-family: var(--head);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0 0 10px;
}

.founder__name {
  font-family: var(--head);
  font-size: clamp(20px, 2.4vw, 24px);
  font-weight: bold;
  color: var(--black);
  line-height: 1.25;
  margin: 0;
}

.founder__bio {
  font-family: var(--body);
  font-size: 16.5px;
  line-height: 1.72;
  color: var(--grey-static);
  max-width: 42rem;
}

.founder__bio p {
  margin: 0;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-eyebrow,
  .hero-headline,
  .hero-standfirst {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* ── RESPONSIVE (tablet + small laptop) ── */
@media (max-width: 1024px) {
  .nav {
    padding: 0 20px;
    height: 64px;
  }

  .nav-logo {
    gap: 10px;
    min-width: 0;
  }

  .nav-logo__img {
    height: 32px;
  }

  .nav-section {
    display: none;
  }

  .nav-divider {
    display: none;
  }

  .nav-toggle {
    display: flex;
    z-index: 220;
  }

  .nav-links {
    position: fixed;
    inset: 64px 0 auto 0;
    z-index: 210;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 20px 24px;
    background: #fff;
    border-bottom: 2px solid var(--black);
    box-shadow: 0 18px 40px rgb(22 22 22 / 0.12);
  }

  .nav.is-open .nav-links {
    display: flex;
  }

  .nav-links a {
    padding: 14px 4px;
    font-size: 14px;
    border-bottom: 1px solid var(--grey-rule);
  }

  .nav-links a.active {
    border-bottom-color: var(--grey-rule);
    box-shadow: inset 3px 0 0 var(--orange);
    padding-left: 10px;
  }

  .nav-cta {
    margin-top: 16px;
    width: 100%;
    text-align: center;
    padding: 11px 16px;
  }

  .hero {
    padding: 48px 20px 44px;
  }

  .hero-headline {
    font-size: clamp(28px, 8vw, 40px);
    margin-bottom: 20px;
  }

  .hero-headline em {
    white-space: normal;
  }

  .hero-standfirst {
    font-size: 16.5px;
  }

  .hero-eyebrow {
    margin-bottom: 18px;
  }

  .stat-inner {
    grid-template-columns: 1fr 1fr;
    gap: 20px 16px;
    padding: 28px 20px;
  }

  .section {
    padding: 44px 20px;
  }

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

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

  .showcase {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .showcase--media-heavy,
  .showcase--media-heavy.showcase--reverse {
    grid-template-columns: 1fr;
  }

  .showcase--reverse .showcase-copy,
  .showcase--reverse .showcase-media {
    order: unset;
  }

  .screenshot-placeholder {
    min-height: 220px;
  }

  .screenshot-placeholder--lg {
    min-height: 240px;
    aspect-ratio: 16 / 11;
  }

  .platform-logo-shot {
    min-height: 180px;
    padding: 16px;
  }

  .platform-hero-logo {
    width: min(100%, 280px);
  }

  .platform-cta {
    width: 100%;
  }

  .founder {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 28px 0;
  }

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

  .contact-inner {
    grid-template-columns: 1fr;
  }

  .contact-email-block {
    text-align: left;
  }

  .dark-band {
    padding: 44px 20px;
  }

  .dark-band h2 {
    font-size: clamp(22px, 6vw, 30px);
  }

  .contact-section {
    padding: 40px 20px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 24px 20px;
  }

  .footer-legal {
    text-align: left;
    font-size: 10.5px;
    line-height: 1.5;
  }

  .footer-logo {
    height: 22px;
  }

  .league-table th:nth-child(4),
  .league-table td:nth-child(4) {
    display: none;
  }
}

@media (max-width: 480px) {
  .stat-inner {
    grid-template-columns: 1fr;
  }

  .nav-logo__img {
    height: 28px;
  }
}
