:root {
  color-scheme: light;
  --bg: #0f1115;
  --bg-soft: #171a20;
  --bg-card: #1e2230;
  --text: #f7f3ed;
  --text-muted: #c6c2bc;
  --accent: #ff8a3d;
  --accent-2: #5ad2c6;
  --accent-3: #f2c94c;
  --border: rgba(255, 255, 255, 0.1);
  --shadow: 0 30px 80px rgba(10, 12, 16, 0.45);
  --radius: 24px;
  font-synthesis: none;
}

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

body {
  min-height: 100vh;
  font-family: "Space Grotesk", sans-serif;
  background: radial-gradient(circle at top, #1d2230 0%, #0d0f12 50%, #090a0c 100%);
  color: var(--text);
  line-height: 1.6;
}

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

button,
input,
select {
  font-family: inherit;
  color: inherit;
}

.container {
  width: min(1100px, 90vw);
  margin: 0 auto;
}

.ambient {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
}

.orb {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  filter: blur(0px);
  opacity: 0.35;
  mix-blend-mode: screen;
}

.orb-a {
  background: radial-gradient(circle, rgba(255, 138, 61, 0.9), transparent 60%);
  top: -120px;
  left: -80px;
}

.orb-b {
  background: radial-gradient(circle, rgba(90, 210, 198, 0.85), transparent 60%);
  bottom: -140px;
  right: -120px;
}

.orb-c {
  background: radial-gradient(circle, rgba(242, 201, 76, 0.9), transparent 60%);
  top: 35%;
  right: 35%;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 5;
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(8, 10, 13, 0.8);
}

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

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

.brand-logo {
  height: 46px;
  width: auto;
  display: block;
}



.brand-name {
  font-weight: 600;
  letter-spacing: 0.4px;
}

.brand-tag {
  font-size: 12px;
  color: var(--text-muted);
}

.nav {
  display: flex;
  gap: 20px;
  font-size: 14px;
  color: var(--text-muted);
}

.nav a {
  transition: color 0.2s ease;
}

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

.btn {
  border: none;
  padding: 14px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), #ffb36b);
  color: #0d0f12;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(255, 138, 61, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(255, 138, 61, 0.45);
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--text);
  box-shadow: none;
}

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text);
  padding: 10px 18px;
  font-size: 14px;
}

.hero {
  padding: 90px 0 70px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: flex-start;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 13px;
  letter-spacing: 0.3px;
  margin-bottom: 20px;
}

.hero h1 {
  font-family: "Fraunces", serif;
  font-weight: 700;
  font-size: clamp(2.6rem, 3.6vw, 4rem);
  line-height: 1.1;
  margin-bottom: 18px;
}

.lead {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 26px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}

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

.metric-value {
  font-weight: 600;
}

.metric-label {
  font-size: 13px;
  color: var(--text-muted);
}

.hero-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.card-label {
  color: var(--text-muted);
  font-size: 13px;
  margin-bottom: 6px;
}

.card-title {
  font-weight: 600;
}

.pulse {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent-2);
  position: relative;
}

.pulse::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(90, 210, 198, 0.6);
  animation: pulse 2s infinite;
}

.week {
  display: grid;
  gap: 14px;
}

.day {
  background: rgba(10, 12, 16, 0.55);
  padding: 12px 16px;
  border-radius: 16px;
}

.day p {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}

.day h3 {
  font-size: 16px;
  margin: 4px 0 2px;
}

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

.card-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.tag {
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  background: rgba(255, 255, 255, 0.08);
}

.demo {
  padding: 40px 0 80px;
}

.demo-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.demo-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 20px;
  transition: transform 0.25s ease;
}

.demo-card:hover {
  transform: translateY(-4px);
}

.eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: var(--accent-3);
  margin-bottom: 10px;
}

.demo-card h2,
.section-head h2 {
  font-size: clamp(1.6rem, 2.4vw, 2.4rem);
  margin-bottom: 10px;
  font-family: "Fraunces", serif;
  font-weight: 700;
}

.demo-card p {
  color: var(--text-muted);
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}

.how,
.sports,
.why,
.faq,
.cta {
  padding: 70px 0;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.step {
  padding: 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.step h3 {
  margin-bottom: 8px;
}

.step p {
  color: var(--text-muted);
}

.sports-grid,
.why-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.sport-card,
.why-card {
  padding: 20px;
  border-radius: 18px;
  background: rgba(20, 22, 30, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.sport-card {
  display: block;
}

.why-card {
  display: block;
}

.sport-card p,
.why-card p {
  color: var(--text-muted);
}


.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(20, 22, 30, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

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

.faq-item summary::after {
  content: "+";
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text);
  flex: 0 0 auto;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  color: var(--text-muted);
  margin-top: 10px;
}

.section-note {
  color: var(--text-muted);
  max-width: 720px;
}

.cta-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  grid-template-areas:
    "copy form"
    "visual form";
  align-items: start;
}

.cta-copy {
  grid-area: copy;
}

.cta-form {
  grid-area: form;
}

.cta-visual {
  grid-area: visual;
  width: min(480px, 100%);
  height: clamp(220px, 26vw, 320px);
  justify-self: start;
  position: relative;
  align-self: start;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(10, 12, 16, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.cta-visual picture {
  width: 100%;
  height: 100%;
  display: block;
}

.cta-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.cta-copy p {
  color: var(--text-muted);
  margin-bottom: 16px;
}

.cta-list {
  list-style: none;
  display: grid;
  gap: 10px;
}

.cta-list li {
  padding-left: 18px;
  position: relative;
}

.cta-list li::before {
  content: "▹";
  position: absolute;
  left: 0;
  color: var(--accent-2);
}

.cta-form {
  background: rgba(10, 12, 16, 0.75);
  border-radius: 24px;
  padding: 24px;
  display: grid;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.cta-form label {
  display: grid;
  gap: 6px;
  font-size: 13px;
  color: var(--text-muted);
}

.cta-form .checkbox {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 12px;
  line-height: 1.4;
  color: var(--text-muted);
}

.cta-form .checkbox input {
  margin-top: 3px;
  accent-color: var(--accent);
}

.legal-note {
  font-size: 12px;
  color: var(--text-muted);
}

.legal-note a,
.cookie-text a,
.cta-form .checkbox a,
.footer-grid a {
  color: var(--accent-2);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cta-form input,
.cta-form select {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 14px;
}

.cta-form input:focus,
.cta-form select:focus {
  outline: 2px solid rgba(255, 138, 61, 0.6);
  border-color: transparent;
}

.turnstile {
  margin-top: 6px;
}

.form-status {
  min-height: 20px;
  color: var(--accent-2);
  font-size: 13px;
}

.form-status.error {
  color: #ff6b6b;
}

.footer {
  padding: 40px 0 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  color: var(--text-muted);
}

.footer-title {
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.policy {
  padding: 90px 0 70px;
}

.policy h1 {
  font-family: "Fraunces", serif;
  font-weight: 700;
  font-size: clamp(2.2rem, 3vw, 3.2rem);
  margin-bottom: 16px;
}

.policy h2 {
  margin-top: 28px;
  margin-bottom: 10px;
  font-size: 1.4rem;
}

.policy p {
  color: var(--text-muted);
  margin-bottom: 12px;
}

.policy ul {
  list-style: disc;
  margin-left: 18px;
  color: var(--text-muted);
  display: grid;
  gap: 8px;
}

.policy .updated {
  font-size: 12px;
  color: var(--text-muted);
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translate(-50%, 140%);
  opacity: 0;
  pointer-events: none;
  z-index: 10;
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  width: min(900px, 92vw);
  padding: 18px 22px;
  border-radius: 18px;
  background: rgba(12, 14, 18, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.cookie-banner.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
  pointer-events: auto;
}

.cookie-title {
  font-weight: 600;
  margin-bottom: 4px;
}

.cookie-text {
  font-size: 13px;
  color: var(--text-muted);
  max-width: 560px;
}

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

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  70% {
    transform: scale(1.8);
    opacity: 0;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

@keyframes rise {
  0% {
    transform: translateY(18px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.hero-copy,
.hero-card,
.demo-card,
.step,
.sport-card,
.why-card,
.cta-copy,
.cta-form {
  animation: rise 0.8s ease both;
}

.demo-card:nth-child(2),
.step:nth-child(2),
.sport-card:nth-child(2),
.why-card:nth-child(2) {
  animation-delay: 0.05s;
}

.demo-card:nth-child(3),
.step:nth-child(3),
.sport-card:nth-child(3),
.why-card:nth-child(3) {
  animation-delay: 0.1s;
}

.sport-card:nth-child(4),
.why-card:nth-child(4) {
  animation-delay: 0.15s;
}

@media (max-width: 900px) {
  .nav {
    display: none;
  }

  .hero {
    padding-top: 70px;
  }

  .cta-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "visual"
      "form";
  }

  .cta-visual {
    justify-self: stretch;
    width: 100%;
    height: 280px;
  }
}

@media (max-width: 600px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .btn {
    width: 100%;
    text-align: center;
  }
  .hero-card {
    padding: 20px;
  }
}
