:root {
  --empower-blue: #315cf4;
  --growth-emerald: #1f9d7a;
  --emerald-ink: #167a5c;
  --success-gold: #e2b24a;
  --ink: #10243e;
  --ink-2: #152e4a;
  --ink-3: #1b3a5a;
  --emerald: var(--growth-emerald);
  --emerald-bright: var(--empower-blue);
  --emerald-soft: #cfeee3;
  --champagne: var(--success-gold);
  --champagne-soft: #f3d98d;
  --ivory: #f7f4ec;
  --paper: #fffdfa;
  --sage: #b9c6d3;
  --mist: #e8eff6;
  --line: rgba(247, 244, 236, 0.14);
  --line-dark: rgba(16, 36, 62, 0.14);
  --shadow: 0 30px 80px rgba(7, 20, 38, 0.18);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
}

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

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--ivory);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

::selection {
  background: var(--emerald);
  color: var(--ink);
}

:focus-visible {
  outline: 3px solid var(--emerald-bright);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  left: 18px;
  top: 12px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--ivory);
  color: var(--ink);
  font-weight: 800;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.narrow {
  width: min(820px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid transparent;
  transition: background 220ms ease, border-color 220ms ease, backdrop-filter 220ms ease;
}

.site-header.scrolled {
  border-color: var(--line);
  background: rgba(16, 36, 62, 0.9);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  flex-shrink: 0;
}

.brand-mark {
  width: 45px;
  height: 45px;
}

.brand-copy {
  display: grid;
  gap: 1px;
  line-height: 1;
}

.brand-name {
  color: var(--ivory);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.brand-descriptor {
  color: var(--sage);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

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

.site-nav > a:not(.button) {
  color: #dde6f0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: color 180ms ease;
}

.site-nav > a:not(.button):hover {
  color: var(--emerald-bright);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--ivory);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 99px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"]::before {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"]::after {
  transform: translateY(-6px) rotate(-45deg);
}

.button {
  display: inline-flex;
  min-height: 49px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.025em;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  background: var(--emerald-bright);
  color: #ffffff;
  box-shadow: 0 13px 30px rgba(49, 92, 244, 0.24);
}

.button-primary:hover {
  background: #5273f7;
  box-shadow: 0 18px 40px rgba(49, 92, 244, 0.32);
}

.button-secondary {
  border-color: rgba(247, 244, 236, 0.25);
  background: rgba(247, 244, 236, 0.05);
  color: var(--ivory);
}

.button-secondary:hover {
  border-color: var(--champagne);
  background: rgba(226, 178, 74, 0.1);
}

.button-dark {
  background: var(--ink);
  color: var(--ivory);
}

.button-small {
  min-height: 43px;
  padding-inline: 18px;
  font-size: 12px;
}

.button-arrow::after {
  content: "↗";
  font-size: 16px;
  line-height: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--champagne);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 24px;
  height: 1px;
  background: currentColor;
  content: "";
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 770px;
  overflow: hidden;
  padding: 166px 0 92px;
  background:
    radial-gradient(circle at 82% 23%, rgba(49, 92, 244, 0.24), transparent 29%),
    radial-gradient(circle at 9% 74%, rgba(226, 178, 74, 0.1), transparent 32%),
    var(--ink);
}

.hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(247, 244, 236, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 244, 236, 0.035) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: linear-gradient(to right, black, transparent 85%);
  content: "";
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(420px, 0.94fr);
  align-items: center;
  gap: clamp(50px, 7vw, 100px);
}

.hero-copy h1 {
  max-width: 720px;
  margin: 0;
  color: var(--ivory);
  font-family: var(--serif);
  font-size: clamp(60px, 7.6vw, 106px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.91;
}

.hero-copy h1 em {
  display: block;
  color: var(--emerald-bright);
  font-weight: 400;
}

.hero-lede {
  max-width: 660px;
  margin: 28px 0 0;
  color: #cad5e2;
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.72;
}

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

.hero-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 24px 0 0;
  color: var(--sage);
  font-size: 12px;
}

.hero-note::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--emerald-bright);
  box-shadow: 0 0 0 5px rgba(49, 92, 244, 0.12);
  content: "";
}

.blueprint-wrap {
  position: relative;
  min-height: 520px;
}

.blueprint-halo {
  position: absolute;
  inset: 9% 3% 2% 6%;
  border: 1px solid rgba(226, 178, 74, 0.18);
  border-radius: 50%;
  transform: rotate(-7deg);
}

.blueprint-halo::before,
.blueprint-halo::after {
  position: absolute;
  border: 1px solid rgba(31, 157, 122, 0.16);
  border-radius: 50%;
  content: "";
}

.blueprint-halo::before {
  inset: 9%;
}

.blueprint-halo::after {
  inset: 20%;
}

.blueprint-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(410px, 92%);
  overflow: hidden;
  border: 1px solid rgba(247, 244, 236, 0.18);
  border-radius: 30px;
  background: linear-gradient(155deg, rgba(27, 58, 90, 0.97), rgba(12, 31, 53, 0.96));
  box-shadow: 0 38px 100px rgba(0, 0, 0, 0.34);
  transform: translate(-50%, -50%) rotate(2deg);
  backdrop-filter: blur(16px);
}

.blueprint-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 23px 25px;
  border-bottom: 1px solid var(--line);
}

.blueprint-title {
  margin: 0;
  color: var(--ivory);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--emerald-soft);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.status-pill::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--emerald);
  content: "";
}

.blueprint-body {
  padding: 13px 25px 27px;
}

.blueprint-step {
  display: grid;
  grid-template-columns: 46px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(247, 244, 236, 0.09);
}

.blueprint-step:last-child {
  border-bottom: 0;
}

.step-number {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(226, 178, 74, 0.32);
  border-radius: 14px;
  color: var(--champagne);
  font-family: var(--serif);
  font-size: 17px;
}

.step-copy strong,
.step-copy span {
  display: block;
}

.step-copy strong {
  color: var(--ivory);
  font-size: 13px;
}

.step-copy span {
  margin-top: 2px;
  color: var(--sage);
  font-size: 10px;
}

.step-check {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 50%;
  background: rgba(31, 157, 122, 0.14);
  color: var(--emerald);
  font-size: 12px;
  font-weight: 900;
}

.floating-mark {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 33px;
  width: 98px;
  height: 98px;
  padding: 17px;
  border: 1px solid rgba(226, 178, 74, 0.24);
  border-radius: 28px;
  background: rgba(16, 36, 62, 0.86);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  transform: rotate(-7deg);
  backdrop-filter: blur(15px);
}

.trust-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #122a46;
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-list li {
  position: relative;
  padding: 22px 16px;
  color: #dce5ee;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.trust-list li + li::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--champagne);
  content: "";
}

.section {
  padding: clamp(86px, 10vw, 140px) 0;
}

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

.section-mist {
  background: #eef3f8;
  color: var(--ink);
}

.section-dark {
  background: var(--ink-2);
}

.section-header {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: end;
  gap: 60px;
  margin-bottom: 58px;
}

.section-header h2,
.statement h2,
.transform-copy h2,
.cta-copy h2,
.legal-page h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(44px, 5.4vw, 74px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.section-header p {
  max-width: 620px;
  margin: 0 0 4px;
  color: #526174;
  font-size: 17px;
  line-height: 1.8;
}

.section-dark .section-header p {
  color: #c2ceda;
}

.statement {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 70px;
  align-items: start;
}

.statement-intro {
  position: sticky;
  top: 120px;
}

.statement-body {
  display: grid;
  gap: 34px;
}

.statement-body > p {
  margin: 0;
  color: #36485e;
  font-size: clamp(21px, 2.4vw, 31px);
  line-height: 1.55;
}

.statement-body > p strong {
  color: var(--ink);
}

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

.difference-card {
  min-height: 170px;
  padding: 25px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.58);
}

.difference-card span {
  display: block;
  color: var(--emerald-ink);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.difference-card h3 {
  margin: 15px 0 7px;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 500;
  line-height: 1.2;
}

.difference-card p {
  margin: 0;
  color: #627184;
  font-size: 13px;
}

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

.service-card {
  position: relative;
  min-height: 355px;
  overflow: hidden;
  padding: 34px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  background: #fffefb;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-card:hover {
  border-color: rgba(49, 92, 244, 0.42);
  box-shadow: 0 25px 65px rgba(16, 36, 62, 0.11);
  transform: translateY(-5px);
}

.service-card::after {
  position: absolute;
  right: -72px;
  bottom: -96px;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(31, 157, 122, 0.18);
  border-radius: 50%;
  content: "";
}

.service-number {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 15px;
  background: var(--ink-2);
  color: var(--champagne);
  font-family: var(--serif);
  font-size: 18px;
}

.service-card h3 {
  margin: 31px 0 12px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 500;
  letter-spacing: -0.025em;
}

.service-card > p {
  max-width: 530px;
  margin: 0;
  color: #526174;
  font-size: 14px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 27px 0 0;
  padding: 0;
  list-style: none;
}

.service-tags li {
  padding: 7px 11px;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  background: #f2f6fa;
  color: #384a60;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.025em;
}

.transform-section {
  position: relative;
  overflow: hidden;
  background: var(--ink-2);
}

.transform-section::before {
  position: absolute;
  right: -220px;
  top: -260px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(49, 92, 244, 0.16);
  border-radius: 50%;
  box-shadow: 0 0 0 110px rgba(49, 92, 244, 0.032), 0 0 0 220px rgba(49, 92, 244, 0.02);
  content: "";
}

.transform-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 80px;
  align-items: center;
}

.transform-copy h2 em {
  color: var(--emerald-bright);
  font-weight: 400;
}

.transform-copy > p {
  margin: 25px 0 0;
  color: #b8c5d2;
  font-size: 17px;
}

.transformation-board {
  display: grid;
  grid-template-columns: 1fr 42px 1fr;
  align-items: stretch;
  gap: 10px;
}

.state-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.035);
}

.state-card.after {
  border-color: rgba(31, 157, 122, 0.38);
  background: linear-gradient(160deg, rgba(31, 157, 122, 0.12), rgba(255, 255, 255, 0.035));
}

.state-label {
  color: var(--champagne);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.state-card h3 {
  margin: 19px 0 22px;
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  line-height: 1.2;
}

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

.state-card li {
  position: relative;
  padding-left: 22px;
  color: #bdc9d6;
  font-size: 12px;
}

.state-card li::before {
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 9px;
  height: 1px;
  background: #718095;
  content: "";
}

.after li::before {
  width: 8px;
  height: 8px;
  top: 0.45em;
  border-radius: 50%;
  background: var(--emerald);
}

.state-arrow {
  display: grid;
  place-items: center;
  color: var(--emerald-bright);
  font-size: 25px;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 13px;
}

.package-card {
  position: relative;
  display: flex;
  min-height: 520px;
  flex-direction: column;
  padding: 29px;
  border: 1px solid var(--line-dark);
  border-radius: 27px;
  background: #fffefb;
}

.package-card.featured {
  border-color: transparent;
  background: var(--ink-2);
  color: var(--ivory);
  box-shadow: var(--shadow);
  transform: translateY(-14px);
}

.featured-ribbon {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--champagne);
  color: var(--ink);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.package-kicker {
  color: var(--emerald-ink);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.package-card.featured .package-kicker {
  color: var(--champagne);
}

.package-card h3 {
  margin: 19px 0 0;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
}

.package-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: 13px;
}

.package-price strong {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 500;
  letter-spacing: -0.035em;
}

.package-price span {
  color: #718095;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.package-card.featured .package-price span {
  color: var(--sage);
}

.package-summary {
  min-height: 70px;
  margin: 14px 0 0;
  color: #5b6a7d;
  font-size: 12px;
}

.package-card.featured .package-summary {
  color: #b8c5d2;
}

.package-list {
  display: grid;
  gap: 11px;
  margin: 23px 0 29px;
  padding: 23px 0 0;
  border-top: 1px solid var(--line-dark);
  list-style: none;
}

.package-card.featured .package-list {
  border-color: var(--line);
}

.package-list li {
  position: relative;
  padding-left: 20px;
  color: #46576a;
  font-size: 11px;
}

.package-card.featured .package-list li {
  color: #d5dfe9;
}

.package-list li::before {
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--emerald);
  content: "";
}

.package-card .button {
  width: 100%;
  margin-top: auto;
}

.pricing-note {
  margin: 30px 0 0;
  color: #657487;
  font-size: 11px;
  text-align: center;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.process-step {
  min-height: 250px;
  padding: 29px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-step span {
  color: var(--champagne);
  font-family: var(--serif);
  font-size: 17px;
}

.process-step h3 {
  margin: 54px 0 10px;
  font-family: var(--serif);
  font-size: 29px;
  font-weight: 500;
}

.process-step p {
  margin: 0;
  color: #b5c2cf;
  font-size: 12px;
}

.ownership-banner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 60px;
  margin-top: 16px;
  padding: 43px;
  border: 1px solid rgba(31, 157, 122, 0.28);
  border-radius: 28px;
  background: rgba(31, 157, 122, 0.075);
}

.ownership-banner h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 33px;
  font-weight: 500;
}

.ownership-banner p {
  margin: 0;
  color: #bfcbd7;
  font-size: 13px;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.audience-card {
  min-height: 210px;
  padding: 26px;
  border: 1px solid var(--line-dark);
  border-radius: 23px;
  background: rgba(255, 255, 255, 0.58);
}

.audience-card .icon {
  color: var(--emerald);
  font-size: 23px;
}

.audience-card h3 {
  margin: 34px 0 9px;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
}

.audience-card p {
  margin: 0;
  color: #5a6a7d;
  font-size: 12px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 70px;
}

.faq-intro {
  position: sticky;
  top: 120px;
  align-self: start;
}

.faq-intro h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(44px, 5vw, 68px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1;
}

.faq-intro p {
  margin: 20px 0 0;
  color: #5c6c7f;
}

.faq-list {
  border-top: 1px solid var(--line-dark);
}

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

.faq-list summary {
  position: relative;
  padding: 24px 45px 24px 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.25;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  right: 0;
  top: 22px;
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  color: var(--emerald);
  font-family: var(--sans);
  font-size: 17px;
  content: "+";
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  margin: -5px 45px 26px 0;
  color: #59697c;
  font-size: 14px;
}

.cta-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 9% 90%, rgba(226, 178, 74, 0.11), transparent 32%),
    radial-gradient(circle at 88% 8%, rgba(49, 92, 244, 0.2), transparent 31%),
    var(--ink);
}

.cta-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 80px;
  align-items: start;
}

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

.cta-copy h2 em {
  color: var(--emerald-bright);
  font-weight: 400;
}

.cta-copy > p {
  margin: 25px 0 0;
  color: #bbc7d4;
  font-size: 16px;
}

.cta-points {
  display: grid;
  gap: 13px;
  margin: 31px 0 0;
  padding: 0;
  list-style: none;
}

.cta-points li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #d0d9e3;
  font-size: 12px;
}

.cta-points li::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--champagne);
  content: "";
}

.intake-card {
  padding: clamp(27px, 4vw, 44px);
  border: 1px solid rgba(247, 244, 236, 0.17);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.19);
  backdrop-filter: blur(17px);
}

.form-heading {
  margin-bottom: 29px;
}

.form-heading h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 500;
}

.form-heading p {
  margin: 8px 0 0;
  color: var(--sage);
  font-size: 12px;
}

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

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

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

.field label,
.field-label {
  color: #dce5ee;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(247, 244, 236, 0.17);
  border-radius: 12px;
  background: rgba(10, 27, 48, 0.64);
  color: var(--ivory);
  outline: 0;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.field input,
.field select {
  height: 52px;
  padding: 0 14px;
}

.field textarea {
  min-height: 128px;
  padding: 14px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #7f8fa2;
}

.field select {
  color-scheme: dark;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--emerald-bright);
  box-shadow: 0 0 0 4px rgba(49, 92, 244, 0.14);
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.checkbox-row input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--emerald-bright);
}

.checkbox-row label {
  color: #adb9c7;
  font-size: 10px;
  line-height: 1.6;
}

.form-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 23px;
}

.form-submit .button {
  min-width: 200px;
}

.form-note {
  margin: 0;
  color: #8998a8;
  font-size: 9px;
  line-height: 1.5;
}

.site-footer {
  padding: 62px 0 26px;
  border-top: 1px solid var(--line);
  background: #0b1c31;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  padding-bottom: 43px;
}

.footer-brand p {
  max-width: 470px;
  margin: 20px 0 0;
  color: #9aa9b9;
  font-size: 12px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
}

.footer-column strong {
  color: var(--champagne);
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-column nav {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.footer-column a {
  color: #bdc8d5;
  font-size: 12px;
}

.footer-column a:hover {
  color: var(--emerald-bright);
}

.footer-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.footer-bottom p {
  max-width: 780px;
  margin: 0;
  color: #758497;
  font-size: 9px;
  line-height: 1.7;
}

.footer-bottom span {
  flex-shrink: 0;
  color: #8593a4;
  font-size: 9px;
}

.legal-shell {
  min-height: 100vh;
  background: var(--paper);
  color: var(--ink);
}

.legal-shell .site-header {
  position: relative;
  border-color: var(--line);
  background: var(--ink);
}

.legal-page {
  padding: 95px 0 120px;
}

.legal-page .eyebrow {
  color: var(--emerald-ink);
}

.legal-page h1 {
  max-width: 760px;
}

.legal-meta {
  margin: 20px 0 52px;
  color: #6d7c8f;
  font-size: 12px;
}

.legal-content {
  color: #405167;
}

.legal-content h2 {
  margin: 45px 0 13px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 29px;
  font-weight: 500;
}

.legal-content p,
.legal-content li {
  font-size: 14px;
}

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

.success-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 40px 20px;
  background:
    radial-gradient(circle at 70% 20%, rgba(49, 92, 244, 0.22), transparent 31%),
    var(--ink);
}

.success-card {
  width: min(610px, 100%);
  padding: clamp(34px, 7vw, 65px);
  border: 1px solid var(--line);
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.05);
  text-align: center;
  box-shadow: var(--shadow);
}

.success-card .brand-mark {
  width: 74px;
  height: 74px;
  margin: 0 auto 28px;
}

.success-card h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(43px, 8vw, 66px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1;
}

.success-card h1 em {
  display: block;
  color: var(--emerald-bright);
  font-weight: 400;
}

.success-card p {
  margin: 23px auto 31px;
  color: #bdc9d6;
}

@media (max-width: 1080px) {
  .hero-grid {
    grid-template-columns: 1fr 0.8fr;
    gap: 35px;
  }

  .blueprint-wrap {
    min-height: 470px;
  }

  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .package-card.featured {
    transform: none;
  }

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

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 84px;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    padding: 34px 22px 45px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(16, 36, 62, 0.99);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav > a:not(.button) {
    padding: 18px 5px;
    border-bottom: 1px solid var(--line);
    font-family: var(--serif);
    font-size: 26px;
    font-weight: 500;
  }

  .site-nav .button {
    margin-top: 28px;
  }

  .hero {
    padding-top: 145px;
  }

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

  .hero-copy {
    max-width: 750px;
  }

  .blueprint-wrap {
    width: min(570px, 100%);
    margin: 10px auto 0;
  }

  .section-header,
  .statement,
  .transform-grid,
  .faq-grid,
  .cta-grid,
  .ownership-banner {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .statement-intro,
  .faq-intro,
  .cta-copy {
    position: static;
  }

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

  .transformation-board {
    max-width: 690px;
  }

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

@media (max-width: 680px) {
  .container,
  .narrow {
    width: min(100% - 28px, 1180px);
  }

  .nav-shell {
    min-height: 76px;
  }

  .site-nav {
    top: 76px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand-name {
    font-size: 13px;
  }

  .brand-descriptor {
    font-size: 8px;
  }

  .hero {
    min-height: 0;
    padding: 127px 0 55px;
  }

  .hero-copy h1 {
    font-size: clamp(53px, 17vw, 78px);
  }

  .hero-lede {
    font-size: 16px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .blueprint-wrap {
    min-height: 430px;
  }

  .blueprint-card {
    width: 96%;
  }

  .blueprint-top,
  .blueprint-body {
    padding-right: 18px;
    padding-left: 18px;
  }

  .floating-mark {
    right: -4px;
    bottom: 3px;
    width: 72px;
    height: 72px;
    padding: 11px;
    border-radius: 21px;
  }

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

  .trust-list li {
    padding: 17px 8px;
    font-size: 9px;
  }

  .trust-list li:nth-child(3)::before {
    display: none;
  }

  .section {
    padding: 82px 0;
  }

  .section-header {
    margin-bottom: 38px;
  }

  .section-header h2,
  .statement h2,
  .transform-copy h2,
  .cta-copy h2,
  .legal-page h1 {
    font-size: clamp(42px, 13vw, 60px);
  }

  .statement-body > p {
    font-size: 20px;
  }

  .difference-grid,
  .packages-grid,
  .audience-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 0;
    padding: 27px;
  }

  .transformation-board {
    grid-template-columns: 1fr;
  }

  .state-arrow {
    transform: rotate(90deg);
  }

  .package-card {
    min-height: 0;
  }

  .package-summary {
    min-height: 0;
  }

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

  .process-step {
    min-height: 0;
  }

  .process-step h3 {
    margin-top: 30px;
  }

  .ownership-banner {
    padding: 29px;
  }

  .form-submit,
  .footer-bottom {
    flex-direction: column;
  }

  .form-submit .button {
    width: 100%;
  }

  .footer-links {
    gap: 25px;
  }

  .legal-page {
    padding-top: 70px;
  }
}

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