:root {
  --bg: #050a0e;
  --surface: #0b1219;
  --surface-elevated: #101a24;
  --text: #ffffff;
  --muted: #8e8e93;
  --border: rgba(255, 255, 255, 0.08);
  --primary: #3edc4f;
  --primary-fg: #ffffff;
  --accent-blue: #3eb5ff;
  --accent-blue-stroke: #5ecfff;
  --neon-blue-filter: drop-shadow(0 0 2px rgba(94, 200, 255, 1)) drop-shadow(0 0 8px rgba(62, 181, 255, 0.92)) drop-shadow(0 0 18px rgba(42, 160, 255, 0.55));
  --neon-blue-filter-strong: drop-shadow(0 0 3px rgba(110, 210, 255, 1)) drop-shadow(0 0 12px rgba(62, 181, 255, 0.95)) drop-shadow(0 0 24px rgba(42, 160, 255, 0.65)) drop-shadow(0 0 40px rgba(42, 160, 255, 0.28));
  --neon-green-filter: drop-shadow(0 0 4px rgba(57, 181, 74, 0.95)) drop-shadow(0 0 10px rgba(57, 181, 74, 0.5));
  --fork-arrow-color: #7ed492;
  --step-arrow-color: rgba(255, 255, 255, 0.38);
  --section-bg: #050a0e;
  --radius: 14px;
  --btn-radius: 999px;
  --hero-image-url: url("./assets/hero-bg.jpg");
}

*,
*::before,
*::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Montserrat, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  min-width: 320px;
  overflow-x: hidden;
}
.page { background: var(--bg); }
h1, h2, h3, p { margin: 0; }
h1, h2,
.step-card h3 {
  font-family: Montserrat, system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}
a { color: inherit; }
i[data-lucide] { display: inline-flex; align-items: center; justify-content: center; }
i[data-lucide] > svg { width: 100%; height: 100%; }

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

.steps,
.reviews {
  content-visibility: auto;
  contain-intrinsic-size: 900px;
}

/* ── Hero ── */
.hero {
  background: var(--bg);
  color: #fff;
  display: flex;
  flex-direction: column;
  min-height: 700px;
  padding: 0 0 0 40px;
  position: relative;
  overflow: hidden;
}
.hero-header-bar {
  flex: 0 0 auto;
  position: relative;
  z-index: 3;
  background: var(--bg);
}
.hero-main {
  flex: 1 1 auto;
  position: relative;
  min-height: 560px;
  background: var(--bg);
  overflow: hidden;
}
.hero-main::before {
  content: "";
  position: absolute;
  left: -5%;
  top: 10%;
  width: 55%;
  height: 70%;
  background: radial-gradient(ellipse at center, rgba(59, 158, 255, 0.08) 0%, transparent 68%);
  pointer-events: none;
  z-index: 0;
}
.hero-main::after {
  content: "";
  position: absolute;
  right: 15%;
  bottom: 0;
  width: 45%;
  height: 55%;
  background: radial-gradient(ellipse at center, rgba(57, 181, 74, 0.07) 0%, transparent 68%);
  pointer-events: none;
  z-index: 0;
}
.hero-photo {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(770px, 60vw);
  z-index: 4;
}
.hero-photo::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: min(140px, 22%);
  background: linear-gradient(to right, var(--bg) 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-image: var(--hero-image-url);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right top;
  opacity: 1;
  pointer-events: none;
}
.hero-play-btn {
  position: absolute;
  z-index: 5;
  left: 50%;
  top: 48%;
  right: auto;
  transform: translate(-50%, -50%);
  width: 76px;
  height: 76px;
  border: 0;
  border-radius: 50%;
  padding: 0;
  display: grid;
  place-items: center;
  cursor: pointer;
  color: #fff;
  background: var(--primary);
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.45),
    0 0 24px rgba(62, 220, 79, 0.4);
  transition: filter 0.2s;
  animation: hero-play-pulse 2.4s ease-in-out infinite;
}
@keyframes hero-play-pulse {
  0%, 100% {
    box-shadow:
      0 4px 20px rgba(0, 0, 0, 0.45),
      0 0 20px rgba(62, 220, 79, 0.32);
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    box-shadow:
      0 6px 26px rgba(0, 0, 0, 0.5),
      0 0 38px rgba(62, 220, 79, 0.58);
    transform: translate(-50%, -50%) scale(1.05);
  }
}
.hero-play-btn:hover {
  animation: none;
  filter: brightness(1.08);
  transform: translate(-50%, -50%) scale(1.06);
  box-shadow:
    0 6px 24px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(62, 220, 79, 0.55);
}
.hero-play-btn:active {
  animation: none;
  transform: translate(-50%, -50%) scale(0.98);
}
.hero-play-btn__icon {
  width: 30px;
  height: 30px;
  margin-left: 4px;
}
.hero .container {
  max-width: 1200px;
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}
.hero-main-inner {
  flex: 1;
  min-height: 0;
  position: relative;
  z-index: 3;
}
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
}
.brand i {
  width: 18px;
  height: 18px;
  color: var(--primary);
  filter: var(--neon-green-filter);
}
.nav {
  display: flex;
  align-items: center;
  gap: 36px;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.nav a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.88);
  transition: color 0.2s;
}
.nav a:hover { color: #fff; }
.btn {
  border: 0;
  background: var(--primary);
  color: var(--primary-fg);
  border-radius: var(--btn-radius);
  cursor: pointer;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-weight: 600;
  transition: filter 0.2s, transform 0.15s;
}
.btn:hover { filter: brightness(1.1); }
.btn:active { filter: brightness(0.95); transform: scale(0.98); }
.btn-sm { padding: 10px 22px; font-size: 14px; font-weight: 600; }

.hero-content {
  max-width: 560px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  padding: 48px 0 56px;
}
.kicker {
  color: var(--muted);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.03em;
}
h1 {
  font-size: 46px;
  font-weight: 700;
  line-height: 1.08;
  color: #fff;
}
h1 span { color: var(--primary); }
.checks { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 18px; }
.checks li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.92);
}
.checks i {
  width: 17px;
  height: 17px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  padding: 3px;
  flex-shrink: 0;
  box-shadow:
    0 0 6px rgba(57, 181, 74, 0.85),
    0 0 14px rgba(57, 181, 74, 0.4);
}
.cta-inline {
  margin-top: 2px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 420px;
}
.cta-inline .btn {
  width: 100%;
  padding: 14px 26px;
  font-size: 18px;
  font-weight: 600;
}
.cta-inline p {
  margin-left: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}
.cta-inline p i { width: 12px; height: 12px; }

/* ── Essence ── */
.essence {
  background-color: var(--bg);
  color: var(--text);
  padding: 72px 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
}
.essence::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  height: 90%;
  background: radial-gradient(ellipse at center, rgba(59, 158, 255, 0.07) 0%, transparent 72%);
  pointer-events: none;
}
.essence-grid {
  max-width: 1200px;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(280px, 340px) minmax(160px, 200px);
  gap: 40px 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.essence-copy {
  align-self: center;
}
.essence-copy h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #fff;
}
.text {
  display: flex;
  flex-direction: column;
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
}
.text > p { margin-bottom: 20px; }
.text > p.label { margin: 0 0 16px; color: rgba(255, 255, 255, 0.72); }
.tiles { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 18px; }
.tiles li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 17px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.45;
}
.tiles i {
  width: 17px;
  height: 17px;
  margin-top: 3px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  padding: 3px;
  flex-shrink: 0;
  box-shadow:
    0 0 6px rgba(57, 181, 74, 0.85),
    0 0 14px rgba(57, 181, 74, 0.4);
}

.fork-column {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-self: center;
}
.fork-shell {
  background: rgba(8, 14, 22, 0.85);
  border: 1px solid rgba(59, 158, 255, 0.35);
  border-radius: 16px;
  padding: 24px 20px 20px;
  box-shadow:
    0 0 32px rgba(59, 158, 255, 0.1),
    inset 0 0 24px rgba(59, 158, 255, 0.03);
}
.fork-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 0 0 4px;
}
.fork-bookmakers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 12px;
}
.fork-bm-card {
  min-width: 0;
  background: rgba(16, 26, 36, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 14px 10px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
}
.fork-bm-card small {
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
}
.fork-bm-card b {
  font-family: Montserrat, sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
}
.fork-arrows {
  width: 100%;
  height: 40px;
  margin: 6px 0 0;
  padding: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: visible;
  pointer-events: none;
}
.fork-arrows-svg {
  width: 100%;
  max-width: 280px;
  height: 40px;
  color: var(--fork-arrow-color);
  overflow: visible;
}
.fork-arrows-svg path {
  stroke: currentColor;
}
.fork-arrow-down {
  display: flex;
  justify-content: center;
  margin: 2px 0 0;
  color: var(--fork-arrow-color);
}
.fork-arrow-down svg {
  width: 12px;
  height: 24px;
  display: block;
}
.fork-arrow-down path {
  stroke: currentColor;
}
.found {
  align-self: center;
  margin-top: 6px;
  position: relative;
  background: rgba(57, 181, 74, 0.15);
  color: var(--primary);
  border: 1px solid rgba(57, 181, 74, 0.6);
  border-radius: 999px;
  white-space: nowrap;
  padding: 8px 22px;
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  box-shadow:
    0 0 10px rgba(57, 181, 74, 0.45),
    0 0 22px rgba(57, 181, 74, 0.22),
    inset 0 0 12px rgba(57, 181, 74, 0.08);
}
.fork-substrate {
  margin-top: 14px;
  background: rgba(16, 26, 36, 0.6);
  border: 1px solid rgba(59, 158, 255, 0.3);
  border-radius: 12px;
  text-align: center;
  padding: 16px 14px 18px;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.85);
}
.fork-substrate p { margin: 0; }
.fork-substrate p + p { margin-top: 4px; }
.fork-substrate strong { font-weight: 700; color: #fff; }

.facts {
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-self: center;
  justify-self: end;
}
.facts article {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: start;
  gap: 0 14px;
}
.facts article > i {
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 0;
  color: var(--accent-blue);
  background: transparent;
  margin-top: 2px;
  filter: var(--neon-blue-filter);
}
.facts article > i svg {
  stroke: var(--accent-blue-stroke);
  stroke-width: 1.75;
}
.facts b {
  font-family: Montserrat, sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  color: #fff;
}
.facts small {
  grid-column: 2;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.45;
}

/* ── Steps ── */
.steps {
  background: var(--bg);
  color: var(--text);
  padding: 72px 40px 88px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
}
.steps::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 100%;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(59, 158, 255, 0.06) 0%, transparent 60%);
  pointer-events: none;
}
.steps .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}
.steps h2 {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 48px;
  text-align: center;
  color: #fff;
}
.steps-grid {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 10px;
}
.step-card {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  text-align: left;
  padding: 22px 18px;
  background: rgba(11, 18, 25, 0.9);
  border: 1px solid rgba(59, 158, 255, 0.14);
  border-radius: 14px;
  box-shadow: 0 0 28px rgba(59, 158, 255, 0.08);
}
.step-icon {
  position: relative;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
}
.step-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 158, 255, 0.28) 0%, transparent 72%);
  pointer-events: none;
}
.step-icon i {
  position: relative;
  z-index: 1;
  width: 40px;
  height: 40px;
  color: var(--accent-blue);
  filter: var(--neon-blue-filter-strong);
}
.step-icon i svg {
  stroke: var(--accent-blue-stroke);
  stroke-width: 1.75;
}
.step-icon i svg path,
.step-icon i svg line,
.step-icon i svg circle,
.step-icon i svg polyline,
.step-icon i svg rect {
  stroke: var(--accent-blue-stroke);
  stroke-width: 1.75;
}
.step-body {
  flex: 1;
  min-width: 0;
}
.step-card h3 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 8px;
  color: #fff;
}
.step-card p {
  margin: 0;
  max-width: none;
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.5;
}
.step-connector {
  flex-shrink: 0;
  align-self: center;
  width: 34px;
  height: 10px;
  position: relative;
  display: block;
}
.step-connector::before {
  content: "";
  position: absolute;
  left: 0;
  right: 7px;
  top: 50%;
  height: 1px;
  background: var(--step-arrow-color);
  transform: translateY(-50%);
}
.step-connector::after {
  content: "";
  position: absolute;
  right: 1px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-right: 1px solid var(--step-arrow-color);
  border-top: 1px solid var(--step-arrow-color);
  transform: translateY(-50%) rotate(45deg);
}

/* ── Reviews ── */
.reviews {
  background: var(--bg);
  color: #fff;
  padding: 56px 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
}
.reviews::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 40% at 50% 100%, rgba(57, 181, 74, 0.06) 0%, transparent 60%);
  pointer-events: none;
}
.reviews .container { position: relative; z-index: 1; }
.reviews h2 {
  color: #fff;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 36px;
  text-align: center;
}
.review-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: start;
}
.review-shot {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0) 42%),
    var(--surface);
  box-shadow:
    0 14px 36px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(62, 220, 79, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.review-shot--shift {
  transform: translateY(18px);
}
.review-shot-frame {
  padding: 8px;
}
.review-shot-img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 280px;
  max-height: 420px;
  object-fit: contain;
  object-position: top center;
  border-radius: 10px;
  background: #0e1621;
}

/* ── FAQ ── */
.faq {
  background: var(--bg);
  color: var(--text);
  padding: 44px 40px 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.faq .container {
  width: min(1000px, calc(100% - 3rem));
  display: flex;
  flex-direction: column;
  align-items: stretch;
  margin: 0 auto;
}
.faq h2 {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 28px;
  width: 100%;
  color: #fff;
  text-align: center;
}
.faq-list {
  display: grid;
  gap: 12px;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 0;
  margin: 0;
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  font-size: 19px;
  line-height: 1.45;
  list-style-position: inside;
  padding: 16px 22px;
  color: #fff;
}
.faq-item p {
  margin: 0;
  padding: 0 22px 18px 22px;
  font-size: 18px;
  line-height: 1.6;
  font-weight: 500;
  color: var(--muted);
}
.faq-item:not([open]) p { display: none; }

/* ── Bottom CTA ── */
.bottom {
  background-color: var(--bg);
  color: var(--text);
  padding: 64px 40px 108px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: visible;
}
.bottom-deco {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.bottom-deco-waves {
  left: 0;
  right: 0;
  bottom: 18px;
  height: 72px;
  opacity: 0.88;
}
.bottom-waves-svg {
  display: block;
  width: 100%;
  height: 100%;
}
.bottom-wave-green { opacity: 0.9; }
.bottom-wave-blue { opacity: 0.85; }
.bottom-deco-graph {
  left: 0;
  bottom: 0;
  width: min(420px, 46vw);
  line-height: 0;
  overflow: visible;
  padding: 0 0 4px 4px;
}
.bottom-graph-svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}
.bottom-graph-line {
  stroke: #2e9bff;
}
.bottom-deco-ball {
  right: 24px;
  bottom: 6px;
  width: min(190px, 18vw);
  aspect-ratio: 1;
  display: block;
}
.bottom-ball-glow {
  position: absolute;
  z-index: 0;
  width: 130%;
  height: 130%;
  left: 50%;
  top: 58%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(62, 220, 79, 0.62) 0%,
    rgba(62, 220, 79, 0.34) 32%,
    rgba(62, 220, 79, 0.14) 52%,
    rgba(62, 220, 79, 0.04) 68%,
    transparent 78%
  );
  filter: blur(20px);
}
.bottom-ball-img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.bottom .container,
.bottom-card,
.bottom-layout,
.bottom .left,
.bottom .footer-legal {
  background-color: transparent;
}
.bottom .container {
  max-width: 720px;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.bottom-card,
.bottom-layout {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 28px !important;
  align-items: center !important;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
}
.bottom .left {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}
.bottom h2 {
  font-size: 34px;
  margin: 0;
  font-weight: 700;
  color: #fff;
}
.sub {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
  font-weight: 500;
  margin: 0;
}
.email-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}
.input-wrap {
  display: flex;
  width: 100%;
  align-items: stretch;
  border-radius: var(--btn-radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
}
input {
  flex: 1;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--text);
  padding: 12px 20px;
  min-height: 48px;
  font-family: Montserrat, sans-serif;
  font-size: 17px;
  font-weight: 500;
}
input::placeholder { color: var(--muted); font-weight: 500; font-size: 17px; }
input:focus { outline: none; color: var(--text); }
.input-wrap .btn {
  border-radius: 0 var(--btn-radius) var(--btn-radius) 0;
  min-height: 48px;
  padding: 0 28px;
  font-size: 16px;
  font-weight: 600;
  white-space: nowrap;
}
.agree {
  margin: 8px auto 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.45;
  cursor: pointer;
  text-align: left;
  max-width: 520px;
}
.agree-text {
  display: inline-block;
  max-width: 480px;
}
.agree-checkbox {
  width: 15px;
  height: 15px;
  margin-top: 2px;
  flex: 0 0 auto;
  accent-color: var(--primary);
}
.agree a { color: rgba(255, 255, 255, 0.75); }
.footer-legal {
  grid-column: 1 / -1;
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.4;
}
.footer-legal p { margin: 0; }
.footer-legal a {
  color: var(--muted);
  text-decoration: underline;
}
.sr-only { position: absolute; width: 1px; height: 1px; margin: -1px; clip: rect(0, 0, 0, 0); overflow: hidden; }

/* ── Video modal ── */
.video-modal[hidden] { display: none; }
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 10020;
  display: grid;
  place-items: center;
  padding: 24px;
}
.video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(4px);
}
.video-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  background: #0b1219;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 12px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
}
.video-modal__close {
  position: absolute;
  top: -14px;
  right: -14px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
}
.video-modal__close:hover { background: rgba(255, 255, 255, 0.2); }
.video-modal__player {
  display: block;
  width: 100%;
  max-height: min(70vh, 520px);
  border-radius: 10px;
  background: #000;
}
.video-modal__error {
  margin: 12px 4px 4px;
  padding: 12px 14px;
  border-radius: 10px;
  background: rgba(220, 60, 60, 0.12);
  border: 1px solid rgba(220, 60, 60, 0.35);
  color: #ffb4b4;
  font-size: 14px;
  line-height: 1.45;
  text-align: center;
}

@media (max-width: 1100px) {
  .hero { padding-left: 20px; padding-right: 20px; }
  .essence,
  .steps,
  .reviews,
  .faq,
  .bottom { padding-left: 20px; padding-right: 20px; padding-bottom: 96px; }
  .bottom-deco-waves { height: 56px; bottom: 12px; opacity: 0.75; }
  .bottom-deco-graph { left: 0; bottom: 0; width: min(300px, 78vw); padding: 0 0 2px 2px; }
  .bottom-deco-ball { width: min(150px, 38vw); right: 10px; bottom: 4px; }
  .nav { display: none; }
  .essence-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 480px;
    margin: 0 auto;
  }
  .facts {
    justify-self: start;
    gap: 32px;
  }
  .review-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 980px) {
  .steps-grid {
    flex-direction: column;
    align-items: stretch;
    max-width: 480px;
    gap: 0;
  }
  .step-connector {
    transform: rotate(90deg);
    margin: 8px auto;
  }
}

@media (max-width: 760px) {
  .hero {
    min-height: auto;
    padding-left: 20px;
    padding-right: 20px;
    overflow: visible;
  }
  .hero-main {
    min-height: auto;
    display: flex;
    flex-direction: column;
    overflow: visible;
    padding-bottom: 20px;
  }
  .hero-main-inner {
    order: 1;
    position: relative;
    z-index: 2;
  }
  .hero-content {
    padding: 28px 0 20px;
    max-width: none;
  }
  .hero-photo {
    position: relative;
    order: 2;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    min-height: 340px;
    aspect-ratio: 4 / 3.6;
  }
  .hero-bg {
    background-position: center top;
  }
  .hero-play-btn {
    left: 50%;
    top: 54%;
    right: auto;
    bottom: auto;
    width: 68px;
    height: 68px;
    transform: translate(-50%, -50%);
    animation: hero-play-pulse-mobile 2.4s ease-in-out infinite;
  }
  .hero-play-btn__icon {
    width: 26px;
    height: 26px;
  }
  @keyframes hero-play-pulse-mobile {
    0%, 100% {
      box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.45),
        0 0 20px rgba(62, 220, 79, 0.32);
      transform: translate(-50%, -50%) scale(1);
    }
    50% {
      box-shadow:
        0 6px 26px rgba(0, 0, 0, 0.5),
        0 0 38px rgba(62, 220, 79, 0.58);
      transform: translate(-50%, -50%) scale(1.05);
    }
  }
  .hero-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.06);
  }
  .hero-play-btn:active {
    transform: translate(-50%, -50%) scale(0.98);
  }
  .header { padding: 16px 0; }
  .btn-sm { display: none; }
  h1 { font-size: 36px; }
  body { font-size: 17px; }
  .essence-copy h2 { font-size: 34px; }
  .steps h2 { font-size: 38px; }
  .reviews h2 { font-size: 38px; }
  .bottom h2 { font-size: 30px; }
  .kicker { font-size: 15px; }
  .nav a, .btn, input { font-size: 17px; }
  .text,
  .tiles li { font-size: 17px; }
  .step-card h3 { font-size: 17px; }
  .step-card p { font-size: 16px; max-width: 100%; }
  .checks li { font-size: 17px; }
  .sub { font-size: 16px; }
  .agree { font-size: 14px; }
  .footer-legal { font-size: 14px; }
  .cta-inline .btn { font-size: 17px; }
  .steps-grid { max-width: 100%; }
  .review-grid { grid-template-columns: 1fr; }
  .review-shot--shift { transform: translateY(0); }
  .review-shot-img { min-height: 240px; max-height: none; }
  .fork-column { width: 100%; max-width: 380px; margin: 0 auto; }
  .facts {
    flex-direction: row;
    align-items: flex-start;
    gap: 24px;
    justify-self: stretch;
    max-width: 380px;
    margin: 0 auto;
  }
  .facts article {
    flex: 1 1 0;
    min-width: 0;
    grid-template-columns: 32px 1fr;
    gap: 0.35rem 0.55rem;
  }
  .facts article > i {
    width: 32px;
    height: 32px;
    border-radius: 10px;
  }
  .facts b,
  .facts small {
    font-size: 14px;
    line-height: 1.35;
  }
  .bottom-card,
  .bottom .container,
  .bottom-layout { grid-template-columns: 1fr !important; max-width: 800px; margin: 0 auto; }
  .footer-legal {
    flex-direction: column;
    gap: 6px;
    margin-top: 4px;
  }
  .input-wrap { flex-direction: column; gap: 0; border-radius: var(--radius); overflow: visible; border: 0; background: transparent; }
  input { border: 1px solid var(--border); border-radius: var(--radius); width: 100%; background: var(--surface); }
  .input-wrap .btn { width: 100%; padding: 12px 16px; border-radius: var(--btn-radius); }
  .faq {
    padding: 34px 20px 24px;
  }
  .faq .container,
  .faq-list {
    width: 100%;
    max-width: 100%;
  }
  .faq h2 { font-size: 36px; margin-bottom: 20px; }
  .faq-item summary { font-size: 17px; padding: 14px 16px; }
  .faq-item p { font-size: 16px; padding: 0 16px 14px 16px; margin-left: 0; }
}
