:root {
  --black: #000000;
  --charcoal: #20242a;
  --red: #c02030;
  --red-hover: #a81927;
  --steel: #8098a8;
  --soft-steel: #eef4f7;
  --warm: #f8f6f2;
  --white: #ffffff;
  --muted: #606a72;
  --border: #d8e0e5;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
  --radius: 6px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--charcoal);
  background: var(--white);
  font-family: Inter, Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px max(20px, calc((100vw - 1120px) / 2));
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: auto;
  height: 43px;
  max-width: min(230px, 56vw);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--steel);
  font-size: 0.94rem;
  font-weight: 700;
}

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

.nav-links a:hover {
  color: var(--black);
}

.nav-links a[aria-current="page"] {
  color: var(--black);
}

.nav-cta {
  padding: 9px 13px;
  color: var(--white) !important;
  background: var(--red);
  border-radius: 5px;
}

.nav-cta:hover {
  background: var(--red-hover);
}

.section {
  padding: 92px 0;
}

.section-dark {
  color: var(--white);
  background: var(--black);
}

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

.soft {
  background: var(--warm);
}

.soft-blue {
  background: var(--soft-steel);
}

.hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.page-hero {
  padding: 96px 0;
  overflow: hidden;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.55fr);
  gap: 64px;
  align-items: center;
}

.page-hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2.7rem, 6.5vw, 5rem);
  line-height: 1;
  letter-spacing: 0;
}

.static-panel {
  position: static;
  width: auto;
  opacity: 1;
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 90px;
  content: "";
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.45));
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 82px 0 118px;
}

.hero-content h1 {
  max-width: 790px;
  margin: 0;
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 660px;
  margin: 26px 0 0;
  color: rgba(238, 244, 247, 0.92);
  font-size: 1.25rem;
}

.hero-visual {
  position: absolute;
  inset: 0;
  opacity: 0.62;
}

.hero-visual::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.98) 0%, rgba(32, 36, 42, 0.88) 46%, rgba(128, 152, 168, 0.32) 100%),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.08), rgba(255,255,255,0.08) 1px, transparent 1px, transparent 72px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.08), rgba(255,255,255,0.08) 1px, transparent 1px, transparent 72px);
}

.signal-grid {
  position: absolute;
  right: 7vw;
  top: 14vh;
  display: grid;
  grid-template-columns: repeat(4, minmax(70px, 1fr));
  gap: 14px;
  width: min(560px, 48vw);
}

.signal-grid span {
  height: 82px;
  border: 1px solid rgba(238, 244, 247, 0.24);
  border-radius: 5px;
  background:
    linear-gradient(90deg, rgba(192, 32, 48, 0.52) 0 22%, transparent 22%),
    rgba(238, 244, 247, 0.08);
}

.signal-grid span:nth-child(2n) {
  background:
    linear-gradient(90deg, rgba(128, 152, 168, 0.52) 0 44%, transparent 44%),
    rgba(238, 244, 247, 0.08);
}

.signal-grid span:nth-child(3n) {
  background:
    linear-gradient(90deg, rgba(46, 125, 91, 0.42) 0 66%, transparent 66%),
    rgba(238, 244, 247, 0.08);
}

.diagnostic-panel {
  position: absolute;
  right: 9vw;
  bottom: 15vh;
  width: min(420px, 42vw);
  padding: 22px;
  color: var(--charcoal);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.26);
}

.panel-label {
  margin: 0;
  color: var(--steel);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.panel-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.panel-mark {
  width: 34px;
  height: 46px;
  object-fit: contain;
}

.panel-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 0;
  border-top: 1px solid var(--border);
  font-size: 0.94rem;
}

.panel-row b {
  color: var(--steel);
}

.panel-row.strong b {
  color: #2e7d5b;
}

.panel-row.warning b {
  color: var(--red);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h2 {
  margin: 0 0 20px;
  color: var(--charcoal);
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.section-dark h2,
.section-dark .eyebrow {
  color: var(--white);
}

h3 {
  margin: 0 0 10px;
  color: var(--charcoal);
  font-size: 1.18rem;
  line-height: 1.22;
}

p {
  margin: 0 0 18px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 22px;
  border-radius: 5px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
}

.button.primary {
  color: var(--white);
  background: var(--red);
}

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

.button.secondary-dark {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.72);
  background: transparent;
}

.button.secondary-dark:hover {
  color: var(--black);
  background: var(--white);
}

.trust-line {
  max-width: 650px;
  margin-top: 24px;
  color: rgba(238, 244, 247, 0.76);
  font-size: 0.98rem;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: 54px;
  align-items: center;
}

.two-column.reverse {
  grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1fr);
}

.card,
.mini-card,
.outcome-grid article,
.fit-list div,
.callout-panel,
.snapshot-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.card {
  padding: 30px;
}

.stack-card {
  border-top: 5px solid var(--red);
}

.check-list,
.plain-list {
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.check-list li,
.plain-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
}

.check-list li::before,
.plain-list li::before {
  position: absolute;
  left: 0;
  top: 0.08em;
  color: var(--red);
  content: "✓";
  font-weight: 900;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

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

.three-card-grid,
.check-grid,
.outcome-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.card-number {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 900;
}

.split-band {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1fr);
  gap: 56px;
  align-items: center;
}

.step-list {
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: steps;
}

.step-list li {
  position: relative;
  padding: 24px 24px 24px 74px;
  margin-bottom: 14px;
  background: var(--warm);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.step-list li::before {
  position: absolute;
  left: 22px;
  top: 25px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  counter-increment: steps;
  content: counter(steps);
  color: var(--white);
  background: var(--black);
  border-radius: 4px;
  font-size: 0.86rem;
  font-weight: 900;
}

.step-list span {
  display: block;
  margin-bottom: 5px;
  color: var(--black);
  font-weight: 900;
}

.step-list p {
  margin: 0;
  color: var(--muted);
}

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

.mini-card {
  padding: 26px;
  box-shadow: none;
}

.mini-card p,
.outcome-grid p,
.fit-list p {
  color: var(--muted);
}

.callout-panel {
  padding: 34px;
  background: var(--black);
  border-color: var(--black);
  box-shadow: none;
}

.callout-panel h2,
.callout-panel p {
  color: var(--white);
}

.fit-list {
  display: grid;
  gap: 18px;
}

.fit-list div {
  padding: 26px;
  box-shadow: none;
}

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

.outcome-grid article {
  padding: 24px;
  box-shadow: none;
}

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

.price-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.price-card.featured {
  border-top: 5px solid var(--red);
  box-shadow: var(--shadow);
}

.price {
  margin: 8px 0 14px;
  color: var(--black);
  font-size: 1.55rem;
  font-weight: 900;
  line-height: 1.1;
}

.faq-section h2,
.faq-section p,
.faq-section summary {
  color: var(--white);
}

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

details {
  padding: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
}

summary {
  cursor: pointer;
  font-weight: 900;
}

details p {
  margin: 14px 0 0;
  color: rgba(238, 244, 247, 0.84) !important;
}

.request-section {
  background: var(--warm);
}

.request-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(340px, 1fr);
  gap: 54px;
  align-items: start;
}

.small-note,
.form-note {
  color: var(--muted);
  font-size: 0.94rem;
}

.small-note a {
  color: var(--black);
  font-weight: 800;
}

.snapshot-form {
  display: grid;
  gap: 16px;
  padding: 28px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--black);
  font-size: 0.92rem;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--charcoal);
  font: inherit;
  border: 1px solid var(--border);
  border-radius: 5px;
  background: var(--white);
}

input:focus,
textarea:focus {
  outline: 3px solid rgba(192, 32, 48, 0.22);
  border-color: var(--red);
}

textarea {
  resize: vertical;
}

.snapshot-form .button {
  width: 100%;
  margin-top: 4px;
  font-size: 1rem;
}

.site-footer {
  padding: 46px 0;
  color: rgba(238, 244, 247, 0.84);
  background: var(--black);
}

.footer-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.38fr);
  gap: 40px;
}

.footer-brand {
  margin-bottom: 18px;
}

.footer-brand .brand-logo {
  height: 52px;
  max-width: min(270px, 72vw);
}

.site-footer p {
  max-width: 680px;
  margin: 0;
}

address {
  font-style: normal;
}

address a {
  color: var(--white);
  font-weight: 800;
}

.footer-links {
  margin-top: 18px;
}

.policy-page {
  background: var(--warm);
}

.policy-hero {
  padding: 76px 0 44px;
  color: var(--white);
  background: var(--black);
}

.policy-content {
  padding: 56px 0 84px;
}

.policy-content article {
  max-width: 820px;
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.policy-content h2 {
  margin-top: 34px;
  font-size: 1.5rem;
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 3px;
  }

  .hero {
    min-height: 680px;
  }

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

  .hero-content h1 {
    font-size: clamp(2.7rem, 13vw, 4.8rem);
  }

  .diagnostic-panel {
    right: 18px;
    bottom: 28px;
    width: min(390px, calc(100% - 36px));
    opacity: 0.72;
  }

  .signal-grid {
    right: -70px;
    top: 70px;
    width: 520px;
  }

  .two-column,
  .two-column.reverse,
  .split-band,
  .request-layout,
  .footer-layout {
    grid-template-columns: 1fr;
  }

  .three-card-grid,
  .check-grid,
  .outcome-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 68px 0;
  }
}

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

  .site-header {
    padding: 12px 14px;
  }

  .nav-links {
    gap: 14px;
    font-size: 0.86rem;
  }

  .hero {
    min-height: 760px;
  }

  .hero-content {
    padding-top: 58px;
  }

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

  .card,
  .snapshot-form,
  .callout-panel {
    padding: 22px;
  }
}
