:root {
  --ink: #101126;
  --muted: #626673;
  --paper: #fbfcf8;
  --panel: #ffffff;
  --line: #dfe4dc;
  --green: #5dbb40;
  --green-deep: #277826;
  --navy: #121128;
  --yellow: #f3cf4a;
  --sky: #dcefff;
  --coral: #ff735c;
  --shadow: 0 24px 70px rgba(18, 17, 40, 0.14);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(232, 250, 226, 0.96), rgba(220, 239, 255, 0.36) 420px, rgba(251, 252, 248, 0) 760px),
    var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(18, 17, 40, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 17, 40, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 70%);
}

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

a {
  color: inherit;
}

.site-header {
  width: min(var(--max), calc(100% - 40px));
  min-height: 72px;
  margin: 18px auto 0;
  padding: 10px 12px;
  border: 1px solid rgba(18, 17, 40, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  position: sticky;
  top: 14px;
  z-index: 10;
  box-shadow: 0 12px 36px rgba(18, 17, 40, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  min-width: 0;
}

.brand img {
  width: clamp(150px, 17vw, 220px);
  height: auto;
  max-height: 48px;
  object-fit: contain;
}

.nav-links,
.site-footer nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-links a,
.site-footer a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}

.nav-links a:hover,
.site-footer a:hover {
  color: var(--ink);
}

.header-cta,
.button {
  border: 1px solid var(--navy);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  text-decoration: none;
  font-weight: 900;
  font-size: 14px;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.header-cta,
.button.primary {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 12px 0 rgba(18, 17, 40, 0.13);
}

.button.secondary {
  background: #fff;
  color: var(--navy);
}

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

main,
.site-footer {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  min-height: calc(100vh - 118px);
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.74fr);
  align-items: center;
  gap: clamp(36px, 6vw, 76px);
  padding: 54px 0 44px;
}

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

.eyebrow {
  margin: 0 0 12px;
  color: var(--green-deep);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(48px, 7vw, 86px);
  line-height: 0.96;
  letter-spacing: 0;
  max-width: 780px;
}

.hero-lede {
  color: #3d4050;
  font-size: clamp(18px, 2vw, 22px);
  max-width: 600px;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.prize-pill {
  width: fit-content;
  margin: -8px 0 26px;
  padding: 10px 14px;
  border: 1px solid rgba(39, 120, 38, 0.24);
  border-radius: 999px;
  background: rgba(93, 187, 64, 0.14);
  color: var(--green-deep);
  font-size: 14px;
  font-weight: 900;
}

.trust-row,
.logo-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-row span,
.logo-strip span {
  border: 1px solid rgba(18, 17, 40, 0.12);
  background: rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  padding: 9px 12px;
  color: #33364a;
  font-size: 13px;
  font-weight: 850;
}

.phone-stage {
  display: flex;
  justify-content: center;
  perspective: 1200px;
}

.phone-shell {
  width: min(100%, 390px);
  padding: 13px;
  border-radius: 42px;
  background: var(--navy);
  box-shadow: var(--shadow), 0 0 0 8px rgba(255, 255, 255, 0.8);
  transform: rotate(2deg);
}

.screenshot-phone {
  padding: 10px;
  background: #080812;
  overflow: hidden;
}

.screenshot-phone img {
  width: 100%;
  aspect-ratio: 1320 / 2868;
  object-fit: contain;
  object-position: top;
  border-radius: 32px;
  background: #eefbeb;
}

.hero-phone {
  width: min(100%, 370px);
  transform: rotate(2deg) translateY(8px);
}

.campaign-stage {
  position: relative;
  display: flex;
  justify-content: center;
  isolation: isolate;
}

.campaign-stage::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 88%;
  aspect-ratio: 1;
  top: 12%;
  border-radius: 50%;
  background: rgba(93, 187, 64, 0.2);
  filter: blur(42px);
}

.campaign-stage img {
  width: min(100%, 455px);
  border-radius: 28px;
  box-shadow: 0 32px 90px rgba(18, 17, 40, 0.2);
  transform: rotate(1.4deg);
}

.phone-top {
  height: 34px;
  color: #fff;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 20px;
  font-size: 12px;
  font-weight: 800;
}

.phone-top span:last-child {
  text-align: right;
}

.pill {
  width: 86px;
  height: 22px;
  border-radius: 99px;
  background: #050511;
}

.app-screen {
  min-height: 640px;
  border-radius: 31px;
  padding: 20px;
  background:
    linear-gradient(180deg, #f7fbf1 0, #e9f8e5 55%, #ffffff 100%);
  overflow: hidden;
}

.screen-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.screen-header p {
  margin-bottom: 2px;
  color: var(--green-deep);
  font-size: 12px;
  font-weight: 900;
}

.screen-header h2 {
  margin: 0;
  font-size: 31px;
  line-height: 1;
}

.screen-header img {
  width: 50px;
  height: 50px;
  border-radius: 12px;
}

.pot-card {
  border: 1px solid rgba(18, 17, 40, 0.12);
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 14px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(18, 17, 40, 0.96), rgba(39, 120, 38, 0.95)),
    var(--navy);
}

.pot-card span,
.pot-card small {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.pot-card strong {
  display: block;
  font-size: 48px;
  line-height: 1;
  margin: 8px 0;
}

.match-card,
.leaderboard-card,
.feature-grid article,
.steps article,
.faq-grid article,
.host-panel,
.legal-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 30px rgba(18, 17, 40, 0.07);
}

.match-card {
  min-height: 96px;
  margin-bottom: 12px;
  padding: 14px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
}

.match-card.selected {
  border-color: rgba(93, 187, 64, 0.55);
  background: #f8fff4;
}

.team {
  display: grid;
  justify-items: start;
  gap: 8px;
  color: var(--ink);
  font-weight: 900;
  font-size: 13px;
}

.team.right {
  justify-items: end;
  text-align: right;
}

.team img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.match-card button {
  min-width: 76px;
  min-height: 36px;
  border: 1px solid var(--navy);
  border-radius: 8px;
  background: var(--yellow);
  color: var(--navy);
  font-weight: 950;
}

.leaderboard-card {
  padding: 14px;
}

.leaderboard-title,
.leaderboard-card li,
.host-panel div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.leaderboard-title {
  margin-bottom: 8px;
  font-weight: 950;
}

.leaderboard-title strong {
  color: var(--green-deep);
  font-size: 12px;
  text-transform: uppercase;
}

.leaderboard-card ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.leaderboard-card li {
  padding: 9px 0;
  border-top: 1px solid rgba(18, 17, 40, 0.08);
  font-size: 14px;
}

.logo-strip {
  padding: 18px 0 54px;
  justify-content: center;
}

.section {
  padding: 74px 0;
  border-top: 1px solid rgba(18, 17, 40, 0.1);
}

.screenshot-tour {
  padding-top: 78px;
}

.screenshot-tour .section-heading {
  max-width: 760px;
}

.screenshot-tour .section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

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

.screenshot-card {
  padding: 16px;
  border: 1px solid rgba(18, 17, 40, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 252, 244, 0.86)),
    #fff;
  box-shadow: 0 16px 42px rgba(18, 17, 40, 0.08);
  display: grid;
  gap: 16px;
  align-content: start;
  overflow: hidden;
}

.screenshot-card.featured {
  grid-column: span 2;
  grid-template-columns: 0.84fr 1fr;
  align-items: center;
  gap: 22px;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(18, 17, 40, 0.98), rgba(39, 120, 38, 0.92)),
    var(--navy);
  color: #fff;
}

.screenshot-card img {
  width: 100%;
  height: 500px;
  object-fit: contain;
  object-position: top;
  border-radius: 24px;
  border: 1px solid rgba(18, 17, 40, 0.09);
  background:
    linear-gradient(180deg, rgba(238, 251, 235, 0.92), rgba(255, 255, 255, 0.96)),
    #eefbeb;
  box-shadow: 0 16px 40px rgba(18, 17, 40, 0.14);
}

.screenshot-card.featured img {
  height: 680px;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(238, 251, 235, 0.96);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.28);
}

.screenshot-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border-radius: 8px;
  background: rgba(93, 187, 64, 0.16);
  color: var(--green-deep);
  font-size: 12px;
  font-weight: 950;
}

.screenshot-card.featured span {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

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

.screenshot-card.featured h3 {
  font-size: clamp(30px, 4vw, 48px);
}

.screenshot-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 650;
}

.screenshot-card.featured p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
}

.campaign-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: start;
}

.campaign-shot {
  margin: 0;
  padding: 12px;
  border: 1px solid rgba(18, 17, 40, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 48px rgba(18, 17, 40, 0.09);
  overflow: hidden;
}

.campaign-shot.featured-shot {
  grid-column: span 2;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(180px, 0.75fr);
  align-items: center;
  padding: 18px;
  background: linear-gradient(145deg, rgba(18, 17, 40, 0.98), rgba(39, 120, 38, 0.92));
  color: #fff;
}

.campaign-shot img {
  width: 100%;
  border-radius: 16px;
}

.campaign-shot figcaption {
  display: grid;
  gap: 4px;
  padding: 16px 8px 8px;
}

.campaign-shot figcaption strong {
  font-size: 19px;
  line-height: 1.1;
}

.campaign-shot figcaption span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.campaign-shot.featured-shot figcaption {
  padding: 24px;
}

.campaign-shot.featured-shot figcaption strong {
  font-size: clamp(28px, 4vw, 48px);
}

.campaign-shot.featured-shot figcaption span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
}

.gallery-cta {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.two-column {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: 52px;
}

.section-heading {
  max-width: 650px;
  margin-bottom: 28px;
}

.section h2,
.final-cta h2 {
  margin-bottom: 12px;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1;
  letter-spacing: 0;
}

.steps,
.feature-grid,
.faq-grid {
  display: grid;
  gap: 16px;
}

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

.steps article,
.feature-grid article,
.faq-grid article {
  padding: 20px;
}

.steps span,
.feature-icon {
  min-width: 36px;
  width: fit-content;
  height: 36px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border-radius: 8px;
  background: var(--sky);
  color: var(--navy);
  font-weight: 950;
  font-size: 12px;
}

.how-simple {
  padding-top: 68px;
}

.steps-row article {
  min-height: 190px;
}

.trust-band {
  background:
    linear-gradient(135deg, rgba(18, 17, 40, 0.96), rgba(39, 120, 38, 0.9)),
    var(--navy);
  color: #fff;
}

.trust-band .eyebrow {
  color: #b9f0a7;
}

.trust-band p {
  color: rgba(255, 255, 255, 0.78);
}

.trust-band .host-panel {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.14);
}

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

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

.play-mode-grid article p + p {
  margin-top: 10px;
}

.feature-grid h3,
.steps h3,
.faq-grid h3 {
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1.15;
}

.feature-grid p,
.steps p,
.faq-grid p,
.split-band p,
.legal-card p {
  color: var(--muted);
}

.split-band {
  padding: 42px;
  border: 1px solid rgba(18, 17, 40, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(220, 239, 255, 0.72)),
    #fff;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 36px;
}

.split-band p {
  max-width: 590px;
  font-size: 18px;
}

.split-band.trust-band {
  background:
    linear-gradient(135deg, rgba(18, 17, 40, 0.96), rgba(39, 120, 38, 0.9)),
    var(--navy);
  color: #fff;
}

.split-band.trust-band p {
  color: rgba(255, 255, 255, 0.78);
}

.hero-detail {
  padding-top: 96px;
  padding-bottom: 64px;
  border-top: 0;
}

.hero-detail .section-heading {
  max-width: 920px;
}

.hero-detail h1 {
  margin-bottom: 20px;
  font-size: clamp(44px, 6vw, 78px);
  line-height: 0.98;
}

.hero-detail p:not(.eyebrow) {
  max-width: 820px;
  color: #3d4050;
  font-size: clamp(18px, 2vw, 22px);
}

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

.detail-list article {
  padding: 18px;
  border: 1px solid rgba(18, 17, 40, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 30px rgba(18, 17, 40, 0.05);
}

.detail-list h3 {
  margin-bottom: 6px;
  font-size: 18px;
}

.detail-list p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

.faq-section {
  padding-bottom: 96px;
}

.text-link {
  display: inline-flex;
  margin-top: 14px;
  color: #2563eb;
  font-weight: 900;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

.host-panel {
  padding: 12px;
  background: var(--navy);
  color: #fff;
}

.host-panel div {
  padding: 16px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.host-panel div:last-child {
  border-bottom: 0;
}

.host-panel span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  font-weight: 850;
}

.host-panel strong {
  text-align: right;
}

.final-cta {
  margin: 74px 0;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.final-cta img {
  width: 74px;
  height: 74px;
  border-radius: 14px;
}

.final-cta h2 {
  margin-bottom: 0;
}

.legal-page {
  padding: 58px 0 74px;
}

.legal-card {
  max-width: 840px;
  margin: 0 auto;
  padding: clamp(24px, 5vw, 54px);
}

.legal-card h1 {
  font-size: clamp(38px, 6vw, 64px);
  margin-bottom: 4px;
}

.legal-card .meta {
  margin-bottom: 28px;
  color: var(--green-deep);
  font-weight: 850;
}

.legal-card h2 {
  margin: 30px 0 8px;
  font-size: 22px;
}

.legal-card a {
  color: var(--green-deep);
  font-weight: 800;
}

.site-footer {
  padding: 28px 0 46px;
  border-top: 1px solid rgba(18, 17, 40, 0.12);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px 24px;
  color: var(--muted);
  font-size: 13px;
}

.site-footer p {
  margin: 0;
}

.disclaimer {
  grid-column: 1 / -1;
  max-width: 820px;
}

@media (max-width: 920px) {
  .site-header {
    position: static;
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero,
  .two-column,
  .split-band {
    grid-template-columns: 1fr;
  }

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

  .phone-stage {
    order: -1;
  }

  .phone-shell {
    transform: none;
    max-width: 360px;
  }

  .hero-phone {
    transform: none;
  }

  .campaign-stage {
    order: -1;
  }

  .campaign-stage img {
    max-width: 390px;
    transform: none;
  }

  .campaign-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .campaign-shot.featured-shot {
    grid-column: 1 / -1;
  }

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

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

  .screenshot-card.featured {
    grid-column: 1 / -1;
    grid-template-columns: 0.9fr 1fr;
  }

  .final-cta {
    grid-template-columns: 1fr;
    justify-items: start;
  }
}

@media (max-width: 620px) {
  .site-header,
  main,
  .site-footer {
    width: min(100% - 24px, var(--max));
  }

  .brand img {
    width: 146px;
    max-height: 42px;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 12px;
    font-size: 13px;
  }

  .nav-links {
    gap: 16px;
  }

  h1 {
    font-size: 46px;
  }

  .hero-lede {
    font-size: 17px;
  }

  .button {
    width: 100%;
  }

  .campaign-stage img {
    width: min(92vw, 390px);
    border-radius: 22px;
  }

  .campaign-gallery {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: min(82vw, 340px);
    grid-template-columns: none;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    gap: 14px;
    margin-inline: -12px;
    padding: 4px 12px 24px;
  }

  .campaign-shot,
  .campaign-shot.featured-shot {
    grid-column: auto;
    display: block;
    padding: 10px;
    scroll-snap-align: center;
  }

  .campaign-shot.featured-shot figcaption {
    padding: 16px 8px 8px;
  }

  .campaign-shot.featured-shot figcaption strong {
    font-size: 19px;
  }

  .campaign-shot.featured-shot figcaption span {
    font-size: 14px;
  }

  .phone-shell {
    padding: 10px;
    border-radius: 34px;
  }

  .screenshot-phone img {
    border-radius: 25px;
  }

  .app-screen {
    min-height: 560px;
    padding: 15px;
    border-radius: 25px;
  }

  .pot-card strong {
    font-size: 40px;
  }

  .team span {
    font-size: 12px;
  }

  .match-card {
    gap: 8px;
    padding: 12px 10px;
  }

  .match-card button {
    min-width: 62px;
  }

  .steps,
  .feature-grid,
  .faq-grid,
  .screenshot-grid,
  .screenshot-card.featured {
    grid-template-columns: 1fr;
  }

  .screenshot-card.featured {
    grid-column: auto;
  }

  .screenshot-card {
    padding: 14px;
  }

  .screenshot-card.featured {
    padding: 18px;
  }

  .screenshot-card img {
    height: auto;
    aspect-ratio: 1320 / 2868;
  }

  .screenshot-card.featured img {
    height: auto;
  }

  .section {
    padding: 54px 0;
  }

  .hero-detail {
    padding-top: 58px;
    padding-bottom: 42px;
  }

  .hero-detail h1 {
    font-size: 42px;
  }

  .hero-detail p:not(.eyebrow) {
    font-size: 17px;
  }

  .split-band {
    padding: 26px;
  }

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

  .site-footer nav {
    flex-wrap: wrap;
  }
}
