:root {
  color-scheme: light;
  --ink: #172b22;
  --muted: #53665b;
  --soft: #344f40;
  --field: #ffffff;
  --panel: rgba(255, 255, 255, 0.94);
  --panel-solid: #ffffff;
  --line: rgba(32, 77, 49, 0.16);
  --green: #24743b;
  --green-2: #185c30;
  --cyan: #227b95;
  --gold: #946500;
  --coral: #b4382b;
  --shadow: 0 24px 80px rgba(25, 65, 40, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 8% 4%, rgba(36, 116, 59, 0.18), transparent 30rem),
    radial-gradient(circle at 90% 22%, rgba(34, 123, 149, 0.14), transparent 28rem),
    linear-gradient(180deg, #f7fbf5 0%, #ffffff 42%, #f3f7f2 100%);
  color: var(--ink);
  min-width: 320px;
}

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

button,
input {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1160px, calc(100% - 28px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 48px rgba(25, 65, 40, 0.08);
}

.brand,
.nav-links,
.hero-actions {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-logo {
  position: relative;
  display: block;
  width: 170px;
  aspect-ratio: 1085 / 320;
  overflow: hidden;
  flex-shrink: 0;
  mix-blend-mode: multiply;
}

.brand-logo img {
  position: absolute;
  display: block;
  width: 115.576%;
  max-width: none;
  height: auto;
  left: -8.295%;
  top: -142.188%;
}

.nav-links {
  gap: 24px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

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

.header-cta,
.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 900;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.header-cta {
  padding: 0 18px;
  background: rgba(36, 116, 59, 0.12);
  color: var(--green);
  border: 1px solid rgba(36, 116, 59, 0.35);
}

.button {
  padding: 0 22px;
  border: 1px solid transparent;
}

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

.button.primary {
  background: linear-gradient(135deg, var(--green), var(--green-2));
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(36, 116, 59, 0.16);
}

.button.secondary {
  color: var(--ink);
  background: rgba(36, 116, 59, 0.04);
  border-color: var(--line);
}

.hero-section {
  min-height: 92vh;
  position: relative;
  display: grid;
  align-items: start;
  overflow: hidden;
  padding: 174px 24px 76px;
  border-bottom: 1px solid var(--line);
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0.95;
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(36, 116, 59, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36, 116, 59, 0.055) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 18%, black 68%, transparent 100%);
}

.market-grid {
  position: absolute;
  inset: 0;
}

.calc-results span {
  color: var(--muted);
  font-weight: 800;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.signal-orbit {
  position: absolute;
  right: 10%;
  top: 23%;
  width: min(560px, 48vw);
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(36, 116, 59, 0.2);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(36, 116, 59, 0.11) 0 2px, transparent 3px),
    radial-gradient(circle, rgba(34, 123, 149, 0.08), transparent 58%);
  background-size: 28px 28px, auto;
  filter: drop-shadow(0 0 60px rgba(36, 116, 59, 0.12));
}

.orbit-ring,
.scan-line,
.signal-dot,
.pulse-bars {
  position: absolute;
  pointer-events: none;
}

.orbit-ring {
  inset: 16%;
  border: 1px solid rgba(34, 123, 149, 0.18);
  border-radius: 50%;
  animation: orbitSpin 18s linear infinite;
}

.ring-two {
  inset: 30%;
  border-color: rgba(36, 116, 59, 0.18);
  animation-duration: 12s;
  animation-direction: reverse;
}

.orbit-ring::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 24px rgba(36, 116, 59, 0.9);
}

.scan-line {
  top: 18%;
  bottom: 18%;
  left: 50%;
  width: 2px;
  background: linear-gradient(transparent, rgba(36, 116, 59, 0.62), transparent);
  animation: scanSweep 4.8s ease-in-out infinite;
}

.signal-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 28px rgba(34, 123, 149, 0.9);
  animation: signalPulse 2.2s ease-in-out infinite;
}

.dot-one {
  top: 28%;
  left: 34%;
}

.dot-two {
  top: 58%;
  right: 26%;
  animation-delay: 0.45s;
}

.dot-three {
  right: 38%;
  bottom: 22%;
  background: var(--green);
  animation-delay: 0.9s;
}

.pulse-bars {
  right: 18%;
  bottom: 22%;
  display: grid;
  grid-template-columns: repeat(5, 9px);
  gap: 8px;
  align-items: end;
  height: 96px;
  padding: 14px;
  border: 1px solid rgba(32, 77, 49, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(8px);
}

.pulse-bars i {
  display: block;
  height: 36%;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, var(--green), rgba(36, 116, 59, 0.18));
  animation: barPulse 1.8s ease-in-out infinite;
}

.pulse-bars i:nth-child(2) {
  animation-delay: 0.15s;
}

.pulse-bars i:nth-child(3) {
  animation-delay: 0.3s;
}

.pulse-bars i:nth-child(4) {
  animation-delay: 0.45s;
}

.pulse-bars i:nth-child(5) {
  animation-delay: 0.6s;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1160px, 100%);
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--green);
  text-transform: uppercase;
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  font-weight: 900;
  line-height: 1.05;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(4.6rem, 15vw, 12rem);
  line-height: 0.82;
  font-weight: 900;
  letter-spacing: 0;
}

.hero-title {
  max-width: 840px;
  margin-bottom: 22px;
  color: var(--ink);
  font-size: clamp(2.7rem, 4.4vw, 5rem);
  line-height: 0.96;
  text-transform: uppercase;
}

@media (max-width: 560px) {
  .hero-title {
    max-width: 100%;
    font-size: clamp(2.6rem, 13vw, 4.4rem);
  }
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  line-height: 0.96;
  font-weight: 900;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
}

.hero-copy {
  max-width: 760px;
  color: var(--soft);
  font-size: clamp(1.25rem, 2.4vw, 1.75rem);
  line-height: 1.55;
}

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

.hero-actions .button {
  min-height: 58px;
  padding: 0 34px;
  font-size: 1.08rem;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
  color: var(--muted);
  font-weight: 800;
}

.hero-trust span {
  display: inline-flex;
  align-items: center;
}

.hero-trust span + span::before {
  content: "";
  width: 5px;
  height: 5px;
  margin-right: 12px;
  border-radius: 50%;
  background: rgba(83, 102, 91, 0.55);
}

.hero-proof span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  gap: 5px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f0f5ee;
  color: var(--soft);
  font-size: 0.9rem;
  font-weight: 800;
}

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

.section {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
  padding: 96px 0 0;
}

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

@keyframes scanSweep {
  0%,
  100% {
    transform: translateX(-160px);
    opacity: 0;
  }

  18%,
  82% {
    opacity: 1;
  }

  50% {
    transform: translateX(160px);
    opacity: 0.85;
  }
}

@keyframes signalPulse {
  0%,
  100% {
    transform: scale(0.72);
    opacity: 0.38;
  }

  50% {
    transform: scale(1.18);
    opacity: 1;
  }
}

@keyframes barPulse {
  0%,
  100% {
    height: 28%;
    opacity: 0.48;
  }

  50% {
    height: 92%;
    opacity: 1;
  }
}

.split-section,
.calculator-section {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 48px;
  align-items: center;
}

.section-copy p:not(.eyebrow),
.founder-panel p,
.final-cta p {
  color: var(--muted);
  font-size: clamp(1.06rem, 1.6vw, 1.22rem);
  line-height: 1.7;
}

.text-link {
  color: var(--green);
  font-weight: 900;
  border-bottom: 1px solid rgba(36, 116, 59, 0.36);
}

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

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

.feature-card,
.plan-card,
.calculator-shell,
.founder-panel,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 14px 50px rgba(25, 65, 40, 0.055);
}

.feature-card {
  padding: 24px;
  min-height: 220px;
}

.feature-card p,
.plan-card li,
.faq-list p,
.calc-note {
  color: var(--muted);
  line-height: 1.62;
}

.icon-pill {
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 8px;
  background: rgba(36, 116, 59, 0.1);
  color: var(--green);
}

.icon-pill svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.founder-panel {
  display: grid;
  grid-template-columns: 1fr minmax(130px, 150px);
  gap: clamp(24px, 5vw, 54px);
  align-items: center;
  padding: clamp(28px, 5vw, 54px);
  max-width: 980px;
}

.founder-panel .eyebrow {
  color: var(--green);
}

.founder-photo {
  width: min(150px, 100%);
  max-width: 150px;
  aspect-ratio: 1;
  justify-self: center;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(36, 116, 59, 0.28);
  box-shadow: 0 22px 70px rgba(25, 65, 40, 0.12);
}

.founder-photo img {
  width: 118%;
  height: 118%;
  display: block;
  object-fit: cover;
  object-position: center center;
  transform: translate(-8%, -4%);
}

.calculator-shell {
  padding: clamp(24px, 4vw, 36px);
}

.calc-controls label {
  display: block;
  margin-bottom: 12px;
  color: var(--soft);
  font-weight: 900;
}

.money-input {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 70px;
  padding: 0 18px;
  border: 1px solid rgba(36, 116, 59, 0.34);
  border-radius: 8px;
  background: var(--field);
}

.money-input span {
  color: var(--green);
  font-size: 1.4rem;
  font-weight: 900;
}

.money-input input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
}

input[type="range"] {
  width: 100%;
  margin: 24px 0;
  accent-color: var(--green);
}

.calc-results {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.calc-results div {
  padding: 18px;
  border-radius: 8px;
  background: #f0f5ee;
}

.calc-results strong {
  display: block;
  margin-top: 8px;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
}

.calc-note {
  margin: 18px 0 0;
  font-size: 0.88rem;
}

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

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

.single-plan-grid {
  grid-template-columns: minmax(0, 760px);
  justify-content: start;
}

.pricing-toggle {
  width: min(760px, 100%);
  margin: 0 0 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f0f5ee;
}

.pricing-toggle button {
  min-height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-weight: 900;
}

.pricing-toggle button b {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 9px;
  border-radius: 999px;
  background: var(--green);
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.pricing-toggle button.active {
  border-color: rgba(36, 116, 59, 0.54);
  background: rgba(36, 116, 59, 0.14);
  color: var(--green);
}

.plan-card {
  padding: 24px;
}

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
}

.featured-plan {
  border-color: rgba(36, 116, 59, 0.54);
  background: linear-gradient(180deg, rgba(36, 116, 59, 0.12), rgba(255, 255, 255, 0.98));
}

.price {
  margin-bottom: 20px;
  color: var(--ink);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1;
}

.price > span:first-child {
  color: var(--ink);
}

.price > span:last-child {
  color: var(--muted);
  font-size: 1rem;
}

.plan-card ul {
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.plan-card li {
  position: relative;
  padding: 10px 0 10px 28px;
  border-bottom: 1px solid var(--line);
}

.plan-card li::before {
  content: "";
  position: absolute;
  top: 17px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
}

.hidden {
  display: none;
}

.plan-card .button {
  margin-top: auto;
  width: 100%;
}

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

.faq-list details {
  padding: 0 22px;
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 0;
  color: var(--ink);
  font-weight: 900;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--green);
  font-size: 1.2rem;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  max-width: 850px;
  margin-bottom: 20px;
}

.final-cta {
  width: min(1160px, calc(100% - 48px));
  margin: 110px auto 0;
  padding: clamp(34px, 7vw, 70px);
  border: 1px solid rgba(36, 116, 59, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(rgba(36, 116, 59, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36, 116, 59, 0.04) 1px, transparent 1px),
    linear-gradient(145deg, #e5f2df, #ffffff);
  background-size: 50px 50px, 50px 50px, auto;
  box-shadow: var(--shadow);
}

.final-cta h2 {
  max-width: 780px;
}

.final-cta p:not(.eyebrow) {
  max-width: 580px;
}

.site-footer {
  width: min(1160px, calc(100% - 48px));
  margin: 70px auto 0;
  padding: 42px 0 50px;
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 38px;
  border-top: 1px solid var(--line);
}

.footer-brand {
  width: max-content;
  margin-bottom: 12px;
}

.site-footer p,
.disclosure {
  color: var(--muted);
  line-height: 1.65;
}

.disclosure h3 {
  color: var(--ink);
}

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

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    overflow-x: auto;
    padding-top: 6px;
  }

  .hero-section {
    min-height: 720px;
    padding-top: 170px;
  }

  .signal-orbit {
    right: -8%;
    width: 620px;
    max-width: 92vw;
  }

  .split-section,
  .founder-section,
  .calculator-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .founder-panel {
    grid-template-columns: 1fr;
  }

  .founder-photo {
    justify-self: start;
  }

  .feature-grid,
  .plans-grid,
  .stats-summary {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .site-header,
  .section,
  .final-cta,
  .site-footer {
    width: min(100% - 28px, 1160px);
  }

  .header-cta {
    padding: 0 12px;
    font-size: 0.86rem;
  }

  .nav-links {
    font-size: 0.82rem;
  }

  .hero-section {
    min-height: 790px;
    padding: 176px 14px 46px;
  }

  h2 {
    font-size: 2.25rem;
  }

  .button {
    width: 100%;
  }

  .calc-results {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 720px) {
  .hero-section {
    padding-top: 190px;
  }
}

@media (max-width: 900px) {
  .stats-summary {
    grid-template-columns: 1fr;
  }

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

.founder-section {
  display: block;
}

.sports-tabs,
.month-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.month-tabs {
  margin-top: -8px;
}

.sports-tabs button,
.month-tabs button {
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f0f5ee;
  color: var(--soft);
  cursor: pointer;
  font-weight: 900;
}

.sports-tabs button.active,
.month-tabs button.active {
  border-color: rgba(36, 116, 59, 0.54);
  background: rgba(36, 116, 59, 0.14);
  color: var(--green);
}

.stats-summary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}

.stats-summary article,
.bets-table-wrap {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 14px 50px rgba(25, 65, 40, 0.055);
}

.stats-summary article {
  padding: 20px;
}

.stats-summary span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.stats-summary strong {
  display: block;
  color: var(--ink);
  font-size: clamp(1.55rem, 3vw, 2.45rem);
  line-height: 1;
}

.stats-chart {
  margin-bottom: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 14px 50px rgba(25, 65, 40, 0.055);
}

.chart-title {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
  color: var(--muted);
  font-weight: 900;
  text-transform: uppercase;
}

.chart-title strong {
  text-transform: none;
}

.stats-chart svg {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
}

.chart-grid-line {
  stroke: rgba(32, 77, 49, 0.2);
  stroke-width: 1;
}

.chart-area {
  fill: rgba(36, 116, 59, 0.09);
}

.chart-line {
  fill: none;
  stroke: var(--green);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
}

.chart-bar {
  opacity: 0.62;
}

.positive-bar {
  fill: rgba(36, 116, 59, 0.32);
}

.negative-bar {
  fill: rgba(180, 56, 43, 0.28);
}

.chart-dots circle {
  fill: var(--green);
  filter: drop-shadow(0 0 7px rgba(36, 116, 59, 0.65));
}

.chart-label,
.chart-empty {
  fill: var(--muted);
  font-size: 14px;
  font-weight: 900;
}

.bets-table-wrap {
  overflow-x: auto;
}

.bets-table {
  width: 100%;
  min-width: 880px;
  border-collapse: collapse;
}

.bets-table th,
.bets-table td {
  padding: 15px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.bets-table th {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.bets-table td {
  color: var(--soft);
  font-size: 0.92rem;
  line-height: 1.45;
}

.bets-table tr:last-child td {
  border-bottom: 0;
}

.table-pagination {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 14px;
}

.table-pagination button {
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f0f5ee;
  color: var(--soft);
  cursor: pointer;
  font-weight: 900;
}

.table-pagination button:not(:disabled):hover {
  border-color: rgba(36, 116, 59, 0.54);
  color: var(--green);
}

.table-pagination button:disabled {
  cursor: not-allowed;
  opacity: 0.42;
}

.table-pagination span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 900;
}

.pick-title {
  display: block;
  color: var(--ink);
  font-weight: 900;
}

.pick-meta {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.82rem;
}

.result-pill {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 9px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.result-pill.win {
  background: rgba(36, 116, 59, 0.14);
  color: var(--green);
}

.result-pill.loss {
  background: rgba(180, 56, 43, 0.13);
  color: var(--coral);
}

.positive {
  color: var(--green);
  font-weight: 900;
}

.negative {
  color: var(--coral);
  font-weight: 900;
}

@media (max-width: 900px) {
  .stats-summary,
  .feature-grid {
    grid-template-columns: 1fr;
  }
}
