:root {
  --green-950: #032a1a;
  --green-900: #063f26;
  --green-800: #075b2c;
  --green-700: #0b7a31;
  --green-500: #48a91f;
  --green-400: #6bc52d;
  --blue-950: #062b55;
  --blue-900: #073b78;
  --blue-800: #0b4c92;
  --blue-600: #0c76c6;
  --sky: #e8f7ff;
  --orange: #f6a800;
  --orange-dark: #e88700;
  --cream: #fffdf5;
  --white: #ffffff;
  --ink: #102014;
  --muted: #5d6a60;
  --line: rgba(6, 63, 38, 0.13);
  --shadow: 0 28px 70px rgba(3, 42, 26, 0.16);
  --shadow-soft: 0 14px 35px rgba(3, 42, 26, 0.10);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

button,
input,
a {
  font: inherit;
}

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

a {
  color: inherit;
}

button {
  cursor: pointer;
}

.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;
  top: 10px;
  left: 10px;
  z-index: 9999;
  transform: translateY(-150%);
  padding: 12px 16px;
  border-radius: 10px;
  background: var(--white);
  color: var(--green-900);
  font-weight: 800;
}

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

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

.section {
  padding: 96px 0;
}

.announcement {
  position: relative;
  z-index: 60;
  padding: 9px 20px;
  background: var(--green-950);
  color: var(--white);
  font-size: 0.86rem;
  text-align: center;
}

.announcement p {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
}

.announcement strong {
  color: #a7ee79;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  background: rgba(255, 253, 245, 0.88);
  backdrop-filter: blur(18px);
  box-shadow: 0 6px 24px rgba(3, 42, 26, 0.06);
}

.nav-wrap {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  width: 175px;
  flex: 0 0 auto;
}

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

.primary-nav a {
  position: relative;
  color: var(--green-950);
  font-weight: 800;
  text-decoration: none;
}

.primary-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 3px;
  border-radius: 99px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

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

.nav-cta {
  padding: 11px 18px;
  border-radius: 999px;
  background: var(--green-900);
  color: var(--white) !important;
  box-shadow: 0 8px 18px rgba(6, 63, 38, 0.18);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 13px;
  background: var(--green-900);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span:not(.sr-only) {
  width: 22px;
  height: 2px;
  border-radius: 99px;
  background: white;
  transition: transform 200ms ease, opacity 200ms ease;
}

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

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(4) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 760px;
  padding: 78px 0 118px;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 15%, rgba(107, 197, 45, 0.22), transparent 24%),
    radial-gradient(circle at 82% 16%, rgba(12, 118, 198, 0.22), transparent 27%),
    linear-gradient(135deg, #f9fff3 0%, #f1fbff 55%, #fff9e9 100%);
}

.hero-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(480px, 1.08fr);
  align-items: center;
  gap: 60px;
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--green-800);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 34px;
  height: 4px;
  border-radius: 99px;
  background: var(--orange);
}

.eyebrow.light {
  color: #c8ffad;
}

.hero-logo {
  width: min(520px, 94%);
  margin: 0 0 10px -11px;
}

.hero h1 {
  max-width: 650px;
  margin: 0;
  color: var(--green-950);
  font-size: clamp(2.65rem, 5.3vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.hero h1 em {
  display: block;
  color: var(--blue-800);
  font-style: normal;
}

.hero-lede {
  max-width: 610px;
  margin: 24px 0 0;
  color: #3d5143;
  font-size: clamp(1.05rem, 1.8vw, 1.24rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 32px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 22px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button:focus-visible {
  outline: 4px solid rgba(246, 168, 0, 0.35);
  outline-offset: 3px;
}

.button-primary {
  border-color: var(--orange);
  background: linear-gradient(135deg, #ffb516, var(--orange-dark));
  color: var(--green-950);
  box-shadow: 0 12px 26px rgba(232, 135, 0, 0.28);
}

.button-primary:hover {
  box-shadow: 0 17px 34px rgba(232, 135, 0, 0.35);
}

.button-secondary {
  border-color: rgba(6, 63, 38, 0.18);
  background: rgba(255,255,255,0.7);
  color: var(--green-900);
}

.button-light {
  background: white;
  color: var(--green-900);
  box-shadow: var(--shadow-soft);
}

.button-full {
  width: 100%;
}

.hero-proof {
  display: flex;
  gap: 28px;
  margin-top: 38px;
}

.hero-proof div {
  min-width: 0;
}

.hero-proof div + div {
  padding-left: 28px;
  border-left: 1px solid rgba(6, 63, 38, 0.14);
}

.hero-proof strong,
.hero-proof span {
  display: block;
}

.hero-proof strong {
  color: var(--green-900);
  font-size: 1.08rem;
}

.hero-proof span {
  color: var(--muted);
  font-size: 0.82rem;
}

.hero-visual {
  position: relative;
}

.product-stage {
  position: relative;
  z-index: 2;
  padding: 22px;
  transform-style: preserve-3d;
  transition: transform 170ms ease-out;
}

.product-stage > img {
  position: relative;
  z-index: 3;
  width: 100%;
  filter: drop-shadow(0 35px 34px rgba(3, 42, 26, 0.22));
  transform: translateZ(28px);
}

.burst {
  position: absolute;
  inset: 6% 2% 1% 9%;
  z-index: 0;
  border-radius: 50%;
  background:
    repeating-conic-gradient(from -15deg, rgba(246,168,0,0.23) 0 5deg, transparent 5deg 13deg);
  animation: rotate-slow 32s linear infinite;
}

.burst::before {
  content: "";
  position: absolute;
  inset: 16%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.9), rgba(255,255,255,0.15) 68%, transparent 70%);
}

.price-badge {
  position: absolute;
  right: 0;
  bottom: 8%;
  z-index: 5;
  width: 126px;
  height: 126px;
  display: grid;
  place-content: center;
  border: 8px solid white;
  border-radius: 50%;
  background: var(--green-900);
  color: white;
  text-align: center;
  box-shadow: 0 18px 32px rgba(3,42,26,0.25);
  transform: rotate(7deg) translateZ(50px);
}

.price-badge span,
.price-badge strong {
  display: block;
}

.price-badge span {
  color: #c7ff9e;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-badge strong {
  font-size: 1.7rem;
  line-height: 1.1;
}

.image-switcher {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: -12px;
}

.image-thumb {
  display: grid;
  grid-template-columns: 54px auto;
  align-items: center;
  gap: 10px;
  padding: 7px 13px 7px 7px;
  border: 2px solid transparent;
  border-radius: 14px;
  background: rgba(255,255,255,0.78);
  color: var(--green-950);
  box-shadow: var(--shadow-soft);
  font-size: 0.8rem;
  font-weight: 900;
}

.image-thumb img {
  width: 54px;
  height: 42px;
  border-radius: 9px;
  object-fit: cover;
}

.image-thumb.is-active {
  border-color: var(--orange);
  background: white;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}

.hero-shape-one {
  width: 420px;
  height: 420px;
  right: -220px;
  top: 25px;
  border: 75px solid rgba(11, 76, 146, 0.08);
}

.hero-shape-two {
  width: 280px;
  height: 280px;
  left: -170px;
  bottom: 15px;
  border: 60px solid rgba(72, 169, 31, 0.1);
}

.golf-ball {
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 33% 28%, white 0 17%, transparent 18%),
    radial-gradient(circle at 64% 35%, #d7d7d7 0 5%, transparent 6%),
    radial-gradient(circle at 36% 62%, #d7d7d7 0 5%, transparent 6%),
    radial-gradient(circle at 72% 69%, #d7d7d7 0 4%, transparent 5%),
    radial-gradient(circle at 28% 34%, #fff, #d9d9d9 68%, #aaa 100%);
  box-shadow: inset -10px -14px 20px rgba(0,0,0,0.12), 0 20px 30px rgba(3,42,26,0.13);
}

.golf-ball::after {
  content: "";
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(125,125,125,0.25) 0 7%, transparent 8%) 0 0 / 17px 17px;
  opacity: 0.8;
}

.golf-ball-one {
  width: 72px;
  height: 72px;
  top: 125px;
  left: 48%;
  animation: float 5s ease-in-out infinite;
}

.golf-ball-two {
  width: 42px;
  height: 42px;
  left: 8%;
  bottom: 105px;
  animation: float 4.2s ease-in-out infinite reverse;
}

.hero-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 100px;
}

.hero-wave svg {
  width: 100%;
  height: 100%;
}

.hero-wave path {
  fill: var(--cream);
}

.quick-features {
  padding-top: 0;
  padding-bottom: 30px;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--line);
  box-shadow: var(--shadow-soft);
}

.feature-strip article {
  min-height: 146px;
  display: flex;
  align-items: center;
  gap: 17px;
  padding: 28px;
  background: white;
}

.feature-icon {
  width: 55px;
  height: 55px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 17px;
  background: #effbe6;
  color: var(--green-800);
  font-size: 2rem;
  font-weight: 900;
}

.feature-strip article:nth-child(2) .feature-icon {
  background: #edf7ff;
  color: var(--blue-800);
}

.feature-strip article:nth-child(3) .feature-icon {
  background: #fff5d8;
  color: var(--orange-dark);
}

.feature-strip h2 {
  margin: 0 0 4px;
  color: var(--green-950);
  font-size: 1rem;
}

.feature-strip p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

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

.section-heading .eyebrow {
  justify-content: center;
}

.section-heading.align-left {
  margin-inline: 0;
  text-align: left;
}

.section-heading.align-left .eyebrow {
  justify-content: flex-start;
}

.section-heading h2,
.box-copy h2,
.launch-copy h2,
.purchase-card h2,
.final-cta h2 {
  margin: 0;
  color: var(--green-950);
  font-size: clamp(2.2rem, 4.4vw, 4rem);
  line-height: 1.03;
  letter-spacing: -0.045em;
}

.section-heading > p:last-child {
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 1.08rem;
}

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

.step-card {
  position: relative;
  min-height: 390px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: white;
  box-shadow: 0 10px 28px rgba(3, 42, 26, 0.07);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-soft);
}

.step-card::after {
  content: "";
  position: absolute;
  width: 110px;
  height: 110px;
  right: -55px;
  bottom: -55px;
  border-radius: 50%;
  background: rgba(107,197,45,0.12);
}

.step-card:nth-child(2)::after {
  background: rgba(12,118,198,0.12);
}

.step-card:nth-child(3)::after {
  background: rgba(246,168,0,0.15);
}

.step-card:nth-child(4)::after {
  background: rgba(11,122,49,0.13);
}

.step-number {
  position: absolute;
  top: 18px;
  right: 20px;
  color: rgba(6,63,38,0.14);
  font-size: 2.5rem;
  font-weight: 950;
  line-height: 1;
}

.step-card h3 {
  margin: 20px 0 8px;
  color: var(--green-950);
  font-size: 1.28rem;
}

.step-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.step-illustration {
  position: relative;
  height: 138px;
  border-radius: 18px;
  background: linear-gradient(180deg, #e8f8ff 0%, #e8f8ff 66%, #90ca57 67%, #67ae33 100%);
  overflow: hidden;
}

.distance-illustration {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 28px 26px;
}

.stand {
  width: 13px;
  height: 54px;
  border-radius: 6px 6px 2px 2px;
  background: white;
  box-shadow: 0 5px 8px rgba(0,0,0,0.12);
}

.stand::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  margin-left: -3px;
  margin-top: -12px;
  border-radius: 50%;
  background: white;
  box-shadow: inset -3px -4px 5px rgba(0,0,0,0.13);
}

.distance-line {
  position: absolute;
  left: 52px;
  right: 52px;
  bottom: 51px;
  border-top: 3px dashed var(--orange);
}

.distance-line::before,
.distance-line::after {
  content: "";
  position: absolute;
  top: -6px;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

.distance-line::before {
  left: -1px;
  border-right: 8px solid var(--orange);
}

.distance-line::after {
  right: -1px;
  border-left: 8px solid var(--orange);
}

.target-illustration,
.win-illustration {
  display: grid;
  place-items: end center;
  padding-bottom: 24px;
}

.target,
.mini-target,
.win-illustration .target {
  position: absolute;
  width: 48px;
  height: 48px;
  bottom: 73px;
  border: 6px solid white;
  border-radius: 50%;
  background:
    radial-gradient(circle, var(--blue-800) 0 12%, white 13% 28%, var(--orange) 29% 50%, white 51% 64%, var(--green-500) 65%);
  box-shadow: 0 6px 12px rgba(0,0,0,0.16);
}

.stand-post {
  width: 16px;
  height: 64px;
  border-radius: 7px 7px 2px 2px;
  background: white;
  box-shadow: 0 5px 8px rgba(0,0,0,0.12);
}

.shot-illustration .shot-ball {
  position: absolute;
  z-index: 3;
  width: 26px;
  height: 26px;
  left: 46px;
  bottom: 30px;
  border-radius: 50%;
  background: white;
  box-shadow: inset -3px -3px 5px rgba(0,0,0,0.14);
}

.shot-arc {
  position: absolute;
  width: 126px;
  height: 82px;
  left: 51px;
  top: 18px;
  border-top: 4px dashed var(--orange);
  border-radius: 50%;
  transform: rotate(-5deg);
}

.shot-illustration .mini-target {
  width: 38px;
  height: 38px;
  right: 28px;
  bottom: 63px;
  border-width: 4px;
}

.shot-illustration .mini-target::after {
  content: "";
  position: absolute;
  width: 11px;
  height: 50px;
  top: 31px;
  left: 9px;
  border-radius: 6px;
  background: white;
}

.win-illustration .target {
  transform: translate(20px, -7px) rotate(24deg);
  animation: target-wobble 1.7s ease-in-out infinite;
}

.impact {
  position: absolute;
  width: 74px;
  height: 74px;
  left: calc(50% + 4px);
  top: 15px;
  background:
    repeating-conic-gradient(var(--orange) 0 4deg, transparent 4deg 30deg);
  border-radius: 50%;
}

.equipment-note {
  margin: 24px 0 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

.inside-box {
  position: relative;
  background:
    linear-gradient(135deg, rgba(3,42,26,0.98), rgba(7,91,44,0.97)),
    var(--green-950);
  color: white;
  overflow: hidden;
}

.inside-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 6% 12%, rgba(107,197,45,0.2), transparent 25%),
    radial-gradient(circle at 94% 86%, rgba(246,168,0,0.12), transparent 24%),
    repeating-linear-gradient(125deg, transparent 0 22px, rgba(255,255,255,0.025) 23px 25px);
}

.box-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  align-items: center;
  gap: 70px;
}

.image-frame {
  padding: 13px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 30px;
  background: rgba(255,255,255,0.08);
  box-shadow: 0 32px 70px rgba(0,0,0,0.28);
  transform: rotate(-1.5deg);
}

.image-frame img {
  border-radius: 20px;
}

.box-copy h2 {
  color: white;
}

.box-intro {
  margin: 22px 0 30px;
  color: rgba(255,255,255,0.74);
  font-size: 1.06rem;
}

.contents-list {
  display: grid;
  gap: 14px;
}

.contents-list article {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 17px;
  background: rgba(255,255,255,0.07);
}

.contents-number {
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: var(--orange);
  color: var(--green-950);
  font-size: 1.6rem;
  font-weight: 950;
}

.contents-list h3 {
  margin: 0 0 2px;
  font-size: 1.08rem;
}

.contents-list p {
  margin: 0;
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  color: #c9ffab;
  font-weight: 900;
  text-decoration: none;
}

.text-link:hover {
  color: white;
}

.game-modes {
  background: #fbfff8;
}

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

.mode-card {
  position: relative;
  min-height: 310px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: white;
  box-shadow: 0 10px 28px rgba(3,42,26,0.07);
  transition: transform 200ms ease;
}

.mode-card:hover {
  transform: translateY(-7px);
}

.mode-card::before {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  right: -68px;
  bottom: -68px;
  border-radius: 50%;
  background: #edf8e8;
}

.mode-card-featured {
  border-color: transparent;
  background: linear-gradient(145deg, var(--blue-900), var(--blue-600));
  color: white;
  box-shadow: 0 18px 40px rgba(11,76,146,0.22);
}

.mode-card-featured::before {
  background: rgba(255,255,255,0.08);
}

.mode-tag {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: #edf8e8;
  color: var(--green-800);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.mode-card-featured .mode-tag {
  background: var(--orange);
  color: var(--green-950);
}

.mode-icon {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  margin-top: 40px;
  border-radius: 20px;
  background: #effbe7;
  color: var(--green-800);
  font-size: 2rem;
  font-weight: 900;
}

.mode-card-featured .mode-icon {
  background: rgba(255,255,255,0.12);
  color: white;
}

.mode-card h3 {
  margin: 22px 0 10px;
  color: var(--green-950);
  font-size: 1.45rem;
}

.mode-card-featured h3 {
  color: white;
}

.mode-card p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: var(--muted);
}

.mode-card-featured p {
  color: rgba(255,255,255,0.72);
}

.launch-section {
  padding-top: 30px;
  padding-bottom: 30px;
}

.launch-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 50px;
  padding: 42px 46px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 88% 0%, rgba(107,197,45,0.24), transparent 30%),
    linear-gradient(135deg, var(--green-950), var(--green-800));
  color: white;
  box-shadow: var(--shadow);
}

.launch-copy h2 {
  max-width: 640px;
  color: white;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.launch-copy > p:last-child {
  max-width: 650px;
  margin: 16px 0 0;
  color: rgba(255,255,255,0.7);
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, 84px);
  gap: 10px;
}

.countdown div {
  min-height: 92px;
  display: grid;
  place-content: center;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 18px;
  background: rgba(255,255,255,0.08);
  text-align: center;
}

.countdown strong,
.countdown span {
  display: block;
}

.countdown strong {
  color: white;
  font-size: 1.65rem;
  line-height: 1;
}

.countdown span {
  margin-top: 7px;
  color: #c8ffad;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.preorder {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 15%, rgba(107,197,45,0.16), transparent 24%),
    radial-gradient(circle at 92% 80%, rgba(12,118,198,0.14), transparent 25%),
    var(--cream);
}

.preorder-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(390px, 0.74fr);
  align-items: center;
  gap: 70px;
}

.preorder-visual {
  position: relative;
}

.preorder-visual img {
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 34px 32px rgba(3,42,26,0.19));
}

.preorder-orbit {
  position: absolute;
  inset: 8% 3%;
  border: 17px solid rgba(246,168,0,0.18);
  border-radius: 50%;
  transform: rotate(-10deg);
}

.preorder-orbit::after {
  content: "";
  position: absolute;
  width: 58px;
  height: 58px;
  right: 5%;
  top: 0;
  border: 5px solid var(--blue-800);
  border-radius: 50%;
  background: white;
  box-shadow: var(--shadow-soft);
}

.purchase-card {
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: white;
  box-shadow: var(--shadow);
}

.purchase-card h2 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
}

.purchase-description {
  margin: 15px 0 0;
  color: var(--muted);
}

.purchase-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 28px 0 18px;
}

.purchase-price strong {
  color: var(--blue-800);
  font-size: 3rem;
  line-height: 1;
  letter-spacing: -0.05em;
}

.purchase-price span {
  color: var(--muted);
  font-weight: 800;
}

.purchase-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.purchase-benefits li {
  position: relative;
  padding-left: 24px;
  color: #405247;
  font-size: 0.9rem;
  font-weight: 700;
}

.purchase-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green-500);
  font-weight: 950;
}

.quantity-row,
.purchase-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 17px 0;
  border-top: 1px solid var(--line);
}

.quantity-row label,
.purchase-total span {
  color: var(--green-950);
  font-weight: 850;
}

.quantity-control {
  display: grid;
  grid-template-columns: 40px 48px 40px;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #f8fbf6;
}

.quantity-control button {
  height: 40px;
  border: 0;
  background: transparent;
  color: var(--green-900);
  font-size: 1.25rem;
  font-weight: 900;
}

.quantity-control button:hover {
  background: #edf8e8;
}

.quantity-control input {
  width: 48px;
  height: 40px;
  border: 0;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  background: white;
  color: var(--green-950);
  font-weight: 900;
  text-align: center;
  -moz-appearance: textfield;
}

.quantity-control input::-webkit-outer-spin-button,
.quantity-control input::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

.purchase-total {
  margin-bottom: 15px;
}

.purchase-total strong {
  color: var(--blue-800);
  font-size: 1.35rem;
}

.button-amazon {
  position: relative;
  margin-top: 11px;
  border-color: #d8dde4;
  background: #f3f5f7;
  color: #68717c;
}

.coming-soon {
  font-size: 0.7rem;
  font-weight: 750;
}

.purchase-fine-print {
  margin: 15px 0 0;
  color: #7b857e;
  font-size: 0.77rem;
  text-align: center;
}

.faq {
  background: white;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
}

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

.faq-list details {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: #fbfdf9;
}

.faq-list summary {
  position: relative;
  padding: 20px 52px 20px 20px;
  color: var(--green-950);
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 19px;
  top: 50%;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: #eaf6e4;
  color: var(--green-800);
  font-size: 1.15rem;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "−";
  background: var(--green-900);
  color: white;
}

.faq-list p {
  margin: 0;
  padding: 0 20px 21px;
  color: var(--muted);
}

.final-cta {
  padding: 72px 0;
  background:
    repeating-linear-gradient(120deg, transparent 0 28px, rgba(255,255,255,0.03) 29px 31px),
    linear-gradient(135deg, var(--blue-950), var(--blue-800));
  color: white;
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.final-cta img {
  width: 230px;
  margin-bottom: 10px;
}

.final-cta h2 {
  color: white;
  font-size: clamp(2rem, 4vw, 3.45rem);
}

.site-footer {
  padding: 60px 0 20px;
  background: var(--green-950);
  color: rgba(255,255,255,0.7);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.8fr;
  gap: 50px;
}

.footer-logo {
  display: block;
  width: 210px;
}

.footer-grid > div > p {
  margin: 12px 0 0;
}

.footer-grid nav {
  display: grid;
  align-content: start;
  gap: 11px;
}

.footer-grid nav a {
  color: white;
  font-weight: 800;
  text-decoration: none;
}

.footer-grid nav a:hover {
  color: #b8f991;
}

.footer-meta p {
  margin: 0 0 8px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 42px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.11);
  font-size: 0.8rem;
}

.footer-bottom p {
  margin: 0;
}

.modal[hidden] {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(1,20,12,0.72);
  backdrop-filter: blur(7px);
}

.modal-dialog {
  position: relative;
  z-index: 2;
  width: min(100%, 480px);
  padding: 38px;
  border-radius: 28px;
  background: white;
  box-shadow: 0 30px 80px rgba(0,0,0,0.3);
  text-align: center;
}

.modal-dialog h2 {
  margin: 18px 0 10px;
  color: var(--green-950);
  font-size: 2rem;
  line-height: 1.1;
}

.modal-dialog p {
  margin: 0 0 24px;
  color: var(--muted);
}

.modal-dialog code {
  padding: 2px 5px;
  border-radius: 5px;
  background: #edf6e8;
  color: var(--green-900);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: #edf6e8;
  color: var(--green-900);
  font-size: 1.6rem;
  line-height: 1;
}

.modal-target {
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  margin: 0 auto;
  border-radius: 50%;
  background: var(--green-500);
}

.modal-target span {
  position: absolute;
  border-radius: 50%;
}

.modal-target span:nth-child(1) {
  width: 65px;
  height: 65px;
  background: white;
}

.modal-target span:nth-child(2) {
  width: 42px;
  height: 42px;
  background: var(--orange);
}

.modal-target span:nth-child(3) {
  width: 17px;
  height: 17px;
  background: var(--blue-800);
}

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

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-18px) rotate(7deg); }
}

@keyframes rotate-slow {
  to { transform: rotate(360deg); }
}

@keyframes target-wobble {
  0%, 100% { transform: translate(20px, -7px) rotate(20deg); }
  50% { transform: translate(28px, -14px) rotate(34deg); }
}

@media (max-width: 1050px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .hero-proof {
    gap: 17px;
  }

  .hero-proof div + div {
    padding-left: 17px;
  }

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

  .step-card {
    min-height: 360px;
  }

  .box-grid,
  .preorder-grid {
    gap: 40px;
  }

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

  .countdown {
    grid-template-columns: repeat(4, minmax(70px, 90px));
  }
}

@media (max-width: 860px) {
  .menu-toggle {
    display: flex;
  }

  .primary-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 20px;
    right: 20px;
    display: grid;
    gap: 2px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 19px;
    background: white;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .primary-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .primary-nav a {
    padding: 13px 14px;
    border-radius: 11px;
  }

  .primary-nav a:hover {
    background: #f1f8ed;
  }

  .primary-nav a::after {
    display: none;
  }

  .nav-cta {
    margin-top: 4px;
    text-align: center;
  }

  .hero {
    padding-top: 50px;
  }

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

  .hero-copy {
    text-align: center;
  }

  .hero-logo,
  .hero-lede,
  .section-heading > p:last-child {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-copy .eyebrow {
    justify-content: center;
  }

  .hero-actions,
  .hero-proof {
    justify-content: center;
  }

  .hero-visual {
    max-width: 690px;
    margin: 0 auto;
  }

  .feature-strip {
    grid-template-columns: 1fr;
  }

  .feature-strip article {
    min-height: auto;
  }

  .box-grid,
  .preorder-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

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

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

  .mode-card {
    min-height: 260px;
  }

  .faq-grid {
    gap: 20px;
  }

  .final-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .footer-meta {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 72px 0;
  }

  .announcement {
    font-size: 0.76rem;
  }

  .announcement span[aria-hidden="true"] {
    display: none;
  }

  .announcement p {
    gap: 3px 8px;
  }

  .nav-wrap {
    min-height: 72px;
  }

  .brand {
    width: 145px;
  }

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

  .hero-logo {
    width: 94%;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 13vw, 3.8rem);
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-proof {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    width: 100%;
  }

  .hero-proof div {
    padding: 0 7px !important;
    border-left: 1px solid rgba(6,63,38,0.14);
  }

  .hero-proof div:first-child {
    border-left: 0;
  }

  .hero-proof strong {
    font-size: 0.88rem;
  }

  .hero-proof span {
    font-size: 0.67rem;
  }

  .product-stage {
    padding: 5px;
  }

  .price-badge {
    width: 95px;
    height: 95px;
    border-width: 6px;
  }

  .price-badge strong {
    font-size: 1.28rem;
  }

  .image-thumb {
    grid-template-columns: 42px auto;
    padding-right: 10px;
  }

  .image-thumb img {
    width: 42px;
    height: 35px;
  }

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

  .step-card {
    min-height: 350px;
  }

  .box-grid {
    gap: 34px;
  }

  .image-frame {
    border-radius: 22px;
    padding: 8px;
  }

  .image-frame img {
    border-radius: 15px;
  }

  .contents-list article {
    padding: 13px;
  }

  .contents-number {
    width: 50px;
    height: 50px;
    border-radius: 15px;
  }

  .launch-card {
    padding: 30px 20px;
    border-radius: 25px;
  }

  .countdown {
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
  }

  .countdown div {
    min-height: 76px;
    border-radius: 13px;
  }

  .countdown strong {
    font-size: 1.25rem;
  }

  .countdown span {
    font-size: 0.55rem;
  }

  .preorder-grid {
    gap: 20px;
  }

  .purchase-card {
    padding: 27px 20px;
    border-radius: 24px;
  }

  .purchase-benefits {
    grid-template-columns: 1fr;
  }

  .purchase-price strong {
    font-size: 2.6rem;
  }

  .quantity-row,
  .purchase-total {
    align-items: flex-start;
  }

  .final-cta {
    padding: 56px 0;
  }

  .final-cta img {
    width: 190px;
  }

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

  .footer-meta {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 6px;
  }

  .modal-dialog {
    padding: 34px 22px 25px;
  }
}

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

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

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