:root {
  --black: #050607;
  --carbon: #0a0d0b;
  --panel: #101411;
  --line: #283327;
  --white: #f6f8f4;
  --muted: #a6b3a4;
  --dim: #63705f;
  --green: #31e522;
  --green-dark: #087d1d;
  --blue: #075fc7;
  --blue-bright: #118cff;
  --yellow: #ffe600;
  --red: #e63a24;
  --shadow: rgba(0, 0, 0, 0.62);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: "Barlow", Arial, sans-serif;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 20;
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, transparent, black 12%, black 88%, transparent);
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  padding: 0 44px;
  background: rgba(5, 6, 7, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand img {
  display: block;
  width: 50px;
  height: 54px;
  object-fit: contain;
  object-position: left center;
}

.brand span {
  color: var(--white);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  position: relative;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-decoration: none;
  text-transform: uppercase;
  color: var(--muted);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--white);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.site-nav .nav-cta {
  padding: 10px 20px;
  color: #020302;
  background: var(--green);
  clip-path: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
}

.site-nav .nav-cta::after {
  display: none;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--white);
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 132px 44px 72px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-media,
.hero-media img,
.hero-wash,
.speed-grid {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.08) contrast(1.18) brightness(0.55);
}

.hero-wash {
  z-index: 1;
  background:
    radial-gradient(ellipse at 72% 36%, rgba(49, 229, 34, 0.34), transparent 38%),
    radial-gradient(ellipse at 92% 72%, rgba(7, 95, 199, 0.34), transparent 44%),
    linear-gradient(90deg, rgba(5, 6, 7, 0.98), rgba(5, 6, 7, 0.74) 38%, rgba(5, 6, 7, 0.44) 72%, rgba(5, 6, 7, 0.9)),
    linear-gradient(to top, var(--black), transparent 38%);
}

.speed-grid {
  z-index: 2;
  background:
    repeating-linear-gradient(-16deg, transparent 0 118px, rgba(49, 229, 34, 0.18) 119px, transparent 121px),
    repeating-linear-gradient(-16deg, transparent 0 218px, rgba(17, 140, 255, 0.16) 219px, transparent 221px);
  animation: speedShift 8s ease-in-out infinite alternate;
}

@keyframes speedShift {
  from { transform: translateX(-2%); }
  to { transform: translateX(2%); }
}

.hero-inner {
  position: relative;
  z-index: 3;
  width: min(1280px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 520px);
  gap: 54px;
  align-items: end;
}

.eyebrow,
.section-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 14px;
  color: var(--yellow);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.eyebrow::before,
.section-label::before {
  content: "";
  width: 36px;
  height: 2px;
  background: var(--yellow);
}

h1,
h2,
h3 {
  font-family: "Barlow Condensed", Arial, sans-serif;
  margin: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 780px;
  font-size: clamp(68px, 10vw, 142px);
  line-height: 0.82;
  letter-spacing: 0;
  font-weight: 900;
  text-shadow: 0 18px 34px var(--shadow);
}

h1 span,
h2 span {
  display: block;
  color: var(--blue-bright);
  -webkit-text-stroke: 1px var(--white);
  text-shadow: 0 0 28px rgba(17, 140, 255, 0.32);
}

.hero-lede {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--white);
  font-size: 20px;
  line-height: 1.48;
  font-weight: 600;
}

.hero-actions,
.apply-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 24px;
  border: 1px solid transparent;
  color: var(--white);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-decoration: none;
  text-transform: uppercase;
  clip-path: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--green);
  color: #030503;
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.04);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--yellow);
}

.official-logo-panel {
  position: relative;
  margin: 0;
  padding: 18px;
  background: rgba(0, 0, 0, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.68);
  clip-path: polygon(22px 0, 100% 0, calc(100% - 22px) 100%, 0 100%);
}

.official-logo-panel img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.scroll-cue {
  position: absolute;
  right: 42px;
  bottom: 40px;
  z-index: 4;
  display: grid;
  justify-items: center;
  gap: 8px;
  color: var(--dim);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.scroll-cue span {
  width: 2px;
  height: 58px;
  background: linear-gradient(var(--green), transparent);
}

.ticker {
  overflow: hidden;
  background: var(--green);
  color: #010201;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 28s linear infinite;
}

.ticker span {
  padding: 13px 22px;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}

.ticker span::after {
  content: "/";
  margin-left: 42px;
  color: rgba(0, 0, 0, 0.42);
}

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

.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--panel);
}

.stats-band div {
  min-height: 128px;
  padding: 28px 34px;
  border-right: 1px solid var(--line);
}

.stats-band div:last-child {
  border-right: 0;
}

.stats-band strong {
  display: block;
  color: var(--white);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: clamp(40px, 5vw, 70px);
  font-weight: 900;
  line-height: 0.85;
}

.stats-band span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 64px;
  align-items: center;
  width: min(1220px, calc(100% - 88px));
  margin: 0 auto;
  padding: 100px 0;
}

.section h2,
.feature-heading h2,
.apply-card h2 {
  color: var(--white);
  font-size: clamp(48px, 6.7vw, 94px);
  font-weight: 900;
  line-height: 0.88;
}

.section p,
.apply-card p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.66;
}

.section p + p {
  margin-top: 16px;
}

.poster-panel {
  position: relative;
  min-height: 0;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  clip-path: polygon(28px 0, 100% 0, calc(100% - 28px) 100%, 0 100%);
}

.poster-panel img {
  display: block;
  width: 100%;
  height: auto;
}

.feature-strip {
  padding: 96px 44px;
  background:
    radial-gradient(ellipse at 85% 20%, rgba(7, 95, 199, 0.22), transparent 38%),
    linear-gradient(135deg, #0d110e, #050607);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.feature-heading {
  width: min(1220px, 100%);
  margin: 0 auto 36px;
  display: grid;
  gap: 22px;
}

.feature-heading > p:not(.section-label) {
  max-width: 920px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.66;
}

.prize-lockups {
  display: grid;
  grid-template-columns: minmax(0, 520px) minmax(0, 520px);
  gap: 18px;
  align-items: stretch;
}

.superone-lockup {
  width: min(520px, 100%);
  display: grid;
  gap: 10px;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.95);
  border-left: 5px solid var(--green);
  clip-path: polygon(16px 0, 100% 0, calc(100% - 16px) 100%, 0 100%);
}

.superone-lockup span {
  color: #18205c;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.superone-lockup img {
  display: block;
  width: 100%;
  height: auto;
}

.championship-lockup {
  width: min(520px, 100%);
  display: grid;
  gap: 14px;
  align-content: center;
  padding: 20px 24px;
  background:
    linear-gradient(135deg, rgba(17, 140, 255, 0.08), rgba(16, 20, 17, 0.96) 36%),
    rgba(16, 20, 17, 0.98);
  border: 1px solid rgba(49, 229, 34, 0.24);
  border-left: 5px solid var(--green);
  clip-path: polygon(16px 0, 100% 0, calc(100% - 16px) 100%, 0 100%);
}

.championship-lockup span {
  color: var(--white);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.championship-lockup img {
  display: block;
  width: min(100%, 320px);
  height: auto;
}

.feature-grid {
  width: min(1220px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--line);
}

.feature-card {
  min-height: 260px;
  padding: 34px 28px;
  background: rgba(16, 20, 17, 0.96);
  transition: background 180ms ease, transform 180ms ease;
}

.feature-card:hover {
  background: #151d17;
}

.feature-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  color: var(--black);
  background: var(--green);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 24px;
  font-weight: 900;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}

.feature-card h3 {
  color: var(--white);
  font-size: 31px;
  line-height: 1;
}

.feature-card p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.image-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 300px;
  border-bottom: 1px solid var(--line);
}

.image-band img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.08) brightness(0.78);
  border-right: 2px solid var(--green-dark);
}

.image-band img:last-child {
  border-right: 0;
}

.image-band img:nth-child(2),
.image-band img:nth-child(3) {
  object-position: center 34%;
}

.image-band img:nth-child(4),
.image-band img:nth-child(5),
.image-band img:nth-child(6) {
  display: none;
}

.timeline {
  list-style: none;
  display: grid;
  gap: 2px;
  margin: 0;
  padding: 0;
  background: var(--line);
}

.timeline li {
  display: grid;
  grid-template-columns: 82px 1fr;
  min-height: 138px;
  background: var(--panel);
}

.timeline span {
  display: grid;
  place-items: center;
  color: var(--green);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 34px;
  font-weight: 900;
  border-right: 1px solid var(--line);
}

.timeline div {
  padding: 28px 30px;
}

.timeline strong {
  display: block;
  color: var(--white);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 30px;
  font-weight: 900;
  text-transform: uppercase;
}

.timeline p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.transparency-section {
  padding: 96px 44px;
  background:
    radial-gradient(ellipse at 82% 14%, rgba(17, 140, 255, 0.2), transparent 36%),
    linear-gradient(135deg, #0d110e, #050607);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.transparency-header {
  width: min(1220px, 100%);
  margin: 0 auto 36px;
  display: grid;
  gap: 18px;
}

.transparency-header h2 {
  max-width: 980px;
  color: var(--white);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: clamp(48px, 6.7vw, 94px);
  font-weight: 900;
  line-height: 0.88;
  text-transform: uppercase;
}

.transparency-header p:not(.section-label) {
  max-width: 860px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.66;
}

.transparency-grid {
  width: min(1220px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2px;
  background: var(--line);
}

.transparency-card {
  min-height: 320px;
  padding: 34px 28px;
  background: rgba(16, 20, 17, 0.96);
}

.transparency-card > span {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  color: var(--black);
  background: var(--green);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 24px;
  font-weight: 900;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}

.transparency-card h3 {
  color: var(--white);
  font-size: 31px;
  line-height: 1;
}

.transparency-card p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.judging-card {
  background:
    linear-gradient(135deg, rgba(17, 140, 255, 0.16), rgba(16, 20, 17, 0.96) 42%),
    rgba(16, 20, 17, 0.96);
}

.judging-card ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.judging-card li {
  position: relative;
  padding-left: 18px;
  color: var(--white);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.judging-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  background: var(--green);
  transform: rotate(45deg);
}

.apply-section {
  padding: 92px 44px 108px;
  background:
    linear-gradient(100deg, rgba(5, 6, 7, 0.92), rgba(5, 6, 7, 0.62)),
    url("assets/r2r-driver-paddock.jpeg") center / cover;
}

.apply-card {
  width: min(1060px, 100%);
  margin: 0 auto;
  padding: 48px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(5, 6, 7, 0.78);
  backdrop-filter: blur(8px);
  clip-path: polygon(28px 0, 100% 0, calc(100% - 28px) 100%, 0 100%);
}

.apply-card p {
  max-width: 780px;
}

.application-costs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 540px;
  margin-top: 30px;
}

.application-cap-band {
  display: grid;
  gap: 8px;
  max-width: 760px;
  margin-top: 26px;
  padding: 18px 20px;
  border: 1px solid rgba(49, 229, 34, 0.2);
  background: rgba(10, 15, 11, 0.82);
}

.application-cap-band p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.application-cap-band strong {
  color: var(--white);
}

.application-cap-band.is-full {
  border-color: rgba(255, 94, 94, 0.28);
  background: rgba(28, 10, 10, 0.82);
}

.application-cap-band.is-full p,
.application-cap-band.is-full strong {
  color: #ffd7d7;
}

.application-cap-band-entries {
  margin: 18px 0 26px;
}

.application-cost-card {
  padding: 20px 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(9, 12, 10, 0.84);
}

.application-cost-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.application-cost-card span {
  display: block;
  color: var(--white);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 44px;
  font-weight: 900;
  line-height: 0.95;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 42px 44px;
  color: var(--muted);
  background: var(--black);
  border-top: 1px solid var(--line);
}

.site-footer strong {
  color: var(--white);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-site-logo {
  display: block;
  width: 86px;
  height: 86px;
  margin-bottom: 14px;
  object-fit: contain;
}

.site-footer p {
  margin: 6px 0 0;
}

.footer-disclaimer {
  max-width: 560px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12.5px;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--green);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.application-hero {
  position: relative;
  min-height: 480px;
  padding: 140px 44px 68px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.application-hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 6, 7, 0.96), rgba(5, 6, 7, 0.72) 48%, rgba(5, 6, 7, 0.9)),
    linear-gradient(to top, var(--black), transparent 46%),
    url("assets/r2r-action-front.jpeg") center / cover;
  filter: saturate(1.12) contrast(1.12);
}

.application-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(-16deg, transparent 0 120px, rgba(49, 229, 34, 0.14) 121px, transparent 123px),
    radial-gradient(ellipse at 78% 38%, rgba(7, 95, 199, 0.24), transparent 44%);
}

.application-hero-inner {
  position: relative;
  z-index: 1;
  width: min(1220px, 100%);
  margin: 0 auto;
}

.application-page .application-hero h1 {
  max-width: 900px;
  font-size: clamp(58px, 7.8vw, 104px);
}

.entries-countdown-section {
  padding: 0 44px 108px;
}

.entries-countdown-card {
  width: min(1220px, 100%);
  margin: -36px auto 0;
  padding: 42px;
  position: relative;
  z-index: 2;
  background:
    linear-gradient(135deg, rgba(17, 140, 255, 0.08), rgba(16, 20, 17, 0.96) 32%),
    rgba(16, 20, 17, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.entries-countdown-copy {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.66;
}

.entries-countdown-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.entries-countdown-unit {
  padding: 24px 18px;
  text-align: center;
  background: rgba(5, 6, 7, 0.78);
  border: 1px solid rgba(49, 229, 34, 0.22);
}

.entries-countdown-unit strong {
  display: block;
  color: var(--green);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: clamp(46px, 7vw, 78px);
  font-weight: 900;
  line-height: 0.9;
}

.entries-countdown-unit span {
  display: block;
  margin-top: 12px;
  color: var(--white);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.entries-countdown-status {
  margin: 24px 0 0;
  color: var(--white);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.entries-countdown-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.sponsor-hero {
  position: relative;
  min-height: 620px;
  padding: 148px 44px 72px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.sponsor-hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 6, 7, 0.96), rgba(5, 6, 7, 0.72) 48%, rgba(5, 6, 7, 0.9)),
    linear-gradient(to top, var(--black), transparent 48%),
    url("assets/partners-hero.jpeg") center / cover;
  filter: saturate(1.12) contrast(1.16) brightness(0.82);
}

.sponsor-hero-inner {
  position: relative;
  z-index: 3;
  width: min(1220px, 100%);
  margin: 0 auto;
}

.sponsor-hero h1 {
  font-size: clamp(68px, 9vw, 126px);
}

.sponsor-intro {
  width: min(1220px, calc(100% - 88px));
  margin: 0 auto;
  padding: 96px 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr);
  gap: 56px;
  align-items: start;
}

.sponsor-intro-copy h2,
.sponsor-heading h2,
.sponsor-opportunity-copy h2 {
  color: var(--white);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: clamp(48px, 6.7vw, 94px);
  font-weight: 900;
  line-height: 0.88;
  text-transform: uppercase;
}

.sponsor-intro-copy p,
.sponsor-opportunity-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.66;
}

.sponsor-intro-copy p + p {
  margin-top: 16px;
}

.sponsor-highlight {
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(49, 229, 34, 0.16), rgba(16, 20, 17, 0.96) 45%),
    var(--panel);
  border: 1px solid rgba(49, 229, 34, 0.34);
  clip-path: polygon(20px 0, 100% 0, calc(100% - 20px) 100%, 0 100%);
}

.sponsor-highlight strong {
  display: block;
  color: var(--green);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: clamp(68px, 8vw, 108px);
  font-weight: 900;
  line-height: 0.82;
}

.sponsor-highlight span {
  display: block;
  margin-top: 12px;
  color: var(--white);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sponsor-highlight p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.sponsor-band {
  padding: 96px 44px;
  background:
    radial-gradient(ellipse at 88% 18%, rgba(17, 140, 255, 0.2), transparent 34%),
    linear-gradient(135deg, #0d110e, #050607);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.sponsor-band-secondary {
  border-top: 0;
  background:
    radial-gradient(ellipse at 14% 18%, rgba(49, 229, 34, 0.16), transparent 34%),
    linear-gradient(135deg, #090b0a, #050607);
}

.sponsor-heading {
  width: min(1220px, 100%);
  margin: 0 auto 36px;
}

.sponsor-heading .hero-lede {
  max-width: 820px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.66;
}

.sponsor-grid {
  width: min(1220px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2px;
  background: var(--line);
}

.sponsor-card {
  min-height: 380px;
  padding: 32px 26px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: rgba(16, 20, 17, 0.96);
}

.sponsor-card-logo img {
  width: 100%;
  max-width: 224px;
  height: 118px;
  object-fit: contain;
  object-position: center;
  margin-bottom: 28px;
  padding: 0;
  background: transparent;
}

.sponsor-card-dark-logo img {
  max-width: 190px;
}

.sponsor-card-round-logo img {
  max-width: 132px;
}

.sponsor-card-mark img {
  height: 118px;
  max-width: 156px;
  padding: 0;
  background: transparent;
}

.sponsor-card-wide-logo img {
  max-width: 276px;
}

.sponsor-card-avatar img {
  width: 132px;
  max-width: 132px;
  border-radius: 50%;
}

.sponsor-card h3 {
  color: var(--white);
  font-size: 28px;
  line-height: 1;
  min-height: 56px;
  width: 100%;
}

.sponsor-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.sponsor-card-influencer {
  justify-content: flex-start;
}

.sponsor-initial {
  width: 132px;
  height: 132px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  border-radius: 50%;
  border: 1px solid rgba(61, 255, 18, 0.26);
  background:
    radial-gradient(circle at 30% 30%, rgba(61, 255, 18, 0.22), rgba(5, 6, 7, 0.92)),
    rgba(5, 6, 7, 0.82);
  color: var(--green);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.sponsor-opportunity {
  width: min(1220px, calc(100% - 88px));
  margin: 0 auto;
  padding: 100px 0;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 58px;
  align-items: center;
}

.sponsor-opportunity-media {
  overflow: hidden;
  border: 1px solid var(--line);
  clip-path: polygon(24px 0, 100% 0, calc(100% - 24px) 100%, 0 100%);
}

.sponsor-opportunity-media img {
  display: block;
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.08) brightness(0.84);
}

.sponsor-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px;
  margin: 28px 0 30px;
  background: var(--line);
}

.sponsor-benefits span {
  position: relative;
  min-height: 84px;
  padding: 18px 18px 18px 36px;
  color: var(--white);
  background: var(--panel);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.42;
}

.sponsor-benefits span::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 25px;
  width: 8px;
  height: 8px;
  background: var(--green);
  transform: rotate(45deg);
}

.application-lede {
  max-width: 700px;
  margin: 22px 0 0;
  color: var(--white);
  font-size: 20px;
  line-height: 1.5;
  font-weight: 600;
}

.application-wrap {
  width: min(1220px, calc(100% - 88px));
  margin: 0 auto;
  padding: 88px 0 108px;
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 54px;
  align-items: start;
}

.application-guide {
  position: sticky;
  top: 104px;
}

.application-guide h2 {
  color: var(--white);
  font-size: clamp(42px, 5.4vw, 70px);
  font-weight: 900;
  line-height: 0.88;
}

.selection-focus {
  display: grid;
  gap: 12px;
  margin-top: 28px;
  padding: 22px;
  background: linear-gradient(135deg, rgba(49, 229, 34, 0.12), rgba(17, 140, 255, 0.09));
  border: 1px solid rgba(49, 229, 34, 0.32);
}

.selection-focus strong {
  color: var(--green);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}

.selection-focus p {
  margin: 0;
  color: var(--white);
  font-size: 15px;
  line-height: 1.58;
}

.selection-focus .selection-emphasis {
  padding: 13px 14px;
  color: #071007;
  background: var(--green);
  font-weight: 700;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 9px;
  height: 9px;
  background: var(--green);
  transform: rotate(45deg);
}

.application-note {
  margin-top: 28px;
  padding: 18px 20px;
  color: var(--white);
  background: rgba(17, 140, 255, 0.12);
  border: 1px solid rgba(17, 140, 255, 0.32);
  font-size: 15px;
  line-height: 1.6;
}

.application-panel {
  padding: 34px;
  background: rgba(16, 20, 17, 0.96);
  border: 1px solid var(--line);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
  min-width: 0;
}

.application-form {
  display: grid;
  gap: 22px;
  width: 100%;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.application-form label {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.application-form label > span,
.checkbox-label span {
  color: var(--white);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.application-form input,
.application-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(5, 6, 7, 0.72);
  color: var(--white);
  font: inherit;
  padding: 14px 15px;
  outline: none;
}

.application-form textarea {
  resize: vertical;
  min-height: 120px;
}

.application-form input:focus,
.application-form textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(49, 229, 34, 0.14);
}

.application-form input[type="file"] {
  padding: 12px;
}

.discount-code-field input {
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.application-form small {
  color: var(--dim);
  font-size: 13px;
  line-height: 1.45;
}

.form-section-title {
  display: grid;
  gap: 6px;
  padding: 18px 20px;
  background: rgba(49, 229, 34, 0.08);
  border: 1px solid rgba(49, 229, 34, 0.24);
}

.form-section-title span {
  color: var(--green);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.form-section-title p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.checkbox-label {
  display: grid !important;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 12px;
}

.checkbox-label input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--green);
}

.payment-summary {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 18px;
  align-items: center;
  padding: 20px;
  background: rgba(49, 229, 34, 0.1);
  border: 1px solid rgba(49, 229, 34, 0.36);
}

.payment-summary span {
  color: var(--white);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.payment-summary strong {
  color: var(--green);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 46px;
  font-weight: 900;
  line-height: 1;
}

.payment-summary p {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.upload-progress {
  display: grid;
  gap: 12px;
  padding: 18px 20px;
  background: rgba(17, 140, 255, 0.12);
  border: 1px solid rgba(17, 140, 255, 0.28);
}

.upload-progress.is-hidden,
.form-status.is-hidden {
  display: none;
}

.upload-progress-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.upload-progress-head span,
.upload-progress-head strong {
  font-family: "Barlow Condensed", Arial, sans-serif;
  text-transform: uppercase;
}

.upload-progress-head span {
  color: var(--white);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.upload-progress-head strong {
  color: var(--blue-bright);
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
}

.upload-progress-track {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.upload-progress-fill {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--blue-bright));
  box-shadow: 0 0 20px rgba(17, 140, 255, 0.22);
  transition: width 120ms linear;
}

.upload-progress p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.form-status {
  margin-bottom: 24px;
  padding: 20px 22px;
  border: 1px solid;
}

.form-status strong {
  display: block;
  margin-bottom: 8px;
  color: var(--white);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
}

.form-status p,
.form-status li {
  color: var(--muted);
  line-height: 1.5;
}

.form-status ul {
  margin: 0;
  padding-left: 20px;
}

.form-status-success {
  background: rgba(49, 229, 34, 0.12);
  border-color: rgba(49, 229, 34, 0.42);
}

.form-status-error {
  background: rgba(230, 58, 36, 0.12);
  border-color: rgba(230, 58, 36, 0.42);
}

.form-status-progress {
  margin-bottom: 0;
  background: rgba(17, 140, 255, 0.08);
  border-color: rgba(17, 140, 255, 0.24);
}

.admin-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at top right, rgba(17, 140, 255, 0.12), transparent 22%),
    linear-gradient(180deg, #050607 0%, #0b0f0c 100%);
}

.admin-shell {
  width: calc(100% - 32px);
  max-width: 1880px;
  margin: 0 auto;
  padding: 124px 0 56px;
}

.admin-login-card {
  width: min(540px, 100%);
  margin: 0 auto;
}

.admin-login-card h1,
.admin-detail-header h1 {
  margin: 10px 0 0;
  color: var(--white);
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.96;
  text-transform: uppercase;
}

.admin-login-card h1 span,
.admin-detail-header h1 span {
  color: var(--blue);
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.9);
}

.admin-login-card p {
  color: var(--muted);
}

.admin-code-block {
  margin: 18px 0 0;
  padding: 16px 18px;
  overflow-x: auto;
  color: var(--white);
  background: rgba(5, 6, 7, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.admin-logout-form {
  margin-left: auto;
}

.admin-overview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 22px;
}

.admin-dashboard {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.admin-content-stack {
  display: grid;
  gap: 20px;
}

.admin-nav-panel {
  position: sticky;
  top: 96px;
}

.admin-user-chip {
  display: grid;
  gap: 4px;
  margin: 14px 0 18px;
  padding: 16px 18px;
  background: rgba(5, 6, 7, 0.54);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-user-chip strong {
  color: var(--white);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
}

.admin-user-chip span {
  color: var(--muted);
}

.admin-nav-menu {
  display: grid;
  gap: 10px;
}

.admin-nav-link {
  display: block;
  padding: 14px 16px;
  color: var(--muted);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 6, 7, 0.48);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease;
}

.admin-nav-link:hover,
.admin-nav-link.is-active {
  color: var(--white);
  border-color: rgba(49, 229, 34, 0.42);
  background: rgba(49, 229, 34, 0.08);
  transform: translateY(-1px);
}

.admin-stat-card {
  padding: 22px 24px;
  background: rgba(16, 20, 17, 0.96);
  border: 1px solid var(--line);
}

.admin-stat-card span {
  display: block;
  color: var(--muted);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.admin-stat-card strong {
  display: block;
  margin-top: 10px;
  color: var(--green);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 54px;
  font-weight: 900;
  line-height: 1;
}

.admin-layout {
  display: grid;
  grid-template-columns: minmax(300px, 360px) minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.admin-view-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 16px;
  margin-bottom: 20px;
}

.admin-view-header h1 {
  margin: 10px 0 0;
  color: var(--white);
  font-size: clamp(42px, 5vw, 72px);
  line-height: 0.96;
  text-transform: uppercase;
}

.admin-view-header h1 span {
  color: var(--blue);
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.9);
}

.admin-sidebar,
.admin-detail {
  min-height: 70vh;
}

.admin-filter-form {
  display: grid;
  gap: 14px;
  margin-bottom: 20px;
}

.admin-inline-filter {
  grid-template-columns: minmax(240px, 1.3fr) minmax(220px, 0.8fr) auto;
  align-items: end;
}

.admin-inline-filter-wide {
  grid-template-columns: minmax(220px, 1.15fr) minmax(160px, 0.65fr) minmax(160px, 0.65fr) minmax(200px, 0.8fr) auto;
}

.admin-filter-form label {
  display: grid;
  gap: 8px;
}

.admin-filter-form span {
  color: var(--white);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.admin-filter-form input,
.admin-filter-form select,
.admin-login-form input,
.admin-user-form select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(5, 6, 7, 0.72);
  color: var(--white);
  font: inherit;
  padding: 14px 15px;
  outline: none;
}

.admin-user-form textarea {
  width: 100%;
  min-height: 180px;
  resize: vertical;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(5, 6, 7, 0.72);
  color: var(--white);
  font: inherit;
  padding: 14px 15px;
  outline: none;
}

.admin-filter-form select {
  appearance: none;
}

.admin-filter-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.admin-application-list {
  display: grid;
  gap: 10px;
}

.admin-application-item {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  color: var(--muted);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 6, 7, 0.48);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.admin-application-item strong {
  color: var(--white);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 22px;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-application-item:hover,
.admin-application-item.is-active {
  border-color: rgba(49, 229, 34, 0.42);
  background: rgba(49, 229, 34, 0.08);
  transform: translateY(-1px);
}

.admin-empty-state {
  margin: 0;
  color: var(--muted);
}

.admin-detail-header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: start;
}

.admin-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-badge {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  color: var(--white);
  background: rgba(17, 140, 255, 0.14);
  border: 1px solid rgba(17, 140, 255, 0.34);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.admin-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px 0 22px;
}

.admin-inline-form {
  margin-top: 18px;
}

.admin-detail-shell {
  display: grid;
  gap: 18px;
}

.admin-review-control-card {
  margin-bottom: 4px;
}

.admin-review-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: end;
}

.admin-score-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  grid-column: 1 / -1;
}

.admin-review-meta {
  display: grid;
  gap: 8px;
  grid-column: 1 / -1;
}

.admin-review-notes-field {
  grid-column: 1 / -1;
}

.admin-review-meta p {
  margin: 0;
}

.admin-email-status-grid {
  display: grid;
  gap: 8px 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 18px;
}

.admin-email-status-grid p {
  margin: 0;
}

.admin-email-status-grid p:last-child {
  grid-column: 1 / -1;
}

.admin-email-action-row {
  margin: 0;
}

.admin-email-action-row form {
  margin: 0;
}

.admin-review-form .button {
  width: fit-content;
}

.admin-video-card {
  margin-bottom: 24px;
}

.admin-video-player {
  width: 100%;
  display: block;
  margin-top: 10px;
  border: 1px solid var(--line);
  background: #000;
  aspect-ratio: 16 / 9;
}

.admin-meta-grid,
.admin-answer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.admin-answer-grid {
  margin-top: 18px;
}

.admin-copy-card {
  padding: 22px;
  background: rgba(5, 6, 7, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-copy-card h2 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 28px;
  line-height: 1;
}

.admin-copy-card p,
.admin-link-list li {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.admin-copy-card strong,
.admin-link-list strong {
  color: var(--white);
}

.admin-copy-card a,
.admin-link-list a {
  color: var(--green);
}

.admin-backup-panel {
  margin-top: 24px;
}

.terms-hero .application-hero-media {
  background:
    linear-gradient(120deg, rgba(5, 6, 7, 0.76), rgba(5, 6, 7, 0.88)),
    url("assets/r2r-action-front.jpeg") center/cover no-repeat;
}

.terms-section {
  width: min(980px, calc(100% - 48px));
  margin: 0 auto;
  padding: 88px 0 112px;
}

.terms-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.terms-card {
  position: relative;
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 0 22px;
  padding: 28px 0 30px;
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.terms-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-top: 4px;
  background: rgba(61, 255, 18, 0.12);
  border: 1px solid rgba(61, 255, 18, 0.28);
  color: var(--green);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
}

.terms-card h3 {
  grid-column: 2;
  margin: 0 0 12px;
  color: var(--white);
  font-size: clamp(2rem, 3vw, 2.55rem);
  line-height: 0.96;
  text-transform: uppercase;
}

.terms-copy {
  grid-column: 2;
}

.terms-copy p,
.terms-copy li,
.terms-card > p {
  grid-column: 2;
  color: var(--muted);
  line-height: 1.7;
}

.terms-copy p,
.terms-card > p {
  margin: 10px 0 0;
}

.terms-copy strong {
  color: var(--white);
}

.terms-copy ul {
  grid-column: 2;
  margin: 12px 0 0;
  padding-left: 20px;
}

.terms-copy li + li {
  margin-top: 8px;
}

.admin-score-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
}

.admin-score-summary p {
  margin: 0;
}

.admin-kpi-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 18px;
}

.admin-kpi-value {
  color: var(--green);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 44px;
  font-weight: 900;
  line-height: 1;
}

.admin-data-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 6, 7, 0.48);
}

.admin-data-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.admin-data-table th,
.admin-data-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  word-break: break-word;
  overflow-wrap: anywhere;
}

.admin-data-table th {
  color: var(--white);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(16, 20, 17, 0.96);
}

.admin-data-table td {
  color: var(--muted);
  vertical-align: top;
}

.admin-table-row-active td {
  background: rgba(17, 140, 255, 0.08);
}

.admin-table-link {
  color: var(--green);
  font-weight: 700;
  text-decoration: none;
}

.admin-table-empty {
  color: var(--muted);
}

.admin-referral-add-card {
  margin-bottom: 18px;
}

.admin-referral-add-form {
  grid-template-columns: minmax(140px, 0.8fr) minmax(220px, 1.1fr) minmax(140px, 0.7fr) minmax(140px, 0.7fr) minmax(220px, 1.1fr) auto;
  align-items: end;
}

.admin-referral-management-table {
  table-layout: auto;
}

.admin-table-input {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(5, 6, 7, 0.72);
  color: var(--white);
  font: inherit;
  padding: 10px 12px;
  outline: none;
}

.admin-table-button {
  width: 100%;
}

.admin-link-list {
  margin: 0;
  padding-left: 18px;
}

.admin-users-panel {
  margin-top: 20px;
}

.admin-referral-manager {
  margin-top: 26px;
}

.admin-users-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 16px;
  margin-bottom: 20px;
}

.admin-users-header h2 {
  margin: 8px 0 0;
  color: var(--white);
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 0.96;
  text-transform: uppercase;
}

.admin-user-grid {
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.admin-user-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.admin-user-form {
  display: grid;
  gap: 14px;
}

.admin-user-form label {
  display: grid;
  gap: 8px;
}

.admin-user-form span {
  color: var(--white);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.admin-user-form input {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(5, 6, 7, 0.72);
  color: var(--white);
  font: inherit;
  padding: 14px 15px;
  outline: none;
}

.admin-user-actions,
.admin-user-delete-form {
  margin-top: 16px;
}

.admin-user-delete-form {
  display: flex;
}

.admin-danger-button {
  border-color: rgba(255, 94, 94, 0.34);
  color: #ffd7d7;
  background: rgba(255, 94, 94, 0.1);
}

.admin-danger-button:hover,
.admin-danger-button:focus-visible {
  border-color: rgba(255, 94, 94, 0.5);
  background: rgba(255, 94, 94, 0.18);
}

@media (max-width: 1040px) {
  .site-header {
    padding: 0 24px;
  }

  .site-nav {
    gap: 20px;
  }

  .site-nav a {
    font-size: 13px;
  }

  .hero {
    min-height: auto;
    padding: 116px 24px 58px;
  }

  .hero-inner,
  .section {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    gap: 42px;
  }

  .official-logo-panel {
    max-width: 560px;
  }

  .section {
    width: min(100% - 48px, 760px);
  }

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

  .application-wrap {
    grid-template-columns: 1fr;
  }

  .sponsor-intro,
  .sponsor-opportunity {
    grid-template-columns: 1fr;
  }

  .application-guide {
    position: static;
  }

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

  .admin-overview,
  .admin-dashboard,
  .admin-layout,
  .admin-meta-grid,
  .admin-answer-grid,
  .admin-user-grid,
  .admin-user-list,
  .admin-kpi-grid {
    grid-template-columns: 1fr;
  }

  .admin-detail-header {
    flex-direction: column;
  }

  .admin-inline-filter {
    grid-template-columns: 1fr;
  }

  .admin-inline-filter-wide,
  .admin-review-form,
  .admin-score-grid,
  .admin-score-summary,
  .admin-referral-add-form,
  .admin-email-status-grid {
    grid-template-columns: 1fr;
  }

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

  .terms-card {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .terms-card span,
  .terms-card h3,
  .terms-copy,
  .terms-copy p,
  .terms-copy ul,
  .terms-card > p {
    grid-column: auto;
  }

  .terms-card span {
    margin-top: 0;
  }

  .admin-nav-panel {
    position: static;
  }

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

  .image-band img:nth-child(4) {
    display: block;
  }
}

@media (max-width: 760px) {
  .site-header {
    height: 68px;
  }

  .menu-button {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    display: none;
    padding: 16px 24px 24px;
    background: rgba(5, 6, 7, 0.98);
    border-bottom: 1px solid var(--line);
  }

  .site-nav.is-open {
    display: grid;
    gap: 2px;
  }

  .admin-view-header,
  .admin-filter-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .admin-users-header {
    flex-direction: column;
  }

  .admin-filter-actions .button,
  .admin-user-delete-form,
  .admin-user-actions .button,
  .admin-user-delete-form .button {
    width: 100%;
  }

  .site-nav a {
    padding: 14px 0;
    font-size: 18px;
  }

  .site-nav .nav-cta {
    margin-top: 8px;
    text-align: center;
  }

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

  .hero-lede {
    font-size: 17px;
  }

  .hero-actions,
  .apply-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .official-logo-panel {
    padding: 10px;
  }

  .scroll-cue {
    display: none;
  }

  .stats-band,
  .feature-grid,
  .sponsor-grid,
  .sponsor-benefits {
    grid-template-columns: 1fr;
  }

  .image-band {
    grid-template-columns: 1fr;
  }

  .stats-band div,
  .image-band img {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .image-band img:nth-child(4),
  .image-band img:nth-child(5),
  .image-band img:nth-child(6) {
    display: block;
  }

  .feature-strip,
  .transparency-section,
  .sponsor-band,
  .sponsor-hero,
  .apply-section,
  .application-hero {
    padding-left: 20px;
    padding-right: 20px;
  }

  .prize-lockups {
    grid-template-columns: 1fr;
  }

  .transparency-section {
    padding-top: 66px;
    padding-bottom: 72px;
  }

  .transparency-header {
    margin-bottom: 28px;
  }

  .transparency-header h2 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .transparency-header p:not(.section-label) {
    font-size: 16px;
    line-height: 1.55;
  }

  .transparency-card {
    min-height: 0;
    padding: 28px 22px;
  }

  .transparency-card > span {
    width: 48px;
    height: 48px;
    margin-bottom: 22px;
    font-size: 21px;
  }

  .transparency-card h3 {
    font-size: 28px;
  }

  .judging-card li {
    font-size: 18px;
  }

  .sponsor-card {
    min-height: 0;
  }

  .sponsor-card h3 {
    min-height: 0;
  }

  .application-hero {
    min-height: 520px;
    padding-top: 112px;
    padding-bottom: 52px;
  }

  .application-page .application-hero h1 {
    font-size: clamp(50px, 15vw, 72px);
  }

  .application-lede {
    font-size: 17px;
  }

  .application-wrap {
    width: min(100% - 40px, 760px);
    padding: 62px 0 82px;
  }

  .admin-shell {
    width: calc(100% - 24px);
    max-width: none;
    padding-top: 108px;
  }

  .sponsor-intro,
  .sponsor-opportunity {
    width: min(100% - 40px, 760px);
    padding: 66px 0;
  }

  .sponsor-hero {
    min-height: 560px;
    padding-top: 112px;
    padding-bottom: 52px;
  }

  .sponsor-hero h1 {
    font-size: clamp(54px, 15vw, 78px);
  }

  .sponsor-intro-copy h2,
  .sponsor-heading h2,
  .sponsor-opportunity-copy h2 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .application-panel {
    padding: 24px 18px;
  }

  .admin-sidebar,
  .admin-detail,
  .admin-login-card {
    min-height: 0;
  }

  .admin-login-card h1,
  .admin-detail-header h1 {
    font-size: 40px;
  }

  .admin-stat-card strong {
    font-size: 40px;
  }

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

  .apply-card {
    padding: 34px 22px;
  }

  .application-costs {
    grid-template-columns: 1fr;
    max-width: none;
  }

  .application-cap-band {
    max-width: none;
  }

  .application-cost-card span {
    font-size: 38px;
  }

  .entries-countdown-section {
    padding: 0 20px 84px;
  }

  .entries-countdown-card {
    margin-top: -24px;
    padding: 28px 22px;
  }

  .entries-countdown-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .entries-countdown-status {
    font-size: 20px;
  }

  .entries-countdown-actions {
    flex-direction: column;
  }

  .site-footer {
    display: grid;
    padding: 34px 24px;
  }
}

@media (max-width: 430px) {
  .brand img {
    width: 42px;
    height: 44px;
  }

  .brand span {
    font-size: 14px;
    letter-spacing: 0.12em;
  }

  h1 {
    font-size: 58px;
  }

  .section h2,
  .feature-heading h2,
  .transparency-header h2,
  .sponsor-intro-copy h2,
  .sponsor-heading h2,
  .sponsor-opportunity-copy h2,
  .apply-card h2 {
    font-size: 44px;
  }

  .application-guide h2 {
    font-size: 42px;
  }

}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}
