:root {
  color-scheme: dark;
  --bg: #080b14;
  --bg-2: #0b101c;
  --panel: #101624;
  --panel-2: #151c2b;
  --text: #f8fafc;
  --muted: #a1b2c8;
  --dim: #78869d;
  --red: #e8353a;
  --red-2: #a82325;
  --gold: #f0c060;
  --blue: #60a5fa;
  --green: #34d399;
  --field: #123827;
  --line: rgba(255, 255, 255, 0.1);
  --line-soft: rgba(255, 255, 255, 0.06);
  --shadow: rgba(0, 0, 0, 0.52);
  --max: 1180px;
  --radius: 8px;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(135deg, rgba(18, 56, 39, 0.28), transparent 34rem),
    linear-gradient(180deg, rgba(232, 53, 58, 0.08), transparent 28rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.5;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}

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

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

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 50;
  transform: translateY(-180%);
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--text);
  color: var(--bg);
  font-weight: 800;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  padding: 14px max(20px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid var(--line-soft);
  background: rgba(8, 11, 20, 0.62);
  backdrop-filter: blur(20px);
  transition: background 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(8, 11, 20, 0.9);
}

.brand {
  display: inline-flex;
  align-items: baseline;
  font-family: "Segoe UI", Inter, system-ui, sans-serif;
  font-size: 1.12rem;
  font-weight: 900;
  white-space: nowrap;
}

.brand strong {
  color: var(--red);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-size: 0.93rem;
  font-weight: 800;
}

.site-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active,
.site-nav a[aria-current="page"],
.footer-links a[aria-current="page"] {
  color: var(--text);
}

.site-nav .nav-cta {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(232, 53, 58, 0.4);
  border-radius: var(--radius);
  background: rgba(232, 53, 58, 0.12);
  color: var(--text);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(16, 22, 36, 0.9);
  color: var(--text);
}

.nav-toggle span {
  pointer-events: none;
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(340px, 0.82fr) minmax(460px, 0.78fr);
  gap: 34px;
  align-items: center;
  min-height: clamp(760px, 92svh, 900px);
  padding: 104px max(20px, calc((100vw - var(--max)) / 2)) 96px;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(8, 11, 20, 0.96) 0%, rgba(8, 11, 20, 0.82) 44%, rgba(8, 11, 20, 0.94) 100%),
    linear-gradient(180deg, rgba(8, 11, 20, 0.24) 0%, rgba(8, 11, 20, 1) 100%),
    url("assets/hero-ai-arena.jpg") center / cover no-repeat;
}

.hero-copy {
  max-width: 650px;
  justify-self: start;
  padding: 34px 0 40px;
  text-align: left;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

h1 {
  max-width: 780px;
  margin-bottom: 18px;
  font-family: "Segoe UI", Inter, system-ui, sans-serif;
  font-size: 4.85rem;
  line-height: 0.9;
  font-weight: 900;
}

.hero-title-stack {
  display: block;
}

.hero-title-stack span {
  display: inline-block;
  text-shadow: 0 0 28px rgba(96, 165, 250, 0.2);
}

.hero-title-stack strong {
  color: var(--red);
}

h2 {
  margin-bottom: 20px;
  font-size: 3.35rem;
  line-height: 0.98;
  font-weight: 800;
  overflow-wrap: break-word;
}

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

.section h1 {
  font-size: 3.6rem;
  line-height: 1;
}

.hero-lead {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.08rem;
  font-weight: 700;
}

.hero-kicker {
  max-width: 620px;
  margin-bottom: 18px;
  color: var(--text);
  font-size: 1.38rem;
  font-weight: 900;
  line-height: 1.25;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  white-space: nowrap;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

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

.brand:focus-visible,
.skip-link:focus-visible,
.site-nav a:focus-visible,
.nav-toggle:focus-visible,
.button:focus-visible,
.footer-links a:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(240, 192, 96, 0.95);
  outline-offset: 4px;
}

.button-primary {
  background: linear-gradient(135deg, #ff4046, var(--red-2));
  color: white;
  box-shadow: 0 18px 48px rgba(232, 53, 58, 0.24);
}

.button-secondary {
  background: rgba(16, 22, 36, 0.76);
  border-color: var(--line);
  color: var(--text);
}

.button-secondary:hover {
  border-color: rgba(240, 192, 96, 0.5);
}

.trust-line,
.hero-bottom,
.proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-line {
  justify-content: flex-start;
  margin-top: 22px;
}

.trust-line span,
.hero-bottom p,
.proof-row span {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(16, 22, 36, 0.56);
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.hero-bottom {
  grid-column: 1 / -1;
  width: 100%;
  margin-left: 0;
  padding: 14px 16px 0;
  border-top: 1px solid var(--line-soft);
  background: transparent;
}

.hero-bottom p {
  margin: 0;
}

.hero-product {
  position: relative;
  width: min(100%, 210px);
  justify-self: center;
  align-self: stretch;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: #070a12;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.48);
}

.hero-product img {
  width: 100%;
  height: 100%;
  max-height: 470px;
  object-fit: cover;
  border-radius: var(--radius);
}

.hero-product figcaption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(8, 11, 20, 0.88);
  backdrop-filter: blur(14px);
}

.hero-product span,
.trust-grid span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-product strong {
  display: block;
  margin-top: 4px;
  font-size: 0.98rem;
}

.hero-dashboard {
  position: relative;
  align-self: center;
  min-width: 0;
  padding: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(16, 22, 36, 0.92), rgba(8, 11, 20, 0.94)),
    rgba(8, 11, 20, 0.92);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(18px);
}

.hero-dashboard::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold), var(--green));
  opacity: 0.86;
}

.dashboard-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 42px;
  padding: 0 4px 12px;
  color: var(--dim);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(232, 53, 58, 0.42);
  border-radius: 999px;
  background: rgba(232, 53, 58, 0.12);
  color: #ff6469;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(160px, 0.54fr);
  gap: 14px;
  align-items: stretch;
}

.match-feed {
  min-width: 0;
  display: grid;
  gap: 10px;
}

.match-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto 50px;
  align-items: center;
  gap: 12px;
  min-height: 74px;
  padding: 12px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(8, 11, 20, 0.58);
}

.match-row.active {
  border-color: rgba(240, 192, 96, 0.36);
  background:
    linear-gradient(90deg, rgba(240, 192, 96, 0.09), rgba(8, 11, 20, 0.62)),
    rgba(8, 11, 20, 0.58);
}

.match-row span {
  display: block;
  color: var(--dim);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.match-row strong {
  display: block;
  margin-top: 4px;
  overflow: hidden;
  color: var(--text);
  font-size: 0.98rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.match-row mark {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid rgba(240, 192, 96, 0.28);
  border-radius: var(--radius);
  background: rgba(240, 192, 96, 0.12);
  color: var(--gold);
  font-size: 0.86rem;
  font-weight: 900;
  white-space: nowrap;
}

.match-row b {
  justify-self: end;
  color: var(--green);
  font-size: 1rem;
}

.signal-summary {
  min-height: 110px;
  padding: 18px;
  border: 1px solid rgba(96, 165, 250, 0.22);
  border-radius: var(--radius);
  background: rgba(96, 165, 250, 0.08);
}

.signal-summary span {
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.signal-summary strong {
  display: block;
  margin-top: 10px;
  font-size: 1.22rem;
  line-height: 1.16;
}

.hero-strip {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  padding: 10px max(20px, calc((100vw - var(--max)) / 2));
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(16, 10, 40, 0.82);
  backdrop-filter: blur(18px);
}

.strip-track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scrollbar-width: none;
}

.strip-track::-webkit-scrollbar {
  display: none;
}

.strip-pick {
  flex: 0 0 270px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 3px 10px;
  align-items: center;
  min-height: 52px;
  padding: 10px 12px;
  border: 1px solid rgba(96, 165, 250, 0.18);
  border-radius: var(--radius);
  background: rgba(28, 20, 74, 0.74);
}

.strip-pick span {
  grid-column: 1 / -1;
  color: var(--dim);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.strip-pick strong {
  min-width: 0;
  overflow: hidden;
  color: var(--text);
  font-size: 0.9rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.strip-pick mark {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 9px;
  border-radius: 999px;
  background: rgba(52, 211, 153, 0.18);
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
}

.today-section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 74px 20px 84px;
  position: relative;
  z-index: 4;
  scroll-margin-top: 106px;
}

.today-heading {
  max-width: 760px;
  margin: 0 auto 24px;
  text-align: center;
}

.today-heading h2 {
  margin-bottom: 0;
  font-size: 2.85rem;
}

.today-heading p:last-child {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.picks-table-wrap {
  overflow: hidden;
  border: 1px solid rgba(240, 192, 96, 0.22);
  border-radius: var(--radius);
  background: rgba(12, 17, 31, 0.92);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
}

.picks-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.96rem;
}

.picks-table th,
.picks-table td {
  padding: 18px;
  border-bottom: 1px solid var(--line-soft);
  text-align: left;
  vertical-align: middle;
}

.picks-table th {
  color: var(--dim);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.picks-table td {
  color: var(--text);
  font-weight: 800;
}

.picks-table td span {
  display: block;
  color: var(--dim);
  font-size: 0.82rem;
  font-weight: 700;
}

.picks-table em {
  color: var(--dim);
  font-style: normal;
  font-weight: 700;
}

.picks-table mark {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border-radius: var(--radius);
  background: rgba(240, 192, 96, 0.14);
  color: var(--gold);
  font-weight: 900;
}

.confidence {
  display: inline-flex !important;
  width: 64px;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: rgba(96, 165, 250, 0.12);
  color: var(--blue) !important;
}

.confidence.high {
  background: rgba(52, 211, 153, 0.12);
  color: var(--green) !important;
}

.table-note {
  margin: 0;
  padding: 14px 18px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.section,
.product-stage {
  max-width: var(--max);
  margin: 0 auto;
  padding: 106px 20px;
  scroll-margin-top: 96px;
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.75fr);
  gap: 58px;
  align-items: end;
}

.section-heading {
  max-width: 780px;
}

.intro-copy p,
.stage-copy p,
.section-heading p,
.pro-copy p,
.defis-copy p,
.proof-inner p,
.final-inner p,
.faq-list p {
  color: var(--muted);
  font-size: 1.08rem;
  font-weight: 700;
}

.product-stage {
  display: grid;
  grid-template-columns: minmax(280px, 0.58fr) minmax(0, 1.16fr);
  gap: 48px;
  align-items: center;
  padding-top: 46px;
}

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

.screen-wall {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: center;
}

.screen-card {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #070a12;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.36);
}

.screen-card.tall {
  min-height: 620px;
}

.screen-card.lift {
  transform: translateY(-34px);
}

.screen-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  opacity: 0.88;
}

.screen-card figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(8, 11, 20, 0.82);
  backdrop-filter: blur(14px);
}

.screen-card span,
.pro-points span,
.defis-board span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.screen-card strong {
  display: block;
  margin-top: 5px;
  font-size: 1rem;
}

.signal-section {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background:
    linear-gradient(135deg, rgba(18, 56, 39, 0.2), transparent 34rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 18rem);
}

.signal-lab {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
  margin-top: 38px;
}

.signal-console {
  position: relative;
  min-height: 382px;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(240, 192, 96, 0.28);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(16, 22, 36, 0.9), rgba(8, 11, 20, 0.72)),
    rgba(8, 11, 20, 0.88);
}

.signal-console::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--green));
}

.signal-console-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--dim);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.signal-console-top span {
  color: var(--gold);
}

.signal-console h3 {
  margin: 30px 0 0;
  font-size: 1.45rem;
}

.signal-pick {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(112px, 0.42fr);
  gap: 12px;
  margin: 22px 0;
}

.signal-pick div {
  min-height: 86px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.signal-pick span,
.signal-evidence li {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.signal-pick strong {
  display: block;
  margin-top: 6px;
  color: var(--text);
  font-size: 1.08rem;
}

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

.signal-evidence li {
  position: relative;
  padding-left: 18px;
}

.signal-evidence li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 2px;
  border-radius: 999px;
  background: var(--green);
}

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

.signal-lab .signal-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 0;
}

.signal-item {
  min-height: 182px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(16, 22, 36, 0.88), rgba(16, 22, 36, 0.46));
}

.signal-item,
.trust-grid article,
.defis-board article,
.faq-list details,
.pro-points div {
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.signal-item:hover,
.trust-grid article:hover,
.defis-board article:hover,
.faq-list details:hover,
.pro-points div:hover {
  transform: translateY(-2px);
  border-color: rgba(240, 192, 96, 0.28);
}

.signal-item span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border-radius: var(--radius);
  background: rgba(232, 53, 58, 0.14);
  color: var(--red);
  font-weight: 900;
}

.signal-item:nth-child(2) span,
.signal-item:nth-child(4) span {
  background: rgba(240, 192, 96, 0.14);
  color: var(--gold);
}

.signal-item:nth-child(3) span {
  background: rgba(96, 165, 250, 0.14);
  color: var(--blue);
}

.signal-item p {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 700;
}

.pro-section {
  position: relative;
  overflow: hidden;
  padding: 118px max(20px, calc((100vw - var(--max)) / 2));
}

.pro-bg,
.final-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8, 11, 20, 0.98), rgba(8, 11, 20, 0.72)),
    linear-gradient(180deg, rgba(8, 11, 20, 0.2), rgba(8, 11, 20, 0.98)),
    url("assets/challenge_stadium_atmosphere.jpg") center / cover no-repeat;
}

.pro-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 390px);
  gap: 70px;
  align-items: center;
}

.pro-copy {
  max-width: 700px;
}

.pro-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 36px;
}

.pro-points div {
  min-height: 132px;
  padding: 20px;
  border: 1px solid rgba(240, 192, 96, 0.28);
  border-radius: var(--radius);
  background: rgba(16, 22, 36, 0.72);
}

.pro-points strong {
  display: block;
  margin-top: 10px;
  font-size: 1.05rem;
}

.premium-phone {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: #070a12;
  box-shadow: 0 34px 90px var(--shadow);
}

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

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

.trust-grid article {
  min-height: 226px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(18, 56, 39, 0.42), rgba(16, 22, 36, 0.66)),
    rgba(16, 22, 36, 0.82);
}

.trust-grid h3 {
  margin-top: 24px;
}

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

.premium-phone img {
  width: 100%;
  max-height: 720px;
  object-fit: cover;
}

.defis-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(340px, 0.88fr);
  gap: 58px;
  align-items: start;
}

.defis-copy {
  max-width: 620px;
}

.defis-board {
  display: grid;
  gap: 14px;
}

.defis-board article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  min-height: 132px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(232, 53, 58, 0.08), transparent),
    rgba(16, 22, 36, 0.78);
}

.defis-board span {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(240, 192, 96, 0.24);
  border-radius: var(--radius);
  background: rgba(240, 192, 96, 0.1);
}

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

.proof-section {
  padding: 70px 20px;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: #0b101c;
}

.proof-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.proof-inner h2 {
  max-width: 760px;
}

.proof-inner p {
  max-width: 760px;
}

.proof-row {
  margin-top: 26px;
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(320px, 0.95fr);
  gap: 52px;
  align-items: start;
}

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

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(16, 22, 36, 0.76);
}

.faq-list summary {
  min-height: 66px;
  display: flex;
  align-items: center;
  padding: 0 18px;
  color: var(--text);
  cursor: pointer;
  font-weight: 900;
}

.faq-list p {
  margin: 0;
  padding: 0 18px 20px;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 118px 20px 126px;
  text-align: center;
}

.final-inner {
  max-width: 820px;
  margin: 0 auto;
}

.final-inner img {
  width: 104px;
  height: 104px;
  margin: 0 auto 24px;
  object-fit: contain;
}

.final-inner .hero-actions {
  justify-content: center;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 26px;
  align-items: center;
  padding: 30px max(20px, calc((100vw - var(--max)) / 2));
  border-top: 1px solid var(--line-soft);
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-weight: 800;
}

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

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

.reveal.can-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

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

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

  .reveal,
  .reveal.can-reveal {
    opacity: 1;
    transform: none;
  }

  .signal-item:hover,
  .trust-grid article:hover,
  .defis-board article:hover,
  .faq-list details:hover,
  .pro-points div:hover,
  .button:hover {
    transform: none;
  }
}

@media (max-width: 1100px) {
  h1 {
    font-size: 4.6rem;
  }

  h2 {
    font-size: 2.85rem;
  }

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

  .hero-copy {
    max-width: 760px;
    padding-bottom: 24px;
  }

  .hero-dashboard {
    width: 100%;
  }

  .hero-product {
    width: min(100%, 230px);
    justify-self: center;
    margin-top: 0;
  }

  .intro-section,
  .today-heading,
  .product-stage,
  .pro-inner,
  .defis-section,
  .faq-section {
    grid-template-columns: 1fr;
  }

  .stage-copy {
    position: static;
  }

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

  .pro-points {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  .site-header {
    min-height: 66px;
  }

  .js .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: static;
    flex: 0 0 100%;
    order: 3;
    display: grid;
    gap: 2px;
    padding: 12px;
    margin-top: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(8, 11, 20, 0.96);
  }

  .js .site-nav {
    position: absolute;
    top: 66px;
    left: 14px;
    right: 14px;
    margin-top: 0;
    display: none;
  }

  .js .site-nav[data-open="true"] {
    display: grid;
    gap: 2px;
  }

  .site-nav a,
  .site-nav .nav-cta {
    min-height: 48px;
    justify-content: flex-start;
    padding: 0 10px;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr);
    justify-items: stretch;
    min-height: auto;
    padding: 74px 18px 0;
  }

  .hero-media {
    background:
      linear-gradient(180deg, rgba(8, 11, 20, 0.42) 0%, rgba(8, 11, 20, 0.86) 56%, rgba(8, 11, 20, 1) 100%),
      url("assets/hero-ai-arena.jpg") center top / cover no-repeat;
  }

  .hero-copy {
    width: 100%;
    width: calc(100dvw - 36px);
    max-width: 100%;
    max-width: calc(100dvw - 36px);
    justify-self: stretch;
    padding: 24px 0 14px;
    text-align: center;
  }

  h1 {
    justify-content: center;
    width: 100%;
    max-width: 100%;
    font-size: 2.7rem;
    line-height: 0.92;
    overflow-wrap: anywhere;
  }

  .hero-title-stack span {
    display: block;
    max-width: 100%;
  }

  .section h1 {
    font-size: 2.45rem;
    line-height: 1.04;
  }

  h2 {
    font-size: 2.35rem;
  }

  .today-heading h2 {
    font-size: 2.25rem;
  }

  .hero-lead,
  .hero-kicker,
  .intro-copy p,
  .stage-copy p,
  .section-heading p,
  .pro-copy p,
  .defis-copy p,
  .proof-inner p,
  .final-inner p,
  .faq-list p {
    font-size: 1rem;
  }

  .hero-kicker {
    max-width: 100%;
    margin-bottom: 10px;
  }

  .hero-lead {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .hero-actions {
    width: 100%;
    gap: 10px;
    margin-top: 22px;
  }

  .button {
    width: 100%;
    min-height: 50px;
    max-width: 100%;
    padding: 0 16px;
    text-align: center;
    white-space: normal;
  }

  .trust-line {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 14px;
  }

  .trust-line span {
    justify-content: center;
    min-height: 34px;
    padding: 0 6px;
    font-size: 0.73rem;
    text-align: center;
  }

  .hero-dashboard {
    width: 100%;
    width: calc(100dvw - 36px);
    max-width: calc(100dvw - 36px);
    justify-self: stretch;
    padding: 10px;
  }

  .dashboard-topline {
    display: grid;
    justify-items: start;
    gap: 8px;
    padding-bottom: 10px;
    text-align: left;
  }

  .dashboard-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .match-row {
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 58px;
    gap: 8px;
    padding: 10px;
  }

  .match-feed .match-row:nth-of-type(3) {
    display: none;
  }

  .match-row b {
    display: none;
  }

  .signal-summary {
    min-height: auto;
    padding: 12px;
  }

  .signal-summary strong {
    margin-top: 6px;
    font-size: 0.98rem;
  }

  .hero-product {
    display: none;
  }

  .hero-bottom {
    display: none;
  }

  .hero-bottom p {
    justify-content: center;
    text-align: center;
  }

  .hero-strip {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100vw;
    width: 100dvw;
    max-width: 100dvw;
    margin: 10px -18px 0;
    padding: 8px 18px;
    overflow: hidden;
  }

  .strip-pick {
    flex-basis: 238px;
    min-height: 50px;
  }

  .today-section {
    margin-top: 0;
    padding: 36px 18px 70px;
  }

  .picks-table-wrap {
    overflow: hidden;
  }

  .picks-table {
    min-width: 0;
  }

  .picks-table thead {
    display: none;
  }

  .picks-table,
  .picks-table tbody,
  .picks-table tr,
  .picks-table td {
    display: block;
    width: 100%;
  }

  .picks-table tr {
    padding: 14px 16px;
    border-bottom: 1px solid var(--line-soft);
  }

  .picks-table td {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 8px 0;
    border-bottom: 0;
    text-align: right;
  }

  .picks-table td::before {
    content: attr(data-label);
    flex: 0 0 auto;
    color: var(--dim);
    font-size: 0.72rem;
    font-weight: 900;
    text-align: left;
    text-transform: uppercase;
  }

  .picks-table td:first-child,
  .picks-table td:nth-child(2) {
    display: block;
    text-align: left;
  }

  .picks-table td:first-child::before,
  .picks-table td:nth-child(2)::before {
    display: block;
    margin-bottom: 4px;
  }

  .section,
  .product-stage {
    padding: 78px 18px;
  }

  .screen-wall {
    grid-template-columns: 1fr;
  }

  .screen-card,
  .screen-card.tall {
    min-height: 520px;
  }

  .screen-card.lift {
    transform: none;
  }

  .signal-lab {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 24px;
  }

  .signal-console {
    min-height: auto;
    padding: 18px;
  }

  .signal-console h3 {
    margin-top: 22px;
    font-size: 1.22rem;
  }

  .signal-pick {
    margin: 16px 0;
  }

  .signal-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

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

  .signal-item {
    min-height: auto;
    padding: 18px;
  }

  .pro-section,
  .final-cta {
    padding-left: 18px;
    padding-right: 18px;
  }

  .premium-phone {
    border-radius: var(--radius);
  }

  .defis-board article {
    grid-template-columns: 52px 1fr;
    gap: 14px;
  }

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

@media (max-width: 420px) {
  .hero {
    padding-left: 18px;
    padding-right: 18px;
  }

  h1 {
    font-size: 2.34rem;
    line-height: 0.96;
  }

  .hero-title-stack span {
    display: block;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .hero-lead {
    display: none;
  }

  .hero-kicker {
    font-size: 0.98rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .trust-line {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .trust-line span {
    min-height: 38px;
    font-size: 0.68rem;
  }

  .match-row {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

  .match-row mark {
    justify-self: end;
    min-height: 30px;
    padding: 0 8px;
    font-size: 0.8rem;
  }

  .signal-pick {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 360px) {
  h1 {
    font-size: 2.08rem;
  }
}
