:root {
  --background: #fbfaf7;
  --background-soft: #f2efe7;
  --surface: #ffffff;
  --surface-muted: #f7f4ed;
  --text: #161616;
  --muted: #62615c;
  --line: #ded8cc;
  --line-strong: #c8beb0;
  --green: #0a7d52;
  --green-dark: #07563a;
  --blue: #1d4ed8;
  --red: #c2410c;
  --yellow: #facc15;
  --shadow: 0 18px 55px rgba(22, 22, 22, 0.11);
  --shadow-soft: 0 10px 28px rgba(22, 22, 22, 0.08);
  --radius: 8px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.menu-open {
  overflow: hidden;
}

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.topbar {
  position: fixed;
  top: 14px;
  left: 0;
  width: 100%;
  z-index: 40;
  opacity: 0;
  transform: translateY(-14px);
  pointer-events: none;
  transition: opacity 240ms ease, transform 240ms ease;
}

.topbar.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.seo-page .topbar {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.navbar {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(13, 45, 35, 0.94);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 48px rgba(4, 21, 16, 0.22);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 116px;
}

.brand-logo {
  width: 100px;
  height: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.95rem;
  font-weight: 600;
}

.nav-links a:hover {
  color: #ffffff;
}

.nav-links .nav-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  border-radius: var(--radius);
  color: #0d2d23;
  background: #ffffff;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease;
}

.menu-toggle.active span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.menu-toggle.active span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.splash {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 40px;
  text-align: center;
  background: #173b2f;
}

.splash-title {
  max-width: 11ch;
  margin: 0;
  color: #ffffff;
  font-size: 5.8rem;
  line-height: 0.95;
  letter-spacing: 0;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 34px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  transition: opacity 180ms ease;
}

body.past-splash .scroll-cue {
  opacity: 0;
  pointer-events: none;
}

.scroll-cue strong {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  color: #ffffff;
  font-size: 1.1rem;
  animation: cuePulse 1.6s ease-in-out infinite;
}

.hero {
  min-height: auto;
  position: relative;
  overflow: hidden;
  display: block;
  padding: 104px 0 86px;
  background: #173b2f;
}

.hero-scene {
  position: absolute;
  inset: 0;
  opacity: 0.82;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding-right: 80px;
  color: #ffffff;
}

section[id] {
  scroll-margin-top: 108px;
}

.hero h1 {
  margin: 16px 0 18px;
  font-size: 6.2rem;
  line-height: 0.92;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.18rem;
  line-height: 1.65;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  color: inherit;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.84rem;
  font-weight: 800;
}

.section .eyebrow,
.waitlist-section .eyebrow {
  color: var(--green-dark);
  border-color: rgba(10, 125, 82, 0.22);
  background: rgba(10, 125, 82, 0.08);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button-primary,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 18px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 800;
}

.button-primary {
  color: #ffffff;
  background: var(--green);
  box-shadow: 0 16px 34px rgba(10, 125, 82, 0.22);
}

.button-primary:hover {
  background: var(--green-dark);
}

.button-secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.1);
}

.proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.proof-row span {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.1);
  font-weight: 700;
  font-size: 0.9rem;
}

.phone {
  position: absolute;
  width: 390px;
  padding: 12px;
  border-radius: 32px;
  background: #111111;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
}

.phone-primary {
  top: 64px;
  right: 8%;
  transform: rotate(2.5deg);
}

.phone-secondary {
  right: 1%;
  bottom: 38px;
  width: 270px;
  transform: rotate(-5deg);
}

.hero-phone-shot {
  width: min(30vw, 360px);
  min-width: 320px;
  padding: 10px;
  overflow: hidden;
  border-radius: 42px;
}

.hero-phone-shot picture {
  display: block;
}

.hero-phone-shot img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 32px;
}

.hero-phone-shot.phone-secondary {
  width: min(21vw, 260px);
  min-width: 220px;
  opacity: 0.88;
}

.phone-status {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 120px 1fr;
  align-items: center;
  min-height: 34px;
  padding: 4px 18px 10px;
  color: #ffffff;
  font-size: 0.78rem;
}

.phone-status span {
  height: 26px;
  border-radius: 999px;
  background: #000000;
}

.status-icons {
  justify-self: end;
  display: flex;
  align-items: end;
  gap: 5px;
}

.status-icons i {
  display: block;
  position: relative;
}

.status-icons i:first-child {
  width: 14px;
  height: 10px;
  border-bottom: 2px solid #ffffff;
}

.status-icons i:first-child::before,
.status-icons i:first-child::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 3px;
  background: #ffffff;
  border-radius: 1px;
}

.status-icons i:first-child::before {
  left: 2px;
  height: 5px;
}

.status-icons i:first-child::after {
  left: 7px;
  height: 8px;
}

.status-icons i:nth-child(2) {
  width: 11px;
  height: 8px;
  border: 2px solid #ffffff;
  border-top-color: transparent;
  border-left-color: transparent;
  transform: rotate(-45deg);
}

.status-icons i:last-child {
  width: 18px;
  height: 9px;
  border: 1.7px solid #ffffff;
  border-radius: 3px;
}

.status-icons i:last-child::after {
  content: "";
  position: absolute;
  right: -4px;
  top: 2px;
  width: 2px;
  height: 4px;
  border-radius: 2px;
  background: #ffffff;
}

.phone-island {
  display: none;
}

.app-screen {
  min-height: 620px;
  overflow: hidden;
  padding: 0;
  border-radius: 24px;
  background: #fbfaf7;
}

.app-screen.compact {
  min-height: 392px;
  padding: 0;
}

.app-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 18px 16px 14px;
  color: var(--text);
}

.app-topline strong {
  font-size: 1.2rem;
  font-weight: 500;
}

.app-icons {
  display: flex;
  gap: 14px;
  align-items: center;
}

.app-icons span {
  width: 18px;
  height: 18px;
  position: relative;
  display: block;
}

.icon-add::before,
.icon-add::after,
.icon-sliders::before,
.icon-sliders::after,
.icon-search::before,
.icon-search::after {
  content: "";
  position: absolute;
  display: block;
}

.icon-add::before,
.icon-add::after {
  left: 50%;
  top: 50%;
  width: 17px;
  height: 2.2px;
  border-radius: 999px;
  background: var(--text);
  transform: translate(-50%, -50%);
}

.icon-add::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.icon-search::before {
  inset: 1px 4px 4px 1px;
  border: 2px solid var(--text);
  border-radius: 50%;
}

.icon-search::after {
  width: 8px;
  height: 2px;
  right: 0;
  bottom: 1px;
  border-radius: 999px;
  background: var(--text);
  transform: rotate(45deg);
}

.icon-sliders {
  color: var(--text);
}

.icon-sliders::before {
  inset: 4px 2px auto;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 9px 0 currentColor;
}

.icon-sliders::after {
  left: 5px;
  top: 1px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #fbfaf7;
  border: 1.8px solid currentColor;
  box-shadow: 8px 9px 0 -1.8px #fbfaf7, 8px 9px 0 0 currentColor;
}

.app-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: end;
  min-height: 54px;
  border-bottom: 1px solid #e7e1d8;
  color: var(--muted);
  text-align: center;
}

.app-tabs span,
.app-tabs strong {
  height: 100%;
  display: grid;
  place-items: center;
  font-size: 0.94rem;
}

.app-tabs strong {
  position: relative;
  color: var(--text);
}

.app-tabs strong::after {
  content: "";
  position: absolute;
  left: 26%;
  right: 26%;
  bottom: 0;
  height: 3px;
  border-radius: 999px;
  background: var(--text);
}

.hot-card {
  display: grid;
  grid-template-columns: 40px 1fr 16px;
  align-items: center;
  gap: 12px;
  margin: 14px 16px 26px;
  padding: 14px 16px;
  border: 1px solid #e7e1d8;
  border-radius: 12px;
  background: #f5f2ed;
}

.hot-card p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.3;
}

.hot-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #ffffff;
  background: var(--text);
  font-weight: 800;
}

.hot-icon i {
  position: relative;
  width: 18px;
  height: 18px;
  display: block;
}

.hot-icon i::before,
.hot-icon i::after {
  content: "";
  position: absolute;
  border-radius: 999px;
}

.hot-icon i::before {
  right: 2px;
  top: 4px;
  width: 8px;
  height: 8px;
  border: 2px solid #ffffff;
  background: transparent;
}

.hot-icon i::after {
  left: 1px;
  top: 8px;
  width: 9px;
  height: 2px;
  background: #ffffff;
  box-shadow: 3px -5px 0 -0.5px #ffffff, 3px 5px 0 -0.5px #ffffff;
}

.chevron {
  color: var(--muted);
  font-size: 1.4rem;
}

.feed-card {
  margin: 0 16px 18px;
  padding-bottom: 8px;
  border-bottom: 1px solid #ebe5dc;
}

.feed-card.small-feed {
  opacity: 0.86;
}

.feed-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.feed-head div {
  flex: 1;
}

.feed-head small {
  margin-left: 3px;
  color: #8a867d;
  font-size: 0.78rem;
}

.feed-head em {
  align-self: flex-start;
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--text);
  background: #f1eee8;
  font-style: normal;
  font-size: 0.7rem;
  font-weight: 800;
}

.more-dots {
  color: #9a958c;
  font-size: 0.86rem;
  letter-spacing: 1px;
}

.feed-card p,
.preview-feed p {
  margin: 10px 0;
  color: var(--text);
  line-height: 1.42;
  font-size: 0.93rem;
}

.avatar {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #26362e;
  background: #a5c79d;
  font-size: 0.86rem;
  font-weight: 800;
}

.verified {
  position: relative;
}

.verified::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 11px;
  height: 11px;
  border: 2px solid #fbfaf7;
  border-radius: 50%;
  background: var(--text);
}

.bet-card {
  overflow: hidden;
  margin-left: 54px;
  border: 1px solid #e7e1d8;
  border-radius: 14px;
  background: #fbfaf7;
}

.phone-primary .bet-card {
  margin-left: 0;
}

.bet-meta,
.pick-row,
.social-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.bet-meta {
  padding: 8px 12px;
  color: #8a867d;
  border-bottom: 1px solid #ebe5dc;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
}

.teams-row {
  display: grid;
  grid-template-columns: 34px 1fr 30px 1fr 34px;
  align-items: center;
  gap: 8px;
  padding: 14px 12px;
  background: #f5f2ed;
  font-size: 0.82rem;
}

.teams-row strong {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.teams-row span:not(.team-pill) {
  justify-self: center;
  color: #8a867d;
  font-size: 0.72rem;
  font-weight: 800;
}

.team-pill {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  font-size: 0.7rem;
  font-weight: 900;
}

.green-pill {
  background: #dbf1dc;
  color: #166534;
}

.red-pill {
  background: #ffd9d9;
  color: #991b1b;
}

.pick-row {
  align-items: center;
  padding: 10px 12px;
  font-size: 0.76rem;
}

.pick-row span {
  color: #8a867d;
}

.pick-row strong {
  text-align: right;
}

.social-row {
  margin: 10px 54px 0;
  color: #9a958c;
  font-size: 0.78rem;
}

.avatar-dark {
  background: var(--text);
  color: #ffffff;
}

.compact-topline {
  padding: 14px 14px 10px;
}

.compact-topline strong {
  font-size: 0.98rem;
}

.mini-filter {
  position: relative;
  width: 17px;
  height: 17px;
  color: var(--text);
}

.mini-filter::before {
  content: "";
  position: absolute;
  inset: 4px 1px auto;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 8px 0 currentColor;
}

.mini-filter::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 1px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #fbfaf7;
  border: 1.6px solid currentColor;
  box-shadow: 7px 8px 0 -1.6px #fbfaf7, 7px 8px 0 0 currentColor;
}

.ranking-heading {
  padding: 0 12px 10px;
}

.ranking-heading h3 {
  margin: 0 0 10px;
  font-size: 1.28rem;
}

.ranking-tabs,
.period-tabs {
  display: flex;
  gap: 6px;
  overflow: hidden;
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 800;
}

.ranking-tabs {
  padding-bottom: 8px;
}

.ranking-tabs strong,
.ranking-tabs span,
.period-tabs strong,
.period-tabs span {
  flex: 1 0 auto;
  min-width: 0;
  padding: 7px 8px;
  border-radius: 999px;
  background: #f1eee8;
  text-align: center;
  white-space: nowrap;
}

.ranking-tabs strong,
.period-tabs strong {
  color: #ffffff;
  background: var(--green-dark);
}

.podium-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: end;
  gap: 8px;
  padding: 6px 12px 12px;
}

.podium-row > div {
  min-width: 0;
  display: grid;
  justify-items: center;
  gap: 3px;
  padding: 10px 6px;
  border: 1px solid #e7e1d8;
  border-radius: 12px;
  background: #f5f2ed;
  text-align: center;
}

.podium-row .avatar {
  width: 32px;
  height: 32px;
  flex-basis: 32px;
  font-size: 0.68rem;
}

.podium-row strong {
  max-width: 100%;
  overflow: hidden;
  color: var(--text);
  font-size: 0.74rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.podium-row em {
  color: var(--green-dark);
  font-style: normal;
  font-size: 0.8rem;
  font-weight: 900;
}

.podium-row small {
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 900;
}

.podium-leader {
  transform: translateY(-8px);
  box-shadow: 0 12px 26px rgba(0, 105, 66, 0.14);
}

.ranking-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.ranking-list li {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 12px 10px;
  border-radius: 8px;
  background: #f5f2ed;
  border: 1px solid #e7e1d8;
}

.ranking-list span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  color: #ffffff;
  background: var(--blue);
  font-weight: 800;
}

.ranking-list em {
  color: var(--green-dark);
  font-style: normal;
  font-weight: 800;
}

.detailed-ranking {
  gap: 7px;
  margin: 0 12px;
}

.detailed-ranking li {
  grid-template-columns: 26px 1fr auto;
  gap: 8px;
  padding: 9px 8px;
}

.detailed-ranking span {
  width: 24px;
  height: 24px;
  border-radius: 7px;
  font-size: 0.72rem;
}

.detailed-ranking strong {
  display: block;
  overflow: hidden;
  color: var(--text);
  font-size: 0.74rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.detailed-ranking small {
  display: block;
  margin-top: 2px;
  overflow: hidden;
  color: var(--muted);
  font-size: 0.62rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.detailed-ranking em {
  font-size: 0.72rem;
}

.own-rank {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 8px;
  margin: 10px 12px 0;
  padding: 10px;
  border-radius: 12px;
  color: var(--text);
  background: #e3f4e7;
  font-size: 0.72rem;
  font-weight: 900;
}

.own-rank span {
  color: var(--green-dark);
}

.own-rank em {
  color: var(--green-dark);
  font-style: normal;
}

.ranking-title {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: var(--muted);
  font-size: 0.8rem;
}

.ranking-title span {
  display: block;
  margin-bottom: 4px;
}

.ranking-title strong {
  color: var(--text);
  font-size: 1rem;
}

.ranking-title small {
  color: var(--text);
  font-weight: 800;
}

.ranking-foot {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid #e7e1d8;
  color: var(--muted);
  font-size: 0.72rem;
}

.ranking-foot strong {
  color: var(--text);
}

.section {
  padding: 104px 0;
}

.split-layout,
.app-layout,
.waitlist-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: center;
}

.section-copy,
.section-heading,
.feature-copy,
.waitlist-copy {
  max-width: 700px;
}

h2 {
  margin: 18px 0 14px;
  font-size: 3.25rem;
  line-height: 1.02;
  letter-spacing: 0;
}

p {
  color: var(--muted);
  line-height: 1.72;
  font-size: 1rem;
}

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

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

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

.benefit-card,
.step-card,
.preview-panel,
.waitlist-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.benefit-card,
.step-card {
  padding: 24px;
}

.benefit-card span,
.step-card span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--green);
  font-weight: 800;
}

.benefit-card h3,
.step-card h3 {
  margin: 0 0 10px;
  font-size: 1.18rem;
}

.benefit-card p,
.step-card p {
  margin: 0;
}

.band-section {
  background: var(--background-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.app-section {
  background: #ffffff;
}

.feature-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: grid;
  gap: 4px;
  padding: 16px;
  border-left: 4px solid var(--green);
  background: var(--surface-muted);
}

.feature-list span {
  color: var(--muted);
  line-height: 1.5;
}

.preview-panel {
  padding: 18px;
}

.app-demo-panel {
  display: grid;
  justify-items: center;
  gap: 18px;
  padding: 20px;
  overflow: hidden;
  border-radius: 22px;
  background:
    radial-gradient(circle at 20% 0%, rgba(10, 125, 82, 0.14), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f7f4ed 100%);
}

.screen-tabs,
.app-demo-tabs {
  display: flex;
  width: min(100%, 390px);
  gap: 8px;
  padding: 6px;
  border-radius: 999px;
  background: var(--surface-muted);
  border: 1px solid var(--line);
}

.app-demo-tabs {
  width: min(100%, 456px);
  gap: 6px;
}

.screen-tabs button,
.app-demo-tabs button {
  flex: 1;
  min-height: 38px;
  padding: 0 10px;
  border: 0;
  border-radius: 999px;
  color: var(--muted);
  background: transparent;
  text-align: center;
  font-weight: 800;
  font-size: 0.88rem;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.app-demo-tabs button {
  padding: 0 8px;
  font-size: 0.82rem;
}

.screen-tabs button:hover,
.app-demo-tabs button:hover {
  color: var(--text);
}

.screen-tabs button.active,
.app-demo-tabs button.active {
  color: #ffffff;
  background: var(--text);
  box-shadow: 0 10px 22px rgba(22, 22, 22, 0.12);
}

.app-preview-stack {
  width: min(100%, 420px);
  display: grid;
  align-items: start;
  justify-items: center;
  isolation: isolate;
}

.app-preview-shot {
  grid-area: 1 / 1;
  width: 100%;
  margin: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px) scale(0.985);
  transition: opacity 320ms ease, transform 320ms ease, filter 320ms ease;
  will-change: opacity, transform;
}

.app-preview-shot.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.app-preview-shot[hidden] {
  display: none !important;
}

.splash-phone picture,
.app-preview-shot picture {
  display: block;
}

.app-preview-shot img {
  width: min(100%, 390px);
  max-height: 760px;
  display: block;
  margin: 0 auto;
  border-radius: 42px;
  object-fit: contain;
  filter: drop-shadow(0 28px 48px rgba(22, 22, 22, 0.18));
}

.demo-phone-frame {
  display: none;
  position: relative;
  width: min(100%, 390px);
  padding: 12px;
  border-radius: 46px;
  background: linear-gradient(145deg, #101010, #2a2a2a 48%, #070707);
  box-shadow: 0 30px 70px rgba(22, 22, 22, 0.2), inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.demo-phone-frame::before,
.demo-phone-frame::after {
  content: "";
  position: absolute;
  width: 3px;
  border-radius: 999px;
  background: #1f1f1f;
}

.demo-phone-frame::before {
  left: -2px;
  top: 118px;
  height: 58px;
}

.demo-phone-frame::after {
  right: -2px;
  top: 150px;
  height: 82px;
}

.demo-phone-notch {
  position: absolute;
  top: 21px;
  left: 50%;
  z-index: 4;
  width: 118px;
  height: 33px;
  border-radius: 999px;
  background: #050505;
  transform: translateX(-50%);
}

.demo-phone-screen {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  border-radius: 36px;
  background: #f2f2f7;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, system-ui, sans-serif;
  color: #0e0e0c;
}

.demo-view {
  min-height: 616px;
  padding: 72px 16px 82px;
  background: #f2f2f7;
}

.demo-view[hidden] {
  display: none !important;
}

.demo-topbar,
.demo-profile-actions,
.demo-ranking-head > strong {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.demo-topbar strong,
.demo-ranking-head > strong {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0;
}

.demo-round-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #ffffff;
  color: var(--green-dark);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
  font-weight: 900;
}

.demo-tabs-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin: 18px 0 12px;
  color: #7a7871;
  font-size: 0.78rem;
  font-weight: 800;
  text-align: center;
}

.demo-tabs-row strong {
  position: relative;
  color: var(--green-dark);
}

.demo-tabs-row strong::after {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: -8px;
  height: 3px;
  border-radius: 999px;
  background: var(--green);
}

.demo-hot-card,
.demo-post-card,
.demo-profile-hero,
.demo-stats-grid > div,
.demo-podium > div,
.demo-ranking-list li,
.demo-own-rank {
  border: 1px solid #e1ded6;
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(22, 22, 22, 0.04);
}

.demo-hot-card {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 18px 0 12px;
  padding: 12px;
  border-radius: 18px;
}

.demo-hot-card > span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: #f5f2ed;
}

.demo-hot-card strong,
.demo-hot-card small {
  display: block;
}

.demo-hot-card small,
.demo-post-head small,
.demo-post-card p,
.demo-joined span,
.demo-stats-grid span,
.demo-ranking-list small {
  color: #6b6b66;
}

.demo-hot-card small {
  margin-top: 3px;
  font-size: 0.74rem;
}

.demo-post-card {
  padding: 14px;
  border-radius: 20px;
}

.demo-post-card + .demo-post-card {
  margin-top: 12px;
}

.demo-post-card.compact {
  padding: 12px;
}

.demo-post-head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.demo-post-head div {
  min-width: 0;
}

.demo-post-head strong,
.demo-post-head small {
  display: block;
}

.demo-post-head strong {
  overflow: hidden;
  font-size: 0.9rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.demo-post-head small {
  margin-top: 2px;
  font-size: 0.74rem;
}

.demo-avatar,
.demo-profile-avatar {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #173b2f;
  background: #dff4e7;
  border: 1px solid rgba(10, 125, 82, 0.24);
  font-weight: 900;
}

.demo-avatar {
  width: 38px;
  height: 38px;
  font-size: 0.78rem;
}

.demo-avatar.verified,
.demo-post-head .verified {
  position: relative;
}

.demo-avatar.verified::after,
.demo-post-head .verified::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 10px;
  height: 10px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  background: var(--green);
}

.demo-post-card p {
  margin: 10px 0 0;
  font-size: 0.84rem;
  line-height: 1.45;
}

.demo-bet-slip {
  overflow: hidden;
  margin-top: 12px;
  border: 1px solid #e7e1d8;
  border-radius: 16px;
}

.demo-bet-meta,
.demo-pick-row,
.demo-post-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.demo-bet-meta {
  padding: 8px 10px;
  color: #7a7871;
  background: #fbfaf7;
  font-size: 0.62rem;
  font-weight: 800;
}

.demo-match-row {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr) 24px minmax(0, 1fr) 32px;
  align-items: center;
  gap: 7px;
  padding: 12px 10px;
  background: #f5f2ed;
  font-size: 0.78rem;
}

.demo-match-row strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.demo-match-row em {
  justify-self: center;
  color: #7a7871;
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 900;
}

.demo-team {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  font-size: 0.68rem;
  font-weight: 900;
}

.demo-team.green {
  color: #166534;
  background: #dbf1dc;
}

.demo-team.blue {
  color: #1d4ed8;
  background: #dbeafe;
}

.demo-pick-row {
  padding: 9px 10px;
  background: #ffffff;
  font-size: 0.72rem;
}

.demo-pick-row span {
  color: #7a7871;
  font-weight: 800;
}

.demo-pick-row strong {
  text-align: right;
}

.demo-post-actions {
  margin-top: 10px;
  color: #7a7871;
  font-size: 0.76rem;
  font-weight: 800;
}

.demo-profile-hero {
  padding: 16px;
  border-radius: 24px;
  text-align: center;
}

.demo-profile-actions {
  margin-bottom: 14px;
  color: #6b6b66;
  font-size: 0.76rem;
  font-weight: 800;
}

.demo-profile-actions button {
  min-height: 30px;
  padding: 0 12px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: var(--text);
  font-weight: 800;
}

.demo-profile-avatar {
  width: 70px;
  height: 70px;
  margin: 0 auto 10px;
  font-size: 1.45rem;
  background: linear-gradient(145deg, #dff4e7, #b5e6c5);
}

.demo-profile-hero h3 {
  margin: 0;
  font-size: 1.35rem;
}

.demo-profile-hero p {
  max-width: 260px;
  margin: 8px auto 12px;
  color: #4f4e49;
  font-size: 0.82rem;
  line-height: 1.4;
}

.demo-joined {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  background: #f5f2ed;
  font-size: 0.74rem;
}

.demo-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin: 12px 0;
}

.demo-stats-grid > div {
  display: grid;
  gap: 3px;
  min-width: 0;
  padding: 10px 4px;
  border-radius: 16px;
  text-align: center;
}

.demo-stats-grid strong {
  font-size: 0.94rem;
}

.demo-stats-grid span {
  overflow: hidden;
  font-size: 0.58rem;
  font-weight: 800;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.demo-section-title {
  margin: 6px 0 10px;
  font-size: 0.84rem;
  font-weight: 900;
}

.demo-mini-pick {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-top: 10px;
  padding: 9px 10px;
  border-radius: 14px;
  background: #f5f2ed;
  font-size: 0.72rem;
  font-weight: 800;
}

.demo-mini-pick span {
  color: var(--green-dark);
}

.demo-ranking-head h3 {
  margin: 18px 0 12px;
  font-size: 1.55rem;
  letter-spacing: 0;
}

.demo-ranking-tabs,
.demo-period-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  color: #6b6b66;
  font-size: 0.66rem;
  font-weight: 800;
}

.demo-period-tabs {
  margin-top: 7px;
}

.demo-ranking-tabs span,
.demo-ranking-tabs strong,
.demo-period-tabs span,
.demo-period-tabs strong {
  min-width: 0;
  padding: 8px 6px;
  border-radius: 999px;
  background: #ffffff;
  text-align: center;
  white-space: nowrap;
}

.demo-ranking-tabs strong,
.demo-period-tabs strong {
  color: #ffffff;
  background: var(--green-dark);
}

.demo-podium {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: end;
  gap: 8px;
  margin: 18px 0 12px;
}

.demo-podium > div {
  display: grid;
  justify-items: center;
  gap: 3px;
  min-width: 0;
  padding: 12px 6px;
  border-radius: 18px;
  text-align: center;
}

.demo-podium .leader {
  transform: translateY(-10px);
  background: #e3f4e7;
  border-color: rgba(10, 125, 82, 0.26);
}

.demo-podium strong {
  overflow: hidden;
  max-width: 100%;
  font-size: 0.74rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.demo-podium em {
  color: var(--green-dark);
  font-size: 0.86rem;
  font-style: normal;
  font-weight: 900;
}

.demo-podium small {
  color: #6b6b66;
  font-size: 0.64rem;
  font-weight: 900;
}

.demo-ranking-list {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.demo-ranking-list li {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  gap: 8px;
  padding: 9px;
  border-radius: 16px;
}

.demo-ranking-list li > span {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  color: #ffffff;
  background: var(--text);
  font-size: 0.72rem;
  font-weight: 900;
}

.demo-ranking-list strong,
.demo-ranking-list small {
  display: block;
}

.demo-ranking-list strong {
  font-size: 0.78rem;
}

.demo-ranking-list small {
  margin-top: 2px;
  font-size: 0.64rem;
}

.demo-ranking-list em,
.demo-own-rank em {
  color: var(--green-dark);
  font-style: normal;
  font-weight: 900;
}

.demo-own-rank {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  padding: 11px;
  border-radius: 18px;
  background: #e3f4e7;
  font-size: 0.76rem;
  font-weight: 900;
}

.demo-own-rank span {
  color: var(--green-dark);
}

.demo-bottom-nav {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  gap: 4px;
  min-height: 74px;
  padding: 10px 12px 12px;
  border-top: 1px solid #e1ded6;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
}

.demo-bottom-nav span {
  display: grid;
  justify-items: center;
  gap: 3px;
  color: #6b6b66;
  font-size: 1rem;
  font-weight: 900;
}

.demo-bottom-nav small {
  font-size: 0.58rem;
  font-weight: 800;
}

.demo-bottom-nav .add {
  width: 42px;
  height: 42px;
  justify-self: center;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: var(--green);
  font-size: 1.4rem;
}

.preview-feed {
  display: none;
}

.preview-feed article,
.preview-meta,
.preview-meta small {
  all: unset;
}

.waitlist-section {
  background: #173b2f;
  color: #ffffff;
}

.seo-guides-section {
  color: #ffffff;
  background: #0f3328;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.seo-guides-section .eyebrow {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.1);
}

.seo-guide-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 44px;
  align-items: start;
}

.seo-guide-intro {
  position: sticky;
  top: 118px;
}

.seo-guide-intro h2 {
  max-width: 620px;
}

.seo-guide-intro p {
  max-width: 590px;
  color: rgba(255, 255, 255, 0.76);
}

.seo-guide-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.seo-guide-tags span {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 800;
}

.seo-guide-grid {
  display: grid;
  gap: 12px;
}

.seo-guide-card {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  min-height: 156px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.14);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.seo-guide-card::after {
  content: "â†—";
  position: absolute;
  right: 20px;
  top: 18px;
  color: rgba(255, 255, 255, 0.46);
  font-weight: 900;
}

.seo-guide-card:hover {
  border-color: rgba(157, 228, 192, 0.44);
  background: rgba(255, 255, 255, 0.11);
  transform: translateY(-4px);
}

.guide-number {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(157, 228, 192, 0.34);
  border-radius: var(--radius);
  color: #9de4c0;
  background: rgba(157, 228, 192, 0.09);
  font-size: 0.78rem;
  font-weight: 900;
}

.seo-guide-card strong {
  display: block;
  margin-bottom: 8px;
  color: #9de4c0;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.seo-guide-card h3 {
  max-width: 460px;
  margin: 0 32px 10px 0;
  color: #ffffff;
  font-size: 1.28rem;
  line-height: 1.18;
}

.seo-guide-card p {
  margin: 0;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.96rem;
  line-height: 1.58;
}

.seo-page-hero {
  min-height: 720px;
  padding: 132px 0 86px;
  color: #ffffff;
  background: #102f27;
}

.seo-page-hero .container {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 56px;
  align-items: center;
}

.seo-page-hero h1 {
  margin: 20px 0 18px;
  font-size: clamp(3.1rem, 5.4vw, 5.4rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.seo-page-hero p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
}

.seo-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.seo-home-link {
  color: rgba(255, 255, 255, 0.86);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

.seo-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
  font-weight: 700;
}

.seo-breadcrumb a {
  color: #9de4c0;
}

.seo-breadcrumb a:hover {
  color: #ffffff;
}

.seo-page-panel {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(16px);
}

.seo-page-panel strong {
  color: #ffffff;
  font-size: 1.12rem;
}

.seo-page-panel span {
  color: #9de4c0;
  font-weight: 900;
}

.seo-page-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}

.seo-content-grid {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 38px;
  align-items: start;
}

.seo-copy {
  display: grid;
  gap: 28px;
}

.seo-copy article,
.seo-side-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.seo-copy article {
  padding: 28px;
}

.seo-copy h2 {
  margin-top: 0;
  font-size: 2.25rem;
}

.seo-copy h3 {
  margin: 0 0 10px;
  font-size: 1.28rem;
}

.seo-copy ul,
.seo-side-card ul {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.62;
}

.seo-side-card {
  position: sticky;
  top: 110px;
  padding: 26px;
}

.seo-side-card h2 {
  margin: 0 0 12px;
  font-size: 1.7rem;
}

.seo-related {
  background: #ffffff;
}

.seo-faq {
  background: var(--background-soft);
}

.seo-faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.seo-faq-grid article {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.seo-faq-grid h3 {
  margin: 0 0 12px;
  font-size: 1.2rem;
  line-height: 1.2;
}

.seo-faq-grid p {
  margin: 0;
}

.seo-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.seo-related-grid a {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-muted);
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.seo-related-grid a:hover {
  border-color: var(--line-strong);
  background: #ffffff;
  transform: translateY(-2px);
}

.waitlist-section p {
  color: rgba(255, 255, 255, 0.78);
}

.waitlist-section .eyebrow {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.12);
}

.waitlist-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.waitlist-notes span {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}

.waitlist-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  color: var(--text);
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row label {
  font-weight: 800;
  font-size: 0.92rem;
}

.form-row input,
.form-row select {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--text);
}

.form-row input:focus,
.form-row select:focus {
  outline: 3px solid rgba(10, 125, 82, 0.18);
  border-color: var(--green);
}

.checkbox-row {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  color: var(--muted);
  line-height: 1.5;
}

.checkbox-row input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--green);
}

.form-button {
  width: 100%;
  border: 0;
}

.form-status {
  display: none;
  min-height: 24px;
  margin: 2px 0 0;
  padding: 12px 14px;
  border: 1px solid rgba(10, 125, 82, 0.22);
  border-radius: var(--radius);
  color: #063d2b;
  background: #ecfdf5;
  font-weight: 700;
  line-height: 1.4;
}

.form-status:not(:empty) {
  display: block;
}

.form-status.loading {
  color: #143526;
  background: #f4f0df;
  border-color: rgba(122, 94, 24, 0.24);
}

.form-status.success {
  color: #063d2b;
  background: #ecfdf5;
  border-color: rgba(10, 125, 82, 0.24);
}

.form-status.error {
  color: #8f2f12;
  background: #fff4ed;
  border-color: rgba(194, 65, 12, 0.24);
}

.footer {
  padding: 28px 0;
  background: var(--text);
  color: rgba(255, 255, 255, 0.78);
}

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.footer a {
  color: #ffffff;
  font-weight: 700;
}

.legal-note {
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid rgba(10, 125, 82, 0.2);
  border-radius: var(--radius);
  background: #eef8f3;
  color: #173b2f;
}

.legal-note strong {
  font-size: 1rem;
}

.legal-note p {
  margin: 0;
  color: #2f5448;
  line-height: 1.65;
}

.cookie-banner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  width: min(calc(100% - 36px), 620px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  color: #ffffff;
  background: rgba(13, 45, 35, 0.97);
  box-shadow: 0 20px 55px rgba(4, 21, 16, 0.28);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.cookie-banner.visible {
  opacity: 1;
  transform: translateY(0);
}

.cookie-banner-copy {
  display: grid;
  gap: 8px;
}

.cookie-banner-copy strong {
  font-size: 1rem;
}

.cookie-banner-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  line-height: 1.55;
}

.cookie-banner-copy a {
  width: fit-content;
  color: #ffffff;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-banner-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

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

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

.delay-1 {
  transition-delay: 100ms;
}

.delay-2 {
  transition-delay: 180ms;
}

.delay-3 {
  transition-delay: 260ms;
}

@keyframes cuePulse {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(7px);
  }
}


@media (max-width: 900px) {
  .app-demo-panel {
    max-width: 470px;
    margin: 0 auto;
  }
}

@media (max-width: 620px) {
  .app-demo-panel {
    padding: 14px;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
    right: 12px;
    bottom: 12px;
    width: calc(100% - 24px);
  }

  .cookie-banner-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .demo-phone-frame {
    width: min(100%, 360px);
    border-radius: 40px;
    padding: 10px;
  }

  .demo-phone-screen {
    min-height: 640px;
    border-radius: 31px;
  }

  .demo-view {
    min-height: 570px;
    padding: 68px 12px 78px;
  }

  .demo-stats-grid {
    gap: 6px;
  }

  .demo-stats-grid span {
    font-size: 0.52rem;
  }
}

@media (max-width: 1120px) {
  .phone-primary {
    right: 4%;
  }

  .phone-secondary {
    display: none;
  }

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

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

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

  .nav-links {
    position: fixed;
    top: 88px;
    left: 20px;
    right: 20px;
    display: grid;
    gap: 8px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    background: rgba(13, 45, 35, 0.96);
    box-shadow: var(--shadow-soft);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a {
    padding: 13px;
    border-radius: var(--radius);
    color: rgba(255, 255, 255, 0.84);
    background: rgba(255, 255, 255, 0.08);
  }

  .nav-links .nav-cta {
    justify-content: center;
    color: #0d2d23;
    background: #ffffff;
  }

  .hero {
    padding: 110px 0 72px;
  }

  .splash-title {
    font-size: 4.6rem;
  }

  .hero-scene {
    opacity: 0.28;
  }

  .phone-primary {
    top: 108px;
    right: -96px;
  }

  .split-layout,
  .app-layout,
  .waitlist-layout,
  .seo-page-hero .container,
  .seo-content-grid {
    grid-template-columns: 1fr;
  }

  .seo-side-card {
    position: static;
  }

  .hero-content {
    max-width: 100%;
    padding-right: 0;
  }

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

  .seo-guide-layout {
    grid-template-columns: 1fr;
  }

  .seo-guide-intro {
    position: static;
  }

  h2 {
    font-size: 2.4rem;
  }
}

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

  .navbar {
    min-height: 62px;
  }

  .hero h1 {
    font-size: 4.2rem;
  }

  .splash {
    padding: 24px;
  }

  .splash-title {
    max-width: 10ch;
    font-size: 3.2rem;
  }

  .hero-lead {
    font-size: 1.04rem;
  }

  .hero-actions {
    display: grid;
  }

  .proof-row span {
    flex: 1 1 calc(50% - 10px);
    text-align: center;
  }

  .section {
    padding: 74px 0;
  }

  h2 {
    font-size: 2rem;
  }

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

  .seo-guide-grid,
  .seo-faq-grid,
  .seo-related-grid {
    grid-template-columns: 1fr;
  }

  .seo-guide-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .seo-guide-card h3 {
    margin-right: 24px;
  }

  .seo-guide-tags {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .seo-page-hero {
    min-height: auto;
    padding: 106px 0 66px;
  }

  .seo-page-hero h1 {
    font-size: clamp(2.7rem, 12vw, 4rem);
  }

  .seo-page-actions {
    display: grid;
  }

  .phone {
    width: 260px;
  }

  .hero {
    padding: 118px 0 56px;
  }

  .hero h1 {
    max-width: 9ch;
    font-size: 2.75rem;
    line-height: 0.98;
  }

  .hero-lead {
    max-width: 20ch;
    font-size: 0.98rem;
    line-height: 1.52;
  }

  .phone-primary {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    bottom: auto;
    margin: 30px auto 0;
    transform: none;
  }

  .phone-secondary {
    display: none;
  }

  .app-screen {
    min-height: 500px;
  }

  .proof-row {
    gap: 8px;
  }

  .proof-row span {
    flex: 1 1 100%;
    font-size: 0.84rem;
  }

  .waitlist-form {
    padding: 18px;
  }
}

/* Ajustes pedidos: sem barra de estado e palpite mais largo no telemÃ³vel principal */
.phone-status,
.status-icons {
  display: none;
}

.feed-screen .bet-card {
  margin-left: 0;
  width: 100%;
}

.feed-screen .teams-row {
  grid-template-columns: 34px minmax(92px, 1fr) 24px minmax(82px, 1fr) 34px;
  gap: 7px;
  padding: 14px 10px;
}

.feed-screen .pick-row {
  gap: 12px;
}

.feed-screen .pick-row strong {
  flex: 1;
  text-align: right;
}

@media (max-width: 620px) {
  .feed-screen .teams-row {
    grid-template-columns: 30px minmax(72px, 1fr) 20px minmax(68px, 1fr) 30px;
    gap: 5px;
    padding: 12px 8px;
    font-size: 0.72rem;
  }

  .feed-screen .pick-row {
    font-size: 0.68rem;
    padding: 9px 8px;
  }
}

:root {
  --background: #f6f7f4;
  --background-soft: #edf3ef;
  --surface-muted: #f3f5f0;
  --line: #dce4dc;
  --line-strong: #c7d4ca;
  --green: #0b8a5a;
  --green-dark: #12382d;
  --blue: #2563eb;
  --shadow: 0 22px 60px rgba(14, 34, 29, 0.14);
  --shadow-soft: 0 14px 34px rgba(14, 34, 29, 0.08);
}

body {
  background:
    linear-gradient(90deg, rgba(18, 56, 45, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(18, 56, 45, 0.028) 1px, transparent 1px),
    var(--background);
  background-size: 48px 48px;
}

.splash {
  isolation: isolate;
  overflow: hidden;
  justify-items: start;
  padding: 64px max(24px, calc((100vw - var(--container)) / 2));
  background: #102f27;
}

.splash::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
}

.splash::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(4, 18, 14, 0.46));
}

.splash-title {
  position: relative;
  z-index: 2;
  width: min(100%, 800px);
  max-width: 800px;
  font-size: clamp(3.7rem, 8.2vw, 7.4rem);
  line-height: 0.91;
  text-align: left;
  text-wrap: balance;
}

.splash-visual {
  position: absolute;
  right: max(-32px, calc((100vw - var(--container)) / 2 - 46px));
  bottom: 6vh;
  z-index: 1;
  width: min(32vw, 360px);
  min-width: 260px;
  pointer-events: none;
}

.splash-visual::before {
  content: "";
  position: absolute;
  inset: -18px -20px;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 48px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
  opacity: 0;
  transform: rotate(8deg);
}

.splash-phone {
  overflow: hidden;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 38px;
  background: #0d0f0e;
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.38);
  transform: rotate(8deg);
  animation: floatPhone 7s ease-in-out infinite;
}

.splash-phone img {
  width: 100%;
  max-height: 620px;
  display: block;
  border-radius: 30px;
  object-fit: cover;
  object-position: top center;
}

.splash-card {
  position: absolute;
  display: grid;
  gap: 2px;
  min-width: 148px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  color: #ffffff;
  background: rgba(14, 34, 29, 0.76);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.splash-card strong {
  font-size: 1.08rem;
}

.splash-card span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
}

.splash-card-top {
  top: 14%;
  left: -84px;
}

.splash-card-bottom {
  right: -18px;
  bottom: 12%;
}

.hero {
  min-height: 780px;
  padding: 116px 0 96px;
  background: #102f27;
}

.hero-scene {
  opacity: 1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.038) 1px, transparent 1px);
  background-size: 72px 72px;
}

.hero-content {
  max-width: 640px;
  padding-right: 0;
  z-index: 3;
}

.hero h1 {
  max-width: 520px;
  font-size: clamp(3.35rem, 5.35vw, 5.1rem);
  text-wrap: balance;
}

.hero-lead {
  color: rgba(255, 255, 255, 0.82);
}

.button-primary,
.button-secondary,
.nav-links .nav-cta {
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button-primary:hover,
.button-secondary:hover,
.nav-links .nav-cta:hover {
  transform: translateY(-2px);
}

.insight-slider {
  width: min(100%, 610px);
  overflow: hidden;
  margin-top: 22px;
  padding: 2px 0;
  mask-image: linear-gradient(90deg, transparent 0, #000 10%, #000 90%, transparent 100%);
}

.insight-track {
  display: flex;
  width: max-content;
  gap: 12px;
  animation: slideInsights 28s linear infinite;
}

.insight-track article {
  width: 188px;
  display: grid;
  gap: 5px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.095);
  backdrop-filter: blur(14px);
}

.insight-track span {
  color: #9de4c0;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.insight-track strong {
  font-size: 0.98rem;
}

.insight-track em {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
  font-style: normal;
  font-weight: 700;
}

.phone {
  border: 1px solid rgba(255, 255, 255, 0.16);
  z-index: 1;
}

.phone-primary {
  top: 74px;
  right: max(6%, calc((100vw - var(--container)) / 2));
  width: min(31vw, 382px);
  min-width: 330px;
}

.phone-secondary {
  right: max(1.5%, calc((100vw - var(--container)) / 2 - 72px));
  bottom: 72px;
}

.phone-primary.reveal.visible {
  transform: rotate(2.5deg);
  animation: floatPhoneSoft 8s ease-in-out infinite;
}

.phone-secondary.reveal.visible {
  transform: rotate(-5deg);
  animation: floatPhoneSoftAlt 8.5s ease-in-out infinite;
}

.benefit-card,
.step-card,
.waitlist-form,
.preview-panel {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.benefit-card:hover,
.step-card:hover,
.preview-panel:hover {
  border-color: var(--line-strong);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.benefit-card,
.step-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 252, 248, 0.98));
}

.band-section {
  background:
    linear-gradient(90deg, rgba(37, 99, 235, 0.045), transparent 34%),
    var(--background-soft);
}

.app-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #f7faf6 100%);
}

.app-demo-panel {
  background:
    linear-gradient(135deg, rgba(11, 138, 90, 0.12), rgba(37, 99, 235, 0.08)),
    #ffffff;
}

.app-preview-shot img {
  max-height: min(76vh, 760px);
}

.waitlist-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #102f27;
}

.waitlist-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 74px 74px;
  opacity: 0.62;
}

@keyframes floatPhone {
  0%,
  100% {
    transform: translateY(0) rotate(8deg);
  }

  50% {
    transform: translateY(-16px) rotate(6.5deg);
  }
}

@keyframes floatPhoneSoft {
  0%,
  100% {
    transform: translateY(0) rotate(2.5deg);
  }

  50% {
    transform: translateY(-10px) rotate(1.5deg);
  }
}

@keyframes floatPhoneSoftAlt {
  0%,
  100% {
    transform: translateY(0) rotate(-5deg);
  }

  50% {
    transform: translateY(9px) rotate(-4deg);
  }
}

@keyframes slideInsights {
  from {
    transform: translateX(0);
  }

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

@media (max-width: 1120px) {
  .hero {
    min-height: auto;
  }

  .phone-primary {
    right: -86px;
    width: 340px;
    min-width: 0;
  }

  .phone-secondary {
    display: block;
    right: -44px;
    width: 238px;
    opacity: 0.7;
  }
}

@media (max-width: 900px) {
  .splash {
    align-items: end;
    padding: 48px 24px 118px;
  }

  .splash-title {
    width: min(100%, 720px);
    font-size: clamp(3.4rem, 12vw, 5.6rem);
  }

  .splash-visual {
    right: -86px;
    bottom: 22vh;
    width: 260px;
    min-width: 0;
    opacity: 0.54;
  }

  .splash-card {
    display: none;
  }

  .hero {
    padding: 92px 0 78px;
  }

  .hero-content {
    max-width: 560px;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 10vw, 5rem);
  }

  .phone-primary {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    width: min(100%, 352px);
    margin: 34px auto 0;
  }

  .phone-primary.reveal.visible {
    transform: rotate(0deg);
  }

  .phone-secondary {
    display: none;
  }

  .insight-slider {
    width: 100%;
  }

  .app-layout,
  .split-layout,
  .waitlist-layout {
    gap: 30px;
  }
}

@media (max-width: 620px) {
  .topbar {
    top: 10px;
  }

  .splash {
    min-height: 100svh;
    padding: 34px 18px 96px;
  }

  .splash-title {
    max-width: 100%;
    font-size: clamp(2.25rem, 10.5vw, 2.85rem);
    line-height: 0.98;
  }

  .splash-visual {
    top: 76px;
    right: 18px;
    bottom: auto;
    width: clamp(210px, 62vw, 260px);
    min-width: 0;
    opacity: 0.42;
  }

  .splash-visual::before {
    opacity: 1;
  }

  .splash-phone {
    padding: 8px;
    border-radius: 34px;
    box-shadow: 0 24px 58px rgba(0, 0, 0, 0.32);
    transform: rotate(7deg);
    animation: none;
  }

  .splash-phone img {
    max-height: 430px;
    border-radius: 26px;
  }

  .scroll-cue {
    bottom: 22px;
    transform: translateX(-50%);
  }

  .hero {
    padding: 82px 0 58px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.85rem, 13vw, 4.1rem);
    line-height: 0.98;
  }

  .hero-lead {
    max-width: 100%;
  }

  .proof-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .proof-row span {
    text-align: left;
  }

  .insight-track {
    animation-duration: 22s;
  }

  .insight-track article {
    width: 172px;
  }

  .phone-primary {
    width: min(100%, 324px);
    padding: 9px;
    border-radius: 30px;
  }

  .phone-primary.reveal.visible {
    animation: none;
  }

  .app-screen {
    min-height: 570px;
    border-radius: 22px;
  }

  .hot-card {
    margin-bottom: 18px;
  }

  .social-row {
    margin-right: 0;
    margin-left: 0;
    font-size: 0.7rem;
  }

  .app-demo-tabs {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-radius: 18px;
  }

  .app-demo-tabs button {
    border-radius: 14px;
  }

  .app-preview-shot img {
    width: min(100%, 330px);
    max-height: 690px;
    border-radius: 34px;
  }

  .benefit-card,
  .step-card {
    padding: 20px;
  }

  .waitlist-notes {
    display: grid;
  }
}

@media (max-width: 380px) {
  .splash-title {
    font-size: 2rem;
  }

  .hero h1 {
    font-size: 2.6rem;
  }

  .phone-primary {
    width: 100%;
  }

  .app-screen {
    min-height: 548px;
  }

  .app-topline {
    padding: 16px 12px 12px;
  }

  .hot-card,
  .feed-card {
    margin-right: 12px;
    margin-left: 12px;
  }
}

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

.hero .hero-phone-shot.phone-primary {
  top: 58px;
  right: 8%;
  width: min(30vw, 360px);
  min-width: 320px;
}

.hero .hero-phone-shot.phone-primary.reveal.visible {
  transform: rotate(2.5deg);
}

.hero .hero-phone-shot.phone-secondary {
  right: 2%;
  bottom: 52px;
  width: min(21vw, 260px);
  min-width: 220px;
}

.hero .hero-phone-shot.phone-secondary.reveal.visible {
  transform: rotate(-5deg);
}

@media (max-width: 1120px) {
  .hero .hero-phone-shot.phone-primary {
    right: -52px;
    width: 330px;
    min-width: 0;
  }

  .hero .hero-phone-shot.phone-secondary {
    right: -36px;
    width: 220px;
    min-width: 0;
    opacity: 0.66;
  }
}

@media (max-width: 900px) {
  .hero .hero-phone-shot.phone-primary {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    width: min(100%, 340px);
    min-width: 0;
    margin: 34px auto 0;
    transform: rotate(0deg);
  }

  .hero .hero-phone-shot.phone-primary.reveal.visible {
    transform: rotate(0deg);
  }

  .hero .hero-phone-shot.phone-secondary {
    display: none;
  }
}

@media (max-width: 620px) {
  .hero .hero-phone-shot.phone-primary {
    width: min(100%, 318px);
    padding: 8px;
    border-radius: 34px;
  }

  .hero-phone-shot img {
    border-radius: 26px;
  }
}