@font-face {
  font-family: "Space Grotesk";
  src: url("assets/fonts/SpaceGrotesk.woff2") format("woff2");
  font-weight: 300 700;
  font-display: swap;
}

:root {
  --bg: #09110d;
  --bg-soft: #0d1711;
  --surface: #111c15;
  --surface-2: #16231b;
  --line: rgba(220, 237, 226, 0.14);
  --line-strong: rgba(220, 237, 226, 0.27);
  --text: #edf4ef;
  --muted: #91a096;
  --mint: #6fe39a;
  --mint-soft: #b7f4cd;
  --amber: #f2bd56;
  --coral: #ff775d;
  --ink: #07100b;
  --shell: min(1240px, calc(100vw - 48px));
  --radius: 28px;
  --ease: cubic-bezier(.2, .75, .24, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 85% 8%, rgba(111, 227, 154, .07), transparent 27rem),
    var(--bg);
  color: var(--text);
  font-family: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

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

:focus-visible {
  outline: 2px solid var(--mint);
  outline-offset: 4px;
}

::selection {
  background: var(--mint);
  color: var(--ink);
}

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

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

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

.section-shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  position: relative;
  padding: clamp(96px, 11vw, 168px) 0;
}

.section-number,
.micro-label {
  display: inline-block;
  color: var(--mint);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.section-heading h2,
.screens-intro h2,
.roadmap-intro h2,
.truth-copy h2,
.faq-intro h2,
.cta-shell h2 {
  margin: 20px 0 0;
  max-width: 900px;
  font-size: clamp(42px, 6vw, 82px);
  font-weight: 500;
  letter-spacing: -.055em;
  line-height: .98;
}

h1 em,
h2 em {
  color: var(--mint-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(280px, .65fr);
  gap: clamp(40px, 8vw, 120px);
  align-items: end;
  margin-bottom: clamp(64px, 8vw, 112px);
}

.split-heading > p {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 22px;
  border: 1px solid var(--mint);
  border-radius: 100px;
  background: var(--mint);
  box-shadow: 0 10px 40px rgba(69, 211, 124, .16);
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -.01em;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 46px rgba(69, 211, 124, .24);
  background: #87ecaa;
}

.button-small {
  min-height: 40px;
  padding-inline: 18px;
  font-size: 13px;
}

.button-light {
  border-color: var(--text);
  background: var(--text);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--line-strong);
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  transition: border-color .2s ease, color .2s ease;
}

.text-link:hover {
  border-color: var(--mint);
  color: var(--mint);
}

.text-link.light {
  color: var(--mint-soft);
}

.availability {
  display: inline-flex;
  min-height: 25px;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 100px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.availability.available {
  border-color: rgba(111, 227, 154, .28);
  background: rgba(111, 227, 154, .08);
  color: var(--mint);
}

.availability.building {
  border-color: rgba(242, 189, 86, .28);
  background: rgba(242, 189, 86, .08);
  color: var(--amber);
}

.availability.future,
.availability.planned {
  border-color: rgba(196, 207, 199, .2);
  background: rgba(196, 207, 199, .06);
  color: #bec9c1;
}

/* Navigation */

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease, transform .4s var(--ease);
}

.site-header.scrolled {
  border-color: var(--line);
  background: rgba(8, 16, 11, .84);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: grid;
  width: var(--shell);
  min-height: 76px;
  margin-inline: auto;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.brand {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 11px;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -.04em;
}

.brand img {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(111, 227, 154, .15);
  border-radius: 10px;
}

.brand sup {
  margin-left: 2px;
  color: var(--mint);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .06em;
  vertical-align: super;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 31px;
}

.primary-nav a {
  position: relative;
  color: #c5d0c8;
  font-size: 13px;
  font-weight: 500;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--mint);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s var(--ease);
}

.primary-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  justify-self: end;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(9, 17, 13, .82);
  color: var(--text);
}

.nav-toggle > span:not(.sr-only) {
  display: block;
  width: 16px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: transform .25s ease;
}

/* Hero */

.hero {
  position: relative;
  display: flex;
  min-height: max(760px, 100svh);
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid var(--line);
  background: #07100b;
}

.hero-media,
.hero-grain {
  position: absolute;
  z-index: -3;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 12, 8, .98) 0%, rgba(5, 12, 8, .92) 26%, rgba(5, 12, 8, .42) 57%, rgba(5, 12, 8, .22) 100%),
    linear-gradient(0deg, rgba(5, 12, 8, .7) 0%, transparent 30%, rgba(5, 12, 8, .12) 65%, rgba(5, 12, 8, .55) 100%);
  content: "";
}

.hero-grain {
  z-index: -2;
  opacity: .22;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.88' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.22'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.hero-shell {
  position: relative;
  display: grid;
  padding-top: 82px;
  grid-template-columns: minmax(0, .92fr) minmax(360px, .72fr);
  gap: 70px;
  align-items: center;
}

.hero-copy {
  max-width: 710px;
  padding: 60px 0 86px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 26px;
  color: #c3cec6;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.live-dot {
  position: relative;
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 5px rgba(111, 227, 154, .1);
}

.hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(54px, 7.2vw, 108px);
  font-weight: 500;
  letter-spacing: -.067em;
  line-height: .88;
  text-wrap: balance;
}

.hero h1 em {
  color: var(--mint-soft);
  font-size: 1.05em;
}

.hero-lede {
  max-width: 620px;
  margin: 32px 0 0;
  color: #b1beb5;
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.6;
}

.hero-lede strong {
  color: var(--text);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 34px;
}

.hero-notes {
  display: flex;
  margin: 38px 0 0;
  padding: 0;
  flex-wrap: wrap;
  gap: 11px 24px;
  color: #8e9c92;
  font-size: 11px;
  letter-spacing: .06em;
  list-style: none;
  text-transform: uppercase;
}

.hero-notes li {
  display: flex;
  align-items: center;
  gap: 9px;
}

.hero-notes li::before {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--mint);
  content: "";
}

.hero-signal-card {
  align-self: end;
  width: min(100%, 410px);
  margin: 0 0 104px auto;
  padding: 22px;
  border: 1px solid rgba(229, 241, 233, .19);
  border-radius: 22px;
  background: rgba(9, 17, 13, .72);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .34);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.signal-topline,
.putt-readout-top,
.feature-topline,
.ledger-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #819087;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.signal-topline b,
.putt-readout-top b,
.ledger-head b {
  color: var(--text);
  font-weight: 600;
}

.signal-score-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-top: 20px;
}

.signal-score-row strong {
  font-size: 62px;
  font-weight: 500;
  letter-spacing: -.07em;
  line-height: .85;
}

.signal-score-row small {
  color: var(--muted);
  font-size: 15px;
}

.signal-verdict {
  color: var(--mint);
  font-size: 11px;
  text-transform: uppercase;
}

.swing-trace {
  width: 100%;
  margin: 19px 0 17px;
  overflow: visible;
}

.swing-trace path {
  fill: none;
}

.trace-grid {
  stroke: rgba(231, 243, 234, .08);
  stroke-width: 1;
}

.trace-reference {
  stroke: var(--amber);
  stroke-dasharray: 5 6;
  stroke-width: 2;
}

.trace-you {
  stroke: var(--mint);
  stroke-linecap: round;
  stroke-width: 3;
}

.swing-trace circle {
  fill: var(--coral);
  stroke: rgba(255, 119, 93, .23);
  stroke-width: 8;
}

.signal-metrics {
  display: grid;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.signal-metrics span {
  min-width: 0;
}

.signal-metrics small,
.signal-metrics b {
  display: block;
}

.signal-metrics small {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 9px;
  text-transform: uppercase;
}

.signal-metrics b {
  overflow: hidden;
  font-size: 12px;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-index {
  position: absolute;
  right: 22px;
  bottom: 34px;
  color: rgba(237, 244, 239, .42);
  font-size: 9px;
  letter-spacing: .2em;
  transform: rotate(-90deg);
}

.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: max(24px, calc((100vw - 1240px) / 2));
  display: flex;
  align-items: center;
  gap: 11px;
  color: #99a69d;
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.scroll-cue span {
  display: inline-block;
  width: 30px;
  height: 1px;
  overflow: hidden;
  background: var(--line-strong);
}

.scroll-cue span::after {
  display: block;
  width: 14px;
  height: 1px;
  background: var(--mint);
  content: "";
  animation: scan 2s var(--ease) infinite;
}

@keyframes scan {
  0% { transform: translateX(-15px); }
  100% { transform: translateX(32px); }
}

.signal-strip {
  overflow: hidden;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
  background: var(--mint);
  color: var(--ink);
  white-space: nowrap;
}

.signal-strip > div {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 27px;
  animation: ticker 26s linear infinite;
}

.signal-strip span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.signal-strip i {
  font-style: normal;
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

/* App showcase */

.app-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 48%, rgba(111, 227, 154, .08), transparent 28rem),
    var(--bg);
}

.app-showcase {
  display: grid;
  min-height: 730px;
  grid-template-columns: minmax(330px, .8fr) minmax(480px, 1.2fr);
  gap: clamp(50px, 9vw, 130px);
  align-items: center;
}

.phone-stage {
  position: relative;
  display: grid;
  min-height: 670px;
  place-items: center;
}

.phone-shell {
  position: relative;
  z-index: 2;
  width: 305px;
  margin: 0;
  padding: 10px;
  border: 1px solid rgba(236, 245, 239, .3);
  border-radius: 48px;
  background: #060b08;
  box-shadow: 0 46px 120px rgba(0, 0, 0, .48), 0 0 0 5px rgba(255, 255, 255, .025);
  transform: rotate(-2.2deg);
}

.phone-shell img {
  width: 100%;
  border-radius: 38px;
}

.phone-shell figcaption {
  position: absolute;
  bottom: -36px;
  left: 50%;
  width: max-content;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.phone-speaker {
  position: absolute;
  z-index: 3;
  top: 18px;
  left: 50%;
  width: 76px;
  height: 19px;
  border-radius: 20px;
  background: #050806;
  transform: translateX(-50%);
}

.orbit {
  position: absolute;
  border: 1px solid rgba(111, 227, 154, .12);
  border-radius: 50%;
}

.orbit::after {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 24px var(--mint);
  content: "";
}

.orbit-one {
  width: 470px;
  height: 470px;
}

.orbit-one::after {
  top: 31px;
  left: 95px;
}

.orbit-two {
  width: 590px;
  height: 590px;
  border-style: dashed;
}

.orbit-two::after {
  right: 53px;
  bottom: 106px;
  width: 5px;
  height: 5px;
  background: var(--amber);
  box-shadow: 0 0 20px var(--amber);
}

.floating-chip {
  position: absolute;
  z-index: 4;
  padding: 10px 13px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: rgba(14, 24, 17, .88);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .28);
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.floating-chip span {
  margin-right: 3px;
  color: var(--text);
  font-weight: 700;
}

.chip-one {
  top: 21%;
  right: -2%;
}

.chip-two {
  bottom: 19%;
  left: 0;
}

.analysis-panel {
  padding: clamp(26px, 4vw, 46px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(23, 36, 28, .93), rgba(11, 19, 14, .93));
  box-shadow: 0 34px 100px rgba(0, 0, 0, .26);
}

.analysis-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.analysis-panel h3 {
  margin: 10px 0 0;
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: 1.05;
}

.view-switch {
  display: flex;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: rgba(2, 7, 4, .35);
}

.view-switch button {
  min-width: 61px;
  padding: 7px 12px;
  border: 0;
  border-radius: 100px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 11px;
  font-weight: 600;
}

.view-switch button.active {
  background: var(--mint);
  color: var(--ink);
}

.analysis-score {
  display: grid;
  margin: 42px 0 32px;
  grid-template-columns: 132px 1fr;
  gap: 28px;
  align-items: center;
}

.score-ring {
  display: grid;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background: conic-gradient(var(--mint) calc(var(--score) * 1%), rgba(111, 227, 154, .09) 0);
  place-items: center;
  transition: background .45s var(--ease);
}

.score-ring::before {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: #111c15;
  content: "";
}

.score-ring > span {
  position: absolute;
}

.score-ring b {
  font-size: 39px;
  font-weight: 500;
  letter-spacing: -.06em;
}

.score-ring small {
  color: var(--muted);
  font-size: 11px;
}

.analysis-score > div:last-child strong,
.analysis-score > div:last-child p {
  display: block;
}

.analysis-score > div:last-child strong {
  max-width: 360px;
  margin-top: 8px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
}

.analysis-score > div:last-child p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.metric-list {
  border-top: 1px solid var(--line);
}

.metric-list > div {
  display: grid;
  min-height: 64px;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 1fr 110px 90px;
  gap: 18px;
  align-items: center;
  color: var(--muted);
  font-size: 12px;
}

.metric-list b {
  color: var(--text);
  font-size: 16px;
  font-weight: 600;
  text-align: right;
}

.metric-list i {
  font-size: 9px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: .08em;
  text-align: right;
  text-transform: uppercase;
}

.metric-list i.good {
  color: var(--mint);
}

.metric-list i.watch {
  color: var(--amber);
}

.demo-note,
.concept-note,
.footnote {
  color: #728078;
  font-size: 10px;
  line-height: 1.6;
}

.demo-note {
  margin: 22px 0 0;
}

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

.capability-card {
  position: relative;
  min-height: 320px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(16, 27, 20, .66);
  transition: transform .35s var(--ease), border-color .35s ease, background .35s ease;
}

.capability-card:hover {
  border-color: rgba(111, 227, 154, .3);
  background: rgba(19, 33, 24, .85);
  transform: translateY(-5px);
}

.card-icon {
  position: absolute;
  top: 30px;
  right: 28px;
  display: grid;
  width: 74px;
  height: 74px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--mint);
  font-size: 18px;
  font-weight: 500;
  place-items: center;
}

.capability-card h3 {
  margin: 112px 0 12px;
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -.04em;
}

.capability-card p {
  max-width: 340px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.footnote {
  margin: 16px 0 0;
}

/* App screens */

.screens-section {
  overflow: hidden;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 12% 20%, rgba(111, 227, 154, .1), transparent 30rem),
    radial-gradient(circle at 88% 70%, rgba(242, 189, 86, .06), transparent 26rem),
    #0a140e;
}

.screens-intro {
  display: grid;
  margin-bottom: clamp(64px, 8vw, 104px);
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, .55fr);
  gap: clamp(42px, 8vw, 116px);
  align-items: end;
}

.screens-intro h2 {
  max-width: 790px;
}

.screens-intro > div:first-child > p {
  max-width: 700px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.launch-card {
  position: relative;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(111, 227, 154, .28);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(111, 227, 154, .11), rgba(10, 20, 14, .86));
  box-shadow: 0 30px 80px rgba(0, 0, 0, .23);
}

.launch-card::after {
  position: absolute;
  top: -70px;
  right: -70px;
  width: 160px;
  height: 160px;
  border: 1px solid rgba(111, 227, 154, .18);
  border-radius: 50%;
  box-shadow: 0 0 0 25px rgba(111, 227, 154, .025), 0 0 0 50px rgba(111, 227, 154, .018);
  content: "";
}

.launch-card span,
.launch-card time,
.launch-card b,
.launch-card small {
  position: relative;
  z-index: 1;
  display: block;
}

.launch-card span {
  color: var(--mint);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.launch-card time {
  margin-top: 26px;
  font-size: clamp(31px, 3.2vw, 45px);
  font-weight: 500;
  letter-spacing: -.055em;
  line-height: .95;
}

.launch-card b {
  margin-top: 8px;
  color: var(--mint-soft);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .05em;
}

.launch-card small {
  margin-top: 28px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.5;
}

.screen-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 24px);
  align-items: start;
}

.screen-card {
  min-width: 0;
  margin: 0;
}

.screen-card-offset {
  margin-top: 62px;
}

.screen-device {
  position: relative;
  min-height: 640px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(237, 244, 239, .2);
  border-radius: 42px;
  background: #07100b;
  box-shadow: 0 38px 90px rgba(0, 0, 0, .34), inset 0 0 0 5px rgba(255, 255, 255, .018);
}

.screen-device::before {
  position: absolute;
  z-index: 5;
  top: 10px;
  left: 50%;
  width: 86px;
  height: 21px;
  border-radius: 14px;
  background: #030705;
  content: "";
  transform: translateX(-50%);
}

.screen-status {
  position: relative;
  z-index: 6;
  display: flex;
  height: 30px;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  padding: 0 7px;
  color: #cdd8d0;
  font-size: 8px;
}

.screen-status span {
  margin-right: auto;
  font-weight: 600;
}

.screen-status i {
  display: block;
  width: 5px;
  height: 5px;
  border: 1px solid rgba(237, 244, 239, .55);
  border-radius: 50%;
}

.screen-status i:last-child {
  width: 11px;
  border-radius: 3px;
  background: rgba(237, 244, 239, .66);
}

.screen-appbar {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid rgba(237, 244, 239, .1);
}

.screen-appbar b {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .13em;
}

.screen-appbar span {
  color: var(--muted);
  font-size: 8px;
  letter-spacing: .08em;
}

.mock-swing-view {
  position: relative;
  height: 310px;
  margin-top: 15px;
  overflow: hidden;
  border: 1px solid rgba(111, 227, 154, .12);
  border-radius: 20px;
  background:
    linear-gradient(rgba(111, 227, 154, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(111, 227, 154, .045) 1px, transparent 1px),
    radial-gradient(circle at 50% 72%, rgba(111, 227, 154, .1), transparent 9rem),
    #09140d;
  background-size: 30px 30px, 30px 30px, auto, auto;
}

.mock-view-label {
  position: absolute;
  z-index: 2;
  top: 12px;
  left: 12px;
  padding: 5px 8px;
  border: 1px solid rgba(111, 227, 154, .22);
  border-radius: 6px;
  background: rgba(5, 11, 7, .78);
  color: var(--mint);
  font-size: 7px;
  letter-spacing: .1em;
}

.mock-swing-view svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: rgba(183, 244, 205, .84);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.mock-swing-view svg circle {
  fill: rgba(111, 227, 154, .08);
  stroke: var(--mint);
}

.mock-swing-view .mock-club-path {
  stroke: rgba(242, 189, 86, .72);
  stroke-dasharray: 6 8;
  stroke-width: 2;
}

.mock-swing-view .mock-limbs {
  stroke: var(--mint);
}

.impact-dot {
  position: absolute;
  right: 26px;
  bottom: 35px;
  width: 12px;
  height: 12px;
  border: 3px solid rgba(237, 244, 239, .18);
  border-radius: 50%;
  background: var(--text);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, .5), 0 0 22px rgba(237, 244, 239, .2);
}

.mock-score {
  display: grid;
  min-height: 100px;
  grid-template-columns: 82px 1fr;
  gap: 18px;
  align-items: center;
}

.mock-score > strong {
  font-size: 56px;
  font-weight: 400;
  letter-spacing: -.08em;
}

.mock-score > span,
.mock-score b {
  display: block;
}

.mock-score > span {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.5;
}

.mock-score b {
  margin-bottom: 5px;
  color: var(--mint);
  font-size: 7px;
  letter-spacing: .11em;
}

.mock-metrics,
.putting-validation {
  display: grid;
  border-top: 1px solid var(--line);
  grid-template-columns: repeat(2, 1fr);
}

.mock-metrics span,
.putting-validation span {
  padding: 16px 10px;
  border-right: 1px solid var(--line);
}

.mock-metrics span:last-child,
.putting-validation span:last-child {
  border-right: 0;
}

.mock-metrics small,
.mock-metrics b,
.putting-validation small,
.putting-validation b {
  display: block;
}

.mock-metrics small,
.putting-validation small {
  color: var(--muted);
  font-size: 7px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.mock-metrics b,
.putting-validation b {
  margin-top: 4px;
  font-size: 15px;
  font-weight: 500;
}

.round-preview {
  background: #eaf1ec;
  color: #0c1710;
}

.round-preview::before {
  background: #d8e2db;
}

.round-preview .screen-status,
.round-preview .screen-appbar span {
  color: #617067;
}

.round-preview .screen-status i {
  border-color: rgba(12, 23, 16, .48);
}

.round-preview .screen-status i:last-child {
  background: rgba(12, 23, 16, .58);
}

.round-preview .screen-appbar {
  border-color: rgba(12, 23, 16, .12);
}

.round-total {
  display: flex;
  min-height: 160px;
  padding: 23px 4px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid rgba(12, 23, 16, .12);
}

.round-total span small,
.round-total span b {
  display: block;
}

.round-total small,
.round-note small {
  color: #647269;
  font-size: 7px;
  letter-spacing: .12em;
}

.round-total span b {
  margin-top: 5px;
  color: #177844;
  font-size: 62px;
  font-weight: 500;
  letter-spacing: -.09em;
  line-height: .9;
}

.round-total em {
  max-width: 125px;
  padding: 7px 9px;
  border-radius: 7px;
  background: #d7e9dd;
  color: #21633c;
  font-size: 8px;
  font-style: normal;
  line-height: 1.35;
}

.round-holes {
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid rgba(12, 23, 16, .13);
  border-radius: 12px;
}

.round-holes > span {
  display: grid;
  min-height: 42px;
  border-bottom: 1px solid rgba(12, 23, 16, .1);
  grid-template-columns: 54px repeat(3, 1fr);
  align-items: center;
  text-align: center;
}

.round-holes > span:last-child {
  border-bottom: 0;
}

.round-holes small {
  color: #6b786f;
  font-size: 7px;
  letter-spacing: .08em;
}

.round-holes b {
  font-size: 12px;
  font-weight: 500;
}

.round-holes .round-you {
  background: #cfe9d8;
  color: #145f36;
}

.round-stat-grid {
  display: grid;
  margin-top: 18px;
  border-block: 1px solid rgba(12, 23, 16, .12);
  grid-template-columns: repeat(2, 1fr);
}

.round-stat-grid span {
  padding: 15px 10px;
  border-right: 1px solid rgba(12, 23, 16, .1);
  border-bottom: 1px solid rgba(12, 23, 16, .1);
}

.round-stat-grid span:nth-child(even) {
  border-right: 0;
}

.round-stat-grid small,
.round-stat-grid b {
  display: block;
}

.round-stat-grid small {
  color: #6b786f;
  font-size: 7px;
}

.round-stat-grid b {
  margin-top: 3px;
  font-size: 15px;
  font-weight: 600;
}

.round-note {
  margin-top: 18px;
  padding: 16px;
  border-radius: 12px;
  background: #dbe6de;
}

.round-note p {
  margin: 8px 0 0;
  font-size: 11px;
  line-height: 1.5;
}

.putting-preview {
  background:
    radial-gradient(circle at 50% 46%, rgba(111, 227, 154, .09), transparent 12rem),
    #07100b;
}

.mock-putting-map {
  position: relative;
  height: 340px;
  margin-top: 15px;
  overflow: hidden;
  border: 1px solid rgba(111, 227, 154, .14);
  border-radius: 20px;
  background:
    linear-gradient(rgba(111, 227, 154, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(111, 227, 154, .04) 1px, transparent 1px),
    rgba(8, 21, 13, .7);
  background-size: 27px 27px;
}

.mock-putting-map::before,
.mock-putting-map::after {
  position: absolute;
  top: 38px;
  bottom: 38px;
  left: 50%;
  border-left: 1px dashed rgba(242, 189, 86, .45);
  content: "";
}

.mock-putting-map::after {
  top: 112px;
  right: 30px;
  bottom: auto;
  left: 30px;
  border-top: 1px solid rgba(111, 227, 154, .09);
  border-left: 0;
}

.putting-target {
  position: absolute;
  top: 40px;
  left: calc(50% - 15px);
  width: 30px;
  height: 30px;
  border: 1px solid rgba(242, 189, 86, .7);
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(242, 189, 86, .05), 0 0 0 18px rgba(242, 189, 86, .025);
}

.putting-ball-mini {
  position: absolute;
  bottom: 38px;
  left: calc(50% - 8px);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--text);
  box-shadow: 0 0 0 4px rgba(237, 244, 239, .09);
}

.putting-ideal,
.putting-measured {
  position: absolute;
  bottom: 51px;
  left: 50%;
  width: 2px;
  height: 240px;
  transform-origin: bottom;
}

.putting-ideal {
  background: rgba(242, 189, 86, .72);
}

.putting-measured {
  background: var(--mint);
  box-shadow: 0 0 16px rgba(111, 227, 154, .42);
  transform: rotate(-3.5deg);
}

.mock-putting-map small {
  position: absolute;
  top: 18px;
  left: 16px;
  color: var(--amber);
  font-size: 7px;
  letter-spacing: .1em;
}

.stroke-strip {
  display: flex;
  margin-top: 14px;
  gap: 7px;
}

.stroke-strip span {
  display: grid;
  width: 31px;
  height: 31px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--muted);
  font-size: 8px;
  place-items: center;
}

.stroke-strip span.active {
  border-color: var(--mint);
  background: var(--mint);
  color: var(--ink);
  font-weight: 700;
}

.putting-validation {
  margin-top: 14px;
  grid-template-columns: repeat(3, 1fr);
}

.putting-validation span {
  padding-inline: 7px;
  text-align: center;
}

.putting-validation b {
  color: var(--mint);
}

.validation-note {
  display: grid;
  margin-top: 16px;
  padding: 13px;
  border: 1px solid rgba(242, 189, 86, .18);
  border-radius: 11px;
  background: rgba(242, 189, 86, .05);
  grid-template-columns: 8px 1fr;
  gap: 10px;
}

.validation-note > i {
  width: 7px;
  height: 7px;
  margin-top: 4px;
  border-radius: 50%;
  background: var(--amber);
}

.validation-note b,
.validation-note span {
  display: block;
}

.validation-note span {
  color: var(--muted);
  font-size: 8px;
  line-height: 1.5;
}

.validation-note b {
  margin-bottom: 2px;
  color: var(--amber);
  font-size: 8px;
}

.screen-copy {
  padding: 26px 16px 0;
}

.screen-copy > span {
  color: var(--mint);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .14em;
}

.screen-copy h3 {
  max-width: 350px;
  margin: 14px 0 10px;
  font-size: clamp(23px, 2.2vw, 31px);
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: 1.08;
}

.screen-copy p {
  max-width: 360px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.screens-note {
  max-width: 820px;
  margin: 70px 0 0;
  color: #6f7e74;
  font-size: 10px;
  line-height: 1.7;
}

/* HD Putting */

.putting-section {
  min-height: 940px;
  padding: 0;
  overflow: hidden;
  isolation: isolate;
  border-block: 1px solid var(--line);
  background: #07100b;
}

.putting-media,
.putting-overlay {
  position: absolute;
  z-index: -2;
  inset: 0;
}

.putting-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.putting-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 12, 8, .16), rgba(5, 12, 8, .08) 45%, rgba(5, 12, 8, .95) 72%, rgba(5, 12, 8, .99)),
    linear-gradient(0deg, rgba(5, 12, 8, .66), transparent 45%, rgba(5, 12, 8, .36));
}

.putting-shell {
  display: grid;
  min-height: 940px;
  padding: 100px 0;
  grid-template-columns: minmax(360px, 1fr) minmax(420px, .85fr);
  gap: clamp(60px, 9vw, 140px);
  align-items: center;
}

.putting-copy {
  grid-column: 2;
}

.section-label-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.putting-copy h2 {
  margin: 20px 0 0;
  font-size: clamp(46px, 5.5vw, 76px);
  font-weight: 500;
  letter-spacing: -.06em;
  line-height: .98;
}

.putting-lede {
  margin: 27px 0 0;
  color: #aab8ae;
  font-size: 17px;
  line-height: 1.68;
}

.putting-points {
  margin: 32px 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.putting-points li {
  display: grid;
  min-height: 84px;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: center;
}

.putting-points > li > span {
  color: var(--mint);
  font-size: 10px;
}

.putting-points b,
.putting-points small {
  display: block;
}

.putting-points b {
  margin-bottom: 3px;
  font-size: 14px;
  font-weight: 600;
}

.putting-points small {
  color: var(--muted);
  font-size: 12px;
}

.concept-note {
  max-width: 480px;
  margin: 24px 0 0;
}

.putt-readout {
  align-self: end;
  width: min(100%, 420px);
  margin-bottom: 12px;
  padding: 20px;
  border: 1px solid rgba(236, 245, 239, .2);
  border-radius: 20px;
  background: rgba(6, 13, 8, .74);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .35);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.putt-map {
  position: relative;
  height: 240px;
  margin: 18px 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 13px;
  background:
    linear-gradient(rgba(111, 227, 154, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(111, 227, 154, .04) 1px, transparent 1px),
    rgba(9, 21, 13, .65);
  background-size: 28px 28px;
}

.putt-map::before {
  position: absolute;
  top: 19px;
  bottom: 19px;
  left: 50%;
  border-left: 1px dashed rgba(242, 189, 86, .55);
  content: "";
}

.putt-line {
  position: absolute;
  bottom: -14px;
  left: 50%;
  width: 2px;
  height: 238px;
  transform-origin: bottom;
}

.putt-line.ideal {
  background: var(--amber);
  opacity: .75;
  transform: rotate(0deg);
}

.putt-line.measured {
  background: var(--mint);
  box-shadow: 0 0 14px rgba(111, 227, 154, .4);
  transform: rotate(-3deg);
}

.putt-ball {
  position: absolute;
  bottom: 27px;
  left: calc(50% - 9px);
  width: 18px;
  height: 18px;
  border: 4px solid rgba(237, 244, 239, .18);
  border-radius: 50%;
  background: var(--text);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, .5);
}

.putt-label {
  position: absolute;
  padding: 3px 6px;
  border-radius: 4px;
  background: rgba(8, 15, 10, .85);
  color: var(--muted);
  font-size: 8px;
  letter-spacing: .1em;
}

.label-face { top: 30%; left: calc(50% + 14px); }
.label-path { top: 57%; left: calc(50% - 66px); }

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

.putt-stats span {
  padding: 0 12px;
  border-right: 1px solid var(--line);
  text-align: center;
}

.putt-stats span:last-child {
  border-right: 0;
}

.putt-stats small,
.putt-stats b {
  display: block;
}

.putt-stats small {
  color: var(--muted);
  font-size: 8px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.putt-stats b {
  margin-top: 2px;
  color: var(--mint);
  font-size: 18px;
  font-weight: 500;
}

.putt-readout > p {
  margin: 17px 0 0;
  color: #77857b;
  font-size: 9px;
  text-align: center;
  text-transform: uppercase;
}

/* Foundation */

.foundations-section {
  background: #e7eee8;
  color: #101713;
}

.foundations-section .section-number {
  color: #277a48;
}

.foundations-section .split-heading > p {
  color: #58645c;
}

.foundation-board {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 14px;
}

.foundation-feature {
  position: relative;
  min-height: 330px;
  padding: clamp(24px, 4vw, 42px);
  overflow: hidden;
  border: 1px solid rgba(11, 28, 17, .13);
  border-radius: 24px;
  background: #dbe5dd;
}

.foundation-feature.large {
  grid-row: span 2;
  min-height: 674px;
  background: #12251a;
  color: var(--text);
}

.foundation-feature.privacy-card {
  background: #f3f6f3;
}

.foundation-feature .feature-topline {
  color: #536159;
}

.foundation-feature.large .feature-topline {
  color: #819087;
}

.foundation-feature h3 {
  margin: 54px 0 0;
  max-width: 520px;
  font-size: clamp(31px, 4vw, 52px);
  font-weight: 500;
  letter-spacing: -.055em;
  line-height: 1;
}

.foundation-feature:not(.large) h3 {
  max-width: 360px;
  font-size: clamp(27px, 3vw, 38px);
}

.foundation-feature p {
  max-width: 420px;
  margin: 20px 0 0;
  color: #5b675f;
  font-size: 13px;
  line-height: 1.65;
}

.scorecard {
  position: absolute;
  right: clamp(22px, 4vw, 50px);
  bottom: clamp(28px, 5vw, 62px);
  left: clamp(22px, 4vw, 50px);
  border-top: 1px solid rgba(237, 244, 239, .16);
}

.scorecard > div {
  display: grid;
  min-height: 58px;
  border-bottom: 1px solid rgba(237, 244, 239, .13);
  grid-template-columns: 68px repeat(9, 1fr);
  align-items: center;
  color: #89978d;
  font-size: 11px;
  text-align: center;
}

.scorecard span {
  font-size: 9px;
  letter-spacing: .1em;
  text-align: left;
}

.scorecard b {
  font-weight: 500;
}

.scorecard .score-row {
  color: var(--text);
}

.scorecard .score-row b:nth-child(2),
.scorecard .score-row b:nth-child(6),
.scorecard .score-row b:nth-child(7),
.scorecard .score-row b:nth-child(9) {
  color: var(--amber);
}

.mini-chart {
  display: flex;
  height: 104px;
  margin-top: 39px;
  align-items: end;
  gap: 7px;
}

.mini-chart i {
  height: var(--h);
  flex: 1;
  border-radius: 3px 3px 0 0;
  background: #68cc8c;
  opacity: .42;
}

.mini-chart i:last-child {
  background: #277a48;
  opacity: 1;
}

.lock-mark {
  position: absolute;
  top: 88px;
  right: 38px;
  display: grid;
  width: 70px;
  height: 70px;
  border: 1px solid rgba(39, 122, 72, .25);
  border-radius: 50%;
  color: #277a48;
  font-size: 26px;
  place-items: center;
}

/* Roadmap */

.roadmap-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 30%, rgba(255, 119, 93, .05), transparent 25rem),
    var(--bg-soft);
}

.roadmap-intro {
  display: grid;
  margin-bottom: 82px;
  grid-template-columns: 1fr;
}

.roadmap-intro p {
  max-width: 630px;
  margin: 30px 0 0 auto;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.roadmap-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.roadmap-item {
  position: relative;
  display: grid;
  min-height: 310px;
  padding: 43px 0;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 100px minmax(0, 1fr) 280px;
  gap: 30px;
  align-items: center;
}

.roadmap-item::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(111, 227, 154, .045), transparent 60%);
  content: "";
  opacity: 0;
  transition: opacity .35s ease;
}

.roadmap-item:hover::before,
.roadmap-item.current::before {
  opacity: 1;
}

.roadmap-index {
  align-self: start;
  padding-top: 4px;
  color: #647168;
  font-size: 10px;
  letter-spacing: .13em;
}

.roadmap-content {
  position: relative;
  z-index: 1;
}

.roadmap-content h3 {
  margin: 18px 0 12px;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 500;
  letter-spacing: -.055em;
  line-height: .95;
}

.roadmap-content p {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.roadmap-content ul {
  display: flex;
  margin: 22px 0 0;
  padding: 0;
  flex-wrap: wrap;
  gap: 9px;
  list-style: none;
}

.roadmap-content li {
  padding: 6px 9px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: #849188;
  font-size: 9px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.roadmap-glyph {
  position: relative;
  justify-self: center;
  opacity: .62;
  transition: opacity .3s ease, transform .4s var(--ease);
}

.roadmap-item:hover .roadmap-glyph {
  opacity: 1;
  transform: translateY(-5px);
}

.phone-glyph {
  width: 96px;
  height: 172px;
  border: 2px solid var(--mint);
  border-radius: 22px;
}

.phone-glyph::before {
  position: absolute;
  top: 9px;
  left: 50%;
  width: 33px;
  height: 5px;
  border-radius: 10px;
  background: var(--mint);
  content: "";
  transform: translateX(-50%);
}

.phone-glyph i {
  position: absolute;
  top: 53px;
  right: 19px;
  left: 19px;
  height: 46px;
  border-top: 2px solid var(--amber);
  border-radius: 50%;
  transform: rotate(-12deg);
}

.putting-glyph {
  width: 190px;
  height: 150px;
  border-bottom: 2px solid var(--mint);
}

.putting-glyph::before {
  position: absolute;
  top: 28px;
  left: 29px;
  width: 106px;
  height: 106px;
  border: 1px dashed var(--amber);
  border-radius: 50%;
  content: "";
}

.putting-glyph::after {
  position: absolute;
  top: 42px;
  right: 16px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--text);
  box-shadow: 0 0 0 8px rgba(237, 244, 239, .07);
  content: "";
}

.sensor-glyph {
  display: flex;
  width: 190px;
  height: 150px;
  align-items: end;
  justify-content: center;
  gap: 16px;
}

.sensor-glyph i {
  width: 20px;
  border: 2px solid var(--mint);
  border-radius: 16px;
}

.sensor-glyph i:nth-child(1) { height: 54px; }
.sensor-glyph i:nth-child(2) { height: 88px; }
.sensor-glyph i:nth-child(3) { height: 125px; }

.monitor-glyph {
  width: 180px;
  height: 142px;
  border: 2px solid var(--mint);
  border-radius: 26px 26px 42px 42px;
}

.monitor-glyph i {
  position: absolute;
  top: 26px;
  left: 50%;
  width: 72px;
  height: 44px;
  border: 1px solid rgba(111, 227, 154, .5);
  border-radius: 7px;
  transform: translateX(-50%);
}

.monitor-glyph span {
  position: absolute;
  right: 34px;
  bottom: 24px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--coral);
}

/* Truth + FAQ */

.truth-section {
  border-block: 1px solid var(--line);
  background: #c7f1d5;
  color: #0a140d;
}

.truth-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: clamp(70px, 10vw, 150px);
  align-items: center;
}

.truth-section .section-number {
  color: #287a48;
}

.truth-copy h2 em {
  color: #28653f;
}

.truth-copy p {
  max-width: 670px;
  margin: 30px 0;
  color: #496052;
  font-size: 17px;
  line-height: 1.72;
}

.truth-section .text-link {
  border-color: rgba(10, 20, 13, .25);
  color: #0a140d;
}

.truth-ledger {
  padding: 30px;
  border: 1px solid rgba(10, 20, 13, .16);
  border-radius: 20px;
  background: rgba(247, 255, 249, .5);
}

.truth-ledger > div {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid rgba(10, 20, 13, .12);
  color: #3f5547;
  font-size: 12px;
}

.truth-ledger .ledger-head {
  min-height: 38px;
  color: #56705e;
  font-size: 8px;
}

.truth-ledger .ledger-head b {
  color: #0a140d;
}

.truth-ledger > div:last-child {
  border: 0;
}

.truth-ledger b {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.truth-ledger .yes { color: #237642; }
.truth-ledger .neutral { color: #84640e; }
.truth-ledger .future-text { color: #3c5b84; }
.truth-ledger .no { color: #a33b2c; }

.faq-section {
  background: var(--bg);
}

.faq-grid {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: clamp(60px, 10vw, 150px);
}

.faq-intro {
  position: sticky;
  top: 120px;
  align-self: start;
}

.faq-intro h2 {
  font-size: clamp(41px, 5vw, 66px);
}

.faq-intro p {
  max-width: 360px;
  margin: 24px 0 0;
  color: var(--muted);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: grid;
  min-height: 94px;
  padding: 22px 0;
  grid-template-columns: 1fr 28px;
  gap: 28px;
  align-items: center;
  cursor: pointer;
  font-size: clamp(18px, 2vw, 23px);
  font-weight: 500;
  letter-spacing: -.025em;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  position: relative;
  width: 26px;
  height: 26px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
}

.faq-list summary span::before,
.faq-list summary span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  background: var(--mint);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform .25s ease;
}

.faq-list summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-list details p {
  max-width: 680px;
  margin: -2px 56px 30px 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

/* Final CTA + footer */

.final-cta {
  position: relative;
  min-height: 690px;
  padding: 120px 0;
  overflow: hidden;
  background: var(--mint);
  color: var(--ink);
}

.cta-shell {
  position: relative;
  z-index: 2;
  text-align: center;
}

.cta-shell .section-number {
  color: #245a37;
}

.cta-shell h2 {
  max-width: 1000px;
  margin: 28px auto 0;
  font-size: clamp(56px, 8vw, 106px);
}

.cta-shell p {
  max-width: 620px;
  margin: 29px auto 32px;
  color: #2d573b;
  font-size: 17px;
}

.cta-shell small {
  display: block;
  margin-top: 19px;
  color: #376447;
  font-size: 10px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.cta-arc {
  position: absolute;
  top: -400px;
  left: 50%;
  width: 1020px;
  height: 1020px;
  border: 1px solid rgba(7, 16, 11, .12);
  border-radius: 50%;
  transform: translateX(-50%);
}

.cta-arc::before,
.cta-arc::after {
  position: absolute;
  border: 1px solid rgba(7, 16, 11, .1);
  border-radius: 50%;
  content: "";
  inset: 85px;
}

.cta-arc::after {
  inset: 180px;
}

.cta-arc span {
  position: absolute;
  right: 124px;
  bottom: 142px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 10px rgba(7, 16, 11, .08);
}

.site-footer {
  padding: 70px 0 28px;
  background: #060c08;
}

.footer-top {
  display: grid;
  padding-bottom: 68px;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.footer-top > p {
  margin: 4px 0 0;
  color: #b7c2ba;
  font-size: 16px;
  line-height: 1.45;
}

.footer-links {
  display: grid;
  justify-self: end;
  grid-template-columns: repeat(2, 100px);
  gap: 10px 28px;
}

.footer-links a {
  color: var(--muted);
  font-size: 12px;
}

.footer-links a:hover {
  color: var(--mint);
}

.footer-bottom {
  display: flex;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: #66736a;
  font-size: 9px;
  letter-spacing: .05em;
  text-transform: uppercase;
}

/* Motion */

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}

.js .reveal.in-view {
  opacity: 1;
  transform: none;
}

.js .hero .reveal:nth-child(2) { transition-delay: .08s; }
.js .hero .reveal:nth-child(3) { transition-delay: .16s; }
.js .hero .reveal:nth-child(4) { transition-delay: .24s; }
.js .hero .reveal:nth-child(5) { transition-delay: .32s; }

@media (max-width: 1080px) {
  :root {
    --shell: min(100% - 36px, 960px);
  }

  .nav-shell {
    grid-template-columns: 1fr auto;
  }

  .primary-nav,
  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .primary-nav.open {
    position: fixed;
    top: 76px;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    padding: 54px 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    border-top: 1px solid var(--line);
    background: rgba(7, 15, 10, .98);
  }

  .primary-nav.open a {
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    color: var(--text);
    font-size: 28px;
    letter-spacing: -.04em;
  }

  .nav-toggle[aria-expanded="true"] > span:first-child {
    transform: translateY(3px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] > span:nth-child(2) {
    transform: translateY(-3px) rotate(-45deg);
  }

  .hero-shell {
    grid-template-columns: minmax(0, 1fr) minmax(290px, .55fr);
    gap: 28px;
  }

  .hero-signal-card {
    margin-bottom: 100px;
  }

  .app-showcase {
    grid-template-columns: minmax(300px, .65fr) minmax(430px, 1fr);
    gap: 40px;
  }

  .orbit-two { width: 510px; height: 510px; }
  .orbit-one { width: 410px; height: 410px; }

  .putting-shell {
    grid-template-columns: minmax(320px, .8fr) minmax(420px, 1fr);
    gap: 45px;
  }

  .roadmap-item {
    grid-template-columns: 72px minmax(0, 1fr) 210px;
  }

  .truth-grid {
    gap: 60px;
  }
}

@media (max-width: 820px) {
  :root {
    --shell: calc(100vw - 32px);
  }

  .section {
    padding: 92px 0;
  }

  .split-heading,
  .truth-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero {
    min-height: 950px;
    align-items: flex-end;
  }

  .hero-media img {
    object-position: 66% center;
  }

  .hero-media::after {
    background:
      linear-gradient(0deg, rgba(5, 12, 8, .98) 0%, rgba(5, 12, 8, .92) 45%, rgba(5, 12, 8, .25) 83%, rgba(5, 12, 8, .45) 100%),
      linear-gradient(90deg, rgba(5, 12, 8, .5), transparent);
  }

  .hero-shell {
    display: block;
    padding-top: 170px;
  }

  .hero-copy {
    padding: 210px 0 104px;
  }

  .hero h1 {
    max-width: 700px;
  }

  .hero-signal-card {
    position: absolute;
    top: 126px;
    right: 0;
    width: 270px;
    padding: 14px;
    opacity: .9;
  }

  .signal-score-row {
    margin-top: 12px;
  }

  .signal-score-row strong {
    font-size: 43px;
  }

  .swing-trace {
    height: 58px;
    margin: 8px 0;
  }

  .signal-metrics {
    padding-top: 10px;
  }

  .signal-metrics span:last-child {
    display: none;
  }

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

  .scroll-cue,
  .hero-index {
    display: none;
  }

  .app-showcase {
    grid-template-columns: 1fr;
    gap: 82px;
  }

  .phone-stage {
    min-height: 630px;
  }

  .analysis-panel {
    max-width: 640px;
    margin-inline: auto;
  }

  .capability-grid {
    grid-template-columns: 1fr;
    margin-top: 72px;
  }

  .capability-card {
    min-height: 255px;
  }

  .capability-card h3 {
    margin-top: 80px;
  }

  .screens-intro {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .screens-intro > div:first-child > p {
    max-width: 620px;
  }

  .launch-card {
    width: min(100%, 430px);
  }

  .screen-gallery {
    width: calc(100vw - ((100vw - var(--shell)) / 2));
    padding-right: 22px;
    padding-bottom: 26px;
    overflow-x: auto;
    grid-auto-columns: minmax(292px, 70vw);
    grid-auto-flow: column;
    grid-template-columns: none;
    scroll-padding-left: 0;
    scroll-snap-type: x mandatory;
  }

  .screen-card {
    scroll-snap-align: start;
  }

  .screen-card-offset {
    margin-top: 0;
  }

  .putting-section,
  .putting-shell {
    min-height: 1180px;
  }

  .putting-media img {
    object-position: 32% top;
  }

  .putting-overlay {
    background: linear-gradient(0deg, rgba(5, 12, 8, 1) 0%, rgba(5, 12, 8, .96) 48%, rgba(5, 12, 8, .22) 76%, rgba(5, 12, 8, .22) 100%);
  }

  .putting-shell {
    display: flex;
    padding: 490px 0 86px;
    flex-direction: column;
    justify-content: flex-end;
    gap: 38px;
  }

  .putting-copy {
    order: 1;
  }

  .putt-readout {
    display: none;
  }

  .foundation-board {
    grid-template-columns: 1fr;
  }

  .foundation-feature.large {
    grid-row: auto;
    min-height: 580px;
  }

  .foundation-feature {
    min-height: 300px;
  }

  .roadmap-item {
    grid-template-columns: 62px 1fr;
  }

  .roadmap-glyph {
    display: none;
  }

  .roadmap-intro p {
    margin-left: 0;
  }

  .faq-intro {
    position: static;
    margin-bottom: 34px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-top > p {
    grid-column: 1;
    grid-row: 2;
  }

  .footer-links {
    grid-column: 2;
    grid-row: 1 / span 2;
  }
}

@media (max-width: 560px) {
  :root {
    --shell: calc(100vw - 28px);
    --radius: 20px;
  }

  .nav-shell {
    min-height: 68px;
  }

  .primary-nav.open {
    top: 68px;
  }

  .hero {
    min-height: 890px;
  }

  .hero-shell {
    padding-top: 134px;
  }

  .hero-copy {
    padding: 222px 0 58px;
  }

  .hero h1 {
    font-size: clamp(49px, 14.7vw, 70px);
    line-height: .91;
  }

  .hero-lede {
    margin-top: 24px;
    font-size: 16px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 21px;
    margin-top: 27px;
  }

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

  .hero-notes {
    margin-top: 28px;
    gap: 8px;
  }

  .hero-notes li:nth-child(3) {
    display: none;
  }

  .hero-signal-card {
    top: 102px;
    width: 245px;
  }

  .signal-verdict,
  .signal-topline b {
    display: none;
  }

  .section-heading h2,
  .screens-intro h2,
  .roadmap-intro h2,
  .truth-copy h2,
  .faq-intro h2,
  .cta-shell h2 {
    font-size: clamp(40px, 12.2vw, 58px);
  }

  .split-heading {
    margin-bottom: 58px;
  }

  .phone-stage {
    min-height: 570px;
  }

  .phone-shell {
    width: 270px;
  }

  .orbit-one { width: 360px; height: 360px; }
  .orbit-two { width: 450px; height: 450px; }

  .chip-one { right: -4px; }
  .chip-two { left: -4px; }

  .analysis-panel-head {
    align-items: stretch;
    flex-direction: column;
  }

  .view-switch {
    width: fit-content;
  }

  .analysis-score {
    margin-top: 30px;
    grid-template-columns: 94px 1fr;
    gap: 18px;
  }

  .score-ring {
    width: 94px;
    height: 94px;
  }

  .score-ring::before {
    width: 78px;
    height: 78px;
  }

  .score-ring b {
    font-size: 30px;
  }

  .analysis-score > div:last-child strong {
    font-size: 14px;
  }

  .analysis-score > div:last-child p {
    display: none;
  }

  .metric-list > div {
    grid-template-columns: 1fr 80px;
  }

  .metric-list i {
    display: none;
  }

  .capability-card {
    padding: 23px;
  }

  .screens-intro {
    margin-bottom: 52px;
  }

  .screens-intro > div:first-child > p {
    font-size: 15px;
  }

  .launch-card {
    padding: 24px;
  }

  .screen-gallery {
    grid-auto-columns: min(84vw, 320px);
    gap: 12px;
  }

  .screen-device {
    min-height: 610px;
    padding: 15px;
    border-radius: 35px;
  }

  .mock-swing-view {
    height: 292px;
  }

  .mock-putting-map {
    height: 318px;
  }

  .screen-copy {
    padding-inline: 8px;
  }

  .screens-note {
    margin-top: 42px;
  }

  .putting-section,
  .putting-shell {
    min-height: 1080px;
  }

  .putting-shell {
    padding-top: 390px;
  }

  .putting-copy h2 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .putting-lede {
    font-size: 15px;
  }

  .putting-points li {
    min-height: 92px;
  }

  .foundation-feature.large {
    min-height: 520px;
  }

  .foundation-feature h3,
  .foundation-feature:not(.large) h3 {
    margin-top: 44px;
    font-size: 31px;
  }

  .scorecard {
    overflow-x: auto;
  }

  .scorecard > div {
    min-width: 560px;
  }

  .lock-mark {
    display: none;
  }

  .roadmap-intro {
    margin-bottom: 54px;
  }

  .roadmap-item {
    min-height: 0;
    padding: 34px 0;
    grid-template-columns: 36px 1fr;
    gap: 10px;
  }

  .roadmap-content h3 {
    font-size: 39px;
  }

  .roadmap-content p {
    font-size: 13px;
  }

  .roadmap-content ul {
    gap: 6px;
  }

  .truth-ledger {
    padding: 19px;
  }

  .truth-ledger > div {
    font-size: 11px;
  }

  .faq-list summary {
    min-height: 84px;
    gap: 16px;
    font-size: 17px;
  }

  .faq-list details p {
    margin-right: 0;
  }

  .final-cta {
    min-height: 640px;
    padding: 112px 0 90px;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-top > p,
  .footer-links {
    grid-column: 1;
    grid-row: auto;
  }

  .footer-links {
    margin-top: 18px;
    justify-self: start;
  }

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

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

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

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