@font-face {
  font-family: "ImpactLocal";
  src: url("/app/assets/impact.ttf") format("truetype");
  font-display: swap;
}

:root {
  --blue-950: #032968;
  --blue-900: #063e98;
  --blue-700: #075bd7;
  --blue-500: #118cff;
  --orange: #ff7415;
  --orange-dark: #d94b00;
  --lime: #8de000;
  --lime-dark: #64a900;
  --yellow: #ffc928;
  --ink: #10254a;
  --muted: #5f7090;
  --cream: #f8fbff;
  --white: #fff;
  --shadow: 0 24px 60px rgba(3, 41, 104, 0.22);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 100;
  padding: 10px 16px;
  color: var(--white);
  background: var(--blue-950);
  border-radius: 8px;
}

.skip-link:focus { top: 12px; }

.site-header {
  width: min(1180px, calc(100% - 40px));
  height: 88px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 10;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue-950);
  font: 32px/1 "ImpactLocal", Impact, sans-serif;
  letter-spacing: 1px;
  text-decoration: none;
  text-shadow: 2px 2px 0 var(--yellow);
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: inline-block;
  position: relative;
  border: 7px solid var(--orange);
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 0 0 4px var(--blue-700);
}

.brand-mark::after {
  content: "";
  width: 8px;
  height: 8px;
  position: absolute;
  inset: 0;
  margin: auto;
  border-radius: 50%;
  background: var(--blue-700);
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
  font-weight: 800;
}

.site-header nav a { text-decoration: none; }
.site-header nav a:not(.nav-play):hover { color: var(--blue-700); }

.nav-play {
  padding: 11px 22px;
  color: var(--white);
  border: 2px solid var(--blue-950);
  border-radius: 999px;
  background: var(--blue-700);
  box-shadow: 0 5px 0 var(--blue-950);
  text-transform: uppercase;
  letter-spacing: .6px;
}

.nav-play:hover { transform: translateY(2px); box-shadow: 0 3px 0 var(--blue-950); }

.hero {
  width: min(1180px, calc(100% - 40px));
  min-height: 680px;
  margin: 0 auto;
  padding: 55px 0 80px;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  align-items: center;
  gap: 28px;
}

.eyebrow {
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.eyebrow span {
  width: 28px;
  height: 5px;
  border-radius: 999px;
  background: currentColor;
}

h1, h2, h3 { margin-top: 0; }

h1, h2 {
  font-family: "ImpactLocal", Impact, sans-serif;
  font-weight: 400;
  line-height: .94;
  letter-spacing: .3px;
  text-transform: uppercase;
}

h1 {
  margin-bottom: 24px;
  color: var(--blue-950);
  font-size: clamp(58px, 7vw, 96px);
}

h1 em, h2 em {
  color: var(--orange);
  font-style: normal;
  -webkit-text-stroke: 1px currentColor;
}

.hero-intro {
  max-width: 590px;
  margin: 0 0 30px;
  color: var(--muted);
  font-size: 18px;
}

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

.button {
  min-height: 54px;
  padding: 0 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 2px solid var(--blue-950);
  border-radius: 14px;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .4px;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .18s ease, box-shadow .18s ease;
}

.button:hover { transform: translateY(-3px); }

.button-primary {
  color: var(--white);
  background: var(--blue-700);
  box-shadow: 0 7px 0 var(--blue-950);
}

.button-secondary { background: var(--white); box-shadow: 0 7px 0 #cfdcf0; }

.quick-points {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  color: var(--blue-900);
  font-size: 13px;
  font-weight: 800;
}

.quick-points span::before { content: "✓"; margin-right: 7px; color: var(--lime-dark); }

.hero-visual {
  min-height: 615px;
  position: relative;
  isolation: isolate;
}

.burst {
  width: 490px;
  height: 490px;
  position: absolute;
  left: 52%;
  top: 50%;
  z-index: -2;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: repeating-conic-gradient(from 0deg, rgba(17,140,255,.15) 0deg 10deg, transparent 10deg 23deg), radial-gradient(circle, #e5f4ff 0 56%, transparent 57%);
}

.phone {
  margin: 0;
  padding: 11px;
  position: absolute;
  overflow: hidden;
  border: 3px solid #07101f;
  border-radius: 46px;
  background: linear-gradient(145deg, #28354b, #030711 34%, #111d31 72%, #02040a);
  box-shadow: var(--shadow),
              0 0 0 2px #7c8ca4,
              0 0 0 5px #151f2e,
              -5px 44px 55px rgba(3, 41, 104, .24);
}

.phone::before {
  content: "";
  width: 34%;
  height: 17px;
  position: absolute;
  left: 50%;
  top: 17px;
  z-index: 3;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #02040a;
  box-shadow: inset 0 -1px 0 #2b3442;
}

.phone::after {
  content: "";
  width: 32%;
  height: 4px;
  position: absolute;
  left: 50%;
  bottom: 15px;
  z-index: 3;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 1px 2px rgba(0, 0, 0, .5);
}

.phone img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 34px;
  object-fit: cover;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.14);
}

.phone-front {
  width: 292px;
  aspect-ratio: 9 / 16;
  right: 8%;
  top: 20px;
  z-index: 2;
  transform: rotate(4deg);
}

.phone-back {
  width: 244px;
  aspect-ratio: 531 / 858;
  left: 5%;
  top: 120px;
  z-index: 1;
  transform: rotate(-7deg);
  filter: saturate(.9);
}

.foam-dart {
  width: 76px;
  height: 24px;
  position: absolute;
  z-index: 3;
  border-radius: 12px 7px 7px 12px;
  background: linear-gradient(180deg, #1892ff, #0755c9);
  box-shadow: inset -13px 0 var(--orange), 0 7px 12px rgba(3,41,104,.18);
}

.dart-one { left: 5%; top: 60px; transform: rotate(27deg); }
.dart-two { right: -3%; bottom: 70px; transform: rotate(-18deg); background: linear-gradient(180deg, #9deb18, #6fc000); }

.stats {
  width: min(980px, calc(100% - 40px));
  margin: -5px auto 0;
  padding: 24px 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  color: var(--white);
  border: 3px solid var(--blue-950);
  border-radius: 24px;
  background: var(--blue-700);
  box-shadow: 0 9px 0 var(--blue-950);
}

.stats div { display: flex; align-items: center; justify-content: center; gap: 12px; }
.stats div + div { border-left: 1px solid rgba(255,255,255,.32); }
.stats strong { color: var(--yellow); font: 38px/1 "ImpactLocal", Impact, sans-serif; }
.stats span { max-width: 100px; font-size: 12px; font-weight: 800; line-height: 1.25; text-transform: uppercase; }

.section { padding: 120px max(20px, calc((100% - 1180px) / 2)); }

.section-heading { margin-bottom: 50px; }
.eyebrow-blue { color: var(--blue-700); }

h2 { margin-bottom: 20px; color: var(--blue-950); font-size: clamp(45px, 5.7vw, 74px); }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

.steps article {
  min-height: 320px;
  padding: 34px;
  position: relative;
  overflow: hidden;
  border: 2px solid #dbe7f5;
  border-radius: 28px;
  background: var(--white);
  box-shadow: 0 14px 0 #e2ebf6;
}

.steps article:nth-child(2) { transform: translateY(24px); }

.step-number {
  position: absolute;
  right: 22px;
  top: 15px;
  color: #e5edf8;
  font: 64px/1 "ImpactLocal", Impact, sans-serif;
}

.step-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 32px;
  display: grid;
  place-items: center;
  color: var(--white);
  border: 3px solid var(--blue-950);
  border-radius: 18px;
  background: var(--orange);
  box-shadow: 0 6px 0 var(--blue-950);
  font-size: 32px;
  font-weight: 900;
}

.steps article:nth-child(2) .step-icon { background: var(--blue-500); }
.steps article:nth-child(3) .step-icon { color: var(--blue-950); background: var(--lime); }

.steps h3, .audience-card h3 { margin-bottom: 12px; color: var(--blue-950); font-size: 24px; line-height: 1.15; }
.steps p { margin: 0; color: var(--muted); }

.everyone { background: #eaf6ff; }
.centered { max-width: 760px; margin-left: auto; margin-right: auto; text-align: center; }
.centered .eyebrow { justify-content: center; }
.centered > p:last-child { margin: 0 auto; max-width: 640px; color: var(--muted); font-size: 18px; }

.audience-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }

.audience-card {
  min-height: 410px;
  padding: 46px;
  position: relative;
  overflow: hidden;
  border: 4px solid var(--blue-950);
  border-radius: 32px;
  box-shadow: 0 12px 0 var(--blue-950);
}

.audience-card::after {
  content: "";
  width: 190px;
  height: 190px;
  position: absolute;
  right: -40px;
  bottom: -52px;
  border: 30px solid rgba(255,255,255,.18);
  border-radius: 50%;
  box-shadow: 0 0 0 24px rgba(255,255,255,.1);
}

.player-card { color: var(--white); background: linear-gradient(140deg, var(--blue-700), var(--blue-950)); }
.organizer-card { color: var(--blue-950); background: linear-gradient(140deg, var(--yellow), var(--orange)); }
.audience-card h3 { margin-top: 30px; color: inherit; font: 46px/1 "ImpactLocal", Impact, sans-serif; text-transform: uppercase; }

.card-label {
  padding: 8px 15px;
  border: 2px solid currentColor;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.audience-card ul { margin: 22px 0 32px; padding: 0; list-style: none; }
.audience-card li { margin: 10px 0; font-weight: 700; }
.audience-card li::before { content: "✓"; margin-right: 10px; color: var(--lime); }
.organizer-card li::before { color: var(--blue-700); }
.audience-card a { position: relative; z-index: 2; font-weight: 900; text-transform: uppercase; text-decoration-thickness: 2px; text-underline-offset: 6px; }

.final-cta {
  min-height: 520px;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-700), var(--blue-950));
}

.cta-content { position: relative; z-index: 2; text-align: center; }
.cta-content .eyebrow { justify-content: center; color: var(--yellow); }
.cta-content h2 { margin-bottom: 16px; color: var(--white); font-size: clamp(58px, 8vw, 104px); }
.cta-content p:not(.eyebrow) { margin: 0 0 28px; color: #d7e9ff; font-size: 18px; }

.button-lime { color: var(--blue-950); background: var(--lime); box-shadow: 0 7px 0 var(--lime-dark); }

.target-rings, .target-rings::before, .target-rings::after, .target-rings span {
  position: absolute;
  inset: 0;
  margin: auto;
  border-radius: 50%;
}

.target-rings { width: 620px; height: 620px; border: 75px solid rgba(255,255,255,.035); }
.target-rings::before { content: ""; width: 390px; height: 390px; border: 58px solid rgba(255,117,21,.13); }
.target-rings::after { content: ""; width: 170px; height: 170px; background: rgba(255,255,255,.05); }

footer {
  min-height: 130px;
  padding: 28px max(20px, calc((100% - 1180px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
  background: var(--white);
  font-size: 13px;
}

footer > a:last-child { color: var(--blue-700); font-weight: 900; text-transform: uppercase; }

@media (max-width: 900px) {
  .site-header nav > a:not(.nav-play) { display: none; }
  .hero { min-height: auto; padding-top: 35px; grid-template-columns: 1fr; text-align: center; }
  .hero-copy { position: relative; z-index: 2; }
  .eyebrow, .hero-actions, .quick-points { justify-content: center; }
  .hero-intro { margin-left: auto; margin-right: auto; }
  .hero-visual { width: min(620px, 100%); margin: -25px auto 0; }
  .steps { grid-template-columns: 1fr; }
  .steps article { min-height: 260px; }
  .steps article:nth-child(2) { transform: none; }
  .audience-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .site-header { width: min(100% - 28px, 1180px); height: 76px; }
  .brand { font-size: 27px; }
  .brand-mark { width: 30px; height: 30px; border-width: 6px; }
  .nav-play { padding: 9px 15px; font-size: 11px; }
  .hero { width: min(100% - 28px, 1180px); padding-top: 28px; }
  h1 { font-size: clamp(50px, 16vw, 72px); }
  .hero-intro { font-size: 16px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .quick-points { gap: 8px 13px; }
  .hero-visual { min-height: 480px; }
  .burst { width: 390px; height: 390px; }
  .phone-front { width: 220px; right: 2%; }
  .phone-back { width: 182px; left: 1%; top: 100px; }
  .dart-two { right: -7%; bottom: 45px; }
  .stats { padding: 18px 12px; gap: 10px; }
  .stats div { flex-direction: column; gap: 2px; text-align: center; }
  .stats div + div { border-left: 0; }
  .stats strong { font-size: 31px; }
  .stats span { font-size: 9px; }
  .section { padding-top: 85px; padding-bottom: 85px; }
  .steps article, .audience-card { padding: 30px; }
  .audience-card h3 { font-size: 38px; }
  .final-cta { min-height: 480px; }
  footer { padding: 36px 20px; flex-direction: column; text-align: center; }
}

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