@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;700&display=swap');

:root {
  --bg: #08110f;
  --bg-deep: #050a08;
  --surface: rgba(14, 30, 26, 0.82);
  --surface-strong: rgba(18, 39, 34, 0.94);
  --surface-soft: rgba(248, 242, 226, 0.06);
  --surface-highlight: rgba(255, 138, 61, 0.12);
  --text: #eff8f3;
  --muted: #aac0b5;
  --soft: #7f9a8d;
  --accent: #ff8a3d;
  --accent-deep: #d95f17;
  --accent-soft: rgba(255, 138, 61, 0.16);
  --accent-alt: #c7ff74;
  --line: rgba(199, 255, 116, 0.16);
  --line-strong: rgba(255, 255, 255, 0.12);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
  --radius: 24px;
  --radius-sm: 16px;
  --max-width: 1180px;
  --reveal-distance: 30px;
  --transition-smooth: 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 138, 61, 0.2), transparent 30%),
    radial-gradient(circle at 90% 10%, rgba(199, 255, 116, 0.12), transparent 26%),
    linear-gradient(180deg, #0a1411 0%, #07100d 34%, #050a08 100%);
  color: var(--text);
  font-family: 'Manrope', 'Segoe UI', sans-serif;
  line-height: 1.65;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent 90%);
  pointer-events: none;
  z-index: -2;
}

body::after {
  content: '';
  position: fixed;
  inset: auto 0 0;
  height: 40vh;
  background: radial-gradient(circle at 50% 100%, rgba(255, 138, 61, 0.14), transparent 58%);
  pointer-events: none;
  z-index: -2;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-shell {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(5, 10, 8, 0.74);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background-color 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.site-header.is-scrolled {
  background: rgba(5, 10, 8, 0.92);
  border-bottom-color: rgba(255, 138, 61, 0.18);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark {
  width: 52px;
  height: 52px;
  display: inline-grid;
  place-items: center;
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 138, 61, 0.95), rgba(217, 95, 23, 0.92));
  color: #fff8f0;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  box-shadow: 0 18px 28px rgba(217, 95, 23, 0.28);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-copy strong {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.08rem;
  letter-spacing: 0.04em;
  text-transform: none;
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.85rem;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 14px;
}

.site-nav a {
  color: var(--muted);
  font-size: 0.96rem;
  padding: 8px 12px;
  border-radius: 999px;
  transition: color 0.25s ease, background-color 0.25s ease, transform 0.25s ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-1px);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-inner.compact {
  gap: 28px;
}

.header-inner.compact .site-nav {
  margin-left: auto;
}

.button,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.button {
  background: linear-gradient(135deg, var(--accent), #ffac56);
  color: #1d1107;
  box-shadow: 0 18px 30px rgba(255, 138, 61, 0.22);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 38px rgba(255, 138, 61, 0.28);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.08);
}

main {
  display: block;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 48px;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 40px auto auto 50%;
  width: min(520px, 44vw);
  height: min(520px, 44vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 138, 61, 0.18), transparent 66%);
  transform: translateX(-8%);
  filter: blur(6px);
  pointer-events: none;
}

.hero-grid,
.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 28px;
  align-items: stretch;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 138, 61, 0.12);
  border: 1px solid rgba(255, 138, 61, 0.24);
  color: #ffd0af;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.76rem;
  font-weight: 700;
}

.hero-copy,
.hero-aside,
.panel,
.callout-panel,
.section-card,
.metric-card,
.timeline-step,
.faq-item,
.policy-card,
.footer-card {
  position: relative;
  background:
    linear-gradient(180deg, rgba(18, 39, 34, 0.9), rgba(8, 19, 16, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-copy,
.hero-aside,
.panel,
.callout-panel,
.section-card,
.metric-card,
.timeline-step,
.faq-item,
.policy-card,
.footer-card,
.countdown-card,
.status-banner,
.visual-card,
.hub-link,
.cta-panel,
.highlight-box,
.subtle-box,
.score-cell,
.countdown-unit,
.showcase-card,
.hero-detail-card,
.detail-card,
.lane-stop {
  --surface-transform: translate3d(0, 0, 0);
  transform: var(--surface-transform);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color 0.3s ease, background-color 0.3s ease;
}

.hero-copy,
.hero-aside,
.panel,
.callout-panel,
.policy-card {
  padding: 30px;
}

.hero-copy::before,
.hero-aside::before,
.panel::before,
.callout-panel::before,
.section-card::before,
.metric-card::before,
.timeline-step::before,
.faq-item::before,
.policy-card::before,
.footer-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.02));
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.detail-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.02));
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

h1,
h2,
h3 {
  margin: 0 0 16px;
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1.1;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.1rem, 3.8vw, 3.5rem);
}

h2 {
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
}

h3 {
  font-size: 1.3rem;
}

p {
  margin: 0 0 16px;
  color: var(--muted);
}

.lead {
  font-size: 1.08rem;
  color: #d7e6df;
  max-width: 60ch;
}

.page-hero .hero-copy h1,
.page-hero .hero-aside h2,
.section-head h2 {
  max-width: 18ch;
}

.hero-actions,
.pill-row,
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.fan-float-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.fan-float-button {
  --surface-transform: translate3d(0, 0, 0);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text);
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
  transform: var(--surface-transform);
  transition: transform var(--transition-smooth), border-color 0.3s ease, background-color 0.3s ease, box-shadow var(--transition-smooth);
  animation: fanFloat 5.6s ease-in-out infinite;
}

.fan-float-button:nth-child(2) {
  animation-delay: -1.8s;
}

.fan-float-button:nth-child(3) {
  animation-delay: -3.1s;
}

.fan-float-button::before {
  content: '';
  width: 10px;
  height: 10px;
  margin-right: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-alt));
  box-shadow: 0 0 0 4px rgba(255, 138, 61, 0.12);
}

.fan-float-button:hover {
  --surface-transform: translateY(-4px);
  border-color: rgba(255, 138, 61, 0.3);
  background: rgba(255, 138, 61, 0.12);
  box-shadow: 0 24px 42px rgba(0, 0, 0, 0.26);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: #d9ebe2;
  font-size: 0.93rem;
}

.hero-aside {
  overflow: hidden;
}

.mini-label {
  display: inline-block;
  margin-bottom: 14px;
  color: #f9c59c;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.score-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 24px 0 28px;
}

.score-cell {
  padding: 16px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
}

.score-cell strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
  font-size: 1.35rem;
  font-family: 'Space Grotesk', sans-serif;
}

.score-cell span {
  color: var(--soft);
  font-size: 0.88rem;
}

.hero-visual {
  display: grid;
  gap: 16px;
}

.visual-card {
  padding: 20px;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 138, 61, 0.14), rgba(199, 255, 116, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.visual-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--text);
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 18px;
}

.field-dot {
  min-height: 68px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(4, 9, 7, 0.34);
  border: 1px solid rgba(199, 255, 116, 0.14);
  color: #dff9b4;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
}

.section {
  padding: 34px 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.section-head > div::after {
  content: '';
  display: block;
  width: 76px;
  height: 3px;
  margin-top: 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), rgba(199, 255, 116, 0.86));
}

.section-head p {
  max-width: 60ch;
}

.grid-2,
.grid-3,
.grid-4,
.policy-grid,
.faq-grid,
.footer-grid {
  display: grid;
  gap: 18px;
}

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

.grid-3,
.faq-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

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

.section-card,
.metric-card,
.timeline-step,
.faq-item {
  padding: 24px;
}

.section-card,
.metric-card,
.timeline-step,
.faq-item,
.policy-card,
.footer-card {
  overflow: hidden;
}

.section-card p:last-child,
.metric-card p:last-child,
.timeline-step p:last-child,
.faq-item p:last-child,
.policy-card p:last-child {
  margin-bottom: 0;
}

.card-kicker {
  display: inline-flex;
  margin-bottom: 12px;
  color: #f7c9a6;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.list-clean,
.list-check,
.policy-list,
.link-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.list-clean li,
.link-list li {
  color: var(--muted);
}

.list-check li,
.policy-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: var(--muted);
}

.list-check li::before,
.policy-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-alt));
  box-shadow: 0 0 0 4px rgba(255, 138, 61, 0.12);
}

.metric-card strong,
.timeline-step strong {
  display: inline-flex;
  margin-bottom: 12px;
  color: #ffe1cb;
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.metric-card .metric-value {
  display: block;
  margin-bottom: 10px;
  color: var(--text);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
}

.timeline {
  display: grid;
  gap: 18px;
}

.timeline-step {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.timeline-index {
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  background: rgba(255, 138, 61, 0.14);
  color: #ffe1cb;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
}

.timeline-copy h3 {
  margin-bottom: 10px;
}

.callout-band {
  margin: 18px 0 8px;
  padding: 24px 28px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 138, 61, 0.16), rgba(199, 255, 116, 0.1));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

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

.countdown-card {
  padding: 26px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 138, 61, 0.16), rgba(199, 255, 116, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.countdown-card h3 {
  margin-bottom: 10px;
}

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

.countdown-unit {
  padding: 18px 16px;
  border-radius: 20px;
  background: rgba(6, 12, 10, 0.36);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.countdown-unit strong {
  display: block;
  color: var(--text);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  line-height: 1;
}

.countdown-unit span {
  display: block;
  margin-top: 8px;
  color: var(--soft);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.status-banner {
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.status-banner strong {
  color: var(--text);
}

.locked-button {
  opacity: 0.7;
  cursor: not-allowed;
  pointer-events: none;
}

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

.faq-item h3 {
  font-size: 1.08rem;
}

.faq-tag {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(199, 255, 116, 0.12);
  color: #defcb2;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.policy-card h2,
.policy-card h3 {
  margin-bottom: 12px;
}

.policy-meta,
.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.meta-pill {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: #dce8e1;
  font-size: 0.86rem;
}

.table-note {
  display: grid;
  gap: 10px;
}

.table-scroll {
  overflow-x: auto;
  padding-bottom: 4px;
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

.schedule-table th,
.schedule-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  vertical-align: top;
}

.schedule-table th {
  color: #ffe1cb;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.schedule-table td {
  color: var(--muted);
}

.schedule-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.03);
}

.day-badge {
  display: inline-flex;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(199, 255, 116, 0.12);
  color: #defcb2;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.subtle-box {
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hub-links {
  display: grid;
  gap: 14px;
}

.hub-link {
  display: block;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.hub-link:hover {
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-1px);
}

.hub-link strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
}

.hub-link span {
  color: var(--muted);
}

.panel:hover,
.callout-panel:hover,
.section-card:hover,
.metric-card:hover,
.timeline-step:hover,
.faq-item:hover,
.policy-card:hover,
.footer-card:hover,
.countdown-card:hover,
.status-banner:hover,
.visual-card:hover,
.cta-panel:hover,
.highlight-box:hover,
.subtle-box:hover,
.score-cell:hover,
.countdown-unit:hover,
.hero-detail-card:hover,
.detail-card:hover,
.lane-stop:hover {
  --surface-transform: translateY(-6px);
  border-color: rgba(255, 138, 61, 0.24);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.4);
}

[data-reveal] {
  --reveal-delay: 0ms;
}

.reveal-ready [data-reveal] {
  opacity: 0;
  transform: var(--surface-transform) translate3d(0, var(--reveal-distance), 0) scale(0.98);
  filter: blur(3px);
  transition:
    opacity 0.7s ease,
    transform 0.8s var(--transition-smooth),
    filter 0.8s ease;
  transition-delay: var(--reveal-delay);
}

.reveal-ready [data-reveal].is-visible {
  opacity: 1;
  transform: var(--surface-transform);
  filter: none;
}

.reveal-ready .score-cell[data-reveal],
.reveal-ready .countdown-unit[data-reveal],
.reveal-ready .lane-stop[data-reveal] {
  transform: var(--surface-transform) translate3d(0, 18px, 0) scale(0.98);
}

.table-row {
  display: grid;
  grid-template-columns: minmax(160px, 0.75fr) minmax(0, 1.25fr);
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.table-row:last-child {
  border-bottom: 0;
}

.table-row strong {
  color: var(--text);
}

.highlight-box {
  padding: 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 20px;
}

.contact-form {
  display: grid;
  gap: 16px;
}

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

.field {
  display: grid;
  gap: 8px;
}

.field label {
  color: #f5d8bf;
  font-size: 0.92rem;
  font-weight: 700;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  outline: 0;
  transition: border-color 0.25s ease, background-color 0.25s ease;
}

.field input:disabled,
.field textarea:disabled,
.field select:disabled {
  cursor: not-allowed;
  color: var(--soft);
  background: rgba(255, 255, 255, 0.025);
  border-color: rgba(255, 255, 255, 0.07);
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: rgba(255, 138, 61, 0.55);
  background: rgba(255, 255, 255, 0.07);
}

.field textarea {
  min-height: 160px;
  resize: vertical;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.72;
  box-shadow: none;
}

.auth-layout,
.builder-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.auth-card form,
.team-builder-form {
  margin-top: 18px;
}

.lock-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 138, 61, 0.12);
  border: 1px solid rgba(255, 138, 61, 0.22);
  color: #ffd5b8;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.gate-copy {
  margin-bottom: 0;
}

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

[data-unlock-gate] {
  position: relative;
}

[data-unlock-gate].is-locked {
  border-color: rgba(255, 138, 61, 0.14);
}

[data-unlock-gate].is-live {
  border-color: rgba(199, 255, 116, 0.18);
}

.team-slot-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.team-slot,
.player-pill {
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.team-slot strong,
.player-pill strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.96rem;
}

.team-slot span,
.player-pill span {
  color: var(--soft);
  font-size: 0.86rem;
}

.player-pool {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.auth-page .page-hero::after,
.builder-page .page-hero::after {
  background: radial-gradient(circle, rgba(255, 138, 61, 0.22), transparent 66%);
}

.support-lines {
  display: grid;
  gap: 12px;
}

.support-lines a,
.support-lines span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
}

.note {
  color: var(--soft);
  font-size: 0.9rem;
}

.cta-panel {
  padding: 28px;
  border-radius: 28px;
  background:
    linear-gradient(120deg, rgba(255, 138, 61, 0.18), rgba(9, 22, 18, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.site-footer {
  margin-top: 44px;
  padding: 32px 0 44px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(7, 14, 12, 0.2), rgba(4, 8, 7, 0.86));
}

.footer-grid {
  grid-template-columns: minmax(0, 1.6fr) repeat(3, minmax(0, 1fr));
  align-items: start;
}

.footer-card {
  padding: 24px;
}

.footer-title {
  margin-bottom: 14px;
  color: var(--text);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
}

.footer-brand-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.footer-brand-head .footer-title {
  margin-bottom: 0;
}

.footer-logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 14px;
  background: rgba(248, 250, 248, 0.98);
  border: 1px solid rgba(7, 17, 15, 0.08);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  padding: 6px;
}

.footer-brand-copy {
  color: var(--muted);
}

.footer-brand-copy strong {
  color: var(--text);
}

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

.link-list a {
  color: var(--muted);
  transition: color 0.2s ease;
}

.link-list a:hover {
  color: var(--text);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
  padding-top: 18px;
  color: var(--soft);
  font-size: 0.9rem;
}

.footer-bottom a {
  color: #d6e9de;
}

.divider {
  height: 1px;
  margin: 12px 0;
  background: linear-gradient(90deg, rgba(255, 138, 61, 0.5), transparent);
}

.page-intro {
  max-width: 70ch;
  margin-bottom: 18px;
}

.centered {
  text-align: center;
}

.centered .page-intro,
.centered p {
  margin-left: auto;
  margin-right: auto;
}

.home-page .page-hero {
  padding-top: 82px;
}

.home-page .hero-copy {
  background:
    linear-gradient(180deg, rgba(20, 43, 36, 0.92), rgba(8, 18, 15, 0.96));
}

.policy-page .page-hero::after {
  width: min(420px, 40vw);
  height: min(420px, 40vw);
  background: radial-gradient(circle, rgba(199, 255, 116, 0.16), transparent 70%);
}

.muted {
  color: var(--muted);
}

.hero-detail-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.hero-detail-card {
  padding: 16px 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.hero-detail-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
}

.hero-detail-card span {
  color: var(--soft);
  font-size: 0.88rem;
}

.detail-section {
  position: relative;
}

.detail-section::before {
  content: '';
  position: absolute;
  inset: 6% 0 auto;
  height: 280px;
  background: radial-gradient(circle at 50% 0%, rgba(199, 255, 116, 0.1), transparent 72%);
  pointer-events: none;
}

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

.detail-card {
  position: relative;
  padding: 26px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(17, 37, 32, 0.94), rgba(7, 16, 13, 0.97));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.detail-card::after {
  content: '';
  position: absolute;
  inset: auto auto -60px -30px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 138, 61, 0.18), transparent 72%);
  pointer-events: none;
}

.signal-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.signal-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #dce8e1;
  font-size: 0.82rem;
}

.match-lane {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 18px;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(255, 138, 61, 0.12), rgba(199, 255, 116, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.match-lane::before {
  content: '';
  position: absolute;
  left: 30px;
  right: 30px;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 138, 61, 0.24), rgba(199, 255, 116, 0.26));
  opacity: 0.7;
}

.lane-stop {
  position: relative;
  z-index: 1;
  padding: 24px 18px 18px 44px;
  border-radius: 24px;
  background: rgba(6, 12, 10, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.lane-stop::before {
  content: '';
  position: absolute;
  left: 18px;
  top: 26px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-alt));
  box-shadow: 0 0 0 5px rgba(255, 138, 61, 0.12);
}

.lane-stop.current {
  background: linear-gradient(180deg, rgba(255, 138, 61, 0.18), rgba(6, 12, 10, 0.52));
  border-color: rgba(255, 138, 61, 0.24);
  --surface-transform: translateY(-4px);
}

.lane-stop strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
}

.lane-stop span {
  color: var(--muted);
  font-size: 0.93rem;
}

@media (max-width: 1080px) {
  .header-inner,
  .section-head,
  .footer-bottom {
    align-items: start;
  }

  .header-inner {
    flex-direction: column;
  }

  .hero-grid,
  .split-grid,
  .contact-layout,
  .auth-layout,
  .builder-layout,
  .footer-grid,
  .grid-4,
  .grid-3,
  .faq-grid,
  .countdown-grid,
  .detail-grid,
  .match-lane,
  .team-slot-grid,
  .player-pool {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 840px) {
  .site-shell {
    width: min(calc(100% - 24px), var(--max-width));
  }

  .page-hero {
    padding: 56px 0 32px;
  }

  .hero-grid,
  .split-grid,
  .contact-layout,
  .auth-layout,
  .builder-layout,
  .grid-2,
  .grid-3,
  .grid-4,
  .policy-grid,
  .faq-grid,
  .footer-grid,
  .form-grid,
  .countdown-grid,
  .hero-detail-row,
  .detail-grid,
  .match-lane,
  .team-slot-grid,
  .player-pool {
    grid-template-columns: 1fr;
  }

  .timeline-step,
  .table-row {
    grid-template-columns: 1fr;
  }

  .timeline-index {
    width: 62px;
    height: 62px;
    border-radius: 18px;
  }

  .hero-copy,
  .hero-aside,
  .panel,
  .callout-panel,
  .policy-card,
  .footer-card,
  .section-card,
  .metric-card,
  .timeline-step,
  .faq-item,
  .cta-panel {
    padding: 22px;
  }

  .score-strip,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .match-lane::before {
    display: none;
  }

  .hero-image-badge {
    left: 14px;
    right: 14px;
    max-width: none;
  }

  .hero-image-badge.is-bottom {
    bottom: 14px;
    right: 14px;
  }

  .site-nav,
  .nav-actions,
  .hero-actions,
  .pill-row,
  .chip-row {
    width: 100%;
  }

  .button,
  .button-secondary {
    width: 100%;
  }
}

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

  *,
  *::before,
  *::after {
    transition: none !important;
  }

  .reveal-ready [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }

  .hero-image-badge,
  .hero-image-container::before {
    animation: none !important;
  }
}

/* Visual Showcase Section */
.visual-showcase-section {
  background: radial-gradient(circle at 50% 50%, rgba(255, 138, 61, 0.05), transparent 70%);
}

.showcase-grid {
  gap: 24px;
}

.showcase-card {
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, rgba(18, 39, 34, 0.9), rgba(8, 19, 16, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: var(--shadow);
}

.showcase-card:hover {
  --surface-transform: translateY(-8px);
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.45);
  border-color: rgba(255, 138, 61, 0.3);
}

.showcase-image {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.showcase-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.showcase-card:hover .showcase-image img {
  transform: scale(1.05);
}

.showcase-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 17, 15, 0.6) 0%, transparent 50%);
}

.showcase-content {
  padding: 24px;
  flex-grow: 1;
}

.showcase-content h3 {
  margin-bottom: 12px;
  color: var(--text);
}

.showcase-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}

@media (max-width: 1080px) {
  .showcase-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .showcase-grid {
    grid-template-columns: 1fr;
  }
}

/* Logo and Hero Image Styling */
.brand-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 14px;
  background: rgba(248, 250, 248, 0.98);
  border: 1px solid rgba(7, 17, 15, 0.08);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  padding: 6px;
}

.hero-image-container {
  --surface-transform: translate3d(0, 0, 0);
  position: relative;
  isolation: isolate;
  margin-top: 32px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transform: var(--surface-transform);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.hero-image-container::before {
  content: '';
  position: absolute;
  inset: auto auto -42px -18px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(199, 255, 116, 0.2), transparent 70%);
  z-index: 0;
  animation: floatGlow 10s ease-in-out infinite;
}

.hero-image-container::after {
  content: '';
  position: absolute;
  inset: 14px;
  border-radius: calc(var(--radius) - 10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
  z-index: 1;
}

.hero-image-container:hover {
  --surface-transform: scale(1.02);
}

.hero-image-main {
  width: 100%;
  min-height: 280px;
  height: auto;
  display: block;
  object-fit: cover;
  position: relative;
  z-index: 0;
}

.hero-image-caption {
  display: grid;
  gap: 8px;
  margin-top: 14px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-image-caption strong {
  color: var(--text);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
}

.hero-image-caption span {
  color: var(--muted);
  font-size: 0.94rem;
}

.hero-image-badge {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  border-radius: 999px;
  background: rgba(5, 10, 8, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
  color: #f2f8f4;
  font-size: 0.84rem;
  font-weight: 700;
  backdrop-filter: blur(16px);
  animation: floatBadge 6s ease-in-out infinite;
}

.hero-image-badge.is-top {
  top: 18px;
  left: 18px;
}

.hero-image-badge.is-bottom {
  right: 18px;
  bottom: 18px;
  max-width: 240px;
  border-radius: 22px;
  animation-delay: -2.4s;
}

@media (max-width: 840px) {
  .hero-image-container {
    margin-top: 24px;
  }
}

@keyframes floatBadge {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes floatGlow {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(12px, -12px, 0) scale(1.08);
  }
}

@keyframes fanFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -8px, 0);
  }
}
