:root {
  --navy: #050229;
  --navy-2: #0d0937;
  --blue: #384cff;
  --blue-soft: #6878ff;
  --paper: #f7f7fa;
  --white: #ffffff;
  --ink: #050229;
  --muted: #6f7088;
  --line: #dedfe8;
  --red: #ff454d;
  --violet: #8b50ff;
  --max: 1420px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--white);
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

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

.preview-bar {
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 7px 20px;
  background: var(--blue);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.preview-bar__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 5px rgba(255,255,255,.16);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  color: #fff;
  background: rgba(5,2,41,.94);
  border-bottom: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(18px);
}

.nav {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo-plate {
  width: 210px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.logo-plate img {
  width: 100%;
  filter: brightness(0) invert(1);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-left: auto;
}

.nav-links a {
  position: relative;
  color: rgba(255,255,255,.7);
  font-size: 14px;
  font-weight: 650;
  transition: color .2s ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: #fff;
}

.nav-links a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -12px;
  height: 2px;
  background: var(--blue-soft);
}

.menu-button {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  place-items: center;
  color: #fff;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 15px;
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 112px 0 0;
  z-index: 29;
  padding: 28px 24px;
  background: var(--navy);
}

.mobile-menu.is-open {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-menu a {
  padding: 18px 4px;
  color: #fff;
  font-size: 24px;
  font-weight: 750;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 15px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

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

.btn-primary {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 16px 38px rgba(56,76,255,.28);
}

.btn-primary:hover {
  background: #4457ff;
  box-shadow: 0 20px 46px rgba(56,76,255,.38);
}

.btn-light {
  color: var(--ink);
  background: #fff;
}

.btn-outline-light {
  color: #fff;
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.24);
}

.btn-outline-dark {
  color: var(--ink);
  background: transparent;
  border-color: rgba(5,2,41,.18);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: currentColor;
}

.eyebrow-light {
  color: #8f9aff;
}

.display {
  margin: 0;
  font-size: clamp(54px, 6.3vw, 102px);
  font-weight: 800;
  letter-spacing: -.055em;
  line-height: .98;
}

.display-small {
  font-size: clamp(46px, 5vw, 82px);
}

.section-title {
  margin: 18px 0 0;
  max-width: 980px;
  font-size: clamp(40px, 4.4vw, 72px);
  font-weight: 800;
  letter-spacing: -.045em;
  line-height: 1.02;
}

.section-title--small {
  font-size: clamp(34px, 3.5vw, 58px);
}

.lede {
  max-width: 720px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.65;
}

.lede-light {
  color: rgba(255,255,255,.65);
}

.text-blue {
  color: var(--blue-soft);
}

.text-red {
  color: var(--red);
}

.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(800px 560px at 82% 52%, rgba(56,76,255,.2), transparent 65%),
    radial-gradient(700px 480px at 18% 110%, rgba(139,80,255,.12), transparent 68%),
    var(--navy);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .22;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to right, transparent, #000 50%, #000);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  min-height: calc(100vh - 112px);
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(420px, .88fr);
  align-items: center;
  gap: 72px;
  padding-block: 92px 96px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-copy .display {
  max-width: 930px;
}

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

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.13);
}

.proof-item {
  min-width: 160px;
}

.proof-item strong {
  display: block;
  font-size: 17px;
  color: #fff;
}

.proof-item span {
  display: block;
  margin-top: 5px;
  color: rgba(255,255,255,.5);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.phone-stage {
  position: relative;
  min-height: 690px;
  display: grid;
  place-items: center;
}

.phone-stage::before {
  content: "";
  position: absolute;
  width: min(540px, 96%);
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 50%;
  box-shadow:
    0 0 0 46px rgba(255,255,255,.018),
    0 0 0 92px rgba(255,255,255,.012);
}

.hero-phone {
  position: relative;
  z-index: 2;
  width: min(360px, 72%);
  filter: drop-shadow(0 42px 70px rgba(0,0,0,.5));
  transform: rotate(3deg);
}

.float-note {
  position: absolute;
  z-index: 3;
  max-width: 220px;
  padding: 17px 18px;
  color: var(--ink);
  background: rgba(255,255,255,.96);
  border-radius: 17px;
  box-shadow: 0 22px 60px rgba(0,0,0,.3);
}

.float-note strong {
  display: block;
  font-size: 14px;
}

.float-note span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.float-note--top {
  top: 16%;
  left: 0;
}

.float-note--bottom {
  right: -10px;
  bottom: 18%;
}

.section {
  padding-block: 120px;
}

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

.section-navy {
  color: #fff;
  background: var(--navy);
}

.statement {
  padding-block: 138px;
  background: #fff;
}

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

.statement-kicker {
  padding-top: 14px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.statement-copy {
  margin: 0;
  max-width: 1100px;
  font-size: clamp(48px, 5.5vw, 88px);
  font-weight: 800;
  letter-spacing: -.05em;
  line-height: 1.02;
}

.section-rule {
  height: 1px;
  background: var(--line);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.metric-block {
  position: relative;
  min-height: 620px;
  padding: 56px;
  overflow: hidden;
  color: #fff;
  background: var(--navy);
  border-radius: 30px;
}

.metric-block::after {
  content: "14";
  position: absolute;
  right: -20px;
  bottom: -88px;
  color: rgba(104,120,255,.14);
  font-size: 420px;
  font-weight: 800;
  letter-spacing: -.1em;
  line-height: 1;
}

.metric-block__value {
  position: relative;
  z-index: 2;
  font-size: clamp(92px, 11vw, 176px);
  font-weight: 800;
  letter-spacing: -.08em;
  line-height: .9;
}

.metric-block__label {
  position: relative;
  z-index: 2;
  max-width: 420px;
  margin-top: 18px;
  color: rgba(255,255,255,.68);
  font-size: 22px;
  line-height: 1.45;
}

.point-list {
  margin-top: 42px;
  border-top: 1px solid var(--line);
}

.point {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 20px;
  padding-block: 26px;
  border-bottom: 1px solid var(--line);
}

.point__index {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
}

.point strong {
  display: block;
  font-size: 20px;
}

.point p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.screenshot-section {
  position: relative;
  overflow: hidden;
}

.screenshot-section::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 56%;
  background: linear-gradient(to top, rgba(56,76,255,.12), transparent);
  pointer-events: none;
}

.phone-rail {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  align-items: end;
  margin-top: 70px;
}

.phone-card {
  position: relative;
  padding: 26px 20px 0;
  overflow: hidden;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 24px 24px 0 0;
}

.phone-card:nth-child(2),
.phone-card:nth-child(4) {
  transform: translateY(38px);
}

.phone-card img {
  width: 100%;
  filter: drop-shadow(0 26px 38px rgba(0,0,0,.35));
}

.comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin-top: 60px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 26px;
}

.comparison__column {
  min-height: 470px;
  padding: 48px;
  background: #fff;
}

.comparison__column--active {
  color: #fff;
  background: var(--navy);
}

.comparison__label {
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.comparison__column--active .comparison__label {
  color: var(--blue-soft);
}

.comparison h3 {
  margin: 22px 0 0;
  font-size: clamp(30px, 3vw, 48px);
  letter-spacing: -.04em;
  line-height: 1.05;
}

.comparison ul {
  display: grid;
  gap: 20px;
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
}

.comparison li {
  display: flex;
  gap: 14px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.comparison__column--active li {
  color: rgba(255,255,255,.72);
}

.comparison__icon {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  color: var(--red);
  background: rgba(255,69,77,.1);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
}

.comparison__column--active .comparison__icon {
  color: #fff;
  background: var(--blue);
}

.dashboard-frame {
  margin-top: 62px;
  padding: 10px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 38px 100px rgba(5,2,41,.14);
}

.dashboard-frame img {
  width: 100%;
  border-radius: 16px;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 1px;
  background: rgba(255,255,255,.13);
}

.mini-grid__item {
  min-height: 240px;
  padding: 38px;
  background: var(--navy);
}

.mini-grid__item strong {
  display: block;
  font-size: 24px;
}

.mini-grid__item p {
  margin: 14px 0 0;
  color: rgba(255,255,255,.58);
  line-height: 1.65;
}

.cta {
  padding-block: 120px;
  color: #fff;
  background:
    radial-gradient(650px 420px at 85% 85%, rgba(56,76,255,.26), transparent 70%),
    var(--navy);
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 80px;
}

.cta h2 {
  margin: 0;
  max-width: 990px;
  font-size: clamp(46px, 5.4vw, 86px);
  font-weight: 800;
  letter-spacing: -.05em;
  line-height: 1;
}

.footer {
  color: #fff;
  background: #02011a;
  border-top: 1px solid rgba(255,255,255,.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 64px;
  padding-block: 78px 58px;
}

.footer-brand .logo-plate {
  width: 190px;
}

.footer-brand p {
  max-width: 380px;
  margin: 24px 0 0;
  color: rgba(255,255,255,.5);
  font-size: 14px;
  line-height: 1.7;
}

.footer h3 {
  margin: 0 0 20px;
  color: rgba(255,255,255,.42);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 13px;
}

.footer-links a {
  color: rgba(255,255,255,.72);
  font-size: 14px;
}

.footer-base {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-block: 24px 34px;
  color: rgba(255,255,255,.35);
  font-size: 12px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.footer-base__legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
}

.footer-base__legal a {
  color: rgba(255,255,255,.55);
  text-decoration: none;
  transition: color .2s ease;
}

.footer-base__legal a:hover {
  color: #fff;
}

/* Interior page hero */
.page-hero {
  position: relative;
  overflow: hidden;
  padding-block: 116px 128px;
  color: #fff;
  background:
    radial-gradient(850px 520px at 82% 70%, rgba(56,76,255,.22), transparent 68%),
    var(--navy);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 70px;
  align-items: end;
}

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

.page-hero-visual img {
  position: absolute;
  width: 250px;
  filter: drop-shadow(0 34px 50px rgba(0,0,0,.45));
}

.page-hero-visual img:first-child {
  left: 8%;
  bottom: -180px;
  transform: rotate(-7deg);
}

.page-hero-visual img:last-child {
  right: 8%;
  bottom: -240px;
  transform: rotate(7deg);
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(320px,.72fr) minmax(0,1.28fr);
  gap: 90px;
  align-items: start;
  margin-top: 72px;
}

.process-phone {
  position: sticky;
  top: 132px;
  min-height: 650px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--navy);
  border-radius: 28px;
}

.process-phone::before {
  content: "";
  position: absolute;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: rgba(56,76,255,.22);
  filter: blur(80px);
}

.process-phone img {
  position: relative;
  z-index: 2;
  width: 280px;
  transform: translateY(80px);
  filter: drop-shadow(0 32px 48px rgba(0,0,0,.45));
}

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

.step {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 24px;
  padding-block: 42px;
  border-bottom: 1px solid var(--line);
}

.step__number {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--blue);
  border-radius: 16px;
  font-size: 14px;
  font-weight: 800;
}

.step h3 {
  margin: 4px 0 0;
  font-size: 28px;
  letter-spacing: -.03em;
}

.step p {
  margin: 13px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.flow-strip {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
  margin-top: 62px;
}

.flow-card {
  position: relative;
  min-height: 580px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 24px;
}

.flow-card__copy {
  padding: 28px 28px 0;
  color: var(--ink);
}

.flow-card__copy span {
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.flow-card__copy h3 {
  margin: 10px 0 0;
  font-size: 25px;
  letter-spacing: -.035em;
}

.flow-card img {
  width: 70%;
  margin: 30px auto -250px;
  filter: drop-shadow(0 22px 34px rgba(5,2,41,.22));
}

/* Pricing */
.pricing-hero {
  padding-block: 112px 96px;
  text-align: center;
  background: #fff;
}

.pricing-hero .section-title {
  max-width: 1040px;
  margin-inline: auto;
}

.pricing-hero .lede {
  margin-inline: auto;
}

.pricing-shell {
  padding-block: 110px;
  color: #fff;
  background: var(--navy);
}

.pricing-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 24px;
  margin-top: 58px;
}

.price-card {
  min-height: 560px;
  display: flex;
  flex-direction: column;
  padding: 42px;
  color: var(--ink);
  background: #fff;
  border-radius: 26px;
}

.price-card--feature {
  color: #fff;
  background:
    radial-gradient(540px 360px at 100% 100%, rgba(56,76,255,.35), transparent 70%),
    var(--navy-2);
  border: 1px solid rgba(255,255,255,.16);
}

.price-card__label {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.price-card h2 {
  margin: 18px 0 0;
  font-size: 34px;
  letter-spacing: -.04em;
}

.price {
  margin-top: 40px;
  font-size: clamp(52px, 5vw, 78px);
  font-weight: 800;
  letter-spacing: -.06em;
  line-height: 1;
}

.price small {
  font-size: 16px;
  font-weight: 650;
  letter-spacing: 0;
}

.price-card p {
  color: var(--muted);
  line-height: 1.65;
}

.price-card--feature p {
  color: rgba(255,255,255,.62);
}

.price-list {
  display: grid;
  gap: 16px;
  margin: 30px 0 38px;
  padding: 28px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.price-card--feature .price-list {
  border-color: rgba(255,255,255,.13);
}

.price-list li {
  display: flex;
  gap: 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.price-card--feature .price-list li {
  color: rgba(255,255,255,.72);
}

.check {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--blue);
  border-radius: 7px;
  font-size: 12px;
  font-weight: 900;
}

.price-card .btn {
  margin-top: auto;
  align-self: flex-start;
}

.value-equation {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1px;
  margin-top: 62px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 26px;
}

.value-item {
  min-height: 280px;
  padding: 38px;
  background: #fff;
}

.value-item span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.value-item strong {
  display: block;
  margin-top: 22px;
  font-size: 38px;
  letter-spacing: -.04em;
  line-height: 1.06;
}

.value-item p {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.onboarding {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1px;
  margin-top: 58px;
  overflow: hidden;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 26px;
}

.onboarding__item {
  min-height: 310px;
  padding: 40px;
  background: var(--navy);
}

.onboarding__item span {
  color: var(--blue-soft);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.onboarding__item h3 {
  margin: 22px 0 0;
  font-size: 26px;
  letter-spacing: -.03em;
}

.onboarding__item p {
  margin: 14px 0 0;
  color: rgba(255,255,255,.58);
  line-height: 1.65;
}

@media (max-width: 1120px) {
  .nav-links {
    gap: 20px;
  }

  .hero-grid {
    grid-template-columns: 1fr 420px;
    gap: 30px;
  }

  .float-note--top {
    left: -24px;
  }

  .statement-grid {
    grid-template-columns: 210px 1fr;
    gap: 42px;
  }

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

  .page-hero-visual img {
    width: 210px;
  }
}

@media (max-width: 880px) {
  .container {
    width: min(calc(100% - 36px), var(--max));
  }

  .nav-links,
  .nav > .btn {
    display: none;
  }

  .menu-button {
    display: grid;
  }

  .hero-grid,
  .split,
  .page-hero-grid,
  .process-layout,
  .pricing-grid,
  .cta-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
    padding-block: 90px 40px;
  }

  .hero-copy {
    text-align: left;
  }

  .phone-stage {
    min-height: 650px;
  }

  .float-note--top {
    left: 5%;
  }

  .float-note--bottom {
    right: 5%;
  }

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

  .section,
  .statement,
  .cta {
    padding-block: 86px;
  }

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

  .phone-card:nth-child(2),
  .phone-card:nth-child(4) {
    transform: none;
  }

  .comparison,
  .mini-grid,
  .flow-strip,
  .value-equation,
  .onboarding {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding-block: 90px 0;
  }

  .page-hero-visual {
    min-height: 500px;
    margin-top: 20px;
  }

  .page-hero-visual img:first-child {
    left: 20%;
  }

  .page-hero-visual img:last-child {
    right: 20%;
  }

  .process-phone {
    position: relative;
    top: 0;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .preview-bar {
    min-height: 30px;
    font-size: 9px;
  }

  .nav {
    height: 72px;
  }

  .mobile-menu {
    inset: 102px 0 0;
  }

  .logo-plate {
    width: 170px;
    padding: 9px 12px;
  }

  .display {
    font-size: 49px;
  }

  .hero-grid {
    padding-top: 72px;
  }

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

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

  .phone-stage {
    min-height: 590px;
  }

  .hero-phone {
    width: 72%;
  }

  .float-note {
    max-width: 170px;
    padding: 13px 14px;
  }

  .float-note--top {
    top: 14%;
    left: 0;
  }

  .float-note--bottom {
    right: 0;
    bottom: 14%;
  }

  .section-title {
    font-size: 42px;
  }

  .statement-copy {
    font-size: 43px;
  }

  .metric-block {
    min-height: 520px;
    padding: 34px;
  }

  .metric-block::after {
    font-size: 300px;
  }

  .point {
    grid-template-columns: 50px 1fr;
  }

  .phone-rail {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .phone-card {
    padding: 12px 8px 0;
    border-radius: 16px 16px 0 0;
  }

  .comparison__column,
  .price-card,
  .value-item,
  .onboarding__item {
    padding: 30px;
  }

  .dashboard-frame {
    margin-inline: -10px;
    padding: 5px;
    border-radius: 16px;
  }

  .cta-grid {
    align-items: start;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-base {
    flex-direction: column;
  }

  .page-hero-visual img {
    width: 190px;
  }

  .page-hero-visual img:first-child {
    left: 2%;
  }

  .page-hero-visual img:last-child {
    right: 2%;
  }

  .process-phone {
    min-height: 560px;
  }

  .step {
    grid-template-columns: 58px 1fr;
    gap: 14px;
  }

  .step__number {
    width: 46px;
    height: 46px;
  }

  .flow-card {
    min-height: 520px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

/* Production compatibility layer */
.production-site .mobile-menu {
  inset: 80px 0 0;
}

.production-site .container-x {
  width: min(calc(100% - 48px), var(--max));
  max-width: none;
  margin-inline: auto;
  padding-inline: 0;
}

.production-site .container {
  width: min(calc(100% - 48px), var(--max));
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: 0;
}

.production-site .card,
.production-site .feature-card,
.production-site .article-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: none;
}

.production-site .card:hover,
.production-site .feature-card:hover,
.production-site .article-card:hover {
  border-color: #cfd1dc;
  box-shadow: 0 20px 60px rgba(5,2,41,.1);
}

.production-site .g-panel {
  border: 1px solid var(--line);
  border-radius: 26px;
  background-color: #f0f1f7;
  background-image:
    radial-gradient(34rem 24rem at 85% 10%, rgba(56,76,255,.18), transparent 66%),
    radial-gradient(30rem 22rem at 12% 90%, rgba(139,80,255,.1), transparent 68%);
}

.production-site .hero-soft {
  background:
    radial-gradient(48rem 30rem at 85% 0%, rgba(56,76,255,.1), transparent 62%),
    var(--paper);
}

.production-site .bg-paper {
  background-color: var(--paper);
}

.production-site details.card > summary {
  letter-spacing: -.02em;
}

.production-site .reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

.production-site.page-contact main > section:first-child,
.production-site.page-about main > section:first-child,
.production-site.page-faqs main > section:first-child,
.production-site.page-journal main > section:first-child {
  background:
    radial-gradient(46rem 28rem at 85% 0%, rgba(56,76,255,.09), transparent 62%),
    var(--paper);
}

.footer-disclaimer {
  margin-top: 34px;
  padding: 20px 22px;
  color: rgba(255,255,255,.48);
  font-size: 12px;
  line-height: 1.7;
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 16px;
}

.footer-disclaimer strong {
  color: rgba(255,255,255,.76);
}

@media (max-width: 880px) {
  .production-site .container,
  .production-site .container-x {
    width: min(calc(100% - 36px), var(--max));
  }
}

@media (max-width: 620px) {
  .production-site .mobile-menu {
    inset: 72px 0 0;
  }
}

/* Journal landing */
.production-site.page-journal main > section.journal-hero:first-child {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(50rem 34rem at 86% 18%, rgba(56,76,255,.32), transparent 64%),
    radial-gradient(34rem 30rem at 12% 100%, rgba(139,80,255,.16), transparent 68%),
    var(--navy);
}

.journal-hero::before,
.journal-hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.journal-hero::before {
  inset: 0;
  opacity: .38;
  background-image:
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 90px 90px;
  mask-image: linear-gradient(90deg, transparent, #000 42%, #000);
}

.journal-hero::after {
  width: 520px;
  height: 520px;
  right: -160px;
  bottom: -290px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(255,255,255,.025),
    0 0 0 140px rgba(255,255,255,.018);
}

.journal-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, .55fr);
  gap: clamp(64px, 8vw, 140px);
  align-items: end;
  min-height: 570px;
  padding-block: 88px 96px;
}

.journal-hero .eyebrow,
.contact-hero .eyebrow {
  color: #a5aeff;
}

.journal-hero__copy h1 {
  max-width: 900px;
  margin: 26px 0 0;
  color: #fff;
  font-size: clamp(3.8rem, 6.6vw, 6.7rem);
  font-weight: 800;
  letter-spacing: -.065em;
  line-height: .94;
}

.journal-hero__copy > p {
  max-width: 740px;
  margin: 30px 0 0;
  color: rgba(255,255,255,.7);
  font-size: clamp(1.08rem, 1.35vw, 1.28rem);
  line-height: 1.75;
}

.journal-hero__index {
  padding-left: 34px;
  border-left: 1px solid rgba(255,255,255,.17);
}

.journal-hero__index > .eyebrow {
  display: block;
  margin-bottom: 18px;
}

.journal-hero__topic {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 3px 14px;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,.13);
}

.journal-hero__topic > span {
  grid-row: 1 / 3;
  padding-top: 2px;
  color: #6f7eff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
}

.journal-hero__topic strong {
  color: #fff;
  font-size: 16px;
}

.journal-hero__topic small {
  color: rgba(255,255,255,.55);
  font-size: 13px;
  line-height: 1.55;
}

.page-journal .journal-filters button {
  min-height: 46px;
  padding-inline: 20px;
  border-radius: 15px;
}

.page-journal .journal-featured {
  grid-column: 1 / -1;
  display: grid !important;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, .88fr);
  grid-template-rows: auto auto 1fr auto;
  gap: 0;
  padding: 0 !important;
  overflow: hidden;
  border-radius: 26px;
}

.page-journal .journal-featured > img {
  grid-column: 1;
  grid-row: 1 / 5;
  width: 100% !important;
  height: 100%;
  min-height: 520px;
  margin: 0 !important;
  aspect-ratio: auto;
  object-fit: cover;
  border-radius: 0 !important;
}

.page-journal .journal-featured > .chip {
  grid-column: 2;
  align-self: end;
  width: fit-content;
  margin: 48px 48px 0;
}

.page-journal .journal-featured > h2 {
  grid-column: 2;
  margin: 24px 48px 0;
  font-size: clamp(2rem, 3.3vw, 3.15rem);
  letter-spacing: -.045em;
  line-height: 1.02;
}

.page-journal .journal-featured > p {
  grid-column: 2;
  margin: 22px 48px 0;
  font-size: 1.05rem;
  line-height: 1.72;
}

.page-journal .journal-featured > div {
  grid-column: 2;
  margin: 34px 48px 42px;
}

/* Shared article masthead */
.production-site.page-journal main > section.hero-soft:first-child {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(48rem 34rem at 82% 10%, rgba(56,76,255,.34), transparent 64%),
    radial-gradient(36rem 28rem at 8% 110%, rgba(139,80,255,.15), transparent 68%),
    var(--navy);
}

.page-journal .hero-soft::before {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  right: -210px;
  top: -340px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 50%;
  box-shadow:
    0 0 0 84px rgba(255,255,255,.025),
    0 0 0 168px rgba(255,255,255,.015);
}

.page-journal .hero-soft > .container-x {
  position: relative;
  z-index: 1;
  padding-top: 76px !important;
  padding-bottom: 205px !important;
}

.page-journal .hero-soft .max-w-3xl {
  max-width: 1060px;
}

.page-journal .hero-soft a {
  color: rgba(255,255,255,.66) !important;
}

.page-journal .hero-soft a:hover {
  color: #fff !important;
}

.page-journal .hero-soft .chip {
  color: #dfe2ff;
  background: rgba(255,255,255,.09);
  border-color: rgba(255,255,255,.18);
}

.page-journal .hero-soft h1 {
  max-width: 1060px;
  color: #fff;
  font-size: clamp(3.2rem, 5.7vw, 5.75rem) !important;
  font-weight: 800;
  letter-spacing: -.06em;
  line-height: .96 !important;
}

.page-journal .hero-soft h1 + div {
  color: rgba(255,255,255,.56) !important;
}

.page-journal .hero-soft h1 + div .text-ink {
  color: #fff !important;
}

.page-journal .hero-soft + .container-x > .max-w-3xl {
  position: relative;
  z-index: 2;
  max-width: 1060px;
  margin-top: -155px !important;
}

.page-journal .hero-soft + .container-x img {
  width: 100%;
  aspect-ratio: 16 / 8.8;
  object-fit: cover;
  border: 8px solid #fff;
  border-radius: 28px !important;
  box-shadow: 0 30px 80px rgba(5,2,41,.22);
}

/* Contact */
.production-site.page-contact main > section.contact-hero:first-child {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(48rem 34rem at 86% 12%, rgba(56,76,255,.35), transparent 64%),
    radial-gradient(34rem 26rem at 12% 110%, rgba(139,80,255,.17), transparent 66%),
    var(--navy);
}

.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .28;
  pointer-events: none;
  background-image: linear-gradient(90deg, transparent 49.9%, rgba(255,255,255,.08) 50%, transparent 50.1%);
}

.contact-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(400px, .82fr);
  gap: clamp(70px, 10vw, 170px);
  align-items: center;
  min-height: 560px;
  padding-block: 84px;
}

.contact-hero__copy h1 {
  max-width: 820px;
  margin: 26px 0 0;
  color: #fff;
  font-size: clamp(3.8rem, 6.5vw, 6.6rem);
  font-weight: 800;
  letter-spacing: -.065em;
  line-height: .94;
}

.contact-hero__copy > p {
  max-width: 720px;
  margin: 30px 0 0;
  color: rgba(255,255,255,.69);
  font-size: clamp(1.08rem, 1.35vw, 1.25rem);
  line-height: 1.72;
}

.contact-hero__next {
  padding: 34px;
  background: rgba(255,255,255,.075);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 24px;
  backdrop-filter: blur(12px);
}

.contact-hero__next > .eyebrow {
  display: block;
  margin-bottom: 14px;
}

.contact-hero__next ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-hero__next li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 3px 14px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,.13);
}

.contact-hero__next li > span {
  grid-row: 1;
  color: #7c88ff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
}

.contact-hero__next li div {
  display: grid;
  gap: 7px;
}

.contact-hero__next strong {
  color: #fff;
  font-size: 15px;
}

.contact-hero__next small {
  color: rgba(255,255,255,.56);
  font-size: 13px;
  line-height: 1.55;
}

.contact-hero__conversation {
  padding: 36px;
  background: rgba(255,255,255,.075);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 24px;
  backdrop-filter: blur(12px);
}

.contact-hero__conversation h2 {
  max-width: 480px;
  margin: 16px 0 0;
  color: #fff;
  font-size: clamp(1.65rem, 2.2vw, 2.2rem);
  font-weight: 750;
  letter-spacing: -.035em;
  line-height: 1.1;
}

.contact-hero__conversation-lead {
  max-width: 520px;
  margin: 16px 0 0;
  color: rgba(255,255,255,.63);
  font-size: 14px;
  line-height: 1.65;
}

.contact-hero__conversation-label {
  display: block;
  margin-top: 26px;
}

.contact-hero__checks {
  display: grid;
  gap: 11px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.contact-hero__checks li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  color: rgba(255,255,255,.78);
  font-size: 14px;
  line-height: 1.5;
}

.contact-hero__checks svg {
  flex: 0 0 auto;
  margin-top: 1px;
  color: #7c88ff;
}

.contact-hero__note {
  margin: 24px 0 0;
  padding: 14px 16px;
  color: rgba(255,255,255,.88);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.5;
  background: rgba(56,76,255,.18);
  border-left: 3px solid #6f7dff;
  border-radius: 0 12px 12px 0;
}

.contact-hero__email {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-top: 18px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.contact-hero__email:hover {
  color: #a5aeff;
}

.contact-hero--form .contact-hero__grid {
  grid-template-columns: minmax(0, .78fr) minmax(620px, 1.22fr);
  gap: clamp(48px, 6vw, 96px);
  align-items: start;
  min-height: auto;
  padding-block: 84px 96px;
}

.contact-hero--form .contact-hero__conversation {
  padding: 24px 0 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  backdrop-filter: none;
}

.contact-hero--form .contact-form-wrap {
  width: 100%;
  margin-left: 0;
}

.contact-hero--form .contact-form-card {
  color: var(--ink);
  box-shadow: 0 34px 90px rgba(0,0,0,.28);
}

.production-site.page-contact .contact-main {
  padding-top: 82px !important;
  padding-bottom: 96px;
  background:
    radial-gradient(40rem 30rem at 100% 20%, rgba(56,76,255,.06), transparent 68%),
    var(--paper);
}

.contact-form-wrap {
  width: min(100%, 1120px);
  margin-left: auto;
}

.contact-intro {
  padding-top: 28px;
}

.contact-intro__note {
  margin-top: 28px;
  padding: 18px 20px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.6;
  background: #eceeff;
  border-left: 3px solid var(--blue);
  border-radius: 0 14px 14px 0;
}

.production-site .contact-form-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  border-color: #d8dae6;
  box-shadow: 0 26px 70px rgba(5,2,41,.1);
}

.production-site .contact-form-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--violet));
}

.contact-form-card input,
.contact-form-card select,
.contact-form-card textarea {
  min-height: 52px;
  background: #fafaff !important;
  border-color: #d9dbe6 !important;
}

.contact-form-card textarea {
  min-height: 140px;
}

@media (max-width: 1000px) {
  .journal-hero__grid,
  .contact-hero__grid {
    grid-template-columns: 1fr;
    gap: 54px;
    min-height: auto;
    padding-block: 72px;
  }

  .journal-hero__index {
    max-width: 720px;
  }

  .contact-hero__next,
  .contact-hero__conversation {
    max-width: 720px;
  }

  .contact-hero--form .contact-hero__grid {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-block: 64px 72px;
  }

  .contact-hero--form .contact-hero__conversation {
    max-width: 720px;
    padding-top: 0;
  }
}

@media (max-width: 760px) {
  .journal-hero__grid,
  .contact-hero__grid {
    gap: 44px;
    padding-block: 60px 66px;
  }

  .journal-hero__copy h1,
  .contact-hero__copy h1 {
    margin-top: 20px;
    font-size: clamp(3.15rem, 14vw, 4.8rem);
    line-height: .96;
  }

  .journal-hero__copy > p,
  .contact-hero__copy > p {
    margin-top: 24px;
    font-size: 1rem;
    line-height: 1.68;
  }

  .journal-hero__index {
    padding-left: 0;
    border-left: 0;
  }

  .contact-hero__next,
  .contact-hero__conversation {
    padding: 24px;
    border-radius: 20px;
  }

  .contact-hero--form .contact-hero__grid {
    gap: 40px;
    padding-block: 54px 64px;
  }

  .contact-hero--form .contact-hero__conversation {
    padding: 0;
    border-radius: 0;
  }

  .page-journal .journal-featured {
    display: flex !important;
  }

  .page-journal .journal-featured > img {
    min-height: 0;
    aspect-ratio: 3 / 2;
  }

  .page-journal .journal-featured > .chip {
    margin: 28px 28px 0;
  }

  .page-journal .journal-featured > h2 {
    margin: 20px 28px 0;
    font-size: 2rem;
  }

  .page-journal .journal-featured > p {
    margin: 18px 28px 0;
  }

  .page-journal .journal-featured > div {
    margin: 26px 28px 30px;
  }

  .page-journal .hero-soft > .container-x {
    padding-top: 54px !important;
    padding-bottom: 132px !important;
  }

  .page-journal .hero-soft h1 {
    font-size: clamp(2.55rem, 10.3vw, 3.45rem) !important;
    line-height: .98 !important;
  }

  .page-journal .hero-soft + .container-x > .max-w-3xl {
    margin-top: -88px !important;
  }

  .page-journal .hero-soft + .container-x img {
    aspect-ratio: 4 / 3;
    border-width: 5px;
    border-radius: 20px !important;
  }

  .production-site.page-contact .contact-main {
    padding-top: 54px !important;
    padding-bottom: 70px;
  }

  .contact-intro {
    padding-top: 0;
  }
}

/* FAQs */
.production-site.page-faqs main > section.faq-hero:first-child {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(48rem 34rem at 84% 12%, rgba(56,76,255,.36), transparent 64%),
    radial-gradient(36rem 28rem at 10% 110%, rgba(139,80,255,.18), transparent 68%),
    var(--navy);
}

.faq-hero::before,
.faq-hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.faq-hero::before {
  inset: 0;
  opacity: .32;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 92px 92px;
  mask-image: linear-gradient(90deg, transparent, #000 45%, #000);
}

.faq-hero::after {
  width: 580px;
  height: 580px;
  right: -210px;
  bottom: -350px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 50%;
  box-shadow:
    0 0 0 78px rgba(255,255,255,.024),
    0 0 0 156px rgba(255,255,255,.015);
}

.faq-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(430px, .8fr);
  gap: clamp(70px, 10vw, 170px);
  align-items: center;
  min-height: 590px;
  padding-block: 84px;
}

.faq-hero .eyebrow {
  color: #a5aeff;
}

.faq-hero__copy h1 {
  max-width: 850px;
  margin: 26px 0 0;
  color: #fff;
  font-size: clamp(3.7rem, 6.2vw, 6.4rem);
  font-weight: 800;
  letter-spacing: -.065em;
  line-height: .94;
}

.faq-hero__copy > p {
  max-width: 720px;
  margin: 30px 0 0;
  color: rgba(255,255,255,.69);
  font-size: clamp(1.08rem, 1.35vw, 1.25rem);
  line-height: 1.72;
}

.faq-hero__map {
  padding: 34px;
  color: var(--ink);
  background: rgba(247,247,250,.97);
  border: 1px solid rgba(255,255,255,.66);
  border-radius: 24px;
  box-shadow: 0 30px 90px rgba(5,2,41,.24);
}

.faq-hero__map > .eyebrow {
  display: block;
  margin-bottom: 14px;
  color: var(--blue);
}

.faq-hero__map > a {
  display: grid;
  grid-template-columns: 38px 1fr 20px;
  gap: 4px 14px;
  align-items: start;
  padding: 21px 0;
  border-top: 1px solid var(--line);
}

.faq-hero__map > a > span {
  padding-top: 3px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
}

.faq-hero__map > a > div {
  display: grid;
  gap: 7px;
}

.faq-hero__map strong {
  color: var(--ink);
  font-size: 15px;
  transition: color .2s ease;
}

.faq-hero__map small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.faq-hero__map svg {
  margin-top: 2px;
  color: #85879a;
  transition: color .2s ease, transform .2s ease;
}

.faq-hero__map > a:hover strong,
.faq-hero__map > a:hover svg {
  color: var(--blue);
}

.faq-hero__map > a:hover svg {
  transform: translate(2px, -2px);
}

.page-faqs #partnership,
.page-faqs #pricing,
.page-faqs #operations {
  scroll-margin-top: 110px;
}

@media (max-width: 1000px) {
  .faq-hero__grid {
    grid-template-columns: 1fr;
    gap: 54px;
    min-height: auto;
    padding-block: 72px;
  }

  .faq-hero__map {
    max-width: 720px;
  }
}

@media (max-width: 760px) {
  .faq-hero__grid {
    gap: 44px;
    padding-block: 60px 66px;
  }

  .faq-hero__copy h1 {
    margin-top: 20px;
    font-size: clamp(3.05rem, 13.5vw, 4.65rem);
    line-height: .96;
  }

  .faq-hero__copy > p {
    margin-top: 24px;
    font-size: 1rem;
    line-height: 1.68;
  }

  .faq-hero__map {
    padding: 24px;
    border-radius: 20px;
  }
}

/* Directory */
.production-site.page-directory main {
  background: var(--paper);
}

.directory-page__intro {
  position: relative;
  overflow: hidden;
  padding-block: 76px 84px;
  color: #fff;
  background:
    radial-gradient(42rem 28rem at 86% 12%, rgba(56,76,255,.34), transparent 66%),
    var(--navy);
}

.directory-page__intro::after {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  right: -110px;
  top: -280px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 50%;
  box-shadow:
    0 0 0 64px rgba(255,255,255,.023),
    0 0 0 128px rgba(255,255,255,.014);
}

.directory-page__intro .container-x {
  position: relative;
  z-index: 1;
}

.directory-page__intro .eyebrow {
  color: #a5aeff;
}

.directory-page__intro h1 {
  margin: 20px 0 0;
  color: #fff;
  font-size: clamp(4rem, 7vw, 7rem);
  font-weight: 800;
  letter-spacing: -.065em;
  line-height: .92;
}

.directory-page__links {
  display: grid;
  grid-template-columns: minmax(300px, .72fr) minmax(520px, 1.28fr);
  gap: clamp(70px, 9vw, 150px);
  padding-block: 82px 110px !important;
}

.directory-page__links h2 {
  margin: 0 0 22px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.directory-page__links nav {
  border-top: 1px solid var(--line);
}

.directory-page__subgroup {
  margin-top: 54px;
}

.directory-page__links a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: baseline;
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left .2s ease;
}

.directory-page__links strong {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.5;
  transition: color .2s ease;
}

.directory-page__links a > span {
  color: #9091a4;
  font-size: 12px;
  line-height: 1.5;
}

.directory-page__links a:hover {
  padding-left: 7px;
}

.directory-page__links a:hover strong {
  color: var(--blue);
}

@media (max-width: 920px) {
  .directory-page__links {
    grid-template-columns: 1fr;
    gap: 66px;
  }
}

@media (max-width: 620px) {
  .directory-page__intro {
    padding-block: 58px 64px;
  }

  .directory-page__intro h1 {
    font-size: clamp(3.5rem, 17vw, 5.5rem);
  }

  .directory-page__links {
    gap: 56px;
    padding-block: 58px 76px !important;
  }

  .directory-page__links a {
    grid-template-columns: 1fr;
    gap: 5px;
    padding-block: 17px;
  }
}
