@font-face {
  font-family: "Inter";
  src: url("assets/fonts/inter-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("assets/fonts/inter-500.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("assets/fonts/inter-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("assets/fonts/inter-700.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("assets/fonts/inter-800.ttf") format("truetype");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}

@font-face {
  font-family: "Bodoni Moda";
  src: url("assets/fonts/bodoni-moda-italic-400.ttf") format("truetype");
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}

:root {
  color-scheme: light;
  --font-sans: "Inter", Arial, sans-serif;
  --font-editorial: "Bodoni Moda", Georgia, serif;

  --white: #f7faf8;
  --white-soft: rgba(247, 250, 248, 0.8);
  --white-muted: rgba(247, 250, 248, 0.62);
  --ink: #0b1d2d;
  --ink-soft: #3e5261;
  --paper: #f1f5f3;
  --paper-strong: #ffffff;
  --navy: #082b4c;
  --navy-deep: #061b30;
  --navy-soft: #0e426d;
  --line-light: rgba(255, 255, 255, 0.14);
  --line-dark: rgba(9, 36, 58, 0.12);
  --glass-top: rgba(84, 157, 210, 0.15);
  --glass-bottom: rgba(3, 49, 92, 0.22);
  --glass-panel: rgba(5, 43, 79, 0.18);
  --orange: #f2692e;
  --orange-bright: #f67a3f;
  --orange-dark: #d94d19;
  --green: #35c978;
  --green-dark: #1aa95c;
  --focus: #ffe3a3;
  --danger: #ffbea8;

  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --hero-action-gap: 16px;

  --radius-control: 17px;
  --radius-button: 18px;
  --radius-panel: 30px;
  --radius-sheet: 32px;
  --radius-round: 999px;

  --blur-nav: 28px;
  --blur-panel: 38px;
  --shadow-control: 0 7px 22px rgba(0, 35, 68, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.14), inset 0 -1px 0 rgba(2, 34, 65, 0.08);
  --shadow-panel: 0 18px 56px rgba(0, 23, 47, 0.17), inset 0 1px 0 rgba(255, 255, 255, 0.14);
  --shadow-orange: 0 9px 22px rgba(111, 38, 5, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  --shadow-orange-hover: 0 12px 28px rgba(111, 38, 5, 0.23), inset 0 1px 0 rgba(255, 255, 255, 0.24);
  --text-shadow: 0 1px 14px rgba(0, 47, 86, 0.16);

  --duration-fast: 160ms;
  --duration-standard: 260ms;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --layer-artwork: 0;
  --layer-content: 4;
  --layer-overlay: 50;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
}

html {
  background: #087bc2;
}

body {
  background: #087bc2;
  color: var(--white);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

button,
input {
  font: inherit;
}

button,
a,
input,
summary {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

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

button:not(:disabled),
summary {
  cursor: pointer;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.44;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

[hidden] {
  display: none !important;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.landing {
  position: relative;
  isolation: isolate;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
}

picture[data-artwork] {
  position: absolute;
  z-index: var(--layer-artwork);
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  user-select: none;
}

picture[data-artwork] > img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
  pointer-events: none;
  user-select: none;
}

.hero-contrast {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    radial-gradient(ellipse 44% 42% at 50% 25%, rgba(1, 69, 125, 0.18), transparent 74%),
    linear-gradient(180deg, rgba(0, 46, 91, 0.08), transparent 56%);
  pointer-events: none;
}

.site-header {
  position: absolute;
  z-index: var(--layer-content);
  top: max(22px, env(safe-area-inset-top));
  left: 50%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  column-gap: 30px;
  width: min(calc(100% - 64px), 1280px);
  height: 52px;
  transform: translateX(-50%);
}

.brand {
  justify-self: start;
  font-size: clamp(27px, 2vw, 31px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.06em;
  text-shadow: var(--text-shadow);
}

.brand span,
.flow-brand > span::first-letter {
  color: inherit;
}

.brand span {
  color: var(--orange);
}

.site-nav {
  display: flex;
  grid-column: 2;
  justify-self: end;
  align-items: center;
  gap: 28px;
}

.site-nav button,
.header-login {
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13.5px;
  font-weight: 550;
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition: opacity var(--duration-fast) var(--ease-out), color var(--duration-fast) var(--ease-out);
}

.site-nav button:hover,
.header-login:hover {
  color: var(--white);
  opacity: 0.92;
}

.header-login {
  grid-column: 3;
  justify-self: end;
  margin-left: 4px;
}

.site-header .menu-button {
  display: none;
  grid-column: 3;
  justify-self: end;
}

.icon-button,
.process-rail {
  border: 1px solid var(--line-light);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), transparent 48%),
    linear-gradient(145deg, var(--glass-top), var(--glass-bottom));
  box-shadow: var(--shadow-control);
  backdrop-filter: blur(var(--blur-nav)) saturate(112%);
  -webkit-backdrop-filter: blur(var(--blur-nav)) saturate(112%);
}

.icon-button {
  display: inline-grid;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  border-radius: 15px;
  transition:
    transform var(--duration-fast) var(--ease-out),
    border-color var(--duration-fast) var(--ease-out),
    background var(--duration-fast) var(--ease-out);
}

.icon-button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-button:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.3);
}

main {
  position: absolute;
  inset: 0;
}

.hero {
  position: absolute;
  z-index: var(--layer-content);
  top: clamp(88px, 10.4vh, 112px);
  left: 50%;
  display: flex;
  width: min(calc(100% - 40px), 980px);
  flex-direction: column;
  align-items: center;
  transform: translateX(-50%);
  text-align: center;
  pointer-events: none;
  transition:
    opacity var(--duration-standard) var(--ease-out),
    transform var(--duration-standard) var(--ease-out);
}

.hero > * {
  pointer-events: auto;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.01em;
  text-shadow: var(--text-shadow);
}

.hero-eyebrow__dot {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(53, 201, 120, 0.08);
}

.hero h1 {
  margin: 10px 0 0;
  color: var(--white);
  font-family: var(--font-ui);
  font-size: clamp(72px, 5.4vw, 82px);
  line-height: 0.95;
  letter-spacing: -0.06em;
  text-shadow: var(--text-shadow);
}

.hero__line {
  display: block;
  width: max-content;
  max-width: 100%;
  margin-inline: auto;
}

.hero__line--strong {
  font-weight: 700;
}

.hero__line--soft {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.hero__intro {
  max-width: 780px;
  margin: 14px 0 0;
  color: rgba(246, 250, 249, 0.82);
  font-size: clamp(17px, 1.2vw, 19px);
  font-weight: 400;
  line-height: 1.42;
  letter-spacing: -0.012em;
  text-shadow: var(--text-shadow);
  text-wrap: balance;
}
.hero__intro--mobile {
  display: none;
}

.primary-submit,
.checkout-action,
.next-step,
.secondary-cta {
  border: 0;
  font-weight: 650;
  transition:
    transform var(--duration-fast) var(--ease-out),
    box-shadow var(--duration-fast) var(--ease-out),
    background var(--duration-fast) var(--ease-out);
}

.activation-command {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  width: min(680px, calc(100vw - 32px));
  height: 66px;
  align-items: center;
  margin-top: 14px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 18px;
  background: rgba(250, 252, 251, 0.93);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition:
    border-color var(--duration-fast) var(--ease-out),
    background var(--duration-fast) var(--ease-out);
}

.activation-command:focus-within {
  border-color: var(--focus);
  background: rgba(255, 255, 255, 0.97);
}

.activation-command input {
  width: 100%;
  min-width: 0;
  height: 52px;
  padding: 0 18px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  letter-spacing: -0.01em;
}

.activation-command input::placeholder {
  color: rgba(30, 53, 69, 0.58);
}

.activation-command input[aria-invalid="true"]::placeholder {
  color: #a5482c;
}

.command-submit {
  display: inline-flex;
  height: 52px;
  align-items: center;
  gap: 12px;
  padding: 0 18px 0 20px;
  border: 0;
  border-radius: 13px;
  background: var(--orange);
  color: var(--white);
  font-size: 14px;
  font-weight: 650;
  white-space: nowrap;
  transition:
    background var(--duration-fast) var(--ease-out),
    transform var(--duration-fast) var(--ease-out);
}

.command-submit:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
}

.command-submit:active {
  transform: scale(0.985);
}

.command-submit svg,
.prospect-action svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.command-error {
  position: absolute;
  top: calc(100% + 5px);
  left: 18px;
  margin: 0;
  color: #fff3ed;
  font-size: 11px;
  font-weight: 600;
  text-shadow: var(--text-shadow);
}

.prospect-action {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 54px;
  width: min(680px, calc(100vw - 32px));
  height: 66px;
  align-items: center;
  margin-top: 14px;
  padding: 6px 6px 6px 22px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 18px;
  background: rgba(250, 252, 251, 0.93);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
  color: var(--ink);
  font-size: 15px;
  font-weight: 650;
  text-align: left;
  transition:
    background var(--duration-fast) var(--ease-out),
    transform var(--duration-fast) var(--ease-out);
}

.prospect-action:hover {
  background: #fff;
  transform: translateY(-1px);
}

.prospect-action svg {
  box-sizing: content-box;
  justify-self: end;
  padding: 11px;
  border-radius: 11px;
  background: var(--orange);
  color: var(--white);
}

.trust-line {
  margin: 11px 0 0;
  color: rgba(246, 250, 249, 0.72);
  font-size: 11.5px;
  font-weight: 550;
  line-height: 1.3;
  letter-spacing: 0.005em;
  text-shadow: var(--text-shadow);
}

.trust-line span {
  margin: 0 8px;
  color: rgba(255, 255, 255, 0.4);
}
.trust-line--mobile {
  display: none;
}

.process-rail {
  display: flex;
  width: min(640px, calc(100vw - 32px));
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-top: 11px;
  padding: 0 16px;
  border-radius: 15px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent 54%),
    rgba(5, 55, 101, 0.12);
  box-shadow: none;
  color: rgba(255, 255, 255, 0.56);
  overflow: hidden;
}

.process-rail__desktop {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}

.process-stage {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  color: rgba(255, 255, 255, 0.52);
  font-size: 10.5px;
  transition: color var(--duration-standard) var(--ease-out);
  white-space: nowrap;
}

.process-stage b {
  overflow: hidden;
  font-weight: 600;
  text-overflow: ellipsis;
}

.process-stage.is-active {
  color: rgba(255, 255, 255, 0.92);
}

.process-stage__dot,
.process-mobile__dot {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  margin-right: 7px;
  border: 0;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(53, 201, 120, 0.08);
}

.process-stage.is-active:not([data-process-stage="preview"])::before {
  width: 6px;
  height: 6px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--orange);
  content: "";
}

.process-arrow {
  width: 16px;
  height: 10px;
  flex: 0 0 auto;
  fill: none;
  stroke: rgba(255, 255, 255, 0.26);
  stroke-width: 1.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process-rail__mobile {
  display: none;
}

.landing.is-showcase-focused .hero {
  opacity: 0.16;
  transform: translate(-50%, -10px);
}

.overlay {
  position: fixed;
  z-index: var(--layer-overlay);
  inset: 0;
  opacity: 0;
  transition: opacity var(--duration-standard) var(--ease-out);
}

.overlay.is-open {
  opacity: 1;
}

.overlay__backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: rgba(1, 24, 47, 0.16);
  backdrop-filter: blur(7px) saturate(104%);
  -webkit-backdrop-filter: blur(7px) saturate(104%);
}

.overlay__panel {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), transparent 28%),
    linear-gradient(145deg, rgba(24, 85, 132, 0.36), rgba(4, 34, 65, 0.44)),
    var(--glass-panel);
  box-shadow: var(--shadow-panel);
  backdrop-filter: blur(var(--blur-panel)) saturate(108%);
  -webkit-backdrop-filter: blur(var(--blur-panel)) saturate(108%);
}

.overlay--center {
  display: grid;
  padding: 24px;
  place-items: center;
}

.overlay--center .overlay__panel {
  transform: translateY(18px) scale(0.985);
  transition: transform var(--duration-standard) var(--ease-out);
}

.overlay--center.is-open .overlay__panel {
  transform: translateY(0) scale(1);
}

.panel-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.panel-header h2,
.panel-header h3,
.how-panel h2,
.faq-sheet h2,
.lead-panel h2 {
  margin: 4px 0 0;
  color: var(--white);
  font-size: 30px;
  font-weight: 650;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.eyebrow {
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.panel-close {
  flex: 0 0 auto;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.how-panel {
  width: min(1080px, calc(100vw - 48px));
  padding: 30px;
  border-radius: var(--radius-panel);
}

.how-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.how-timeline::before {
  position: absolute;
  top: 20px;
  right: 8%;
  left: 8%;
  height: 1px;
  background: linear-gradient(90deg, rgba(53, 201, 120, 0.62), rgba(242, 105, 46, 0.56));
  content: "";
}

.how-timeline li {
  position: relative;
  padding: 0 20px;
}

.how-timeline li > span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 40px;
  height: 40px;
  margin-bottom: 18px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 13px;
  background: #0c406b;
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
}

.how-timeline li:first-child > span {
  background: var(--green-dark);
}

.how-timeline li:last-child > span {
  background: var(--orange);
}

.how-timeline h3 {
  margin: 0;
  color: var(--white);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.how-timeline p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
  line-height: 1.55;
}

.panel-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.panel-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 12px;
}

.text-action {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--white);
  font-size: 12px;
  font-weight: 650;
}

.text-action span {
  display: inline-block;
  margin-left: 5px;
  transition: transform var(--duration-fast) var(--ease-out);
}

.text-action:hover span {
  transform: translateX(3px);
}

.overlay--sheet {
  display: flex;
  justify-content: flex-end;
}

.overlay--sheet .overlay__panel {
  transform: translateX(28px);
  transition: transform var(--duration-standard) var(--ease-out);
}

.overlay--sheet.is-open .overlay__panel {
  transform: translateX(0);
}

.faq-sheet {
  width: min(476px, calc(100vw - 24px));
  height: 100%;
  padding: max(26px, env(safe-area-inset-top)) 28px max(26px, env(safe-area-inset-bottom));
  border-block: 0;
  border-right: 0;
  border-radius: var(--radius-sheet) 0 0 var(--radius-sheet);
  overflow-y: auto;
}

.faq-list {
  margin-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.faq-list details {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.faq-list summary {
  position: relative;
  padding: 18px 32px 18px 0;
  color: var(--white);
  font-size: 13px;
  font-weight: 620;
  line-height: 1.35;
  list-style: none;
}

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

.faq-list summary span::before,
.faq-list summary span::after {
  position: absolute;
  top: 50%;
  right: 4px;
  width: 12px;
  height: 1px;
  background: rgba(255, 255, 255, 0.72);
  content: "";
  transition: transform var(--duration-fast) var(--ease-out);
}

.faq-list summary span::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary span::after {
  transform: rotate(0deg);
}

.faq-list details p {
  margin: -3px 0 18px;
  padding-right: 24px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  line-height: 1.55;
}

.secondary-cta {
  display: inline-grid;
  min-height: 48px;
  place-items: center;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--white);
  font-size: 13px;
}

.faq-sheet > .secondary-cta {
  width: 100%;
  margin-top: 24px;
}

.overlay--lead {
  align-items: center;
}

.lead-panel {
  width: min(640px, calc(100vw - 32px));
  max-height: calc(100dvh - 48px);
  padding: 28px;
  border-radius: var(--radius-panel);
  overflow-y: auto;
}

.lead-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 26px;
}

.field {
  display: grid;
  gap: 7px;
  align-content: start;
}

.field--wide {
  grid-column: 1 / -1;
}

.field > span,
.method-choice legend,
.split-choices legend {
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  font-weight: 600;
}

.field input,
.business-form .field input {
  width: 100%;
  height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 13px;
  outline: 0;
  background: rgba(255, 255, 255, 0.075);
  color: var(--white);
  font-size: 13px;
  transition:
    border-color var(--duration-fast) var(--ease-out),
    background var(--duration-fast) var(--ease-out),
    box-shadow var(--duration-fast) var(--ease-out);
}

.field input::placeholder,
.business-form .field input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.field input:focus,
.business-form .field input:focus {
  border-color: rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 3px rgba(255, 227, 163, 0.13);
}

.field input[aria-invalid="true"] {
  border-color: var(--danger);
}

.field-hint,
.field-error {
  min-height: 13px;
  color: rgba(255, 255, 255, 0.44);
  font-size: 9px;
  line-height: 1.35;
}

.field-error:not(:empty) {
  color: var(--danger);
}

.method-choice {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.method-choice legend {
  margin-bottom: 7px;
}

.method-choice label {
  position: relative;
  display: inline-flex;
  width: 100%;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
  font-weight: 600;
}

.method-choice label:first-of-type {
  border-radius: 13px 0 0 13px;
}

.method-choice label:last-of-type {
  margin-left: -1px;
  border-radius: 0 13px 13px 0;
}

.method-choice input {
  position: absolute;
  opacity: 0;
}

.method-choice label:has(input:checked) {
  z-index: 1;
  border-color: rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.method-choice label:has(input:focus-visible) {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.lead-actions {
  display: grid;
  gap: 9px;
  margin-top: 18px;
  text-align: center;
}

.primary-submit,
.checkout-action,
.next-step {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 22px;
  border-radius: 15px;
  background: linear-gradient(180deg, var(--orange-bright), var(--orange));
  box-shadow: var(--shadow-orange);
  color: #fff;
  font-size: 13px;
}

.primary-submit:hover,
.checkout-action:hover,
.next-step:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-orange-hover);
}

.lead-actions > .primary-submit {
  width: 100%;
}

.lead-actions p {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
}

.lead-success {
  display: grid;
  min-height: 350px;
  place-items: center;
  align-content: center;
  text-align: center;
}

.success-mark {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 17px;
  background: var(--green-dark);
  font-size: 24px;
  font-weight: 700;
}

.lead-success h3 {
  max-width: 430px;
  margin: 22px 0 0;
  font-size: 26px;
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.lead-success p {
  max-width: 390px;
  margin: 11px 0 24px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  line-height: 1.5;
}

.overlay--full {
  overflow: hidden;
  background: var(--paper);
}


.flow-header {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  width: 100%;
  height: 78px;
  align-items: center;
  padding: max(14px, env(safe-area-inset-top)) 24px 12px;
}


.flow-header > .icon-button {
  justify-self: end;
}


.configurator {
  color: var(--ink);
  background: var(--paper);
}

.flow-header {
  position: fixed;
  border-bottom: 1px solid var(--line-dark);
  background: rgba(247, 250, 248, 0.82);
  backdrop-filter: blur(24px) saturate(120%);
  -webkit-backdrop-filter: blur(24px) saturate(120%);
}

.flow-brand {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.flow-brand > span {
  color: var(--navy);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.06em;
}

.flow-brand i {
  color: var(--orange);
  font-style: normal;
}

.flow-brand small {
  color: #65747e;
  font-size: 10px;
  font-weight: 600;
}

.flow-progress {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #65747e;
  font-size: 10px;
  font-weight: 600;
}

.flow-progress > div {
  width: 150px;
  height: 4px;
  overflow: hidden;
  border-radius: 99px;
  background: #d8e1de;
}

.flow-progress i {
  display: block;
  width: 12.5%;
  height: 100%;
  border-radius: inherit;
  background: var(--orange);
  transition: width var(--duration-standard) var(--ease-out);
}

.flow-header > .icon-button {
  border-color: rgba(6, 37, 60, 0.1);
  background: #fff;
  box-shadow: 0 4px 16px rgba(8, 31, 48, 0.05);
  color: var(--ink);
  backdrop-filter: none;
}

.configurator__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 380px);
  width: 100%;
  height: 100%;
  padding-top: 78px;
}

.configurator__content {
  position: relative;
  overflow-y: auto;
  padding: clamp(40px, 5vh, 64px) clamp(36px, 5vw, 80px) 104px;
}

.config-step {
  width: min(760px, 100%);
  margin: 0 auto;
}

.config-step > .eyebrow,
.price-summary .eyebrow,
.tracker .eyebrow {
  color: var(--orange-dark);
}

.config-step h2 {
  max-width: 700px;
  margin: 9px 0 0;
  color: var(--ink);
  font-size: clamp(32px, 3vw, 48px);
  font-weight: 650;
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.step-intro {
  max-width: 640px;
  margin: 15px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.6;
}

.choice-list,
.split-choices,
.recommendation-list,
.business-form {
  margin-top: 28px;
}

.choice-list {
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.68);
}

.choice-row {
  position: relative;
  display: grid;
  min-height: 76px;
  grid-template-columns: 24px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line-dark);
  color: var(--ink);
  transition: background var(--duration-fast) var(--ease-out);
}

.choice-row:last-child {
  border-bottom: 0;
}

.choice-row:hover {
  background: #fff;
}

.choice-row input {
  position: absolute;
  opacity: 0;
}

.choice-check {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border: 1.5px solid #a9b8be;
  border-radius: 7px;
  background: #fff;
}

input[type="radio"] + .choice-check {
  border-radius: 50%;
}

.choice-row:has(input:checked) {
  background: #fff;
}

.choice-row:has(input:checked) .choice-check {
  border-color: var(--orange);
  background: var(--orange);
  box-shadow: inset 0 0 0 5px #fff;
}

.choice-row:has(input[type="checkbox"]:checked) .choice-check {
  box-shadow: none;
}

.choice-row:has(input[type="checkbox"]:checked) .choice-check::after {
  color: #fff;
  content: "✓";
  font-size: 12px;
  font-weight: 800;
}

.choice-row:has(input:focus-visible) {
  z-index: 1;
  outline: 3px solid var(--focus);
  outline-offset: -3px;
}

.choice-row > span:nth-child(3),
.choice-row > span:nth-child(2) {
  min-width: 0;
}

.choice-row b,
.choice-row small {
  display: block;
}

.choice-row b {
  font-size: 13px;
  font-weight: 650;
}

.choice-row small {
  margin-top: 4px;
  color: #6b7b84;
  font-size: 10px;
  line-height: 1.35;
}

.choice-row > strong {
  color: #324954;
  font-size: 11px;
  font-weight: 650;
  white-space: nowrap;
}

.choice-row.is-included {
  background: #f2f6f4;
}

.page-counter {
  display: flex;
  width: min(390px, 100%);
  align-items: center;
  justify-content: space-between;
  margin-top: 42px;
  padding: 16px;
  border: 1px solid var(--line-dark);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(10, 36, 52, 0.05);
}

.page-counter .icon-button {
  border-color: var(--line-dark);
  background: #f2f5f4;
  box-shadow: none;
  color: var(--ink);
  font-size: 22px;
}

.page-counter > div {
  text-align: center;
}

.page-counter strong,
.page-counter span {
  display: block;
}

.page-counter strong {
  font-size: 44px;
  line-height: 1;
  letter-spacing: -0.06em;
}

.page-counter span {
  margin-top: 5px;
  color: #6b7b84;
  font-size: 10px;
}

.recommendation {
  display: flex;
  max-width: 540px;
  align-items: flex-start;
  gap: 9px;
  margin: 24px 0 0;
  color: #5d7079;
  font-size: 11px;
  line-height: 1.5;
}

.recommendation > span {
  color: var(--orange);
}

.split-choices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.split-choices fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.split-choices legend {
  margin-bottom: 8px;
  color: #61737d;
}

.choice-row--compact {
  min-height: 84px;
  margin-top: 8px;
  border: 1px solid var(--line-dark);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.62);
}

.recommendation-list {
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: 20px;
  background: #fff;
}

.recommendation-row {
  display: flex;
  min-height: 94px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line-dark);
}

.recommendation-row:last-child {
  border-bottom: 0;
}

.recommendation-row span,
.recommendation-row b,
.recommendation-row small,
.recommendation-row em {
  display: block;
}

.recommendation-row em {
  width: max-content;
  margin-bottom: 7px;
  padding: 3px 6px;
  border-radius: 6px;
  background: rgba(242, 105, 46, 0.1);
  color: var(--orange-dark);
  font-size: 8px;
  font-style: normal;
  font-weight: 750;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.recommendation-row b {
  font-size: 13px;
}

.recommendation-row small {
  margin-top: 4px;
  color: #6b7b84;
  font-size: 10px;
}

.recommendation-row input {
  width: 44px;
  height: 24px;
  flex: 0 0 auto;
  appearance: none;
  border-radius: 99px;
  background: #ccd7d8;
  transition: background var(--duration-fast) var(--ease-out);
}

.recommendation-row input::before {
  display: block;
  width: 18px;
  height: 18px;
  margin: 3px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 5px rgba(8, 34, 48, 0.1);
  content: "";
  transition: transform var(--duration-fast) var(--ease-out);
}

.recommendation-row input:checked {
  background: var(--orange);
}

.recommendation-row input:checked::before {
  transform: translateX(20px);
}

.business-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.business-form .field > span {
  color: #61737d;
}

.business-form .field input {
  border-color: var(--line-dark);
  background: #fff;
  color: var(--ink);
}

.business-form .field input::placeholder {
  color: #9aa7ac;
}

.price-confirmation {
  display: grid;
  width: min(520px, 100%);
  margin-top: 32px;
  padding: 24px;
  border: 1px solid var(--line-dark);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 12px 36px rgba(10, 36, 52, 0.05);
}

.price-confirmation span,
.price-confirmation small {
  color: #6b7b84;
  font-size: 11px;
}

.price-confirmation strong {
  margin: 5px 0;
  color: var(--ink);
  font-size: 46px;
  line-height: 1;
  letter-spacing: -0.06em;
}

.assurance-list {
  display: grid;
  gap: 9px;
  margin: 24px 0 0;
  padding: 0;
  color: #4d626c;
  font-size: 11px;
  list-style: none;
}

.assurance-list span {
  color: var(--green-dark);
  font-weight: 800;
}

.checkout-state {
  width: min(560px, 100%);
  margin-top: 30px;
  padding: 24px;
  border: 1px solid var(--line-dark);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 12px 36px rgba(10, 36, 52, 0.05);
}

.checkout-state > div > span,
.checkout-state > div > strong,
.checkout-state > div > small {
  display: block;
}

.checkout-state > div > span,
.checkout-state > div > small {
  color: #6b7b84;
  font-size: 11px;
}

.checkout-state > div > strong {
  margin: 6px 0;
  font-size: 42px;
  letter-spacing: -0.06em;
}

.checkout-state ul {
  display: grid;
  gap: 8px;
  margin: 22px 0;
  padding: 18px 0;
  border-block: 1px solid var(--line-dark);
  color: #4f626b;
  font-size: 11px;
  list-style: none;
}

.checkout-state li::before {
  margin-right: 8px;
  color: var(--green-dark);
  content: "✓";
  font-weight: 800;
}

.checkout-action {
  width: 100%;
}

.checkout-note {
  margin: 10px 0 0;
  color: #78868d;
  font-size: 9px;
  line-height: 1.45;
  text-align: center;
}

.tracker-demo {
  display: block;
  margin: 18px auto 0;
  color: var(--navy-soft);
}

.config-nav {
  position: fixed;
  z-index: 3;
  bottom: 0;
  left: 0;
  display: flex;
  width: calc(100% - 380px);
  align-items: center;
  justify-content: space-between;
  padding: 16px clamp(36px, 5vw, 80px) max(16px, env(safe-area-inset-bottom));
  border-top: 1px solid var(--line-dark);
  background: rgba(241, 245, 243, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.back-step {
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid var(--line-dark);
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
  font-size: 12px;
  font-weight: 620;
}

.next-step {
  min-width: 150px;
}

.price-summary {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: clamp(38px, 5vh, 62px) 30px 32px;
  background:
    radial-gradient(circle at 70% 0, rgba(30, 91, 139, 0.7), transparent 42%),
    linear-gradient(155deg, var(--navy), var(--navy-deep));
  color: var(--white);
}

.price-summary h3 {
  margin: 8px 0 0;
  font-size: 26px;
  font-weight: 650;
  letter-spacing: -0.045em;
}

.price-summary ul {
  display: grid;
  gap: 0;
  margin: 28px 0 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  list-style: none;
}

.price-summary li {
  display: flex;
  min-height: 43px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
}

.price-summary li b {
  color: rgba(255, 255, 255, 0.9);
  font-size: 9px;
  font-weight: 600;
}

.price-summary__total {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 24px;
}

.price-summary__total span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
}

.price-summary__total strong {
  font-size: 38px;
  line-height: 1;
  letter-spacing: -0.06em;
}

.price-summary > p {
  margin: 13px 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 9px;
  text-align: right;
}

.price-summary > p span {
  color: var(--green);
}

.tracker {
  color: var(--ink);
  background: var(--paper);
}

.tracker-header {
  position: fixed;
}

.tracker-project {
  margin: 0;
  color: #6c7a82;
  font-size: 10px;
  font-weight: 550;
}

.tracker-project span {
  margin: 0 7px;
  color: #b2bdc0;
}

.tracker__shell {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, 0.75fr);
  width: min(calc(100% - 48px), 1220px);
  height: min(calc(100% - 128px), 760px);
  margin: 102px auto 26px;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 16px 48px rgba(9, 35, 50, 0.07);
}

.tracker-main {
  min-width: 0;
  padding: clamp(30px, 4vw, 54px);
  overflow-y: auto;
}

.tracker-main h2 {
  margin: 10px 0 0;
  font-size: clamp(30px, 3.3vw, 48px);
  font-weight: 650;
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.tracker-progress-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
  color: #6c7a82;
  font-size: 10px;
}

.tracker-progress-meta strong {
  color: var(--ink);
  font-weight: 650;
}

.tracker-progress {
  width: 100%;
  height: 6px;
  margin-top: 10px;
  overflow: hidden;
  border-radius: 99px;
  background: #dce4e2;
}

.tracker-progress i {
  display: block;
  width: 52%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green-dark), var(--orange));
}

.tracker-stages {
  position: relative;
  display: grid;
  gap: 0;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.tracker-stages::before {
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: 19px;
  width: 1px;
  background: #dce4e2;
  content: "";
}

.tracker-stages li {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 58px;
  grid-template-columns: 40px 1fr;
  align-items: start;
  gap: 14px;
}

.tracker-stages li > span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid #d7e0df;
  border-radius: 13px;
  background: #fff;
  color: #91a0a6;
  font-size: 9px;
  font-weight: 750;
}

.tracker-stages li.is-complete > span {
  border-color: var(--green-dark);
  background: var(--green-dark);
  color: #fff;
}

.tracker-stages li.is-active > span {
  border-color: var(--orange);
  background: var(--orange);
  color: #fff;
  box-shadow: 0 0 0 3px rgba(242, 105, 46, 0.06);
}

.tracker-stages b,
.tracker-stages small {
  display: block;
}

.tracker-stages b {
  margin-top: 3px;
  font-size: 12px;
  font-weight: 650;
}

.tracker-stages small {
  margin-top: 4px;
  color: #809097;
  font-size: 9px;
}

.tracker-stages li.is-active b {
  color: var(--orange-dark);
}

.tracker-side {
  display: flex;
  min-width: 0;
  flex-direction: column;
  border-left: 1px solid var(--line-dark);
  background: #f7f9f8;
}

.countdown-block,
.latest-update,
.support-block {
  padding: 28px;
}

.countdown-block,
.latest-update {
  border-bottom: 1px solid var(--line-dark);
}

.countdown-block p {
  margin: 0;
  color: #6d7d85;
  font-size: 10px;
}

.countdown-block strong {
  display: block;
  margin-top: 8px;
  font-variant-numeric: tabular-nums;
  font-size: clamp(32px, 3.4vw, 46px);
  line-height: 1;
  letter-spacing: -0.055em;
}

.countdown-block span {
  display: block;
  margin-top: 8px;
  color: #9aa7ac;
  font-size: 8px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.latest-update h3 {
  margin: 10px 0 0;
  font-size: 18px;
  font-weight: 620;
  line-height: 1.35;
  letter-spacing: -0.035em;
}

.latest-update > p:last-child {
  margin: 14px 0 0;
  color: #839097;
  font-size: 9px;
}

.support-block {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 44px;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.support-avatar {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 14px;
  background: var(--navy);
  color: var(--white);
  font-size: 13px;
  font-weight: 750;
}

.support-block b,
.support-block small {
  display: block;
}

.support-block b {
  font-size: 10px;
}

.support-block small {
  margin-top: 4px;
  color: #819096;
  font-size: 8px;
  line-height: 1.4;
}

.support-block .icon-button {
  border-color: var(--line-dark);
  background: #fff;
  box-shadow: none;
  color: var(--ink);
}

.overlay--bottom {
  display: none;
}

.menu-sheet .overlay__panel {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 22px 20px max(20px, env(safe-area-inset-bottom));
  border-radius: 28px 28px 0 0;
  transform: translateY(24px);
  transition: transform var(--duration-standard) var(--ease-out);
}

.menu-sheet.is-open .overlay__panel {
  transform: translateY(0);
}

.menu-sheet nav {
  display: grid;
  margin: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.menu-sheet nav button {
  display: flex;
  min-height: 56px;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
  color: var(--white);
  font-size: 15px;
  font-weight: 620;
}

.menu-sheet > .overlay__panel > .primary-submit {
  width: 100%;
}

@media (min-width: 720px) and (max-width: 1100px) and (orientation: portrait) {
  picture[data-artwork] > img {
    object-position: center top;
  }

  .site-header {
    top: max(24px, env(safe-area-inset-top));
    width: calc(100% - 48px);
  }

  .site-nav {
    gap: 22px;
  }

  .hero {
    top: clamp(126px, 10vh, 148px);
    width: min(calc(100% - 64px), 850px);
  }

  .hero h1 {
    font-size: clamp(64px, 7vw, 74px);
  }

  .hero__intro {
    max-width: 700px;
    font-size: 17px;
  }

  .activation-command,
  .prospect-action {
    width: min(660px, calc(100vw - 64px));
  }

  .configurator__layout {
    grid-template-columns: minmax(0, 1fr) 320px;
  }

  .config-nav {
    width: calc(100% - 320px);
  }
}

@media (max-width: 719px) {
  picture[data-artwork] > img {
    object-position: center top;
  }

  .hero-contrast {
    background:
      radial-gradient(ellipse 80% 40% at 50% 21%, rgba(0, 57, 110, 0.2), transparent 76%),
      linear-gradient(180deg, rgba(0, 42, 83, 0.1), transparent 54%);
  }

  .site-header {
    top: max(16px, env(safe-area-inset-top));
    width: calc(100% - 32px);
    height: 46px;
  }

  .brand {
    font-size: 27px;
  }

  .site-nav,
  .header-login {
    display: none;
  }

  .site-header .menu-button {
    display: inline-grid;
    width: 50px;
    height: 50px;
  }

  .hero {
    top: clamp(80px, 9.7vh, 90px);
    width: calc(100% - 28px);
  }

  .hero-eyebrow {
    gap: 7px;
    font-size: 10.5px;
  }

  .hero-eyebrow__detail {
    display: none;
  }

  .hero h1 {
    margin-top: 8px;
    font-size: clamp(44px, 11.2vw, 46px);
    line-height: 0.94;
    letter-spacing: -0.058em;
  }

  .hero__line--strong {
    white-space: nowrap;
  }

  .hero__line--soft {
    width: min(100%, 350px);
    text-wrap: balance;
  }

  .hero__intro--desktop {
    display: none;
  }

  .hero__intro--mobile {
    display: block;
  }

  .hero__intro {
    max-width: 358px;
    margin-top: 10px;
    font-size: clamp(13.5px, 3.6vw, 15px);
    line-height: 1.38;
  }

  .activation-command {
    grid-template-columns: 1fr;
    grid-template-rows: 44px 44px;
    width: min(100%, 350px);
    height: 90px;
    margin-top: 10px;
    padding: 0;
    border-radius: 17px;
  }

  .activation-command input {
    height: 44px;
    padding-inline: 16px;
    font-size: 14px;
  }

  .command-submit {
    width: 100%;
    height: 44px;
    justify-content: space-between;
    padding-inline: 16px;
    border-top: 1px solid rgba(7, 36, 58, 0.08);
    border-radius: 0 0 16px 16px;
  }

  .command-error {
    left: 12px;
  }

  .prospect-action {
    width: min(100%, 350px);
    height: 58px;
    margin-top: 10px;
  }

  .trust-line {
    max-width: 360px;
    margin-top: 7px;
    font-size: 10.5px;
    line-height: 1.35;
  }
  .trust-line--desktop {
    display: none;
  }

  .trust-line--mobile {
    display: block;
  }

  .trust-line span {
    margin-inline: 4px;
  }

  .process-rail {
    width: min(100%, 350px);
    height: 38px;
    margin-top: 7px;
    padding-inline: 12px;
    border-radius: 14px;
  }

  .process-rail__desktop {
    display: none;
  }

  .process-rail__mobile {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 10px;
    font-weight: 600;
    white-space: nowrap;
  }

  .process-rail__mobile > span:not(.process-mobile__dot) {
    color: rgba(255, 255, 255, 0.34);
  }

  .process-mobile__dot {
    margin-right: -2px;
  }


  .overlay--center,
  .overlay--sheet,
  .overlay--bottom {
    display: block;
    padding: 0;
  }

  .overlay--center .overlay__panel,
  .overlay--sheet .overlay__panel,
  .overlay--bottom .overlay__panel {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    max-height: min(88dvh, 760px);
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: 28px 28px 0 0;
    transform: translateY(28px);
    transition: transform var(--duration-standard) var(--ease-out);
  }

  .overlay--center.is-open .overlay__panel,
  .overlay--sheet.is-open .overlay__panel,
  .overlay--bottom.is-open .overlay__panel {
    transform: translateY(0);
  }

  .panel-header h2,
  .how-panel h2,
  .faq-sheet h2,
  .lead-panel h2 {
    font-size: 25px;
  }

  .how-panel {
    padding: 22px 20px max(22px, env(safe-area-inset-bottom));
    overflow-y: auto;
  }

  .how-timeline {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 22px;
  }

  .how-timeline::before {
    top: 20px;
    bottom: 20px;
    left: 19px;
    width: 1px;
    height: auto;
  }

  .how-timeline li {
    display: grid;
    min-height: 72px;
    grid-template-columns: 40px 1fr;
    gap: 14px;
    padding: 0;
  }

  .how-timeline li > span {
    margin: 0;
  }

  .how-timeline p {
    margin-top: 4px;
    font-size: 11px;
  }

  .panel-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 13px;
    margin-top: 18px;
    padding-top: 16px;
  }

  .faq-sheet {
    height: auto;
    padding: 22px 20px max(22px, env(safe-area-inset-bottom));
  }

  .faq-list {
    margin-top: 18px;
  }

  .faq-list summary {
    padding-block: 15px;
  }

  .faq-list details p {
    margin-bottom: 15px;
  }

  .lead-panel {
    padding: 22px 20px max(18px, env(safe-area-inset-bottom));
  }

  .lead-form {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 18px;
  }

  .field--wide {
    grid-column: auto;
  }

  .field input,
  .method-choice label {
    height: 45px;
  }

  .field-hint,
  .field-error {
    display: none;
  }

  .lead-actions {
    margin-top: 13px;
  }

  .lead-success {
    min-height: 330px;
  }

  .flow-header {
    height: 70px;
    grid-template-columns: auto 1fr auto;
    padding: max(12px, env(safe-area-inset-top)) 14px 10px;
  }


  .flow-brand small,
  .flow-progress > div {
    display: none;
  }

  .flow-progress {
    justify-self: center;
  }

  .configurator__layout {
    display: block;
    padding-top: 70px;
  }

  .configurator__content {
    height: 100%;
    padding: 28px 18px 172px;
  }

  .config-step h2 {
    font-size: clamp(30px, 9vw, 38px);
  }

  .step-intro {
    margin-top: 11px;
    font-size: 12px;
    line-height: 1.5;
  }

  .choice-list,
  .split-choices,
  .recommendation-list,
  .business-form {
    margin-top: 20px;
  }

  .choice-row {
    min-height: 68px;
    grid-template-columns: 22px minmax(0, 1fr) auto;
    gap: 10px;
    padding: 11px 12px;
  }

  .choice-row b {
    font-size: 11px;
  }

  .choice-row small,
  .choice-row > strong {
    font-size: 8.5px;
  }

  .page-counter {
    margin-top: 28px;
  }

  .split-choices,
  .business-form {
    grid-template-columns: 1fr;
  }

  .choice-row--compact {
    min-height: 72px;
  }

  .recommendation-row {
    min-height: 82px;
    padding: 12px;
  }

  .recommendation-row b {
    font-size: 11px;
  }

  .recommendation-row small {
    font-size: 8.5px;
  }

  .price-confirmation,
  .checkout-state {
    margin-top: 22px;
    padding: 18px;
  }

  .config-nav {
    bottom: 74px;
    width: 100%;
    padding: 10px 18px;
  }

  .back-step,
  .next-step {
    min-height: 46px;
  }

  .price-summary {
    position: fixed;
    z-index: 4;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    height: 74px;
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 12px 18px max(12px, env(safe-area-inset-bottom));
  }

  .price-summary > div:first-child,
  .price-summary ul,
  .price-summary > p {
    display: none;
  }

  .price-summary::before {
    color: rgba(255, 255, 255, 0.58);
    content: "Jouw website · vaste prijs";
    font-size: 10px;
  }

  .price-summary__total {
    display: block;
    margin: 0;
    padding: 0;
    text-align: right;
  }

  .price-summary__total span {
    display: none;
  }

  .price-summary__total strong {
    font-size: 25px;
  }

  .tracker-project {
    display: none;
  }

  .tracker__shell {
    display: block;
    width: calc(100% - 24px);
    height: calc(100% - 94px);
    margin: 82px 12px 12px;
    overflow-y: auto;
    border-radius: 22px;
  }

  .tracker-main {
    padding: 24px 20px;
    overflow: visible;
  }

  .tracker-main h2 {
    font-size: 31px;
  }

  .tracker-progress-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
    margin-top: 22px;
  }

  .tracker-stages {
    margin-top: 27px;
  }

  .tracker-side {
    border-top: 1px solid var(--line-dark);
    border-left: 0;
  }

  .countdown-block,
  .latest-update,
  .support-block {
    padding: 22px 20px;
  }

  .countdown-block strong {
    font-size: 38px;
  }

  .overlay--bottom {
    display: block;
  }
}

@media (max-width: 410px) and (max-height: 870px) {
  .hero {
    top: 78px;
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero__intro {
    max-width: 352px;
    font-size: 13px;
    line-height: 1.34;
  }

  .activation-command {
    grid-template-rows: 44px 44px;
    width: 340px;
    height: 90px;
  }

  .activation-command input,
  .command-submit {
    height: 44px;
  }

  .prospect-action,
  .process-rail {
    width: 340px;
  }

  .prospect-action {
    height: 56px;
  }
}

@media (max-height: 700px) and (min-width: 720px) {
  .site-header {
    top: 14px;
    height: 46px;
  }

  .hero {
    top: 72px;
  }

  .hero-eyebrow {
    font-size: 10px;
  }

  .hero h1 {
    margin-top: 7px;
    font-size: clamp(48px, 5vw, 60px);
  }

  .hero__intro {
    max-width: 690px;
    margin-top: 8px;
    font-size: 13.5px;
  }

  .activation-command,
  .prospect-action {
    width: min(600px, calc(100vw - 64px));
    height: 58px;
    margin-top: 10px;
  }

  .activation-command input,
  .command-submit {
    height: 46px;
  }

  .trust-line,
  .process-rail {
    margin-top: 8px;
  }

  .process-rail {
    height: 38px;
  }
}

@media (hover: none), (pointer: coarse) {

  .command-submit:hover,
  .prospect-action:hover,
  .primary-submit:hover,
  .checkout-action:hover,
  .next-step:hover {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }
}
