:root {
  --bg: #07111f;
  --bg-soft: #0d1930;
  --panel: rgba(13, 25, 48, 0.78);
  --panel-strong: #122241;
  --panel-lite: rgba(255, 255, 255, 0.06);
  --line: rgba(255, 255, 255, 0.1);
  --text: #f3f6ff;
  --muted: #9cb0d6;
  --lime: #d4b06a;
  --gold: #efd49f;
  --cyan: #94aec6;
  --rose: #be8f6c;
  --shadow: 0 20px 60px rgba(2, 10, 25, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Outfit", sans-serif;
  background:
    radial-gradient(circle at 14% 18%, rgba(148, 174, 198, 0.16), transparent 26%),
    radial-gradient(circle at 86% 18%, rgba(239, 212, 159, 0.14), transparent 24%),
    radial-gradient(circle at 50% 80%, rgba(212, 176, 106, 0.08), transparent 28%),
    linear-gradient(180deg, #08111f 0%, #091525 52%, #0d1830 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

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

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

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

.backdrop,
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.backdrop {
  background:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(circle at center, black 36%, transparent 90%);
  opacity: 0.25;
}

.grain {
  opacity: 0.18;
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.28) 0.7px, transparent 0.7px);
  background-size: 7px 7px;
  mix-blend-mode: soft-light;
}

.container {
  width: min(1180px, calc(100% - 28px));
  margin: 0 auto;
}

.section {
  padding: 42px 0;
}

.section-contrast {
  position: relative;
}

.section-contrast::before {
  content: "";
  position: absolute;
  inset: 28px 14px;
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.06);
  z-index: -1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(20px);
  background: rgba(7, 17, 31, 0.68);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 80px;
}

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

.brand img {
  width: 46px;
  height: 46px;
  filter: drop-shadow(0 12px 20px rgba(239, 212, 159, 0.18));
}

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

.brand strong {
  font-family: "Sora", sans-serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand em {
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.main-nav {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.main-nav a,
.header-cta,
.btn,
.route-chip,
.footer-link {
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}

.main-nav a {
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 18px;
  font-weight: 700;
}

.header-cta,
.btn-primary {
  color: #07111f;
  background: linear-gradient(135deg, #e8c98a, #f5dfb6);
  box-shadow: 0 14px 28px rgba(239, 212, 159, 0.18);
}

.header-cta:hover,
.btn-primary:hover,
.route-chip:hover,
.footer-link:hover {
  transform: translateY(-2px);
}

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

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.09);
}

.btn-block {
  width: 100%;
}

.hero {
  padding-top: 34px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 26px;
  align-items: center;
}

.hero-copy,
.hero-stage,
.metric-card,
.reason-card,
.route-card,
.note-card,
.sponsor-card,
.radar-card,
.signal-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.hero-copy {
  position: relative;
  padding: 38px;
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(11, 22, 42, 0.84);
  overflow: hidden;
}

.hero-copy::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  top: -110px;
  right: -60px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(239, 212, 159, 0.22), transparent 68%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--lime);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.hero h1,
.section-head h2,
.route-card h2,
.note-card h3 {
  font-family: "Sora", sans-serif;
  letter-spacing: -0.04em;
}

.hero h1 {
  margin: 0;
  max-width: 11ch;
  font-size: clamp(2.6rem, 4vw, 4.5rem);
  line-height: 0.96;
}

.hero-text,
.section-copy,
.route-copy,
.note-card p,
.reason-card p,
.footer-copy {
  color: var(--muted);
}

.hero-text {
  max-width: 56ch;
  margin: 20px 0 26px;
  font-size: 17px;
  line-height: 1.65;
}

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

.hero-points {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.hero-points li {
  position: relative;
  padding-left: 20px;
  color: #d8e5ff;
}

.hero-points li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(239, 212, 159, 0.14);
}

.hero-stage {
  position: relative;
  min-height: 100%;
  padding: 18px;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(10, 22, 42, 0.78);
  overflow: hidden;
}

.stage-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.15);
  animation: spin 20s linear infinite;
}

.orbit-a {
  width: 300px;
  height: 300px;
  top: -80px;
  right: -80px;
}

.orbit-b {
  width: 210px;
  height: 210px;
  bottom: -74px;
  left: -56px;
  animation-direction: reverse;
  animation-duration: 24s;
}

.radar-card {
  position: relative;
  z-index: 2;
  margin-bottom: 18px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(6, 16, 31, 0.7);
}

.panel-topline,
.signal-kicker,
.note-kicker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.panel-topline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #d6e3ff;
  margin-bottom: 14px;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 8px rgba(239, 212, 159, 0.14);
  animation: pulse 2s ease infinite;
}

.radar-grid {
  display: grid;
  gap: 12px;
}

.radar-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.radar-item strong,
.sponsor-name,
.reason-card h3,
.route-chip strong,
.footer-brand {
  font-family: "Sora", sans-serif;
}

.radar-item strong {
  display: block;
  font-size: 16px;
}

.radar-item span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 13px;
}

.radar-tag {
  white-space: nowrap;
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #07111f;
  background: linear-gradient(135deg, var(--gold), #f8e8c8);
}

.signal-card {
  position: relative;
  z-index: 2;
  padding: 22px;
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(148, 174, 198, 0.18), transparent 32%),
    rgba(255, 255, 255, 0.05);
}

.signal-kicker,
.note-kicker {
  margin: 0 0 10px;
  color: var(--cyan);
}

.signal-card h2 {
  margin: 0 0 18px;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.4rem, 2vw, 2rem);
  line-height: 1.1;
}

.signal-bars {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: end;
  gap: 10px;
  min-height: 82px;
}

.signal-bars span {
  border-radius: 999px 999px 18px 18px;
  background: linear-gradient(180deg, #b7cbdd, #ecd39b);
  animation: signal 1.8s ease-in-out infinite;
}

.signal-bars span:nth-child(1) {
  height: 42px;
}

.signal-bars span:nth-child(2) {
  height: 72px;
  animation-delay: 0.15s;
}

.signal-bars span:nth-child(3) {
  height: 54px;
  animation-delay: 0.3s;
}

.signal-bars span:nth-child(4) {
  height: 80px;
  animation-delay: 0.45s;
}

.signal-bars span:nth-child(5) {
  height: 62px;
  animation-delay: 0.6s;
}

.ticker-section {
  padding: 8px 0 0;
}

.ticker-shell {
  overflow: hidden;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.ticker-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  animation: ticker 24s linear infinite;
}

.ticker-shell:hover .ticker-track {
  animation-play-state: paused;
}

.ticker-chip,
.route-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
}

.ticker-chip {
  background: rgba(255, 255, 255, 0.06);
  color: #dbe6ff;
  white-space: nowrap;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.ticker-chip::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(239, 212, 159, 0.12);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
  gap: 18px;
  align-items: end;
  margin-bottom: 24px;
}

.section-head-tight {
  grid-template-columns: 1fr;
}

.section-head h2,
.route-card h2 {
  margin: 0;
  font-size: clamp(1.9rem, 2.8vw, 3rem);
  line-height: 1.03;
}

.section-copy,
.route-copy {
  margin: 0;
  line-height: 1.7;
}

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

.metric-card {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.05);
}

.metric-card strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
}

.metric-card span {
  color: var(--muted);
}

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

.sponsor-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 254px;
  padding: 18px;
  border-radius: 28px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
    rgba(12, 24, 44, 0.9);
}

.sponsor-card::before {
  content: "";
  position: absolute;
  inset: auto -30px -70px auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent) 30%, transparent), transparent 68%);
  opacity: 0.95;
}

.sponsor-card:hover {
  transform: translateY(-5px);
  border-color: color-mix(in srgb, var(--accent) 50%, white 10%);
}

.sponsor-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.sponsor-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.sponsor-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.sponsor-go {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  font-size: 22px;
}

.sponsor-logo {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 104px;
  padding: 14px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01)),
    rgba(6, 15, 28, 0.72);
}

.sponsor-logo img {
  width: 100%;
  max-width: 240px;
  height: 78px;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.32));
}

.sponsor-meta {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
}

.sponsor-name {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.sponsor-copyline {
  color: var(--muted);
  line-height: 1.55;
}

.sponsor-cta {
  position: relative;
  z-index: 1;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #ebf3ff;
  font-weight: 700;
}

.sponsor-cta::after {
  content: ">";
  color: var(--accent);
}

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

.reason-card,
.route-card,
.note-card {
  padding: 24px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(12, 24, 44, 0.8);
}

.reason-index {
  display: inline-block;
  margin-bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #07111f;
  background: linear-gradient(135deg, #e0c28a, #f5e7cd);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.reason-card h3,
.note-card h3 {
  margin: 0 0 12px;
  font-size: 24px;
}

.reason-card p {
  margin: 0;
  line-height: 1.7;
}

.route-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 16px;
}

.route-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.route-chip {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
}

.route-chip:hover {
  border-color: color-mix(in srgb, var(--accent) 55%, white 5%);
  background: rgba(255, 255, 255, 0.08);
}

.route-chip strong {
  font-size: 14px;
}

.route-chip span {
  color: var(--muted);
  font-size: 13px;
}

.note-card {
  position: relative;
  overflow: hidden;
}

.note-card::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -60px;
  bottom: -60px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224, 194, 138, 0.18), transparent 70%);
}

.site-footer {
  padding: 18px 0 34px;
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  margin: 0 0 6px;
  font-size: 20px;
  font-weight: 800;
}

.footer-copy {
  margin: 0;
}

.footer-link {
  padding: 12px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
}

.reveal {
  animation: fade-up 0.9s ease both;
}

.reason-card:nth-child(2) {
  animation-delay: 0.12s;
}

.reason-card:nth-child(3) {
  animation-delay: 0.24s;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

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

@keyframes ticker {
  from {
    transform: translateX(0);
  }

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

@keyframes pulse {
  50% {
    box-shadow: 0 0 0 12px rgba(168, 255, 68, 0.06);
  }
}

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

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1080px) {
  .hero-grid,
  .route-layout,
  .section-head {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 840px) {
  .header-row {
    min-height: auto;
    padding: 14px 0;
    flex-wrap: wrap;
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: center;
    border-radius: 20px;
  }

  .hero-copy,
  .hero-stage,
  .metric-card,
  .reason-card,
  .route-card,
  .note-card,
  .sponsor-card,
  .footer-row {
    border-radius: 24px;
  }

  .metric-row,
  .sponsor-grid {
    grid-template-columns: 1fr;
  }

  .sponsor-card {
    min-height: 230px;
  }

  .footer-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100%, calc(100% - 20px));
  }

  .site-header {
    position: static;
  }

  .brand strong {
    font-size: 16px;
  }

  .brand em {
    font-size: 10px;
  }

  .main-nav {
    gap: 6px;
    padding: 4px;
  }

  .main-nav a {
    padding: 9px 10px;
    font-size: 12px;
  }

  .header-cta {
    width: 100%;
  }

  .hero-copy,
  .hero-stage {
    padding: 22px;
  }

  .hero h1 {
    max-width: none;
    font-size: 2.35rem;
  }

  .hero-text {
    font-size: 15px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn,
  .btn-block {
    width: 100%;
  }

  .signal-card h2,
  .section-head h2,
  .route-card h2 {
    font-size: 1.75rem;
  }

  .sponsor-logo {
    min-height: 92px;
  }

  .sponsor-logo img {
    height: 60px;
  }

  .sponsor-name {
    font-size: 19px;
  }

  .route-chips {
    gap: 10px;
  }

  .route-chip {
    width: 100%;
    justify-content: space-between;
  }
}
