:root {
  --ink: #11151b;
  --charcoal: #11161c;
  --charcoal-soft: #171d25;
  --muted: #5d6670;
  --paper: #f7f9fc;
  --paper-soft: #ffffff;
  --white: #ffffff;
  --line: rgba(17, 21, 27, 0.11);
  --blue: #0576ff;
  --blue-dark: #075ad9;
  --mint: #e9fbf2;
  --green: #00a95a;
  --amber: #f5a400;
  --red: #ff3b1f;
  --radius: 8px;
  --shadow: 0 24px 70px rgba(17, 21, 27, 0.12);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Instrument Sans", "Inter", Arial, sans-serif;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.16;
  background:
    linear-gradient(90deg, rgba(11, 14, 13, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(11, 14, 13, 0.08) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 36%);
}

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

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

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

p {
  margin: 0;
}

.section-shell,
.hero-grid {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: absolute;
  top: 22px;
  left: 50%;
  z-index: 50;
  display: flex;
  width: min(1180px, calc(100% - 40px));
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 10px 13px 10px 18px;
  transform: translateX(-50%);
  border: 1px solid rgba(11, 14, 13, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 54px rgba(17, 21, 27, 0.09);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
}

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

.brand-logo {
  display: block;
  width: 216px;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #525b66;
  font-size: 13px;
  font-weight: 680;
}

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

.nav-cta {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 10px 17px;
  color: #fff !important;
  border-radius: 999px;
  background: var(--blue);
  box-shadow: 0 12px 28px rgba(5, 118, 255, 0.2);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px auto;
  background: #fff;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  padding: 118px 0 58px;
  background:
    radial-gradient(circle at 78% 26%, rgba(5, 118, 255, 0.07), transparent 28%),
    radial-gradient(circle at 18% 32%, rgba(0, 169, 90, 0.045), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
}

.hero::after {
  display: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.82fr);
  gap: 68px;
  align-items: center;
}

.hero-copy-block {
  min-width: 0;
}

.signal-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.signal-row span,
.strip-track span,
.category-cloud span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 7px 12px;
  border: 1px solid rgba(5, 118, 255, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 720;
}

.prehead,
.eyebrow {
  display: inline-flex;
  margin: 24px 0 0;
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 720px;
  margin: 14px 0 0;
  font-size: 56px;
  line-height: 1.06;
  font-weight: 640;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.hero-copy {
  max-width: 650px;
  margin: 22px 0 0;
  color: #4f5653;
  font-size: 18px;
  line-height: 1.48;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 740;
}

.button-dark {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 16px 34px rgba(5, 118, 255, 0.22);
}

.button-light {
  color: var(--ink);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
}

.support-line {
  max-width: 690px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  font-weight: 590;
}

.hero-media {
  position: relative;
  display: grid;
  justify-items: center;
}

.hero-video-frame {
  position: relative;
  width: min(360px, 100%);
  margin: 0;
  padding: 10px;
  aspect-ratio: 9 / 16;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(5, 118, 255, 0.18), rgba(0, 169, 90, 0.12) 52%, rgba(255, 59, 31, 0.1)),
    rgba(255, 255, 255, 0.9);
  box-shadow: 0 34px 90px rgba(17, 21, 27, 0.16);
}

.hero-video-frame::before {
  content: "";
  position: absolute;
  inset: -18px;
  z-index: -1;
  opacity: 0.52;
  border-radius: 42px;
  background:
    radial-gradient(circle at 24% 18%, rgba(0, 169, 90, 0.16), transparent 32%),
    radial-gradient(circle at 76% 72%, rgba(5, 118, 255, 0.18), transparent 34%);
  filter: blur(8px);
}

.hero-vsl-embed,
.hero-vsl-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-vsl-embed {
  overflow: hidden;
  border-radius: 25px;
  background: #0f151c;
}

.hero-vsl-embed iframe {
  border: 0;
}

.market-strip {
  display: flex;
  gap: 22px;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.76);
}

.strip-label {
  flex: 0 0 auto;
  max-width: none;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 690;
  white-space: nowrap;
}

.strip-track,
.category-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: flex-end;
}

.strip-track {
  flex: 0 1 auto;
  flex-wrap: nowrap;
  min-width: 0;
}

.strip-track span {
  min-height: 28px;
  padding: 5px 8px;
  font-size: 10px;
  white-space: nowrap;
}

section:not(.hero):not(.market-strip) {
  padding: 112px 0;
}

.outcome-grid,
.knife-grid,
.difference-grid,
.fit-layout,
.cta-layout,
.examples-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 78px;
  align-items: start;
}

h2 {
  margin: 14px 0 0;
  font-size: 44px;
  line-height: 1.07;
  font-weight: 650;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 23px;
  line-height: 1.08;
  font-weight: 720;
  letter-spacing: 0;
}

.section-heading {
  max-width: 860px;
}

.section-heading p {
  max-width: 720px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
  font-weight: 500;
}

.text-stack {
  display: grid;
  gap: 18px;
}

.text-stack p,
.diagnosis-card p,
.sticky-copy p,
.cta-layout > div > p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.68;
  font-weight: 540;
}

.journey-map {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 12px;
  margin-top: 54px;
}

.journey-card {
  position: relative;
  display: grid;
  min-height: 132px;
  place-items: center;
  align-content: center;
  gap: 14px;
  padding: 18px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.78)),
    var(--white);
  box-shadow: 0 18px 44px rgba(17, 21, 27, 0.052);
  color: #343a37;
  text-align: center;
}

.journey-card strong {
  display: block;
  max-width: 112px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.12;
  font-weight: 680;
}

.journey-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: color-mix(in srgb, currentColor 10%, #ffffff);
  color: var(--blue);
}

.journey-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.accent-blue .journey-icon {
  color: var(--blue);
}

.accent-green .journey-icon {
  color: var(--green);
}

.accent-amber .journey-icon {
  color: var(--amber);
}

.accent-red .journey-icon {
  color: var(--red);
}

.problem-section,
.examples-section {
  background: #ffffff;
}

.leak-grid,
.qa-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 44px;
}

.leak-grid article,
.qa-grid article,
.fit-list div {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 50px rgba(17, 21, 27, 0.052);
}

.leak-grid p,
.qa-grid p,
.fit-list span {
  margin-top: 14px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
  font-weight: 570;
}

.section-punch {
  margin-top: 34px;
  padding-left: 18px;
  border-left: 4px solid var(--blue);
  color: var(--ink);
  font-size: 24px;
  line-height: 1.2;
  font-weight: 740;
}

.diagnosis-card {
  display: grid;
  gap: 18px;
  padding: 28px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--blue);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 60px rgba(17, 21, 27, 0.07);
}

.system-section {
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 78% 14%, rgba(5, 118, 255, 0.2), transparent 26%),
    radial-gradient(circle at 18% 72%, rgba(0, 169, 90, 0.13), transparent 24%),
    var(--charcoal);
}

.system-section .eyebrow,
.cta-section .eyebrow {
  color: #a5bbff;
}

.system-section .section-heading p {
  color: rgba(255, 255, 255, 0.68);
}

.system-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 48px;
}

.system-board article {
  --card-accent: var(--blue);
  --card-accent-2: var(--green);
  position: relative;
  overflow: hidden;
  min-height: 318px;
  padding: 26px;
  border: 1px solid color-mix(in srgb, var(--card-accent) 24%, rgba(255, 255, 255, 0.12));
  border-radius: var(--radius);
  background:
    linear-gradient(150deg, color-mix(in srgb, var(--card-accent) 13%, transparent), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.035)),
    var(--charcoal-soft);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.18);
}

.system-board article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--card-accent), var(--card-accent-2));
}

.system-card-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.system-glyph {
  display: grid;
  width: 72px;
  height: 72px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--card-accent) 42%, rgba(255, 255, 255, 0.18));
  border-radius: var(--radius);
  color: #ffffff;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--card-accent) 90%, #ffffff 6%), var(--card-accent-2)),
    var(--card-accent);
  box-shadow: 0 16px 42px color-mix(in srgb, var(--card-accent) 34%, transparent);
}

.system-glyph svg {
  width: 46px;
  height: 46px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3.2;
}

.system-kicker {
  display: inline-flex;
  max-width: 142px;
  justify-content: flex-end;
  color: #ffffff;
  font-size: 11px;
  line-height: 1.18;
  font-weight: 800;
  text-align: right;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.34);
  text-transform: uppercase;
}

.system-board h3,
.system-board p {
  position: relative;
  z-index: 1;
}

.system-board h3 {
  margin-top: 28px;
  max-width: 320px;
}

.system-board p {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 15px;
  line-height: 1.55;
  font-weight: 530;
}

.system-board article.tone-blue {
  --card-accent: var(--blue);
  --card-accent-2: var(--green);
}

.system-board article.tone-warm {
  --card-accent: var(--amber);
  --card-accent-2: var(--red);
}

.system-board article.tone-rainbow {
  --card-accent: #0576ff;
  --card-accent-2: #f5a400;
}

.system-board article.tone-green {
  --card-accent: var(--green);
  --card-accent-2: #0576ff;
}

.system-board article.tone-sky {
  --card-accent: #00a8ff;
  --card-accent-2: #00a95a;
}

.system-board article.tone-red {
  --card-accent: var(--red);
  --card-accent-2: var(--amber);
}

.difference-section {
  background: var(--paper);
}

.fit-section {
  background: var(--paper);
}

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

.fit-list div {
  min-height: 0;
}

.fit-list strong {
  display: block;
  font-size: 20px;
  font-weight: 730;
}

.examples-layout {
  align-items: start;
}

.sticky-copy {
  position: sticky;
  top: 120px;
}

.category-cloud {
  justify-content: flex-start;
}

.category-cloud span {
  min-height: 46px;
  padding: 10px 14px;
  background: var(--white);
  font-size: 14px;
  color: #343a37;
}

.questions-section {
  background: var(--paper);
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 980px;
  margin-top: 42px;
}

.faq-item {
  --faq-accent: var(--blue);
  --faq-accent-2: var(--green);
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--faq-accent) 18%, var(--line));
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--faq-accent) 8%, transparent), transparent 38%),
    var(--white);
  box-shadow: 0 16px 46px rgba(17, 21, 27, 0.052);
}

.faq-item summary {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  min-height: 78px;
  padding: 20px 22px;
  color: var(--ink);
  cursor: pointer;
  font-size: 20px;
  line-height: 1.18;
  font-weight: 720;
  list-style: none;
}

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

.faq-item summary::after {
  content: "+";
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  color: var(--faq-accent);
  background: color-mix(in srgb, var(--faq-accent) 11%, #ffffff);
  font-size: 22px;
  line-height: 1;
  font-weight: 560;
}

.faq-item[open] {
  border-color: color-mix(in srgb, var(--faq-accent) 42%, var(--line));
  box-shadow: 0 20px 58px rgba(17, 21, 27, 0.074);
}

.faq-item[open] summary::after {
  content: "-";
  color: #ffffff;
  background: linear-gradient(135deg, var(--faq-accent), var(--faq-accent-2));
}

.faq-mark {
  position: relative;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, color-mix(in srgb, var(--faq-accent) 92%, #ffffff 8%), var(--faq-accent-2));
  box-shadow: 0 12px 30px color-mix(in srgb, var(--faq-accent) 24%, transparent);
}

.faq-mark::before {
  content: "?";
  font-size: 18px;
  line-height: 1;
  font-weight: 820;
}

.faq-answer {
  padding: 0 22px 24px 76px;
}

.faq-answer p {
  max-width: 780px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.62;
  font-weight: 520;
}

.faq-item.tone-blue {
  --faq-accent: var(--blue);
  --faq-accent-2: var(--green);
}

.faq-item.tone-green {
  --faq-accent: var(--green);
  --faq-accent-2: #0576ff;
}

.faq-item.tone-warm {
  --faq-accent: var(--amber);
  --faq-accent-2: var(--red);
}

.faq-item.tone-sky {
  --faq-accent: #00a8ff;
  --faq-accent-2: #00a95a;
}

.faq-item.tone-red {
  --faq-accent: var(--red);
  --faq-accent-2: var(--amber);
}

.cta-section {
  color: #fff;
  background:
    radial-gradient(circle at 84% 18%, rgba(5, 118, 255, 0.19), transparent 25%),
    radial-gradient(circle at 18% 82%, rgba(245, 164, 0, 0.1), transparent 24%),
    var(--charcoal);
}

.cta-layout {
  align-items: center;
  grid-template-columns: minmax(0, 0.76fr) minmax(640px, 1.24fr);
  gap: 58px;
}

.cta-layout > div > p {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.68);
}

.booking-widget {
  min-height: 690px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(206, 215, 224, 0.42);
  border-radius: var(--radius);
  background: transparent;
  box-shadow: none;
}

.ghl-booking-iframe {
  display: block;
  width: 100%;
  min-height: 670px;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  overflow: hidden;
}

.site-footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: #ffffff;
}

.footer-inner {
  display: flex;
  min-height: 96px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 13px;
  font-weight: 620;
}

.footer-logo {
  display: block;
  width: 202px;
  height: auto;
}

@media (max-width: 1120px) {
  .nav {
    gap: 14px;
  }

  .hero-grid,
  .outcome-grid,
  .knife-grid,
  .difference-grid,
  .fit-layout,
  .examples-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .cta-layout {
    grid-template-columns: minmax(0, 0.74fr) minmax(520px, 1.26fr);
    gap: 36px;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    max-width: 520px;
    margin: 0 auto;
  }

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

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

  .sticky-copy {
    position: static;
  }
}

@media (max-width: 860px) {
  .site-header {
    top: 12px;
    width: min(100% - 24px, 680px);
  }

  .menu-toggle {
    display: grid;
  }

  .nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    display: none;
    width: min(290px, calc(100vw - 28px));
    padding: 14px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
  }

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

  .nav a {
    padding: 12px;
  }

  .nav-cta {
    justify-content: center;
  }

  .section-shell,
  .hero-grid {
    width: min(100% - 28px, 680px);
  }

  .cta-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 112px 0 58px;
  }

  .hero-copy-block,
  .hero h1,
  .hero-copy,
  .support-line {
    max-width: 360px;
  }

  .hero h1 {
    font-size: 40px;
    line-height: 1.06;
  }

  .hero-copy {
    font-size: 18px;
  }

  .market-strip {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 22px 14px;
  }

  .strip-label {
    max-width: 100%;
    white-space: normal;
  }

  .strip-track {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .strip-track span {
    white-space: normal;
  }

  section:not(.hero):not(.market-strip) {
    padding: 84px 0;
  }

  h2 {
    font-size: 34px;
    line-height: 1.05;
  }

  .journey-map,
  .leak-grid,
  .system-board,
  .qa-grid {
    grid-template-columns: 1fr;
  }

  .faq-item summary {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 12px;
    min-height: 70px;
    padding: 18px 16px;
    font-size: 18px;
  }

  .faq-answer {
    padding: 0 16px 20px;
  }

  .journey-card,
  .leak-grid article,
  .system-board article,
  .qa-grid article {
    min-height: auto;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
}

@media (max-width: 470px) {
  .hero-copy-block,
  .hero h1,
  .hero-copy,
  .support-line {
    max-width: 360px;
  }

  .hero h1 {
    font-size: 36px;
    line-height: 1.07;
  }

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

  .button {
    width: 100%;
    padding-inline: 16px;
  }

  .signal-row span,
  .strip-track span,
  .category-cloud span {
    white-space: normal;
  }

  .hero-video-frame {
    padding: 7px;
    border-radius: 20px;
  }

  .hero-vsl {
    border-radius: 14px;
  }
}
