:root {
  --green: #1b3a2d;
  --deep-green: #0f2a20;
  --navy: #0d1718;
  --charcoal: #151819;
  --gold: #c8a84c;
  --gold-dark: #9a741f;
  --cream: #f5f2ed;
  --warm-white: #fffdf8;
  --sage: #e8ece3;
  --muted: #b8b6ab;
  --line: rgba(255, 253, 248, 0.14);
  --dark-line: rgba(15, 42, 32, 0.12);
  --radius: 8px;
  --container: min(1160px, calc(100% - 48px));
  --heading: Georgia, "Times New Roman", serif;
  --body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--warm-white);
  background: var(--navy);
  font-family: var(--body);
  line-height: 1.55;
  overflow-x: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

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

.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-140%);
  border-radius: 999px;
  background: var(--gold);
  color: var(--deep-green);
  padding: 10px 14px;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  color: var(--warm-white);
  background: linear-gradient(180deg, rgba(7, 27, 20, 0.58), rgba(7, 27, 20, 0));
  transition: background 180ms ease, border-color 180ms ease, backdrop-filter 180ms ease;
}

.site-header.is-scrolled {
  border-bottom: 1px solid rgba(255, 253, 248, 0.1);
  background: rgba(11, 24, 22, 0.82);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand,
.footer-logo {
  display: inline-flex;
  align-items: center;
}

.brand img,
.footer-logo img {
  width: clamp(152px, 15vw, 188px);
  height: 70px;
  object-fit: contain;
  object-position: left center;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3.4vw, 46px);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav a:not(.button) {
  color: rgba(255, 253, 248, 0.84);
}

.site-nav a:not(.button):hover,
.site-nav a:not(.button):focus-visible {
  color: #ffffff;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 253, 248, 0.28);
  border-radius: 6px;
  background: rgba(15, 42, 32, 0.56);
  color: var(--warm-white);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 14px 28px;
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

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

.button-gold {
  background: var(--gold);
  color: #10231b;
  box-shadow: 0 16px 38px rgba(200, 168, 76, 0.2);
}

.button-gold:hover,
.button-gold:focus-visible {
  background: #d9bb5e;
}

.button-cream {
  border-color: rgba(255, 253, 248, 0.34);
  background: rgba(255, 253, 248, 0.08);
  color: var(--warm-white);
  backdrop-filter: blur(8px);
}

.button-cream:hover,
.button-cream:focus-visible {
  border-color: rgba(200, 168, 76, 0.68);
  background: rgba(255, 253, 248, 0.14);
}

.button-small {
  min-height: 46px;
  padding: 14px 22px;
}

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  background: var(--navy);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 23, 24, 0.5) 0%, rgba(13, 23, 24, 0.34) 44%, rgba(13, 23, 24, 0.06) 100%),
    linear-gradient(180deg, rgba(13, 23, 24, 0.02), rgba(13, 23, 24, 0.34)),
    url("../images/golf-hero-clarity.png");
  background-position: center, center, 58% center;
  background-size: auto, auto, cover;
  filter: saturate(1.13) contrast(1.02) brightness(1.16);
}

.hero-bg::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.035) 0 1px, transparent 1px 32px),
    radial-gradient(circle at 78% 22%, rgba(200, 168, 76, 0.18), transparent 38%),
    radial-gradient(circle at 24% 82%, rgba(27, 58, 45, 0.16), transparent 44%),
    linear-gradient(180deg, transparent 26%, rgba(13, 23, 24, 0.22) 100%);
  content: "";
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 760px;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: center;
  padding: 132px 0 76px;
}

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  color: inherit;
  line-height: 1.02;
  letter-spacing: 0;
}

h1,
h2 {
  font-family: var(--heading);
  font-weight: 700;
}

h1 {
  max-width: 680px;
  font-size: clamp(3.35rem, 6.2vw, 6.2rem);
}

h2 {
  font-size: clamp(2.1rem, 4vw, 4rem);
}

h3 {
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1.22;
}

.hero-subhead {
  max-width: 610px;
  margin: 22px 0 0;
  color: rgba(255, 253, 248, 0.8);
  font-size: clamp(1rem, 1.6vw, 1.16rem);
  font-weight: 500;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
}

.hero-product {
  position: relative;
  min-height: 520px;
}

.device {
  overflow: hidden;
  border: 1px solid rgba(255, 253, 248, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.08);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.laptop {
  position: absolute;
  right: 0;
  top: 24px;
  width: min(100%, 620px);
  padding: 10px;
}

.product-browser {
  background: linear-gradient(145deg, rgba(255, 253, 248, 0.11), rgba(255, 253, 248, 0.045));
}

.device-top {
  display: flex;
  gap: 6px;
  padding: 8px 8px 12px;
}

.device-top span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.28);
}

.dashboard-preview {
  border-radius: 6px;
  background: linear-gradient(145deg, #123428, #0b1d19);
  padding: clamp(18px, 3vw, 30px);
}

.dash-header,
.panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.mini-label,
.dash-header span,
.metric-board span,
.panel-title span,
.priority-list span,
.panel-side span,
.module-card span,
.ecosystem-card span {
  color: rgba(255, 253, 248, 0.58);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.dash-header strong,
.panel-title strong {
  display: block;
  margin-top: 4px;
  color: var(--warm-white);
  font-family: var(--heading);
  font-size: 1.55rem;
}

.score-pill {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(200, 168, 76, 0.54);
  border-radius: 50%;
  color: var(--gold);
  font-family: var(--heading);
  font-size: 1.6rem;
  font-weight: 700;
}

.stat-row,
.metric-board {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 22px;
}

.stat-row article,
.metric-board article {
  border: 1px solid rgba(255, 253, 248, 0.1);
  border-radius: 6px;
  background: rgba(255, 253, 248, 0.07);
  padding: 14px;
}

.stat-row strong,
.metric-board strong {
  display: block;
  margin-top: 4px;
  color: var(--warm-white);
  font-size: 1.1rem;
}

.trend-card {
  position: relative;
  min-height: 160px;
  margin-top: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 253, 248, 0.1);
  border-radius: 6px;
  background:
    linear-gradient(rgba(255, 253, 248, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 253, 248, 0.06) 1px, transparent 1px),
    rgba(255, 253, 248, 0.04);
  background-size: 100% 40px, 72px 100%;
}

.trend-line {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 54%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #d2a945, #82c79f);
  transform: rotate(-9deg);
  transform-origin: center;
  box-shadow: 0 0 26px rgba(200, 168, 76, 0.35);
}

.bar-grid {
  position: absolute;
  inset: auto 24px 18px;
  display: flex;
  height: 92px;
  align-items: end;
  justify-content: flex-end;
  gap: 12px;
}

.bar-grid span {
  width: 28px;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, rgba(200, 168, 76, 0.86), rgba(128, 190, 151, 0.76));
}

.priority-list {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.priority-list span {
  border: 1px solid rgba(255, 253, 248, 0.1);
  border-radius: 6px;
  background: rgba(255, 253, 248, 0.06);
  padding: 11px 12px;
  color: rgba(255, 253, 248, 0.82);
}

.tablet {
  position: absolute;
  right: clamp(12px, 5vw, 86px);
  bottom: 0;
  width: min(62%, 380px);
  padding: 8px;
  transform: translateY(8px);
}

.tablet img {
  border-radius: 6px;
}

.product-screen {
  overflow: hidden;
  border-radius: 6px;
  background: var(--cream);
}

.product-screen img,
.showcase-browser img,
.product-callout img,
.product-detail img {
  display: block;
  width: 100%;
  height: 100%;
  filter: none;
  image-rendering: auto;
  object-fit: cover;
}

.mental-screen {
  aspect-ratio: 1.48 / 1;
}

.mental-screen img {
  object-position: 50% 0%;
}

.product-detail {
  position: absolute;
  z-index: 2;
  overflow: hidden;
  border: 1px solid rgba(255, 253, 248, 0.14);
  border-radius: var(--radius);
  background: var(--cream);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.28);
}

.product-detail span,
.product-callout span {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 2;
  border: 1px solid rgba(200, 168, 76, 0.38);
  border-radius: 999px;
  background: rgba(8, 18, 17, 0.76);
  color: var(--gold);
  padding: 7px 10px;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.detail-driving {
  left: -6px;
  bottom: 38px;
  width: min(46%, 300px);
  height: 172px;
}

.detail-driving img {
  object-position: 50% 54%;
}

.detail-short-game {
  right: 34px;
  bottom: -26px;
  width: min(44%, 286px);
  height: 152px;
}

.detail-short-game img {
  object-position: 50% 58%;
}

.trust-bar {
  border-block: 1px solid rgba(255, 253, 248, 0.1);
  background: #101d1d;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.trust-grid span {
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(255, 253, 248, 0.1);
  color: rgba(255, 253, 248, 0.78);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.trust-grid span:last-child {
  border-right: 0;
}

.section {
  padding: clamp(70px, 9vw, 118px) 0;
}

.section-dark {
  background:
    linear-gradient(180deg, rgba(13, 23, 24, 0.44), rgba(13, 23, 24, 0.5)),
    linear-gradient(90deg, rgba(13, 23, 24, 0.46), rgba(13, 23, 24, 0.18)),
    url("../images/golf-hero-leaks.png");
  background-position: center, center, center;
  background-size: auto, auto, cover;
}

.section-heading {
  max-width: 790px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading h2,
.showcase-copy h2,
.philosophy h2,
.included h2,
.faq h2,
.final-cta h2 {
  color: var(--warm-white);
}

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

.feature-card,
.module-card,
.audience-card,
.ecosystem-card {
  border: 1px solid rgba(255, 253, 248, 0.12);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 253, 248, 0.09), rgba(255, 253, 248, 0.04));
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.16);
}

.feature-card {
  min-height: 270px;
  padding: 24px;
}

.icon-box {
  display: block;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(200, 168, 76, 0.42);
  border-radius: 8px;
  background:
    linear-gradient(90deg, transparent 47%, rgba(200, 168, 76, 0.75) 47% 53%, transparent 53%),
    linear-gradient(transparent 47%, rgba(200, 168, 76, 0.75) 47% 53%, transparent 53%),
    radial-gradient(circle, rgba(200, 168, 76, 0.94) 0 9%, transparent 10%),
    rgba(255, 253, 248, 0.06);
}

.leak-icon {
  background:
    linear-gradient(135deg, transparent 0 42%, rgba(200, 168, 76, 0.8) 43% 48%, transparent 49%),
    radial-gradient(circle at 34% 64%, rgba(200, 168, 76, 0.9) 0 12%, transparent 13%),
    radial-gradient(circle at 66% 34%, rgba(130, 199, 159, 0.9) 0 10%, transparent 11%),
    rgba(255, 253, 248, 0.06);
}

.practice-icon {
  background:
    linear-gradient(90deg, rgba(200, 168, 76, 0.82) 0 22%, transparent 22% 100%),
    linear-gradient(180deg, transparent 0 24%, rgba(255, 253, 248, 0.34) 24% 28%, transparent 28% 48%, rgba(255, 253, 248, 0.34) 48% 52%, transparent 52% 72%, rgba(255, 253, 248, 0.34) 72% 76%, transparent 76%),
    rgba(255, 253, 248, 0.06);
}

.trend-icon {
  background:
    linear-gradient(135deg, transparent 20%, rgba(200, 168, 76, 0.8) 21% 25%, transparent 26%),
    linear-gradient(90deg, rgba(130, 199, 159, 0.82) 0 18%, transparent 18% 32%, rgba(130, 199, 159, 0.82) 32% 50%, transparent 50% 64%, rgba(200, 168, 76, 0.82) 64% 82%, transparent 82%),
    rgba(255, 253, 248, 0.06);
}

.step-number {
  display: block;
  margin-top: 30px;
  color: var(--gold);
  font-family: var(--heading);
  font-size: 2.1rem;
  line-height: 1;
}

.feature-card h3 {
  margin-top: 16px;
}

.feature-card p,
.showcase-copy p,
.module-card p,
.philosophy p,
.included-copy p,
.faq-copy p,
.final-cta p {
  color: rgba(255, 253, 248, 0.72);
}

.showcase {
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(13, 23, 24, 0.98), rgba(15, 42, 32, 0.96)),
    var(--deep-green);
}

.showcase-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
}

.showcase-copy p {
  max-width: 520px;
  margin: 20px 0 0;
}

.showcase-stage {
  position: relative;
  min-height: 560px;
}

.showcase-browser {
  position: absolute;
  inset: 42px 24px auto 0;
  overflow: hidden;
  border: 1px solid rgba(255, 253, 248, 0.14);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 253, 248, 0.11), rgba(255, 253, 248, 0.045));
  padding: 10px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.showcase-browser img {
  aspect-ratio: 1.45 / 1;
  border-radius: 6px;
  object-position: 50% 0%;
}

.product-callout {
  position: absolute;
  z-index: 2;
  overflow: hidden;
  border: 1px solid rgba(255, 253, 248, 0.14);
  border-radius: var(--radius);
  background: var(--cream);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.28);
}

.callout-snapshot {
  right: 0;
  top: 0;
  width: min(44%, 268px);
  height: 156px;
}

.callout-snapshot img {
  object-position: 70% 17%;
}

.callout-sliders {
  right: 20px;
  bottom: 62px;
  width: min(54%, 340px);
  height: 190px;
}

.callout-sliders img {
  object-position: 50% 52%;
}

.callout-approach {
  left: 30px;
  bottom: 0;
  width: min(42%, 270px);
  height: 160px;
}

.callout-approach img {
  object-position: 50% 58%;
}

.glass-panel {
  border: 1px solid rgba(255, 253, 248, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.panel-main {
  position: absolute;
  inset: 18px 40px auto 0;
  padding: 28px;
}

.metric-board {
  grid-template-columns: repeat(4, 1fr);
}

.analysis-bars {
  display: grid;
  gap: 13px;
  margin-top: 24px;
}

.analysis-bars span {
  display: block;
  width: var(--w);
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), #82c79f);
}

.panel-side {
  position: absolute;
  right: 0;
  top: 248px;
  z-index: 2;
  width: min(300px, 54%);
  background: rgba(15, 42, 32, 0.88);
  padding: 22px;
}

.panel-side strong {
  display: block;
  margin-top: 10px;
  color: var(--warm-white);
  font-size: 1.2rem;
}

.panel-side p {
  margin: 8px 0 0;
  color: rgba(255, 253, 248, 0.66);
}

.screenshot-card {
  position: absolute;
  left: 52px;
  right: 76px;
  bottom: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 253, 248, 0.14);
  border-radius: var(--radius);
  background: var(--cream);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
}

.screenshot-card img {
  width: 100%;
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 54px;
}

.module-card {
  min-height: 220px;
  padding: 24px;
}

.module-card h3 {
  margin-top: 34px;
}

.module-card p {
  margin: 12px 0 0;
  font-size: 0.94rem;
}

.philosophy {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(13, 23, 24, 0.52) 0%, rgba(13, 23, 24, 0.34) 48%, rgba(13, 23, 24, 0.1) 100%),
    linear-gradient(180deg, rgba(13, 23, 24, 0.02), rgba(13, 23, 24, 0.24)),
    url("../images/golf-hero-reflect.png");
  background-position: center, center, 58% center;
  background-size: auto, auto, cover;
}

.philosophy-inner {
  max-width: 840px;
  padding: clamp(36px, 5vw, 58px) 0;
}

.philosophy p:not(.eyebrow) {
  max-width: 700px;
  margin: 24px 0 0;
  font-size: clamp(1.05rem, 2vw, 1.32rem);
}

.audience {
  background: var(--cream);
  color: var(--deep-green);
}

.audience .section-heading h2 {
  color: var(--deep-green);
}

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

.audience-card {
  min-height: 112px;
  border-color: rgba(15, 42, 32, 0.12);
  background: rgba(255, 253, 248, 0.72);
  color: var(--deep-green);
  display: flex;
  align-items: center;
  padding: 24px;
  font-size: 1.04rem;
  font-weight: 900;
}

.included {
  background:
    radial-gradient(circle at 80% 20%, rgba(200, 168, 76, 0.12), transparent 34%),
    #101d1d;
}

.included-layout,
.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: start;
}

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

.checklist span {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 58px;
  border: 1px solid rgba(255, 253, 248, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.07);
  padding: 16px 18px 16px 46px;
  color: rgba(255, 253, 248, 0.84);
  font-weight: 800;
  line-height: 1.32;
}

.checklist span::before {
  position: absolute;
  left: 18px;
  top: 50%;
  width: 13px;
  height: 8px;
  border-bottom: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
  content: "";
  transform: translateY(-50%) rotate(-45deg);
}

.faq {
  background: var(--cream);
  color: var(--deep-green);
}

.faq h2 {
  color: var(--deep-green);
}

.faq-copy p {
  color: #304138;
}

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

details {
  border: 1px solid rgba(15, 42, 32, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.78);
}

summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 64px;
  padding: 18px 20px;
  color: var(--deep-green);
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--gold-dark);
  border-bottom: 2px solid var(--gold-dark);
  content: "";
  transform: rotate(45deg);
  transition: transform 160ms ease;
}

details[open] summary::after {
  transform: rotate(225deg);
}

details p {
  margin: 0;
  padding: 0 20px 20px;
  color: #304138;
}

.ecosystem {
  background:
    linear-gradient(180deg, rgba(16, 29, 29, 0.48), rgba(13, 23, 24, 0.58)),
    linear-gradient(90deg, rgba(13, 23, 24, 0.44), rgba(13, 23, 24, 0.2)),
    url("../images/golf-hero-roadmap.png");
  background-position: center, center, center;
  background-size: auto, auto, cover;
}

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

.ecosystem-card {
  min-height: 176px;
  padding: 22px;
}

.ecosystem-card h3 {
  min-height: 74px;
}

.ecosystem-card span {
  display: inline-flex;
  margin-top: 26px;
  border: 1px solid rgba(200, 168, 76, 0.38);
  border-radius: 999px;
  padding: 8px 10px;
  color: var(--gold);
}

.final-cta {
  padding: clamp(78px, 10vw, 132px) 0;
  background:
    radial-gradient(circle at 50% 0, rgba(200, 168, 76, 0.1), transparent 42%),
    linear-gradient(90deg, rgba(15, 42, 32, 0.44), rgba(15, 42, 32, 0.22)),
    url("../images/golf-hero-final.png");
  background-position: center, center, center;
  background-size: auto, auto, cover;
  text-align: center;
}

.final-inner {
  max-width: 760px;
}

.final-cta p:not(.eyebrow) {
  max-width: 620px;
  margin: 20px auto 30px;
}

.signup-band {
  padding: clamp(44px, 7vw, 72px) 0;
  background:
    linear-gradient(135deg, rgba(16, 59, 43, 0.96), rgba(8, 18, 17, 0.98)),
    #103b2b;
  color: var(--cream);
}

.signup-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(340px, 0.72fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.signup-copy h2 {
  max-width: 680px;
  color: var(--cream);
  font-size: clamp(2rem, 4.2vw, 3.5rem);
}

.signup-copy p:not(.eyebrow) {
  max-width: 570px;
  margin: 16px 0 0;
  color: rgba(245, 242, 234, 0.82);
  font-size: 1rem;
}

.signup-panel {
  display: grid;
  width: 100%;
  gap: 12px;
  justify-items: stretch;
}

.ml-onclick-form {
  display: inline-flex;
  width: min(100%, 720px);
  min-height: 82px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  background: #c7a447;
  color: #fffdf8;
  cursor: pointer;
  box-shadow: none;
  font: inherit;
  font-size: clamp(1.05rem, 2.1vw, 1.7rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.15;
  padding: 18px 28px;
  text-transform: none;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.ml-onclick-form:hover,
.ml-onclick-form:focus-visible {
  background: #d9bb5e;
  color: #fffdf8;
  transform: translateY(-1px);
}

.privacy-note {
  margin: 0;
  color: rgba(245, 242, 237, 0.68);
  font-size: 0.82rem;
  line-height: 1.45;
}

.site-footer {
  border-top: 1px solid rgba(255, 253, 248, 0.1);
  background:
    radial-gradient(circle at 82% 12%, rgba(200, 168, 76, 0.08), transparent 30%),
    #081211;
  color: rgba(255, 253, 248, 0.78);
  padding: 54px 0 46px;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  align-items: end;
  justify-content: space-between;
  gap: clamp(32px, 7vw, 92px);
}

.footer-brand-block {
  max-width: 430px;
}

.footer-inner p {
  max-width: 360px;
  margin: 8px 0 10px;
  color: rgba(255, 253, 248, 0.78);
}

.footer-inner small {
  color: rgba(255, 253, 248, 0.48);
}

.footer-actions {
  display: grid;
  justify-items: end;
  gap: 22px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 24px;
  color: rgba(255, 253, 248, 0.66);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: var(--warm-white);
}

.footer-shop-button {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(200, 168, 76, 0.38);
  border-radius: 4px;
  background: rgba(200, 168, 76, 0.08);
  color: var(--gold);
  padding: 12px 18px;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.footer-shop-button:hover,
.footer-shop-button:focus-visible {
  border-color: rgba(200, 168, 76, 0.72);
  background: rgba(200, 168, 76, 0.16);
  color: var(--warm-white);
  transform: translateY(-1px);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.social-links a {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 253, 248, 0.12);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.04);
  color: rgba(255, 253, 248, 0.64);
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease, transform 160ms ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  border-color: rgba(200, 168, 76, 0.54);
  background: rgba(200, 168, 76, 0.1);
  color: var(--gold);
  transform: translateY(-2px);
}

.social-links svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.75;
}

.social-links a[aria-label^="Facebook"] svg {
  fill: currentColor;
  stroke: none;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

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

@media (max-width: 980px) {
  .header-inner {
    min-height: 78px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% - 1px);
    left: 24px;
    right: 24px;
    display: none;
    border: 1px solid rgba(255, 253, 248, 0.12);
    border-radius: var(--radius);
    background: rgba(11, 24, 22, 0.96);
    padding: 18px;
    box-shadow: 0 22px 46px rgba(0, 0, 0, 0.26);
  }

  .site-nav.is-open {
    display: grid;
    gap: 16px;
  }

  .site-nav .button {
    width: 100%;
  }

  .hero-layout,
  .showcase-layout,
  .included-layout,
  .faq-layout,
  .signup-layout {
    grid-template-columns: 1fr;
  }

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

  .hero-product {
    min-height: 500px;
  }

  .laptop {
    left: 0;
    width: 100%;
  }

  .detail-driving {
    left: 12px;
  }

  .detail-short-game {
    right: 12px;
  }

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

  .showcase-stage {
    min-height: 520px;
  }

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

@media (max-width: 720px) {
  :root {
    --container: min(100% - 32px, 1160px);
  }

  .brand img,
  .footer-logo img {
    width: 148px;
    height: 60px;
  }

  .hero {
    min-height: auto;
  }

  .hero-layout {
    gap: 26px;
    padding-bottom: 56px;
  }

  h1 {
    max-width: 8.6ch;
    font-size: clamp(2.8rem, 12vw, 3.2rem);
    line-height: 1.04;
  }

  .hero-copy,
  .hero-subhead {
    max-width: 100%;
  }

  .hero-subhead {
    max-width: 32ch;
  }

  h2 {
    font-size: clamp(2rem, 11vw, 3.05rem);
  }

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

  .signup-band {
    padding: 42px 0;
  }

  .ml-onclick-form {
    width: 100%;
  }

  .hero-actions .button {
    width: calc(100vw - 32px);
    max-width: 100%;
  }

  .hero-product {
    display: grid;
    min-height: auto;
    width: 100%;
    gap: 12px;
    overflow: visible;
  }

  .laptop {
    position: relative;
    top: 0;
  }

  .product-detail {
    position: relative;
    inset: auto;
    width: 100%;
    height: 142px;
  }

  .stat-row,
  .metric-board,
  .trust-grid,
  .feature-grid,
  .module-grid,
  .audience-grid,
  .checklist,
  .ecosystem-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid span {
    min-height: 58px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 253, 248, 0.1);
  }

  .trust-grid span:last-child {
    border-bottom: 0;
  }

  .showcase-stage {
    display: grid;
    min-height: auto;
    gap: 12px;
  }

  .showcase-browser,
  .product-callout,
  .panel-main,
  .panel-side,
  .screenshot-card {
    position: relative;
    inset: auto;
    width: auto;
    height: auto;
  }

  .showcase-browser {
    padding: 8px;
  }

  .product-callout {
    height: 150px;
  }

  .callout-sliders {
    height: 170px;
  }

  .panel-side,
  .screenshot-card {
    margin-top: 14px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .footer-actions {
    justify-items: start;
  }

  .footer-nav,
  .social-links {
    justify-content: flex-start;
  }
}
