@import url("basketouch-tokens.css");

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  background: radial-gradient(1200px 600px at 50% -10%, rgba(184, 30, 36, 0.18), transparent 60%), var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

a:hover {
  color: #fff;
}

.container {
  width: min(960px, calc(100% - 2rem));
  margin: 0 auto;
}

.container-wide {
  width: min(var(--container-wide), calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}

.site-header .container,
.site-header .container-wide {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav {
  display: flex;
  gap: 1.25rem;
  margin-left: auto;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-left: auto;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg-card);
  color: var(--text);
  cursor: pointer;
  flex-shrink: 0;
}

.nav-toggle:hover {
  background: var(--bg-elevated);
}

.nav-toggle-icon {
  width: 1.25rem;
  height: 1.25rem;
}

body.nav-menu-open {
  overflow: hidden;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-logo {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: contain;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.brand span {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero {
  padding: 3rem 0 2rem;
}

.hero-split {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 2.5rem;
  align-items: center;
  padding: 2rem 0 1rem;
}

.hero-copy {
  text-align: left;
}

.hero-copy h1 {
  font-family: var(--font-rounded);
}

.hero-visual {
  margin: 0;
}

.hero-visual img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid var(--border);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(184, 30, 36, 0.12);
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin: 1.5rem 0 1.75rem;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
}

.feature-list .feature-icon {
  color: var(--accent);
  font-size: 1.1rem;
  line-height: 1.4;
  font-weight: 700;
}

.feature-list strong {
  display: block;
  margin-bottom: 0.15rem;
}

.feature-list span {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.hero-centered {
  padding: 4rem 0 2.5rem;
  text-align: center;
}

.hero-centered h1 {
  font-family: var(--font-rounded);
}

.eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.35rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.hero p {
  margin: 0 auto;
  max-width: 42rem;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  padding: 1rem 0 2.5rem;
}

.feature {
  padding: 1.1rem 1.2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.feature strong {
  display: block;
  margin-bottom: 0.35rem;
}

.feature span {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.pricing-card {
  margin: 0 auto 3rem;
  max-width: 420px;
  padding: 1.75rem;
  background: var(--bg-elevated);
  border: 1px solid rgba(184, 30, 36, 0.35);
  border-radius: calc(var(--radius) + 4px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.pricing-card h2 {
  margin: 0 0 0.35rem;
  font-size: 1.35rem;
}

.pricing-card .price {
  margin: 0.75rem 0 0.25rem;
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.pricing-card .price small {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
}

.trial-note {
  margin: 0 0 1.25rem;
  color: #86efac;
  font-size: 0.92rem;
}

.pricing-list {
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.pricing-list li {
  padding: 0.35rem 0;
  padding-left: 1.2rem;
  position: relative;
}

.pricing-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.9rem 1.2rem;
  border: none;
  border-radius: 10px;
  background: var(--accent);
  color: #fff;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
}

.btn:hover {
  background: var(--accent-hover);
}

.btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.btn-secondary {
  margin-top: 0.75rem;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.04);
}

.note {
  margin-top: 1rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: center;
}

.suite-link {
  margin: 2rem 0 3rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.suite-link a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.product-line {
  padding: 0.5rem 0 2.5rem;
}

.product-line-compact {
  padding-top: 0;
  margin-top: -0.5rem;
}

.product-line-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.product-line-header h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.35rem, 3vw, 1.65rem);
  letter-spacing: -0.02em;
}

.product-line-header p {
  margin: 0 auto;
  max-width: 34rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.product-line-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.85rem;
}

.product-line-grid-3 {
  max-width: 820px;
  margin: 0 auto;
}

.product-line-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.15rem 1.1rem 1.2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: left;
}

.product-line-card.is-available {
  border-color: rgba(184, 30, 36, 0.45);
  background: var(--bg-elevated);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
}

.product-line-card.is-soon {
  position: relative;
  overflow: hidden;
  pointer-events: none;
  user-select: none;
}

.product-line-card.is-soon::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  background: rgba(12, 13, 16, 0.3);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  pointer-events: none;
}

.product-line-card.is-soon .product-line-badge {
  position: relative;
  z-index: 2;
}

.product-line-badge {
  align-self: flex-start;
  margin-bottom: 0.25rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
}

.product-line-badge.is-live {
  color: #bbf7d0;
  background: rgba(34, 197, 94, 0.12);
  border-color: rgba(34, 197, 94, 0.25);
}

.product-line-card h3 {
  margin: 0;
  font-size: 1.05rem;
}

.product-line-price {
  margin: 0;
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.product-line-price small {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
}

.product-line-desc {
  margin: 0;
  flex: 1;
  color: var(--text-muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.product-line-cta {
  margin-top: 0.65rem;
  width: 100%;
  padding: 0.7rem 1rem;
  font-size: 0.92rem;
}

.product-line-cta-all {
  margin: 1.25rem 0 0;
  text-align: center;
  font-size: 0.95rem;
}

.product-line-cta-all a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.pricing-compare {
  padding: 0 0 2rem;
}

.pricing-compare-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
  align-items: stretch;
}

.pricing-compare-card {
  display: flex;
  flex-direction: column;
  padding: 1.25rem 1.15rem 1.2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 2px);
  text-align: left;
}

.pricing-compare-card.is-featured {
  border-color: rgba(184, 30, 36, 0.45);
  background: var(--bg-elevated);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

.pricing-compare-card.is-soon {
  position: relative;
  overflow: hidden;
  pointer-events: none;
  user-select: none;
}

.pricing-compare-card.is-soon::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  background: rgba(12, 13, 16, 0.3);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  pointer-events: none;
}

.pricing-compare-card.is-soon .pricing-compare-badge {
  position: relative;
  z-index: 2;
}

.pricing-compare-badge {
  align-self: flex-start;
  margin-bottom: 0.5rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
}

.pricing-compare-badge.is-live {
  color: #bbf7d0;
  background: rgba(34, 197, 94, 0.12);
  border-color: rgba(34, 197, 94, 0.25);
}

.pricing-compare-card h3 {
  margin: 0 0 0.2rem;
  font-size: 1.15rem;
}

.pricing-compare-tagline {
  margin: 0 0 0.65rem;
  color: var(--text-muted);
  font-size: 0.86rem;
}

.pricing-compare-price {
  margin: 0 0 0.35rem;
  font-size: 1.85rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.pricing-compare-price small {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
}

.pricing-compare-card .trial-note {
  margin: 0 0 0.75rem;
}

.pricing-compare-card .pricing-list {
  flex: 1;
  margin-bottom: 1rem;
  font-size: 0.88rem;
}

.pricing-compare-card .btn {
  margin-top: auto;
}

.pricing-compare-card .note {
  margin-top: 0.75rem;
  margin-bottom: 0;
}

.pricing-compare-soon-label {
  margin-top: auto;
  padding: 0.65rem 0.75rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px dashed var(--border);
  color: var(--text-muted);
  font-size: 0.82rem;
  text-align: center;
}

.pricing-drawsports {
  padding-bottom: 3rem;
}

.pricing-drawsports-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.pricing-drawsports-card strong {
  display: block;
  margin-bottom: 0.25rem;
}

.pricing-drawsports-card span {
  color: var(--text-muted);
  font-size: 0.88rem;
}

.pricing-drawsports-cta {
  width: auto;
  margin-top: 0;
  padding: 0.65rem 1.1rem;
  font-size: 0.9rem;
  white-space: nowrap;
}

.nav a[data-portal] {
  cursor: pointer;
}

body.portal-modal-open {
  overflow: hidden;
}

.portal-modal[hidden] {
  display: none !important;
}

.portal-modal {
  position: fixed;
  inset: 0;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.portal-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(4px);
}

.portal-modal-card {
  position: relative;
  width: min(420px, 100%);
  padding: 1.5rem 1.35rem 1.35rem;
  background: var(--bg-elevated);
  border: 1px solid rgba(184, 30, 36, 0.28);
  border-radius: calc(var(--radius) + 2px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  text-align: left;
}

.portal-modal-card .eyebrow {
  margin-bottom: 0.65rem;
}

.portal-modal-card h2 {
  margin: 0 0 0.5rem;
  font-family: var(--font-rounded);
  font-size: 1.45rem;
  letter-spacing: -0.02em;
}

.portal-modal-lead {
  margin: 0 0 1.15rem;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.portal-modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 2rem;
  height: 2rem;
  padding: 0;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: var(--text-muted);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.portal-modal-close:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.portal-modal-field span {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
}

.portal-modal-field input {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg-card);
  color: var(--text);
  font: inherit;
  font-size: 0.95rem;
}

.portal-modal-field input:focus {
  outline: none;
  border-color: rgba(184, 30, 36, 0.55);
  box-shadow: 0 0 0 3px rgba(184, 30, 36, 0.15);
}

.portal-modal-field input:disabled {
  opacity: 0.65;
}

.portal-modal-error {
  margin: 0.75rem 0 0;
  padding: 0.6rem 0.75rem;
  border-radius: 8px;
  font-size: 0.86rem;
  color: #fecaca;
  background: rgba(239, 68, 68, 0.1);
}

.portal-modal-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  margin-top: 1.15rem;
}

.portal-modal-actions .btn {
  width: 100%;
  margin-top: 0;
}

.portal-modal-actions .btn-secondary {
  margin-top: 0;
}

@media (max-width: 1024px) {
  .pricing-compare-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-compare-card.is-featured {
    order: -1;
  }
}

@media (max-width: 560px) {
  .pricing-compare-grid {
    grid-template-columns: 1fr;
  }

  .pricing-drawsports-card {
    flex-direction: column;
    align-items: stretch;
  }

  .pricing-drawsports-cta {
    width: 100%;
  }
}

.site-footer {
  padding: 2rem 0 2.5rem;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.85rem;
}

.site-footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  align-items: center;
  justify-content: space-between;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.legal-page {
  padding: 3rem 0 4rem;
}

.legal-page h1 {
  margin-top: 0;
}

.legal-page h2 {
  margin-top: 2rem;
  font-size: 1.1rem;
}

.legal-page p,
.legal-page li {
  color: var(--text-muted);
}

.legal-page strong {
  color: var(--text);
}

.legal-subtitle {
  margin: -0.5rem 0 2rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.legal-page section {
  margin-bottom: 1.75rem;
}

.legal-table-wrap {
  overflow-x: auto;
  margin: 1rem 0;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.legal-table th,
.legal-table td {
  padding: 0.75rem;
  border: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}

.legal-table th {
  background: var(--bg-card);
  color: var(--text);
}

.legal-updated {
  margin-top: 2.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.checkout-success {
  margin-bottom: 1.25rem;
  padding: 1rem 1.15rem;
  border-radius: var(--radius);
  border: 1px solid rgba(52, 199, 89, 0.35);
  background: rgba(52, 199, 89, 0.12);
  color: var(--text);
  line-height: 1.55;
}

.checkout-success strong {
  display: block;
  margin-bottom: 0.35rem;
}

html.pricing-registered [data-pricing-flow] {
  display: none;
}

html.pricing-registered [data-pricing-thanks] {
  display: block !important;
}

.registration-thanks {
  padding: 3rem 0 4rem;
}

.registration-thanks-card {
  margin: 0 auto;
  max-width: 520px;
  padding: 2.5rem 2rem 2rem;
  text-align: center;
  background: radial-gradient(
      900px 420px at 50% -20%,
      rgba(184, 30, 36, 0.14),
      transparent 55%
    ),
    var(--bg-elevated);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: calc(var(--radius) + 6px);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}

.registration-thanks-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.25rem;
  border-radius: 999px;
  background: rgba(52, 199, 89, 0.14);
  border: 1px solid rgba(52, 199, 89, 0.35);
  color: #86efac;
}

.registration-thanks-icon svg {
  width: 1.75rem;
  height: 1.75rem;
}

.registration-thanks-card h1 {
  margin: 0.75rem 0 1rem;
  font-size: clamp(1.75rem, 4vw, 2.15rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.registration-thanks-lead {
  margin: 0 auto 2rem;
  max-width: 26rem;
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.6;
}

.registration-thanks-lead strong {
  color: #86efac;
  font-weight: 600;
}

.registration-steps {
  margin: 0 0 2rem;
  padding: 0;
  list-style: none;
  text-align: left;
}

.registration-steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem 1rem;
  align-items: start;
  padding: 0.85rem 0;
  border-top: 1px solid var(--border);
}

.registration-steps li:first-child {
  border-top: none;
  padding-top: 0;
}

.registration-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 999px;
  background: rgba(184, 30, 36, 0.18);
  border: 1px solid rgba(184, 30, 36, 0.35);
  color: #fca5a5;
  font-size: 0.82rem;
  font-weight: 700;
}

.registration-steps strong {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.98rem;
}

.registration-steps span {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.registration-thanks-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.btn-ghost:hover {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
}

.registration-thanks-footnote {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.82rem;
  line-height: 1.55;
}

.download-page {
  padding: 3rem 0 4rem;
}

.download-card {
  max-width: 560px;
}

.download-version {
  margin: 0 0 1.25rem;
}

.download-version-badge {
  display: inline-block;
  margin: 0;
  padding: 0.45rem 0.85rem;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
  background: rgba(184, 30, 36, 0.12);
  border: 1px solid rgba(184, 30, 36, 0.35);
  border-radius: 999px;
}

.download-release-notes {
  margin: 0.65rem 0 0;
  max-width: 36rem;
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.download-primary {
  display: inline-flex;
  width: 100%;
  max-width: 20rem;
  margin: 0 auto 0.5rem;
  justify-content: center;
}

.download-meta {
  margin: 0 0 1.75rem;
  color: var(--text-muted);
  font-size: 0.82rem;
}

.download-steps {
  margin-top: 0.5rem;
}

.download-steps a {
  color: #fca5a5;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.download-requirements {
  margin: 0 0 1.5rem;
  padding: 1rem 1.1rem;
  text-align: left;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 10px;
}

.download-requirements h2 {
  margin: 0 0 0.55rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.download-requirements ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.download-requirements li + li {
  margin-top: 0.25rem;
}

.faq-page {
  padding: 2.5rem 0 4rem;
  max-width: 640px;
}

.faq-page h1 {
  margin: 0.35rem 0 0.75rem;
  font-family: var(--font-rounded);
  font-size: clamp(1.85rem, 5vw, 2.35rem);
  letter-spacing: -0.03em;
}

.faq-intro {
  margin: 0 0 2rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.faq-intro a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.faq-requirements {
  margin-bottom: 2rem;
  padding: 1.15rem 1.2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.faq-requirements h2 {
  margin: 0 0 0.75rem;
  font-size: 1rem;
}

.faq-req-list {
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.faq-req-list li + li {
  margin-top: 0.45rem;
}

.faq-req-list strong {
  color: var(--text);
}

.faq-list {
  display: grid;
  gap: 0.55rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg-card);
  overflow: hidden;
}

.faq-item summary {
  padding: 0.95rem 1.05rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

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

.faq-item summary:hover {
  background: rgba(255, 255, 255, 0.03);
}

.faq-item[open] summary {
  border-bottom: 1px solid var(--border);
}

.faq-item p {
  margin: 0;
  padding: 0.95rem 1.05rem 1.05rem;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.faq-item a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.faq-back {
  margin-top: 2rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.faq-back a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.registration-steps a:hover {
  color: #fff;
}

body.has-cookie-banner {
  padding-bottom: 5.5rem;
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  padding: 1rem 0;
  background: rgba(20, 22, 28, 0.96);
  border-top: 1px solid var(--border);
  backdrop-filter: blur(10px);
}

.cookie-banner-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-banner p {
  margin: 0;
  max-width: 42rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.cookie-banner a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-banner-actions {
  display: flex;
  gap: 0.65rem;
  flex-shrink: 0;
}

.btn-cookie {
  padding: 0.55rem 1rem;
  border: none;
  border-radius: 8px;
  background: var(--accent);
  color: #fff;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
}

.btn-cookie:hover {
  background: var(--accent-hover);
}

.btn-cookie-secondary {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
}

.btn-cookie-secondary:hover {
  background: rgba(255, 255, 255, 0.04);
}

@media (max-width: 900px) {
  .hero-split {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy .btn {
    margin: 0 auto;
  }
}

/* Coming soon gate */
html.coming-soon-active body > :not(.coming-soon-gate):not(script) {
  visibility: hidden;
  pointer-events: none;
}

.coming-soon-gate {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.25rem;
  overflow-y: auto;
  background: radial-gradient(1000px 520px at 50% -8%, rgba(184, 30, 36, 0.2), transparent 58%),
    var(--bg);
}

.coming-soon-shell {
  width: min(480px, 100%);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  text-align: center;
}

.coming-soon-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.75rem;
}

.coming-soon-header .eyebrow {
  margin-bottom: 0;
}

.coming-soon-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.coming-soon-brand img {
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}

.coming-soon-hero {
  margin-bottom: 1.5rem;
}

.coming-soon-hero h1 {
  margin: 0 0 0.65rem;
  font-family: var(--font-rounded);
  font-size: clamp(2rem, 6vw, 2.65rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.coming-soon-lead {
  margin: 0 auto;
  max-width: 26rem;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.coming-soon-card {
  text-align: left;
  padding: 1.5rem 1.35rem 1.25rem;
  background: var(--bg-elevated);
  border: 1px solid rgba(184, 30, 36, 0.28);
  border-radius: calc(var(--radius) + 2px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.32);
}

.coming-soon-card-title {
  margin: 0 0 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-muted);
  text-align: center;
}

.coming-soon-form {
  display: grid;
  gap: 1rem;
}

.coming-soon-fields {
  display: grid;
  gap: 0.75rem;
}

.coming-soon-field span {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
}

.coming-soon-field input {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg-card);
  color: var(--text);
  font: inherit;
  font-size: 0.95rem;
  transition: border-color 0.15s ease;
}

.coming-soon-field input:focus {
  outline: none;
  border-color: rgba(184, 30, 36, 0.55);
  box-shadow: 0 0 0 3px rgba(184, 30, 36, 0.15);
}

.coming-soon-submit {
  margin-top: 0.15rem;
}

.coming-soon-form-status {
  margin: 0;
  padding: 0.65rem 0.75rem;
  border-radius: 8px;
  font-size: 0.88rem;
  text-align: center;
}

.coming-soon-form-status.is-success {
  color: #bbf7d0;
  background: rgba(34, 197, 94, 0.12);
}

.coming-soon-form-status.is-error {
  color: #fecaca;
  background: rgba(239, 68, 68, 0.1);
}

.coming-soon-privacy {
  margin: 1rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.76rem;
  line-height: 1.45;
  color: var(--text-muted);
  text-align: center;
}

.coming-soon-privacy a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.coming-soon-beta {
  margin: 1.25rem auto 0;
  width: 100%;
  max-width: 360px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.coming-soon-beta summary {
  cursor: pointer;
  list-style: none;
  text-align: center;
  user-select: none;
  padding: 0.35rem 0;
  opacity: 0.75;
  transition: opacity 0.15s ease;
}

.coming-soon-beta summary:hover {
  opacity: 1;
}

.coming-soon-beta[open] summary {
  margin-bottom: 0.65rem;
  opacity: 1;
}

.coming-soon-beta summary::-webkit-details-marker {
  display: none;
}

.coming-soon-beta-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem;
  align-items: center;
}

.coming-soon-beta-form input {
  min-width: 0;
  padding: 0.6rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg-card);
  color: var(--text);
  font: inherit;
  font-size: 0.88rem;
}

.coming-soon-beta-btn {
  width: auto;
  margin-top: 0;
  padding: 0.6rem 1rem;
  font-size: 0.88rem;
}

.coming-soon-beta-error {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 0.78rem;
  color: #fca5a5;
  text-align: center;
}

.coming-soon-footer {
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.coming-soon-footer a:hover {
  color: #fff;
}

@media (min-width: 520px) {
  .coming-soon-fields {
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
  }
}

@media (max-width: 640px) {
  .site-header {
    position: relative;
    z-index: 900;
  }

  .site-header .container,
  .site-header .container-wide {
    position: relative;
    flex-wrap: wrap;
    align-items: center;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    display: none;
    position: absolute;
    top: calc(100% + 0.65rem);
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    margin-left: 0;
    padding: 0.35rem;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  }

  .site-header.is-nav-open .nav {
    display: flex;
  }

  .nav a {
    display: block;
    padding: 0.75rem 0.85rem;
    border-radius: 8px;
    color: var(--text);
  }

  .nav a:hover {
    background: rgba(255, 255, 255, 0.05);
  }

  .hero-centered {
    padding-top: 2.5rem;
  }

  .cookie-banner-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-banner-actions {
    width: 100%;
  }

  .btn-cookie {
    flex: 1;
  }
}
