:root {
  --ink: #10251d;
  --ink-deep: #081812;
  --ink-soft: #183b2e;
  --paper: #f5f2e9;
  --paper-bright: #fffdf8;
  --lime: #d6ff49;
  --lime-soft: #e9ffa7;
  --orange: #e8682a;
  --mint: #dff5f1;
  --muted-dark: #52675f;
  --muted-light: #b9ccc3;
  --line-dark: rgba(16, 37, 29, 0.16);
  --line-light: rgba(245, 242, 233, 0.16);
  --shadow: 0 24px 70px rgba(4, 18, 13, 0.18);
  --radius-lg: 32px;
  --radius-md: 22px;
  --shell: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  min-width: 0;
  background: var(--ink);
  color: var(--paper);
  font: 17px/1.55 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(800px 520px at 82% 4%, rgba(214, 255, 73, 0.12), transparent 67%),
    radial-gradient(680px 500px at -4% 72%, rgba(232, 104, 42, 0.08), transparent 62%),
    linear-gradient(180deg, var(--ink) 0%, var(--ink-deep) 100%);
  content: "";
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(245, 242, 233, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 242, 233, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(75% 70% at 50% 28%, #000 20%, transparent 100%);
  -webkit-mask-image: radial-gradient(75% 70% at 50% 28%, #000 20%, transparent 100%);
  content: "";
  pointer-events: none;
}

a {
  color: inherit;
}

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

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 15px;
  border-radius: 12px;
  background: var(--paper-bright);
  color: var(--ink);
  font-weight: 800;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: none;
}

.shell {
  width: min(var(--shell), calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  padding: 22px 0;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 52px;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 12px;
  color: var(--paper);
  text-decoration: none;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 15px 15px 17px 15px;
  background: var(--lime);
  color: var(--ink);
  font-size: 27px;
  font-weight: 950;
  letter-spacing: -0.05em;
}

.brand-mark::after {
  position: absolute;
  right: 8px;
  bottom: 11px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  content: "";
}

.brand-words {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.brand-golf {
  padding: 2px 8px;
  border-radius: 5px;
  background: var(--lime);
  color: var(--ink);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.18em;
  line-height: 1.2;
}

.brand-nuggets {
  font-size: 18px;
  font-weight: 950;
  letter-spacing: 0.06em;
  line-height: 1;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-link,
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 15px;
  font-weight: 850;
  line-height: 1.1;
  text-decoration: none;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.nav-link {
  padding: 0 15px;
  color: var(--muted-light);
}

.nav-link:hover {
  color: var(--paper);
}

.button {
  padding: 0 20px;
}

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

.button-primary {
  border-color: var(--lime);
  background: var(--lime);
  color: var(--ink);
  box-shadow: 0 10px 30px rgba(214, 255, 73, 0.12);
}

.button-secondary {
  border-color: rgba(245, 242, 233, 0.28);
  background: rgba(245, 242, 233, 0.06);
  color: var(--paper);
}

.button-dark {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(410px, 0.96fr);
  align-items: center;
  gap: clamp(42px, 7vw, 86px);
  min-height: min(720px, calc(100vh - 96px));
  padding: 58px 0 96px;
}

.eyebrow,
.status-capsule {
  color: var(--lime);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.status-capsule {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 34px;
  margin-bottom: 24px;
  padding: 7px 14px;
  border: 1px solid rgba(214, 255, 73, 0.32);
  border-radius: 999px;
  background: rgba(214, 255, 73, 0.06);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(232, 104, 42, 0.13);
}

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

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(48px, 7.2vw, 82px);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.98;
  text-wrap: balance;
}

h1 em {
  color: var(--lime);
  font-style: normal;
}

.hero-lede {
  max-width: 54ch;
  margin-bottom: 30px;
  color: var(--muted-light);
  font-size: clamp(18px, 2vw, 21px);
}

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

.hero-actions .button {
  min-height: 54px;
  padding-inline: 24px;
}

.microcopy {
  margin: 0;
  color: var(--muted-light);
  font-size: 14px;
}

.product-demo {
  position: relative;
  padding: 18px;
  border: 1px solid rgba(245, 242, 233, 0.18);
  border-radius: var(--radius-lg);
  background: rgba(245, 242, 233, 0.07);
  box-shadow: var(--shadow);
}

.product-demo::before {
  position: absolute;
  inset: -14px 22px auto auto;
  z-index: -1;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: var(--orange);
  content: "";
  opacity: 0.88;
}

.demo-window {
  overflow: hidden;
  border-radius: 23px;
  background: var(--paper);
  color: var(--ink);
}

.demo-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  min-height: 42px;
  padding: 0 16px;
  border-bottom: 1px solid var(--line-dark);
}

.demo-bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c1cac4;
}

.demo-bar span:first-child {
  background: var(--orange);
}

.demo-body {
  padding: 22px;
}

.demo-search {
  display: flex;
  min-height: 58px;
  align-items: center;
  gap: 12px;
  padding: 0 17px;
  border: 2px solid var(--ink);
  border-radius: 17px;
  background: var(--paper-bright);
  font-size: 16px;
  font-weight: 750;
}

.search-icon {
  position: relative;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  border: 2px solid var(--ink);
  border-radius: 50%;
}

.search-icon::after {
  position: absolute;
  right: -5px;
  bottom: -3px;
  width: 8px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  content: "";
  transform: rotate(45deg);
}

.demo-connector {
  width: 2px;
  height: 22px;
  margin-left: 29px;
  background: var(--lime);
}

.demo-result {
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: 18px;
  background: var(--paper-bright);
}

.demo-result-main {
  padding: 18px;
}

.demo-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 9px;
  color: #087252;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.demo-label::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #0c9168;
  content: "";
}

.demo-result h2 {
  margin-bottom: 7px;
  font-size: clamp(21px, 2.4vw, 28px);
  line-height: 1.15;
}

.demo-result p {
  margin-bottom: 0;
  color: var(--muted-dark);
  font-size: 14px;
}

.demo-watch {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 62px;
  padding: 12px 16px;
  border-top: 1px solid var(--line-dark);
  background: var(--ink);
  color: var(--paper);
  font-size: 14px;
  font-weight: 850;
}

.play-mark {
  display: inline-grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  font-size: 15px;
  line-height: 1;
}

.demo-watch-copy {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.demo-save {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 0 11px;
  border: 1px solid rgba(245, 242, 233, 0.3);
  border-radius: 10px;
  color: var(--paper);
  white-space: nowrap;
}

.light-section {
  background: var(--paper);
  color: var(--ink);
}

.section {
  padding: clamp(78px, 10vw, 126px) 0;
}

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

.section-heading .eyebrow {
  display: block;
  margin-bottom: 13px;
  color: #087252;
}

.section-heading h2,
.trust-copy h2,
.availability-copy h2 {
  margin-bottom: 15px;
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1.02;
  text-wrap: balance;
}

.section-heading p,
.trust-copy p,
.availability-copy > p {
  max-width: 62ch;
  margin-bottom: 0;
  color: var(--muted-dark);
  font-size: clamp(17px, 2vw, 20px);
}

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

.step-card {
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-md);
  background: var(--paper-bright);
}

.step-number {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--lime);
  font-size: 14px;
  font-weight: 900;
}

.step-card h3 {
  margin-bottom: 8px;
  font-size: 22px;
  line-height: 1.15;
}

.step-card p {
  margin-bottom: 0;
  color: var(--muted-dark);
}

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

.trust-card {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 30px;
  align-items: center;
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
  background: rgba(245, 242, 233, 0.06);
}

.source-mark {
  display: grid;
  width: 112px;
  height: 112px;
  place-items: center;
  border-radius: 30px;
  background: var(--lime);
  color: var(--ink);
}

.source-mark svg {
  width: 52px;
  height: 52px;
}

.trust-copy .eyebrow {
  display: block;
  margin-bottom: 11px;
}

.trust-copy h2 {
  font-size: clamp(32px, 4vw, 48px);
}

.trust-copy p {
  color: var(--muted-light);
}

.availability-section {
  background: var(--paper);
  color: var(--ink);
}

.availability-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
  gap: clamp(36px, 7vw, 86px);
  align-items: center;
  padding: clamp(30px, 6vw, 64px);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  background: var(--paper-bright);
  box-shadow: var(--shadow);
}

.availability-copy .eyebrow {
  display: block;
  margin-bottom: 12px;
  color: #087252;
}

.availability-copy .button {
  min-height: 54px;
  margin: 25px 0 16px;
}

.browser-note {
  color: var(--muted-dark);
  font-size: 14px;
}

.reserve-note {
  margin: 18px 0 0;
  padding-left: 14px;
  border-left: 3px solid var(--orange);
  color: var(--muted-dark);
  font-size: 14px;
}

.availability-list {
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-md);
  background: var(--paper);
}

.availability-row {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 13px 18px;
  border-bottom: 1px solid var(--line-dark);
}

.availability-row:last-child {
  border-bottom: 0;
}

.availability-list:not(.has-native) > .availability-row {
  border-bottom: 0;
}

.platform-name {
  font-weight: 800;
}

.platform-state {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #087252;
  font-size: 14px;
  font-weight: 850;
  text-align: right;
}

.platform-state::before {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

a.platform-state {
  min-height: 44px;
  text-decoration: underline;
  text-underline-offset: 4px;
}

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

.footer-main,
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.footer-main {
  padding-bottom: 28px;
}

.footer-contact {
  color: var(--paper);
  font-weight: 800;
  text-decoration-color: var(--lime);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--line-light);
  color: var(--muted-light);
  font-size: 13px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}

.footer-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--muted-light);
  text-underline-offset: 4px;
}

@media (max-width: 880px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 60px 0 86px;
  }

  .hero-copy {
    max-width: 710px;
  }

  .product-demo {
    width: min(620px, 100%);
  }

  .availability-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .shell {
    width: min(100% - 32px, var(--shell));
  }

  .site-header {
    padding: 16px 0;
  }

  .nav-link {
    display: none;
  }

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

  .step-number {
    margin-bottom: 22px;
  }

  .trust-card {
    grid-template-columns: 1fr;
  }

  .source-mark {
    width: 76px;
    height: 76px;
    border-radius: 22px;
  }

  .source-mark svg {
    width: 38px;
    height: 38px;
  }

  .footer-main,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 390px) {
  .shell {
    width: min(100% - 24px, var(--shell));
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 13px;
    font-size: 24px;
  }

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

  .nav-actions .button {
    min-height: 46px;
    padding: 0 15px;
  }

  .hero {
    padding-top: 45px;
  }

  h1 {
    font-size: clamp(43px, 15vw, 57px);
  }

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

  .hero-actions .button {
    width: 100%;
  }

  .product-demo {
    padding: 10px;
    border-radius: 25px;
  }

  .demo-body {
    padding: 15px;
  }

  .demo-watch {
    align-items: stretch;
    flex-direction: column;
  }

  .demo-save {
    justify-content: center;
  }

  .availability-row {
    min-height: 68px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
