:root {
  color-scheme: dark;
  --paddock-green: #004225;
  --paddock-yellow: #c7b857;
  --brand-gradient: linear-gradient(135deg, var(--paddock-green) 0%, var(--paddock-yellow) 100%);
  --bg: #080a08;
  --bg-soft: #10130f;
  --panel: #171a15;
  --panel-strong: #20241d;
  --text: #f8f5eb;
  --muted: #b9b3a4;
  --soft: #827b6c;
  --line: rgba(248, 245, 235, 0.11);
  --line-strong: rgba(248, 245, 235, 0.2);
  --sky: #81aeb8;
  --clay: #c77748;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  --radius: 8px;
  --shell: min(1140px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(0, 66, 37, 0.12), transparent 420px),
    linear-gradient(180deg, #080a08 0%, #11140f 46%, #080a08 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(248, 245, 235, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(248, 245, 235, 0.02) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent 74%);
}

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

button {
  font: inherit;
}

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

h1 {
  max-width: 790px;
  margin-bottom: 22px;
  font-size: clamp(2.55rem, 4.7vw, 4.35rem);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(1.85rem, 3vw, 2.95rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.05rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.page-shell {
  width: var(--shell);
  margin: 0 auto;
}

.section-band {
  padding: 88px 0;
}

.utility.section-band {
  padding-top: 32px;
}

.section-tint {
  border-block: 1px solid var(--line);
  background: rgba(248, 245, 235, 0.035);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px max(20px, calc((100vw - 1140px) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(8, 10, 8, 0.78);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 850;
}

.brand-mark {
  width: 32px;
  height: 32px;
  display: block;
  border: 1px solid rgba(248, 245, 235, 0.16);
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 66, 37, 0.28);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.nav-links a,
.site-footer a,
.text-link {
  transition: color 160ms ease;
}

.nav-links a:hover,
.site-footer a:hover,
.text-link:hover {
  color: var(--text);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 850;
  line-height: 1;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease,
    color 160ms ease;
}

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

.button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(199, 184, 87, 0.45);
  outline-offset: 3px;
}

.button-small {
  min-height: 40px;
  padding-inline: 16px;
  font-size: 0.84rem;
}

.button-primary {
  color: #fffdf1;
  background: var(--brand-gradient);
  box-shadow: 0 14px 34px rgba(0, 66, 37, 0.32);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.35);
}

.button-primary:hover {
  border-color: rgba(248, 245, 235, 0.3);
}

.button-secondary {
  color: var(--text);
  border-color: var(--line-strong);
  background: rgba(248, 245, 235, 0.075);
}

.button-secondary:hover {
  border-color: rgba(248, 245, 235, 0.32);
  background: rgba(248, 245, 235, 0.11);
}

.hero {
  position: relative;
  min-height: min(720px, calc(100svh - 120px));
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 76px 0 10px;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -3;
  content: "";
  background:
    linear-gradient(135deg, rgba(0, 66, 37, 0.96) 0%, rgba(30, 83, 39, 0.9) 46%, rgba(199, 184, 87, 0.86) 100%),
    #0b100b;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(90deg, rgba(8, 10, 8, 0.74) 0%, rgba(8, 10, 8, 0.42) 50%, rgba(8, 10, 8, 0.08) 100%),
    linear-gradient(180deg, rgba(8, 10, 8, 0.22), rgba(8, 10, 8, 0.74));
}

.hero-track {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.33;
  background-image:
    linear-gradient(115deg, transparent 0 39%, rgba(248, 245, 235, 0.36) 39.2% 39.8%, transparent 40%),
    linear-gradient(115deg, transparent 0 55%, rgba(248, 245, 235, 0.18) 55.2% 55.8%, transparent 56%),
    linear-gradient(0deg, rgba(248, 245, 235, 0.11) 1px, transparent 1px);
  background-size: 620px 620px, 760px 760px, 100% 86px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-right: min(45vw, 520px);
}

.eyebrow {
  margin: 0 0 14px;
  color: #f1e6a0;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-subhead,
.section-heading p,
.feature-copy p,
.testflight-copy p {
  color: var(--muted);
  font-size: 1rem;
}

.hero-subhead {
  max-width: 680px;
  margin-bottom: 30px;
  color: rgba(248, 245, 235, 0.86);
}

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

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.hero-proof span {
  display: inline-flex;
  width: fit-content;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(248, 245, 235, 0.2);
  border-radius: 999px;
  color: #fff9d6;
  background: rgba(8, 10, 8, 0.28);
  font-size: 0.76rem;
  font-weight: 850;
}

.hero-preview {
  position: absolute;
  inset: 44px max(22px, calc((100vw - 1140px) / 2)) 34px auto;
  width: min(34vw, 360px);
  z-index: 1;
  pointer-events: none;
  display: grid;
  place-items: center;
}

.phone-frame {
  margin: 0;
  padding: 7px;
  border: 1px solid rgba(248, 245, 235, 0.2);
  border-radius: 34px;
  background: #050705;
  box-shadow:
    inset 0 0 0 1px rgba(248, 245, 235, 0.08),
    var(--shadow);
  overflow: hidden;
}

.phone-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 27px;
}

.hero-device {
  width: min(100%, 286px);
  transform: rotate(2deg);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

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

.info-card,
.group-card,
.funnel-step {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(23, 26, 21, 0.86);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.18);
}

.info-card,
.group-card,
.funnel-step {
  padding: 22px;
}

.info-card p,
.group-card p,
.funnel-step p {
  color: var(--muted);
}

.card-index {
  display: inline-grid;
  width: 38px;
  height: 28px;
  place-items: center;
  margin-bottom: 24px;
  border: 1px solid rgba(199, 184, 87, 0.42);
  border-radius: 999px;
  color: #f1e6a0;
  font-size: 0.72rem;
  font-weight: 850;
}

.feature-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 54px;
  align-items: center;
}

.feature-grid-flipped {
  grid-template-columns: 1.12fr 0.88fr;
}

.feature-copy {
  max-width: 560px;
}

.text-link {
  display: inline-flex;
  margin-top: 8px;
  color: #f1e6a0;
  font-weight: 850;
}

.feature-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.feature-points span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(248, 245, 235, 0.14);
  border-radius: 999px;
  color: #fff9d6;
  background: rgba(248, 245, 235, 0.055);
  font-size: 0.78rem;
  font-weight: 850;
}

.feature-visual {
  position: relative;
  min-height: 600px;
  display: grid;
  place-items: center;
}

.feature-visual::before {
  position: absolute;
  inset: 34px 0;
  z-index: 0;
  content: "";
  border: 1px solid rgba(248, 245, 235, 0.09);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 25% 20%, rgba(199, 184, 87, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(0, 66, 37, 0.72), rgba(199, 184, 87, 0.12)),
    rgba(23, 26, 21, 0.48);
}

.feature-visual::after {
  position: absolute;
  inset: 70px 12%;
  z-index: 0;
  content: "";
  background-image:
    linear-gradient(rgba(248, 245, 235, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(248, 245, 235, 0.045) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, transparent, #000 14%, #000 82%, transparent);
}

.garage-visual {
  min-height: 640px;
}

.garage-visual .phone-frame {
  position: absolute;
  z-index: 2;
}

.garage-visual .phone-primary {
  top: 18px;
  left: 54px;
  width: 260px;
  transform: rotate(-2deg);
}

.garage-visual .phone-secondary {
  right: 44px;
  bottom: 22px;
  width: 238px;
  transform: rotate(2.5deg);
}

.single-screen .phone-frame {
  position: relative;
  z-index: 2;
  width: min(100%, 266px);
}

#events .single-screen .phone-frame {
  transform: rotate(-1deg);
}

.screen-notes {
  position: absolute;
  right: 28px;
  bottom: 46px;
  z-index: 3;
  display: grid;
  gap: 8px;
  min-width: 184px;
  padding: 14px;
  border: 1px solid rgba(248, 245, 235, 0.13);
  border-radius: var(--radius);
  background: rgba(8, 10, 8, 0.72);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
}

.screen-notes span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(248, 245, 235, 0.88);
  font-size: 0.84rem;
  font-weight: 800;
}

.screen-notes span::before {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--brand-gradient);
  content: "";
}

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

.group-card {
  min-height: 230px;
  display: flex;
  flex-direction: column;
}

.group-card span {
  margin-top: auto;
  color: #f1e6a0;
  font-size: 0.86rem;
  font-weight: 850;
}

.testflight {
  background:
    linear-gradient(135deg, rgba(0, 66, 37, 0.9), rgba(199, 184, 87, 0.66)),
    #11140f;
}

.testflight-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 52px;
  align-items: start;
}

.testflight-copy p {
  color: rgba(248, 245, 235, 0.84);
}

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

.funnel-step {
  min-height: 214px;
  background: rgba(8, 10, 8, 0.44);
  backdrop-filter: blur(12px);
}

.funnel-step span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 50%;
  color: #092014;
  background: #f1e6a0;
  font-weight: 900;
}

.funnel-step p {
  color: rgba(248, 245, 235, 0.78);
}

.funnel-action {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  padding-top: 4px;
}

.funnel-action p {
  min-height: 24px;
  margin: 0;
  color: #fff9d6;
  font-weight: 750;
}

.site-footer {
  padding: 44px 0;
  border-top: 1px solid var(--line);
  background: #070907;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 42px;
  align-items: start;
}

.site-footer p {
  max-width: 380px;
  margin: 12px 0 0;
  color: var(--muted);
}

.site-footer nav {
  display: grid;
  gap: 10px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

@media (max-width: 1020px) {
  .site-header {
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero {
    min-height: auto;
    align-items: flex-start;
    padding-top: 76px;
  }

  .hero-copy {
    padding-right: 0;
    padding-bottom: 0;
  }

  .hero-preview {
    display: none;
  }

  .utility-grid,
  .feature-grid,
  .feature-grid-flipped,
  .testflight-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .feature-copy {
    max-width: 720px;
  }

  .feature-visual {
    min-height: auto;
    padding: 38px 18px;
  }

  .feature-visual::before {
    inset: 0;
  }

  .feature-visual::after {
    inset: 38px 10%;
  }

  .garage-visual {
    grid-template-columns: repeat(2, minmax(0, 280px));
    gap: 16px;
    justify-content: center;
    align-items: start;
  }

  .garage-visual .phone-frame {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: min(100%, 270px);
    transform: none;
  }

  .single-screen {
    gap: 18px;
  }

  .single-screen .phone-frame,
  #events .single-screen .phone-frame {
    width: min(100%, 270px);
    transform: none;
  }

  .screen-notes {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(100%, 270px);
  }
}

@media (max-width: 720px) {
  :root {
    --shell: min(100vw - 28px, 1140px);
  }

  .section-band {
    padding: 64px 0;
  }

  .site-header {
    min-height: 66px;
    gap: 12px;
  }

  .brand {
    font-size: 0.98rem;
  }

  .site-header .button {
    min-height: 38px;
    padding-inline: 13px;
  }

  h1 {
    font-size: clamp(2.35rem, 11.4vw, 3.15rem);
  }

  h2 {
    font-size: clamp(1.75rem, 8vw, 2.38rem);
  }

  .hero {
    padding-top: 58px;
  }

  .hero-copy {
    padding-bottom: 0;
  }

  .hero-actions,
  .funnel-action {
    display: grid;
    grid-template-columns: 1fr;
  }

  .utility-grid,
  .group-board,
  .funnel {
    grid-template-columns: 1fr;
  }

  .garage-visual {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding-inline: 10px;
  }

  .phone-frame {
    padding: 5px;
    border-radius: 26px;
  }

  .phone-frame img {
    border-radius: 21px;
  }

  .single-screen .phone-frame,
  #events .single-screen .phone-frame {
    width: min(74vw, 270px);
  }
}

@media (max-width: 440px) {
  .nav-links {
    gap: 16px;
    font-size: 0.86rem;
  }

  .hero-copy {
    padding-bottom: 0;
  }
}
