:root {
  --bg: #f1f5f8;
  --bg-strong: #e7edf2;
  --surface: #ffffff;
  --surface-soft: #f8fbfd;
  --surface-muted: #f1f6fa;
  --surface-tint: #eef4f8;
  --text: #122430;
  --text-muted: #344d61;
  --text-soft: #4f687c;
  --label-text: #5a7389;
  --line: #cfdae3;
  --line-strong: #b6c6d3;
  --brand: #174e71;
  --brand-strong: #113f5c;
  --brand-soft: #deebf3;
  --badge-bg: #edf2f6;
  --badge-border: #c8d5df;
  --badge-text: #324a60;
  --badge-bg-muted: #f2efe9;
  --badge-border-muted: #d8cec0;
  --badge-text-muted: #5d5348;
  --state-in-bg: #edf3f7;
  --state-in-border: #c9d6e1;
  --state-in-text: #31495e;
  --state-out-bg: #f4efea;
  --state-out-border: #d9cfc3;
  --state-out-text: #5f5145;
  --state-check-bg: #eff1f4;
  --state-check-border: #d1d8df;
  --state-check-text: #4e5f6f;
  --dark-bg-start: #122f43;
  --dark-bg-mid: #18435f;
  --dark-bg-end: #1d4f70;
  --dark-surface: rgba(255, 255, 255, 0.085);
  --dark-surface-strong: rgba(255, 255, 255, 0.13);
  --dark-line: rgba(188, 212, 228, 0.44);
  --dark-line-soft: rgba(182, 208, 225, 0.34);
  --dark-text: #f0f7fb;
  --dark-text-soft: rgba(214, 230, 240, 0.94);
  --dark-text-muted: rgba(190, 212, 227, 0.88);
  --focus: #2f729d;
  --radius-xs: 10px;
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --radius-xl: 30px;
  --radius-pill: 999px;
  --shadow-soft: 0 12px 28px rgba(15, 35, 51, 0.08);
  --shadow-card: 0 20px 42px rgba(13, 30, 44, 0.12);
  --shadow-pop: 0 26px 52px rgba(12, 29, 43, 0.16);
  --ease-standard: cubic-bezier(0.22, 1, 0.36, 1);
  --motion-fast: 0.22s;
  --motion-base: 0.34s;
  --section-space: clamp(4.8rem, 8vw, 6.4rem);
  --container-max: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Avenir Next", "Segoe UI", "Helvetica Neue", "Nimbus Sans L", sans-serif;
  line-height: 1.6;
  color: var(--text);
  background:
    radial-gradient(circle at 8% -2%, #fbfdff 0%, transparent 36%),
    radial-gradient(circle at 88% 4%, #e9f0f6 0%, transparent 35%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-strong) 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    linear-gradient(rgba(20, 49, 70, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 49, 70, 0.02) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: radial-gradient(circle at center, black 30%, transparent 84%);
}

a {
  color: inherit;
}

h1,
h2,
h3 {
  line-height: 1.16;
  margin-top: 0;
  letter-spacing: -0.012em;
}

h1 {
  font-weight: 760;
  letter-spacing: -0.018em;
}

h2 {
  font-weight: 725;
  letter-spacing: -0.016em;
}

h3 {
  font-weight: 670;
  letter-spacing: -0.012em;
}

p {
  margin-top: 0;
}

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

.container {
  width: min(100% - 3rem, var(--container-max));
  margin-inline: auto;
}

main section {
  scroll-margin-top: 6.2rem;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0.5rem;
  z-index: 9999;
  background: var(--brand-strong);
  color: #fff;
  padding: 0.55rem 0.8rem;
  border-radius: var(--radius-sm);
}

.skip-link:focus {
  left: 0.75rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  background: rgba(245, 250, 253, 0.86);
  backdrop-filter: blur(10px);
  transition:
    border-color var(--motion-fast) var(--ease-standard),
    background-color var(--motion-fast) var(--ease-standard),
    box-shadow var(--motion-fast) var(--ease-standard);
}

.site-header.is-scrolled {
  border-color: rgba(167, 186, 200, 0.66);
  background: rgba(249, 252, 254, 0.95);
  box-shadow: 0 12px 28px rgba(16, 39, 57, 0.11);
}

.site-header.nav-open {
  border-color: rgba(167, 186, 200, 0.66);
  background: rgba(249, 252, 254, 0.97);
}

.header-inner {
  min-height: 4.7rem;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.9rem 1rem;
}

.brand {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.68rem;
  line-height: 1.1;
  color: var(--brand-strong);
  letter-spacing: 0.01em;
}

.brand-logo-wrap {
  position: relative;
  width: 2.08rem;
  height: 2.08rem;
  flex: 0 0 auto;
  overflow: hidden;
}

.brand-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 565%;
  max-width: none;
  height: auto;
  transform: translate(-50%, -50%);
  display: block;
}

.brand-text {
  display: grid;
  gap: 0.06rem;
}

.brand-text strong {
  font-size: 1.02rem;
  font-weight: 750;
}

.brand-text small {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.brand-mark {
  display: none;
}

.nav-toggle {
  display: none;
  border: 1px solid rgba(170, 188, 200, 0.66);
  background: rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-xs);
  width: 2.55rem;
  height: 2.28rem;
  padding: 0;
  align-items: center;
  justify-content: center;
  gap: 0.22rem;
  flex-direction: column;
  cursor: pointer;
  transition:
    background-color var(--motion-fast) var(--ease-standard),
    border-color var(--motion-fast) var(--ease-standard);
}

.nav-toggle:hover {
  background: #fff;
  border-color: rgba(150, 171, 185, 0.88);
}

.nav-toggle-line {
  width: 1.1rem;
  height: 2px;
  background: var(--brand-strong);
  border-radius: var(--radius-pill);
  transition:
    transform var(--motion-fast) var(--ease-standard),
    opacity var(--motion-fast) var(--ease-standard);
}

.site-header.nav-open .nav-toggle-line:nth-child(1) {
  transform: translateY(4px) rotate(45deg);
}

.site-header.nav-open .nav-toggle-line:nth-child(2) {
  opacity: 0;
}

.site-header.nav-open .nav-toggle-line:nth-child(3) {
  transform: translateY(-4px) rotate(-45deg);
}

.primary-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.72rem;
}

.header-cta-group {
  display: inline-flex;
  align-items: center;
  gap: 0.44rem;
}

.primary-nav .btn-header {
  margin-left: 0;
}

.nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 0;
  padding: 0;
}

.nav-link {
  position: relative;
  text-decoration: none;
  color: var(--text-soft);
  font-size: 0.82rem;
  transition: color var(--motion-fast) var(--ease-standard);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.32rem;
  width: 100%;
  height: 2px;
  border-radius: var(--radius-pill);
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--motion-fast) var(--ease-standard);
}

.nav-link:hover {
  color: var(--brand-strong);
}

.nav-link:hover::after,
.nav-link.is-active::after {
  transform: scaleX(1);
}

.nav-link.is-active {
  color: var(--brand-strong);
  font-weight: 650;
}

@media (max-width: 1080px) {
  .header-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
    padding: 0.7rem 0;
    min-height: unset;
    position: relative;
  }

  .nav-toggle {
    display: inline-flex;
    width: 2.75rem;
    height: 2.75rem;
  }

  .primary-nav {
    grid-column: 1 / -1;
    display: flex;
    margin-left: 0;
    margin-top: 0.52rem;
    width: 100%;
    border: 1px solid rgba(171, 188, 200, 0.66);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 16px 26px rgba(15, 36, 52, 0.14);
    padding: 0.76rem 0.78rem;
    gap: 0.66rem;
    align-items: stretch;
    flex-direction: column;
    max-height: calc(100vh - 5.4rem);
    overflow: auto;
  }

  body.nav-enhanced .primary-nav {
    display: none;
  }

  body.nav-enhanced .site-header.nav-open .primary-nav {
    display: flex;
  }

  .nav-list {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.16rem;
  }

  .nav-link {
    width: 100%;
    min-height: 2.6rem;
    display: inline-flex;
    align-items: center;
    font-size: 0.95rem;
    padding: 0.44rem 0.06rem;
  }

  .header-cta-group {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0.38rem;
  }

  .primary-nav .btn-header {
    width: 100%;
    margin-left: 0;
    justify-content: center;
    min-height: 2.9rem;
  }
}

.section {
  padding: var(--section-space) 0;
}

.section-light {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.7) 0%, rgba(248, 251, 253, 0.94) 100%);
  border-top: 1px solid rgba(182, 198, 209, 0.28);
  border-bottom: 1px solid rgba(182, 198, 209, 0.34);
}

.eyebrow {
  margin-bottom: 0.85rem;
  font-size: 0.75rem;
  letter-spacing: 0.105em;
  text-transform: uppercase;
  font-weight: 660;
  color: var(--label-text);
}

.section-heading {
  margin-bottom: clamp(1.2rem, 2vw, 1.8rem);
}

.section-heading h2 {
  font-size: clamp(1.85rem, 3vw, 2.6rem);
  max-width: 24ch;
  margin-bottom: 0.95rem;
}

.section-heading > p:last-child {
  margin-bottom: 0;
}

.hero {
  padding-top: clamp(5.9rem, 11vw, 7rem);
  padding-bottom: clamp(4.8rem, 8vw, 5.8rem);
}

.hero-shell {
  position: relative;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(151, 173, 187, 0.58);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(247, 251, 253, 0.98) 100%);
  box-shadow:
    0 28px 54px rgba(16, 41, 60, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  padding: clamp(1.3rem, 2.9vw, 2.05rem);
  overflow: hidden;
}

.hero-shell::before {
  content: "";
  position: absolute;
  pointer-events: none;
  inset: auto auto -130px -150px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(66, 111, 139, 0.18) 0%, rgba(66, 111, 139, 0) 72%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  gap: 1.6rem;
  align-items: stretch;
}

.hero-copy {
  padding: clamp(0.45rem, 1.1vw, 0.9rem) clamp(0.2rem, 0.6vw, 0.8rem) clamp(0.6rem, 1.2vw, 1rem);
}

.hero-copy h1 {
  font-size: clamp(2.15rem, 4.9vw, 3.9rem);
  max-width: 12.2ch;
  margin-bottom: 0.95rem;
}

.hero-lead {
  max-width: 58ch;
  color: var(--text-muted);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  margin-bottom: 1.35rem;
}

.hero-offer {
  margin-bottom: 0.95rem;
  border: 1px solid rgba(170, 188, 200, 0.66);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(246, 251, 254, 0.96) 100%);
  box-shadow: var(--shadow-soft);
  padding: 0.8rem 0.88rem;
  max-width: 30rem;
}

.hero-offer-label {
  margin: 0;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  font-weight: 700;
}

.hero-offer-price {
  margin: 0.2rem 0 0.1rem;
  color: var(--brand-strong);
  font-size: 1.45rem;
  line-height: 1.1;
  font-weight: 750;
}

.hero-offer-note {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.72rem;
  margin-bottom: 0.78rem;
}

.hero .btn-primary {
  padding: 0.88rem 1.5rem;
  box-shadow: 0 18px 32px rgba(16, 57, 84, 0.31);
  font-weight: 700;
}

.hero .btn-primary:hover {
  box-shadow: 0 22px 36px rgba(16, 57, 84, 0.36);
}

.hero .btn-secondary {
  padding: 0.82rem 1.3rem;
  border-color: rgba(20, 71, 102, 0.34);
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.hero .btn-secondary:hover {
  border-color: rgba(20, 71, 102, 0.56);
  background: #fff;
}

.hero-path-copy,
.hero-confidence,
.hero-guarantee {
  margin: 0;
  max-width: 64ch;
}

.hero-path-copy {
  color: var(--text-muted);
  font-size: 0.88rem;
}

.hero-confidence {
  margin-top: 0.45rem;
  color: var(--text-soft);
  font-size: 0.85rem;
}

.hero-guarantee {
  margin-top: 0.36rem;
  color: var(--text-soft);
  font-size: 0.83rem;
}

.hero-trust-chips {
  list-style: none;
  margin: 0.72rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hero-trust-chips li {
  padding: 0.35rem 0.64rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(165, 184, 197, 0.64);
  background: rgba(248, 252, 254, 0.95);
  color: var(--text-soft);
  font-size: 0.82rem;
  white-space: nowrap;
}

.hero-visual {
  position: relative;
  min-height: 450px;
}

.hero-card {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(161, 182, 195, 0.66);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-card);
}

.hero-card-eyebrow {
  margin-bottom: 0.52rem;
  font-size: 0.71rem;
  letter-spacing: 0.095em;
  text-transform: uppercase;
  color: var(--label-text);
  font-weight: 650;
}

.hero-report {
  position: absolute;
  left: 0;
  right: 1.65rem;
  top: 0.2rem;
  padding: 1.2rem 1.18rem;
}

.hero-report h2 {
  font-size: 1.25rem;
  margin-bottom: 0.72rem;
}

.report-row {
  display: flex;
  justify-content: space-between;
  gap: 0.7rem;
  padding: 0.52rem 0;
  border-top: 1px solid rgba(176, 194, 206, 0.6);
  color: var(--text-muted);
  font-size: 0.9rem;
}

.report-row strong {
  color: var(--brand-strong);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.report-footnote {
  margin: 0.75rem 0 0;
  color: var(--text-soft);
  font-size: 0.85rem;
}

.hero-implementation {
  position: absolute;
  left: 0.9rem;
  bottom: 0.5rem;
  width: min(68%, 304px);
  padding: 0.95rem 0.95rem 1rem;
}

.implementation-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.5rem;
}

.implementation-list li {
  position: relative;
  color: var(--text-muted);
  font-size: 0.88rem;
  padding-left: 1.05rem;
}

.implementation-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 0.44rem;
  height: 0.44rem;
  border-radius: 50%;
  background: var(--brand);
}

.hero-workflow {
  position: absolute;
  right: 0;
  bottom: 0.85rem;
  width: min(52%, 230px);
  padding: 0.9rem 0.9rem 0.95rem;
  background: #163e59;
  border-color: rgba(22, 62, 89, 0.62);
  color: #e5f2f9;
}

.hero-workflow p {
  margin: 0;
  color: #e5f2f9;
  font-size: 0.87rem;
}

.hero-workflow .hero-card-eyebrow {
  color: rgba(195, 216, 228, 0.9);
}

.btn {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  padding: 0.66rem 1.18rem;
  font-weight: 650;
  font-size: 0.94rem;
  transition:
    transform var(--motion-fast) var(--ease-standard),
    box-shadow var(--motion-fast) var(--ease-standard),
    background-color var(--motion-fast) var(--ease-standard),
    border-color var(--motion-fast) var(--ease-standard),
    color var(--motion-fast) var(--ease-standard);
}

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

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: linear-gradient(140deg, var(--brand) 0%, var(--brand-strong) 100%);
  color: #fff;
  box-shadow: 0 12px 22px rgba(18, 62, 90, 0.24);
}

.btn-primary:hover {
  box-shadow: 0 16px 30px rgba(18, 62, 90, 0.3);
}

.btn-secondary {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.78);
  color: var(--text-soft);
  font-weight: 600;
}

.btn-secondary:hover {
  border-color: var(--brand);
  background: #fff;
  color: var(--brand-strong);
}

.btn-header {
  margin-left: 0;
  padding-inline: 0.88rem;
  font-size: 0.79rem;
  border-color: rgba(22, 73, 105, 0.34);
  background: linear-gradient(140deg, var(--brand) 0%, var(--brand-strong) 100%);
  color: #fff;
  box-shadow: 0 10px 18px rgba(17, 57, 83, 0.2);
}

.btn-header:hover {
  border-color: rgba(22, 73, 105, 0.5);
  box-shadow: 0 14px 22px rgba(17, 57, 83, 0.26);
}

.btn-header.is-active {
  border-color: rgba(166, 205, 230, 0.85);
  box-shadow: 0 0 0 1px rgba(166, 205, 230, 0.45), 0 12px 22px rgba(17, 57, 83, 0.24);
}

.btn-header-secondary {
  border-color: rgba(151, 178, 199, 0.7);
  background: rgba(240, 247, 252, 0.95);
  color: var(--brand-strong);
  box-shadow: none;
}

.btn-header-secondary:hover {
  border-color: rgba(122, 155, 179, 0.82);
  background: #fff;
  box-shadow: none;
}

.btn-header-secondary.is-active {
  border-color: rgba(113, 148, 173, 0.92);
  background: #fff;
}

.deliverable-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.deliverable-card {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(246, 251, 254, 0.95) 100%);
  border: 1px solid rgba(176, 195, 208, 0.64);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.06rem 1.02rem;
  box-shadow: var(--shadow-soft);
  transition:
    transform var(--motion-base) var(--ease-standard),
    border-color var(--motion-base) var(--ease-standard),
    box-shadow var(--motion-base) var(--ease-standard);
  overflow: hidden;
}

.deliverable-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(22, 78, 113, 0.7) 0%, rgba(22, 78, 113, 0.18) 100%);
}

.included-support {
  margin: -0.18rem 0 0.88rem;
  max-width: 68ch;
  color: var(--text-muted);
}

.included-chips {
  margin: 0 0 1.4rem;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.48rem;
}

.included-chips li {
  padding: 0.3rem 0.62rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(168, 187, 201, 0.65);
  background: rgba(248, 252, 254, 0.95);
  color: var(--text-soft);
  font-size: 0.79rem;
}

.deliverable-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.45rem;
  margin-bottom: 0.55rem;
}

.deliverable-key {
  margin: 0;
  color: var(--label-text);
  font-size: 0.74rem;
  letter-spacing: 0.085em;
  text-transform: uppercase;
  font-weight: 650;
}

.deliverable-state {
  margin: 0;
  font-size: 0.69rem;
  letter-spacing: 0.085em;
  text-transform: uppercase;
  font-weight: 650;
  color: var(--badge-text);
  background: var(--badge-bg);
  border: 1px solid var(--badge-border);
  border-radius: var(--radius-pill);
  padding: 0.17rem 0.44rem;
}

.deliverable-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.04rem;
}

.deliverable-copy {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.91rem;
}

.deliverable-proof {
  margin: 0.72rem 0 0;
  padding-top: 0.68rem;
  border-top: 1px solid rgba(184, 201, 212, 0.58);
  color: var(--text-soft);
  font-size: 0.8rem;
}

.included-guardrail {
  margin: 1.1rem 0 0;
  padding: 0.76rem 0.82rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(168, 187, 201, 0.66);
  background: rgba(248, 252, 254, 0.92);
  color: var(--text-soft);
  font-size: 0.9rem;
}

.deliverable-card:hover {
  transform: translateY(-2px);
  border-color: rgba(22, 83, 120, 0.52);
  box-shadow: 0 20px 36px rgba(15, 39, 58, 0.15);
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 1.15rem 1.25rem;
  align-items: start;
}

.process-support {
  margin: -0.2rem 0 1.2rem;
  max-width: 64ch;
  color: var(--text-muted);
}

.process-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.78rem;
}

.process-step {
  position: relative;
  border: 1px solid rgba(177, 195, 206, 0.58);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
  padding: 1rem 1.04rem;
  transition:
    transform var(--motion-base) var(--ease-standard),
    border-color var(--motion-base) var(--ease-standard),
    box-shadow var(--motion-base) var(--ease-standard);
}

.process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 1.3rem;
  bottom: -0.74rem;
  width: 1px;
  height: 0.74rem;
  background: rgba(163, 183, 196, 0.82);
}

.process-step:hover {
  transform: translateY(-2px);
  border-color: rgba(23, 84, 121, 0.5);
  box-shadow: 0 20px 34px rgba(15, 39, 58, 0.14);
}

.process-step-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.55rem;
  margin-bottom: 0.55rem;
}

.step-number {
  margin: 0;
  width: fit-content;
  padding: 0.22rem 0.55rem;
  border-radius: var(--radius-pill);
  background: #e7eef4;
  color: #2f4b61;
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.06em;
}

.step-state {
  margin: 0;
  font-size: 0.69rem;
  letter-spacing: 0.085em;
  text-transform: uppercase;
  font-weight: 650;
  color: var(--badge-text);
  background: var(--badge-bg);
  border: 1px solid var(--badge-border);
  border-radius: var(--radius-pill);
  padding: 0.16rem 0.46rem;
}

.process-list h3 {
  font-size: 1.04rem;
  margin-bottom: 0.42rem;
}

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

.step-next {
  margin-top: 0.58rem !important;
  padding-top: 0.56rem;
  border-top: 1px solid rgba(181, 199, 210, 0.56);
  color: var(--text-soft) !important;
  font-size: 0.82rem;
}

.process-requirements {
  border: 1px solid rgba(171, 188, 200, 0.64);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(247, 252, 254, 0.96) 100%);
  box-shadow: var(--shadow-soft);
  padding: 1.05rem 1.08rem;
  transition:
    border-color var(--motion-base) var(--ease-standard),
    box-shadow var(--motion-base) var(--ease-standard);
}

.process-requirements:hover {
  border-color: rgba(23, 84, 121, 0.42);
  box-shadow: 0 18px 32px rgba(15, 39, 58, 0.13);
}

.process-side-kicker {
  margin-bottom: 0.65rem;
  font-size: 0.76rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--label-text);
  font-weight: 650;
}

.process-requirements ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--text-muted);
  display: grid;
  gap: 0.5rem;
}

.process-side-note {
  margin: 0.78rem 0 0;
  padding-top: 0.72rem;
  border-top: 1px solid rgba(181, 199, 210, 0.58);
  color: var(--text-soft);
  font-size: 0.87rem;
}

.scope-support {
  margin: -0.18rem 0 1.18rem;
  max-width: 70ch;
  color: var(--text-muted);
}

.scope-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  gap: 1.05rem;
  align-items: start;
}

.scope-panels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem;
}

.scope-card {
  background: #fff;
  border: 1px solid rgba(171, 188, 200, 0.62);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: 1.08rem 1.04rem;
  transition:
    transform var(--motion-base) var(--ease-standard),
    border-color var(--motion-base) var(--ease-standard),
    box-shadow var(--motion-base) var(--ease-standard);
}

.scope-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 34px rgba(15, 39, 58, 0.13);
}

.scope-card-fit {
  background: linear-gradient(180deg, rgba(249, 252, 254, 0.97) 0%, rgba(242, 247, 251, 0.97) 100%);
}

.scope-card-not-fit {
  background: linear-gradient(180deg, rgba(252, 250, 247, 0.97) 0%, rgba(246, 242, 237, 0.97) 100%);
  border-color: rgba(186, 173, 161, 0.58);
}

.scope-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  margin-bottom: 0.62rem;
}

.scope-card h3 {
  margin-bottom: 0;
  font-size: 1.08rem;
}

.scope-badge {
  margin: 0;
  font-size: 0.67rem;
  letter-spacing: 0.085em;
  text-transform: uppercase;
  font-weight: 650;
  color: var(--badge-text);
  background: var(--badge-bg);
  border: 1px solid var(--badge-border);
  border-radius: var(--radius-pill);
  padding: 0.16rem 0.46rem;
  white-space: nowrap;
}

.scope-badge-muted {
  color: var(--badge-text-muted);
  background: var(--badge-bg-muted);
  border-color: var(--badge-border-muted);
}

.scope-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.46rem;
}

.scope-list li {
  position: relative;
  padding-left: 1.02rem;
  color: var(--text-muted);
}

.scope-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.57rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: rgba(23, 78, 113, 0.7);
}

.scope-checker {
  border: 1px solid rgba(171, 188, 200, 0.62);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, rgba(247, 251, 254, 0.97) 100%);
  box-shadow: var(--shadow-soft);
  padding: 1.05rem 1.04rem;
  transition:
    border-color var(--motion-base) var(--ease-standard),
    box-shadow var(--motion-base) var(--ease-standard);
}

.scope-checker:hover {
  border-color: rgba(23, 84, 121, 0.4);
  box-shadow: 0 18px 32px rgba(15, 39, 58, 0.12);
}

.scope-checker-kicker {
  margin-bottom: 0.66rem;
  font-size: 0.76rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--label-text);
  font-weight: 650;
}

.scope-checker-form {
  display: grid;
  gap: 0.6rem;
}

.fit-question {
  margin: 0;
  padding: 0.64rem 0.66rem;
  border: 1px solid rgba(180, 196, 208, 0.62);
  border-radius: var(--radius-xs);
  background: rgba(251, 254, 255, 0.95);
  transition:
    border-color var(--motion-fast) var(--ease-standard),
    background-color var(--motion-fast) var(--ease-standard);
}

.fit-question:focus-within {
  border-color: rgba(23, 84, 121, 0.45);
  background: #fff;
}

.fit-question legend {
  padding: 0;
  margin-bottom: 0.42rem;
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 600;
}

.fit-option-row {
  display: flex;
  gap: 0.42rem;
}

.fit-option-row label {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.83rem;
  color: var(--text-muted);
  border: 1px solid rgba(184, 201, 212, 0.64);
  border-radius: var(--radius-pill);
  padding: 0.22rem 0.52rem;
  background: #fff;
}

.fit-option-row input {
  accent-color: var(--brand);
}

.fit-result-label {
  margin: 0.85rem 0 0.3rem;
  color: var(--label-text);
  font-size: 0.76rem;
  letter-spacing: 0.085em;
  text-transform: uppercase;
  font-weight: 650;
}

.fit-result {
  margin: 0;
  border-radius: var(--radius-xs);
  padding: 0.54rem 0.64rem;
  border: 1px solid rgba(176, 194, 206, 0.62);
  background: rgba(248, 252, 254, 0.95);
  color: var(--text-muted);
  font-weight: 600;
}

.fit-result.in-scope {
  color: var(--state-in-text);
  background: var(--state-in-bg);
  border-color: var(--state-in-border);
}

.fit-result.out-scope {
  color: var(--state-out-text);
  background: var(--state-out-bg);
  border-color: var(--state-out-border);
}

.fit-result.check-first {
  color: var(--state-check-text);
  background: var(--state-check-bg);
  border-color: var(--state-check-border);
}

.scope-checker-note {
  margin: 0.66rem 0 0;
  color: var(--text-soft);
  font-size: 0.84rem;
}

.scope-note {
  margin: 0.95rem 0 0;
  color: var(--text-soft);
  max-width: 80ch;
}

.proof-grid {
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  gap: 1.5rem;
  align-items: start;
}

.proof-copy h2 {
  font-size: clamp(1.95rem, 3vw, 2.7rem);
  margin-bottom: 0.95rem;
}

.proof-copy > p {
  color: var(--text-muted);
  max-width: 62ch;
  margin-bottom: 1rem;
}

.proof-includes {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.52rem;
}

.proof-includes li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--text-muted);
}

.proof-includes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--brand);
}

.proof-preview-btn {
  margin-top: 1.12rem;
}

.proof-stack {
  position: relative;
  display: grid;
  gap: 0.75rem;
}

.proof-card {
  border: 1px solid rgba(166, 185, 197, 0.62);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-card);
  transition:
    transform var(--motion-base) var(--ease-standard),
    border-color var(--motion-base) var(--ease-standard),
    box-shadow var(--motion-base) var(--ease-standard);
}

.proof-card:hover {
  transform: translateY(-2px);
  border-color: rgba(23, 84, 121, 0.48);
  box-shadow: var(--shadow-pop);
}

.proof-report {
  padding: 1.1rem 1.1rem 1.2rem;
  z-index: 3;
}

.proof-report-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.4rem 0.8rem;
  margin-bottom: 0.74rem;
}

.proof-doc-title {
  margin: 0;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.085em;
  font-weight: 650;
  color: var(--label-text);
}

.proof-doc-meta {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.82rem;
}

.proof-table {
  border: 1px solid rgba(175, 192, 204, 0.62);
  border-radius: 12px;
  overflow: hidden;
}

.proof-row {
  display: grid;
  grid-template-columns: 1.2fr auto 1fr;
  gap: 0.65rem;
  align-items: center;
  padding: 0.62rem 0.7rem;
  border-top: 1px solid rgba(175, 192, 204, 0.55);
}

.proof-row:first-child {
  border-top: 0;
}

.proof-row-head {
  background: var(--surface-muted);
  color: var(--text-soft);
  font-size: 0.77rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 700;
}

.proof-deliverable,
.proof-url {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.proof-url {
  font-size: 0.82rem;
  color: var(--text-soft);
}

.status-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  font-size: 0.74rem;
  letter-spacing: 0.085em;
  text-transform: uppercase;
  padding: 0.22rem 0.5rem;
  border-radius: 999px;
  color: var(--badge-text);
  background: var(--badge-bg);
  border: 1px solid var(--badge-border);
}

.proof-report-note {
  margin: 0.78rem 0 0;
  color: var(--text-soft);
  font-size: 0.86rem;
}

.proof-evidence {
  padding: 0.95rem;
  margin-left: 1.5rem;
  margin-top: -1.6rem;
  z-index: 2;
}

.proof-card-kicker {
  margin-bottom: 0.6rem;
  font-size: 0.75rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-weight: 650;
  color: var(--label-text);
}

.evidence-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}

.evidence-shot {
  border: 1px solid rgba(173, 191, 203, 0.6);
  border-radius: 11px;
  padding: 0.6rem;
  min-height: 88px;
  background:
    linear-gradient(180deg, rgba(249, 252, 254, 0.95) 0%, rgba(240, 247, 251, 0.95) 100%);
}

.evidence-shot p {
  margin-bottom: 0.32rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
}

.evidence-shot span {
  font-size: 0.76rem;
  color: var(--text-soft);
}

.proof-status {
  padding: 0.92rem 0.95rem;
  margin-left: 0.75rem;
  margin-top: -0.35rem;
  z-index: 1;
}

.proof-status ul {
  margin: 0;
  padding-left: 1.05rem;
  color: var(--text-muted);
  display: grid;
  gap: 0.45rem;
}

.proof-modal[hidden] {
  display: none;
}

.proof-modal {
  position: fixed;
  inset: 0;
  z-index: 210;
  display: grid;
  place-items: center;
  padding: 1.1rem;
}

.proof-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(14, 28, 39, 0.52);
  backdrop-filter: blur(2px);
}

.proof-modal-card {
  position: relative;
  width: min(860px, 100%);
  max-height: min(88vh, 760px);
  overflow: auto;
  border-radius: var(--radius-md);
  border: 1px solid rgba(160, 180, 194, 0.66);
  background: #fff;
  box-shadow: 0 34px 56px rgba(8, 25, 38, 0.34);
  padding: 1.2rem 1.2rem 1.3rem;
}

.proof-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 0.7rem;
}

.proof-modal-header h3 {
  margin: 0;
  font-size: 1.2rem;
}

.proof-modal-close {
  border: 1px solid var(--line-strong);
  background: #fff;
  border-radius: var(--radius-pill);
  padding: 0.36rem 0.72rem;
  font-weight: 600;
  color: var(--brand-strong);
  cursor: pointer;
  transition:
    border-color var(--motion-fast) var(--ease-standard),
    color var(--motion-fast) var(--ease-standard),
    background-color var(--motion-fast) var(--ease-standard);
}

.proof-modal-close:hover {
  border-color: rgba(23, 84, 121, 0.5);
  color: var(--brand);
  background: var(--surface-soft);
}

.proof-modal-grid {
  margin: 0.95rem 0 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.72rem;
}

.proof-modal-grid article {
  border: 1px solid rgba(177, 193, 205, 0.62);
  border-radius: 12px;
  background: rgba(248, 252, 254, 0.96);
  padding: 0.75rem 0.82rem;
}

.proof-modal-grid h4 {
  margin-bottom: 0.35rem;
  font-size: 0.95rem;
}

.proof-modal-grid p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.88rem;
}

body.modal-open {
  overflow: hidden;
}

.faq-support {
  margin: -0.18rem 0 1.08rem;
  max-width: 66ch;
  color: var(--text-muted);
}

.faq-accordion {
  display: grid;
  gap: 0.68rem;
}

.faq-item {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(173, 190, 202, 0.64);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition:
    border-color var(--motion-base) var(--ease-standard),
    box-shadow var(--motion-base) var(--ease-standard);
}

.faq-item:hover {
  border-color: rgba(23, 84, 121, 0.44);
  box-shadow: 0 16px 30px rgba(15, 39, 58, 0.12);
}

.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
  padding: 0.85rem 1rem;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 620;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  cursor: pointer;
  transition: background-color var(--motion-fast) var(--ease-standard);
}

.faq-question:hover {
  background: rgba(245, 250, 253, 0.9);
}

.faq-item.is-open .faq-question {
  border-bottom: 1px solid rgba(173, 190, 202, 0.46);
}

.faq-icon {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  border: 1px solid rgba(170, 189, 201, 0.72);
  position: relative;
  flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0.55rem;
  height: 1px;
  background: var(--brand-strong);
  transform: translate(-50%, -50%);
  transition: transform 0.22s ease;
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open .faq-icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height var(--motion-base) var(--ease-standard),
    opacity var(--motion-fast) var(--ease-standard);
}

.faq-item.is-open .faq-answer {
  opacity: 1;
}

.faq-answer p {
  margin: 0;
  padding: 0.05rem 1rem 0.92rem;
  color: var(--text-muted);
  font-size: 0.91rem;
  line-height: 1.58;
  width: 100%;
}

.final-cta {
  background:
    radial-gradient(circle at 82% 14%, rgba(122, 167, 196, 0.18) 0%, transparent 35%),
    linear-gradient(152deg, var(--dark-bg-start) 0%, var(--dark-bg-mid) 58%, var(--dark-bg-end) 100%);
  color: var(--dark-text);
}

.cta-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(0, 0.78fr);
  gap: 1.26rem 1.4rem;
  align-items: stretch;
}

.final-cta .eyebrow {
  color: var(--dark-text-muted);
}

.final-cta h2 {
  color: var(--dark-text);
  font-size: clamp(1.9rem, 3vw, 2.55rem);
  margin-bottom: 0.78rem;
}

.cta-primary {
  border: 1px solid rgba(190, 215, 231, 0.44);
  border-radius: var(--radius-md);
  background:
    linear-gradient(168deg, rgba(255, 255, 255, 0.13) 0%, rgba(255, 255, 255, 0.04) 100%),
    rgba(10, 30, 44, 0.45);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    0 26px 46px rgba(7, 22, 33, 0.28);
  padding: 1.4rem 1.42rem 1.5rem;
}

.cta-copy {
  margin: 0 0 0.94rem;
  max-width: 64ch;
  color: var(--dark-text-soft);
}

.cta-primary-teaser {
  display: grid;
  align-content: start;
  gap: 0.76rem;
}

.setup-package-strip-teaser {
  max-width: 40rem;
}

.setup-package-strip-teaser .setup-package-copy {
  max-width: 47ch;
}

.cta-teaser-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.46rem;
}

.cta-teaser-list li {
  border: 1px solid rgba(178, 206, 221, 0.38);
  border-radius: var(--radius-xs);
  background: rgba(255, 255, 255, 0.06);
  padding: 0.56rem 0.64rem;
  color: rgba(214, 231, 241, 0.94);
  font-size: 0.82rem;
  line-height: 1.42;
}

.cta-teaser-note {
  margin: 0;
  color: rgba(199, 219, 232, 0.93);
  font-size: 0.82rem;
}

.cta-teaser-actions {
  margin-top: 0.16rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.56rem;
}

.cta-teaser-actions .btn {
  min-height: 2.96rem;
}

.cta-teaser-secondary {
  border-color: rgba(180, 208, 224, 0.46);
  color: rgba(216, 233, 242, 0.92);
  background: rgba(255, 255, 255, 0.08);
}

.cta-teaser-secondary:hover {
  background: rgba(255, 255, 255, 0.13);
}

.setup-form {
  margin: 0;
  display: grid;
  gap: 0.9rem;
  width: 100%;
  min-width: 0;
}

.setup-form > * {
  width: 100%;
  min-width: 0;
  max-width: 100%;
}

.setup-form-guide {
  margin: 0;
  max-width: 68ch;
  color: rgba(205, 225, 239, 0.9);
  font-size: 0.88rem;
}

.setup-package-strip {
  border: 1px solid rgba(194, 219, 233, 0.46);
  border-radius: var(--radius-sm);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.06) 100%),
    rgba(11, 35, 50, 0.58);
  padding: 0.88rem 0.96rem;
  display: grid;
  gap: 0.72rem;
}

.setup-package-main {
  display: grid;
  gap: 0.16rem;
}

.setup-package-overline {
  margin: 0;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark-text-muted);
  font-weight: 670;
}

.setup-package-heading {
  display: none;
  margin: 0;
  color: var(--dark-text);
  font-size: clamp(1.12rem, 1.8vw, 1.34rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
}

.setup-package-fit {
  display: none;
  margin: 0;
  color: rgba(199, 219, 232, 0.9);
  font-size: 0.79rem;
  line-height: 1.46;
}

.setup-package-included {
  display: none;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 0.34rem;
}

.setup-package-included li {
  position: relative;
  margin: 0;
  padding-left: 0.86rem;
  color: rgba(202, 223, 236, 0.92);
  font-size: 0.78rem;
  line-height: 1.42;
}

.setup-package-included li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.36rem;
  height: 0.36rem;
  border-radius: 50%;
  background: rgba(148, 199, 230, 0.88);
}

.setup-package-price-wrap {
  margin: 0;
  display: grid;
  gap: 0.2rem;
}

.setup-package-price {
  margin: 0;
  font-size: clamp(1.38rem, 2vw, 1.62rem);
  line-height: 1.05;
  font-weight: 760;
  color: var(--dark-text);
}

.setup-package-copy {
  margin: 0;
  color: rgba(204, 224, 238, 0.9);
  font-size: 0.84rem;
}

.setup-package-next {
  display: none;
  margin: 0;
  color: rgba(194, 215, 229, 0.92);
  font-size: 0.76rem;
  line-height: 1.45;
}

.setup-package-points {
  display: grid;
  gap: 0.34rem;
}

.setup-package-points p {
  margin: 0;
  font-size: 0.78rem;
  color: rgba(197, 218, 232, 0.9);
}

.setup-main-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(230px, 0.42fr);
  gap: 0.88rem;
  align-items: start;
}

.setup-sections {
  display: grid;
  gap: 0.72rem;
  min-width: 0;
}

.setup-section {
  border: 1px solid rgba(182, 208, 223, 0.4);
  border-radius: var(--radius-sm);
  background: rgba(9, 28, 40, 0.38);
  padding: 0.84rem 0.88rem;
  display: grid;
  gap: 0.62rem;
  min-width: 0;
}

.setup-section-overline {
  margin: 0;
  font-size: 0.67rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(192, 214, 229, 0.88);
  font-weight: 640;
}

.setup-section h3 {
  margin: 0;
  color: var(--dark-text);
  font-size: 1.15rem;
}

.setup-section-helper {
  margin: -0.18rem 0 0;
  color: rgba(196, 217, 231, 0.86);
  font-size: 0.8rem;
  line-height: 1.5;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.68rem;
  min-width: 0;
}

.field {
  display: grid;
  gap: 0.34rem;
  min-width: 0;
}

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

.field span {
  font-size: 0.78rem;
  color: rgba(206, 226, 239, 0.9);
  font-weight: 620;
}

.field-required {
  color: #8fcaee;
  font-weight: 730;
}

.field :is(input, textarea, select) {
  width: 100%;
  min-height: 2.8rem;
  border: 1px solid rgba(186, 212, 227, 0.44);
  border-radius: var(--radius-xs);
  background: rgba(7, 27, 39, 0.5);
  color: rgba(236, 245, 251, 0.96);
  padding: 0.6rem 0.66rem;
  font: inherit;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.field select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 2.3rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14' fill='none'%3E%3Cpath d='M3 5.5L7 9.5L11 5.5' stroke='%23d0e3ef' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-position: right 0.72rem center;
  background-size: 0.76rem 0.76rem;
  background-repeat: no-repeat;
}

.field select::-ms-expand {
  display: none;
}

.field :is(input, textarea)::placeholder {
  color: rgba(188, 209, 223, 0.72);
}

.field textarea {
  resize: vertical;
  min-height: 102px;
}

.field :is(input, textarea, select):focus {
  border-color: #8bb6cf;
  box-shadow: 0 0 0 3px rgba(130, 177, 204, 0.26);
  background: rgba(8, 31, 45, 0.64);
  outline: none;
}

.field-group {
  margin: 0;
  border: 1px solid rgba(176, 203, 218, 0.42);
  border-radius: var(--radius-xs);
  background: rgba(8, 30, 43, 0.46);
  padding: 0.66rem 0.72rem;
  display: grid;
  gap: 0.4rem;
  min-width: 0;
}

.field-group legend {
  padding: 0;
  color: rgba(214, 232, 243, 0.94);
  font-size: 0.8rem;
  font-weight: 620;
  line-height: 1.42;
}

.field-hint {
  margin: 0;
  color: rgba(183, 206, 222, 0.84);
  font-size: 0.74rem;
  line-height: 1.48;
}

.check-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.46rem;
}

.check-chip {
  position: relative;
  display: inline-flex;
  min-width: 0;
  max-width: 100%;
  flex: 0 1 auto;
}

.check-chip input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.check-chip span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.2rem;
  padding: 0.28rem 0.66rem;
  min-width: 0;
  max-width: 100%;
  white-space: normal;
  overflow-wrap: anywhere;
  text-align: center;
  border: 1px solid rgba(174, 201, 217, 0.48);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(218, 234, 244, 0.92);
  font-size: 0.8rem;
  line-height: 1.25;
  transition:
    background-color var(--motion-fast) var(--ease-standard),
    border-color var(--motion-fast) var(--ease-standard),
    color var(--motion-fast) var(--ease-standard),
    transform var(--motion-fast) var(--ease-standard),
    box-shadow var(--motion-fast) var(--ease-standard);
}

.check-chip input:checked + span {
  border-color: rgba(176, 218, 241, 0.92);
  background: rgba(109, 163, 194, 0.28);
  color: #f4fbff;
  box-shadow: inset 0 0 0 1px rgba(177, 218, 241, 0.22);
}

.check-chip input:focus-visible + span {
  outline: 3px solid rgba(140, 186, 212, 0.4);
  outline-offset: 2px;
}

.check-chip:hover span {
  border-color: rgba(188, 216, 232, 0.72);
  transform: translateY(-1px);
}

.field-error {
  margin: 0;
  min-height: 1.1em;
  color: #ffd2ca;
  font-size: 0.75rem;
  line-height: 1.35;
}

.field-error.is-note {
  color: rgba(196, 216, 228, 0.92);
}

.choice-field {
  padding: 0.66rem 0.72rem;
}

.choice-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.44rem;
  width: 100%;
  min-width: 0;
}

.choice-pill {
  position: relative;
  display: inline-flex;
  min-width: 0;
  max-width: 100%;
  flex: 0 1 auto;
}

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

.choice-pill span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.2rem;
  padding: 0.28rem 0.72rem;
  min-width: 0;
  max-width: 100%;
  white-space: normal;
  overflow-wrap: anywhere;
  text-align: center;
  border: 1px solid rgba(174, 200, 216, 0.48);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(217, 233, 243, 0.9);
  font-size: 0.79rem;
  transition:
    background-color var(--motion-fast) var(--ease-standard),
    border-color var(--motion-fast) var(--ease-standard),
    color var(--motion-fast) var(--ease-standard),
    box-shadow var(--motion-fast) var(--ease-standard);
}

.choice-pill input:checked + span {
  border-color: rgba(176, 218, 241, 0.92);
  background: rgba(96, 154, 188, 0.28);
  color: #f5fbff;
  box-shadow: inset 0 0 0 1px rgba(176, 217, 240, 0.22);
}

.choice-pill input:focus-visible + span {
  outline: 3px solid rgba(140, 186, 212, 0.4);
  outline-offset: 2px;
}

.choice-pill:hover span {
  border-color: rgba(188, 216, 232, 0.72);
}

.inline-note {
  margin: 0.12rem 0 0;
  color: var(--dark-text-muted);
  font-size: 0.76rem;
  line-height: 1.45;
}

.inline-note-review {
  margin: 0.14rem 0 0;
  border: 1px solid rgba(184, 208, 222, 0.45);
  border-radius: var(--radius-xs);
  background: rgba(173, 205, 226, 0.14);
  color: rgba(217, 234, 244, 0.94);
  padding: 0.56rem 0.62rem;
  font-size: 0.75rem;
}

.conditional-wrap {
  display: grid;
  gap: 0.42rem;
  animation: setupCondIn 0.22s var(--ease-standard);
}

.conditional-wrap[hidden] {
  display: none;
}

.tool-detail-wrap {
  border-left: 1px solid rgba(181, 208, 223, 0.4);
  padding-left: 0.6rem;
}

.tools-assurance {
  margin-top: 0.08rem;
  color: rgba(181, 205, 220, 0.88);
  font-size: 0.74rem;
}

@keyframes setupCondIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fit-snapshot {
  border: 1px solid rgba(182, 208, 223, 0.4);
  border-radius: var(--radius-sm);
  background: rgba(8, 29, 42, 0.48);
  padding: 0.78rem 0.8rem;
  display: grid;
  align-content: start;
  gap: 0.54rem;
  position: sticky;
  top: 1rem;
}

.fit-snapshot-overline {
  margin: 0;
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(190, 213, 228, 0.88);
  font-weight: 640;
}

.fit-snapshot h3 {
  margin: 0;
  color: var(--dark-text);
  font-size: 1rem;
}

.fit-snapshot-helper {
  margin: 0;
  color: rgba(186, 208, 223, 0.88);
  font-size: 0.74rem;
  line-height: 1.44;
}

.fit-snapshot-list {
  margin: 0.08rem 0 0;
  display: grid;
  gap: 0.3rem;
}

.fit-snapshot-list div {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 0.6rem;
  border: 1px solid rgba(172, 199, 214, 0.3);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  padding: 0.36rem 0.5rem;
}

.fit-snapshot-list dt {
  color: rgba(190, 213, 227, 0.85);
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.fit-snapshot-list dd {
  margin: 0;
  color: rgba(217, 234, 244, 0.82);
  font-size: 0.77rem;
  text-align: right;
  overflow-wrap: anywhere;
  font-weight: 540;
}

.fit-snapshot-list dd.is-provided {
  color: rgba(233, 244, 250, 0.95);
}

.fit-snapshot-list dd.is-missing {
  color: rgba(191, 211, 224, 0.78);
}

.checkbox-field {
  margin-top: 0.1rem;
  display: inline-flex;
  align-items: flex-start;
  gap: 0.48rem;
  color: rgba(214, 231, 241, 0.94);
  font-size: 0.83rem;
}

.setup-ack {
  max-width: 74ch;
}

.checkbox-field input {
  margin-top: 0.18rem;
  accent-color: #88b3cc;
}

.setup-submit-row {
  margin-top: 0.36rem;
  display: grid;
  gap: 0.36rem;
  justify-items: start;
}

.setup-status {
  margin: 0;
  min-height: 1.2em;
  color: rgba(198, 217, 230, 0.92);
  font-size: 0.78rem;
}

.setup-status.is-error {
  color: #ffd2cc;
}

.setup-status.is-success {
  color: #d5f3e2;
}

.setup-form.is-submitting .setup-status {
  color: rgba(211, 230, 242, 0.94);
}

.btn:disabled,
.btn[disabled] {
  opacity: 0.72;
  cursor: not-allowed;
  transform: none !important;
}

.btn.is-loading {
  pointer-events: none;
}

.honeypot-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.honeypot-field label {
  display: block;
}

.turnstile-wrap {
  margin-top: 0.12rem;
  border: 1px solid rgba(173, 205, 221, 0.36);
  border-radius: var(--radius-xs);
  background: rgba(8, 30, 43, 0.44);
  padding: 0.58rem 0.6rem;
  display: grid;
  gap: 0.36rem;
}

.turnstile-slot {
  min-height: 66px;
}

.turnstile-helper {
  color: rgba(187, 209, 224, 0.88);
}

.setup-form.was-validated :is(input, textarea, select):invalid {
  border-color: #cc7067;
  box-shadow: 0 0 0 3px rgba(197, 106, 96, 0.24);
}

.setup-form.was-validated .field-group.is-invalid {
  border-color: rgba(204, 116, 106, 0.95);
  box-shadow: inset 0 0 0 1px rgba(205, 120, 109, 0.3);
}

.setup-form.was-validated .checkbox-field input:invalid + span {
  color: #ffd2cc;
}

.setup-submit-helper {
  margin: -0.14rem 0 0;
  color: rgba(200, 220, 232, 0.93);
  font-size: 0.8rem;
  line-height: 1.48;
}

.setup-microcopy {
  display: grid;
  gap: 0.18rem;
}

.setup-microcopy p {
  margin: 0;
  color: rgba(194, 214, 228, 0.92);
  font-size: 0.78rem;
  line-height: 1.45;
}

.setup-confirmation {
  margin-top: 0.32rem;
  border: 1px solid rgba(178, 214, 236, 0.44);
  border-radius: var(--radius-sm);
  background:
    linear-gradient(160deg, rgba(122, 184, 224, 0.18) 0%, rgba(122, 184, 224, 0.06) 100%),
    rgba(8, 29, 42, 0.56);
  padding: 0.88rem 0.94rem;
  display: grid;
  gap: 0.54rem;
}

.setup-confirmation-kicker {
  margin: 0;
  color: rgba(199, 223, 238, 0.86);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 670;
}

.setup-confirmation h2 {
  margin: 0;
  color: var(--dark-text);
  font-size: 1.16rem;
}

.setup-next-list {
  margin: 0;
  padding: 0 0 0 1rem;
  display: grid;
  gap: 0.3rem;
}

.setup-next-list li {
  color: rgba(214, 231, 241, 0.92);
  font-size: 0.81rem;
  line-height: 1.42;
}

.submission-page .request-side {
  position: static;
  top: auto;
}

.submission-main h1 {
  margin-bottom: 0.84rem;
}

.submission-main .setup-confirmation,
.submission-main .free-check-confirmation {
  margin-top: 0.84rem;
}

.submission-actions {
  margin-top: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.56rem;
}

.cta-confidence,
.cta-guarantee {
  margin: 0.66rem 0 0;
  max-width: 65ch;
  color: var(--dark-text-soft);
  font-size: 0.84rem;
}

.cta-confidence-detail {
  margin-top: 0.36rem;
}

.cta-guarantee {
  margin-top: 0.36rem;
}

.cta-secondary-panel {
  border: 1px solid rgba(176, 201, 216, 0.36);
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%),
    rgba(8, 25, 37, 0.14);
  box-shadow: 0 16px 30px rgba(8, 24, 37, 0.2);
  padding: 1.16rem 1.12rem;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  gap: 0.74rem;
  opacity: 0.93;
  transition:
    border-color var(--motion-base) var(--ease-standard),
    box-shadow var(--motion-base) var(--ease-standard),
    opacity var(--motion-base) var(--ease-standard);
}

.cta-secondary-panel:hover {
  border-color: rgba(186, 212, 228, 0.48);
  box-shadow: 0 16px 28px rgba(10, 28, 42, 0.2);
  opacity: 0.98;
}

.cta-secondary-kicker {
  margin: 0 0 0.45rem;
  font-size: 0.73rem;
  letter-spacing: 0.085em;
  text-transform: uppercase;
  color: var(--dark-text-muted);
  font-weight: 650;
}

.cta-secondary-panel h3 {
  margin: 0;
  color: rgba(239, 247, 252, 0.97);
  font-size: 1.2rem;
  max-width: 17ch;
}

.cta-secondary-panel p {
  margin: 0;
  color: rgba(202, 221, 232, 0.9);
  font-size: 0.86rem;
  line-height: 1.54;
}

.cta-secondary-list {
  margin: 0.05rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.42rem;
}

.cta-secondary-list li {
  border: 1px solid rgba(181, 210, 226, 0.3);
  border-radius: var(--radius-xs);
  background: rgba(255, 255, 255, 0.06);
  padding: 0.48rem 0.54rem;
  color: rgba(206, 225, 236, 0.9);
  font-size: 0.79rem;
  line-height: 1.42;
}

.cta-secondary-btn {
  margin-top: 0.32rem;
  width: 100%;
  justify-content: center;
  padding: 0.62rem 1.04rem;
  border-color: rgba(176, 205, 221, 0.4);
  color: rgba(212, 229, 238, 0.9);
  background: rgba(255, 255, 255, 0.06);
  opacity: 0.9;
}

.btn-large {
  padding: 0.88rem 1.5rem;
}

.cta-secondary-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(183, 213, 230, 0.56);
  opacity: 1;
}

.cta-secondary-note {
  margin-top: auto !important;
  color: rgba(178, 201, 216, 0.86) !important;
  font-size: 0.78rem !important;
}

.policy-page {
  padding-top: clamp(5.4rem, 8vw, 6.8rem);
}

.policy-page-shell {
  width: min(100%, 920px);
  display: grid;
  gap: 0.98rem;
}

.policy-header {
  border: 1px solid rgba(182, 205, 219, 0.54);
  border-radius: var(--radius-md);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.95) 0%, rgba(247, 251, 254, 0.9) 100%),
    rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-soft);
  padding: 1.28rem 1.34rem;
}

.policy-kicker {
  margin: 0 0 0.36rem;
  font-size: 0.73rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--label-text);
  font-weight: 630;
}

.policy-header h1 {
  margin: 0 0 0.74rem;
  color: var(--brand-strong);
  font-size: clamp(2.08rem, 3.5vw, 2.82rem);
}

.policy-lead {
  margin: 0;
  max-width: 70ch;
  color: var(--text-muted);
  line-height: 1.7;
}

.policy-meta {
  margin: 0.72rem 0 0;
  color: var(--label-text);
  font-size: 0.86rem;
  line-height: 1.45;
}

.policy-document {
  border: 1px solid rgba(178, 202, 216, 0.52);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 18px 34px rgba(14, 35, 50, 0.1);
  padding: 1.32rem 1.36rem;
}

.policy-section + .policy-section {
  border-top: 1px solid rgba(191, 211, 224, 0.56);
  margin-top: 1.02rem;
  padding-top: 1.02rem;
}

.policy-section h2 {
  margin: 0 0 0.6rem;
  color: var(--brand-strong);
  font-size: clamp(1.18rem, 2.1vw, 1.36rem);
}

.policy-section p {
  margin: 0;
  max-width: 74ch;
  color: var(--text-muted);
  line-height: 1.72;
}

.policy-section p + p {
  margin-top: 0.7rem;
}

.policy-list {
  margin: 0.62rem 0 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.44rem;
  max-width: 74ch;
}

.policy-list li {
  color: var(--text-muted);
  line-height: 1.66;
}

.policy-document a {
  color: var(--brand-strong);
  text-underline-offset: 0.14em;
  text-decoration-color: rgba(17, 63, 92, 0.45);
  transition: text-decoration-color var(--motion-fast) var(--ease-standard);
}

.policy-document a:hover {
  text-decoration-color: currentColor;
}

.request-page {
  padding-top: clamp(5.4rem, 8vw, 6.8rem);
}

.request-page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
  gap: 1.18rem 1.36rem;
  align-items: start;
}

.request-main {
  border: 1px solid rgba(190, 215, 231, 0.44);
  border-radius: var(--radius-md);
  background:
    linear-gradient(168deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.04) 100%),
    rgba(10, 30, 44, 0.46);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.26),
    0 26px 46px rgba(7, 22, 33, 0.3);
  padding: 1.46rem 1.5rem 1.52rem;
}

.request-main h1 {
  margin: 0 0 0.76rem;
  color: var(--dark-text);
  font-size: clamp(2rem, 3.2vw, 2.85rem);
}

.request-lead {
  margin: 0;
  max-width: 66ch;
  color: rgba(208, 227, 238, 0.93);
  font-size: 0.95rem;
  line-height: 1.58;
}

.request-setup-form {
  margin-top: 0.98rem;
}

.request-page .setup-form {
  gap: 1rem;
}

.request-page .setup-package-strip {
  padding: 0.95rem 1rem;
}

.request-page .setup-sections {
  gap: 0.78rem;
}

.request-page .setup-section {
  padding: 0.92rem 0.96rem;
  gap: 0.66rem;
}

.request-page .setup-section h3 {
  font-size: 1.22rem;
}

.request-side {
  position: sticky;
  top: 5.9rem;
  display: grid;
  gap: 0.74rem;
}

.request-side-card {
  border: 1px solid rgba(178, 204, 219, 0.38);
  border-radius: var(--radius-sm);
  background: rgba(9, 29, 42, 0.42);
  box-shadow: 0 14px 28px rgba(8, 23, 35, 0.2);
  padding: 0.82rem 0.86rem;
  display: grid;
  gap: 0.38rem;
}

.request-side-overline {
  margin: 0;
  font-size: 0.67rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(190, 213, 228, 0.88);
  font-weight: 640;
}

.request-side-card h2,
.request-side-card h3 {
  margin: 0;
  color: rgba(240, 248, 252, 0.97);
}

.request-side-card h2 {
  font-size: 1.08rem;
}

.request-side-card h3 {
  font-size: 1rem;
}

.request-side-card p {
  margin: 0;
  color: rgba(200, 220, 232, 0.92);
  font-size: 0.8rem;
  line-height: 1.48;
}

.request-side-price {
  margin-top: 0.08rem !important;
  color: #edf8ff !important;
  font-size: 1.08rem !important;
  font-weight: 700;
}

.request-fit-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.34rem;
}

.request-fit-list li {
  position: relative;
  padding-left: 0.88rem;
  color: rgba(208, 227, 239, 0.92);
  font-size: 0.79rem;
  line-height: 1.4;
}

.request-fit-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.46rem;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: rgba(147, 199, 232, 0.82);
}

.request-page .fit-snapshot {
  position: static;
  top: auto;
}

.request-next-list {
  margin: 0;
  padding: 0 0 0 1rem;
  display: grid;
  gap: 0.28rem;
}

.request-next-list li {
  color: rgba(211, 228, 238, 0.92);
  font-size: 0.79rem;
  line-height: 1.42;
}

.request-config-list {
  margin: 0;
  display: grid;
  gap: 0.42rem;
}

.request-config-list div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.56rem;
  align-items: center;
  border: 1px solid rgba(170, 198, 214, 0.34);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.04);
  padding: 0.44rem 0.52rem;
}

.request-config-list dt {
  margin: 0;
  color: rgba(190, 212, 226, 0.86);
  font-size: 0.69rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.request-config-list dd {
  margin: 0;
  color: rgba(220, 236, 245, 0.95);
  font-size: 0.78rem;
  line-height: 1.35;
  text-align: right;
  font-weight: 560;
}

.request-config-total {
  border-color: rgba(156, 201, 228, 0.48) !important;
  background: rgba(102, 168, 209, 0.14) !important;
}

.request-config-total dd {
  color: #f2fbff;
  font-size: 0.84rem;
  font-weight: 700;
}

.request-config-total dd.is-review {
  color: rgba(218, 237, 248, 0.92);
  font-size: 0.78rem;
  font-weight: 640;
}

.request-config-note {
  margin: 0.04rem 0 0;
  color: rgba(196, 216, 229, 0.9) !important;
  font-size: 0.76rem !important;
  line-height: 1.45;
}

.request-side-secondary .cta-secondary-btn {
  margin-top: 0.16rem;
}

.request-side-secondary .cta-secondary-btn + .cta-secondary-btn {
  margin-top: 0.52rem;
}

.request-side-secondary {
  border-color: rgba(166, 195, 214, 0.3);
  background: rgba(8, 25, 37, 0.38);
  opacity: 0.95;
}

.mobile-pricing-breakdown {
  display: none;
}

.mobile-pricing-breakdown-toggle {
  width: 100%;
  border: 1px solid rgba(178, 205, 219, 0.44);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(226, 238, 245, 0.95);
  min-height: 2.8rem;
  padding: 0.58rem 0.7rem;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 630;
  text-align: left;
  cursor: pointer;
  transition:
    border-color var(--motion-fast) var(--ease-standard),
    background-color var(--motion-fast) var(--ease-standard),
    color var(--motion-fast) var(--ease-standard);
}

.mobile-pricing-breakdown-toggle:hover {
  border-color: rgba(190, 219, 234, 0.72);
  background: rgba(255, 255, 255, 0.12);
}

.mobile-pricing-breakdown-toggle[aria-expanded="true"] {
  border-color: rgba(170, 216, 242, 0.85);
  background: rgba(128, 185, 219, 0.2);
  color: #f5fbff;
}

.mobile-pricing-breakdown-panel {
  border: 1px solid rgba(170, 198, 214, 0.36);
  border-radius: 12px;
  background: rgba(11, 29, 42, 0.52);
  padding: 0.58rem;
  display: grid;
  gap: 0.48rem;
}

.mobile-pricing-breakdown-list {
  margin: 0;
  display: grid;
  gap: 0.34rem;
}

.mobile-pricing-breakdown-list div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.48rem;
  align-items: center;
  border: 1px solid rgba(165, 195, 210, 0.34);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  padding: 0.38rem 0.48rem;
}

.mobile-pricing-breakdown-list dt {
  margin: 0;
  color: rgba(191, 215, 229, 0.88);
  font-size: 0.67rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mobile-pricing-breakdown-list dd {
  margin: 0;
  color: rgba(225, 238, 246, 0.97);
  font-size: 0.78rem;
  line-height: 1.35;
  text-align: right;
  font-weight: 590;
}

.mobile-pricing-breakdown-total {
  border-color: rgba(160, 204, 229, 0.52) !important;
  background: rgba(104, 166, 205, 0.16) !important;
}

.mobile-pricing-breakdown-note {
  margin: 0;
  color: rgba(197, 217, 229, 0.9);
  font-size: 0.74rem;
  line-height: 1.42;
}

.mobile-pricing-sticky {
  display: none;
}

.mobile-pricing-sticky-copy {
  min-width: 0;
}

.mobile-pricing-sticky-total {
  margin: 0;
  color: #f2fbff;
  font-size: 1rem;
  line-height: 1.12;
  letter-spacing: -0.01em;
  font-weight: 730;
}

.mobile-pricing-sticky-summary {
  margin: 0.16rem 0 0;
  color: rgba(202, 224, 237, 0.92);
  font-size: 0.73rem;
  line-height: 1.35;
}

.mobile-pricing-sticky-btn {
  min-height: 2.7rem;
  width: 100%;
  justify-content: center;
}

[data-package-rollout-summary],
[data-package-forms-summary],
[data-package-total-summary],
[data-package-compact-summary] {
  min-width: 0;
  overflow-wrap: anywhere;
}

.is-package-updating {
  animation: packageValuePulse 0.2s var(--ease-standard);
}

@keyframes packageValuePulse {
  from {
    opacity: 0.72;
    transform: translateY(2px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.site-footer {
  background: linear-gradient(180deg, #112636 0%, #0e1f2c 100%);
  color: #d9e5eb;
  padding: 2.7rem 0 2rem;
  border-top: 1px solid rgba(162, 186, 203, 0.2);
}

.footer-shell {
  display: grid;
  gap: 1.4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) repeat(4, minmax(0, 0.72fr));
  gap: 1.2rem 1.45rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid rgba(160, 182, 197, 0.24);
}

.footer-brand {
  max-width: 38ch;
}

.footer-column {
  align-content: start;
}

.brand-footer {
  color: #f2f9ff;
  margin-bottom: 0.75rem;
}

.brand-footer .brand-logo-wrap {
  width: 2.16rem;
  height: 2.16rem;
}

.brand-footer .brand-text strong {
  color: #f2f9ff;
}

.brand-footer .brand-text small {
  color: #9fb7c5;
}

.footer-positioning,
.footer-location,
.footer-note,
.copyright {
  margin: 0;
  color: #b9cbd7;
}

.footer-positioning {
  margin-bottom: 0.42rem;
}

.footer-location {
  color: #9ab3c3;
  font-size: 0.9rem;
}

.footer-heading {
  color: #eff7fc;
  margin: 0 0 0.52rem;
  font-weight: 640;
  font-size: 0.92rem;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.42rem;
}

.footer-links a {
  text-decoration: none;
  color: #cfe0eb;
  transition:
    color var(--motion-fast) var(--ease-standard),
    opacity var(--motion-fast) var(--ease-standard);
}

.footer-links a:hover {
  color: #fff;
  opacity: 0.95;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem 1.2rem;
}

.footer-note {
  font-size: 0.87rem;
  color: #abc1ce;
}

.copyright {
  color: #93acbc;
  font-size: 0.9rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.52s var(--ease-standard),
    transform 0.52s var(--ease-standard);
  will-change: opacity, transform;
}

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

@media (min-width: 1240px) {
  .final-cta .container.cta-layout {
    width: min(100% - 4rem, 1280px);
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: 1.4rem 1.76rem;
  }

  .cta-primary {
    padding: 1.52rem 1.58rem 1.58rem;
  }

  .cta-secondary-panel {
    padding: 1.36rem 1.28rem;
  }

  .setup-main-grid {
    grid-template-columns: minmax(0, 1fr) minmax(250px, 0.44fr);
  }

  .request-page-layout {
    grid-template-columns: minmax(0, 1.22fr) minmax(320px, 0.78fr);
    gap: 1.32rem 1.54rem;
  }

  .request-main {
    padding: 1.58rem 1.62rem 1.62rem;
  }
}

@media (max-width: 1060px) {
  .hero-grid,
  .proof-grid {
    grid-template-columns: 1fr;
    gap: 1.15rem;
  }

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

  .scope-checker {
    max-width: 760px;
  }

  .process-layout {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .proof-stack {
    margin-top: 0.35rem;
  }

  .proof-evidence,
  .proof-status {
    margin-left: 0;
    margin-top: 0;
  }

  .hero-shell {
    padding: 1.12rem;
  }

  .hero-visual {
    max-width: 700px;
    min-height: 420px;
  }

  .hero-report {
    right: 1.1rem;
  }

  .hero-workflow {
    width: min(48%, 220px);
  }

  .deliverable-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.92rem;
  }

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

  .cta-teaser-actions {
    width: 100%;
  }

  .cta-teaser-actions .btn {
    flex: 1 1 210px;
    justify-content: center;
  }

  .setup-main-grid {
    grid-template-columns: 1fr;
  }

  .fit-snapshot {
    position: static;
    top: auto;
  }

  .cta-secondary-panel {
    width: 100%;
  }

  .request-page-layout {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .request-side {
    position: static;
    top: auto;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
    max-width: 52ch;
  }
}

@media (max-width: 800px) {
  body.nav-open-mobile {
    overflow: hidden;
  }

  main section {
    scroll-margin-top: 5.6rem;
  }

  .header-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
    padding: 0.7rem 0;
    min-height: unset;
    position: relative;
  }

  .brand {
    gap: 0.58rem;
  }

  .brand-logo-wrap {
    width: 1.94rem;
    height: 1.94rem;
  }

  .nav-toggle {
    display: inline-flex;
    width: 2.75rem;
    height: 2.75rem;
  }

  .primary-nav {
    grid-column: 1 / -1;
    display: flex;
    margin-left: 0;
    margin-top: 0.52rem;
    width: 100%;
    border: 1px solid rgba(171, 188, 200, 0.66);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 16px 26px rgba(15, 36, 52, 0.14);
    padding: 0.76rem 0.78rem;
    gap: 0.66rem;
    align-items: stretch;
    flex-direction: column;
    max-height: calc(100vh - 5.4rem);
    overflow: auto;
  }

  body.nav-enhanced .primary-nav {
    display: none;
  }

  body.nav-enhanced .site-header.nav-open .primary-nav {
    display: flex;
  }

  .nav-list {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.16rem;
  }

  .nav-link {
    width: 100%;
    min-height: 2.6rem;
    display: inline-flex;
    align-items: center;
    font-size: 0.95rem;
    padding: 0.44rem 0.06rem;
  }

  .header-cta-group {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0.38rem;
  }

  .primary-nav .btn-header {
    width: 100%;
    margin-left: 0;
    justify-content: center;
    min-height: 2.9rem;
  }

  .section {
    padding: 4.2rem 0;
  }

  .policy-page {
    padding-top: 4.9rem;
  }

  .policy-header,
  .policy-document {
    padding: 1.04rem 0.98rem;
  }

  .policy-header h1 {
    font-size: clamp(1.72rem, 8vw, 2.18rem);
  }

  .policy-section + .policy-section {
    margin-top: 0.88rem;
    padding-top: 0.88rem;
  }

  .policy-section h2 {
    font-size: 1.1rem;
  }

  .policy-list {
    padding-left: 1.05rem;
  }

  .hero {
    padding-top: 4.3rem;
  }

  .hero-shell {
    border-radius: var(--radius-lg);
    padding: 0.96rem;
  }

  .hero-copy {
    padding: 0.32rem 0.12rem 0.78rem;
  }

  .hero-copy h1 {
    max-width: 13.8ch;
    font-size: clamp(1.94rem, 8.1vw, 2.9rem);
    margin-bottom: 0.78rem;
  }

  .hero-lead {
    font-size: 0.98rem;
    line-height: 1.53;
    margin-bottom: 0.92rem;
  }

  .hero-visual {
    min-height: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.72rem;
  }

  .hero-report,
  .hero-implementation,
  .hero-workflow {
    position: relative;
    inset: auto;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    animation: none;
  }

  .hero-report {
    grid-column: 1 / -1;
    margin-bottom: 0;
  }

  .hero-report h2 {
    font-size: 1.15rem;
    margin-bottom: 0.6rem;
  }

  .hero-implementation,
  .hero-workflow {
    margin-bottom: 0;
    padding: 0.84rem 0.82rem;
  }

  .report-row {
    padding: 0.48rem 0;
    gap: 0.52rem;
    font-size: 0.85rem;
  }

  .report-row strong {
    font-size: 0.68rem;
  }

  .hero-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.56rem;
    margin-bottom: 0.65rem;
  }

  .hero .btn-primary,
  .hero .btn-secondary {
    width: 100%;
    flex: 1 1 100%;
    min-height: 2.9rem;
  }

  .hero-offer {
    max-width: none;
    margin-bottom: 0.84rem;
    padding: 0.72rem 0.76rem;
  }

  .hero-path-copy,
  .hero-confidence,
  .hero-guarantee {
    font-size: 0.84rem;
  }

  .hero-confidence {
    margin-top: 0.34rem;
  }

  .included-chips {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.4rem;
  }

  .included-chips li {
    text-align: center;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 0.62rem;
  }

  .setup-main-grid {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }

  .request-main {
    padding: 0.96rem;
  }

  .request-main h1 {
    font-size: clamp(1.86rem, 8vw, 2.4rem);
  }

  .request-lead {
    font-size: 0.9rem;
  }

  .setup-section {
    padding: 0.78rem 0.76rem;
  }

  .setup-package-strip {
    padding: 0.76rem 0.78rem;
  }

  .field :is(input, textarea, select) {
    min-height: 2.9rem;
    padding: 0.62rem 0.68rem;
  }

  .field textarea {
    min-height: 110px;
  }

  .field-group {
    padding: 0.62rem;
  }

  .tool-detail-wrap {
    padding-left: 0.46rem;
  }

  .check-chip-grid {
    gap: 0.34rem;
  }

  .check-chip span,
  .choice-pill span {
    min-height: 2.35rem;
    padding: 0.3rem 0.62rem;
  }

  .cta-teaser-list li {
    font-size: 0.8rem;
  }

  .cta-teaser-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.46rem;
  }

  .cta-teaser-actions .btn {
    width: 100%;
  }

  .fit-snapshot {
    padding: 0.72rem;
  }

  .fit-snapshot-list div {
    grid-template-columns: 1fr;
    gap: 0.26rem;
  }

  .fit-snapshot-list dd {
    text-align: left;
  }

  .setup-submit-row {
    width: 100%;
    margin-top: 0.76rem;
  }

  .setup-submit-row .btn {
    width: 100%;
    min-height: 3.05rem;
  }

  .turnstile-wrap {
    width: 100%;
    padding: 0.56rem;
  }

  .checkbox-field {
    margin-top: 0.68rem;
    font-size: 0.82rem;
    line-height: 1.45;
  }

  .setup-microcopy p {
    font-size: 0.76rem;
  }

  .setup-submit-helper {
    font-size: 0.77rem;
  }

  .setup-confirmation {
    padding: 0.8rem;
  }

  .request-side-card {
    padding: 0.74rem 0.72rem;
  }

  .request-side-card h2 {
    font-size: 1rem;
  }

  .request-side-card h3 {
    font-size: 0.94rem;
  }

  .request-config-list div {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }

  .request-config-list dd {
    text-align: left;
  }

  .submission-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .submission-actions .btn {
    width: 100%;
  }

  .fit-option-row {
    flex-wrap: wrap;
    gap: 0.34rem;
  }

  .fit-option-row label {
    flex: 1 1 110px;
    min-height: 2.4rem;
    padding: 0.3rem 0.56rem;
    justify-content: center;
  }

  .hero-trust-chips {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.42rem;
    margin-top: 0.66rem;
  }

  .hero-trust-chips li {
    white-space: normal;
    text-align: center;
    min-height: 2.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .proof-row {
    grid-template-columns: 1fr auto;
    gap: 0.5rem;
    padding: 0.55rem 0.58rem;
  }

  .proof-row-head {
    display: none;
  }

  .proof-grid {
    gap: 0.95rem;
  }

  .proof-copy > p {
    margin-bottom: 0.84rem;
  }

  .proof-report,
  .proof-evidence,
  .proof-status {
    padding: 0.88rem 0.86rem;
  }

  .proof-deliverable {
    font-size: 0.86rem;
  }

  .status-chip {
    font-size: 0.68rem;
    padding: 0.2rem 0.42rem;
  }

  .proof-url {
    grid-column: 1 / -1;
    font-size: 0.78rem;
    margin-top: 0.08rem;
  }

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

  .evidence-shot {
    min-height: 78px;
    padding: 0.54rem;
  }

  .proof-modal-grid {
    grid-template-columns: 1fr;
  }

  .proof-preview-btn {
    width: 100%;
    justify-content: center;
  }

  .proof-modal {
    padding: 0.78rem;
  }

  .proof-modal-card {
    padding: 0.96rem;
  }

  .proof-modal-header h3 {
    font-size: 1.04rem;
  }

  .proof-modal-close {
    min-height: 2.6rem;
  }

  .deliverable-grid,
  .scope-panels,
  .process-list,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .deliverable-card,
  .process-step,
  .scope-card,
  .scope-checker {
    padding: 0.9rem 0.9rem 0.92rem;
  }

  .process-list {
    gap: 0.62rem;
  }

  .process-step:not(:last-child)::after {
    left: 1.2rem;
    height: 0.62rem;
    bottom: -0.62rem;
  }

  .scope-layout {
    gap: 0.82rem;
  }

  .scope-card-fit {
    border-left: 3px solid #9db2c3;
  }

  .scope-card-not-fit {
    border-left: 3px solid #c5b8ab;
  }

  .fit-question {
    padding: 0.58rem 0.58rem;
  }

  .fit-question legend {
    font-size: 0.84rem;
  }

  .fit-result {
    padding: 0.62rem 0.66rem;
  }

  .faq-accordion {
    gap: 0.56rem;
  }

  .faq-question {
    min-height: 3.05rem;
    padding: 0.82rem 0.9rem;
    font-size: 0.93rem;
  }

  .faq-answer p {
    padding: 0.05rem 0.9rem 0.84rem;
    font-size: 0.89rem;
  }

  .cta-layout {
    gap: 0.86rem;
  }

  .cta-primary,
  .cta-secondary-panel {
    padding: 0.92rem;
  }

  .cta-secondary-panel h3 {
    font-size: 1.1rem;
  }

  .cta-secondary-btn {
    width: 100%;
    justify-content: center;
    min-height: 2.86rem;
  }

  .cta-confidence,
  .cta-guarantee {
    font-size: 0.82rem;
    line-height: 1.5;
  }

  .footer-shell {
    gap: 1.02rem;
  }

  .footer-grid {
    gap: 0.95rem;
  }

  .footer-links a {
    display: inline-flex;
    padding: 0.16rem 0;
    font-size: 0.93rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.38rem;
  }

  .footer-note,
  .copyright {
    font-size: 0.84rem;
  }

  .container {
    width: min(100% - 1.6rem, var(--container-max));
  }
}

@media (max-width: 560px) {
  .brand-logo-wrap {
    width: 1.86rem;
    height: 1.86rem;
  }

  .brand-footer .brand-logo-wrap {
    width: 2.02rem;
    height: 2.02rem;
  }

  .brand-text small {
    display: none;
  }

  .section {
    padding: 3.7rem 0;
  }

  .policy-page {
    padding-top: 4.3rem;
  }

  .policy-header,
  .policy-document {
    border-radius: var(--radius-sm);
  }

  .hero {
    padding-top: 3.9rem;
  }

  .hero-copy h1 {
    font-size: clamp(1.76rem, 8.8vw, 2.28rem);
    max-width: 12.6ch;
  }

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

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

  .hero-report {
    grid-column: 1;
  }

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

  .included-chips {
    grid-template-columns: 1fr;
  }

  .proof-modal-card {
    padding: 0.84rem 0.8rem;
  }

  .proof-modal-close {
    min-height: 2.5rem;
  }

  .setup-package-price {
    font-size: 1.36rem;
  }

  .request-main h1 {
    font-size: clamp(1.68rem, 9vw, 2.05rem);
  }

  .container {
    width: min(100% - 1.4rem, var(--container-max));
  }
}

@media (hover: none) and (pointer: coarse) {
  .btn:hover {
    transform: none;
  }

  .btn-primary:hover {
    box-shadow: 0 12px 22px rgba(18, 62, 90, 0.24);
  }

  .btn-secondary:hover {
    border-color: var(--line-strong);
    background: rgba(255, 255, 255, 0.78);
    color: var(--text-soft);
  }

  .hero .btn-secondary:hover {
    border-color: rgba(20, 71, 102, 0.34);
    background: rgba(255, 255, 255, 0.72);
    color: var(--text-soft);
  }

  .cta-secondary-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(183, 213, 230, 0.48);
    color: var(--dark-text-soft);
    opacity: 0.94;
  }

  .deliverable-card:hover,
  .process-step:hover,
  .process-requirements:hover,
  .scope-card:hover,
  .scope-checker:hover,
  .proof-card:hover,
  .faq-item:hover,
  .cta-secondary-panel:hover {
    transform: none;
  }

  .deliverable-card:hover,
  .process-step:hover,
  .process-requirements:hover,
  .scope-card:hover,
  .scope-checker:hover,
  .faq-item:hover,
  .cta-secondary-panel:hover {
    box-shadow: var(--shadow-soft);
  }

  .deliverable-card:hover {
    border-color: rgba(176, 195, 208, 0.64);
  }

  .process-step:hover {
    border-color: rgba(177, 195, 206, 0.58);
  }

  .process-requirements:hover,
  .scope-card:hover,
  .scope-checker:hover,
  .faq-item:hover {
    border-color: rgba(171, 188, 200, 0.62);
  }

  .cta-secondary-panel:hover {
    border-color: rgba(181, 212, 231, 0.36);
  }

  .proof-card:hover {
    box-shadow: var(--shadow-card);
    border-color: rgba(166, 185, 197, 0.62);
  }

  .faq-question:hover {
    background: transparent;
  }

  .footer-links a:hover {
    color: inherit;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }

  .hero-implementation,
  .hero-workflow {
    animation: none !important;
  }
}

/* --------------------------------------------------------------------------
   Homepage Rebuild: implementation-first premium dark system (scoped)
-------------------------------------------------------------------------- */
body.home-page {
  --hp-bg: #060c14;
  --hp-bg-soft: #0a111b;
  --hp-bg-strong: #101a28;
  --hp-surface: #111d2b;
  --hp-surface-soft: #162436;
  --hp-surface-elevated: #1a2d43;
  --hp-line: rgba(150, 179, 203, 0.28);
  --hp-line-strong: rgba(171, 204, 230, 0.42);
  --hp-text: #eaf3fb;
  --hp-text-soft: #b5c8d9;
  --hp-text-muted: #92a8bc;
  --hp-accent: #68bfff;
  --hp-accent-strong: #2f97de;
  --hp-success: #84ebbe;
  --hp-updated: #8fd3ff;
  --hp-shadow-card: 0 20px 40px rgba(4, 11, 18, 0.42);
  --hp-shadow-soft: 0 14px 28px rgba(3, 10, 16, 0.3);
  color: var(--hp-text);
  font-family: "Avenir Next", "Franklin Gothic Medium", "Segoe UI", sans-serif;
  background:
    radial-gradient(1800px 840px at 8% -12%, rgba(31, 79, 122, 0.42) 0%, transparent 56%),
    radial-gradient(1200px 700px at 92% 2%, rgba(18, 49, 80, 0.34) 0%, transparent 54%),
    linear-gradient(180deg, var(--hp-bg) 0%, var(--hp-bg-soft) 48%, #060d16 100%);
}

body.home-page::before {
  background:
    linear-gradient(rgba(160, 186, 208, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(160, 186, 208, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent 85%);
}

.home-page .container {
  width: min(100% - 3.4rem, 1220px);
}

.home-page h1,
.home-page h2,
.home-page h3 {
  color: var(--hp-text);
}

.home-page p,
.home-page li {
  color: var(--hp-text-soft);
}

.home-page .skip-link {
  background: #1d3a56;
}

.home-page .site-header {
  border-bottom: 1px solid transparent;
  background: rgba(6, 12, 20, 0.72);
  backdrop-filter: blur(14px);
}

.home-page .site-header.is-scrolled,
.home-page .site-header.nav-open {
  border-color: var(--hp-line);
  background: rgba(6, 13, 21, 0.92);
  box-shadow: 0 12px 26px rgba(2, 8, 14, 0.5);
}

.home-page .site-maintenance-banner {
  border-bottom: 1px solid rgba(255, 157, 157, 0.32);
  background: linear-gradient(135deg, #a31212 0%, #8d0e0e 52%, #720a0a 100%);
}

.home-page .site-maintenance-banner p {
  margin: 0;
  padding: 0.72rem 0;
  color: #ffe3e3;
  text-align: center;
  font-weight: 620;
  letter-spacing: 0.01em;
}

.home-page .brand {
  color: var(--hp-text);
}

.home-page .brand-text small {
  color: var(--hp-text-muted);
}

.home-page .nav-link {
  color: var(--hp-text-muted);
  letter-spacing: 0.01em;
}

.home-page .primary-nav {
  gap: 0.62rem;
}

.home-page .nav-list {
  gap: 0.64rem;
}

.home-page .header-cta-group {
  gap: 0.4rem;
}

.home-page .nav-link::after {
  background: linear-gradient(90deg, var(--hp-accent) 0%, rgba(104, 191, 255, 0.1) 100%);
}

.home-page .nav-link:hover,
.home-page .nav-link.is-active {
  color: var(--hp-text);
}

.home-page .nav-toggle {
  border-color: var(--hp-line);
  background: rgba(20, 33, 47, 0.8);
}

.home-page .nav-toggle:hover {
  border-color: var(--hp-line-strong);
  background: rgba(23, 39, 56, 0.95);
}

.home-page .nav-toggle-line {
  background: var(--hp-text);
}

.home-page .btn {
  border-radius: 999px;
  font-weight: 660;
  letter-spacing: 0.012em;
  min-height: 2.95rem;
}

.home-page .btn-primary {
  background: linear-gradient(135deg, #6cc7ff 0%, #3f98da 55%, #2f86c6 100%);
  border: 1px solid rgba(155, 218, 255, 0.5);
  color: #042238;
  box-shadow: 0 16px 30px rgba(10, 81, 125, 0.34);
}

.home-page .btn-primary:hover {
  box-shadow: 0 20px 34px rgba(13, 94, 146, 0.38);
}

.home-page .btn-secondary {
  background: rgba(23, 39, 56, 0.76);
  border-color: var(--hp-line);
  color: var(--hp-text);
}

.home-page .btn-secondary:hover {
  border-color: var(--hp-line-strong);
  background: rgba(28, 47, 66, 0.95);
  color: #f5fbff;
}

.home-page .btn-header {
  background: linear-gradient(135deg, #5fbcf8 0%, #3b95d6 100%);
  color: #07243a;
  border-color: rgba(145, 208, 245, 0.56);
  box-shadow: 0 12px 24px rgba(6, 56, 90, 0.34);
  min-height: 2.48rem;
  padding: 0.54rem 0.86rem;
}

.home-page .btn-header:hover {
  border-color: rgba(164, 223, 255, 0.78);
  box-shadow: 0 16px 30px rgba(8, 70, 110, 0.4);
}

.home-page .btn-header.is-active {
  border-color: rgba(176, 229, 255, 0.86);
  box-shadow: 0 0 0 1px rgba(176, 229, 255, 0.5), 0 14px 28px rgba(7, 72, 112, 0.42);
}

.home-page .btn-header-secondary {
  background: rgba(18, 34, 49, 0.84);
  color: #dcefff;
  border-color: rgba(149, 196, 228, 0.42);
  box-shadow: none;
}

.home-page .btn-header-secondary:hover {
  background: rgba(22, 41, 58, 0.96);
  color: #f3fbff;
  border-color: rgba(175, 215, 242, 0.66);
  box-shadow: none;
}

.home-page .btn-header-secondary.is-active {
  border-color: rgba(175, 215, 242, 0.8);
  background: rgba(24, 45, 64, 0.98);
}

.home-page .btn-large {
  min-height: 3.1rem;
  padding: 0.8rem 1.45rem;
}

.home-page .btn-xl {
  min-height: 3.25rem;
  width: 100%;
  font-size: 1rem;
}

.home-page .hp-section {
  position: relative;
  padding: clamp(4.8rem, 8.4vw, 6.8rem) 0;
}

.home-page .eyebrow {
  margin-bottom: 0.9rem;
  color: var(--hp-text-muted);
  letter-spacing: 0.12em;
}

.home-page .section-heading {
  margin-bottom: clamp(1.35rem, 2.2vw, 1.95rem);
}

.home-page .section-heading h2 {
  max-width: 24ch;
  font-size: clamp(1.95rem, 3.6vw, 3.1rem);
  margin-bottom: 0.9rem;
}

.home-page .hp-section-lead {
  max-width: 70ch;
  margin: 0;
  color: var(--hp-text-soft);
}

.home-page .hp-hero {
  padding-top: clamp(6rem, 11vw, 8.1rem);
  padding-bottom: clamp(4.4rem, 8vw, 6rem);
}

.home-page .hp-hero-shell {
  border: 1px solid var(--hp-line);
  border-radius: 32px;
  background:
    linear-gradient(150deg, rgba(20, 34, 50, 0.9) 0%, rgba(11, 21, 33, 0.92) 52%, rgba(9, 17, 26, 0.96) 100%),
    rgba(10, 18, 28, 0.96);
  box-shadow:
    inset 0 1px 0 rgba(199, 229, 248, 0.1),
    0 26px 52px rgba(2, 9, 15, 0.52);
  overflow: hidden;
  padding: clamp(1.2rem, 2.8vw, 2.3rem);
}

.home-page .hp-hero-shell::before {
  content: "";
  position: absolute;
  pointer-events: none;
  width: 420px;
  height: 420px;
  right: -110px;
  top: -160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(88, 166, 223, 0.32) 0%, rgba(88, 166, 223, 0) 74%);
}

.home-page .hp-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(0, 0.84fr);
  gap: 1.9rem;
  align-items: start;
}

.home-page .hp-hero-copy {
  padding: clamp(0.1rem, 0.8vw, 0.5rem) clamp(0.15rem, 0.6vw, 0.4rem) 0.2rem;
}

.home-page .hp-hero-copy h1 {
  margin-bottom: 0.94rem;
  max-width: 12.8ch;
  font-size: clamp(2.25rem, 5.2vw, 4.25rem);
  letter-spacing: -0.025em;
}

.home-page .hp-hero-lead {
  max-width: 64ch;
  font-size: clamp(1rem, 1.55vw, 1.16rem);
  line-height: 1.58;
  margin-bottom: 0.82rem;
}

.home-page .hp-hero-outcome {
  max-width: 65ch;
  margin: 0 0 1rem;
  color: rgba(224, 239, 250, 0.92);
  font-size: 0.93rem;
  line-height: 1.55;
}

.home-page .hp-package-strip {
  margin-bottom: 0.92rem;
  max-width: 31rem;
  border: 1px solid rgba(157, 189, 213, 0.32);
  border-radius: 16px;
  background: linear-gradient(165deg, rgba(21, 38, 56, 0.86) 0%, rgba(16, 29, 43, 0.86) 100%);
  padding: 0.9rem 0.95rem;
}

.home-page .hp-package-label {
  margin: 0;
  color: var(--hp-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.72rem;
  font-weight: 680;
}

.home-page .hp-package-price {
  margin: 0.2rem 0 0.14rem;
  color: #f1fbff;
  font-size: 1.42rem;
  font-weight: 740;
  line-height: 1.12;
}

.home-page .hp-package-note {
  margin: 0;
  color: var(--hp-text-soft);
  font-size: 0.9rem;
}

.home-page .hp-home-offer-list {
  margin: 0.3rem 0 0;
  padding: 0 0 0 1.1rem;
  color: #dcebf7;
  display: grid;
  gap: 0.35rem;
  font-size: 0.88rem;
}

.home-page .hp-home-offer-list li {
  line-height: 1.45;
}

.home-page .hp-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 0.7rem;
}

.home-page .hp-trust-strip {
  margin: 0.66rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  max-width: 38rem;
}

.home-page .hp-trust-strip li {
  border: 1px solid rgba(156, 189, 214, 0.29);
  border-radius: 999px;
  background: rgba(22, 38, 54, 0.72);
  color: #dce8f2;
  font-size: 0.8rem;
  text-align: center;
  padding: 0.34rem 0.62rem;
}

.home-page .hp-hero-compare {
  display: grid;
  gap: 0.72rem;
  align-content: start;
}

.home-page .hp-compare-intro {
  margin: 0;
  color: var(--hp-text-soft);
  font-size: 0.82rem;
  line-height: 1.46;
}

.home-page .hp-compare-grid {
  display: grid;
  gap: 0.62rem;
}

.home-page .hp-compare-card {
  border: 1px solid rgba(154, 188, 212, 0.34);
  border-radius: 16px;
  background: linear-gradient(170deg, rgba(22, 39, 56, 0.86) 0%, rgba(15, 28, 42, 0.88) 100%);
  padding: 0.8rem 0.84rem 0.86rem;
  display: grid;
  gap: 0.5rem;
  box-shadow: 0 14px 30px rgba(3, 10, 17, 0.34);
}

.home-page .hp-compare-card-primary {
  border-color: rgba(163, 219, 252, 0.52);
  background: linear-gradient(168deg, rgba(30, 61, 87, 0.88) 0%, rgba(19, 41, 61, 0.9) 100%);
}

.home-page .hp-compare-kicker {
  margin: 0;
  color: #a7c7de;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.68rem;
  font-weight: 700;
}

.home-page .hp-compare-card h2 {
  margin: 0;
  font-size: 1.06rem;
}

.home-page .hp-compare-price {
  margin: 0;
  color: #eef8ff;
  font-size: 1rem;
  font-weight: 720;
}

.home-page .hp-compare-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.42rem;
}

.home-page .hp-compare-list li {
  position: relative;
  padding-left: 0.9rem;
  color: var(--hp-text-soft);
  font-size: 0.81rem;
  line-height: 1.45;
}

.home-page .hp-compare-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48rem;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 999px;
  background: rgba(146, 197, 229, 0.9);
}

.home-page .hp-compare-card .btn {
  width: 100%;
  justify-content: center;
  min-height: 2.66rem;
  margin-top: 0.12rem;
}

.home-page .hp-compare-proof {
  border-top: 1px solid rgba(151, 184, 208, 0.24);
  padding-top: 0.72rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
}

.home-page .hp-compare-proof p {
  margin: 0;
  color: var(--hp-text-soft);
  font-size: 0.79rem;
}

.home-page .hp-compare-proof .btn {
  min-height: 2.42rem;
  padding-inline: 1rem;
}

.home-page .hp-hero-disclaimer {
  margin: 0.72rem 0 0;
  font-size: 0.82rem;
  color: var(--hp-text-muted);
}

.home-page .hp-output-board {
  border: 1px solid rgba(152, 184, 208, 0.3);
  border-radius: 22px;
  padding: 0.95rem;
  background: linear-gradient(180deg, rgba(17, 30, 44, 0.92) 0%, rgba(12, 22, 33, 0.94) 100%);
  box-shadow: var(--hp-shadow-card);
}

.home-page .hp-board-title {
  margin: 0 0 0.68rem;
  font-size: 0.8rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--hp-text-muted);
  font-weight: 680;
}

.home-page .hp-output-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.home-page .hp-output-card {
  border: 1px solid rgba(157, 190, 214, 0.26);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(24, 40, 58, 0.84) 0%, rgba(16, 29, 43, 0.85) 100%);
  box-shadow: var(--hp-shadow-soft);
  transition:
    transform 0.28s var(--ease-standard),
    border-color 0.28s var(--ease-standard),
    box-shadow 0.28s var(--ease-standard);
}

.home-page .hp-output-card:hover {
  transform: translateY(-3px);
  border-color: rgba(184, 220, 247, 0.46);
  box-shadow: 0 22px 36px rgba(4, 12, 20, 0.48);
}

.home-page .hp-window-top {
  margin: 0;
  border-bottom: 1px solid rgba(151, 184, 208, 0.24);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.5rem 0.58rem;
}

.home-page .hp-window-top span {
  width: 0.44rem;
  height: 0.44rem;
  border-radius: 50%;
  background: rgba(167, 194, 214, 0.5);
}

.home-page .hp-window-top p {
  margin: 0 0 0 auto;
  font-size: 0.67rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--hp-text-muted);
}

.home-page .hp-output-body {
  padding: 0.62rem 0.62rem 0.65rem;
}

.home-page .hp-output-body h2 {
  margin: 0 0 0.3rem;
  font-size: 0.95rem;
  letter-spacing: -0.014em;
}

.home-page .hp-output-body p {
  margin: 0 0 0.54rem;
  color: var(--hp-text-soft);
  font-size: 0.79rem;
  line-height: 1.48;
}

.home-page .hp-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.2rem 0.52rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.67rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.home-page .hp-status.is-published {
  color: #b9f6d9;
  border-color: rgba(136, 231, 188, 0.34);
  background: rgba(24, 78, 57, 0.45);
}

.home-page .hp-status.is-updated {
  color: #ccecff;
  border-color: rgba(144, 206, 246, 0.35);
  background: rgba(33, 78, 109, 0.45);
}

.home-page .hp-status.is-verified {
  color: #e4f3ff;
  border-color: rgba(171, 203, 226, 0.36);
  background: rgba(44, 67, 88, 0.5);
}

.home-page .hp-status.is-implemented {
  color: #d8eeff;
  border-color: rgba(141, 190, 224, 0.34);
  background: rgba(28, 66, 94, 0.48);
}

.home-page .hp-board-footer {
  margin-top: 0.7rem;
  padding-top: 0.68rem;
  border-top: 1px solid rgba(153, 186, 209, 0.24);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
}

.home-page .hp-board-footer p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--hp-text-soft);
}

.home-page .hp-deliverables {
  border-top: 1px solid rgba(150, 183, 207, 0.2);
}

.home-page .hp-deliverables-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.98rem;
}

.home-page .hp-path-grid {
  grid-template-columns: minmax(0, 1.22fr) minmax(0, 1fr) minmax(0, 0.86fr);
}

.home-page .hp-deliverable-card {
  border: 1px solid rgba(151, 183, 207, 0.28);
  border-radius: 18px;
  background: linear-gradient(170deg, rgba(19, 33, 48, 0.87) 0%, rgba(13, 24, 36, 0.9) 100%);
  box-shadow: var(--hp-shadow-soft);
  padding: 1rem 1rem 0.98rem;
  transition:
    transform 0.3s var(--ease-standard),
    border-color 0.3s var(--ease-standard),
    box-shadow 0.3s var(--ease-standard);
}

.home-page .hp-deliverable-card:hover {
  transform: translateY(-3px);
  border-color: rgba(180, 217, 243, 0.48);
  box-shadow: 0 24px 38px rgba(3, 11, 18, 0.48);
}

.home-page .hp-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.4rem;
  margin-bottom: 0.56rem;
}

.home-page .hp-card-top p {
  margin: 0;
  color: var(--hp-text-muted);
  font-size: 0.72rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-weight: 680;
}

.home-page .hp-card-top span {
  border: 1px solid rgba(153, 185, 209, 0.34);
  border-radius: 999px;
  padding: 0.17rem 0.52rem;
  font-size: 0.67rem;
  color: #d7e8f6;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  background: rgba(24, 43, 61, 0.72);
}

.home-page .hp-deliverable-card h3 {
  margin-bottom: 0.46rem;
  font-size: 1.08rem;
}

.home-page .hp-deliverable-card p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.54;
}

.home-page .hp-path-card .btn {
  margin-top: auto;
  width: 100%;
  justify-content: center;
}

.home-page .hp-path-card {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.home-page .hp-path-card-primary {
  border-color: rgba(164, 219, 252, 0.54);
  background:
    radial-gradient(320px 170px at 96% -20%, rgba(113, 193, 244, 0.2) 0%, transparent 72%),
    linear-gradient(166deg, rgba(28, 57, 81, 0.92) 0%, rgba(16, 33, 49, 0.94) 100%);
  box-shadow:
    inset 0 1px 0 rgba(199, 231, 250, 0.14),
    0 26px 42px rgba(2, 10, 16, 0.46);
}

.home-page .hp-path-priority {
  margin: 0 0 0.5rem !important;
  color: #e5f4ff !important;
  font-size: 0.82rem !important;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-weight: 710;
}

.home-page .hp-path-card-fallback {
  border-color: rgba(147, 178, 201, 0.28);
  background: linear-gradient(170deg, rgba(16, 29, 42, 0.82) 0%, rgba(10, 20, 31, 0.9) 100%);
  box-shadow: 0 20px 34px rgba(3, 10, 16, 0.34);
}

.home-page .hp-card-proof {
  margin-top: 0.7rem !important;
  padding-top: 0.66rem;
  border-top: 1px solid rgba(151, 182, 206, 0.25);
  color: var(--hp-text-muted) !important;
  font-size: 0.8rem !important;
}

.home-page .hp-workflow {
  border-top: 1px solid rgba(150, 183, 207, 0.16);
}

.home-page .hp-workflow-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.75rem;
}

.home-page .hp-workflow-step {
  position: relative;
  border: 1px solid rgba(151, 183, 207, 0.28);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(20, 34, 49, 0.88) 0%, rgba(13, 24, 36, 0.9) 100%);
  box-shadow: var(--hp-shadow-soft);
  padding: 0.94rem 0.9rem;
}

.home-page .hp-step-count {
  margin: 0 0 0.46rem;
  color: var(--hp-accent);
  font-size: 0.73rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 720;
}

.home-page .hp-workflow-step h3 {
  margin-bottom: 0.38rem;
  font-size: 1.01rem;
}

.home-page .hp-workflow-step p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.5;
}

.home-page .hp-fit {
  border-top: 1px solid rgba(150, 183, 207, 0.16);
}

.home-page .hp-fit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.96rem;
}

.home-page .hp-fit-card,
.home-page .hp-fit-note {
  border: 1px solid rgba(151, 183, 207, 0.28);
  border-radius: 20px;
  background: linear-gradient(170deg, rgba(19, 34, 48, 0.88) 0%, rgba(13, 24, 36, 0.9) 100%);
  box-shadow: var(--hp-shadow-soft);
  padding: 1rem 1rem 1.02rem;
}

.home-page .hp-fit-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.46rem;
  margin-bottom: 0.62rem;
}

.home-page .hp-fit-head h3 {
  margin: 0;
  font-size: 1.2rem;
}

.home-page .hp-fit-head span {
  border-radius: 999px;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.17rem 0.52rem;
  border: 1px solid rgba(154, 186, 210, 0.34);
  color: #d7e9f8;
}

.home-page .hp-fit-good {
  border-left: 3px solid rgba(136, 231, 188, 0.58);
}

.home-page .hp-fit-limit {
  border-left: 3px solid rgba(166, 190, 210, 0.48);
}

.home-page .hp-fit-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.58rem;
}

.home-page .hp-fit-card li {
  position: relative;
  padding-left: 1.02rem;
  font-size: 0.9rem;
  line-height: 1.5;
}

.home-page .hp-fit-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.47rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: rgba(159, 192, 216, 0.85);
}

.home-page .hp-fit-note {
  grid-column: 1 / -1;
  display: grid;
  gap: 0.5rem;
  align-content: start;
}

.home-page .hp-fit-note-kicker {
  margin: 0;
  color: var(--hp-text-muted);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
}

.home-page .hp-fit-note h3 {
  margin: 0;
  font-size: 1.2rem;
}

.home-page .hp-fit-note p {
  margin: 0;
}

.home-page .hp-hero-check-note {
  margin: 0.5rem 0 0;
  color: var(--hp-text-muted);
  font-size: 0.8rem;
  letter-spacing: 0.01em;
}

.home-page .hp-fit-note .btn {
  width: fit-content;
  margin-top: 0.24rem;
}

.home-page .hp-fit-note-manual {
  color: rgba(198, 218, 232, 0.9);
  font-size: 0.8rem;
  line-height: 1.52;
}

.home-page .hp-fit-note-foot {
  margin-top: 0.16rem !important;
  color: var(--hp-text-muted) !important;
  font-size: 0.82rem;
}

.home-page .hp-proof {
  border-top: 1px solid rgba(150, 183, 207, 0.16);
}

.home-page .hp-proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 1.1rem;
  align-items: start;
}

.home-page .hp-proof-copy p {
  margin-bottom: 0.9rem;
}

.home-page .hp-proof-copy ul,
.home-page .hp-proof-card ul,
.home-page .hp-cta-primary ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.54rem;
}

.home-page .hp-proof-copy li,
.home-page .hp-proof-card li,
.home-page .hp-cta-primary li {
  position: relative;
  padding-left: 1.04rem;
  font-size: 0.9rem;
  line-height: 1.52;
}

.home-page .hp-proof-copy li::before,
.home-page .hp-proof-card li::before,
.home-page .hp-cta-primary li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.49rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: rgba(153, 186, 209, 0.8);
}

.home-page .hp-proof-stack {
  display: grid;
  gap: 0.75rem;
}

.home-page .hp-proof-card {
  border: 1px solid rgba(151, 183, 207, 0.28);
  border-radius: 18px;
  background: linear-gradient(168deg, rgba(19, 34, 48, 0.88) 0%, rgba(13, 24, 36, 0.9) 100%);
  box-shadow: var(--hp-shadow-soft);
  padding: 0.95rem 0.96rem;
}

.home-page .hp-proof-table {
  padding: 0.92rem;
}

.home-page .hp-proof-table header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.64rem;
}

.home-page .hp-proof-table header p {
  margin: 0;
  color: #e7f4ff;
  font-size: 0.86rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 690;
}

.home-page .hp-proof-table header span {
  font-size: 0.72rem;
  color: var(--hp-text-muted);
}

.home-page .hp-proof-row {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) auto minmax(0, 1fr);
  gap: 0.56rem;
  align-items: center;
  padding: 0.56rem 0.5rem;
  border-top: 1px solid rgba(148, 179, 202, 0.24);
}

.home-page .hp-proof-row span {
  font-size: 0.82rem;
  color: #d3e2ef;
}

.home-page .hp-proof-row-head {
  border-top: 0;
  padding-top: 0;
}

.home-page .hp-proof-row-head span {
  color: var(--hp-text-muted);
  font-size: 0.71rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-page .hp-proof-card-title {
  margin: 0 0 0.56rem;
  color: #ebf6ff;
  font-size: 0.98rem;
  letter-spacing: -0.01em;
}

.home-page .hp-proof-sample {
  background:
    radial-gradient(320px 180px at 92% 0%, rgba(91, 172, 230, 0.2) 0%, transparent 72%),
    linear-gradient(168deg, rgba(19, 34, 48, 0.9) 0%, rgba(13, 24, 36, 0.94) 100%);
}

.home-page .hp-proof-sample-copy {
  margin: 0;
  color: #d7e8f5;
  font-size: 0.88rem;
  line-height: 1.56;
}

.home-page .hp-proof-sample-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.56rem;
  margin-top: 0.72rem;
}

.home-page .hp-proof-sample-actions .btn {
  flex: 1 1 210px;
  min-height: 2.76rem;
}

.home-page .hp-proof-sample-note {
  margin: 0;
  color: rgba(194, 214, 228, 0.9);
  font-size: 0.8rem;
  line-height: 1.5;
}

.home-page .hp-proof-modal[hidden] {
  display: none;
}

.home-page .hp-proof-modal {
  position: fixed;
  inset: 0;
  z-index: 280;
  display: grid;
  place-items: center;
  padding: clamp(0.86rem, 2.2vw, 1.4rem);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--motion-base) var(--ease-standard), visibility 0s linear var(--motion-base);
}

.home-page .hp-proof-modal.is-open {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}

.home-page .hp-proof-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(3, 9, 15, 0.78);
  backdrop-filter: blur(4px);
  cursor: pointer;
}

.home-page .hp-proof-modal-dialog {
  position: relative;
  width: min(1100px, 100%);
  max-height: min(90vh, 960px);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 0.68rem;
  border: 1px solid rgba(154, 189, 214, 0.38);
  border-radius: 22px;
  background:
    radial-gradient(540px 260px at 96% -18%, rgba(95, 177, 236, 0.22) 0%, transparent 74%),
    linear-gradient(170deg, rgba(18, 31, 45, 0.96) 0%, rgba(10, 20, 30, 0.97) 100%);
  box-shadow:
    inset 0 1px 0 rgba(199, 229, 247, 0.09),
    0 34px 62px rgba(3, 10, 16, 0.56);
  padding: clamp(0.86rem, 1.8vw, 1.12rem);
  overflow: hidden;
  transform: translateY(10px) scale(0.99);
  transition: transform var(--motion-base) var(--ease-standard);
}

.home-page .hp-proof-modal.is-open .hp-proof-modal-dialog {
  transform: translateY(0) scale(1);
}

.home-page .hp-proof-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.76rem;
}

.home-page .hp-proof-modal-kicker {
  margin: 0 0 0.28rem;
  color: rgba(191, 215, 231, 0.9);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
}

.home-page .hp-proof-modal-header h3 {
  margin: 0;
  color: #eff9ff;
  font-size: clamp(1.06rem, 2.1vw, 1.34rem);
}

.home-page .hp-proof-modal-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  justify-content: flex-end;
}

.home-page .hp-proof-modal-controls .btn,
.home-page .hp-proof-modal-close {
  min-height: 2.6rem;
  min-width: 8.4rem;
}

.home-page .hp-proof-modal-close {
  border-radius: 999px;
  border: 1px solid rgba(146, 177, 200, 0.6);
  background: rgba(21, 39, 56, 0.84);
  color: #e9f7ff;
  font-weight: 640;
  cursor: pointer;
  transition:
    border-color var(--motion-fast) var(--ease-standard),
    background-color var(--motion-fast) var(--ease-standard),
    color var(--motion-fast) var(--ease-standard),
    transform var(--motion-fast) var(--ease-standard);
}

.home-page .hp-proof-modal-close:hover {
  border-color: rgba(177, 214, 237, 0.88);
  background: rgba(27, 49, 69, 0.96);
  color: #f4fbff;
  transform: translateY(-1px);
}

.home-page .hp-proof-modal-viewer {
  border: 1px solid rgba(141, 172, 194, 0.36);
  border-radius: 16px;
  background: rgba(8, 15, 24, 0.84);
  overflow: hidden;
  min-height: 48vh;
}

.home-page .hp-proof-modal-viewer iframe {
  display: block;
  width: 100%;
  height: min(72vh, 760px);
  border: 0;
  background: #0b1520;
}

.home-page .hp-proof-modal-fallback {
  margin: 0;
  color: rgba(191, 213, 227, 0.9);
  font-size: 0.8rem;
  line-height: 1.5;
}

.home-page .hp-proof-modal-fallback a {
  color: #9ddcff;
  text-decoration-color: rgba(157, 220, 255, 0.54);
}

.home-page .hp-proof-modal-fallback a:hover {
  color: #d5f0ff;
  text-decoration-color: currentColor;
}

.home-page .hp-faq {
  border-top: 1px solid rgba(150, 183, 207, 0.16);
}

.home-page .faq-cluster + .faq-cluster {
  margin-top: 1.55rem;
}

.home-page .faq-cluster-head {
  margin-bottom: 0.9rem;
}

.home-page .faq-accordion {
  display: grid;
  gap: 0.72rem;
}

.home-page .faq-item {
  border: 1px solid rgba(151, 183, 207, 0.28);
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(170deg, rgba(19, 34, 48, 0.88) 0%, rgba(13, 24, 36, 0.9) 100%);
  box-shadow: var(--hp-shadow-soft);
  transition: border-color 0.28s var(--ease-standard), box-shadow 0.28s var(--ease-standard);
}

.home-page .faq-item:hover {
  border-color: rgba(181, 216, 241, 0.46);
  box-shadow: 0 20px 36px rgba(4, 12, 20, 0.46);
}

.home-page .faq-item h3 {
  margin: 0;
}

.home-page .faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  color: #ecf7ff;
  font: inherit;
  text-align: left;
  cursor: pointer;
  min-height: 3.35rem;
  padding: 0.84rem 0.98rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.home-page .faq-question:hover {
  background: rgba(30, 49, 67, 0.48);
}

.home-page .faq-icon {
  width: 1.12rem;
  height: 1.12rem;
  position: relative;
  flex: 0 0 auto;
}

.home-page .faq-icon::before,
.home-page .faq-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: rgba(212, 231, 245, 0.94);
  transition: transform 0.25s var(--ease-standard);
}

.home-page .faq-icon::before {
  width: 1rem;
  height: 2px;
  transform: translate(-50%, -50%);
}

.home-page .faq-icon::after {
  width: 2px;
  height: 1rem;
  transform: translate(-50%, -50%);
}

.home-page .faq-item.is-open .faq-icon::after {
  transform: translate(-50%, -50%) scaleY(0);
}

.home-page .faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 0.36s var(--ease-standard),
    opacity 0.26s var(--ease-standard);
}

.home-page .faq-item.is-open .faq-answer {
  opacity: 1;
}

.home-page .faq-answer p {
  margin: 0;
  padding: 0.1rem 0.98rem 0.86rem;
  font-size: 0.9rem;
  line-height: 1.58;
  color: var(--hp-text-soft);
}

.home-page .hp-cta {
  border-top: 1px solid rgba(150, 183, 207, 0.16);
  padding-bottom: clamp(5rem, 8vw, 6.5rem);
}

.home-page .hp-cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 1rem;
}

.home-page .hp-cta-primary,
.home-page .hp-cta-secondary {
  border: 1px solid rgba(151, 183, 207, 0.28);
  border-radius: 22px;
  box-shadow: var(--hp-shadow-soft);
}

.home-page .hp-cta-primary {
  background:
    radial-gradient(380px 200px at 90% 8%, rgba(93, 173, 230, 0.26) 0%, transparent 72%),
    linear-gradient(155deg, rgba(20, 35, 51, 0.92) 0%, rgba(13, 24, 36, 0.94) 100%);
  padding: 1.28rem 1.28rem 1.22rem;
}

.home-page .hp-cta-primary h2 {
  margin-bottom: 0.62rem;
  max-width: 20ch;
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
}

.home-page .hp-cta-primary p {
  margin: 0 0 0.8rem;
}

.home-page .hp-cta-primary .btn-xl {
  margin-top: 0.92rem;
}

.home-page .hp-cta-secondary {
  background: linear-gradient(170deg, rgba(19, 34, 48, 0.88) 0%, rgba(13, 24, 36, 0.9) 100%);
  padding: 1.1rem 1.02rem;
  display: grid;
  align-content: center;
  gap: 0.5rem;
}

.home-page .hp-secondary-kicker {
  margin: 0;
  color: var(--hp-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.71rem;
  font-weight: 700;
}

.home-page .hp-cta-secondary h3 {
  margin: 0;
  font-size: 1.2rem;
}

.home-page .hp-cta-secondary p {
  margin: 0;
}

.home-page .hp-primary-note,
.home-page .hp-secondary-note {
  margin-top: 0.34rem !important;
  color: rgba(191, 211, 225, 0.88) !important;
  font-size: 0.8rem;
  line-height: 1.5;
}

.free-check-page {
  padding-top: clamp(5.5rem, 8.5vw, 7rem);
}

.free-check-layout {
  grid-template-columns: minmax(0, 1.16fr) minmax(0, 0.84fr);
}

.free-check-main {
  border-color: rgba(168, 203, 226, 0.42);
  background:
    radial-gradient(360px 240px at 92% 0%, rgba(91, 172, 230, 0.22) 0%, transparent 72%),
    linear-gradient(168deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.04) 100%),
    rgba(10, 30, 44, 0.46);
}

.free-check-path-kicker {
  margin: 0 0 0.5rem;
  color: rgba(187, 214, 230, 0.88);
  font-size: 0.72rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  font-weight: 700;
}

.request-path-kicker {
  margin: 0 0 0.5rem;
  color: rgba(194, 219, 234, 0.9);
  font-size: 0.72rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  font-weight: 700;
}

.free-check-intro-strip {
  margin-top: 0.94rem;
  display: grid;
  gap: 0.58rem;
}

.free-check-intro-title {
  margin: 0;
}

.free-check-intro-copy {
  margin: 0;
  color: rgba(207, 226, 238, 0.95);
  font-size: 0.93rem;
  line-height: 1.54;
}

.free-check-intro-reassure {
  margin: 0;
  color: rgba(219, 234, 245, 0.96);
  font-size: 0.82rem;
  line-height: 1.46;
  font-weight: 620;
}

.free-check-intro-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.34rem;
}

.free-check-intro-list li {
  position: relative;
  margin: 0;
  padding-left: 0.92rem;
  color: rgba(204, 223, 235, 0.94);
  font-size: 0.8rem;
  line-height: 1.42;
}

.free-check-intro-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.46rem;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: rgba(134, 198, 239, 0.88);
}

.free-check-form {
  margin-top: 0.98rem;
}

.free-check-submit-btn {
  border-color: rgba(177, 217, 241, 0.6);
  background: rgba(19, 39, 56, 0.88);
  color: #eff8ff;
}

.free-check-submit-btn:hover {
  border-color: rgba(190, 226, 247, 0.82);
  background: rgba(25, 48, 68, 0.94);
}

.free-check-support-copy {
  margin: 0;
  color: rgba(194, 214, 228, 0.92);
  font-size: 0.78rem;
  line-height: 1.52;
}

.free-check-confirmation {
  margin-top: 0.24rem;
  border: 1px solid rgba(178, 214, 236, 0.44);
  border-radius: var(--radius-sm);
  background:
    linear-gradient(160deg, rgba(122, 184, 224, 0.18) 0%, rgba(122, 184, 224, 0.06) 100%),
    rgba(8, 29, 42, 0.56);
  padding: 0.88rem 0.94rem;
  display: grid;
  gap: 0.56rem;
}

.free-check-confirmation-kicker {
  margin: 0;
  color: rgba(199, 223, 238, 0.86);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 670;
}

.free-check-confirmation h2 {
  margin: 0;
  color: var(--dark-text);
  font-size: 1.16rem;
}

.free-check-confirmation p {
  margin: 0;
  color: rgba(205, 225, 237, 0.94);
  font-size: 0.83rem;
  line-height: 1.52;
}

.free-check-outcome-list,
.free-check-side-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.42rem;
}

.free-check-outcome-list li,
.free-check-side-list li {
  border: 1px solid rgba(177, 208, 224, 0.34);
  border-radius: var(--radius-xs);
  background: rgba(255, 255, 255, 0.05);
  padding: 0.5rem 0.56rem;
  color: rgba(214, 231, 241, 0.92);
  font-size: 0.79rem;
  line-height: 1.42;
}

.free-check-path-card .cta-secondary-btn {
  margin-top: 0.24rem;
  width: 100%;
}

.free-check-page .request-side-card {
  gap: 0.5rem;
}

.free-check-page .request-side-card p,
.free-check-page .request-side-card li {
  font-size: 0.82rem;
}

.free-check-mobile-support {
  display: none;
}

.free-check-mobile-disclosure {
  border: 1px solid rgba(150, 180, 201, 0.34);
  border-radius: 14px;
  background: linear-gradient(174deg, rgba(17, 31, 45, 0.86) 0%, rgba(11, 21, 32, 0.9) 100%);
  box-shadow:
    inset 0 1px 0 rgba(196, 225, 242, 0.08),
    0 14px 26px rgba(2, 9, 15, 0.24);
  overflow: hidden;
}

.free-check-mobile-summary {
  list-style: none;
  cursor: pointer;
  padding: 0.84rem 0.9rem;
  color: rgba(230, 241, 247, 0.96);
  font-size: 0.84rem;
  font-weight: 640;
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.56rem;
}

.free-check-mobile-summary::-webkit-details-marker {
  display: none;
}

.free-check-mobile-summary::after {
  content: "+";
  color: rgba(202, 222, 235, 0.9);
  font-size: 1rem;
  line-height: 1;
  transform: translateY(-1px);
  transition: transform var(--motion-fast) var(--ease-standard);
}

.free-check-mobile-disclosure[open] .free-check-mobile-summary::after {
  content: "-";
}

.free-check-mobile-panel {
  border-top: 1px solid rgba(144, 174, 195, 0.3);
  padding: 0.72rem 0.9rem 0.84rem;
  display: grid;
  gap: 0.5rem;
}

.free-check-mobile-panel p {
  margin: 0;
  color: rgba(204, 223, 235, 0.93);
  font-size: 0.8rem;
  line-height: 1.5;
}

.free-check-mobile-panel .request-next-list {
  gap: 0.42rem;
}

.free-check-mobile-panel .request-next-list li {
  color: rgba(209, 227, 238, 0.94);
  font-size: 0.8rem;
}

.free-check-mobile-chip-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
}

.free-check-mobile-chip-list li {
  border: 1px solid rgba(149, 181, 203, 0.42);
  border-radius: var(--radius-pill);
  background: rgba(20, 36, 50, 0.86);
  color: rgba(216, 232, 242, 0.95);
  padding: 0.34rem 0.62rem;
  font-size: 0.75rem;
  line-height: 1.3;
}

.free-check-mobile-cta {
  width: 100%;
  justify-content: center;
}

body.home-page.policy-page-body .policy-page,
body.home-page.terms-page-body .policy-page {
  padding-top: clamp(5.8rem, 8.6vw, 7rem);
  padding-bottom: clamp(4.4rem, 7.2vw, 5.7rem);
}

body.home-page.policy-page-body .policy-page-shell,
body.home-page.terms-page-body .policy-page-shell {
  width: min(100%, 980px);
  gap: 1.14rem;
}

body.home-page.policy-page-body .policy-header,
body.home-page.terms-page-body .policy-header {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(154, 185, 208, 0.34);
  border-radius: 22px;
  background: linear-gradient(156deg, rgba(22, 36, 52, 0.96) 0%, rgba(14, 24, 37, 0.93) 56%, rgba(10, 18, 28, 0.95) 100%);
  box-shadow: var(--hp-shadow-soft);
  padding: clamp(1.2rem, 2.2vw, 1.82rem);
}

body.home-page.policy-page-body .policy-header::before,
body.home-page.terms-page-body .policy-header::before {
  content: "";
  position: absolute;
  right: -120px;
  top: -110px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(75, 145, 194, 0.32) 0%, rgba(75, 145, 194, 0) 72%);
}

body.home-page.policy-page-body .policy-kicker,
body.home-page.terms-page-body .policy-kicker {
  color: rgba(192, 218, 236, 0.9);
}

body.home-page.policy-page-body .policy-header h1,
body.home-page.terms-page-body .policy-header h1 {
  margin-bottom: 0.72rem;
  color: var(--hp-text);
  font-size: clamp(2.05rem, 3.6vw, 2.85rem);
}

body.home-page.policy-page-body .policy-lead,
body.home-page.terms-page-body .policy-lead {
  max-width: 70ch;
  color: rgba(205, 224, 237, 0.92);
  font-size: 0.97rem;
  line-height: 1.7;
}

body.home-page.policy-page-body .policy-meta,
body.home-page.terms-page-body .policy-meta {
  margin-top: 0.82rem;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(156, 191, 215, 0.34);
  border-radius: 999px;
  background: rgba(113, 170, 209, 0.12);
  color: rgba(195, 220, 236, 0.94);
  font-size: 0.8rem;
  padding: 0.34rem 0.62rem;
}

body.home-page.policy-page-body .policy-document,
body.home-page.terms-page-body .policy-document {
  border: 1px solid rgba(145, 175, 197, 0.3);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(16, 27, 40, 0.96) 0%, rgba(10, 18, 28, 0.94) 100%),
    rgba(8, 15, 24, 0.92);
  box-shadow: 0 24px 44px rgba(3, 10, 17, 0.46);
  padding: clamp(1.06rem, 2.2vw, 1.68rem);
}

body.home-page.policy-page-body .policy-section + .policy-section,
body.home-page.terms-page-body .policy-section + .policy-section {
  border-top-color: rgba(137, 166, 187, 0.28);
  margin-top: 1.08rem;
  padding-top: 1.08rem;
}

body.home-page.policy-page-body .policy-section h2,
body.home-page.terms-page-body .policy-section h2 {
  color: #e8f3fd;
  font-size: clamp(1.18rem, 2.1vw, 1.38rem);
  margin-bottom: 0.64rem;
}

body.home-page.policy-page-body .policy-section p,
body.home-page.terms-page-body .policy-section p {
  max-width: 74ch;
  color: rgba(203, 223, 236, 0.94);
  line-height: 1.74;
  font-size: 0.96rem;
}

body.home-page.policy-page-body .policy-section p + p,
body.home-page.terms-page-body .policy-section p + p {
  margin-top: 0.72rem;
}

body.home-page.policy-page-body .policy-list,
body.home-page.terms-page-body .policy-list {
  margin-top: 0.66rem;
  gap: 0.48rem;
}

body.home-page.policy-page-body .policy-list li,
body.home-page.terms-page-body .policy-list li {
  color: rgba(203, 223, 236, 0.92);
  line-height: 1.68;
  font-size: 0.95rem;
}

body.home-page.policy-page-body .policy-document a,
body.home-page.terms-page-body .policy-document a {
  color: #8fd5ff;
  text-decoration-color: rgba(143, 213, 255, 0.56);
}

body.home-page.policy-page-body .policy-document a:hover,
body.home-page.terms-page-body .policy-document a:hover {
  color: #c9eaff;
  text-decoration-color: currentColor;
}

.home-page .request-page {
  position: relative;
  isolation: isolate;
  padding-top: clamp(5.9rem, 8.8vw, 7.2rem);
  padding-bottom: clamp(4.6rem, 7.6vw, 6.1rem);
  background: linear-gradient(180deg, rgba(7, 14, 22, 0.62) 0%, rgba(7, 14, 22, 0.28) 54%, rgba(7, 14, 22, 0.08) 100%);
}

.home-page .request-page::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(920px 460px at 8% -16%, rgba(63, 132, 188, 0.28) 0%, transparent 68%),
    radial-gradient(760px 420px at 96% 10%, rgba(53, 122, 175, 0.2) 0%, transparent 72%);
}

.home-page .request-page::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    linear-gradient(rgba(162, 192, 214, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(162, 192, 214, 0.045) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at center top, rgba(0, 0, 0, 0.75) 0%, transparent 82%);
  opacity: 0.58;
}

.home-page .request-page > .request-page-layout {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  gap: 1.25rem 1.5rem;
}

body.home-page.support-apply-page-body .request-page > .request-page-layout {
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
}

body.home-page.free-check-page-body .free-check-layout {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.home-page .request-page .request-main {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(156, 189, 214, 0.36);
  border-radius: 30px;
  background:
    radial-gradient(480px 280px at 102% -6%, rgba(101, 181, 235, 0.24) 0%, transparent 70%),
    radial-gradient(420px 260px at -8% 110%, rgba(45, 88, 129, 0.22) 0%, transparent 72%),
    linear-gradient(160deg, rgba(20, 34, 49, 0.94) 0%, rgba(12, 22, 33, 0.95) 56%, rgba(8, 16, 25, 0.98) 100%);
  box-shadow:
    inset 0 1px 0 rgba(205, 232, 247, 0.11),
    inset 0 -1px 0 rgba(67, 98, 121, 0.28),
    0 32px 62px rgba(2, 9, 15, 0.54);
  padding: clamp(1.15rem, 2vw, 1.72rem);
}

.home-page .request-page .request-main > * {
  position: relative;
  z-index: 1;
}

.home-page .request-page .request-main::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(122deg, rgba(177, 224, 252, 0.14) 0%, rgba(177, 224, 252, 0.04) 44%, rgba(177, 224, 252, 0) 76%);
}

.home-page .request-page .request-main::after {
  content: "";
  position: absolute;
  top: -180px;
  right: -160px;
  width: 360px;
  height: 360px;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(110, 193, 246, 0.2) 0%, rgba(110, 193, 246, 0) 72%);
}

body.home-page.free-check-page-body .free-check-main {
  border-color: rgba(148, 183, 208, 0.36);
  background:
    radial-gradient(480px 280px at 102% -6%, rgba(84, 154, 206, 0.2) 0%, transparent 70%),
    radial-gradient(420px 260px at -8% 110%, rgba(44, 84, 122, 0.2) 0%, transparent 72%),
    linear-gradient(160deg, rgba(19, 32, 46, 0.94) 0%, rgba(11, 21, 32, 0.95) 56%, rgba(8, 16, 25, 0.98) 100%);
}

.home-page .request-page .request-main h1 {
  margin: 0 0 0.8rem;
  color: #f0f9ff;
  font-size: clamp(2.12rem, 4.2vw, 3.32rem);
  line-height: 1.05;
  letter-spacing: -0.024em;
}

.home-page .request-page .request-lead {
  margin: 0;
  max-width: 68ch;
  color: rgba(211, 228, 239, 0.95);
  font-size: clamp(0.94rem, 1.15vw, 1.02rem);
  line-height: 1.66;
}

body.home-page.free-check-page-body .free-check-path-kicker {
  margin: 0 0 0.55rem;
  color: rgba(191, 218, 236, 0.9);
  font-size: 0.71rem;
  letter-spacing: 0.12em;
}

body.home-page.request-page-body .request-path-kicker {
  margin: 0 0 0.55rem;
  color: rgba(197, 221, 237, 0.9);
  font-size: 0.71rem;
  letter-spacing: 0.12em;
}

.home-page .request-page .setup-form {
  gap: 1.04rem;
}

.home-page .request-page .setup-form-guide {
  color: rgba(206, 226, 239, 0.92);
  font-size: 0.86rem;
  line-height: 1.5;
}

.home-page .request-page .setup-package-strip {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(156, 190, 214, 0.34);
  border-radius: 18px;
  background:
    radial-gradient(280px 160px at 92% -18%, rgba(113, 192, 242, 0.18) 0%, transparent 72%),
    linear-gradient(170deg, rgba(18, 32, 46, 0.9) 0%, rgba(12, 23, 35, 0.9) 100%);
  box-shadow:
    inset 0 1px 0 rgba(203, 230, 246, 0.1),
    0 18px 34px rgba(2, 9, 15, 0.34);
  padding: 0.98rem 1.04rem;
}

.home-page .request-page .setup-package-strip > * {
  position: relative;
  z-index: 1;
}

.home-page .request-page .setup-package-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(125deg, rgba(175, 222, 249, 0.12) 0%, rgba(175, 222, 249, 0.03) 44%, rgba(175, 222, 249, 0) 72%);
}

.home-page .request-page .setup-package-price {
  color: #f3fbff;
  font-size: clamp(1.5rem, 2.4vw, 1.82rem);
}

.home-page .request-page .setup-package-heading {
  color: #eef8ff;
}

.home-page .request-page .setup-package-fit,
.home-page .request-page .setup-package-next {
  color: rgba(200, 221, 234, 0.92);
}

.home-page .request-page .setup-package-included li {
  color: rgba(212, 229, 239, 0.94);
}

.home-page .request-page .setup-package-included li::before {
  background: rgba(129, 200, 244, 0.9);
  box-shadow: 0 0 0 3px rgba(74, 136, 180, 0.2);
}

.home-page .request-page .setup-package-price-wrap {
  border-top: 1px solid rgba(148, 180, 203, 0.32);
  padding-top: 0.58rem;
}

.home-page .request-page .setup-package-points {
  margin-top: 0.04rem;
  padding-top: 0.58rem;
  border-top: 1px solid rgba(148, 180, 203, 0.3);
}

.home-page .request-page .setup-package-copy,
.home-page .request-page .setup-package-fit,
.home-page .request-page .setup-package-points p,
.home-page .request-page .setup-package-included li,
.home-page .request-page .setup-package-next,
.home-page .request-page .setup-section-helper,
.home-page .request-page .setup-submit-helper,
.home-page .request-page .setup-microcopy p,
.home-page .request-page .request-side-card p,
.home-page .request-page .request-fit-list li,
.home-page .request-page .request-next-list li,
.home-page .request-page .setup-next-list li,
.home-page .request-page .free-check-support-copy {
  color: rgba(204, 223, 235, 0.92);
}

.home-page .request-page .setup-sections {
  gap: 0.84rem;
}

.home-page .request-page .setup-section {
  position: relative;
  border: 1px solid rgba(149, 181, 203, 0.33);
  border-radius: 18px;
  background: linear-gradient(176deg, rgba(17, 31, 44, 0.86) 0%, rgba(11, 21, 32, 0.9) 100%);
  box-shadow:
    inset 0 1px 0 rgba(197, 226, 244, 0.08),
    0 16px 30px rgba(2, 9, 15, 0.28);
  padding: 0.98rem 1rem;
  gap: 0.72rem;
}

.home-page .request-page .setup-section::before {
  content: "";
  position: absolute;
  left: 0.95rem;
  right: 0.95rem;
  top: 0;
  border-top: 1px solid rgba(181, 217, 240, 0.16);
}

.home-page .request-page .setup-section h3 {
  font-size: clamp(1.1rem, 1.5vw, 1.28rem);
}

.home-page .request-page .setup-section-helper {
  margin: -0.08rem 0 0;
  font-size: 0.82rem;
  line-height: 1.52;
}

.home-page .request-page .setup-package-overline,
.home-page .request-page .setup-section-overline,
.home-page .request-page .request-side-overline,
.home-page .request-page .setup-confirmation-kicker,
.home-page .request-page .free-check-confirmation-kicker {
  color: rgba(191, 215, 231, 0.9);
}

.home-page .request-page .field span {
  color: rgba(212, 230, 241, 0.92);
}

.home-page .request-page .field :is(input, textarea, select) {
  border: 1px solid rgba(147, 180, 202, 0.48);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(17, 31, 45, 0.92) 0%, rgba(10, 20, 30, 0.94) 100%),
    rgba(8, 15, 24, 0.9);
  box-shadow:
    inset 0 1px 0 rgba(202, 230, 249, 0.08),
    inset 0 -1px 0 rgba(67, 95, 118, 0.28);
}

.home-page .request-page .field select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 2.45rem;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14' fill='none'%3E%3Cpath d='M3 5.5L7 9.5L11 5.5' stroke='%23d6ecfa' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"),
    linear-gradient(180deg, rgba(17, 31, 45, 0.92) 0%, rgba(10, 20, 30, 0.94) 100%);
  background-position: right 0.82rem center, 0 0;
  background-size: 0.74rem 0.74rem, 100% 100%;
  background-repeat: no-repeat, no-repeat;
}

.home-page .request-page .field :is(input, textarea)::placeholder {
  color: rgba(181, 203, 218, 0.74);
}

.home-page .request-page .field :is(input, textarea, select):focus {
  border-color: rgba(146, 204, 242, 0.98);
  box-shadow:
    0 0 0 3px rgba(67, 139, 186, 0.32),
    inset 0 1px 0 rgba(210, 235, 249, 0.12);
  background: linear-gradient(180deg, rgba(13, 30, 44, 0.98) 0%, rgba(8, 20, 30, 0.96) 100%);
}

.home-page .request-page .field select:focus {
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14' fill='none'%3E%3Cpath d='M3 5.5L7 9.5L11 5.5' stroke='%23d6ecfa' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"),
    linear-gradient(180deg, rgba(13, 30, 44, 0.98) 0%, rgba(8, 20, 30, 0.96) 100%);
  background-position: right 0.82rem center, 0 0;
  background-size: 0.74rem 0.74rem, 100% 100%;
  background-repeat: no-repeat, no-repeat;
}

.home-page .request-page .field-group {
  border: 1px solid rgba(148, 180, 202, 0.35);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(16, 29, 42, 0.86) 0%, rgba(10, 19, 29, 0.9) 100%);
  box-shadow: inset 0 1px 0 rgba(193, 222, 239, 0.06);
  padding: 0.72rem 0.78rem;
}

.home-page .request-page .field-group legend {
  color: rgba(222, 237, 247, 0.95);
  font-size: 0.81rem;
  line-height: 1.46;
}

.home-page .request-page .choice-pill span,
.home-page .request-page .check-chip span {
  border-color: rgba(145, 177, 199, 0.5);
  background: rgba(18, 33, 47, 0.86);
  color: rgba(219, 234, 244, 0.94);
}

.home-page .request-page .choice-pill input:checked + span,
.home-page .request-page .check-chip input:checked + span {
  border-color: rgba(158, 211, 243, 0.96);
  background: linear-gradient(170deg, rgba(56, 113, 152, 0.56) 0%, rgba(34, 75, 107, 0.64) 100%);
  box-shadow: inset 0 0 0 1px rgba(167, 216, 245, 0.28);
  color: #f4fbff;
}

.home-page .request-page .choice-pill:hover span,
.home-page .request-page .check-chip:hover span {
  border-color: rgba(178, 214, 236, 0.84);
  background: rgba(24, 42, 60, 0.9);
}

.home-page .request-page .tool-detail-wrap {
  border-left-color: rgba(149, 181, 203, 0.46);
  padding-left: 0.68rem;
}

.home-page .request-page .turnstile-wrap {
  border-color: rgba(146, 178, 200, 0.34);
  background: linear-gradient(180deg, rgba(14, 25, 36, 0.86) 0%, rgba(9, 18, 27, 0.88) 100%);
}

.home-page .request-page .checkbox-field input {
  accent-color: #8dcff4;
}

.home-page .request-page .setup-submit-row .btn {
  min-width: min(100%, 20rem);
}

body.home-page.free-check-page-body .free-check-submit-btn {
  border-color: rgba(154, 189, 213, 0.54);
  background: linear-gradient(168deg, rgba(24, 43, 61, 0.9) 0%, rgba(15, 29, 42, 0.92) 100%);
  color: #ebf7ff;
  box-shadow: 0 14px 26px rgba(2, 9, 15, 0.34);
}

body.home-page.free-check-page-body .free-check-submit-btn:hover {
  border-color: rgba(178, 214, 236, 0.76);
  background: linear-gradient(168deg, rgba(31, 53, 74, 0.94) 0%, rgba(19, 35, 50, 0.95) 100%);
}

.home-page .request-page .request-side {
  top: 6.25rem;
  gap: 0.86rem;
}

.home-page .request-page .request-side-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(149, 181, 203, 0.33);
  border-radius: 18px;
  background:
    radial-gradient(260px 140px at 94% -16%, rgba(90, 166, 222, 0.16) 0%, transparent 76%),
    linear-gradient(174deg, rgba(18, 32, 46, 0.9) 0%, rgba(12, 22, 33, 0.92) 100%);
  box-shadow:
    inset 0 1px 0 rgba(198, 228, 245, 0.08),
    0 22px 38px rgba(2, 9, 15, 0.34);
  padding: 0.96rem 1.02rem;
  gap: 0.46rem;
}

.home-page .request-page .request-side-card::before {
  content: "";
  position: absolute;
  left: 0.95rem;
  right: 0.95rem;
  top: 0;
  border-top: 1px solid rgba(181, 217, 240, 0.15);
}

.home-page .request-page .request-side-card h2,
.home-page .request-page .request-side-card h3 {
  color: #eef8ff;
}

.home-page .request-page .request-side-card h2 {
  font-size: 1.14rem;
}

.home-page .request-page .request-side-card h3 {
  font-size: 1.03rem;
}

.home-page .request-page .request-side-price {
  color: #f3fbff !important;
  font-size: 1.18rem !important;
  font-weight: 735;
}

.home-page .request-page .request-fit-list li::before {
  background: rgba(129, 200, 244, 0.9);
  box-shadow: 0 0 0 3px rgba(74, 136, 180, 0.2);
}

.home-page .request-page .request-config-list div {
  border-color: rgba(144, 177, 198, 0.34);
  background: rgba(18, 33, 47, 0.72);
}

.home-page .request-page .request-config-list dt {
  color: rgba(188, 212, 228, 0.86);
}

.home-page .request-page .request-config-list dd {
  color: rgba(223, 238, 247, 0.96);
}

.home-page .request-page .request-config-total {
  border-color: rgba(157, 207, 239, 0.55) !important;
  background: linear-gradient(160deg, rgba(59, 117, 155, 0.36) 0%, rgba(32, 71, 100, 0.38) 100%) !important;
}

.home-page .request-page .request-config-note {
  color: rgba(198, 219, 232, 0.9) !important;
}

.home-page .request-page .request-side-secondary {
  border-color: rgba(141, 173, 196, 0.34);
  background: linear-gradient(174deg, rgba(16, 29, 42, 0.9) 0%, rgba(10, 19, 29, 0.93) 100%);
}

.home-page .request-page .mobile-pricing-breakdown-toggle {
  border-color: rgba(145, 178, 199, 0.42);
  background: linear-gradient(180deg, rgba(19, 34, 48, 0.88) 0%, rgba(12, 23, 34, 0.92) 100%);
  box-shadow: inset 0 1px 0 rgba(200, 229, 245, 0.08);
  color: rgba(218, 233, 244, 0.94);
}

.home-page .request-page .mobile-pricing-breakdown-toggle:hover {
  border-color: rgba(174, 210, 232, 0.78);
  background: linear-gradient(180deg, rgba(24, 42, 60, 0.92) 0%, rgba(14, 27, 39, 0.94) 100%);
}

.home-page .request-page .mobile-pricing-breakdown-toggle[aria-expanded="true"] {
  border-color: rgba(157, 212, 244, 0.92);
  background: linear-gradient(170deg, rgba(56, 113, 152, 0.46) 0%, rgba(27, 59, 84, 0.58) 100%);
  box-shadow: inset 0 0 0 1px rgba(170, 219, 247, 0.24);
}

.home-page .request-page .mobile-pricing-breakdown-panel {
  border-color: rgba(146, 176, 197, 0.36);
  background:
    radial-gradient(280px 140px at 92% -16%, rgba(93, 167, 221, 0.16) 0%, transparent 76%),
    linear-gradient(174deg, rgba(17, 31, 45, 0.9) 0%, rgba(11, 21, 32, 0.92) 100%);
  box-shadow:
    inset 0 1px 0 rgba(197, 226, 244, 0.08),
    0 16px 28px rgba(2, 9, 15, 0.26);
}

.home-page .request-page .mobile-pricing-breakdown-list div {
  border-color: rgba(144, 177, 198, 0.36);
  background: rgba(18, 33, 47, 0.74);
}

.home-page .request-page .mobile-pricing-breakdown-list dt {
  color: rgba(189, 213, 229, 0.88);
}

.home-page .request-page .mobile-pricing-breakdown-list dd {
  color: rgba(223, 238, 247, 0.96);
}

.home-page .request-page .mobile-pricing-breakdown-total {
  border-color: rgba(157, 207, 239, 0.55) !important;
  background: linear-gradient(160deg, rgba(59, 117, 155, 0.36) 0%, rgba(32, 71, 100, 0.38) 100%) !important;
}

.home-page .request-page .mobile-pricing-breakdown-note {
  color: rgba(198, 219, 232, 0.9);
}

body.home-page.free-check-page-body .free-check-path-card {
  border-color: rgba(151, 190, 216, 0.44);
}

body.home-page.free-check-page-body .free-check-side-list li,
body.home-page.free-check-page-body .free-check-outcome-list li {
  border-color: rgba(148, 181, 202, 0.34);
  background: rgba(18, 33, 47, 0.78);
  border-radius: 12px;
}

.home-page .request-page .setup-confirmation,
.home-page .request-page .free-check-confirmation {
  border-color: rgba(151, 189, 214, 0.42);
  background:
    radial-gradient(280px 150px at 90% -18%, rgba(113, 192, 242, 0.2) 0%, transparent 74%),
    linear-gradient(166deg, rgba(17, 31, 45, 0.9) 0%, rgba(11, 21, 31, 0.92) 100%);
  box-shadow:
    inset 0 1px 0 rgba(202, 230, 246, 0.1),
    0 18px 34px rgba(2, 9, 15, 0.34);
}

@media (max-width: 1060px) {
  .home-page .request-page > .request-page-layout,
  .home-page .free-check-layout {
    grid-template-columns: 1fr;
    gap: 0.96rem;
  }

  .home-page .request-page .request-side {
    top: auto;
  }
}

@media (max-width: 800px) {
  .home-page .request-page {
    padding-top: 5rem;
    padding-bottom: 3.85rem;
  }

  .home-page .request-page .request-main {
    border-radius: 22px;
    padding: 1rem;
  }

  .home-page .request-page .request-side-card {
    border-radius: 16px;
    padding: 0.86rem 0.9rem;
  }

  .home-page .request-page .setup-package-strip,
  .home-page .request-page .setup-section {
    border-radius: 14px;
    padding: 0.84rem 0.88rem;
  }

  .home-page .request-page .setup-section::before,
  .home-page .request-page .request-side-card::before {
    left: 0.82rem;
    right: 0.82rem;
  }

  .free-check-path-kicker,
  .request-path-kicker {
    font-size: 0.68rem;
  }
}

@media (max-width: 768px) {
  .request-page-body .setup-sections {
    display: flex;
    flex-direction: column;
    gap: 0.78rem;
  }

  .request-page-body #setup-scope-section {
    order: 1;
  }

  .request-page-body #setup-business-section {
    order: 2;
  }

  .request-page-body #setup-tooling-section {
    order: 3;
  }

  .request-page-body #setup-context-section {
    order: 4;
  }

  .request-page-body .setup-package-strip {
    padding: 0.84rem 0.9rem;
  }

  .request-page-body .setup-package-main {
    gap: 0.24rem;
  }

  .request-page-body .setup-package-heading {
    display: block;
    font-size: clamp(1.2rem, 5.8vw, 1.58rem);
  }

  .request-page-body .setup-package-copy {
    margin-top: 0;
    font-size: 0.83rem;
    line-height: 1.46;
  }

  .request-page-body .setup-package-fit {
    display: block;
  }

  .request-page-body .setup-package-included {
    display: grid;
    margin-top: 0.1rem;
  }

  .request-page-body .setup-package-price-wrap {
    margin-top: 0.08rem;
  }

  .request-page-body .setup-package-price {
    font-size: clamp(1.52rem, 8vw, 1.94rem);
  }

  .request-page-body .setup-package-next {
    display: block;
    font-size: 0.75rem;
    line-height: 1.4;
  }

  .request-page-body .setup-package-points,
  .request-page-body .setup-form-guide,
  .request-page-body .setup-microcopy {
    display: none;
  }

  .request-page-body #setup-scope-section .pricing-rollout-control .choice-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.46rem;
  }

  .request-page-body #setup-scope-section .pricing-rollout-control .choice-pill {
    width: 100%;
  }

  .request-page-body #setup-scope-section .pricing-rollout-control .choice-pill span {
    width: 100%;
    min-height: 2.9rem;
    justify-content: flex-start;
    text-align: left;
    border-radius: 12px;
    padding: 0.46rem 0.72rem;
  }

  .request-page-body #setup-scope-section .pricing-extra-control .pricing-extra-choice-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.4rem;
  }

  .request-page-body #setup-scope-section .pricing-extra-control .choice-pill {
    width: 100%;
  }

  .request-page-body #setup-scope-section .pricing-extra-control .choice-pill span {
    width: 100%;
    min-height: 2.85rem;
    justify-content: center;
    text-align: center;
    border-radius: 12px;
    padding: 0.42rem 0.32rem;
  }

  .request-page-body #setup-scope-section .pricing-extra-control .choice-pill span[data-mobile-label] {
    font-size: 0;
    line-height: 1;
  }

  .request-page-body #setup-scope-section .pricing-extra-control .choice-pill span[data-mobile-label]::before {
    content: attr(data-mobile-label);
    font-size: 1.04rem;
    font-weight: 710;
    letter-spacing: 0.012em;
  }

  .request-page-body #setup-scope-section .pricing-extra-control .pricing-extra-review-option {
    display: none;
  }

  .request-page-body #setup-scope-section .pricing-extra-hint {
    margin-top: 0.12rem;
    font-size: 0.74rem;
  }

  .request-page-body .mobile-pricing-breakdown {
    display: grid;
    gap: 0.48rem;
  }

  .request-page-body .request-side {
    display: none;
  }

  .request-page-body .request-setup-form {
    padding-bottom: 7rem;
  }

  .request-page-body .mobile-pricing-sticky {
    position: fixed;
    left: 0.75rem;
    right: 0.75rem;
    bottom: calc(env(safe-area-inset-bottom, 0px) + 0.62rem);
    z-index: 90;
    border: 1px solid rgba(150, 186, 207, 0.48);
    border-radius: 14px;
    background:
      radial-gradient(260px 140px at 96% -20%, rgba(99, 177, 231, 0.24) 0%, transparent 72%),
      linear-gradient(170deg, rgba(18, 33, 47, 0.94) 0%, rgba(10, 20, 30, 0.96) 100%);
    box-shadow:
      inset 0 1px 0 rgba(206, 232, 247, 0.1),
      0 20px 38px rgba(2, 9, 15, 0.44);
    padding: 0.56rem;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.54rem;
    align-items: center;
  }

  .request-page-body .mobile-pricing-sticky[hidden] {
    display: none;
  }

  .request-page-body .mobile-pricing-sticky-btn {
    min-width: 8.4rem;
    min-height: 2.8rem;
    padding-inline: 0.92rem;
  }

  body.home-page.request-page-body.has-mobile-pricing-bar {
    padding-bottom: 0.2rem;
  }

  body.home-page.free-check-page-body .free-check-layout {
    grid-template-columns: 1fr;
    gap: 0.92rem;
  }

  body.home-page.free-check-page-body .free-check-main {
    border-radius: 20px;
    padding: 0.98rem;
  }

  body.home-page.free-check-page-body .free-check-intro-strip {
    margin-top: 0;
    padding: 0.9rem;
    gap: 0.56rem;
  }

  body.home-page.free-check-page-body .free-check-intro-title {
    font-size: clamp(1.64rem, 8.6vw, 2.18rem);
    line-height: 1.06;
    letter-spacing: -0.018em;
  }

  body.home-page.free-check-page-body .free-check-intro-copy,
  body.home-page.free-check-page-body .free-check-intro-reassure,
  body.home-page.free-check-page-body .free-check-intro-list li {
    overflow-wrap: anywhere;
  }

  body.home-page.free-check-page-body .free-check-form {
    margin-top: 1rem;
    gap: 0.94rem;
    width: 100%;
  }

  body.home-page.free-check-page-body .free-check-form .setup-sections {
    gap: 0.74rem;
  }

  body.home-page.free-check-page-body .free-check-form .setup-section {
    padding: 0.82rem 0.84rem;
  }

  body.home-page.free-check-page-body .free-check-submit-row {
    margin-top: 0.7rem;
  }

  body.home-page.free-check-page-body .free-check-submit-btn {
    width: 100%;
    min-height: 3.02rem;
  }

  body.home-page.free-check-page-body .free-check-support-copy {
    font-size: 0.8rem;
    line-height: 1.5;
  }

  body.home-page.free-check-page-body .free-check-side {
    display: none;
  }

  body.home-page.free-check-page-body .free-check-mobile-support {
    margin-top: 0.9rem;
    display: grid;
    gap: 0.6rem;
  }
}

@media (max-width: 560px) {
  .home-page .request-page .request-main h1 {
    font-size: clamp(1.78rem, 8.8vw, 2.26rem);
  }

  .home-page .request-page .field-group {
    padding: 0.66rem 0.7rem;
  }

  .home-page .request-page .choice-row {
    gap: 0.38rem;
  }
}

.home-page .site-footer {
  border-top: 1px solid rgba(151, 183, 207, 0.2);
  background: linear-gradient(180deg, #080f18 0%, #060d16 100%);
}

.home-page .footer-grid {
  border-bottom-color: rgba(142, 172, 194, 0.26);
}

.home-page .footer-positioning,
.home-page .footer-location,
.home-page .footer-note,
.home-page .copyright {
  color: #a9bfd1;
}

.home-page .footer-heading {
  color: #e7f3ff;
}

.home-page .footer-links a {
  color: #cddfec;
}

.home-page .footer-links a:hover {
  color: #f1f8ff;
}

@media (max-width: 1120px) {
  .home-page .hp-hero-grid,
  .home-page .hp-proof-grid,
  .home-page .hp-cta-grid {
    grid-template-columns: 1fr;
    gap: 0.96rem;
  }

  .home-page .hp-deliverables-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-page .hp-path-card-primary {
    grid-column: 1 / -1;
  }

  .home-page .hp-workflow-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-page .hp-workflow-step:last-child {
    grid-column: 1 / -1;
  }

  .home-page .hp-output-board {
    max-width: 860px;
  }
}

@media (max-width: 860px) {
  .home-page .container {
    width: min(100% - 2rem, 1220px);
  }

  .home-page .hp-section {
    padding: 4.1rem 0;
  }

  .home-page .hp-hero {
    padding-top: 4.8rem;
  }

  .home-page .hp-hero-shell {
    border-radius: 24px;
    padding: 0.95rem;
  }

  .home-page .hp-hero-copy h1 {
    font-size: clamp(1.9rem, 8.3vw, 3rem);
    max-width: 14ch;
  }

  .home-page .hp-output-grid,
  .home-page .hp-deliverables-grid,
  .home-page .hp-fit-grid,
  .home-page .hp-workflow-list {
    grid-template-columns: 1fr;
  }

  .home-page .hp-workflow-step:last-child {
    grid-column: auto;
  }

  .home-page .hp-trust-strip {
    gap: 0.42rem;
  }

  .home-page .hp-compare-proof {
    flex-direction: column;
    align-items: flex-start;
  }

  .home-page .hp-path-card-primary {
    grid-column: auto;
  }

  .home-page .hp-board-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .home-page .hp-fit-note .btn {
    width: 100%;
    justify-content: center;
  }

  .home-page .hp-proof-sample-actions .btn {
    width: 100%;
    flex-basis: 100%;
  }

  .home-page .hp-hero-check-note {
    font-size: 0.78rem;
  }

  .home-page .hp-proof-row {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.42rem;
  }

  .home-page .hp-proof-row span:last-child {
    grid-column: 1 / -1;
    color: var(--hp-text-muted);
    font-size: 0.76rem;
    padding-top: 0.08rem;
  }

  .home-page .hp-proof-row-head {
    display: none;
  }

  .home-page .hp-proof-modal-dialog {
    max-height: min(92vh, 900px);
    padding: 0.82rem;
    border-radius: 18px;
  }

  .home-page .hp-proof-modal-viewer iframe {
    height: min(64vh, 680px);
  }

  body.home-page.policy-page-body .policy-page-shell,
  body.home-page.terms-page-body .policy-page-shell {
    width: min(100%, 100%);
  }

  body.home-page.policy-page-body .policy-header,
  body.home-page.policy-page-body .policy-document,
  body.home-page.terms-page-body .policy-header,
  body.home-page.terms-page-body .policy-document {
    border-radius: 18px;
    padding: 1.02rem;
  }

  .home-page .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 800px) {
  .home-page .primary-nav {
    border-color: rgba(150, 179, 203, 0.4);
    background: rgba(8, 15, 24, 0.97);
    box-shadow: 0 18px 32px rgba(3, 10, 16, 0.58);
  }

  .home-page .nav-link {
    color: #d4e4f0;
  }

  .home-page .nav-link:hover,
  .home-page .nav-link.is-active {
    color: #f3faff;
  }

  .home-page .primary-nav .btn-header {
    margin-top: 0;
  }

  .home-page .hp-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .home-page .hp-hero-actions .btn {
    width: 100%;
  }

  .home-page .hp-cta-primary,
  .home-page .hp-cta-secondary {
    padding: 0.95rem;
  }

  body.home-page.policy-page-body .policy-header h1,
  body.home-page.terms-page-body .policy-header h1 {
    font-size: clamp(1.86rem, 7.2vw, 2.28rem);
  }

  .free-check-confirmation {
    padding: 0.82rem 0.8rem;
  }
}

@media (max-width: 560px) {
  .home-page .container {
    width: min(100% - 1.5rem, 1220px);
  }

  .home-page .hp-section {
    padding: 3.65rem 0;
  }

  .home-page .hp-hero {
    padding-top: 4.05rem;
  }

  .home-page .hp-package-strip {
    padding: 0.76rem;
  }

  .home-page .hp-package-price {
    font-size: 1.2rem;
  }

  .home-page .hp-output-body h2 {
    font-size: 0.9rem;
  }

  .home-page .hp-output-body p,
  .home-page .hp-proof-copy li,
  .home-page .hp-proof-card li,
  .home-page .hp-cta-primary li,
  .home-page .faq-answer p {
    font-size: 0.84rem;
  }

  body.home-page.policy-page-body .policy-page,
  body.home-page.terms-page-body .policy-page {
    padding-top: 4.72rem;
    padding-bottom: 3.65rem;
  }

  body.home-page.policy-page-body .policy-header,
  body.home-page.policy-page-body .policy-document,
  body.home-page.terms-page-body .policy-header,
  body.home-page.terms-page-body .policy-document {
    border-radius: var(--radius-sm);
    padding: 0.9rem 0.88rem;
  }

  body.home-page.policy-page-body .policy-section + .policy-section,
  body.home-page.terms-page-body .policy-section + .policy-section {
    margin-top: 0.84rem;
    padding-top: 0.84rem;
  }

  body.home-page.policy-page-body .policy-section h2,
  body.home-page.terms-page-body .policy-section h2 {
    font-size: 1.05rem;
  }

  body.home-page.policy-page-body .policy-section p,
  body.home-page.policy-page-body .policy-list li,
  body.home-page.terms-page-body .policy-section p,
  body.home-page.terms-page-body .policy-list li {
    font-size: 0.9rem;
  }

  .home-page .hp-proof-modal {
    padding: 0.74rem;
  }

  .home-page .hp-proof-modal-header {
    flex-direction: column;
    gap: 0.62rem;
  }

  .home-page .hp-proof-modal-controls {
    width: 100%;
    justify-content: flex-start;
  }

  .home-page .hp-proof-modal-controls .btn,
  .home-page .hp-proof-modal-close {
    width: 100%;
  }

  .home-page .hp-proof-modal-viewer iframe {
    height: min(58vh, 560px);
  }
}

@media (hover: none) and (pointer: coarse) {
  .home-page .hp-output-card:hover,
  .home-page .hp-deliverable-card:hover,
  .home-page .faq-item:hover {
    transform: none;
    box-shadow: var(--hp-shadow-soft);
    border-color: rgba(151, 183, 207, 0.28);
  }
}
