:root {
  --bg: #0c0f13;
  --bg-soft: #11151b;
  --panel: #171c23;
  --panel-deep: #12161c;
  --line: #2b323d;
  --line-soft: #252c36;
  --text: #eef1f4;
  --muted: #9aa3ad;
  --gold: #d9a844;
  --gold-deep: #a97b24;
  --cyan: #3fd4e2;
  --teal: #3fb49b;
  --red: #ff6b5e;
  --amber: #f0a648;
  --white: #ffffff;
  --shadow: 0 14px 34px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Avenir Next", Avenir, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  font: inherit;
}

svg {
  display: block;
}

.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding-left: 18px;
  padding-right: 18px;
}

.trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  min-height: 34px;
  padding: 6px 14px;
  background: var(--gold-deep);
  color: #171204;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.trust-bar i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(23, 18, 4, 0.55);
  flex: 0 0 auto;
}

.trust-bar span {
  white-space: nowrap;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 58px;
  padding: 10px 18px;
  background: rgba(12, 15, 19, 0.94);
  border-bottom: 1px solid var(--line-soft);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  color: #171204;
  background: linear-gradient(135deg, var(--gold), #f0cf7d);
  border-radius: 8px;
}

.brand-mark svg {
  width: 19px;
  height: 19px;
}

.brand-text {
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
}

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

.official-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 12px;
  color: var(--cyan);
  border: 1px solid rgba(63, 212, 226, 0.35);
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 800;
  white-space: nowrap;
}

.official-link svg {
  width: 15px;
  height: 15px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
}

.btn-primary {
  color: #171204;
  background: linear-gradient(135deg, var(--gold), #f0cf7d);
  box-shadow: 0 8px 22px rgba(217, 168, 68, 0.24);
}

.btn-primary:hover {
  box-shadow: 0 8px 26px rgba(217, 168, 68, 0.36);
}

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

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 34px 0 36px;
  background:
    radial-gradient(circle at 12% 18%, rgba(217, 168, 68, 0.09), transparent 34%),
    radial-gradient(circle at 90% 8%, rgba(63, 212, 226, 0.08), transparent 30%),
    linear-gradient(180deg, #0d1116 0%, var(--bg) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 30px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  padding: 7px 11px;
  color: var(--cyan);
  background: rgba(63, 212, 226, 0.08);
  border: 1px solid rgba(63, 212, 226, 0.22);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.live-dot {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(63, 212, 226, 0.5);
  animation: pulse-dot 1.8s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(63, 212, 226, 0.45);
  }
  50% {
    box-shadow: 0 0 0 7px rgba(63, 212, 226, 0);
  }
}

.hero h1 {
  margin: 0;
  font-size: 2.4rem;
  line-height: 1.06;
  letter-spacing: 0;
}

.hero-sub {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 22px;
}

.hero-specs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
}

.hero-spec {
  min-width: 0;
}

.hero-spec strong {
  display: block;
  color: var(--gold);
  font-size: 1.06rem;
  line-height: 1.15;
}

.hero-spec:nth-child(2) strong {
  color: var(--cyan);
}

.hero-spec span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
}

.hero-visual {
  min-width: 0;
}

.product-stage {
  position: relative;
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
  overflow: hidden;
  background: linear-gradient(145deg, #1a2028, #10141a);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.product-slides {
  position: relative;
  aspect-ratio: 1 / 1;
}

.product-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 260ms ease, transform 260ms ease;
}

.product-slide.active {
  opacity: 1;
  transform: scale(1);
}

.stage-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  color: var(--text);
  background: rgba(12, 15, 19, 0.78);
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  transform: translateY(-50%);
}

.stage-arrow svg {
  width: 18px;
  height: 18px;
}

.stage-prev {
  left: 10px;
}

.stage-next {
  right: 10px;
}

.stage-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 12px;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.stage-dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  background: rgba(238, 241, 244, 0.45);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.stage-dots button.active {
  width: 20px;
  background: var(--gold);
  border-radius: 999px;
}

.stage-chip {
  position: absolute;
  z-index: 4;
  padding: 7px 10px;
  border-radius: 6px;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.stage-chip-gold {
  top: 12px;
  left: 12px;
  color: #171204;
  background: var(--gold);
}

.stage-chip-cyan {
  top: 12px;
  right: 12px;
  color: var(--bg);
  background: var(--cyan);
}

.hero-caption {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  text-align: center;
}

.stats {
  padding: 24px 0;
  background: linear-gradient(90deg, #12161c, #0e1115);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 14px;
}

.stat strong {
  display: block;
  color: var(--gold);
  font-size: 1.45rem;
  line-height: 1.1;
}

.stat:nth-child(2) strong,
.stat:nth-child(4) strong {
  color: var(--cyan);
}

.stat span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
}

.section {
  padding: 46px 0;
}

.section-head {
  max-width: 680px;
  margin-bottom: 24px;
}

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

.section-label {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.section-head h2 {
  margin: 0;
  font-size: 1.72rem;
  line-height: 1.12;
  letter-spacing: 0;
}

.section-desc {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.unlock-section {
  background:
    radial-gradient(circle at 50% 0%, rgba(217, 168, 68, 0.08), transparent 42%),
    var(--bg);
}

.unlock-panel {
  position: relative;
  overflow: hidden;
  padding: 20px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.unlock-panel::before {
  content: "";
  display: block;
  height: 5px;
  margin: -20px -20px 18px;
  background: linear-gradient(90deg, var(--gold), var(--cyan), var(--gold));
}

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

.shield {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  min-height: 92px;
  padding: 10px 6px;
  color: var(--muted);
  background: var(--panel-deep);
  border: 1px solid var(--line);
  border-radius: 8px;
  text-align: center;
  transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.shield-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin-bottom: 2px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}

.shield-icon svg {
  width: 19px;
  height: 19px;
}

.shield b {
  font-size: 0.82rem;
  line-height: 1.1;
}

.shield small {
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
}

.shield.active {
  color: var(--cyan);
  background: rgba(63, 212, 226, 0.08);
  border-color: rgba(63, 212, 226, 0.5);
}

.shield.active .shield-icon {
  color: var(--bg);
  background: var(--cyan);
}

.shield.unlocked {
  color: #171204;
  background: var(--gold);
  border-color: var(--gold);
}

.shield.unlocked .shield-icon {
  color: var(--gold);
  background: #171204;
}

.unlock-panel.unlock-animate .shield.active {
  animation: shield-pop 480ms ease;
}

@keyframes shield-pop {
  0% {
    transform: scale(1);
  }
  45% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.unlock-stage {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin: 20px 0 12px;
}

.timer-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  color: #171204;
  background: var(--gold);
  border-radius: 8px;
}

.timer-icon svg {
  width: 19px;
  height: 19px;
}

.timer-number {
  min-width: 2ch;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  color: var(--text);
  font-variant-numeric: tabular-nums;
  text-align: center;
}

.timer-unit {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.timer-track {
  height: 8px;
  overflow: hidden;
  background: var(--line);
  border-radius: 999px;
}

.timer-track span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--cyan));
  border-radius: inherit;
  transition: width 1s linear;
}

.timer-status {
  min-height: 42px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}

.unlock-actions {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 10px;
  margin-top: 14px;
}

.unlock-actions .btn {
  width: 100%;
}

.claim-cta.is-locked {
  opacity: 0.55;
}

.claim-cta.is-ready {
  background: linear-gradient(135deg, var(--gold), #f7d98e);
  animation: cta-glow 1.8s ease-in-out infinite;
}

@keyframes cta-glow {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(217, 168, 68, 0.45);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(217, 168, 68, 0);
  }
}

.unlock-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.72rem;
  text-align: center;
}

.risk-section {
  background: var(--bg-soft);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.risk-panel {
  padding: 18px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.risk-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.step-label {
  color: var(--cyan);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.back-btn {
  padding: 7px 12px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 800;
  cursor: pointer;
}

.progress-track {
  height: 6px;
  overflow: hidden;
  margin: 14px 0 18px;
  background: var(--line);
  border-radius: 999px;
}

.progress-track span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--cyan), var(--teal));
  border-radius: inherit;
  transition: width 260ms ease;
}

.risk-question {
  margin: 0 0 14px;
  font-size: 1.1rem;
  line-height: 1.25;
}

.risk-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.risk-option {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  min-height: 62px;
  padding: 10px;
  color: var(--text);
  background: var(--panel-deep);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: left;
  cursor: pointer;
  transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

.risk-option:active {
  transform: translateY(1px);
}

.risk-option:hover {
  border-color: var(--cyan);
}

.risk-option.selected {
  color: var(--bg);
  background: var(--cyan);
  border-color: var(--cyan);
}

.risk-option .risk-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  color: var(--cyan);
  background: rgba(63, 212, 226, 0.1);
  border-radius: 6px;
  font-size: 0.74rem;
  font-weight: 800;
}

.risk-option.selected .risk-tag {
  color: var(--bg);
  background: rgba(12, 15, 19, 0.16);
}

.result-card {
  padding: 18px;
  background: var(--panel-deep);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.result-card.is-critical {
  border-color: rgba(255, 107, 94, 0.55);
}

.result-card.is-high {
  border-color: rgba(240, 166, 72, 0.5);
}

.result-card.is-protected {
  border-color: rgba(63, 180, 155, 0.55);
}

.result-kicker {
  margin: 0 0 6px;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.result-card h3 {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.15;
}

.result-text {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.result-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.result-meta span {
  padding: 6px 9px;
  color: var(--cyan);
  background: rgba(63, 212, 226, 0.08);
  border: 1px solid rgba(63, 212, 226, 0.22);
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 800;
}

.result-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.4;
}

.result-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

.result-actions .btn {
  width: 100%;
}

.redo-btn {
  padding: 10px 12px;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
}

.specs-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
}

.spec-card {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 12px;
  padding: 16px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.spec-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  grid-row: 1 / 3;
  width: 44px;
  height: 44px;
  color: var(--gold);
  background: rgba(217, 168, 68, 0.09);
  border: 1px solid rgba(217, 168, 68, 0.25);
  border-radius: 8px;
}

.spec-icon svg {
  width: 22px;
  height: 22px;
}

.spec-card:nth-child(even) .spec-icon {
  color: var(--cyan);
  background: rgba(63, 212, 226, 0.08);
  border-color: rgba(63, 212, 226, 0.25);
}

.spec-card h3 {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.2;
}

.spec-card p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.matrix-section {
  background: var(--bg-soft);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.compare-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
}

.compare-card {
  padding: 16px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.compare-bad {
  border-color: rgba(255, 107, 94, 0.28);
}

.compare-warn {
  border-color: rgba(240, 166, 72, 0.3);
}

.compare-good {
  border-color: rgba(217, 168, 68, 0.55);
  background: linear-gradient(145deg, rgba(217, 168, 68, 0.09), var(--panel) 55%);
}

.compare-tag {
  display: inline-block;
  margin: 0 0 8px;
  padding: 4px 8px;
  color: var(--red);
  background: rgba(255, 107, 94, 0.1);
  border-radius: 6px;
  font-size: 0.66rem;
  font-weight: 800;
  text-transform: uppercase;
}

.compare-warn .compare-tag {
  color: var(--amber);
  background: rgba(240, 166, 72, 0.1);
}

.compare-good .compare-tag {
  color: #171204;
  background: var(--gold);
}

.compare-card h3 {
  margin: 0;
  font-size: 1.08rem;
}

.compare-desc {
  margin: 8px 0 12px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.4;
}

.compare-stats {
  display: grid;
  gap: 7px;
  padding-top: 12px;
  border-top: 1px solid var(--line-soft);
}

.compare-stats span {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  color: var(--muted);
  font-size: 0.76rem;
}

.compare-stats b {
  color: var(--red);
  font-size: 0.72rem;
  text-align: right;
}

.compare-warn .compare-stats b {
  color: var(--amber);
}

.compare-good .compare-stats b {
  color: var(--gold);
}

.steps-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
}

.step-card {
  position: relative;
  padding: 18px 16px 16px 58px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.step-num {
  position: absolute;
  top: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: #171204;
  background: var(--cyan);
  border-radius: 8px;
  font-size: 0.84rem;
  font-weight: 800;
}

.step-card h3 {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.2;
}

.step-card p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.gallery-section {
  overflow: hidden;
}

.gallery-scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  margin: 0 -18px;
  padding: 4px 18px 14px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.gallery-scroll::-webkit-scrollbar {
  display: none;
}

.gallery-card {
  width: 76vw;
  max-width: 320px;
  flex: 0 0 auto;
  scroll-snap-align: start;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.gallery-info {
  padding: 12px 14px 14px;
}

.gallery-info h3 {
  margin: 0;
  font-size: 0.98rem;
}

.gallery-info span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.74rem;
}

.review-section {
  background: var(--bg-soft);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.review-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
}

.review-card {
  padding: 16px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.stars {
  color: var(--gold);
  font-size: 0.92rem;
  letter-spacing: 2px;
}

.review-card blockquote {
  margin: 10px 0 12px;
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.5;
}

.review-author {
  margin: 0;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 800;
}

.review-author span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
}

.handoff-band {
  padding: 26px 20px;
  background:
    radial-gradient(circle at 85% 15%, rgba(63, 212, 226, 0.1), transparent 36%),
    linear-gradient(145deg, rgba(217, 168, 68, 0.12), var(--panel) 52%);
  border: 1px solid rgba(217, 168, 68, 0.35);
  border-radius: 8px;
  text-align: center;
}

.handoff-copy h2 {
  margin: 0;
  font-size: 1.72rem;
  line-height: 1.12;
}

.handoff-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.handoff-actions .btn {
  width: 100%;
}

.payments {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.payments span {
  padding: 6px 10px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 800;
}

.footer {
  padding: 28px 0;
  background: #080a0d;
  border-top: 1px solid var(--line-soft);
}

.footer-inner {
  text-align: center;
}

.footer-brand {
  font-size: 1rem;
  font-weight: 800;
}

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

.footer p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.footer-meta {
  font-size: 0.7rem !important;
}

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  padding: 10px 18px calc(10px + env(safe-area-inset-bottom));
  background: linear-gradient(180deg, rgba(12, 15, 19, 0.82), rgba(12, 15, 19, 0.97));
  border-top: 1px solid var(--line-soft);
  backdrop-filter: blur(12px);
  transform: translateY(120%);
  transition: transform 220ms ease;
}

.sticky-cta.visible {
  transform: translateY(0);
}

.sticky-cta .btn {
  width: 100%;
}

.has-sticky .footer {
  padding-bottom: 92px;
}

@media (min-width: 420px) {
  .hero-actions,
  .unlock-actions,
  .result-actions,
  .handoff-actions {
    flex-direction: row;
  }

  .hero-actions .btn,
  .unlock-actions .btn,
  .result-actions .btn,
  .handoff-actions .btn {
    flex: 1 1 0;
    width: auto;
  }

  .risk-options {
    gap: 10px;
  }
}

@media (min-width: 640px) {
  .hero {
    padding: 48px 0;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 36px;
    align-items: center;
  }

  .hero-copy {
    order: 1;
  }

  .hero-visual {
    order: 2;
  }

  .hero h1 {
    font-size: 2.9rem;
  }

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

  .hero-actions .btn {
    flex: 1 1 0;
  }

  .stats-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
  }

  .stats {
    padding: 30px 0;
  }

  .specs-grid,
  .compare-grid,
  .steps-grid,
  .review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .compare-grid .compare-good {
    grid-column: 1 / -1;
  }

  .unlock-actions,
  .result-actions,
  .handoff-actions {
    flex-direction: row;
  }

  .unlock-actions .btn,
  .result-actions .btn,
  .handoff-actions .btn {
    flex: 1 1 0;
    width: auto;
  }
}

@media (min-width: 860px) {
  .section {
    padding: 64px 0;
  }

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

  .spec-card {
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
    padding: 18px;
  }

  .spec-icon {
    grid-row: auto;
  }

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

  .compare-grid .compare-good {
    grid-column: auto;
  }

  .unlock-panel {
    padding: 26px;
  }

  .unlock-panel::before {
    margin: -26px -26px 20px;
  }

  .handoff-band {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 10px 28px;
    align-items: center;
    padding: 32px;
    text-align: left;
  }

  .handoff-actions {
    margin-top: 0;
  }

  .payments {
    grid-column: 1 / -1;
    justify-content: flex-start;
    margin-top: 8px;
  }
}

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

  .live-dot,
  .claim-cta.is-ready {
    animation: none;
  }

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