:root {
  --bg: #050608;
  --panel: #0d1014;
  --panel-soft: #15191f;
  --line: rgba(255, 255, 255, .13);
  --muted: #a6abb4;
  --text: #f4f5f7;
  --red: #f02125;
  --red-dark: #8f0c13;
  --green: #22c55e;
  --amber: #f4b942;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 8%, rgba(237, 28, 36, .18), transparent 34rem),
    radial-gradient(circle at 86% 30%, rgba(23, 174, 88, .08), transparent 28rem),
    linear-gradient(180deg, #030405 0%, #08090c 45%, #030405 100%);
  color: var(--text);
  font-family: Inter, Arial, sans-serif;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(100deg, transparent 0 36%, rgba(240, 33, 37, .08) 38%, transparent 42%),
    linear-gradient(100deg, transparent 0 67%, rgba(255, 255, 255, .045) 69%, transparent 72%);
  background-size: 150vw 100%, 180vw 100%;
  animation: ambientSweep 9s linear infinite;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 70px;
  padding: 0 30px;
  background: rgba(3, 4, 6, .86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-grid;
  line-height: .78;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-weight: 900;
  font-size: 28px;
  text-transform: uppercase;
  transform: skew(-10deg);
  letter-spacing: 1px;
}

.brand-top {
  color: #fff;
}

.brand-bottom {
  color: var(--red);
}

.brand {
  transition: filter .25s ease, transform .25s ease;
}

.brand:hover {
  filter: drop-shadow(0 0 14px rgba(240, 33, 37, .55));
  transform: skew(-10deg) translateY(-1px);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 27px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.nav-links a {
  position: relative;
  color: #d8dbe0;
  opacity: .86;
  transition: color .22s ease, opacity .22s ease;
}

.nav-links a.active,
.nav-links a:hover {
  color: var(--red);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
  box-shadow: 0 0 12px rgba(240, 33, 37, .7);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.header-cta,
.btn,
button {
  border: 0;
  background: linear-gradient(135deg, var(--red), #a80d15);
  color: #fff;
  font: 900 13px Inter, sans-serif;
  text-transform: uppercase;
  padding: 14px 24px;
  cursor: pointer;
  box-shadow: 0 0 24px rgba(240, 33, 37, .28);
  transition: transform .22s ease, box-shadow .22s ease, filter .22s ease;
}

.header-cta:hover,
.btn:hover,
button:hover {
  transform: translateY(-2px);
  filter: brightness(1.12);
  box-shadow: 0 0 34px rgba(240, 33, 37, .48);
}

.hero {
  position: relative;
  min-height: 560px;
  display: grid;
  grid-template-columns: 1fr minmax(280px, 360px);
  align-items: center;
  gap: 26px;
  padding: 62px 34px 44px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-art {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 4, 6, .34) 0%, rgba(3, 4, 6, .24) 46%, rgba(3, 4, 6, .82) 74%, rgba(3, 4, 6, .96) 100%),
    linear-gradient(180deg, rgba(3, 4, 6, .1), #040507 100%),
    url("assets/race-hero.png") center / cover no-repeat;
  opacity: .96;
  transform: scale(1.04);
  animation: heroCruise 12s ease-in-out infinite alternate;
}

.speed-lines {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: .72;
  background:
    linear-gradient(105deg, transparent 0 48%, rgba(240, 33, 37, .78) 49%, rgba(240, 33, 37, .08) 51%, transparent 54%),
    linear-gradient(105deg, transparent 0 58%, rgba(255, 255, 255, .2) 59%, transparent 61%),
    linear-gradient(105deg, transparent 0 74%, rgba(240, 33, 37, .46) 75%, transparent 78%);
  background-size: 120% 100%;
  mix-blend-mode: screen;
  animation: speedPass 2.8s linear infinite;
}

.hero::after,
.launch-cta::after,
.footer::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(45deg, rgba(255,255,255,.035) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(255,255,255,.035) 25%, transparent 25%);
  background-size: 54px 54px;
  mask-image: linear-gradient(90deg, transparent, black 68%, transparent);
  opacity: .35;
}

.hero-copy,
.launch-panel {
  position: relative;
  z-index: 1;
}

.hero-copy {
  max-width: 620px;
  margin-left: min(23vw, 420px);
  animation: heroCopyIn .8s cubic-bezier(.16, 1, .3, 1) .15s both;
}

.eyebrow,
.section-heading p,
.hero-text {
  color: #d4d7dc;
  font-size: 14px;
  line-height: 1.6;
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
}

h1,
h2 {
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1 {
  max-width: 560px;
  font-size: clamp(50px, 6.4vw, 84px);
  line-height: .9;
}

h1 span,
h2 span,
.pit-grid strong {
  color: var(--red);
  text-shadow: 0 0 20px rgba(240, 33, 37, .28);
}

.hero-text {
  max-width: 520px;
  margin: 22px 0 24px;
}

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

.btn.ghost {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .32);
  box-shadow: none;
}

.launch-panel {
  align-self: start;
  margin-top: 34px;
  padding: 22px;
  background: rgba(6, 8, 11, .76);
  border: 1px solid rgba(255, 255, 255, .14);
  box-shadow: 0 24px 80px rgba(0, 0, 0, .58);
  animation: panelIn .85s cubic-bezier(.16, 1, .3, 1) .35s both, panelFloat 4.6s ease-in-out 1.2s infinite;
}

.panel-label {
  margin: 0 0 16px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.score-ring {
  width: 190px;
  height: 190px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(var(--green) 0 0deg, rgba(255,255,255,.1) 0deg 360deg);
  animation: scoreLoad 1.5s ease-out .75s forwards, scorePulse 2.6s ease-in-out 2.2s infinite;
}

.score-inner {
  width: 148px;
  height: 148px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 4px;
  border-radius: 50%;
  background: #090b0e;
  border: 1px solid rgba(255,255,255,.13);
}

.score-inner strong {
  font-size: 46px;
  font-family: "Barlow Condensed", Impact, sans-serif;
}

.score-inner span,
.status-list dt,
.status-list dd {
  font-size: 11px;
  text-transform: uppercase;
}

.status-list {
  margin: 0;
}

.status-list div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.status-list dt {
  color: var(--muted);
  font-weight: 800;
}

.status-list dd {
  margin: 0;
  color: var(--green);
  font-weight: 900;
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  padding: 0 34px;
  background: #030405;
  border-bottom: 1px solid var(--line);
}

.stat-strip div {
  padding: 22px 18px;
  display: grid;
  justify-items: center;
  text-align: center;
  background: rgba(255,255,255,.025);
  transition: background .25s ease, transform .25s ease;
}

.stat-strip div:hover {
  background: rgba(240, 33, 37, .09);
  transform: translateY(-3px);
}

.stat-strip span {
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 34px;
  font-weight: 900;
}

.stat-strip p {
  margin: 4px 0 0;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  color: #d6d9de;
}

.section {
  position: relative;
  padding: 44px 34px;
  border-bottom: 1px solid var(--line);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .72s ease var(--delay, 0ms), transform .72s cubic-bezier(.16, 1, .3, 1) var(--delay, 0ms), border-color .25s ease, box-shadow .25s ease;
}

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

.section-heading {
  max-width: 760px;
  margin-bottom: 24px;
}

.section-heading.centered {
  text-align: center;
  margin-inline: auto;
}

h2 {
  font-size: clamp(36px, 5vw, 58px);
  line-height: .94;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.audience-card,
.feature-grid article,
.pit-grid article,
.dash-tile,
.dash-wide,
.side-menu div {
  background: linear-gradient(180deg, rgba(23, 27, 34, .88), rgba(8, 10, 14, .88));
  border: 1px solid rgba(255,255,255,.13);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}

.audience-card {
  min-height: 255px;
  padding: 12px;
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
  overflow: hidden;
}

.audience-card:hover,
.feature-grid article:hover,
.pit-grid article:hover,
.side-menu div:hover {
  transform: translateY(-7px);
  border-color: rgba(240, 33, 37, .48);
  box-shadow: 0 24px 50px rgba(0, 0, 0, .4), 0 0 28px rgba(240, 33, 37, .13), inset 0 1px 0 rgba(255,255,255,.12);
}

.mini-visual {
  height: 105px;
  margin-bottom: 15px;
  border: 1px solid rgba(255,255,255,.12);
  background:
    linear-gradient(145deg, rgba(240,33,37,.4), transparent 48%),
    url("assets/race-hero.png") center / cover;
  filter: saturate(.92);
  transition: transform .45s ease, filter .45s ease;
}

.audience-card:hover .mini-visual {
  transform: scale(1.06);
  filter: saturate(1.2) contrast(1.08);
}

.mini-visual.engine { background-position: 24% 52%; }
.mini-visual.globe { background-position: 58% 38%; filter: hue-rotate(130deg) saturate(.8); }
.mini-visual.boardroom { background-position: 72% 44%; filter: grayscale(.8); }
.mini-visual.handshake { background-position: 80% 62%; filter: sepia(.25) saturate(.9); }
.mini-visual.track { background-position: 94% 54%; }

.audience-card h3,
.pit-grid h3,
.feature-grid h3 {
  font-size: 15px;
  line-height: 1.15;
}

.audience-card p,
.pit-grid p,
.feature-grid p,
.side-menu small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.stall {
  display: grid;
  grid-template-columns: 310px 1fr;
  gap: 36px;
  align-items: center;
  background:
    linear-gradient(90deg, #07080b 0%, rgba(7, 8, 11, .8) 52%, #07080b 100%),
    url("assets/race-hero.png") center 70% / cover;
}

.failure-track,
.green-road {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 15px;
}

.failure-track div,
.green-road div {
  position: relative;
  min-height: 82px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(6, 8, 12, .72);
  text-align: center;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 900;
  overflow: hidden;
  transition: transform .24s ease, border-color .24s ease, color .24s ease;
}

.failure-track div::after,
.green-road div::after,
.feature-grid article::after,
.pit-grid article::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 0 40%, rgba(255,255,255,.16) 50%, transparent 60%);
  transform: translateX(-120%);
  transition: transform .65s ease;
}

.failure-track div:hover::after,
.green-road div:hover::after,
.feature-grid article:hover::after,
.pit-grid article:hover::after {
  transform: translateX(120%);
}

.failure-track div:hover {
  transform: translateY(-4px);
  border-color: rgba(240, 33, 37, .42);
}

.failure-track i {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.28);
  color: #fff;
  font-style: normal;
}

.failure-track div:last-child i {
  border-color: var(--red);
  color: var(--red);
}

.ignite {
  background: linear-gradient(180deg, #050608, #080d0b);
}

.green-road {
  grid-template-columns: repeat(8, 1fr);
}

.green-road div {
  color: #dfffea;
  border-color: rgba(34, 197, 94, .25);
  box-shadow: inset 0 0 26px rgba(34, 197, 94, .08);
  animation: greenPulse 2.8s ease-in-out infinite;
}

.green-road div:nth-child(2) { animation-delay: .14s; }
.green-road div:nth-child(3) { animation-delay: .28s; }
.green-road div:nth-child(4) { animation-delay: .42s; }
.green-road div:nth-child(5) { animation-delay: .56s; }
.green-road div:nth-child(6) { animation-delay: .7s; }
.green-road div:nth-child(7) { animation-delay: .84s; }
.green-road div:nth-child(8) { animation-delay: .98s; }

.green-road div:hover {
  transform: translateY(-4px);
  border-color: rgba(34, 197, 94, .55);
  color: #fff;
}

.pit-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 13px;
}

.pit-grid article {
  min-height: 170px;
  padding: 15px;
  background:
    linear-gradient(180deg, rgba(9, 10, 14, .18), #090a0e 56%),
    url("assets/race-hero.png") center / cover;
  position: relative;
  overflow: hidden;
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}

.pit-grid b {
  display: inline-grid;
  padding: 7px 10px;
  margin-bottom: 42px;
  background: var(--red);
  color: #fff;
  font: 800 11px Inter, sans-serif;
  text-transform: uppercase;
}

.pit-grid strong {
  display: block;
  color: #fff;
  font-size: 26px;
  line-height: .85;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.feature-grid article {
  min-height: 105px;
  padding: 18px;
  position: relative;
  overflow: hidden;
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}

.feature-grid span {
  width: 28px;
  height: 28px;
  display: block;
  margin-bottom: 12px;
  border: 2px solid var(--red);
  box-shadow: 0 0 18px rgba(240,33,37,.28);
  transform: rotate(0deg);
  transition: transform .35s ease, box-shadow .35s ease;
}

.feature-grid article:hover span {
  transform: rotate(45deg) scale(1.08);
  box-shadow: 0 0 26px rgba(240,33,37,.5);
}

.launch-cta {
  position: relative;
  min-height: 230px;
  display: flex;
  align-items: center;
  padding: 36px 34px 36px 24%;
  background:
    linear-gradient(90deg, rgba(5,6,8,.94) 0%, rgba(5,6,8,.65) 42%, rgba(5,6,8,.82) 100%),
    url("assets/race-hero.png") center 58% / cover;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.launch-cta::before {
  content: "";
  position: absolute;
  inset: auto -20% 0 -20%;
  height: 62px;
  background: linear-gradient(90deg, transparent, rgba(240, 33, 37, .85), rgba(255,255,255,.18), transparent);
  filter: blur(7px);
  transform: translateX(-40%);
  animation: ctaTrail 3.4s linear infinite;
}

.launch-cta div {
  position: relative;
  z-index: 1;
}

.launch-cta h2 {
  font-size: clamp(42px, 6vw, 72px);
}

.launch-cta p {
  color: #d5d8dd;
}

.cockpit {
  background:
    radial-gradient(circle at 50% 42%, rgba(240,33,37,.13), transparent 34rem),
    #050608;
}

.cockpit-wrap {
  display: grid;
  grid-template-columns: 230px minmax(420px, 1fr) 230px;
  gap: 24px;
  align-items: center;
}

.side-menu {
  display: grid;
  gap: 13px;
}

.side-menu div {
  min-height: 70px;
  padding: 15px;
  display: grid;
  align-content: center;
  font-size: 13px;
  font-weight: 800;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.side-menu small {
  display: block;
  margin-top: 4px;
  font-weight: 500;
}

.laptop {
  min-height: 525px;
  padding: 20px;
  border: 3px solid rgba(255,255,255,.35);
  border-bottom-width: 18px;
  border-radius: 18px 18px 22px 22px;
  background: #0a0d11;
  box-shadow: 0 40px 80px rgba(0,0,0,.58), inset 0 0 0 1px rgba(255,255,255,.08);
  transition: transform .35s ease, box-shadow .35s ease;
}

.laptop:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 52px 95px rgba(0,0,0,.62), 0 0 36px rgba(240,33,37,.12), inset 0 0 0 1px rgba(255,255,255,.12);
}

.app-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  margin-bottom: 16px;
  background: #11161d;
  border: 1px solid rgba(255,255,255,.1);
}

.app-top span {
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.dash-tile,
.dash-wide {
  padding: 16px;
}

.dash-tile strong {
  display: block;
  color: var(--green);
  font: 900 32px "Barlow Condensed", Impact, sans-serif;
  text-shadow: 0 0 18px rgba(34,197,94,.25);
}

.dash-tile span {
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
}

.dash-wide {
  grid-column: span 2;
  min-height: 185px;
}

.dash-wide h3 {
  margin-bottom: 14px;
  font-size: 14px;
  text-transform: uppercase;
}

.big-ring {
  width: 126px;
  height: 126px;
  margin: auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(var(--green) 0 240deg, #202833 240deg);
  color: #fff;
  font-weight: 900;
  animation: fundingSpin 2.2s ease-out both, scorePulse 2.8s ease-in-out 2.2s infinite;
}

.line-chart {
  height: 120px;
  background:
    linear-gradient(135deg, transparent 8%, rgba(34,197,94,.8) 8% 11%, transparent 11% 27%, rgba(34,197,94,.8) 27% 30%, transparent 30% 46%, rgba(34,197,94,.8) 46% 49%, transparent 49% 65%, rgba(34,197,94,.8) 65% 68%, transparent 68%),
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 100% 100%, 40px 40px, 40px 40px;
  animation: chartDrive 2.8s ease-in-out infinite alternate;
}

.footer {
  position: relative;
  display: grid;
  grid-template-columns: 1.5fr 1.2fr .8fr .8fr;
  gap: 34px;
  padding: 52px 34px 34px;
  background:
    linear-gradient(180deg, rgba(5,6,8,.86), #040506),
    url("assets/race-hero.png") center 82% / cover;
}

.footer > * {
  position: relative;
  z-index: 1;
}

.newsletter h2 {
  font-size: 40px;
}

.newsletter p,
.footer-brand p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

form {
  display: flex;
  max-width: 360px;
  margin-top: 22px;
  border: 1px solid rgba(255,255,255,.16);
}

input {
  min-width: 0;
  flex: 1;
  padding: 15px;
  border: 0;
  background: rgba(0,0,0,.48);
  color: #fff;
}

form button {
  padding-inline: 18px;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-links h3 {
  font-size: 13px;
  text-transform: uppercase;
}

.footer-links a {
  color: var(--muted);
  font-size: 13px;
  transition: color .2s ease, transform .2s ease;
}

.footer-links a:hover {
  color: #fff;
  transform: translateX(4px);
}

@keyframes ambientSweep {
  from { background-position: -120vw 0, 160vw 0; }
  to { background-position: 160vw 0, -120vw 0; }
}

@keyframes heroCruise {
  from { transform: scale(1.04) translateX(-10px); filter: saturate(1) brightness(.94); }
  to { transform: scale(1.08) translateX(12px); filter: saturate(1.12) brightness(1.04); }
}

@keyframes speedPass {
  from { transform: translateX(-38%) skewX(-10deg); opacity: .18; }
  35% { opacity: .78; }
  to { transform: translateX(38%) skewX(-10deg); opacity: .18; }
}

@keyframes heroCopyIn {
  from { opacity: 0; transform: translateX(-35px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes panelIn {
  from { opacity: 0; transform: translateX(35px) scale(.96); }
  to { opacity: 1; transform: translateX(0) scale(1); }
}

@keyframes panelFloat {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -8px; }
}

@keyframes scoreLoad {
  to { background: conic-gradient(var(--green) 0 259deg, rgba(255,255,255,.1) 259deg 360deg); }
}

@keyframes scorePulse {
  0%, 100% { box-shadow: 0 0 0 rgba(34,197,94,0); }
  50% { box-shadow: 0 0 28px rgba(34,197,94,.28); }
}

@keyframes greenPulse {
  0%, 100% { box-shadow: inset 0 0 26px rgba(34, 197, 94, .08); }
  50% { box-shadow: inset 0 0 34px rgba(34, 197, 94, .2), 0 0 18px rgba(34, 197, 94, .12); }
}

@keyframes ctaTrail {
  from { transform: translateX(-58%); }
  to { transform: translateX(58%); }
}

@keyframes fundingSpin {
  from { background: conic-gradient(var(--green) 0 0deg, #202833 0deg); }
  to { background: conic-gradient(var(--green) 0 240deg, #202833 240deg); }
}

@keyframes chartDrive {
  from { background-position: 0 0, 0 0, 0 0; filter: drop-shadow(0 0 0 rgba(34,197,94,0)); }
  to { background-position: 0 0, 0 14px, 14px 0; filter: drop-shadow(0 0 12px rgba(34,197,94,.34)); }
}

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

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

  .hero-copy {
    margin-left: 0;
    padding-top: 240px;
  }

  .launch-panel {
    max-width: 420px;
    margin-top: 0;
  }

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

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

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

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

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

  .header-cta {
    padding: 12px 14px;
  }

  .hero,
  .section,
  .footer,
  .launch-cta {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero {
    min-height: auto;
    padding-top: 34px;
  }

  .hero-copy {
    padding-top: 260px;
  }

  .hero-art {
    background-position: 30% center;
  }

  .speed-lines {
    opacity: .36;
  }

  h1 {
    font-size: 48px;
  }

  .stat-strip,
  .audience-grid,
  .failure-track,
  .green-road,
  .pit-grid,
  .feature-grid,
  .dashboard-grid,
  .footer {
    grid-template-columns: 1fr;
  }

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

  .launch-cta {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .side-menu {
    grid-template-columns: 1fr;
  }

  .laptop {
    min-height: auto;
    padding: 12px;
  }

  .dash-wide {
    grid-column: span 1;
  }

  form {
    display: grid;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}


@media (min-width: 560px) {
    
    .hero-copy {
    padding-top: 30px !important;
}
}
