:root {
  --ink: #101410;
  --muted: #5e665d;
  --paper: #f5f2ea;
  --paper-bright: #fffdf7;
  --forest: #10241c;
  --forest-2: #183b2d;
  --rust: #b83f33;
  --brass: #c19b53;
  --cta: #d9ff5f;
  --cta-hover: #c8f241;
  --line: rgba(16, 20, 16, 0.16);
  --shadow: 0 24px 70px rgba(6, 12, 9, 0.18);
  --serif: "Instrument Serif", Georgia, serif;
  --sans: "Space Grotesk", "Avenir Next", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(rgba(16, 20, 16, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 20, 16, 0.03) 1px, transparent 1px),
    var(--paper);
  background-size: 34px 34px;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 54px);
  color: #fffdf7;
  background: linear-gradient(180deg, rgba(3, 7, 5, 0.72), rgba(3, 7, 5, 0));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 253, 247, 0.64);
  color: #fffdf7;
  font-size: 0.72rem;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 28px);
  color: rgba(255, 253, 247, 0.82);
  font-size: 0.9rem;
  font-weight: 600;
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: 0;
  transform: translateY(3px);
  transition: 180ms ease;
}

.nav-links a:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.nav-links .nav-cta {
  border: 1px solid rgba(217, 255, 95, 0.72);
  border-radius: 8px;
  padding: 10px 14px;
  color: #07100c;
  background: var(--cta);
  box-shadow: 0 10px 26px rgba(217, 255, 95, 0.18);
}

.nav-links .nav-cta::after {
  display: none;
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fffdf7;
  background:
    radial-gradient(circle at 26% 72%, rgba(184, 63, 51, 0.16), transparent 28%),
    linear-gradient(90deg, rgba(3, 7, 5, 0.96) 0%, rgba(3, 7, 5, 0.8) 46%, rgba(3, 7, 5, 0.34) 100%),
    url("assets/spot-the-play-hero.png") 62% center / cover no-repeat;
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 22%;
  background: linear-gradient(180deg, transparent, rgba(245, 242, 234, 0.98));
  content: "";
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 36px));
  margin: 0 0 clamp(76px, 10vw, 130px) clamp(18px, 6vw, 86px);
  text-shadow: 0 2px 26px rgba(0, 0, 0, 0.62);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--brass);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--rust);
}

.eyebrow.light {
  color: #e7c56f;
}

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

h1,
h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.92;
}

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(4.5rem, 12vw, 10.5rem);
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(3.1rem, 7vw, 6.8rem);
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.35rem, 2vw, 1.65rem);
  line-height: 1.1;
}

.hero-lede {
  max-width: 650px;
  margin-bottom: 30px;
  color: rgba(255, 253, 247, 0.9);
  font-size: clamp(1.16rem, 2vw, 1.42rem);
  line-height: 1.45;
}

.hero-actions,
.final-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 15px 22px;
  font-weight: 700;
  line-height: 1.1;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    color 180ms ease;
  text-shadow: none;
}

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

.button-primary {
  color: #07100c;
  background: var(--cta);
  box-shadow: 0 16px 34px rgba(217, 255, 95, 0.23);
}

.button-primary:hover {
  background: var(--cta-hover);
  box-shadow: 0 18px 38px rgba(217, 255, 95, 0.3);
}

.button-secondary {
  border-color: rgba(255, 253, 247, 0.42);
  color: #fffdf7;
  background: rgba(255, 253, 247, 0.1);
  backdrop-filter: blur(16px);
}

.button-secondary:hover {
  background: rgba(255, 253, 247, 0.18);
}

.button-invert {
  color: #07100c;
  background: var(--cta);
  box-shadow: 0 16px 34px rgba(217, 255, 95, 0.2);
}

.trust-line {
  max-width: 520px;
  margin: 18px 0 0;
  color: rgba(255, 253, 247, 0.68);
  font-size: 0.95rem;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 680px;
  margin-top: 18px;
}

.hero-proof span {
  border: 1px solid rgba(255, 253, 247, 0.16);
  border-radius: 8px;
  padding: 8px 10px;
  color: rgba(255, 253, 247, 0.82);
  background: rgba(255, 253, 247, 0.08);
  font-size: 0.8rem;
  font-weight: 700;
}

.ticker {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper-bright);
}

.ticker-track {
  display: flex;
  width: max-content;
  min-width: 100%;
  animation: ticker 28s linear infinite;
}

.ticker span {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 58px;
  padding: 0 32px;
  color: var(--forest-2);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
}

.ticker span::after {
  position: absolute;
  right: -3px;
  color: var(--rust);
  content: "/";
}

.section {
  padding: clamp(72px, 10vw, 132px) clamp(18px, 5vw, 72px);
}

.section-grid,
.sample-layout,
.fit-grid,
.pricing-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: start;
}

.intro-section {
  padding-top: clamp(86px, 11vw, 150px);
}

.intro-copy {
  max-width: 720px;
  color: #313930;
  font-size: clamp(1.1rem, 1.7vw, 1.35rem);
}

.intro-copy p + p {
  margin-top: 18px;
}

.sample-section {
  background: #e8ece5;
}

.sample-copy {
  position: sticky;
  top: 110px;
}

.sample-copy p:not(.eyebrow),
.section-heading p,
.fit-copy p,
.pricing-copy p {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.08rem;
}

.issue-card {
  position: relative;
  border: 1px solid rgba(16, 20, 16, 0.22);
  border-radius: 8px;
  padding: clamp(28px, 5vw, 54px);
  background: var(--paper-bright);
  box-shadow: var(--shadow);
}

.issue-card::before {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 74px;
  height: 74px;
  border: 1px solid rgba(184, 63, 51, 0.42);
  border-radius: 50%;
  content: "";
}

.issue-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 36px;
  color: var(--rust);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.issue-card p {
  color: #2a3129;
  font-size: 1.08rem;
}

blockquote {
  margin: 28px 0;
  border-left: 4px solid var(--rust);
  padding: 8px 0 8px 22px;
  color: var(--forest);
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1;
}

.section-heading {
  width: min(800px, 100%);
  margin-bottom: clamp(34px, 5vw, 62px);
}

.section-heading.compact {
  width: min(980px, 100%);
}

.stakes-section {
  color: #fffdf7;
  background:
    linear-gradient(rgba(8, 18, 13, 0.92), rgba(8, 18, 13, 0.92)),
    url("assets/spot-the-play-hero.png") center / cover no-repeat;
}

.stakes-section .section-heading p:not(.eyebrow) {
  color: rgba(255, 253, 247, 0.72);
}

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

.moment-card {
  min-height: 250px;
  border: 1px solid rgba(255, 253, 247, 0.16);
  border-radius: 8px;
  padding: 24px;
  background: rgba(255, 253, 247, 0.07);
}

.moment-card span {
  display: block;
  margin-bottom: 54px;
  color: var(--cta);
  font-weight: 800;
}

.moment-card h3 {
  color: #fffdf7;
}

.moment-card p {
  margin-bottom: 0;
  color: rgba(255, 253, 247, 0.7);
}

.offer-section {
  background: var(--paper-bright);
}

.offer-header {
  width: min(980px, 100%);
  margin-bottom: clamp(34px, 5vw, 58px);
}

.offer-header p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.1rem;
}

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

.offer-card {
  min-height: 290px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: #f0f3ec;
}

.offer-card.highlight {
  color: #fffdf7;
  background: var(--forest);
}

.offer-card.guarantee {
  background: #e8ece5;
}

.offer-card span {
  display: block;
  margin-bottom: 52px;
  color: var(--rust);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.offer-card.highlight span {
  color: var(--cta);
}

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

.offer-card.highlight p,
.offer-card.highlight h3 {
  color: rgba(255, 253, 247, 0.86);
}

.offer-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 26px;
}

.offer-cta p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

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

.insight-card {
  min-height: 300px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  background: rgba(255, 253, 247, 0.78);
  box-shadow: 0 16px 40px rgba(16, 20, 16, 0.06);
}

.card-number {
  display: inline-flex;
  margin-bottom: 62px;
  color: var(--rust);
  font-size: 0.8rem;
  font-weight: 800;
}

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

.outcome-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(34px, 7vw, 92px);
  background: var(--paper-bright);
}

.outcome-list {
  display: grid;
  gap: 12px;
  align-content: start;
}

.outcome-list p {
  position: relative;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px 18px 18px 52px;
  color: #253027;
  background: #f0f3ec;
  font-size: 1.08rem;
  font-weight: 600;
}

.outcome-list p::before {
  position: absolute;
  left: 18px;
  color: var(--rust);
  content: "->";
  font-weight: 800;
}

.topics-section {
  color: #fffdf7;
  background:
    radial-gradient(circle at 78% 20%, rgba(193, 155, 83, 0.16), transparent 30%),
    linear-gradient(135deg, var(--forest), #07100c 72%);
}

.topics-header {
  width: min(920px, 100%);
  margin-bottom: 40px;
}

.topic-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.topic-list span {
  border: 1px solid rgba(255, 253, 247, 0.2);
  border-radius: 999px;
  padding: 12px 15px;
  color: rgba(255, 253, 247, 0.84);
  background: rgba(255, 253, 247, 0.07);
}

.fit-section {
  background: var(--paper-bright);
}

.fit-panel {
  border-left: 6px solid var(--rust);
  padding: clamp(28px, 5vw, 48px);
  color: var(--forest);
  background: #e8ece5;
}

.fit-panel p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  line-height: 1;
}

.fit-bullets {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.fit-bullets p {
  position: relative;
  margin: 0;
  padding-left: 24px;
  color: #253027;
  font-weight: 700;
}

.fit-bullets p::before {
  position: absolute;
  left: 0;
  color: var(--rust);
  content: "+";
}

.pricing-section {
  align-items: center;
}

.price-box {
  border: 1px solid rgba(16, 20, 16, 0.22);
  border-radius: 8px;
  padding: clamp(30px, 5vw, 52px);
  background: var(--forest);
  color: #fffdf7;
  box-shadow: var(--shadow);
}

.price-box.pulse {
  animation: pulse 900ms ease;
}

.price-label {
  margin-bottom: 18px;
  color: var(--cta);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.price {
  display: block;
  font-family: var(--serif);
  font-size: clamp(5.4rem, 11vw, 9.5rem);
  line-height: 0.9;
}

.price-term {
  display: block;
  margin-top: 8px;
  color: rgba(255, 253, 247, 0.64);
  font-weight: 700;
  text-transform: uppercase;
}

.price-list {
  display: grid;
  gap: 13px;
  margin: 34px 0;
  padding: 0;
  list-style: none;
}

.price-list li {
  position: relative;
  padding-left: 26px;
  color: rgba(255, 253, 247, 0.84);
}

.price-list li::before {
  position: absolute;
  left: 0;
  color: var(--cta);
  content: "+";
  font-weight: 800;
}

.checkout-note {
  margin: 16px 0 0;
  color: rgba(255, 253, 247, 0.58);
  font-size: 0.88rem;
}

.faq-section {
  background: #e8ece5;
}

.faq-heading {
  width: min(700px, 100%);
  margin-bottom: 30px;
}

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

details {
  border: 1px solid rgba(16, 20, 16, 0.14);
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.72);
}

summary {
  cursor: pointer;
  padding: 22px 24px;
  color: var(--forest);
  font-weight: 800;
}

details p {
  max-width: 760px;
  margin: 0;
  padding: 0 24px 24px;
  color: var(--muted);
}

.final-cta {
  padding: clamp(74px, 10vw, 118px) clamp(18px, 5vw, 72px);
  color: #fffdf7;
  background:
    linear-gradient(rgba(8, 18, 13, 0.86), rgba(8, 18, 13, 0.9)),
    url("assets/spot-the-play-hero.png") center / cover no-repeat;
}

.final-inner {
  width: min(900px, 100%);
}

.final-inner h2 {
  flex-basis: 100%;
  margin-bottom: 12px;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  padding: 26px clamp(18px, 5vw, 72px);
  color: rgba(255, 253, 247, 0.7);
  background: #07100c;
}

.site-footer p {
  margin: 0;
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: rgba(255, 253, 247, 0.72);
  font-size: 0.92rem;
  font-weight: 700;
}

.footer-links a:hover {
  color: #fffdf7;
}

.mobile-buy-bar {
  position: fixed;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 30;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid rgba(255, 253, 247, 0.14);
  border-radius: 8px;
  padding: 10px;
  color: #fffdf7;
  background: rgba(7, 16, 12, 0.92);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(18px);
  transform: translateY(120%);
  transition: transform 220ms ease;
}

.mobile-buy-bar.is-visible {
  transform: translateY(0);
}

.mobile-buy-bar span {
  font-size: 0.92rem;
  font-weight: 800;
}

.mobile-buy-bar .button {
  min-height: 44px;
  padding: 12px 16px;
}

.legal-body {
  background: var(--paper);
}

.legal-body .site-header {
  background: rgba(7, 16, 12, 0.96);
  backdrop-filter: blur(18px);
}

.legal-main {
  min-height: 76vh;
  overflow-x: hidden;
  padding: 132px clamp(18px, 5vw, 72px) clamp(72px, 10vw, 120px);
}

.legal-card {
  width: 100%;
  max-width: 920px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(28px, 6vw, 72px);
  background: var(--paper-bright);
  box-shadow: 0 18px 52px rgba(16, 20, 16, 0.08);
}

.legal-card h1 {
  max-width: 760px;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: clamp(4rem, 9vw, 7.5rem);
}

.legal-card h2 {
  margin: 42px 0 12px;
  color: var(--forest);
  font-family: var(--sans);
  font-size: 1.28rem;
  font-weight: 800;
  line-height: 1.2;
}

.legal-card p {
  max-width: 100%;
  color: #313930;
  font-size: 1.04rem;
  overflow-wrap: break-word;
}

.legal-card a {
  color: var(--rust);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.legal-updated {
  margin-bottom: 34px;
  color: var(--muted) !important;
  font-size: 0.92rem !important;
  font-weight: 700;
}

.contact-email a {
  color: var(--forest);
  font-size: clamp(1.5rem, 5vw, 3.1rem);
}

.contact-panel {
  margin-top: 34px;
  border-left: 5px solid var(--rust);
  padding: 24px;
  background: #e8ece5;
}

.contact-panel h2 {
  margin-top: 0;
}

.reveal {
  animation: rise 680ms ease both;
}

@keyframes rise {
  from {
    opacity: 1;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes pulse {
  0%,
  100% {
    box-shadow: var(--shadow);
  }
  50% {
    box-shadow: 0 0 0 7px rgba(217, 255, 95, 0.18), var(--shadow);
  }
}

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

@media (max-width: 920px) {
  .site-header {
    background: rgba(3, 7, 5, 0.78);
    backdrop-filter: blur(18px);
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 92vh;
    background:
      linear-gradient(180deg, rgba(3, 7, 5, 0.22), rgba(3, 7, 5, 0.94)),
      linear-gradient(90deg, rgba(3, 7, 5, 0.94), rgba(3, 7, 5, 0.5)),
      url("assets/spot-the-play-hero.png") 68% center / cover no-repeat;
  }

  .hero-content {
    margin-bottom: 84px;
  }

  .section-grid,
  .sample-layout,
  .fit-grid,
  .pricing-section,
  .outcome-section {
    grid-template-columns: 1fr;
  }

  .sample-copy {
    position: static;
  }

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

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

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

  .card-number {
    margin-bottom: 34px;
  }
}

@media (max-width: 560px) {
  body {
    padding-bottom: 78px;
  }

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

  .brand span:last-child {
    display: none;
  }

  .hero {
    min-height: 94vh;
    background:
      linear-gradient(180deg, rgba(3, 7, 5, 0.14), rgba(3, 7, 5, 0.94)),
      linear-gradient(90deg, rgba(3, 7, 5, 0.92), rgba(3, 7, 5, 0.55)),
      url("assets/spot-the-play-hero.png") 72% center / cover no-repeat;
  }

  .hero-content {
    width: auto;
    max-width: none;
    margin: 0 16px 70px;
  }

  .hero-lede,
  .trust-line,
  .hero-actions,
  .hero-proof {
    width: min(100%, 340px);
    max-width: 340px;
  }

  h1 {
    max-width: 340px;
    font-size: 3.85rem;
  }

  h2 {
    font-size: 3.05rem;
  }

  .button {
    width: 100%;
    padding-right: 16px;
    padding-left: 16px;
    text-align: center;
  }

  .section {
    padding-right: 16px;
    padding-left: 16px;
  }

  .issue-card,
  .insight-card,
  .price-box {
    padding: 24px;
  }

  blockquote {
    font-size: 2rem;
  }

  .topic-list span {
    width: 100%;
    border-radius: 8px;
  }

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

  .moment-card {
    min-height: auto;
  }

  .moment-card span {
    margin-bottom: 28px;
  }

  .offer-stack {
    grid-template-columns: 1fr;
  }

  .offer-card {
    min-height: auto;
  }

  .offer-card span {
    margin-bottom: 28px;
  }

  .offer-cta .button {
    width: 100%;
  }

  .mobile-buy-bar {
    display: flex;
  }

  .legal-main {
    padding-right: 24px;
    padding-left: 24px;
  }

  .legal-card {
    width: 342px;
    max-width: 100%;
    padding: 28px;
  }

  .legal-card h1 {
    font-size: 3.7rem;
  }
}
