:root {
  color-scheme: light;
  --ink: #111512;
  --ink-soft: #26302a;
  --muted: #5f6a62;
  --paper: #fffefa;
  --chalk: #f5f7f2;
  --chalk-strong: #e9eee5;
  --line: rgba(17, 21, 18, 0.14);
  --line-strong: rgba(17, 21, 18, 0.24);
  --court: #0f4b3a;
  --court-dark: #092d24;
  --clay: #b85a35;
  --blue: #245b80;
  --gold: #c4a24d;
  --danger: #a83b2a;
  --shadow-soft: 0 20px 60px rgba(17, 21, 18, 0.12);
  --shadow-hard: 0 28px 90px rgba(17, 21, 18, 0.22);
  --radius: 8px;
  --radius-sm: 6px;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(17, 21, 18, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(17, 21, 18, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, #fbfcf8 0%, var(--chalk) 48%, #eef2ec 100%);
  background-size: 72px 72px, 72px 72px, auto;
  color: var(--ink);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body::selection {
  background: rgba(184, 90, 53, 0.25);
}

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

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(36, 91, 128, 0.72);
  outline-offset: 4px;
}

.wrap {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(17, 21, 18, 0.1);
  background: rgba(251, 252, 248, 0.86);
  backdrop-filter: blur(18px);
}

.nav-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
  font-size: 20px;
  font-weight: 780;
  line-height: 1;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  box-shadow: inset 0 -6px 16px rgba(0, 0, 0, 0.16);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 680;
}

.nav-links a,
.footer a,
.link {
  text-decoration: none;
}

.nav-links a {
  position: relative;
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  transition: color 160ms var(--ease), background 160ms var(--ease);
}

.nav-links a::after {
  content: "";
  position: absolute;
  right: 12px;
  bottom: 6px;
  left: 12px;
  height: 2px;
  background: var(--clay);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms var(--ease);
}

.nav-links a:hover {
  background: rgba(17, 21, 18, 0.045);
  color: var(--ink);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.footer a:hover,
.link:hover {
  color: var(--court);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: rgba(255, 254, 250, 0.86);
  color: var(--ink);
  padding: 12px 18px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 780;
  line-height: 1;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.75) inset;
  transition: transform 170ms var(--ease), border-color 170ms var(--ease), background 170ms var(--ease), box-shadow 170ms var(--ease);
}

.button.primary {
  border-color: var(--ink);
  background: var(--ink);
  color: #ffffff;
  box-shadow: 0 12px 34px rgba(17, 21, 18, 0.18);
}

.button.inverse {
  border-color: #ffffff;
  background: #ffffff;
  color: var(--ink);
}

.button.ghost {
  border-color: rgba(255, 255, 255, 0.34);
  background: transparent;
  color: #ffffff;
}

.button:hover {
  transform: translateY(-2px);
  border-color: var(--clay);
  box-shadow: 0 14px 34px rgba(17, 21, 18, 0.14);
}

.button.primary:hover,
.button.inverse:hover {
  border-color: var(--clay);
}

.hero {
  position: relative;
  overflow: hidden;
  display: flex;
  min-height: clamp(530px, 68svh, 660px);
  align-items: center;
  background: #111512;
  color: #ffffff;
  padding: 70px 0 58px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(14, 20, 17, 0.88) 0%, rgba(14, 20, 17, 0.72) 42%, rgba(14, 20, 17, 0.28) 100%),
    linear-gradient(180deg, rgba(14, 20, 17, 0.2), rgba(14, 20, 17, 0.82));
  pointer-events: none;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 850px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(430px, 0.9fr);
  align-items: center;
  gap: 58px;
}

.preview-section {
  background: linear-gradient(180deg, rgba(255, 254, 250, 0.96), rgba(239, 244, 237, 0.7));
}

.preview-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(430px, 1fr);
  align-items: center;
  gap: 56px;
}

.preview-copy {
  margin-bottom: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--court);
  font-size: 13px;
  font-weight: 820;
  line-height: 1.25;
  text-transform: none;
}

h1,
h2,
h3,
.display {
  margin: 0;
  line-height: 0.98;
  text-wrap: balance;
}

h1 {
  max-width: 780px;
  font-size: 68px;
  font-weight: 860;
}

h2 {
  font-size: 52px;
  font-weight: 840;
}

h3 {
  font-size: 23px;
  font-weight: 800;
}

.lead {
  max-width: 660px;
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: 21px;
  line-height: 1.45;
}

.hero .eyebrow {
  color: #d8bd67;
}

.hero h1 {
  color: #ffffff;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.32);
}

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

.hero .button {
  border-color: rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  box-shadow: none;
}

.hero .button.primary {
  border-color: #ffffff;
  background: #ffffff;
  color: var(--ink);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

.copy {
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.cta-row.center {
  justify-content: center;
}

.hero-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.hero .hero-note {
  color: rgba(255, 255, 255, 0.74);
}

.hero-proofline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 680px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.hero-proofline span {
  display: grid;
  gap: 3px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.3;
}

.hero-proofline strong {
  color: var(--ink);
  font-size: 24px;
  line-height: 1;
}

.hero .hero-proofline {
  border-top-color: rgba(255, 255, 255, 0.24);
}

.hero .hero-proofline span {
  color: rgba(255, 255, 255, 0.72);
}

.hero .hero-proofline strong {
  color: #ffffff;
}

.app-proof {
  position: relative;
  width: min(100%, 500px);
  margin-left: auto;
  padding-bottom: 0;
}

.product-stage {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  border: 1px solid rgba(17, 21, 18, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 254, 250, 0.98), rgba(230, 237, 229, 0.94)),
    linear-gradient(90deg, rgba(15, 75, 58, 0.06), rgba(184, 90, 53, 0.08));
  box-shadow: var(--shadow-hard);
  isolation: isolate;
}

.court-lines {
  position: absolute;
  inset: 18px;
  z-index: -1;
  border: 1px solid rgba(15, 75, 58, 0.2);
  opacity: 0.7;
}

.court-lines::before,
.court-lines::after {
  content: "";
  position: absolute;
  background: rgba(15, 75, 58, 0.18);
}

.court-lines::before {
  top: 48%;
  right: 0;
  left: 0;
  height: 1px;
}

.court-lines::after {
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
}

.racket-gallery {
  position: absolute;
  inset: 0;
}

.racket-shot {
  position: absolute;
  width: 45%;
  max-width: none;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 20px 28px rgba(17, 21, 18, 0.18));
  user-select: none;
}

.racket-shot-primary {
  top: -6px;
  right: -26px;
  width: 51%;
  transform: rotate(5deg);
}

.racket-shot-secondary {
  top: 56px;
  left: -34px;
  width: 45%;
  transform: rotate(-7deg);
}

.racket-shot-tertiary {
  right: 33%;
  bottom: -164px;
  width: 40%;
  opacity: 0.92;
  transform: rotate(8deg);
}

.racket-shot-quaternary {
  top: -120px;
  left: 30%;
  width: 35%;
  opacity: 0.62;
  transform: rotate(80deg);
}

.decision-panel {
  position: absolute;
  right: auto;
  bottom: 22px;
  left: 22px;
  z-index: 2;
  display: grid;
  gap: 15px;
  width: min(350px, calc(100% - 44px));
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius);
  background: rgba(255, 254, 250, 0.88);
  padding: 20px;
  box-shadow: 0 22px 56px rgba(17, 21, 18, 0.18);
  backdrop-filter: blur(16px);
}

.preview-top,
.preview-footer,
.preview-profile,
.preview-scores {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.preview-top {
  color: var(--muted);
  font-size: 13px;
  font-weight: 760;
}

.decision-panel .preview-top,
.decision-panel > .eyebrow {
  display: none;
}

.brand-mark.small {
  width: 30px;
  height: 30px;
  border-radius: var(--radius-sm);
  background: #ffffff;
  box-shadow: none;
}

.preview-profile {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.78);
  padding: 11px 12px;
  color: var(--muted);
  font-size: 13px;
}

.preview-profile strong {
  color: var(--ink);
}

.preview-scores {
  align-items: stretch;
}

.preview-scores div {
  flex: 1;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.78);
  padding: 13px;
}

.preview-scores span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
}

.preview-scores strong {
  display: block;
  margin-top: 6px;
  color: var(--court-dark);
  font-size: 40px;
  line-height: 1;
}

.preview-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.preview-list li {
  position: relative;
  padding-left: 20px;
  color: var(--ink-soft);
  font-size: 14px;
}

.preview-list li::before {
  content: "";
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--clay);
}

.preview-footer {
  justify-content: flex-start;
  flex-wrap: wrap;
}

.preview-footer span {
  border: 1px solid rgba(15, 75, 58, 0.2);
  border-radius: var(--radius-sm);
  background: rgba(15, 75, 58, 0.08);
  padding: 6px 8px;
  color: var(--court-dark);
  font-size: 12px;
  font-weight: 780;
}

.app-panel {
  display: none;
}

.app-panel .copy {
  color: rgba(255, 255, 255, 0.68);
}

.score {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
}

.score strong {
  font-size: 38px;
  line-height: 1;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.pill {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink-soft);
  padding: 8px 10px;
  font-size: 13px;
  font-weight: 760;
  text-decoration: none;
  transition: transform 170ms var(--ease), border-color 170ms var(--ease), background 170ms var(--ease);
}

.pill:hover,
.pill[aria-current="page"] {
  transform: translateY(-1px);
  border-color: rgba(184, 90, 53, 0.48);
  background: #ffffff;
}

.section {
  padding: 82px 0;
}

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

.process-section {
  background: rgba(255, 254, 250, 0.42);
}

.section-head {
  max-width: 780px;
  margin-bottom: 34px;
}

.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.card-grid,
.language-grid,
.market-grid,
.trust-row,
.footer-grid,
.feature-grid {
  display: grid;
  gap: 18px;
}

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

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

.feature-grid .card {
  grid-column: span 2;
}

.feature-grid .card:nth-child(1),
.feature-grid .card:nth-child(4) {
  grid-column: span 3;
}

.market-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 24px;
}

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

.card,
.market-card,
.legal-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 254, 250, 0.82);
  padding: 26px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

.card {
  transition: transform 180ms var(--ease), border-color 180ms var(--ease), box-shadow 180ms var(--ease), background 180ms var(--ease);
}

.card:hover {
  transform: translateY(-3px);
  border-color: rgba(15, 75, 58, 0.3);
  background: rgba(255, 254, 250, 0.96);
  box-shadow: var(--shadow-soft);
}

.card strong,
.market-card strong {
  display: block;
  margin-bottom: 9px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.2;
}

.metric {
  display: block;
  margin-bottom: 12px;
  color: var(--court);
  font-size: 42px;
  font-weight: 840;
  line-height: 1;
}

.steps {
  position: relative;
  counter-reset: step;
}

.steps::before {
  content: "";
  position: absolute;
  top: 48px;
  right: 12%;
  left: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(15, 75, 58, 0.34), transparent);
}

.steps .card {
  min-height: 260px;
  overflow: hidden;
}

.steps .card::before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  margin-bottom: 34px;
  color: var(--clay);
  font-size: 48px;
  font-weight: 860;
  line-height: 1;
}

.steps .card::after {
  content: "";
  position: absolute;
  top: 32px;
  right: 26px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(15, 75, 58, 0.22);
  border-radius: 50%;
}

.market-card {
  min-height: 190px;
  color: inherit;
  text-decoration: none;
  transition: transform 180ms var(--ease), border-color 180ms var(--ease), box-shadow 180ms var(--ease), background 180ms var(--ease);
}

.market-card:hover {
  transform: translateY(-3px);
  border-color: rgba(184, 90, 53, 0.45);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.market-card.active {
  border-color: rgba(15, 75, 58, 0.44);
  background: linear-gradient(180deg, rgba(15, 75, 58, 0.08), rgba(255, 254, 250, 0.94));
}

.market-card .tag {
  display: inline-flex;
  margin-top: 14px;
  border-radius: var(--radius-sm);
  background: rgba(36, 91, 128, 0.1);
  color: var(--blue);
  padding: 7px 9px;
  font-size: 12px;
  font-weight: 820;
}

.proof-band,
.final-band {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(184, 90, 53, 0.16), transparent 42%),
    linear-gradient(180deg, #151a16, #0e1411);
  color: #ffffff;
}

.proof-band::before,
.final-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 76px 76px;
  pointer-events: none;
}

.proof-band .wrap,
.final-band .wrap {
  position: relative;
}

.proof-band .eyebrow,
.final-band .eyebrow {
  color: #d8bd67;
}

.proof-band .lead,
.final-band .lead {
  color: rgba(255, 255, 255, 0.76);
}

.proof-band .copy,
.final-band .copy {
  color: rgba(255, 255, 255, 0.7);
}

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

.trust-row > div {
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  padding-top: 18px;
}

.trust-row strong {
  display: block;
  margin-bottom: 7px;
  color: #ffffff;
  font-size: 32px;
  line-height: 1;
}

.faq {
  max-width: 840px;
  margin: 0 auto;
}

.faq h2 {
  margin-bottom: 28px;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 254, 250, 0.9);
  padding: 20px 22px;
  transition: border-color 170ms var(--ease), background 170ms var(--ease), box-shadow 170ms var(--ease);
}

details + details {
  margin-top: 12px;
}

details[open] {
  border-color: rgba(15, 75, 58, 0.32);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 800;
}

summary::marker {
  color: var(--clay);
}

.footer {
  border-top: 1px solid var(--line);
  background: rgba(255, 254, 250, 0.88);
  padding: 44px 0;
}

.footer-grid {
  grid-template-columns: 1.1fr 2fr;
  align-items: start;
}

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

.footer-links div div {
  margin-bottom: 8px;
}

.footer-links strong {
  display: block;
  margin-bottom: 12px;
}

.legal-shell {
  width: min(860px, calc(100% - 44px));
  margin: 0 auto;
  padding: 50px 0 82px;
}

.legal-shell h1 {
  font-size: 54px;
}

.back-link {
  display: inline-flex;
  margin-bottom: 32px;
  color: var(--court);
  text-decoration: none;
  font-weight: 780;
}

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

.legal-card.warning {
  border-left: 5px solid var(--clay);
}

.legal-card.accent {
  border-left: 5px solid var(--court);
}

.legal-content h2,
.legal-content h3 {
  margin-top: 30px;
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.15;
}

.legal-content ul {
  padding-left: 22px;
}

.form-grid {
  display: grid;
  gap: 18px;
}

label {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 780;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--ink);
  padding: 13px 15px;
  font: inherit;
  transition: border-color 160ms var(--ease), box-shadow 160ms var(--ease), background 160ms var(--ease);
}

input:hover,
select:hover,
textarea:hover {
  border-color: rgba(15, 75, 58, 0.34);
}

input:user-invalid,
select:user-invalid,
textarea:user-invalid {
  border-color: rgba(168, 59, 42, 0.74);
  box-shadow: 0 0 0 3px rgba(168, 59, 42, 0.1);
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.status-state {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #ffffff;
  padding: 7px 10px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 760;
}

.status-state::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--court);
}

.status-state.is-empty::before {
  background: var(--gold);
}

.status-state.is-error {
  border-color: rgba(168, 59, 42, 0.36);
  background: rgba(168, 59, 42, 0.07);
}

.status-state.is-error::before {
  background: var(--danger);
}

.status-state.is-loading {
  position: relative;
  overflow: hidden;
  color: transparent;
}

.status-state.is-loading::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
  transform: translateX(-100%);
}

@media (prefers-reduced-motion: no-preference) {
  .racket-shot-primary {
    animation: floatPrimary 6s var(--ease) infinite alternate;
  }

  .racket-shot-secondary {
    animation: floatSecondary 7s var(--ease) infinite alternate;
  }

  .status-state.is-loading::after {
    animation: shimmer 1.4s linear infinite;
  }
}

@keyframes floatPrimary {
  from {
    transform: rotate(5deg) translateY(0);
  }
  to {
    transform: rotate(4deg) translateY(8px);
  }
}

@keyframes floatSecondary {
  from {
    transform: rotate(-7deg) translateY(0);
  }
  to {
    transform: rotate(-6deg) translateY(-7px);
  }
}

@keyframes shimmer {
  to {
    transform: translateX(100%);
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

@media (forced-colors: active) {
  .button,
  .card,
  .market-card,
  .legal-card,
  details,
  input,
  select,
  textarea {
    border: 1px solid CanvasText;
  }
}

@media (max-width: 1040px) {
  h1 {
    font-size: 58px;
  }

  h2 {
    font-size: 44px;
  }

  .split {
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.82fr);
    gap: 34px;
  }

  .preview-layout {
    grid-template-columns: minmax(0, 0.78fr) minmax(380px, 1fr);
    gap: 34px;
  }

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

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

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

  .feature-grid .card,
  .feature-grid .card:nth-child(1),
  .feature-grid .card:nth-child(4) {
    grid-column: auto;
  }
}

@media (max-width: 820px) {
  .wrap {
    width: min(100% - 32px, 1180px);
  }

  .nav-links {
    display: none;
  }

  .split,
  .preview-layout,
  .card-grid,
  .market-grid,
  .trust-row,
  .footer-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 560px;
    padding: 48px 0 42px;
  }

  .split {
    gap: 24px;
  }

  .preview-layout {
    gap: 30px;
  }

  h1 {
    font-size: 46px;
  }

  h2,
  .legal-shell h1 {
    font-size: 36px;
  }

  .lead {
    font-size: 18px;
  }

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

  .app-proof {
    width: 100%;
    margin: 0;
    padding-bottom: 0;
  }

  .product-stage {
    min-height: 360px;
  }

  .decision-panel {
    right: 16px;
    bottom: 16px;
    left: 16px;
    width: auto;
  }

  .racket-shot-primary {
    right: -18px;
    width: 43%;
  }

  .racket-shot-secondary {
    left: -20px;
    width: 40%;
  }

  .racket-shot-tertiary {
    bottom: -142px;
    width: 36%;
  }

  .racket-shot-quaternary {
    display: none;
  }

  .steps::before,
  .steps .card::after {
    display: none;
  }

  .section {
    padding: 62px 0;
  }
}

@media (max-width: 560px) {
  .wrap {
    width: min(100% - 28px, 1180px);
  }

  .nav-inner {
    min-height: 66px;
    gap: 12px;
  }

  .brand {
    max-width: 190px;
    font-size: 17px;
    line-height: 1.1;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .nav .button {
    display: none;
  }

  .hero {
    min-height: 520px;
    padding: 42px 0 36px;
  }

  h1 {
    font-size: 36px;
  }

  h2,
  .legal-shell h1 {
    font-size: 31px;
  }

  h3 {
    font-size: 18px;
  }

  .lead {
    margin-top: 16px;
    font-size: 17px;
  }

  .cta-row {
    margin-top: 20px;
  }

  .hero h1,
  .hero .lead,
  .hero-note,
  .hero .cta-row,
  .app-proof {
    max-width: 362px;
  }

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

  .hero-proofline {
    display: none;
  }

  .product-stage {
    min-height: 224px;
  }

  .court-lines {
    inset: 10px;
  }

  .decision-panel {
    right: 10px;
    bottom: 10px;
    left: 10px;
    gap: 9px;
    padding: 12px;
  }

  .decision-panel .eyebrow,
  .preview-profile,
  .preview-list {
    display: none;
  }

  .preview-top {
    font-size: 12px;
  }

  .preview-scores div {
    padding: 9px;
  }

  .preview-scores strong {
    font-size: 28px;
  }

  .preview-footer span {
    padding: 5px 7px;
  }

  .racket-shot-primary {
    top: -2px;
    right: -12px;
    width: 42%;
  }

  .racket-shot-secondary {
    top: 30px;
    left: -18px;
    width: 39%;
  }

  .racket-shot-tertiary {
    right: 32%;
    bottom: -112px;
    width: 35%;
  }

  .app-proof {
    padding-bottom: 0;
  }

  .section {
    padding: 52px 0;
  }

  .card,
  .market-card,
  .legal-card {
    padding: 21px;
  }

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

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

/* Premium asset integration: subtle no-racket atmosphere behind app proof */
.product-stage {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}

.hero-atmosphere {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.28;
  z-index: 0;
  pointer-events: none;
}

.court-lines,
.racket-gallery,
.decision-panel {
  z-index: 1;
}

.decision-panel {
  z-index: 2;
}
