@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("assets/fonts/inter-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 700 800;
  font-display: swap;
  src: url("assets/fonts/manrope-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  color-scheme: light;
  --navy: #12263a;
  --navy-2: #0b1a2a;
  --blue: #2f5dff;
  --blue-2: #2046d8;
  --orange: #f97316;
  --green: #16a34a;
  --fog: #f8fafc;
  --fog-2: #eef3f8;
  --anthracite: #1f2937;
  --slate: #465467;
  --line: rgba(18, 38, 58, 0.12);
  --line-strong: rgba(18, 38, 58, 0.2);
  --white: #ffffff;
  --shadow-soft: 0 18px 52px rgba(18, 38, 58, 0.11);
  --shadow-tight: 0 10px 24px rgba(18, 38, 58, 0.12);
  --container: 1280px;
  --header-h: 76px;
  --radius: 8px;
  --scroll-progress: 0%;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--fog);
  color: var(--navy);
  font-family: Inter, "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 17px;
  line-height: 1.62;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
summary {
  cursor: pointer;
  touch-action: manipulation;
}

::selection {
  background: rgba(47, 93, 255, 0.18);
  color: var(--navy);
}

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

main > section,
.site-footer {
  width: 100%;
}

.hero,
.concept-bridge,
.section {
  inline-size: 100%;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 14px;
  z-index: 120;
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--navy);
  font-weight: 800;
  box-shadow: var(--shadow-tight);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: var(--scroll-progress);
  height: 3px;
  background: var(--blue);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-inline: max(24px, calc((100vw - var(--container)) / 2));
  border-bottom: 1px solid rgba(18, 38, 58, 0.08);
  background: rgba(248, 250, 252, 0.86);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px);
  transition: height 200ms ease, background 200ms ease, box-shadow 200ms ease;
}

.site-header.is-scrolled,
.site-header.solid {
  height: 66px;
  background: rgba(248, 250, 252, 0.96);
  box-shadow: 0 14px 32px rgba(18, 38, 58, 0.1);
}

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

.brand img {
  width: 286px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 13px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  color: rgba(18, 38, 58, 0.76);
  font-size: 0.92rem;
  font-weight: 800;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--navy);
  border-color: rgba(47, 93, 255, 0.2);
  background: rgba(47, 93, 255, 0.08);
  outline: none;
}

.site-nav a:active,
.button:active,
.choice-field label:active {
  transform: translateY(1px) scale(0.99);
}

.site-nav .nav-cta {
  margin-left: 4px;
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  color: var(--white);
  background: var(--blue-2);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(18, 38, 58, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--navy);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: calc(100dvh - 48px);
  padding-top: var(--header-h);
  overflow: hidden;
  background: linear-gradient(90deg, #f8fafc 0%, #f8fafc 50%, #e9eef6 50%, #e9eef6 100%);
}

.hero-media {
  position: absolute;
  top: var(--header-h);
  right: 0;
  bottom: 0;
  left: 50vw;
  width: 50vw;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(248, 250, 252, 0.2) 0%, rgba(248, 250, 252, 0.04) 20%, rgba(248, 250, 252, 0) 42%),
    linear-gradient(0deg, rgba(18, 38, 58, 0.18), rgba(18, 38, 58, 0.02) 46%);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 50%;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(390px, 0.58fr);
  gap: 64px;
  align-items: end;
  min-height: calc(100dvh - var(--header-h) - 48px);
  padding-block: 70px 48px;
}

.hero-copy {
  max-width: 640px;
  padding-bottom: 24px;
}

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

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

h1,
h2,
h3 {
  font-family: Manrope, Inter, "Segoe UI", system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.03;
  text-wrap: balance;
}

h1 {
  max-width: 640px;
  margin-bottom: 24px;
  color: var(--navy);
  font-size: clamp(3rem, 5.6vw, 5.35rem);
}

h2 {
  margin-bottom: 20px;
  color: var(--navy);
  font-size: clamp(2.15rem, 4.2vw, 4.2rem);
}

h3 {
  margin-bottom: 12px;
  font-size: 1.22rem;
}

.hero-lead,
.section-heading p,
.section-copy p,
.reveal-copy p,
.method-copy p,
.contact-copy p,
.problem-text p {
  max-width: 65ch;
  color: var(--slate);
}

.hero-lead {
  max-width: 56ch;
  margin-bottom: 30px;
  font-size: 1.16rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.2;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.button svg,
.site-nav svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: square;
  stroke-linejoin: miter;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.button-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 14px 28px rgba(47, 93, 255, 0.24);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--blue-2);
}

.button-secondary {
  color: var(--navy);
  border-color: rgba(18, 38, 58, 0.14);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(47, 93, 255, 0.28);
  background: var(--white);
}

.hero-proofline {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.hero-proofline span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(18, 38, 58, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
  color: rgba(18, 38, 58, 0.76);
  font-size: 0.9rem;
  font-weight: 800;
}

.hero-funnel {
  align-self: center;
  justify-self: end;
  width: min(100%, 440px);
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
}

.funnel-head {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  margin-bottom: 20px;
  padding: 0 12px;
  border-radius: var(--radius);
  color: var(--green);
  background: rgba(22, 163, 74, 0.1);
  font-size: 0.88rem;
  font-weight: 800;
}

.hero-funnel h2 {
  margin-bottom: 12px;
  font-size: clamp(1.72rem, 2.4vw, 2.25rem);
}

.hero-funnel p {
  margin-bottom: 18px;
  color: var(--slate);
  font-size: 0.96rem;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.28);
  animation: statusPulse 2.4s ease-out infinite;
}

.funnel-form {
  display: grid;
  gap: 14px;
}

.funnel-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin: 0;
  padding: 0;
  border: 0;
}

.funnel-options legend {
  margin-bottom: 2px;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.funnel-options label {
  position: relative;
}

.funnel-options input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.funnel-options span {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid rgba(18, 38, 58, 0.1);
  border-radius: var(--radius);
  background: rgba(248, 250, 252, 0.82);
  color: var(--navy);
  font-weight: 800;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease, transform 160ms ease;
}

.funnel-options span svg,
.icon-mark svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: square;
  stroke-linejoin: miter;
}

.funnel-options span svg {
  flex: 0 0 auto;
  color: var(--blue);
}

.funnel-options input:checked + span {
  border-color: rgba(47, 93, 255, 0.56);
  background: rgba(47, 93, 255, 0.1);
}

.funnel-options input:focus-visible + span {
  outline: 3px solid rgba(47, 93, 255, 0.22);
  outline-offset: 2px;
}

.funnel-options label:active span {
  transform: translateY(1px) scale(0.99);
}

.funnel-inline {
  display: grid;
  grid-template-columns: minmax(108px, 0.46fr) minmax(0, 1fr);
  gap: 10px;
  align-items: end;
}

.funnel-inline label {
  display: grid;
  gap: 6px;
  color: var(--navy);
  font-size: 0.84rem;
  font-weight: 800;
}

.funnel-inline input {
  min-height: 52px;
  border-color: rgba(18, 38, 58, 0.16);
  background: var(--white);
  color: var(--navy);
}

.funnel-inline input::placeholder {
  color: rgba(18, 38, 58, 0.42);
}

.funnel-inline input:focus {
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(47, 93, 255, 0.18);
}

.funnel-submit {
  min-height: 52px;
  padding-inline: 16px;
  white-space: nowrap;
}

.funnel-note {
  margin: 0;
  color: rgba(18, 38, 58, 0.66);
  font-size: 0.82rem;
  font-weight: 700;
}

.concept-bridge {
  padding: 34px 0;
  border-block: 1px solid rgba(18, 38, 58, 0.08);
  background: var(--navy);
  color: var(--fog);
}

.bridge-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.54fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.bridge-copy .eyebrow {
  margin-bottom: 10px;
  color: #9db5ff;
}

.bridge-copy h2 {
  max-width: 430px;
  margin-bottom: 0;
  color: var(--fog);
  font-size: clamp(1.65rem, 2.4vw, 2.35rem);
}

.bridge-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.bridge-steps article {
  min-height: 150px;
  padding: 18px;
  border: 1px solid rgba(248, 250, 252, 0.14);
  border-radius: var(--radius);
  background: rgba(248, 250, 252, 0.06);
  box-shadow: inset 0 1px 0 rgba(248, 250, 252, 0.08);
}

.bridge-steps span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--orange);
  font-family: Manrope, Inter, sans-serif;
  font-weight: 800;
}

.bridge-steps strong {
  display: block;
  margin-bottom: 8px;
  color: var(--fog);
  font-family: Manrope, Inter, sans-serif;
  font-size: 1.02rem;
  line-height: 1.18;
}

.bridge-steps p {
  margin: 0;
  color: rgba(248, 250, 252, 0.7);
  font-size: 0.9rem;
  line-height: 1.5;
}

.section {
  padding: 112px 0;
}

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

.compact-heading {
  max-width: 900px;
}

.split-layout,
.reveal-layout,
.method-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 72px;
  align-items: start;
}

.problem-section {
  background: linear-gradient(180deg, var(--fog) 0%, #ffffff 100%);
}

.problem-text {
  display: grid;
  gap: 18px;
  padding-top: 14px;
}

.problem-text p {
  margin-bottom: 0;
  font-size: 1.08rem;
}

.pain-section {
  background:
    linear-gradient(180deg, rgba(18, 38, 58, 0.98), rgba(11, 26, 42, 0.98)),
    var(--navy);
  color: var(--fog);
}

.pain-section h2,
.pain-section .eyebrow {
  color: var(--fog);
}

.pain-section .eyebrow {
  color: #9db5ff;
}

.pain-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr 1fr;
  gap: 18px;
}

.pain-card {
  position: relative;
  display: grid;
  align-content: start;
  min-height: 270px;
  padding: 28px;
  border: 1px solid rgba(248, 250, 252, 0.13);
  border-radius: var(--radius);
  background: rgba(248, 250, 252, 0.06);
  box-shadow: inset 0 1px 0 rgba(248, 250, 252, 0.08);
}

.pain-card-large {
  background:
    radial-gradient(circle at 12% 0%, rgba(47, 93, 255, 0.15), transparent 32%),
    linear-gradient(180deg, rgba(47, 93, 255, 0.08), rgba(248, 250, 252, 0.05)),
    rgba(248, 250, 252, 0.06);
}

.card-index,
.method-steps span,
.flow-grid span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--orange);
  font-family: Manrope, Inter, sans-serif;
  font-weight: 800;
}

.pain-card h3,
.pain-card p {
  color: var(--fog);
}

.pain-card p {
  margin-bottom: 0;
  color: rgba(248, 250, 252, 0.72);
}

.reveal-section {
  background: #ffffff;
}

.reveal-layout {
  align-items: center;
}

.planning-media,
.proof-media {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--fog-2);
  box-shadow: var(--shadow-soft);
}

.planning-media img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.reveal-copy p {
  margin-bottom: 26px;
}

.comparison {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}

.comparison-head,
.comparison-row {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
}

.comparison-head {
  background: var(--navy);
  color: var(--fog);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.comparison-head span,
.comparison-row span,
.comparison-row strong {
  padding: 15px 16px;
}

.comparison-head span:first-child,
.comparison-row span {
  border-right: 1px solid rgba(18, 38, 58, 0.12);
}

.comparison-row + .comparison-row {
  border-top: 1px solid var(--line);
}

.comparison-row span {
  color: var(--slate);
}

.comparison-row strong {
  color: var(--navy);
  font-weight: 800;
}

.protection-section {
  background: linear-gradient(180deg, #f5f8fc 0%, var(--fog) 100%);
}

.protection-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.86fr 0.94fr;
  gap: 18px;
}

.protection-card,
.method-steps article,
.flow-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 16px 42px rgba(18, 38, 58, 0.08);
}

.protection-card {
  min-height: 245px;
  padding: 26px;
  transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1), border-color 220ms ease, box-shadow 220ms ease;
}

.protection-card:hover {
  transform: translateY(-4px);
  border-color: rgba(47, 93, 255, 0.24);
  box-shadow: 0 22px 58px rgba(18, 38, 58, 0.11);
}

.protection-card-wide {
  min-height: 245px;
}

.protection-card-tall {
  grid-column: span 2;
}

.protection-card-dark {
  background: var(--navy);
  color: var(--fog);
  border-color: rgba(18, 38, 58, 0.02);
}

.protection-card-dark h3,
.protection-card-dark p {
  color: var(--fog);
}

.protection-card p,
.method-steps p,
.flow-grid p {
  margin-bottom: 0;
  color: var(--slate);
}

.icon-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 26px;
  border: 1px solid rgba(47, 93, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(47, 93, 255, 0.08);
  color: var(--blue);
}

.protection-card-dark .icon-mark {
  border-color: rgba(248, 250, 252, 0.18);
  background: rgba(248, 250, 252, 0.08);
  color: #9db5ff;
}

.method-section {
  background: var(--white);
}

.method-layout {
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  align-items: start;
}

.method-copy {
  position: sticky;
  top: calc(var(--header-h) + 34px);
}

.method-steps {
  display: grid;
  gap: 14px;
}

.method-steps article {
  min-height: 168px;
  padding: 24px 26px;
  transition: transform 220ms ease, border-color 220ms ease;
}

.method-steps article:nth-child(even) {
  transform: translateX(34px);
}

.method-steps article:hover {
  border-color: rgba(47, 93, 255, 0.24);
}

.proof-section {
  background: linear-gradient(180deg, var(--fog) 0%, #eef3f8 100%);
}

.proof-grid {
  display: grid;
  grid-template-columns: 1.16fr 0.84fr;
  gap: 18px;
  align-items: stretch;
}

.proof-media img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.proof-media-large img {
  min-height: 520px;
}

.proof-media figcaption {
  padding: 16px 18px;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
  color: var(--navy);
  font-weight: 800;
}

.flow-section {
  background: var(--white);
}

.flow-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr 1.12fr 0.98fr;
  gap: 16px;
}

.flow-grid article {
  min-height: 260px;
  padding: 24px;
}

.flow-grid article:nth-child(2),
.flow-grid article:nth-child(4) {
  transform: translateY(28px);
}

.contact-section {
  background:
    linear-gradient(135deg, rgba(47, 93, 255, 0.12) 0%, rgba(47, 93, 255, 0) 36%),
    linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%);
  color: var(--fog);
}

.contact-layout {
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 0.95fr);
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: calc(var(--header-h) + 34px);
}

.contact-copy h2,
.contact-copy p {
  color: var(--fog);
}

.contact-copy p {
  color: rgba(248, 250, 252, 0.74);
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: 26px;
  border: 1px solid rgba(248, 250, 252, 0.18);
  border-radius: var(--radius);
  background: rgba(248, 250, 252, 0.08);
  box-shadow: 0 24px 62px rgba(8, 20, 34, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

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

.field {
  display: grid;
  gap: 7px;
}

.field label,
.choice-field legend {
  color: rgba(248, 250, 252, 0.94);
  font-size: 0.92rem;
  font-weight: 800;
}

.field small {
  color: rgba(248, 250, 252, 0.62);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.45;
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(248, 250, 252, 0.18);
  border-radius: var(--radius);
  background: rgba(8, 20, 34, 0.54);
  color: var(--white);
  padding: 12px 13px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

textarea {
  min-height: 136px;
  resize: vertical;
}

select {
  color-scheme: dark;
}

input::placeholder,
textarea::placeholder {
  color: rgba(248, 250, 252, 0.42);
}

input:focus,
select:focus,
textarea:focus {
  border-color: #9db5ff;
  background: rgba(8, 20, 34, 0.72);
  box-shadow: 0 0 0 3px rgba(47, 93, 255, 0.24);
}

.field.is-invalid input,
.field.is-invalid select,
.field.is-invalid textarea {
  border-color: #ffb07a;
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.18);
}

.field-error {
  min-height: 18px;
  margin: 0;
  color: #ffbf91;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.35;
}

.choice-field {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 9px;
  margin: 0;
  padding: 0;
  border: 0;
}

.choice-field legend {
  grid-column: 1 / -1;
  margin-bottom: 2px;
}

.choice-field label {
  position: relative;
  min-height: 48px;
  border-radius: var(--radius);
}

.choice-field input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice-field span {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 48px;
  padding: 0 10px;
  border: 1px solid rgba(248, 250, 252, 0.16);
  border-radius: var(--radius);
  color: rgba(248, 250, 252, 0.76);
  background: rgba(248, 250, 252, 0.06);
  font-size: 0.84rem;
  font-weight: 800;
  text-align: center;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.choice-field input:checked + span {
  color: var(--white);
  border-color: rgba(47, 93, 255, 0.7);
  background: rgba(47, 93, 255, 0.28);
}

.choice-field input:focus-visible + span {
  outline: 3px solid rgba(157, 181, 255, 0.34);
  outline-offset: 2px;
}

.checkbox-line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-height: 44px;
  color: rgba(248, 250, 252, 0.78);
  font-size: 0.9rem;
  font-weight: 650;
}

.checkbox-line input {
  width: 19px;
  min-width: 19px;
  height: 19px;
  min-height: 19px;
  margin-top: 4px;
  accent-color: var(--blue);
}

.consent-error {
  margin-top: -12px;
}

.form-submit {
  width: 100%;
  border: 0;
}

.form-submit[disabled] {
  cursor: progress;
  opacity: 0.72;
}

.form-submit.is-loading svg {
  animation: arrowPulse 700ms ease-in-out infinite alternate;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: #9fd3b2;
  font-weight: 800;
}

.form-status.is-error {
  color: #ffbf91;
}

.trust-note {
  margin: 0;
  padding-top: 2px;
  color: rgba(248, 250, 252, 0.62);
  font-size: 0.82rem;
  font-weight: 650;
  line-height: 1.45;
}

.site-footer {
  padding: 36px 0;
  border-top: 1px solid var(--line);
  background: var(--white);
  color: var(--slate);
}

.footer-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
}

.footer-brand img {
  width: 220px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--blue);
  outline: none;
}

.footer-grid p {
  margin: 0;
  font-size: 0.9rem;
}

.has-js [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 520ms ease, transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

.has-js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.legal-page {
  background: var(--fog);
}

.legal-main {
  padding: calc(var(--header-h) + 72px) 0 90px;
}

.legal-content {
  max-width: 860px;
}

.legal-content h1 {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
}

.legal-content section {
  padding: 26px 0;
  border-top: 1px solid var(--line);
}

.legal-content h2 {
  margin-bottom: 10px;
  font-size: 1.35rem;
}

.legal-content p {
  color: var(--slate);
}

.legal-content a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-note {
  padding: 16px 18px;
  border-left: 4px solid var(--blue);
  background: rgba(47, 93, 255, 0.08);
}

@keyframes statusPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.28);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(22, 163, 74, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(22, 163, 74, 0);
  }
}

@keyframes arrowPulse {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(4px);
  }
}

@media (max-width: 1120px) {
  .brand img {
    width: 238px;
  }

  .site-nav {
    gap: 2px;
  }

  .site-nav a {
    padding-inline: 10px;
  }

  .hero {
    background: var(--fog);
  }

  .hero-media {
    position: relative;
    inset: auto;
    width: 100%;
    height: 420px;
  }

  .hero-grid,
  .split-layout,
  .reveal-layout,
  .method-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-funnel {
    justify-self: start;
    max-width: 560px;
  }

  .method-copy,
  .contact-copy {
    position: static;
  }

  .method-steps article:nth-child(even),
  .flow-grid article:nth-child(2),
  .flow-grid article:nth-child(4) {
    transform: none;
  }

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

  .protection-card-wide,
  .protection-card-tall {
    grid-row: auto;
    grid-column: auto;
    min-height: 245px;
  }

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

@media (max-width: 860px) {
  :root {
    --header-h: 68px;
  }

  body {
    font-size: 16px;
  }

  .container {
    width: min(100% - 28px, var(--container));
  }

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

  .brand img {
    width: 214px;
  }

  .nav-toggle {
    display: block;
    position: relative;
    z-index: 82;
  }

  .site-nav {
    position: fixed;
    inset: 0 0 auto;
    z-index: 81;
    display: grid;
    align-content: start;
    gap: 8px;
    min-height: 100dvh;
    padding: 96px 14px 28px;
    background: rgba(248, 250, 252, 0.98);
    transform: translateY(-100%);
    transition: transform 240ms ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
  }

  .site-nav a {
    width: 100%;
    min-height: 54px;
    justify-content: center;
    font-size: 1rem;
  }

  .site-nav .nav-cta {
    margin-left: 0;
  }

  .hero {
    min-height: auto;
    padding-top: var(--header-h);
  }

  .hero-media {
    position: relative;
    inset: auto;
    width: 100%;
    height: 360px;
    margin-top: 0;
    order: -1;
  }

  .hero-media::after {
    background:
      linear-gradient(180deg, rgba(248, 250, 252, 0.06), rgba(248, 250, 252, 0.94)),
      linear-gradient(0deg, rgba(18, 38, 58, 0.2), rgba(18, 38, 58, 0.02));
  }

  .hero-grid {
    min-height: auto;
    gap: 26px;
    padding-block: 38px 48px;
  }

  .hero-copy {
    padding-bottom: 0;
  }

  h1 {
    font-size: 2.65rem;
  }

  h2 {
    font-size: 2.12rem;
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-actions {
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .hero-proofline {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-proofline span {
    justify-content: center;
  }

  .hero-funnel {
    max-width: none;
    width: 100%;
  }

  .funnel-inline {
    grid-template-columns: 1fr;
  }

  .concept-bridge {
    padding: 26px 0;
  }

  .bridge-layout,
  .bridge-steps {
    grid-template-columns: 1fr;
  }

  .bridge-copy h2 {
    max-width: none;
  }

  .bridge-steps article {
    min-height: auto;
    padding: 15px 16px;
  }

  .bridge-steps span {
    margin-bottom: 10px;
  }

  .planning-media {
    height: clamp(230px, 58vw, 320px);
  }

  .planning-media img {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    object-fit: cover;
    object-position: 58% 42%;
  }

  .section {
    padding: 76px 0;
  }

  .section-heading {
    margin-bottom: 30px;
  }

  .pain-grid,
  .protection-grid,
  .proof-grid,
  .flow-grid,
  .form-grid,
  .choice-field {
    grid-template-columns: 1fr;
  }

  .pain-grid {
    grid-template-rows: auto;
  }

  .pain-card-large {
    min-height: auto;
  }

  .protection-card-wide {
    min-height: auto;
  }

  .comparison-head,
  .comparison-row {
    grid-template-columns: 1fr;
  }

  .comparison-head span:first-child,
  .comparison-row span {
    border-right: 0;
  }

  .comparison-row strong {
    border-top: 1px solid var(--line);
  }

  .proof-media img,
  .proof-media-large img {
    min-height: 320px;
  }

  .lead-form {
    padding: 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .footer-links {
    justify-content: start;
  }

  .legal-main {
    padding: calc(var(--header-h) + 48px) 0 70px;
  }
}

@media (max-width: 460px) {
  .brand img {
    width: 190px;
  }

  .hero-media {
    height: 310px;
  }

  h1 {
    font-size: 2.26rem;
  }

  h2 {
    font-size: 1.84rem;
  }

  .hero-proofline {
    grid-template-columns: 1fr;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .has-js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
