:root {
  --blue-900: #041244;
  --blue-800: #0a32c2;
  --blue-700: #155dfc;
  --blue-600: #1e3a8a;
  --blue-300: #8bb4ff;
  --blue-50: #eff6ff;
  --ink: #0a0a0a;
  --line: #ececec;
  --paper: #ffffff;
  --soft: #f7f8fb;
  --footer: #181818;
  --font-body: "Urbanist", Arial, sans-serif;
  --font-display: "Cal Sans", "Urbanist", Arial, sans-serif;
  --container: min(1280px, calc(100vw - 160px));
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  overflow-x: hidden;
}

body {
  margin: 0;
  padding-top: 93px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
  overflow-x: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

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

:focus-visible {
  outline: 3px solid rgba(21, 93, 252, 0.42);
  outline-offset: 3px;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: 93px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: 80px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
}

@media (min-width: 1024px) {
  .site-header {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.62)),
      rgba(255, 255, 255, 0.58);
    border-bottom: 1px solid rgba(255, 255, 255, 0.42);
    box-shadow:
      0 18px 52px rgba(11, 20, 45, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(26px) saturate(1.28);
    -webkit-backdrop-filter: blur(26px) saturate(1.28);
  }
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 64px;
  font-weight: 700;
  color: var(--blue-900);
}

.logo-mark img {
  width: 64px;
  height: 64px;
}

.logo-mark span {
  font-size: 16px;
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 16px;
}

.site-nav a {
  position: relative;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 999px;
  transition:
    color 360ms var(--ease-soft),
    background-color 360ms var(--ease-soft),
    transform 360ms var(--ease-soft),
    box-shadow 360ms var(--ease-soft);
}

.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 6px;
  height: 1px;
  background: currentColor;
  opacity: 0;
  transform: scaleX(0.65);
  transform-origin: center;
  transition:
    opacity 360ms var(--ease-soft),
    transform 360ms var(--ease-soft);
}

.site-nav a.is-current:not(.nav-cta) {
  font-weight: 700;
  color: var(--ink);
}

.site-nav a.is-current:not(.nav-cta)::after {
  opacity: 1;
  transform: scaleX(1);
}

.site-nav a:not(.nav-cta):hover {
  background: var(--soft);
  color: var(--blue-800);
}

.site-nav .nav-cta {
  min-height: 36px;
  margin-left: 16px;
  border-radius: 72px;
  background: var(--blue-900);
  color: white;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.site-nav .nav-cta:hover,
.primary-button:hover {
  transform: translateY(-2px) scale(1.012);
  background: #071b62;
  box-shadow: 0 14px 30px rgba(4, 18, 68, 0.24);
}

.menu-button {
  display: none;
}

.hero {
  min-height: 734px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  max-width: none;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
}

.hero-bg-top {
  top: 0;
  height: 308px;
}

.hero-bg-bot {
  bottom: 0;
  height: 214px;
}

.perspective::before,
.perspective::after {
  content: "";
  position: absolute;
  inset-inline: -10vw;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(10, 50, 194, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 50, 194, 0.045) 1px, transparent 1px);
  background-size: 34px 34px;
  transform: perspective(620px) rotateX(58deg);
  transform-origin: center top;
  opacity: 0.8;
}

.perspective::before {
  top: 0;
  height: 308px;
}

.perspective::after {
  bottom: -104px;
  height: 260px;
  transform-origin: center bottom;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 651fr) minmax(0, 634fr);
  column-gap: clamp(16px, 1.6vw, 24px);
  min-height: 734px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  grid-column: 1;
  grid-row: 1;
  align-self: start;
  padding-top: 131px;
  max-width: 651px;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--blue-800);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
}

.eyebrow.light {
  color: white;
}

h1,
h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0;
  text-wrap: balance;
}

h1 {
  max-width: 500px;
  font-size: clamp(54px, 5vw, 72px);
  line-height: 1;
  color: transparent;
  background: linear-gradient(55deg, var(--blue-800) 3%, var(--blue-300) 117%);
  -webkit-background-clip: text;
  background-clip: text;
}

h2 {
  font-size: clamp(38px, 3.35vw, 48px);
  line-height: 1;
}

.hero-lede {
  width: min(495px, 100%);
  margin: 4px 0 0;
  font-size: 14px;
  line-height: 18px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.primary-button,
.secondary-button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 72px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 700;
  transition:
    transform 420ms var(--ease-soft),
    background-color 420ms var(--ease-soft),
    border-color 420ms var(--ease-soft),
    box-shadow 420ms var(--ease-soft);
}

.primary-button {
  border: 1px solid var(--blue-900);
  background: var(--blue-900);
  color: white;
}

.secondary-button {
  border: 1px solid var(--blue-900);
  color: var(--blue-900);
  background: white;
}

.secondary-button:hover {
  transform: translateY(-2px) scale(1.012);
  background: var(--blue-50);
}

.hero-art {
  position: relative;
  z-index: 1;
  grid-column: 2;
  grid-row: 1;
  align-self: start;
  justify-self: end;
  width: min(100%, 634px);
  height: auto;
  aspect-ratio: 634 / 607;
  margin-top: 64px;
  pointer-events: none;
}

.hero-art img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.packages-hero {
  min-height: 802px;
  overflow: hidden;
  padding-top: 55px;
  padding-bottom: 48px;
}

.packages-hero .hero-bg-top {
  height: 318px;
}

.packages-hero .hero-bg-bot {
  height: 232px;
}

.packages-hero-content {
  position: relative;
  z-index: 2;
  max-width: 749px;
  display: grid;
  gap: 0;
  justify-items: center;
  margin-inline: auto;
  text-align: center;
}

.hero-pill {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  border: 1px solid var(--blue-900);
  border-radius: 999px;
  color: var(--blue-900);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.packages-hero h1 {
  max-width: min(749px, 100%);
  margin-top: 16px;
  font-size: clamp(60px, 6vw, 72px);
  line-height: 1;
  text-align: center;
}

.packages-hero p {
  width: min(495px, 100%);
  margin: 14px auto 0;
  font-size: 14px;
  line-height: 18px;
}

.packages-hero-art {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: min(436px, calc(100vw - 64px));
  aspect-ratio: 436 / 582;
  margin: 34px auto 0;
}

.packages-hero-orbit {
  position: absolute;
  left: 50%;
  bottom: -112px;
  width: clamp(360px, 50vw, 640px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: clamp(34px, 3.9vw, 58px) solid rgba(157, 180, 255, 0.44);
  transform: translateX(-50%);
  box-shadow: 0 0 0 1px rgba(157, 180, 255, 0.12);
  pointer-events: none;
}

.packages-hero-art img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.packages-pricing {
  padding: 64px 0 100px;
  background: #f6f6f7;
}

.packages-pricing .container {
  width: min(1160px, calc(100vw - 160px));
}

.packages-pricing-shell {
  width: 100%;
  display: grid;
  gap: 56px;
}

.packages-pricing-header {
  width: 100%;
  display: grid;
  justify-items: center;
  gap: 16px;
}

.pricing-track-toggle,
.pricing-mode-toggle {
  display: inline-flex;
  align-items: center;
  padding: 4px;
  border-radius: 999px;
}

.pricing-track-toggle {
  width: fit-content;
  max-width: 100%;
  justify-content: center;
  background: #1d1d1f;
  box-shadow: 0 16px 36px rgba(18, 28, 45, 0.08);
}

.pricing-track-button,
.pricing-mode-button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  transition:
    background-color 560ms var(--ease),
    color 520ms var(--ease-soft),
    transform 560ms var(--ease-soft),
    box-shadow 620ms var(--ease);
}

.pricing-track-button {
  flex: 0 0 auto;
  min-width: 0;
  padding: 10px 16px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1;
  white-space: nowrap;
}

.pricing-track-button span,
.pricing-features li span:last-child {
  min-width: 0;
}

.pricing-track-label {
  display: block;
  transition:
    opacity 520ms var(--ease-soft),
    transform 620ms var(--ease-soft);
}

.pricing-track-icon {
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  transition:
    opacity 520ms var(--ease-soft),
    transform 620ms var(--ease-soft);
}

.pricing-track-icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pricing-track-label-full {
  white-space: nowrap;
  overflow-wrap: normal;
}

.pricing-track-label-mobile {
  display: none;
}

.pricing-track-button.is-active {
  background: #fff;
  color: #111827;
  box-shadow:
    0 10px 28px rgba(17, 24, 39, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.pricing-track-button:hover,
.pricing-mode-button:hover {
  transform: translateY(-1px);
}

.pricing-note {
  margin: 0;
  color: #3f3f46;
  font-size: 18px;
  line-height: 24px;
  text-align: center;
}

.pricing-note[hidden] {
  display: none !important;
}

.pricing-mode-toggle {
  background: #e9edf5;
}

.pricing-mode-button {
  padding: 8px 14px;
  color: #667085;
  font-size: 14px;
  line-height: 18px;
}

.pricing-mode-button.is-active {
  background: #fff;
  color: #111827;
  box-shadow:
    0 10px 24px rgba(20, 35, 71, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.74);
}

.pricing-panels {
  margin-top: 0;
}

.pricing-panel {
  display: none;
  gap: 24px;
}

.pricing-panel.is-active {
  display: grid;
  align-items: stretch;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pricing-panel.is-animating .pricing-card {
  animation: pricing-card-enter 820ms var(--ease-soft) both;
}

.pricing-panel.is-animating .pricing-card:nth-child(1) {
  animation-delay: 40ms;
}

.pricing-panel.is-animating .pricing-card:nth-child(2) {
  animation-delay: 140ms;
}

.pricing-panel.is-animating .pricing-card:nth-child(3) {
  animation-delay: 240ms;
}

.pricing-panel.panel-two {
  max-width: 772px;
  margin-inline: auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pricing-card {
  position: relative;
  min-height: 622px;
  display: flex;
  flex-direction: column;
  border: 1px solid #dde3ef;
  border-radius: 16px;
  background: #fff;
  padding: 28px 24px 24px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
  transition:
    transform 420ms var(--ease-soft),
    box-shadow 420ms var(--ease-soft),
    border-color 420ms var(--ease-soft);
  will-change: transform, opacity, filter;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(15, 23, 42, 0.1);
}

.pricing-card.is-featured {
  border: 2px solid #2646a3;
  box-shadow: 0 16px 40px rgba(38, 70, 163, 0.09);
}

.pricing-badge {
  position: absolute;
  top: -2px;
  left: 50%;
  min-width: 132px;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px 2px;
  border-radius: 0 0 20px 20px;
  background: var(--blue-900);
  color: #fff;
  font-size: 14px;
  line-height: 1;
  transform: translateX(-50%);
}

.pricing-card-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
}

.pricing-card h3 {
  margin: 0;
  color: #111827;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}

.pricing-price {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  margin-top: 28px;
  color: #172033;
}

.pricing-currency {
  padding-bottom: 10px;
  color: #6b7280;
  font-size: 18px;
  line-height: 1;
}

.pricing-amount {
  font-family: var(--font-body);
  font-size: 48px;
  font-weight: 500;
  line-height: 0.95;
}

.pricing-volume {
  margin: 8px 0 0;
  color: #6b7280;
  font-size: 14px;
  line-height: 18px;
}

.pricing-divider {
  height: 1px;
  margin: 28px 0 22px;
  background: #edf0f5;
}

.pricing-features {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pricing-features li {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  color: #344054;
  font-size: 14px;
  line-height: 1.45;
}

.pricing-check {
  position: relative;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #3b82f6;
}

.pricing-check::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 4px;
  width: 5px;
  height: 9px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
}

.pricing-button {
  width: 100%;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
  padding: 0 18px;
  border: 1px solid #111b31;
  border-radius: 999px;
  background: #111b31;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  transition:
    transform 420ms var(--ease-soft),
    background-color 420ms var(--ease-soft),
    border-color 420ms var(--ease-soft),
    box-shadow 420ms var(--ease-soft);
}

.pricing-button:hover {
  transform: translateY(-2px);
  background: #0c1732;
  box-shadow: 0 14px 30px rgba(17, 27, 49, 0.18);
}

@keyframes pricing-card-enter {
  0% {
    opacity: 0;
    filter: blur(8px);
    transform: translate3d(0, 26px, 0) scale(0.985);
  }

  100% {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0) scale(1);
  }
}

.pricing-card.is-featured .pricing-button {
  border-color: #2646a3;
  background: #2646a3;
}

.pricing-card.is-featured .pricing-button:hover {
  background: #1d3888;
}

.packages-cta-section {
  position: relative;
  overflow: hidden;
}

.packages-cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 560px);
  align-items: center;
  gap: 40px;
  min-height: 649px;
}

.packages-cta-copy {
  max-width: 678px;
  padding-block: 100px;
}

.packages-cta-copy h2 {
  width: fit-content;
  max-width: min(678px, 100%);
  color: transparent;
  font-size: clamp(50px, 4.9vw, 64px);
  line-height: 1.125;
  background: linear-gradient(55deg, var(--blue-800) 3%, var(--blue-300) 117%);
  -webkit-background-clip: text;
  background-clip: text;
}

.packages-cta-copy p {
  max-width: 420px;
  margin: 24px 0 0;
  color: var(--blue-800);
  font-size: 14px;
  line-height: 18px;
}

.packages-cta-copy .primary-button {
  margin-top: 28px;
}

.packages-cta-art {
  align-self: stretch;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.packages-cta-art img {
  width: min(560px, 100%);
  max-width: 100%;
  height: auto;
  object-fit: contain;
  object-position: right center;
}

#packages-top,
#pricing,
.packages-cta-section {
  scroll-margin-top: 112px;
}

.packages-page .footer-brand p {
  max-width: 34ch;
}

.usp-row {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 33px;
  margin: 48px 0 0;
  max-width: 535px;
}

.usp-row div {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  line-height: 16px;
}

.usp-row svg {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--blue-900);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dark-section {
  background: var(--blue-900);
  color: white;
}

.intro-section {
  min-height: 781px;
  padding-block: 100px;
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 539px) minmax(360px, 448px);
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

.intro-copy h2 {
  width: fit-content;
  max-width: min(539px, 100%);
}

.feature-list {
  width: min(384px, 100%);
  display: grid;
  gap: 22px;
  margin-top: 45px;
}

.feature-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 16px;
  align-items: center;
}

.feature-item img {
  width: 40px;
  height: 40px;
}

.feature-item h3,
.feature-item p {
  margin: 0;
}

.feature-item h3 {
  font-size: 18px;
  line-height: 27px;
  font-weight: 700;
}

.feature-item p {
  padding-top: 4px;
  font-size: 14px;
  line-height: 22.75px;
  color: rgba(255, 255, 255, 0.9);
}

.form-card {
  width: 448px;
  border-radius: 14px;
  background: white;
  color: var(--ink);
  padding: 33px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.lead-form {
  display: grid;
  gap: 16px;
}

.hidden-field {
  display: none;
}

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

.lead-form label {
  display: grid;
  gap: 8px;
}

.lead-form-field {
  position: relative;
  display: grid;
  gap: 8px;
}

.lead-form label span {
  min-height: 16px;
  color: #27272a;
  font-size: 16px;
  line-height: 20px;
}

.lead-form input,
.lead-form select {
  width: 100%;
  height: 38px;
  border: 1px solid #e3e6ed;
  border-radius: 6px;
  background: #fff;
  padding: 0 13px;
  color: var(--ink);
  font-size: 16px;
  transition: border-color 320ms var(--ease-soft), box-shadow 320ms var(--ease-soft);
}

.custom-select {
  position: relative;
}

.custom-select-trigger {
  width: 100%;
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid #e3e6ed;
  border-radius: 6px;
  background: #fff;
  padding: 8px 13px;
  color: var(--ink);
  font-size: 16px;
  line-height: 20px;
  text-align: left;
  cursor: pointer;
  transition: border-color 320ms var(--ease-soft), box-shadow 320ms var(--ease-soft);
}

.custom-select-value {
  min-width: 0;
  flex: 1 1 auto;
}

.custom-select-caret {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-right: 1.5px solid #667085;
  border-bottom: 1.5px solid #667085;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 320ms var(--ease-soft);
}

.custom-select-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  z-index: 12;
  display: grid;
  gap: 2px;
  padding: 6px;
  border: 1px solid #d8deea;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.16);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  pointer-events: none;
  transition:
    opacity 260ms var(--ease-soft),
    transform 260ms var(--ease-soft),
    visibility 260ms var(--ease-soft);
}

.custom-select.is-open .custom-select-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.custom-select.is-open .custom-select-trigger,
.custom-select-trigger:focus-visible {
  border-color: var(--blue-700);
  box-shadow: 0 0 0 3px rgba(21, 93, 252, 0.14);
  outline: none;
}

.custom-select.is-open .custom-select-caret {
  transform: translateY(2px) rotate(-135deg);
}

.custom-select-option {
  width: 100%;
  min-height: 40px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  padding: 8px 12px;
  color: #111827;
  font-size: 15px;
  line-height: 20px;
  text-align: left;
  cursor: pointer;
  transition: background-color 220ms var(--ease-soft), color 220ms var(--ease-soft);
}

.custom-select-option:hover,
.custom-select-option:focus-visible {
  background: #f4f7ff;
  color: var(--blue-800);
  outline: none;
}

.custom-select-option.is-selected {
  background: #eef4ff;
  color: var(--blue-800);
  font-weight: 600;
}

.lead-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #667085 50%),
    linear-gradient(135deg, #667085 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 17px,
    calc(100% - 13px) 17px;
  background-size: 5px 5px;
  background-repeat: no-repeat;
  padding-right: 36px;
}

.lead-form input:focus,
.lead-form select:focus {
  border-color: var(--blue-700);
  box-shadow: 0 0 0 3px rgba(21, 93, 252, 0.14);
  outline: none;
}

.lead-form input::placeholder {
  color: rgba(10, 10, 10, 0.38);
}

.wide {
  width: 100%;
  min-height: 48px;
  margin-top: 4px;
  border: 0;
  cursor: pointer;
}

.form-note {
  margin: 0;
  color: #667085;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
}

.lead-form .wide {
  font-size: 16px;
}

.applications-section {
  position: relative;
  overflow: hidden;
  min-height: 1168px;
  padding-top: 100px;
}

.center-title {
  width: fit-content;
  max-width: min(853px, 100%);
  margin: 0 auto;
  color: var(--blue-800);
  font-size: 64px;
  line-height: 72px;
  text-align: center;
}

.application-cards {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 15px;
  margin-top: 58px;
}

.application-card {
  min-height: 232px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid rgba(8, 22, 55, 0.07);
  border-radius: 8px;
  background: white;
  padding: 24px;
  box-shadow: 0 18px 50px rgba(5, 16, 50, 0.08);
  transition: transform 520ms var(--ease-soft), box-shadow 520ms var(--ease-soft);
}

.application-card:hover,
.trust-card:hover {
  transform: translateY(-4px) scale(1.006);
  box-shadow: 0 24px 60px rgba(5, 16, 50, 0.14);
}

.application-card h3,
.application-card p,
.trust-card h3,
.trust-card p {
  margin: 0;
}

.application-card h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 32px;
}

.application-card p {
  max-width: 257px;
  margin-top: 8px;
  color: #4b5563;
  font-size: 14px;
  line-height: 24px;
}

.application-card img {
  width: 64px;
  height: 64px;
  flex: 0 0 auto;
}

.applications-image {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(640px, calc(100vw - 40px));
  max-width: none;
  height: auto;
  transform: translateX(-50%);
  object-fit: contain;
}

.process-section {
  min-height: 911px;
  padding-block: 102px;
  overflow: hidden;
}

.process-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}

.process-copy h2 {
  width: fit-content;
  max-width: min(615px, 100%);
  color: var(--blue-800);
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1;
}

.process-copy > p {
  max-width: 430px;
  margin: 16px 0 0;
  font-size: 18px;
  line-height: 24px;
  color: #1f2937;
}

.steps {
  display: grid;
  gap: 32px;
  margin-top: 72px;
}

.step {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
}

.step > span {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #e8eeff;
  color: var(--blue-900);
  font-size: 24px;
  font-weight: 700;
}

.step h3 {
  margin: 0;
  font-size: 20px;
  line-height: 28px;
}

.step p {
  max-width: 100%;
  margin: 8px 0 0;
  color: #374151;
  font-size: 16px;
  line-height: 24px;
}

.process-art {
  justify-self: center;
  width: 100%;
}

.process-art img {
  width: min(560px, 100%);
  height: auto;
  margin-inline: auto;
  object-fit: contain;
}

.quality-section {
  position: relative;
  min-height: 963px;
  padding-block: 102px 100px;
  background: linear-gradient(180deg, #f9fbff 0%, #ffffff 48%, #f8fbff 100%);
  overflow: hidden;
}

.quality-content {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
}

.quality-heading {
  width: fit-content;
  max-width: min(760px, 100%);
  text-align: center;
}

.quality-heading img {
  width: 100px;
  height: 106px;
  margin: 0 auto 15px;
}

.quality-heading h2 {
  width: fit-content;
  max-width: 100%;
  margin-inline: auto;
  color: var(--blue-800);
  font-size: clamp(34px, 4vw, 56px);
}

@media (min-width: 768px) {
  .quality-heading h2 {
    white-space: nowrap;
  }
}

.quality-heading p {
  max-width: 462px;
  margin: 16px auto 0;
  color: #4b5563;
  font-size: 16px;
  line-height: 24px;
}

.trust-grid {
  width: min(981px, 100%);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 23px;
  margin-top: 32px;
}

.trust-card {
  min-height: 220px;
  border: 1px solid rgba(8, 22, 55, 0.07);
  border-radius: 8px;
  background: white;
  padding: 24px;
  box-shadow: 0 16px 44px rgba(5, 16, 50, 0.06);
  transition: transform 520ms var(--ease-soft), box-shadow 520ms var(--ease-soft);
}

.trust-card img {
  width: 48px;
  height: 48px;
}

.trust-card h3 {
  margin-top: 16px;
  font-size: 20px;
  line-height: 28px;
}

.trust-card p {
  margin-top: 8px;
  color: #4b5563;
  font-size: 16px;
  line-height: 24px;
}

.faq-section {
  min-height: 828px;
  padding-block: 68px;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 581px) minmax(480px, 736px);
  gap: 80px;
  align-items: start;
}

.faq-copy h2 {
  width: fit-content;
  max-width: 100%;
  color: var(--blue-800);
}

.faq-copy p:last-child {
  max-width: 487px;
  margin: 16px 0 0;
  color: #4b5563;
  font-size: 18px;
  line-height: 24px;
}

.faq-list {
  display: grid;
  border-top: 1px solid #edf0f5;
}

.faq-item {
  border-bottom: 1px solid #edf0f5;
}

.faq-item button {
  width: 100%;
  min-height: 76px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 20px;
  gap: 24px;
  align-items: center;
  border: 0;
  background: transparent;
  padding: 24px 32px;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition: background-color 360ms var(--ease-soft), color 360ms var(--ease-soft);
}

.faq-item button:hover {
  background: #f8faff;
}

.faq-item button span:first-child {
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
}

.faq-icon {
  position: relative;
  width: 20px;
  height: 20px;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 9px;
  left: 4px;
  width: 12px;
  height: 2px;
  border-radius: 2px;
  background: #667085;
  transition: transform 360ms var(--ease-soft), background-color 360ms var(--ease-soft);
}

.faq-icon::after {
  transform: rotate(90deg);
}

.faq-item.is-open .faq-icon::after {
  transform: rotate(0);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 520ms var(--ease-soft);
}

.faq-answer p {
  overflow: hidden;
  margin: 0;
  padding: 0 32px;
  color: #4b5563;
  font-size: 16px;
  line-height: 24px;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-answer p {
  padding-bottom: 24px;
}

.site-footer {
  background: var(--footer);
  color: white;
  padding-top: 64px;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 464px) minmax(420px, 544px);
  justify-content: space-between;
  gap: 80px;
  min-height: 210px;
}

.footer-brand img {
  width: 144px;
  height: 48px;
}

.footer-brand p {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 16px;
  line-height: 23px;
}

.footer-brand p + p {
  margin-top: 4px;
}

.footer-brand a {
  display: inline-flex;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 160px));
  gap: 32px;
}

.footer-links h3 {
  margin: 0 0 16px;
  font-size: 18px;
  line-height: 24px;
}

.footer-links a {
  display: block;
  padding-block: 6px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 24px;
  transition: color 360ms var(--ease-soft);
}

.footer-links a:hover,
.footer-brand a:hover {
  color: white;
}

.copyright {
  margin-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px 0 64px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
}

.thank-you-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.95)),
    linear-gradient(55deg, rgba(10, 50, 194, 0.12), rgba(139, 180, 255, 0.24));
}

.thank-you-card {
  width: min(560px, 100%);
  border: 1px solid rgba(8, 22, 55, 0.08);
  border-radius: 12px;
  background: white;
  padding: 40px;
  box-shadow: 0 24px 70px rgba(5, 16, 50, 0.12);
  text-align: center;
}

.thank-you-card img {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
}

.thank-you-card h1 {
  max-width: none;
  font-size: clamp(38px, 7vw, 56px);
}

.thank-you-card p {
  margin: 16px 0 28px;
  color: #4b5563;
  font-size: 18px;
  line-height: 26px;
}

.scroll-top-button {
  position: fixed;
  right: 48px;
  bottom: 48px;
  z-index: 60;
  width: 64px;
  height: 64px;
  display: inline-grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #1f1f1f;
  color: #fff;
  box-shadow:
    0 18px 34px rgba(0, 0, 0, 0.18),
    0 10px 18px rgba(0, 0, 0, 0.14),
    inset 0 -1px 0 rgba(255, 255, 255, 0.08);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translate3d(0, 14px, 0) scale(0.92);
  transition:
    opacity 420ms var(--ease-soft),
    visibility 420ms var(--ease-soft),
    transform 420ms var(--ease-soft),
    background-color 320ms var(--ease-soft),
    box-shadow 320ms var(--ease-soft);
}

.scroll-top-button.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0) scale(1);
}

.scroll-top-button:hover {
  background: #111;
  transform: translate3d(0, -3px, 0) scale(1.02);
  box-shadow:
    0 22px 42px rgba(0, 0, 0, 0.2),
    0 12px 20px rgba(0, 0, 0, 0.16),
    inset 0 -1px 0 rgba(255, 255, 255, 0.1);
}

.scroll-top-button:active {
  transform: translate3d(0, 0, 0) scale(0.97);
}

.scroll-top-button svg {
  width: 30px;
  height: 30px;
  stroke: currentColor;
  stroke-width: 2.8;
  stroke-linecap: square;
  stroke-linejoin: miter;
  fill: none;
}

.reveal {
  opacity: 0;
  filter: blur(6px);
  transform: translate3d(0, 28px, 0) scale(0.985);
  transition:
    opacity 980ms var(--ease-soft),
    transform 980ms var(--ease-soft),
    filter 980ms var(--ease-soft);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

.reveal.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
}

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

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

  .reveal {
    opacity: 1;
    filter: none;
    transform: none;
  }

  .pricing-panel.is-animating .pricing-card {
    animation: none !important;
  }
}

@media (max-width: 1439px) {
  :root {
    --container: min(1120px, calc(100vw - 96px));
  }

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

  .hero-grid {
    grid-template-columns: minmax(0, 651fr) minmax(0, 634fr);
  }

  .usp-row {
    max-width: 560px;
    gap: 33px;
  }

  .faq-grid {
    gap: 56px;
    grid-template-columns: minmax(320px, 0.9fr) minmax(480px, 1.1fr);
  }

  .packages-pricing .container {
    width: min(1108px, calc(100vw - 96px));
  }

  .pricing-panel.is-active {
    gap: 20px;
  }

  .packages-cta-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 520px);
  }
}

@media (max-width: 1023px) {
  :root {
    --container: min(100% - 56px, 896px);
  }

  body {
    padding-top: 78px;
  }

  .site-header {
    height: 78px;
    padding-inline: 28px;
  }

  .logo-mark {
    min-height: 56px;
  }

  .logo-mark img {
    width: 52px;
    height: 52px;
  }

  .menu-button {
    width: 44px;
    height: 44px;
    display: inline-grid;
    place-items: center;
    position: relative;
    border: 1px solid #e6eaf2;
    border-radius: 999px;
    background: white;
    cursor: pointer;
    transition:
      border-color 360ms var(--ease-soft),
      background-color 360ms var(--ease-soft),
      transform 360ms var(--ease-soft),
      box-shadow 360ms var(--ease-soft);
  }

  .menu-button span {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: var(--blue-900);
    transform-origin: center;
    transition:
      transform 420ms var(--ease-soft),
      opacity 300ms var(--ease-soft),
      background-color 360ms var(--ease-soft);
  }

  .menu-button span:first-child {
    transform: translate(-50%, -50%) translateY(-4px);
  }

  .menu-button span:last-child {
    transform: translate(-50%, -50%) translateY(4px);
  }

  .menu-button:hover {
    border-color: rgba(4, 18, 68, 0.16);
    box-shadow: 0 10px 24px rgba(9, 19, 54, 0.08);
  }

  .menu-button[aria-expanded="true"] span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 12px);
    left: 28px;
    right: 28px;
    display: grid;
    gap: 6px;
    padding: 14px;
    border: 1px solid #e6eaf2;
    border-radius: 14px;
    background: white;
    box-shadow: 0 24px 50px rgba(9, 19, 54, 0.15);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px) scale(0.985);
    transform-origin: top right;
    transition:
      opacity 420ms var(--ease-soft),
      transform 420ms var(--ease-soft);
  }

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

  .site-nav a,
  .site-nav a.is-current,
  .site-nav .nav-cta {
    width: 100%;
    min-height: 44px;
    justify-content: flex-start;
    border: 0;
    border-radius: 10px;
    margin: 0;
  }

  .site-nav a.is-current:not(.nav-cta) {
    background: #f7f9ff;
    color: var(--blue-800);
  }

  .site-nav a:not(.nav-cta)::after {
    display: none;
  }

  .site-nav .nav-cta {
    justify-content: center;
  }

  .hero {
    min-height: auto;
    padding: 72px 0 56px;
  }

  .hero-grid {
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 34px;
  }

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

  .hero-art {
    position: relative;
    grid-column: 1;
    grid-row: auto;
    right: auto;
    top: auto;
    bottom: auto;
    justify-self: center;
    width: min(640px, 100%);
    height: auto;
    margin: 0 auto;
    order: 3;
  }

  .packages-hero {
    min-height: auto;
    padding: 56px 0 48px;
  }

  .packages-hero-content {
    max-width: 680px;
    justify-items: center;
    text-align: center;
  }

  .packages-hero h1 {
    max-width: 100%;
    font-size: clamp(52px, 7vw, 64px);
    text-align: center;
  }

  .packages-hero p {
    width: min(560px, 100%);
    font-size: 15px;
    line-height: 22px;
    text-align: center;
  }

  .packages-hero-art {
    width: min(380px, 60vw);
    margin-top: 26px;
  }

  .packages-hero-orbit {
    width: min(500px, 68vw);
    bottom: -88px;
    border-width: clamp(28px, 4vw, 46px);
  }

  .usp-row {
    order: 2;
    margin: 48px 0 0;
    max-width: none;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }

  .usp-row div {
    align-items: flex-start;
  }

  .intro-section {
    min-height: auto;
    padding-block: 76px;
  }

  .split-grid {
    grid-template-columns: 1fr;
    justify-content: stretch;
    gap: 52px;
  }

  .feature-list {
    width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .feature-item {
    align-items: start;
    grid-template-columns: 40px minmax(0, 1fr);
  }

  .form-card {
    width: min(560px, 100%);
    justify-self: center;
  }

  .applications-section {
    min-height: auto;
    padding-top: 76px;
    padding-bottom: 0;
  }

  .application-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .application-card {
    min-height: 210px;
  }

  .application-card:last-child {
    grid-column: 1 / -1;
  }

  .applications-image {
    position: relative;
    left: 50%;
    bottom: auto;
    margin-top: 48px;
    width: min(640px, calc(100vw - 56px));
    height: auto;
  }

  .process-section {
    min-height: auto;
    padding-block: 76px;
  }

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

  .process-art {
    justify-self: center;
  }

  .process-art img {
    width: min(560px, 100%);
    height: auto;
  }

  .steps {
    margin-top: 44px;
  }

  .quality-section {
    min-height: auto;
    padding-block: 76px;
  }

  .trust-grid {
    width: 100%;
  }

  .faq-section {
    min-height: auto;
    padding-block: 76px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

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

  .packages-pricing {
    padding: 60px 0 80px;
  }

  .packages-pricing .container {
    width: min(896px, calc(100vw - 48px));
  }

  .pricing-track-toggle {
    width: fit-content;
    max-width: 100%;
    display: inline-flex;
    gap: 4px;
  }

  .pricing-track-button {
    padding: 12px 16px;
  }

  .pricing-panel.is-active {
    gap: 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-panel.is-active .pricing-card:last-child:nth-child(3) {
    grid-column: 1 / -1;
  }

  .pricing-panel.panel-two {
    max-width: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-card {
    min-height: 0;
    padding: 24px 20px 20px;
  }

  .pricing-features li {
    line-height: 1.5;
  }

  .packages-cta-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 48px;
    padding-block: 80px;
  }

  .packages-cta-copy {
    max-width: 640px;
    padding-block: 0;
  }

  .packages-cta-art {
    justify-content: center;
  }

  .packages-cta-art img {
    width: min(520px, 100%);
  }
}

@media (max-width: 767px) {
  :root {
    --container: min(100% - 40px, 560px);
  }

  body {
    padding-top: 72px;
  }

  .site-header {
    height: 72px;
    padding-inline: 20px;
  }

  .logo-mark img {
    width: 44px;
    height: 44px;
  }

  .logo-mark span {
    font-size: 14px;
  }

  .site-nav {
    left: 20px;
    right: 20px;
  }

  .site-nav a.is-current:not(.nav-cta) {
    background: #f7f9ff;
    color: var(--blue-800);
  }

  .hero {
    padding: 52px 0 48px;
  }

  .scroll-top-button {
    right: 20px;
    bottom: 24px;
    width: 56px;
    height: 56px;
  }

  .scroll-top-button svg {
    width: 26px;
    height: 26px;
  }

  h1 {
    max-width: 360px;
    font-size: clamp(46px, 13vw, 56px);
  }

  h2,
  .quality-heading h2 {
    font-size: clamp(34px, 9.2vw, 42px);
  }

  .center-title {
    font-size: clamp(38px, 10.6vw, 48px);
    line-height: 1.04;
  }

  .process-copy h2 {
    font-size: clamp(42px, 11.2vw, 54px);
  }

  .eyebrow {
    font-size: 18px;
  }

  .button-row {
    gap: 12px;
  }

  .usp-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .usp-row div {
    min-height: 44px;
    align-items: center;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }

  .form-card {
    padding: 24px;
    border-radius: 12px;
  }

  .form-grid.two {
    grid-template-columns: 1fr;
  }

  .lead-form input,
  .lead-form select {
    height: 44px;
  }

  .custom-select-trigger {
    min-height: 44px;
  }

  .custom-select-option {
    min-height: 44px;
  }

  .application-cards {
    grid-template-columns: 1fr;
    margin-top: 34px;
  }

  .application-card,
  .application-card:last-child {
    grid-column: auto;
    min-height: auto;
  }

  .application-card {
    padding: 20px;
  }

  .application-card img {
    width: 52px;
    height: 52px;
  }

  .applications-image {
    width: min(640px, calc(100vw - 40px));
    margin-top: 34px;
  }

  .packages-hero {
    padding: 40px 0 24px;
  }

  .packages-hero-content {
    max-width: 100%;
    justify-items: start;
    text-align: left;
  }

  .packages-hero h1,
  .packages-hero p {
    text-align: left;
  }

  .packages-hero h1 {
    margin-top: 14px;
    max-width: 100%;
    font-size: clamp(42px, 12vw, 54px);
    line-height: 0.96;
  }

  .packages-hero p {
    width: 100%;
    max-width: 32rem;
    margin-top: 16px;
    font-size: 15px;
    line-height: 21px;
  }

  .packages-hero-art {
    width: min(332px, 92vw);
    margin-top: 24px;
  }

  .packages-hero-orbit {
    width: min(392px, 105vw);
    bottom: -64px;
    border-width: 22px;
  }

  .process-copy > p,
  .faq-copy p:last-child,
  .quality-heading p {
    font-size: 16px;
  }

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

  .step > span {
    width: 42px;
    height: 42px;
    font-size: 20px;
  }

  .step h3,
  .application-card h3,
  .trust-card h3 {
    font-size: 18px;
  }

  .step p,
  .trust-card p {
    font-size: 15px;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .trust-card {
    min-height: auto;
    padding: 20px;
  }

  .faq-item button {
    min-height: 68px;
    padding: 20px 0;
  }

  .faq-item button span:first-child {
    font-size: 16px;
  }

  .faq-answer p {
    padding-inline: 0;
    font-size: 15px;
  }

  .packages-pricing {
    padding: 40px 0 56px;
  }

  .packages-pricing .container {
    width: min(560px, calc(100vw - 40px));
  }

  .packages-pricing-header {
    justify-items: center;
  }

  .pricing-track-toggle,
  .pricing-mode-toggle {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px;
    padding: 4px;
  }

  .pricing-track-toggle {
    max-width: 350px;
    border-radius: 24px;
  }

  .pricing-track-button {
    min-height: 36px;
    padding: 8px 8px;
    justify-content: center;
    text-align: center;
    font-size: clamp(8.6px, 2.7vw, 11px);
    line-height: 1;
    white-space: nowrap;
  }

  .pricing-track-label-full {
    display: none;
  }

  .pricing-track-label-mobile {
    display: block;
  }

  .pricing-track-icon {
    display: none;
  }

  .pricing-note {
    max-width: 260px;
    font-size: 15px;
    line-height: 20px;
  }

  .pricing-mode-toggle {
    width: min(100%, 220px);
    border-radius: 24px;
  }

  .pricing-mode-button {
    min-height: 28px;
    padding: 8px 10px;
    font-size: clamp(11px, 3vw, 13px);
    line-height: 1;
    white-space: nowrap;
  }

  .pricing-panels {
    margin-top: 32px;
  }

  .pricing-panel.is-active,
  .pricing-panel.panel-two {
    gap: 16px;
    grid-template-columns: 1fr;
  }

  .pricing-panel.is-active .pricing-card:last-child:nth-child(3) {
    grid-column: auto;
  }

  .pricing-card {
    padding: 22px 18px 18px;
  }

  .pricing-badge {
    min-width: 126px;
    font-size: 13px;
  }

  .pricing-card h3 {
    font-size: 22px;
  }

  .pricing-price {
    margin-top: 24px;
  }

  .pricing-currency {
    padding-bottom: 8px;
  }

  .pricing-amount {
    font-size: 44px;
  }

  .pricing-divider {
    margin: 24px 0 18px;
  }

  .pricing-features {
    gap: 14px;
  }

  .pricing-features li {
    gap: 10px;
    font-size: 15px;
    line-height: 1.46;
  }

  .pricing-check {
    width: 22px;
    height: 22px;
  }

  .pricing-check::before {
    left: 8px;
    top: 4px;
  }

  .pricing-button {
    margin-top: 22px;
    padding-inline: 16px;
  }

  .packages-cta-grid {
    gap: 24px;
    padding-block: 56px;
  }

  .packages-cta-copy h2 {
    max-width: 100%;
    font-size: clamp(38px, 10.5vw, 48px);
    line-height: 1.02;
  }

  .packages-cta-copy p {
    max-width: 100%;
    margin-top: 18px;
    font-size: 15px;
    line-height: 21px;
  }

  .packages-cta-copy .primary-button {
    min-height: 48px;
  }

  .packages-cta-art {
    justify-content: center;
  }

  .packages-cta-art img {
    width: min(440px, 100%);
  }

  .packages-page .footer-inner {
    gap: 32px;
  }

  .packages-page .footer-brand p {
    max-width: none;
    margin-top: 16px;
    font-size: 14px;
    line-height: 22px;
  }

  .packages-page .footer-brand a {
    margin-top: 18px;
    font-size: 14px;
  }

  .packages-page .footer-links {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .packages-page .footer-links h3 {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .packages-page .footer-links a {
    font-size: 14px;
    line-height: 22px;
  }

  .footer-links h3 {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .footer-links a {
    font-size: 13px;
    line-height: 20px;
  }

  .copyright {
    padding-bottom: 44px;
  }
}

@media (max-width: 374px) {
  :root {
    --container: min(100% - 28px, 340px);
  }

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

  .site-nav {
    left: 14px;
    right: 14px;
  }

  h1 {
    font-size: 42px;
  }

  .hero-lede,
  .application-card p,
  .step p,
  .trust-card p,
  .feature-item p {
    font-size: 14px;
  }

  .form-card,
  .application-card,
  .trust-card {
    padding: 18px;
  }

  .primary-button,
  .secondary-button {
    padding-inline: 14px;
  }

  .hero-pill {
    padding-inline: 16px;
  }

  .packages-hero {
    padding-top: 36px;
  }

  .packages-pricing .container {
    width: min(340px, calc(100vw - 32px));
  }

  .packages-hero h1 {
    font-size: 40px;
  }

  .packages-hero p {
    font-size: 14px;
    line-height: 20px;
  }

  .packages-hero-art {
    width: min(296px, 92vw);
  }

  .packages-hero-orbit {
    width: min(344px, 108vw);
    bottom: -52px;
    border-width: 20px;
  }

  .pricing-track-button,
  .pricing-mode-button {
    padding-inline: 8px;
  }

  .pricing-track-button {
    min-height: 36px;
    font-size: 8.1px;
  }

  .pricing-mode-button {
    min-height: 28px;
    font-size: 11px;
  }

  .pricing-amount {
    font-size: 40px;
  }

  .pricing-card {
    padding: 20px 16px 16px;
  }

  .pricing-card h3 {
    font-size: 20px;
  }

  .pricing-features li {
    gap: 10px;
    font-size: 14px;
  }

  .packages-page .footer-links {
    gap: 20px;
  }

  .packages-page .copyright {
    font-size: 12px;
    padding-bottom: 36px;
  }
}
