:root {
  --void: #060810;
  --surface: #0a0c14;
  --raised: #161820;
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.18);
  --red: #cc0000;
  --red-light: #ff3333;
  --blue: #2997ff;
  --gold: #ffd700;
  --white: #fff;
  --off: #f4f4f5;
  --gray: #a1a1aa;
  --dim: #71717a;
  --display: "Anton", Impact, sans-serif;
  --body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "Space Mono", ui-monospace, monospace;
  --spring: cubic-bezier(0.34, 1.26, 0.64, 1);
  --out: cubic-bezier(0.16, 1, 0.3, 1);
  --page: min(1180px, calc(100vw - 40px));
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  background: var(--void);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--void);
  color: var(--off);
  font-family: "Inter", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

button,
input {
  font: inherit;
}

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

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

button,
input,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

h1,
h2,
h3,
p {
  margin: 0;
}

.symbol-bank {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.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;
}

.is-hidden {
  display: none !important;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(6, 8, 16, 0.78);
  backdrop-filter: blur(18px) saturate(1.2);
}

.nav-shell {
  width: var(--page);
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 88px;
  height: 37px;
  object-fit: cover;
  border-radius: 7px;
}

.brand-pill {
  padding: 6px 10px;
  border: 1px solid rgba(204, 0, 0, 0.5);
  border-radius: 999px;
  background: rgba(204, 0, 0, 0.12);
  color: #ff7070;
  font: 700 9px/1 var(--mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
  font-size: 13px;
  font-weight: 650;
  color: var(--gray);
}

.nav-links a,
footer a {
  transition: color 160ms ease;
}

.nav-links a:hover,
footer a:hover {
  color: var(--white);
}

.nav-signin {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 18px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms var(--spring);
}

.nav-signin:hover {
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-1px);
}

.broadcast-line {
  position: relative;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--red) 35%, var(--blue) 65%, transparent 100%);
  opacity: 0.8;
}

.broadcast-line::after {
  content: "";
  position: absolute;
  inset: -1px auto auto 0;
  width: var(--scroll-progress, 0%);
  height: 2px;
  background: linear-gradient(90deg, var(--red-light), var(--gold));
  box-shadow: 0 0 10px rgba(255, 51, 51, 0.6);
}

/* Shared type */
.micro-label,
.section-label,
.benefit-code,
.claim-kicker {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.micro-label {
  display: inline-flex;
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--gray);
}

.section-label {
  color: var(--dim);
}

.section-label--red {
  color: var(--red-light);
}

.section-label--gold {
  color: var(--gold);
}

.section {
  width: var(--page);
  margin: 0 auto;
  padding: clamp(92px, 10vw, 142px) 0;
}

.section-head {
  max-width: 780px;
}

.section-head h2,
.loop-copy h2,
.faq-heading h2,
.final-cta h2 {
  margin-top: 16px;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 0.95;
  text-transform: uppercase;
}

.section-head h2 span,
.faq-heading h2 span,
.final-cta h2 span {
  color: var(--red-light);
}

.section-head > p:last-child {
  max-width: 56ch;
  margin-top: 22px;
  color: var(--gray);
  font-size: 17px;
  line-height: 1.65;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  padding: 132px 0 82px;
  overflow: hidden;
  isolation: isolate;
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(rgba(255, 255, 255, 0.027) 1px, transparent 1px) 0 0 / 54px 54px,
    linear-gradient(90deg, rgba(255, 255, 255, 0.027) 1px, transparent 1px) 0 0 / 54px 54px;
  mask-image: radial-gradient(ellipse 82% 72% at 50% 42%, #000 34%, transparent 82%);
}

.hero-bloom {
  position: absolute;
  z-index: -2;
  width: 620px;
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(115px);
  pointer-events: none;
}

.hero-bloom--red {
  top: -260px;
  left: -130px;
  background: rgba(204, 0, 0, 0.28);
}

.hero-bloom--blue {
  right: -210px;
  bottom: -260px;
  background: rgba(41, 151, 255, 0.17);
}

.hero-layout {
  width: var(--page);
  min-height: calc(100svh - 214px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.86fr);
  align-items: center;
  gap: clamp(46px, 6vw, 88px);
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding: 20px 0;
}

.hero-preamble {
  margin-top: 24px;
  color: var(--red-light);
  font: 700 clamp(15px, 1.5vw, 19px)/1.2 var(--mono);
  letter-spacing: 0.08em;
}

.hero h1 {
  margin-top: 12px;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(74px, 10.5vw, 154px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 0.86;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
  color: var(--red-light);
}

.hero-lede {
  max-width: 58ch;
  margin-top: 30px;
  color: #c7c7cf;
  font-size: clamp(16px, 1.55vw, 19px);
  font-weight: 500;
  line-height: 1.65;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 23px 0 0;
  padding: 0;
  list-style: none;
}

.hero-badges li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: #9d9ea7;
  font: 700 9px/1 var(--mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-badges li span {
  color: var(--gold);
}

.auth-zone {
  width: min(600px, 100%);
  margin-top: 34px;
}

.primary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  width: 100%;
  min-height: 58px;
  padding: 0 24px;
  border: 1px solid #747775;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.32);
  color: #1f1f1f;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.01em;
  transition: transform 180ms var(--spring), box-shadow 180ms ease, filter 180ms ease;
}

.primary-cta svg {
  width: 20px;
  height: 20px;
}

.primary-cta:hover {
  transform: translateY(-2px);
  background: #f7f8f8;
  border-color: #5f6368;
  box-shadow: 0 17px 42px rgba(0, 0, 0, 0.42);
}

.primary-cta:active {
  transform: scale(0.985);
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0 12px;
  color: var(--dim);
  font-size: 12px;
  font-weight: 600;
  text-align: center;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

.edu-form {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 9px;
}

.edu-form input,
.edu-form button {
  min-height: 52px;
  border-radius: 999px;
}

.edu-form input {
  min-width: 0;
  padding: 0 19px;
  border: 1px solid var(--line-strong);
  outline: none;
  background: rgba(255, 255, 255, 0.055);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  transition: border-color 160ms ease, background 160ms ease;
}

.edu-form input::placeholder {
  color: #5f606a;
}

.edu-form input:focus {
  border-color: rgba(255, 51, 51, 0.8);
  background: rgba(255, 255, 255, 0.075);
}

.edu-form input[aria-invalid="true"] {
  border-color: var(--red-light);
}

.edu-form button {
  padding: 0 20px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 13px;
  font-weight: 750;
  cursor: pointer;
  transition: background 160ms ease, transform 160ms var(--spring), opacity 160ms ease;
}

.edu-form button:not(:disabled):hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-1px);
}

.edu-form button:disabled {
  cursor: not-allowed;
  opacity: 0.35;
}

.form-message {
  grid-column: 1 / -1;
  min-height: 16px;
  padding-left: 4px;
  color: var(--gray);
  font-size: 12px;
  line-height: 1.35;
}

.form-message[data-state="error"] {
  color: #ff7474;
}

.form-message[data-state="success"] {
  color: #67e8a5;
}

.privacy-note {
  margin-top: 12px;
  color: #5f6068;
  font: 700 9px/1.4 var(--mono);
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

/* Auth states */
.auth-card {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  border: 1px solid var(--line-strong);
  border-radius: 20px;
  background: rgba(22, 24, 32, 0.9);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.auth-card strong {
  font-size: 15px;
}

.auth-card p {
  margin-top: 5px;
  color: var(--gray);
  font-size: 13px;
  line-height: 1.5;
}

.auth-card a {
  display: inline-flex;
  margin-top: 12px;
  color: #ff6f6f;
  font-size: 13px;
  font-weight: 750;
}

.spinner {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  border: 2px solid rgba(255, 255, 255, 0.16);
  border-top-color: var(--red-light);
  border-radius: 50%;
  animation: spin 0.75s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.auth-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border-radius: 50%;
  background: rgba(255, 51, 51, 0.16);
  color: #ff6f6f;
  font-weight: 800;
}

.claim-card {
  padding: 25px;
  border: 1px solid rgba(255, 215, 0, 0.38);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 215, 0, 0.09), transparent 44%),
    rgba(22, 24, 32, 0.92);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34), 0 0 45px rgba(255, 215, 0, 0.08);
}

.claim-kicker {
  color: var(--gold);
}

.claim-card h2 {
  margin-top: 7px;
  color: #fff;
  font-family: var(--display);
  font-size: clamp(38px, 7vw, 58px);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1;
}

.claim-card > p:not(.claim-kicker) {
  margin-top: 12px;
  color: #c7c7cf;
  font-size: 14px;
  line-height: 1.55;
}

.share-campus {
  min-height: 44px;
  margin-top: 20px;
  padding: 0 17px;
  border: 0;
  border-radius: 999px;
  background: var(--gold);
  color: #080a10;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.claim-home {
  margin-left: 14px;
  color: var(--gray);
  font-size: 13px;
  font-weight: 700;
}

/* Campus Matchboard — useful directory access, never a directory dump */
.matchboard-shell {
  padding: 22px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 215, 0, 0.08), transparent 35%),
    radial-gradient(circle at 100% 0, rgba(41, 151, 255, 0.11), transparent 34%),
    rgba(11, 13, 20, 0.97);
}

.matchboard-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.matchboard-heading .claim-kicker {
  font: 800 9px/1 var(--mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.matchboard-heading h2 {
  font-size: clamp(34px, 6vw, 50px);
}

.matchboard-live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  flex: 0 0 auto;
  padding: 8px 10px;
  border: 1px solid rgba(103, 232, 165, 0.24);
  border-radius: 999px;
  background: rgba(103, 232, 165, 0.07);
  color: #8ff0bc;
  font: 800 8px/1 var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.matchboard-live i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #67e8a5;
  box-shadow: 0 0 14px #67e8a5;
}

.matchboard-shell > p[data-claim-copy] {
  max-width: 54ch;
  margin-top: 9px;
  color: #b7b8c1;
  font-size: 13px;
  line-height: 1.5;
}

.matchboard-privacy {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 14px 0 0 !important;
}

.matchboard-privacy span {
  padding: 6px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #7f818c;
  font: 750 7px/1 var(--mono);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.campus-search {
  margin-top: 18px;
}

.campus-search > label,
.motion-field,
.side-picker legend {
  display: block;
  margin-bottom: 8px;
  color: #e7e7eb;
  font: 800 9px/1 var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.campus-search > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.campus-search input,
.motion-field input {
  width: 100%;
  min-width: 0;
  min-height: 46px;
  padding: 0 15px;
  border: 1px solid var(--line-strong);
  border-radius: 13px;
  outline: none;
  background: rgba(255, 255, 255, 0.055);
  color: #fff;
  font: 650 13px/1.2 var(--body);
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.campus-search input::placeholder,
.motion-field input::placeholder {
  color: #62646e;
}

.campus-search input:focus,
.motion-field input:focus {
  border-color: rgba(255, 51, 51, 0.74);
  background: rgba(255, 255, 255, 0.075);
  box-shadow: 0 0 0 3px rgba(255, 51, 51, 0.09);
}

.campus-search button,
.build-challenge {
  min-height: 46px;
  padding: 0 16px;
  border: 0;
  border-radius: 13px;
  background: #f2f2f4;
  color: #0b0d13;
  font-size: 12px;
  font-weight: 850;
  cursor: pointer;
  transition: transform 160ms var(--spring), filter 160ms ease, opacity 160ms ease;
}

.campus-search button:hover,
.build-challenge:not(:disabled):hover {
  transform: translateY(-1px);
  filter: brightness(1.08);
}

.campus-search button:disabled,
.build-challenge:disabled {
  cursor: wait;
  opacity: 0.5;
}

.campus-search-status {
  min-height: 16px;
  margin: 8px 2px 0 !important;
  color: #747680 !important;
  font-size: 11px !important;
  line-height: 1.4 !important;
}

.campus-search-status[data-state="success"] {
  color: #82dfad !important;
}

.campus-search-status[data-state="error"] {
  color: #ff7a7a !important;
}

.campus-results {
  display: grid;
  gap: 6px;
  max-height: 286px;
  margin-top: 12px;
  overflow: auto;
  scrollbar-width: thin;
  scrollbar-color: #343641 transparent;
}

.campus-result {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) auto;
  align-items: center;
  gap: 11px;
  width: 100%;
  min-height: 56px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  text-align: left;
  cursor: pointer;
  transition: border-color 150ms ease, background 150ms ease, transform 150ms var(--spring);
}

.campus-result:hover,
.campus-result:focus-visible {
  border-color: rgba(41, 151, 255, 0.46);
  outline: none;
  background: rgba(41, 151, 255, 0.08);
  transform: translateX(2px);
}

.campus-result-avatar,
.selected-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(41, 151, 255, 0.38);
  border-radius: 50%;
  background: rgba(41, 151, 255, 0.11);
  color: #8dc8ff;
  font: 850 10px/1 var(--mono);
}

.campus-result > span:nth-child(2) {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.campus-result strong {
  overflow: hidden;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.campus-result small {
  overflow: hidden;
  color: #777984;
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.campus-result b {
  color: #8dc8ff;
  font: 800 8px/1 var(--mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.campus-results-empty {
  padding: 18px;
  border: 1px dashed var(--line-strong);
  border-radius: 14px;
  color: #7c7e88;
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
}

.challenge-builder,
.challenge-output {
  margin-top: 14px;
  padding: 15px;
  border: 1px solid var(--line-strong);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.035);
}

.selected-opponent {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  align-items: center;
  gap: 11px;
}

.selected-avatar {
  width: 42px;
  height: 42px;
  border-color: rgba(255, 51, 51, 0.42);
  background: rgba(255, 51, 51, 0.11);
  color: #ff8a8a;
}

.selected-opponent p {
  margin: 0;
  color: #666873;
  font: 800 7px/1 var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.selected-opponent h3 {
  margin-top: 4px;
  overflow: hidden;
  color: #fff;
  font-size: 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.selected-opponent div > span {
  display: block;
  margin-top: 3px;
  overflow: hidden;
  color: #777984;
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.selected-opponent > button {
  border: 0;
  background: transparent;
  color: #8dc8ff;
  font-size: 10px;
  font-weight: 800;
  cursor: pointer;
}

.motion-field {
  margin-top: 16px;
}

.motion-field input {
  display: block;
  margin-top: 8px;
}

.side-picker {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
  margin-top: 13px;
  padding: 0;
  border: 0;
}

.side-picker legend {
  grid-column: 1 / -1;
}

.side-picker button {
  min-height: 38px;
  border: 1px solid var(--line-strong);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.035);
  color: #70727d;
  font: 900 10px/1 var(--mono);
  cursor: pointer;
}

.side-picker button[data-side="PRO"].is-selected {
  border-color: rgba(41, 151, 255, 0.58);
  background: rgba(41, 151, 255, 0.14);
  color: #8dc8ff;
}

.side-picker button[data-side="CON"].is-selected {
  border-color: rgba(255, 51, 51, 0.58);
  background: rgba(255, 51, 51, 0.14);
  color: #ff8787;
}

.build-challenge {
  width: 100%;
  margin-top: 11px;
  background: linear-gradient(90deg, #2997ff, #ff3333);
  color: #fff;
}

.challenge-output {
  background:
    linear-gradient(90deg, rgba(41, 151, 255, 0.09), transparent 43%),
    linear-gradient(270deg, rgba(255, 51, 51, 0.09), transparent 43%),
    rgba(255, 255, 255, 0.03);
}

.challenge-slate {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
}

.challenge-slate > div {
  display: grid;
  gap: 5px;
}

.challenge-slate > div:last-child {
  text-align: right;
}

.challenge-slate span {
  color: #858792;
  font: 900 8px/1 var(--mono);
  letter-spacing: 0.12em;
}

.challenge-slate strong {
  overflow: hidden;
  color: #fff;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.challenge-slate > p {
  margin: 0;
  color: var(--gold);
  font: 400 28px/1 var(--display);
}

.challenge-motion {
  margin: 14px 0 0 !important;
  color: #fff !important;
  font-size: 15px !important;
  font-weight: 800;
  line-height: 1.35 !important;
  text-align: center;
}

.challenge-note {
  margin: 8px auto 0 !important;
  color: #777984 !important;
  font-size: 10px !important;
  line-height: 1.45 !important;
  text-align: center;
}

.challenge-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
  margin-top: 13px;
}

.challenge-actions button,
.challenge-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border: 1px solid var(--line-strong);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  font-size: 10px;
  font-weight: 850;
  cursor: pointer;
}

.challenge-actions a {
  border-color: rgba(255, 215, 0, 0.34);
  color: var(--gold);
}

.claim-footer {
  display: flex;
  align-items: center;
  margin-top: 15px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.claim-footer .share-campus {
  min-height: 38px;
  margin-top: 0;
  background: rgba(255, 215, 0, 0.11);
  color: var(--gold);
}

.claim-footer .claim-home {
  margin-left: auto;
}

/* Signal console — the page's signature */
.signal-console {
  position: relative;
  min-height: 565px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 30px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.024) 1px, transparent 1px) 0 0 / 26px 26px,
    linear-gradient(90deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px) 0 0 / 26px 26px,
    radial-gradient(circle at 50% 48%, rgba(204, 0, 0, 0.2), transparent 39%),
    #090b12;
  box-shadow: 0 38px 100px rgba(0, 0, 0, 0.48), inset 0 0 80px rgba(0, 0, 0, 0.25);
  isolation: isolate;
  animation: console-in 0.85s var(--out) both 0.18s;
}

@keyframes console-in {
  from { opacity: 0; transform: translateY(18px) rotate(1deg); }
  to { opacity: 1; transform: none; }
}

.signal-console::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(125deg, transparent 0 44%, rgba(255, 255, 255, 0.035) 44.2%, transparent 44.5%);
  pointer-events: none;
}

.console-top,
.console-bottom {
  position: absolute;
  z-index: 4;
  right: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  padding: 17px 19px;
  font: 700 9px/1 var(--mono);
  letter-spacing: 0.11em;
  color: var(--dim);
}

.console-top {
  top: 0;
  border-bottom: 1px solid var(--line);
}

.console-bottom {
  bottom: 0;
  border-top: 1px solid var(--line);
}

.signal-state {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #ff6a6a;
}

.signal-state i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red-light);
  box-shadow: 0 0 12px var(--red-light);
  animation: blink 1.25s ease-in-out infinite;
}

@keyframes blink {
  50% { opacity: 0.3; }
}

.console-code {
  color: #9697a1;
}

.scanner {
  position: absolute;
  z-index: 1;
  top: 49px;
  right: 0;
  left: 0;
  height: 72px;
  background: linear-gradient(180deg, transparent, rgba(255, 51, 51, 0.075), rgba(255, 51, 51, 0.24), transparent);
  opacity: 0.66;
  animation: scan 5s ease-in-out infinite;
}

@keyframes scan {
  0%, 100% { transform: translateY(-90px); opacity: 0; }
  12%, 86% { opacity: 0.66; }
  50% { transform: translateY(455px); }
}

.topic-lockup {
  position: absolute;
  top: 88px;
  right: 28px;
  left: 28px;
  text-align: center;
}

.topic-lockup p {
  color: var(--dim);
  font: 700 9px/1 var(--mono);
  letter-spacing: 0.2em;
}

.topic-lockup h2 {
  max-width: 380px;
  margin: 10px auto 0;
  color: var(--off);
  font-size: clamp(18px, 2vw, 23px);
  font-weight: 700;
  line-height: 1.25;
}

.matchup {
  position: absolute;
  top: 178px;
  right: 20px;
  left: 20px;
  display: grid;
  grid-template-columns: 1fr 112px 1fr;
  align-items: center;
}

.side {
  min-height: 225px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
}

.side--pro {
  border-radius: 23px 0 0 23px;
  background: linear-gradient(135deg, rgba(41, 151, 255, 0.14), rgba(255, 255, 255, 0.02));
}

.side--con {
  border-radius: 0 23px 23px 0;
  background: linear-gradient(225deg, rgba(204, 0, 0, 0.2), rgba(255, 255, 255, 0.02));
}

.side-tag {
  font: 700 10px/1 var(--mono);
  letter-spacing: 0.18em;
}

.side--pro .side-tag {
  color: #66b6ff;
}

.side--con .side-tag {
  color: #ff6868;
}

.avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  margin: 20px 0;
  border: 1px dashed currentColor;
  border-radius: 50%;
  font: 700 24px/1 var(--mono);
}

.avatar--pro {
  color: rgba(102, 182, 255, 0.6);
  box-shadow: 0 0 30px rgba(41, 151, 255, 0.12);
}

.avatar--con {
  color: rgba(255, 104, 104, 0.62);
  box-shadow: 0 0 30px rgba(204, 0, 0, 0.14);
}

.side b {
  color: var(--gray);
  font: 700 10px/1 var(--mono);
  letter-spacing: 0.14em;
}

.side small {
  margin-top: 7px;
  color: #555761;
  font: 700 9px/1 var(--mono);
}

.ref-gate {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ref-gate svg {
  position: relative;
  z-index: 2;
  width: 88px;
  height: 88px;
  filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.45));
}

.lock-orbit {
  position: absolute;
  top: -15px;
  width: 118px;
  height: 118px;
  border: 1px dashed rgba(255, 215, 0, 0.28);
  border-radius: 50%;
  animation: orbit 18s linear infinite;
}

.lock-orbit::before,
.lock-orbit::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 14px rgba(255, 215, 0, 0.9);
}

.lock-orbit::before {
  top: -4px;
  left: 50%;
}

.lock-orbit::after {
  right: -4px;
  bottom: 28px;
}

@keyframes orbit {
  to { transform: rotate(360deg); }
}

.ref-gate strong {
  margin-top: 10px;
  color: var(--gold);
  font-family: var(--display);
  font-size: 21px;
  font-weight: 400;
  letter-spacing: 0.08em;
}

.gate-state {
  margin-top: 5px;
  color: var(--dim);
  font: 700 7px/1 var(--mono);
  letter-spacing: 0.13em;
}

/* Hot-take ticker */
.takes {
  padding: 42px 0 48px;
  overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, 0.06);
  background: #090b12;
}

.takes .section-label {
  margin-bottom: 22px;
  text-align: center;
}

.take-rail {
  width: 100%;
  overflow: hidden;
}

.take-rail + .take-rail {
  margin-top: 9px;
}

.take-rail > div {
  display: flex;
  width: max-content;
  gap: 9px;
}

.take-rail span {
  display: inline-flex;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: #858690;
  font: 700 10px/1 var(--mono);
  letter-spacing: 0.04em;
}

.take-rail--left > div {
  animation: rail-left 36s linear infinite;
}

.take-rail--right > div {
  animation: rail-right 38s linear infinite;
}

@keyframes rail-left {
  to { transform: translateX(-50%); }
}

@keyframes rail-right {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

/* How it works */
.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 58px;
}

.step-card {
  min-height: 330px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), transparent 46%),
    var(--surface);
  transition: border-color 180ms ease, transform 180ms var(--spring), background 180ms ease;
}

.step-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 51, 51, 0.45);
  background:
    linear-gradient(145deg, rgba(204, 0, 0, 0.1), transparent 48%),
    var(--surface);
}

.step-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.step-number {
  color: var(--red-light);
  font: 700 12px/1 var(--mono);
}

.step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.035);
  color: #d9d9df;
}

.step-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.step-icon--vs {
  color: var(--gold);
  font-family: var(--display);
  font-size: 22px;
}

.step-card h3,
.benefit h3 {
  margin-top: 52px;
  color: #fff;
  font-size: 21px;
  line-height: 1.15;
}

.step-card p,
.benefit p {
  margin-top: 14px;
  color: var(--gray);
  font-size: 14px;
  line-height: 1.65;
}

/* Growth loop */
.loop-section {
  padding-top: 0;
}

.loop-card {
  position: relative;
  overflow: hidden;
  padding: clamp(36px, 6vw, 72px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 38px;
  background:
    radial-gradient(circle at 12% 10%, rgba(204, 0, 0, 0.25), transparent 31%),
    radial-gradient(circle at 90% 88%, rgba(41, 151, 255, 0.18), transparent 30%),
    #10121a;
  box-shadow: 0 40px 110px rgba(0, 0, 0, 0.35);
}

.loop-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px) 0 0 / 38px 38px,
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px) 0 0 / 38px 38px;
  mask-image: linear-gradient(90deg, transparent, #000 30%, #000 70%, transparent);
  pointer-events: none;
}

.loop-copy {
  position: relative;
  z-index: 2;
  max-width: 690px;
}

.loop-copy h2 {
  font-size: clamp(46px, 6.2vw, 76px);
}

.loop-copy > p:last-child {
  max-width: 59ch;
  margin-top: 22px;
  color: #c0c0c9;
  font-size: 16px;
  line-height: 1.65;
}

.loop-flow {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1.15fr;
  align-items: center;
  gap: 12px;
  margin-top: 55px;
}

.loop-node {
  min-height: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 21px;
  background: rgba(6, 8, 16, 0.62);
  text-align: center;
}

.loop-node b {
  color: #fff;
  font-family: var(--display);
  font-size: 46px;
  font-weight: 400;
  line-height: 1;
}

.loop-node span {
  color: var(--gray);
  font: 700 9px/1.2 var(--mono);
  letter-spacing: 0.13em;
}

.loop-node svg {
  width: 54px;
  height: 54px;
}

.loop-node--gold {
  border-color: rgba(255, 215, 0, 0.28);
  background: rgba(255, 215, 0, 0.055);
}

.loop-node--gold span {
  color: var(--gold);
}

.loop-arrow {
  color: #565862;
  font-family: var(--mono);
  font-size: 21px;
}

.loop-caption {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  margin-top: 22px;
  color: var(--dim);
  font: 700 9px/1 var(--mono);
  letter-spacing: 0.12em;
}

/* Benefits */
.captain {
  padding-top: 20px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 58px;
}

.benefit {
  min-height: 245px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.025);
  transition: border-color 180ms ease, transform 180ms var(--spring);
}

.benefit:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.22);
}

.benefit-code {
  color: var(--red-light);
}

.benefit h3 {
  margin-top: 40px;
  font-size: 22px;
}

.benefit--feature {
  min-height: 360px;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  align-items: center;
  gap: 55px;
  padding: clamp(30px, 5vw, 58px);
  background:
    radial-gradient(circle at 90% 30%, rgba(255, 215, 0, 0.09), transparent 36%),
    radial-gradient(circle at 0 100%, rgba(204, 0, 0, 0.16), transparent 38%),
    var(--surface);
}

.benefit--feature h3 {
  margin-top: 28px;
  font-family: var(--display);
  font-size: clamp(42px, 5vw, 66px);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 0.98;
  text-transform: uppercase;
}

.benefit--feature p {
  max-width: 54ch;
  font-size: 16px;
}

.mini-scorecard {
  padding: 24px;
  border: 1px solid rgba(255, 215, 0, 0.18);
  border-radius: 24px;
  background: rgba(6, 8, 16, 0.7);
}

.mini-scorecard > div {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr) 30px;
  align-items: center;
  gap: 12px;
}

.mini-scorecard > div + div {
  margin-top: 17px;
}

.mini-scorecard span,
.mini-scorecard p {
  color: var(--dim);
  font: 700 9px/1 var(--mono);
  letter-spacing: 0.08em;
}

.mini-scorecard i {
  position: relative;
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
}

.mini-scorecard i::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--score);
  border-radius: inherit;
  background: linear-gradient(90deg, var(--red), var(--gold));
}

.mini-scorecard b {
  color: #fff;
  font: 700 12px/1 var(--mono);
}

.mini-scorecard p {
  margin-top: 24px;
  text-align: right;
}

/* FAQ */
.faq {
  width: 100%;
  padding-right: max(20px, calc((100vw - 1180px) / 2));
  padding-left: max(20px, calc((100vw - 1180px) / 2));
  border-block: 1px solid rgba(255, 255, 255, 0.06);
  background: #090b12;
}

.faq-shell {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(46px, 8vw, 110px);
}

.faq-heading {
  position: sticky;
  top: 120px;
  align-self: start;
}

.faq-heading h2 {
  font-size: clamp(46px, 6vw, 72px);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list details:first-child {
  border-top: 1px solid var(--line);
}

.faq-list summary {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #e7e7eb;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  color: var(--red-light);
  font: 400 24px/1 var(--mono);
  transition: transform 160ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 64ch;
  padding: 0 42px 24px 0;
  color: var(--gray);
  font-size: 14px;
  line-height: 1.7;
}

/* Final CTA */
.final-cta {
  position: relative;
  min-height: 770px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 20px;
  overflow: hidden;
  text-align: center;
}

.final-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  width: min(850px, 110vw);
  aspect-ratio: 1.4;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(204, 0, 0, 0.25), rgba(41, 151, 255, 0.08) 45%, transparent 72%);
  filter: blur(30px);
}

.final-ref {
  width: 106px;
  height: 106px;
  margin-bottom: 28px;
  filter: drop-shadow(0 16px 34px rgba(0, 0, 0, 0.45));
  animation: ref-float 4.2s ease-in-out infinite;
}

@keyframes ref-float {
  50% { transform: translateY(-8px); }
}

.final-cta h2 {
  font-size: clamp(54px, 8.5vw, 104px);
}

.final-cta > p:not(.section-label) {
  margin-top: 22px;
  color: var(--gray);
  font-size: 17px;
}

.final-actions {
  width: min(590px, 100%);
  margin-top: 36px;
}

/* Footer */
footer {
  width: var(--page);
  min-height: 96px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border-top: 1px solid var(--line);
}

.footer-brand img {
  width: 88px;
  height: 37px;
}

footer p {
  color: #545660;
  font-size: 12px;
  text-align: center;
}

footer nav {
  display: flex;
  gap: 18px;
  color: var(--dim);
  font-size: 12px;
  font-weight: 600;
}

/* Mobile conversion dock */
.mobile-claim-dock {
  position: fixed;
  z-index: 90;
  right: 12px;
  bottom: max(12px, env(safe-area-inset-bottom));
  left: 12px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 10px 10px 15px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  background: rgba(11, 13, 21, 0.9);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(18px) saturate(1.25);
  transform: translateY(calc(100% + 30px));
  opacity: 0;
  pointer-events: none;
  transition: transform 280ms var(--out), opacity 220ms ease;
}

.mobile-claim-dock.is-visible {
  transform: none;
  opacity: 1;
  pointer-events: auto;
}

.mobile-claim-dock div {
  display: grid;
  gap: 3px;
}

.mobile-claim-dock div span {
  color: var(--red-light);
  font: 700 7px/1 var(--mono);
  letter-spacing: 0.16em;
}

.mobile-claim-dock strong {
  color: #fff;
  font-size: 12px;
}

.mobile-claim-dock a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 17px;
  border-radius: 12px;
  background: var(--red);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

/* Reveals */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--out), transform 0.7s var(--out);
}

.reveal.in {
  opacity: 1;
  transform: none;
}

.steps .reveal:nth-child(2),
.benefit-grid .reveal:nth-child(2) {
  transition-delay: 70ms;
}

.steps .reveal:nth-child(3),
.benefit-grid .reveal:nth-child(3) {
  transition-delay: 140ms;
}

.benefit-grid .reveal:nth-child(4) {
  transition-delay: 210ms;
}

.benefit-grid .reveal:nth-child(5) {
  transition-delay: 280ms;
}

@media (max-width: 980px) {
  .hero {
    padding-top: 124px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .hero-copy {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
  }

  .hero-lede,
  .auth-zone {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-badges {
    justify-content: center;
  }

  .signal-console {
    width: min(590px, 100%);
    min-height: 540px;
    margin: 0 auto;
  }

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

  .step-card {
    min-height: 255px;
  }

  .step-card h3 {
    margin-top: 34px;
  }

  .loop-flow {
    grid-template-columns: 1fr 1fr;
  }

  .loop-arrow {
    display: none;
  }

  .benefit--feature {
    grid-template-columns: 1fr;
  }

  .faq-shell {
    grid-template-columns: 1fr;
  }

  .faq-heading {
    position: static;
  }
}

@media (max-width: 720px) {
  :root {
    --page: calc(100vw - 32px);
  }

  .nav-shell {
    min-height: 66px;
  }

  .brand img {
    width: 76px;
    height: 32px;
  }

  .brand-pill {
    display: none;
  }

  .nav-links {
    display: none;
  }

  .nav-signin {
    min-height: 36px;
    padding: 0 15px;
  }

  .mobile-claim-dock {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding: 112px 0 72px;
  }

  .hero-layout {
    min-height: 0;
    gap: 48px;
  }

  .hero h1 {
    font-size: clamp(64px, 21vw, 96px);
  }

  .hero-preamble {
    margin-top: 20px;
    font-size: 12px;
  }

  .hero-lede {
    margin-top: 24px;
    font-size: 15px;
  }

  .auth-zone {
    margin-top: 28px;
  }

  .matchboard-shell {
    padding: 17px;
    text-align: left;
  }

  .matchboard-heading {
    gap: 10px;
  }

  .matchboard-heading h2 {
    font-size: 34px;
  }

  .matchboard-live {
    padding: 7px 8px;
  }

  .campus-search > div,
  .challenge-actions {
    grid-template-columns: 1fr;
  }

  .campus-search button {
    width: 100%;
  }

  .campus-results {
    max-height: 248px;
  }

  .campus-result {
    grid-template-columns: 34px minmax(0, 1fr);
  }

  .campus-result b {
    display: none;
  }

  .selected-opponent {
    grid-template-columns: 40px minmax(0, 1fr);
  }

  .selected-opponent > button {
    grid-column: 2;
    justify-self: start;
    padding: 0;
  }

  .claim-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .claim-footer .claim-home {
    margin-left: 0;
  }

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

  .edu-form button {
    width: 100%;
  }

  .form-message {
    grid-column: 1;
  }

  .signal-console {
    min-height: 476px;
    border-radius: 25px;
  }

  .topic-lockup {
    top: 79px;
    right: 18px;
    left: 18px;
  }

  .topic-lockup h2 {
    font-size: 17px;
  }

  .matchup {
    top: 163px;
    right: 11px;
    left: 11px;
    grid-template-columns: 1fr 82px 1fr;
  }

  .side {
    min-height: 194px;
  }

  .avatar {
    width: 55px;
    height: 55px;
    margin: 17px 0;
  }

  .ref-gate svg {
    width: 68px;
    height: 68px;
  }

  .lock-orbit {
    top: -11px;
    width: 92px;
    height: 92px;
  }

  .ref-gate strong {
    font-size: 18px;
  }

  .console-bottom {
    gap: 8px;
    padding: 15px 13px;
    font-size: 7px;
  }

  .takes {
    padding: 34px 0 38px;
  }

  .section {
    padding-top: 84px;
    padding-bottom: 84px;
  }

  .section-head h2,
  .loop-copy h2,
  .faq-heading h2 {
    font-size: clamp(43px, 14vw, 62px);
  }

  .section-head > p:last-child {
    font-size: 15px;
  }

  .steps,
  .benefit-grid {
    margin-top: 42px;
  }

  .step-card {
    min-height: 280px;
    padding: 24px;
  }

  .loop-card {
    padding: 32px 20px;
    border-radius: 28px;
  }

  .loop-flow {
    gap: 8px;
    margin-top: 38px;
  }

  .loop-node {
    min-height: 122px;
    padding: 13px 8px;
  }

  .loop-node b {
    font-size: 38px;
  }

  .loop-node span {
    font-size: 7px;
  }

  .loop-caption {
    display: grid;
    gap: 8px;
    font-size: 7px;
    line-height: 1.4;
    text-align: center;
  }

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

  .benefit--feature,
  .benefit {
    grid-column: 1;
  }

  .benefit--feature {
    gap: 34px;
    padding: 30px 23px;
  }

  .benefit {
    min-height: 225px;
    padding: 25px;
  }

  .benefit--feature h3 {
    font-size: 44px;
  }

  .mini-scorecard {
    padding: 20px 16px;
  }

  .faq {
    padding-top: 84px;
    padding-bottom: 84px;
  }

  .faq-shell {
    gap: 44px;
  }

  .faq-list summary {
    min-height: 74px;
    font-size: 14px;
    line-height: 1.35;
  }

  .final-cta {
    min-height: 690px;
    padding: 84px 16px;
  }

  .final-cta h2 {
    font-size: clamp(50px, 16vw, 72px);
  }

  footer {
    min-height: 180px;
    flex-direction: column;
    justify-content: center;
    padding: 28px 0;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
