:root {
  --ink: #111827;
  --muted: #5b6472;
  --line: #d8dee7;
  --paper: #f6f8fb;
  --white: #ffffff;
  --blue: #155eef;
  --blue-dark: #0f3fa6;
  --green: #16a34a;
  --red: #dc2626;
  --amber: #b45309;
  --panel: #101828;
  --panel-soft: #182233;
  --shadow: 0 22px 70px rgba(17, 24, 39, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  letter-spacing: 0;
}

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

a {
  color: inherit;
}

.risk-strip {
  position: sticky;
  top: 0;
  z-index: 30;
  padding: 10px 18px;
  background: #fff7ed;
  border-bottom: 1px solid #fed7aa;
  color: #7c2d12;
  font-size: 14px;
  text-align: center;
}

.site-header {
  position: sticky;
  top: 41px;
  z-index: 25;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 68px;
  padding: 12px clamp(18px, 4vw, 52px);
  background: rgba(246, 248, 251, 0.9);
  border-bottom: 1px solid rgba(216, 222, 231, 0.8);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.brand-mark {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 3vw, 30px);
  font-size: 14px;
  color: var(--muted);
}

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

.nav a:hover,
.footer a:hover {
  color: var(--blue);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 8px;
  background: var(--blue);
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.section-band {
  padding: clamp(56px, 8vw, 104px) clamp(18px, 5vw, 72px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  align-items: center;
  gap: clamp(34px, 5vw, 70px);
  min-height: calc(100vh - 109px);
  padding-top: clamp(44px, 6vw, 78px);
  background:
    linear-gradient(115deg, rgba(255,255,255,0.94), rgba(255,255,255,0.78) 52%, rgba(228,236,247,0.88)),
    radial-gradient(circle at 80% 18%, rgba(21,94,239,0.12), transparent 34%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(42px, 6.4vw, 74px);
  line-height: 0.97;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(30px, 4.2vw, 52px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.15;
}

.hero-subtitle {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 16px 32px rgba(21, 94, 239, 0.26);
}

.button-primary:hover {
  background: var(--blue-dark);
}

.button-secondary {
  background: var(--white);
  border-color: var(--line);
  color: var(--ink);
}

.button-wide {
  width: 100%;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.trust-row span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.75);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.hero-visual {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.34);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.hero-visual img,
.proof-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-visual img[src=""],
.hero-visual img:not([src]) {
  display: none;
}

.hero-visual img {
  position: relative;
  z-index: 2;
  min-height: 470px;
}

.hero-visual img[src$=".webp"] {
  background: transparent;
}

.hero-visual.is-missing-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(145deg, rgba(16,24,40,0.94), rgba(24,34,51,0.88)),
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: auto, 72px 72px, 72px 72px;
}

.credibility {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.metric {
  padding: 26px;
  border-left: 4px solid var(--blue);
  background: #f9fbff;
}

.metric strong {
  display: block;
  margin-bottom: 10px;
  font-size: 28px;
}

.metric span,
.section-heading p,
.feature p,
.rule-copy p,
.pricing-copy p,
.checkout-note,
.faq p,
.footer p,
.step p {
  color: var(--muted);
  line-height: 1.65;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-heading p {
  margin: 16px 0 0;
  font-size: 17px;
}

.proof {
  background: #eef3f9;
}

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

.proof-shot {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.proof-shot img {
  aspect-ratio: 16 / 10;
  background:
    linear-gradient(145deg, rgba(16,24,40,0.95), rgba(31,41,55,0.96)),
    repeating-linear-gradient(0deg, transparent, transparent 28px, rgba(255,255,255,0.06) 29px);
}

.proof-shot.is-missing-image::before {
  content: "";
  display: grid;
  min-height: 250px;
  place-items: center;
  background:
    linear-gradient(145deg, rgba(16,24,40,0.95), rgba(31,41,55,0.96)),
    repeating-linear-gradient(0deg, transparent, transparent 28px, rgba(255,255,255,0.06) 29px);
}

.proof-shot figcaption {
  padding: 12px 14px;
  color: var(--muted);
  font-size: 13px;
}

.inside {
  background: var(--white);
}

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

.feature {
  min-height: 250px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.feature-index {
  display: block;
  margin-bottom: 24px;
  color: var(--blue);
  font-weight: 900;
}

.rule {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.65fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  background: var(--panel);
  color: var(--white);
}

.rule .eyebrow,
.final-cta .eyebrow {
  color: #93c5fd;
}

.rule-copy p {
  color: #cbd5e1;
  font-size: 18px;
}

.signal-panel {
  display: grid;
  gap: 12px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
}

.state-row {
  display: grid;
  grid-template-columns: 1fr 20px auto;
  align-items: center;
  gap: 14px;
  min-height: 54px;
  padding: 0 14px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
}

.state-row span {
  color: #e5e7eb;
  font-weight: 800;
}

.state-row i {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(22,163,74,0.12);
}

.state-row b {
  color: #bbf7d0;
  font-size: 14px;
}

.panel-verdict {
  padding: 14px;
  border-radius: 8px;
  background: rgba(22,163,74,0.16);
  color: #dcfce7;
  font-weight: 800;
}

.setup {
  background: var(--white);
}

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

.step {
  display: flex;
  gap: 14px;
  min-height: 150px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.step span {
  flex: 0 0 auto;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  font-weight: 900;
}

.step p {
  margin: 0;
}

.pricing {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.55fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  background: #edf5f0;
}

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

.check-list li {
  position: relative;
  padding-left: 28px;
  color: #374151;
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--green);
}

.checkout-box {
  padding: 28px;
  border: 1px solid #cbd5d1;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.checkout-label {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.checkout-box h3 {
  margin-bottom: 12px;
  font-size: 28px;
}

.checkout-box small {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.5;
}

.faq {
  background: var(--white);
}

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

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfe;
}

summary {
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 900;
}

details p {
  margin: 0;
  padding: 0 22px 22px;
}

.final-cta {
  display: grid;
  justify-items: center;
  text-align: center;
  background: var(--ink);
  color: var(--white);
}

.final-cta h2 {
  max-width: 850px;
  margin-bottom: 26px;
}

.footer {
  padding: 30px clamp(18px, 5vw, 72px);
  background: #0b1220;
}

.footer p {
  max-width: 1080px;
  margin: 0 0 10px;
  color: #cbd5e1;
  font-size: 13px;
}

.footer-links {
  display: flex;
  gap: 18px;
}

@media (max-width: 980px) {
  .site-header {
    top: 58px;
  }

  .nav {
    display: none;
  }

  .hero,
  .rule,
  .pricing {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 390px;
  }

  .hero-visual img {
    min-height: 390px;
  }

  .credibility,
  .proof-grid,
  .feature-grid,
  .steps {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .risk-strip {
    font-size: 12px;
    text-align: left;
  }

  .site-header {
    top: 68px;
    min-height: 62px;
    padding-inline: 14px;
  }

  .brand span:last-child {
    display: none;
  }

  .nav-cta {
    min-height: 40px;
    max-width: 190px;
    padding: 0 12px;
    font-size: 13px;
  }

  .section-band {
    padding-inline: 16px;
  }

  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 32px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .credibility,
  .proof-grid,
  .feature-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 330px;
  }

  .hero-visual img {
    min-height: 330px;
  }

  .state-row {
    grid-template-columns: 1fr 20px;
  }

  .state-row b {
    grid-column: 1 / -1;
  }
}
