:root {
  --font-display: "Manrope";
  --font-body: "IBM Plex Sans";
  --font-mono: "IBM Plex Mono";
  --navy-950: #04101b;
  --navy-900: #071725;
  --navy-850: #0a1e30;
  --navy-800: #0e263d;
  --navy-700: #173955;
  --blue: #4f9bff;
  --blue-deep: #2f70ba;
  --cyan: #76e0ef;
  --green: #61dda8;
  --gold: #ffb642;
  --gold-light: #ffd17c;
  --text: #f5f9fd;
  --muted: #c5d3e2;
  --dim: #94a9bd;
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.18);
  --shell: 1180px;
  --radius: 20px;
  --shadow: 0 30px 80px -48px rgba(0, 0, 0, 0.9);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  background: var(--navy-950);
  color: var(--text);
  font-family: var(--font-body), Arial, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -3;
  content: "";
  background:
    radial-gradient(circle at 75% -15%, rgba(79, 155, 255, 0.18), transparent 34%),
    radial-gradient(circle at 2% 14%, rgba(118, 224, 239, 0.1), transparent 29%),
    var(--navy-950);
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  pointer-events: none;
  opacity: 0.025;
  background-image: repeating-linear-gradient(
    90deg,
    transparent 0,
    transparent 79px,
    rgba(255, 255, 255, 0.5) 80px
  );
}

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

button,
summary {
  font: inherit;
}

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

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-display), Arial, sans-serif;
  letter-spacing: -0.03em;
}

h1 {
  max-width: 11ch;
  font-size: clamp(3rem, 6.25vw, 5.65rem);
  font-weight: 700;
  line-height: 0.95;
}

h2 {
  font-size: clamp(2.35rem, 4.5vw, 4.25rem);
  font-weight: 700;
  line-height: 0.98;
}

h3 {
  font-size: 1.32rem;
  font-weight: 700;
  line-height: 1.1;
}

.shell {
  width: min(calc(100% - 48px), var(--shell));
  margin-inline: auto;
}

.section {
  padding-block: clamp(84px, 10vw, 144px);
}

.siteHeader {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(4, 16, 27, 0.82);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.navBar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 82px;
}

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

.brand img {
  width: 157px;
}

.desktopNav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2.6vw, 34px);
  color: var(--muted);
  font-size: 0.92rem;
}

.desktopNav a,
.footerLinks a {
  transition: color 160ms ease;
}

.desktopNav a:hover,
.footerLinks a:hover {
  color: var(--text);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 600;
  line-height: 1.2;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

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

.button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(118, 224, 239, 0.75);
  outline-offset: 4px;
}

.buttonPrimary {
  color: #201300;
  background: var(--gold);
  box-shadow: 0 15px 38px -18px rgba(255, 182, 66, 0.9);
}

.buttonPrimary:hover {
  background: var(--gold-light);
  box-shadow: 0 19px 44px -18px rgba(255, 182, 66, 1);
}

.buttonSecondary {
  color: #eafcff;
  border-color: rgba(118, 224, 239, 0.38);
  background: rgba(79, 155, 255, 0.12);
  box-shadow: inset 0 0 0 1px rgba(118, 224, 239, 0.05);
}

.buttonSecondary:hover {
  border-color: rgba(118, 224, 239, 0.66);
  background: rgba(79, 155, 255, 0.2);
  box-shadow: 0 14px 34px -22px rgba(118, 224, 239, 0.85);
}

.buttonLight {
  color: white;
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(5, 19, 33, 0.18);
}

.buttonLarge {
  min-height: 56px;
  padding-inline: 27px;
}

.mobileNav {
  display: none;
  justify-self: end;
}

.mobileNav summary {
  display: grid;
  place-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
  list-style: none;
  background: rgba(255, 255, 255, 0.04);
}

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

.mobileNav summary span {
  display: block;
  width: 19px;
  height: 2px;
  border-radius: 10px;
  background: var(--text);
}

.mobileNav nav {
  position: fixed;
  top: 82px;
  right: 0;
  left: 0;
  display: grid;
  gap: 0;
  padding: 18px 24px 30px;
  border-bottom: 1px solid var(--line);
  background: rgba(4, 16, 27, 0.98);
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.45);
}

.mobileNav nav > a:not(.button) {
  padding: 16px 2px;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-display), Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
}

.mobileNav nav .button {
  margin-top: 22px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 9vw, 126px) 0 0;
}

.heroGlow {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(4px);
  pointer-events: none;
}

.heroGlowOne {
  top: 1%;
  right: -15%;
  width: 680px;
  height: 680px;
  background: radial-gradient(circle, rgba(79, 155, 255, 0.14), transparent 68%);
}

.heroGlowTwo {
  bottom: 2%;
  left: -14%;
  width: 440px;
  height: 440px;
  background: radial-gradient(circle, rgba(118, 224, 239, 0.08), transparent 70%);
}

.heroGrid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(440px, 0.94fr);
  align-items: center;
  gap: clamp(42px, 6vw, 84px);
}

.demoPanel .flowState {
  color: var(--cyan);
}

.sampleSection {
  padding: 0 0 clamp(40px, 6vw, 78px);
}

.samplePanel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 0.78fr) auto;
  align-items: center;
  gap: clamp(24px, 4vw, 54px);
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.025);
}

.samplePanel h2 {
  margin-top: 8px;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
}

.samplePanel p {
  max-width: 57ch;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.94rem;
}

.samplePlaceholder {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: 11px;
  min-height: 74px;
  padding: 13px 16px;
  border: 1px dashed rgba(118, 224, 239, 0.35);
  border-radius: 15px;
  color: var(--dim);
  background: rgba(79, 155, 255, 0.05);
}

.samplePlaceholder > span:first-child {
  display: grid;
  place-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: var(--cyan);
  background: rgba(118, 224, 239, 0.1);
  font-size: 0.68rem;
}

.samplePlaceholder div {
  display: grid;
}

.samplePlaceholder strong {
  color: var(--text);
  font-size: 0.85rem;
}

.samplePlaceholder small,
.sampleDuration {
  font-family: var(--font-mono), monospace;
  font-size: 0.65rem;
}

.callDemoOpen {
  overflow: hidden;
}

.callDemoModal[hidden] {
  display: none;
}

#call-demo-form[hidden],
#call-demo-scan-form[hidden],
.briefConfirmation[hidden],
.genericDemoNote[hidden],
.callDemoFallback[hidden],
#call-demo-service-area-row[hidden] {
  display: none;
}

.callDemoModal {
  position: fixed;
  z-index: 300;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
}

.callDemoBackdrop {
  position: absolute;
  inset: 0;
  background: rgba(1, 8, 14, 0.76);
  -webkit-backdrop-filter: blur(9px);
  backdrop-filter: blur(9px);
}

.callDemoDialog {
  position: relative;
  width: min(100%, 590px);
  max-height: min(760px, calc(100vh - 48px));
  overflow: auto;
  padding: clamp(28px, 5vw, 46px);
  border: 1px solid rgba(118, 224, 239, 0.32);
  border-radius: 26px;
  background: linear-gradient(150deg, rgba(79, 155, 255, 0.14), rgba(7, 23, 37, 0.98) 52%);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}

.callDemoDialog h2 {
  max-width: 11ch;
  margin-top: 10px;
  font-size: clamp(2rem, 5vw, 3rem);
}

.callDemoDialog > p:not(.callDemoBooking) {
  margin-top: 16px;
  color: var(--muted);
}

.callDemoClose {
  position: absolute;
  top: 16px;
  right: 17px;
  display: grid;
  place-content: center;
  width: 39px;
  height: 39px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  font-size: 1.65rem;
  line-height: 1;
  cursor: pointer;
}

#call-demo-form {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

#call-demo-scan-form {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.callDemoTrap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

#call-demo-form > label:first-child,
#call-demo-scan-form > label {
  font-weight: 600;
}

#call-demo-phone,
#call-demo-website {
  width: 100%;
  min-height: 53px;
  padding: 12px 15px;
  border: 1px solid rgba(118, 224, 239, 0.3);
  border-radius: 12px;
  color: var(--text);
  background: rgba(4, 16, 27, 0.75);
  font: inherit;
}

#call-demo-phone::placeholder,
#call-demo-website::placeholder {
  color: var(--dim);
}

#call-demo-phone:focus-visible,
#call-demo-website:focus-visible,
.callDemoClose:focus-visible,
.buttonGhost:focus-visible {
  outline: 3px solid rgba(118, 224, 239, 0.75);
  outline-offset: 3px;
}

.fieldHelp {
  color: var(--dim);
  font-size: 0.78rem;
}

.callDemoStepLabel {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 4px;
  color: var(--cyan);
  font-family: var(--font-mono), monospace;
  font-size: 0.67rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.callDemoStepLabel span {
  padding: 3px 7px;
  border: 1px solid rgba(118, 224, 239, 0.3);
  border-radius: 999px;
  background: rgba(118, 224, 239, 0.08);
}

.briefConfirmation,
.genericDemoNote,
.callDemoFallback {
  margin-top: 9px;
  padding: 16px;
  border: 1px solid rgba(118, 224, 239, 0.2);
  border-radius: 14px;
  color: var(--muted);
  background: rgba(79, 155, 255, 0.06);
  font-size: 0.86rem;
}

.briefConfirmation > p {
  margin-bottom: 13px;
}

.briefConfirmation dl {
  display: grid;
  gap: 8px;
  margin: 0;
}

.briefConfirmation dl > div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 11px;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}

.briefConfirmation dt {
  color: var(--dim);
  font-family: var(--font-mono), monospace;
  font-size: 0.66rem;
  text-transform: uppercase;
}

.briefConfirmation dd {
  margin: 0;
  color: var(--text);
}

.briefConfirmCheck {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 11px;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.86rem;
}

.briefConfirmCheck input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--cyan);
}

.briefConfirmCheck:has(input:disabled) {
  display: none;
}

.genericDemoNote,
.callDemoFallback {
  border-color: rgba(255, 182, 66, 0.25);
  color: var(--gold-light);
  background: rgba(255, 182, 66, 0.06);
}

.consentCheck {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 11px;
  margin-top: 11px;
  color: var(--muted);
  font-size: 0.86rem;
}

.consentCheck input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--gold);
}

.consentCheck a {
  color: var(--cyan);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.callDemoStatus {
  min-height: 1.5em;
  margin: 8px 0 0;
  color: var(--dim);
  font-size: 0.88rem;
}

.callDemoStatus[data-state="requesting"] { color: var(--cyan); }
.callDemoStatus[data-state="success"] { color: var(--green); }
.callDemoStatus[data-state="error"] { color: var(--gold-light); }

.callDemoActions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 5px;
}

.buttonGhost {
  color: var(--muted);
  border-color: var(--line-strong);
  background: transparent;
  cursor: pointer;
}

.button:disabled {
  cursor: wait;
  opacity: 0.7;
  transform: none;
}

.callDemoBooking {
  margin-top: 23px;
  padding-top: 19px;
  border-top: 1px solid var(--line);
  color: var(--dim);
  font-size: 0.84rem;
}

.callDemoBooking a {
  color: var(--cyan);
  font-weight: 600;
}

.panelLabel {
  font-family: var(--font-mono), monospace;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.headingAccent {
  width: 46px;
  height: 3px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  box-shadow: 0 0 18px rgba(118, 224, 239, 0.22);
}

.heroAccent {
  width: 58px;
  margin-bottom: 26px;
}

.gradientText {
  color: transparent;
  background: linear-gradient(105deg, #8ae6ef 2%, #5db0ff 52%, #4a78dd 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.headlineTail {
  display: block;
  max-width: 18ch;
  margin-top: 0.3em;
  color: var(--text);
  font-size: 0.48em;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.heroLead {
  max-width: 58ch;
  margin-top: 28px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.45vw, 1.25rem);
}

.heroActions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 34px;
}

.trustLine {
  margin-top: 23px;
  color: var(--dim);
  font-size: 0.87rem;
}

.trustLine strong {
  color: var(--muted);
}

.flowPanel {
  position: relative;
  overflow: hidden;
  padding: 26px;
  border: 1px solid rgba(118, 224, 239, 0.18);
  border-radius: 26px;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.015)),
    rgba(7, 23, 37, 0.8);
  box-shadow:
    0 45px 100px -58px rgba(0, 0, 0, 1),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.flowPanel::after {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  content: "";
  background: radial-gradient(circle, rgba(79, 155, 255, 0.13), transparent 70%);
}

.flowHeader {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.panelLabel {
  color: var(--cyan);
}

.flowHeader h2 {
  margin-top: 7px;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
}

.livePill {
  display: inline-flex;
  flex: none;
  align-items: center;
  gap: 7px;
  padding: 6px 9px;
  border: 1px solid rgba(97, 221, 168, 0.25);
  border-radius: 999px;
  color: var(--green);
  background: rgba(97, 221, 168, 0.06);
  font-family: var(--font-mono), monospace;
  font-size: 0.61rem;
  text-transform: uppercase;
}

.livePill i,
.signal i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px rgba(97, 221, 168, 0.8);
}

.flowSteps {
  padding-block: 23px;
}

.flowStep {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  align-items: center;
  gap: 13px;
  min-height: 74px;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.025);
}

.flowStep.featured {
  border-color: rgba(79, 155, 255, 0.33);
  background: rgba(79, 155, 255, 0.08);
  box-shadow: 0 18px 50px -40px rgba(79, 155, 255, 0.9);
}

.flowNumber {
  display: grid;
  place-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(118, 224, 239, 0.22);
  border-radius: 11px;
  color: var(--cyan);
  background: rgba(118, 224, 239, 0.07);
  font-family: var(--font-mono), monospace;
  font-size: 0.68rem;
}

.flowStep div {
  display: grid;
}

.flowStep strong {
  font-size: 0.92rem;
}

.flowStep div span {
  color: var(--dim);
  font-size: 0.75rem;
}

.flowState {
  color: var(--green);
  font-family: var(--font-mono), monospace;
  font-size: 0.62rem;
  text-transform: uppercase;
}

.flowConnector {
  position: relative;
  width: 1px;
  height: 18px;
  margin-left: 34px;
  background: rgba(118, 224, 239, 0.28);
}

.flowConnector i {
  position: absolute;
  bottom: -1px;
  left: -2px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cyan);
}

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

.flowFooter span {
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--dim);
  font-size: 0.68rem;
}

.industryRail {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: clamp(70px, 8vw, 110px);
  padding-block: 25px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--dim);
  font-size: 0.79rem;
}

.industryRail > span {
  color: var(--cyan);
  font-family: var(--font-mono), monospace;
  font-size: 0.67rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.industryRail a:hover {
  color: var(--text);
}

.splitIntro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(400px, 0.72fr);
  align-items: end;
  justify-content: space-between;
  gap: 60px;
}

.splitIntro h2 {
  max-width: 13ch;
}

.introCopy {
  display: grid;
  gap: 17px;
  color: var(--muted);
  font-size: 1.04rem;
}

.leakGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 58px;
}

.leakCard {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012));
  box-shadow: var(--shadow);
}

.leakTop {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cardNumber {
  color: var(--cyan);
  font-family: var(--font-mono), monospace;
  font-size: 0.7rem;
}

.leakLabel {
  color: var(--gold);
  font-family: var(--font-mono), monospace;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.leakCard h3 {
  margin-top: 27px;
  font-size: clamp(1.3rem, 2vw, 1.65rem);
}

.leakCard h3 strong {
  color: var(--gold-light);
  font-weight: inherit;
}

.leakCard p {
  min-height: 94px;
  margin-top: 13px;
  color: var(--muted);
  font-size: 0.94rem;
}

.signal {
  display: flex;
  align-items: center;
  gap: 9px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--green);
  font-family: var(--font-mono), monospace;
  font-size: 0.66rem;
  text-transform: uppercase;
}

.sectionStatement {
  max-width: 29ch;
  margin-top: 38px;
  font-family: var(--font-display), Arial, sans-serif;
  font-size: clamp(1.55rem, 2.5vw, 2.15rem);
  font-weight: 700;
  line-height: 1.15;
}

.sectionStatement span {
  color: var(--gold);
}

.sectionAction {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.sectionAction .buttonNote {
  margin: 0;
}

.processAction {
  grid-column: 1 / -1;
  margin-top: 8px;
}

.process {
  border-block: 1px solid var(--line);
  background:
    linear-gradient(105deg, rgba(79, 155, 255, 0.07), transparent 40%),
    rgba(10, 30, 48, 0.4);
}

.processGrid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(500px, 1fr);
  gap: clamp(60px, 9vw, 125px);
}

.processIntro {
  align-self: start;
  position: sticky;
  top: 128px;
}

.processIntro h2 {
  max-width: 10ch;
}

.processIntro > p,
.scoreCopy > p,
.centeredIntro > p,
.faqIntro > p {
  margin-top: 22px;
  color: var(--muted);
  font-size: 1.05rem;
}

.textLink {
  display: inline-flex;
  gap: 9px;
  margin-top: 28px;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(118, 224, 239, 0.45);
  color: var(--cyan);
  font-weight: 600;
}

.processList {
  display: grid;
  gap: 14px;
}

.processItem {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 23px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.026);
}

.processItem > span {
  color: var(--gold);
  font-family: var(--font-mono), monospace;
  font-size: 0.76rem;
}

.processItem h3 {
  font-size: 1.45rem;
}

.processItem p {
  margin-top: 10px;
  color: var(--muted);
}

.scoreSection {
  overflow: hidden;
}

.scoreGrid {
  display: grid;
  grid-template-columns: minmax(410px, 0.9fr) minmax(0, 0.78fr);
  align-items: center;
  gap: clamp(60px, 10vw, 130px);
}

.scoreMockup {
  padding: 22px;
  border: 1px solid rgba(118, 224, 239, 0.2);
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 30%, rgba(79, 155, 255, 0.16), transparent 45%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.012));
  box-shadow: 0 42px 110px -58px rgba(79, 155, 255, 0.8);
}

.scoreToolbar {
  display: flex;
  justify-content: space-between;
  padding: 5px 3px 20px;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-mono), monospace;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.twoMinute {
  color: var(--gold);
}

.scoreDial {
  display: grid;
  place-content: center;
  width: 230px;
  height: 230px;
  margin: 35px auto;
  border: 18px solid rgba(79, 155, 255, 0.13);
  border-top-color: var(--cyan);
  border-right-color: var(--blue);
  border-radius: 50%;
  transform: rotate(18deg);
}

.scoreDial > div {
  display: grid;
  justify-items: center;
  transform: rotate(-18deg);
}

.scoreDial span,
.scoreDial small {
  color: var(--dim);
}

.scoreDial span {
  font-family: var(--font-mono), monospace;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scoreDial strong {
  font-family: var(--font-display), Arial, sans-serif;
  font-size: 5rem;
  line-height: 0.9;
}

.scoreDial small {
  margin-top: 7px;
  font-size: 0.65rem;
}

.scoreRows {
  display: grid;
  gap: 9px;
}

.scoreRows div {
  display: grid;
  grid-template-columns: 1fr 40%;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 11px;
  color: var(--muted);
  font-size: 0.82rem;
}

.scoreRows i {
  height: 7px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--cyan) 0 62%, rgba(255, 255, 255, 0.08) 62%);
}

.scoreRows div:nth-child(2) i {
  background: linear-gradient(90deg, var(--gold) 0 40%, rgba(255, 255, 255, 0.08) 40%);
}

.scoreRows div:nth-child(3) i {
  background: linear-gradient(90deg, var(--blue) 0 52%, rgba(255, 255, 255, 0.08) 52%);
}

.scoreCopy h2 {
  max-width: 10ch;
}

.scoreCopy ul {
  display: grid;
  gap: 11px;
  margin: 27px 0 30px;
  padding: 0;
  list-style: none;
}

.scoreCopy li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
}

.scoreCopy li::before {
  display: grid;
  flex: none;
  place-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  content: "✓";
  color: var(--green);
  background: rgba(97, 221, 168, 0.08);
  font-size: 0.72rem;
}

.buttonNote {
  display: block;
  margin-top: 13px;
  color: var(--dim);
  font-size: 0.76rem;
}

.offers {
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 78% 15%, rgba(118, 224, 239, 0.08), transparent 32%),
    rgba(5, 18, 30, 0.72);
}

.offerGrid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 50px;
}

.offerCard {
  display: flex;
  min-height: 315px;
  flex-direction: column;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.025);
}

.offerCardFeatured {
  border-color: rgba(118, 224, 239, 0.48);
  background: linear-gradient(150deg, rgba(118, 224, 239, 0.11), rgba(79, 155, 255, 0.05));
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.18);
}

.offerCard > span {
  min-height: 32px;
  color: var(--cyan);
  font-family: var(--font-mono), monospace;
  font-size: 0.66rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.offerCard h3 {
  min-height: 54px;
  margin-top: 17px;
  font-size: 1.23rem;
}

.offerPrice {
  margin-top: 22px;
  color: var(--text);
  font-family: var(--font-display), Arial, sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
}

.offerPrice small {
  color: var(--dim);
  font-family: var(--font-body), Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
}

.offerCard p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.9rem;
}

.offerRule {
  max-width: 900px;
  margin: 30px auto 0;
  color: var(--muted);
  text-align: center;
}

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

.offerAction {
  margin-top: 24px;
  text-align: center;
}

.why {
  border-block: 1px solid var(--line);
  background: rgba(10, 30, 48, 0.33);
}

.centeredIntro {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.centeredIntro h2 {
  max-width: 15ch;
  margin-inline: auto;
}

.safeguardGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 54px;
}

.safeguardCard {
  padding: 29px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.022);
}

.safeguardCard > span {
  color: var(--cyan);
  font-family: var(--font-mono), monospace;
  font-size: 0.67rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.safeguardCard h3 {
  margin-top: 22px;
}

.safeguardCard p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.93rem;
}

.founderPanel {
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr) auto;
  align-items: center;
  gap: 34px;
  margin-top: 70px;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid rgba(79, 155, 255, 0.25);
  border-radius: 26px;
  background: linear-gradient(120deg, rgba(79, 155, 255, 0.1), rgba(255, 255, 255, 0.02));
}

.founderMonogram {
  display: grid;
  place-content: center;
  width: 92px;
  height: 92px;
  border: 1px solid rgba(118, 224, 239, 0.28);
  border-radius: 50%;
  color: var(--cyan);
  background: rgba(118, 224, 239, 0.06);
  font-family: var(--font-display), Arial, sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
}

.founderCopy h2 {
  max-width: 18ch;
  font-size: clamp(1.9rem, 3vw, 2.75rem);
}

.founderCopy .headingAccent {
  margin-bottom: 16px;
}

.founderCopy > p {
  max-width: 68ch;
  margin-top: 16px;
  color: var(--muted);
}

.founderLink {
  display: grid;
  min-width: 180px;
}

.founderLink span {
  color: var(--dim);
  font-size: 0.83rem;
}

.founderLink a {
  margin-top: 20px;
  color: var(--cyan);
  font-size: 0.86rem;
  font-weight: 600;
}

.auditReadiness {
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 15% 20%, rgba(79, 155, 255, 0.13), transparent 34%),
    linear-gradient(115deg, rgba(10, 30, 48, 0.7), rgba(4, 16, 27, 0.94));
}

.auditShell {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(480px, 0.85fr);
  align-items: start;
  gap: clamp(54px, 8vw, 110px);
}

.auditIntro h2 {
  max-width: 12ch;
}

.auditIntro > p {
  max-width: 60ch;
  margin-top: 24px;
  color: var(--muted);
  font-size: 1.05rem;
}

.auditOutcomes {
  display: grid;
  gap: 0;
  margin-top: 36px;
  border-top: 1px solid var(--line);
}

.auditOutcomes > div {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.auditOutcomes span {
  padding-top: 3px;
  color: var(--cyan);
  font-family: var(--font-mono), monospace;
  font-size: 0.7rem;
}

.auditOutcomes p {
  color: var(--muted);
  font-size: 0.92rem;
}

.auditOutcomes strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
  font-family: var(--font-display), Arial, sans-serif;
  font-size: 1.05rem;
}

.auditQualification {
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid rgba(255, 182, 66, 0.34);
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(255, 182, 66, 0.09), rgba(255, 255, 255, 0.02) 48%),
    rgba(7, 23, 37, 0.82);
  box-shadow:
    0 38px 90px -58px rgba(255, 182, 66, 0.75),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.auditQualification h3 {
  font-size: 1.55rem;
}

.auditQualification ul {
  display: grid;
  gap: 13px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.auditQualification li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  color: var(--muted);
}

.auditQualification li::before {
  display: grid;
  place-content: center;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  border-radius: 50%;
  content: "✓";
  color: var(--green);
  background: rgba(97, 221, 168, 0.09);
  font-size: 0.72rem;
  font-weight: 700;
}

.auditNotFit {
  padding: 17px 18px;
  border-left: 3px solid rgba(255, 182, 66, 0.72);
  border-radius: 0 11px 11px 0;
  color: var(--dim);
  background: rgba(255, 182, 66, 0.055);
  font-size: 0.87rem;
}

.auditNotFit strong {
  color: var(--gold-light);
}

.auditMeta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 25px 0 18px;
}

.auditMeta span {
  padding: 7px 10px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--muted);
  font-family: var(--font-mono), monospace;
  font-size: 0.64rem;
  text-transform: uppercase;
}

.auditBookingButton {
  width: 100%;
}

.auditQuizLink {
  display: block;
  margin-top: 18px;
  color: var(--cyan);
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
}

.auditRespect {
  max-width: 47ch;
  margin: 17px auto 0;
  color: var(--dim);
  text-align: center;
  font-size: 0.76rem;
}

.faqGrid {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(500px, 1fr);
  gap: clamp(55px, 9vw, 120px);
}

.faqIntro h2 {
  max-width: 11ch;
}

.faqList {
  border-top: 1px solid var(--line);
}

.faqList details {
  border-bottom: 1px solid var(--line);
}

.faqList summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 23px 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display), Arial, sans-serif;
  font-size: 1.14rem;
  font-weight: 700;
}

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

.faqList summary span {
  color: var(--cyan);
  font-family: var(--font-body), Arial, sans-serif;
  font-size: 1.45rem;
  font-weight: 400;
  transition: transform 180ms ease;
}

.faqList details[open] summary span {
  transform: rotate(45deg);
}

.faqList details p {
  max-width: 65ch;
  padding: 0 48px 24px 0;
  color: var(--muted);
}

.closing {
  padding-top: 0;
}

.closingPanel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 60px;
  overflow: hidden;
  padding: clamp(38px, 6vw, 70px);
  border: 1px solid rgba(142, 196, 255, 0.28);
  border-radius: 30px;
  background:
    radial-gradient(circle at 85% 20%, rgba(118, 224, 239, 0.16), transparent 32%),
    linear-gradient(130deg, #347bc4, #173f68 62%, #102d49);
  box-shadow: 0 45px 110px -60px rgba(79, 155, 255, 0.85);
}

.closingPanel h2 {
  max-width: 12ch;
}

.closingPanel p {
  max-width: 57ch;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.84);
}

.closingActions {
  display: grid;
  min-width: 310px;
  gap: 12px;
}

.closingActions > span {
  color: rgba(255, 255, 255, 0.68);
  text-align: center;
  font-size: 0.76rem;
}

footer {
  padding: 62px 0 28px;
  border-top: 1px solid var(--line);
  background: rgba(2, 12, 21, 0.55);
}

.footerGrid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: clamp(45px, 8vw, 110px);
}

.footerBrand img {
  width: 145px;
}

.footerGrid > div:first-child p {
  max-width: 38ch;
  margin-top: 15px;
  color: var(--dim);
  font-size: 0.88rem;
}

.footerLinks {
  display: grid;
  align-content: start;
  gap: 10px;
  color: var(--muted);
  font-size: 0.87rem;
}

.footerLinks > span {
  margin-bottom: 4px;
  color: var(--dim);
  font-family: var(--font-mono), monospace;
  font-size: 0.64rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footerLinks p {
  color: var(--dim);
}

.legalBar {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 46px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--dim);
  font-size: 0.72rem;
}

.legalBar span:last-child {
  display: flex;
  gap: 8px;
}

.legalBar i {
  font-style: normal;
}

@media (max-width: 1000px) {
  .desktopNav,
  .navCta {
    display: none;
  }

  .navBar {
    grid-template-columns: 1fr auto;
  }

  .mobileNav {
    display: block;
  }

  .heroGrid,
  .scoreGrid {
    grid-template-columns: 1fr;
  }

  .heroCopy {
    max-width: 720px;
  }

  .flowPanel {
    width: min(100%, 680px);
  }

  .industryRail {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    gap: 10px;
    overflow: visible;
  }

  .industryRail > span {
    grid-column: 1 / -1;
    margin-bottom: 4px;
  }

  .industryRail a {
    display: flex;
    align-items: center;
    min-height: 52px;
    padding: 10px 14px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.035);
    color: var(--muted);
    line-height: 1.25;
  }

  .industryRail a:hover {
    border-color: rgba(118, 224, 239, 0.42);
    background: rgba(118, 224, 239, 0.07);
  }

  .splitIntro,
  .processGrid,
  .auditShell,
  .faqGrid {
    grid-template-columns: 1fr;
  }

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

  .splitIntro {
    align-items: start;
  }

  .introCopy {
    max-width: 700px;
  }

  .processIntro {
    position: static;
  }

  .processIntro h2,
  .faqIntro h2 {
    max-width: 14ch;
  }

  .scoreMockup {
    width: min(100%, 560px);
  }

  .scoreCopy {
    max-width: 640px;
  }

  .auditIntro {
    max-width: 700px;
  }

  .auditQualification {
    width: min(100%, 680px);
  }

  .founderPanel {
    grid-template-columns: 90px 1fr;
  }

  .founderLink {
    grid-column: 2;
  }

  .closingPanel {
    grid-template-columns: 1fr;
  }

  .samplePanel {
    grid-template-columns: 1fr auto;
  }

  .samplePlaceholder {
    grid-column: 1 / -1;
  }

  .closingActions {
    width: min(100%, 390px);
  }
}

@media (max-width: 760px) {
  .shell {
    width: min(calc(100% - 32px), var(--shell));
  }

  .section {
    padding-block: 82px;
  }

  .hero {
    padding-top: 58px;
  }

  h1 {
    font-size: clamp(2.75rem, 13vw, 4.1rem);
  }

  h2 {
    font-size: clamp(2.15rem, 10.5vw, 3.15rem);
  }

  .heroLead {
    margin-top: 23px;
  }

  .heroActions,
  .heroActions .button {
    width: 100%;
  }

  .sampleSection {
    padding-bottom: 30px;
  }

  .samplePanel {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .samplePlaceholder {
    grid-column: auto;
  }

  .samplePanel .button {
    width: 100%;
  }

  .flowPanel {
    padding: 20px;
    border-radius: 22px;
  }

  .flowHeader {
    align-items: center;
  }

  .flowHeader h2 {
    font-size: 1.12rem;
  }

  .flowStep {
    grid-template-columns: 38px 1fr;
  }

  .flowState {
    display: none;
  }

  .leakGrid,
  .safeguardGrid {
    grid-template-columns: 1fr;
  }

  .leakCard p {
    min-height: 0;
  }

  .processItem {
    grid-template-columns: 42px 1fr;
    padding: 24px;
  }

  .offerGrid {
    grid-template-columns: 1fr;
  }

  .offerCard {
    min-height: 0;
  }

  .offerCard h3,
  .offerCard > span {
    min-height: 0;
  }

  .scoreMockup {
    padding: 18px;
  }

  .scoreDial {
    width: 205px;
    height: 205px;
  }

  .founderPanel {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .founderMonogram {
    width: 76px;
    height: 76px;
  }

  .founderLink {
    grid-column: auto;
  }

  .auditQualification {
    padding: 26px 22px;
    border-radius: 22px;
  }

  .auditBookingButton {
    padding-inline: 18px;
  }

  .faqList summary {
    font-size: 1.04rem;
  }

  .faqList details p {
    padding-right: 0;
  }

  .closingPanel {
    gap: 34px;
    padding: 34px 24px;
    border-radius: 24px;
  }

  .closingActions,
  .closingActions .button {
    width: 100%;
    min-width: 0;
  }

  .callDemoModal {
    align-items: end;
    padding: 0;
  }

  .callDemoDialog {
    width: 100%;
    max-height: min(780px, calc(100vh - 16px));
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: 24px 24px 0 0;
  }

  .callDemoActions,
  .callDemoActions .button {
    width: 100%;
  }

  .footerGrid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .legalBar {
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .shell {
    width: min(calc(100% - 28px), var(--shell));
  }

  .brand img {
    width: 143px;
  }

  .buttonLarge {
    padding-inline: 18px;
    font-size: 0.93rem;
  }

  .livePill {
    display: none;
  }

  .flowHeader {
    display: block;
  }

  .scoreDial {
    width: 185px;
    height: 185px;
    border-width: 15px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
