/* ==========================================================================
   Loyola Media Group — Dark MCA Site
   ========================================================================== */

:root {
  --ink: #05070d;
  --navy: #070d18;
  --slate: #0e1626;
  --panel: #121b2e;
  --blue: #1e6bff;
  --blue-bright: #3d85ff;
  --ice: #e8eef8;
  --mist: #9aa8bf;
  --steel: #6d7d96;
  --line: rgba(232, 238, 248, 0.1);
  --line-soft: rgba(232, 238, 248, 0.06);
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.35);

  --font-display: "Syne", "Plus Jakarta Sans", system-ui, sans-serif;
  --font-body: "Plus Jakarta Sans", system-ui, sans-serif;

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --header-h: 4.5rem;
}

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

html {
  scroll-behavior: smooth;
}

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

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ice);
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

em,
.accent {
  font-style: normal;
  color: var(--blue-bright);
}

.wrap {
  width: min(1280px, calc(100% - 2.5rem));
  margin-inline: auto;
}

/* Header
   ========================================================================== */

.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease), backdrop-filter 0.35s;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(5, 7, 13, 0.86);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--line);
}

.logo img {
  width: min(168px, 42vw);
  height: auto;
  filter: drop-shadow(0 4px 16px rgba(30, 107, 255, 0.2));
}

.nav {
  display: none;
  align-items: center;
  gap: 1rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mist);
}

.nav-drop {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
}

.nav-drop > a {
  display: flex;
  align-items: center;
  height: 100%;
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
  letter-spacing: inherit;
  text-transform: inherit;
  padding: 0 0.15rem;
}

.nav-drop > a:hover,
.nav-drop:hover > a:first-of-type,
.nav-drop:focus-within > a:first-of-type {
  color: #fff;
}

.nav-drop-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 60;
  min-width: 13rem;
  padding: 0.35rem 0 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  display: grid;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s var(--ease), visibility 0.15s var(--ease);
}

.nav-drop:hover .nav-drop-menu,
.nav-drop:focus-within .nav-drop-menu {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.nav-drop-panel {
  display: grid;
  padding: 0.65rem 0;
  background: rgba(7, 13, 24, 0.96);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.nav-drop-menu a {
  padding: 0.55rem 1rem;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.82rem;
  color: var(--mist);
}

.nav-drop-menu a:hover {
  color: #fff;
  background: rgba(30, 107, 255, 0.12);
}

.nav a:hover {
  color: #fff;
}

.nav-phone {
  color: #fff !important;
  margin-left: 0.25rem;
}

.btn-nav {
  margin-left: 0.25rem;
  padding: 0.65rem 1rem !important;
  font-size: 0.7rem !important;
}

.nav-toggle {
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-content: center;
  gap: 6px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0;
  color: var(--ice);
}

.nav-toggle span {
  display: block;
  width: 1.35rem;
  height: 1.5px;
  background: currentColor;
  transition: transform 0.3s var(--ease);
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.75px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.75px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: var(--header-h) 0 0;
  z-index: 40;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1.5rem 1.5rem 2rem;
  background: rgba(5, 7, 13, 0.98);
  border-top: 1px solid var(--line);
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav a {
  padding: 0.85rem 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  border-bottom: 1px solid var(--line);
}

.mobile-nav .sub {
  padding-left: 0.75rem;
}

.mobile-nav .sub a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--mist);
}

.mobile-nav .btn {
  margin-top: 1rem;
  border-bottom: 0;
  justify-content: center;
}

@media (min-width: 1100px) {
  .nav {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }
}

/* Hero
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.05);
  animation: hero-drift 32s ease-in-out infinite alternate;
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      105deg,
      rgba(5, 7, 13, 0.96) 0%,
      rgba(7, 13, 24, 0.88) 42%,
      rgba(7, 13, 24, 0.55) 70%,
      rgba(5, 7, 13, 0.8) 100%
    ),
    radial-gradient(
      ellipse 60% 50% at 78% 30%,
      rgba(30, 107, 255, 0.22) 0%,
      transparent 55%
    ),
    linear-gradient(to top, rgba(5, 7, 13, 0.95) 0%, transparent 40%);
  animation: veil-breathe 14s ease-in-out infinite alternate;
}

.hero-shell {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  align-items: center;
  padding:
    calc(var(--header-h) + 1rem)
    0
    1.5rem;
}

.hero-copy {
  width: min(1280px, calc(100% - 2.5rem));
  max-width: none;
}

.hero-title {
  margin: 0 0 1rem;
  max-width: 16ch;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4.2vw, 3rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  text-transform: capitalize;
}

.hero-title .hero-title-acronym {
  text-transform: none;
}

.hero-lede {
  margin: 0 0 1.5rem;
  max-width: 42ch;
  font-size: clamp(0.98rem, 1.6vw, 1.08rem);
  line-height: 1.65;
  color: rgba(232, 238, 248, 0.88);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

@media (min-width: 900px) {
  .hero-image {
    object-position: 62% 38%;
  }
}

/* Feature bar under hero
   ========================================================================== */

.feature-bar {
  position: relative;
  z-index: 2;
  margin-top: auto;
  flex-shrink: 0;
  border-top: 1px solid var(--line);
  background: rgba(7, 13, 24, 0.9);
  backdrop-filter: blur(14px);
}

.feature-bar-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  padding-block: 0.35rem;
}

.feature {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: start;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line);
  min-width: 0;
}

.feature:last-child {
  border-bottom: 0;
}

.feature-icon {
  width: 1.75rem;
  height: 1.75rem;
  flex-shrink: 0;
  color: var(--blue-bright);
}

.feature-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.feature strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.2rem;
  white-space: nowrap;
}

.feature p {
  margin: 0;
  font-size: 0.84rem;
  color: var(--mist);
  line-height: 1.4;
}

@media (min-width: 900px) {
  .feature-bar-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    padding-block: 0.15rem;
  }

  .feature {
    padding: 1.25rem 1rem;
    border-bottom: 0;
    border-right: 1px solid var(--line);
  }

  .feature:first-child {
    padding-left: 0;
  }

  .feature:last-child {
    border-right: 0;
    padding-right: 0;
  }

  .feature strong {
    white-space: normal;
  }
}

/* Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.65rem;
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 4px;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    transform 0.35s var(--ease),
    background 0.35s var(--ease),
    border-color 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    color 0.35s var(--ease);
}

.btn-primary,
.btn-nav {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 10px 28px rgba(30, 107, 255, 0.35);
}

.btn-primary:hover,
.btn-nav:hover {
  background: var(--blue-bright);
  border-color: var(--blue-bright);
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(30, 107, 255, 0.45);
}

.btn-ghost {
  color: var(--ice);
  background: transparent;
  border-color: rgba(232, 238, 248, 0.35);
}

.btn-ghost:hover {
  border-color: var(--blue-bright);
  color: #fff;
  transform: translateY(-1px);
}

.btn:focus-visible {
  outline: 2px solid var(--blue-bright);
  outline-offset: 3px;
}

/* Page body — dark
   ========================================================================== */

.page-body {
  background:
    radial-gradient(900px 420px at 50% 0%, rgba(30, 107, 255, 0.08), transparent 60%),
    var(--navy);
}

.section {
  padding: clamp(4rem, 10vw, 6.5rem) 0;
}

.section-band {
  background: var(--slate);
  border-block: 1px solid var(--line);
}

.eyebrow {
  margin: 0 0 0.9rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--steel);
}

.section-title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.2vw, 2.75rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--ice);
}

.section-lede {
  margin: 0;
  max-width: 54ch;
  color: var(--mist);
  font-size: 1.02rem;
}

.section-lede + .section-lede {
  margin-top: 1rem;
}

.section-lede.wide {
  max-width: 56ch;
}

.results-split {
  display: grid;
  gap: 1.75rem;
  align-items: center;
}

.results-photo {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 4 / 5;
  background: var(--panel);
}

.results-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.7s var(--ease);
}

.results-photo:hover img {
  transform: scale(1.04);
}

.results-copy {
  max-width: none;
}

@media (min-width: 800px) {
  .results-split {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
    gap: 3rem;
    align-items: center;
  }

  .results-photo {
    aspect-ratio: 4 / 3;
    max-height: none;
    min-height: 22rem;
  }
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.75rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.02em;
  color: var(--blue-bright);
  border-bottom: 1px solid rgba(61, 133, 255, 0.4);
  padding-bottom: 0.2rem;
  transition: gap 0.35s var(--ease);
}

.text-link:hover {
  gap: 0.85rem;
}

/* Quality cards */
.vertical-cards {
  list-style: none;
  margin: 2.5rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 560px) {
  .vertical-cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 900px) {
  .vertical-cards {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.15rem;
  }
}

.v-card {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  min-height: 10.5rem;
  padding: 1.35rem 1.4rem 1.5rem;
  background: rgba(18, 27, 46, 0.85);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  transition:
    transform 0.35s var(--ease),
    border-color 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
}

.v-card:hover {
  transform: translateY(-3px);
  border-color: rgba(30, 107, 255, 0.4);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(30, 107, 255, 0.12);
}

.v-card .num {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--blue-bright);
  margin-bottom: 0.35rem;
}

.v-card strong {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 650;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--ice);
}

.v-card .text-link {
  margin-top: auto;
}

.price-cards + .price-cards {
  margin-top: 1rem;
}

.price-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.price-row .price-cards {
  display: contents;
}

.price-row + .price-cards,
.price-row .price-cards + .price-cards {
  margin-top: 0;
}

@media (min-width: 700px) {
  .price-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.hero-panel a {
  color: inherit;
  text-decoration: none;
}

.hero-panel a:hover {
  color: var(--blue-bright);
}


.hero-panel-link {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: center;
  padding: 0.85rem 0;
  color: inherit;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 650;
  letter-spacing: -0.02em;
  transition: color 0.3s var(--ease);
}

.hero-panel-link:hover {
  color: var(--blue-bright);
}

.hero-panel li:last-child .hero-panel-link {
  color: var(--blue-bright);
}

.hero-panel li:last-child .hero-panel-link:hover {
  color: var(--ice);
}

/* Pricing */
.price-group-title {
  margin: 2.75rem 0 1.15rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ice);
}

.price-cards {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 600px) {
  .price-cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 960px) {
  .price-cards {
    grid-template-columns: repeat(4, 1fr);
  }
}

.price-card {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 1.35rem 1.3rem 1.45rem;
  background: rgba(18, 27, 46, 0.9);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition:
    transform 0.35s var(--ease),
    border-color 0.35s var(--ease);
}

.price-card:hover {
  transform: translateY(-3px);
  border-color: rgba(30, 107, 255, 0.4);
}

.price-card-featured {
  background:
    linear-gradient(160deg, rgba(30, 107, 255, 0.18), transparent 55%),
    rgba(18, 27, 46, 0.95);
  border-color: rgba(30, 107, 255, 0.4);
}

.price-label {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel);
}

.price-amount {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ice);
}

.price-amount span {
  font-size: clamp(1.85rem, 3vw, 2.25rem);
  font-weight: 750;
  letter-spacing: -0.03em;
  color: var(--blue-bright);
}

.price-card ul {
  list-style: none;
  margin: 0.35rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.4rem;
}

.price-card li {
  font-size: 0.88rem;
  color: var(--mist);
  padding-left: 0.9rem;
  position: relative;
}

.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--blue-bright);
}

/* Why */
.why-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 860px) {
  .why-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3.5rem;
    align-items: start;
  }
}

.aside-title {
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.4vw, 1.55rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--ice);
}

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

.proof-list li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--mist);
}

.proof-list li::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  flex-shrink: 0;
  margin-top: 0.4rem;
  border-radius: 50%;
  background: var(--blue-bright);
  box-shadow: 0 0 10px rgba(61, 133, 255, 0.45);
}

/* Quotes */
.quotes {
  margin-top: 2rem;
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 700px) {
  .quotes {
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem;
  }
}

.quotes blockquote {
  margin: 0;
  padding: 1.35rem 1.4rem;
  background: rgba(18, 27, 46, 0.85);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.quotes p {
  margin: 0 0 1.1rem;
  font-family: var(--font-display);
  font-size: clamp(1.02rem, 1.8vw, 1.15rem);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: -0.015em;
  color: var(--ice);
}

.quotes footer {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--steel);
}

.quotes strong {
  color: var(--blue-bright);
  font-weight: 700;
}

/* Contact */
.contact-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 800px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
  }
}

.contact-direct {
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.contact-direct a {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 650;
  letter-spacing: -0.02em;
  color: var(--ice);
  border-bottom: 1px solid rgba(61, 133, 255, 0.35);
  width: fit-content;
  padding-bottom: 0.15rem;
  transition: color 0.3s, border-color 0.3s;
}

.contact-direct a:hover {
  color: var(--blue-bright);
  border-color: var(--blue-bright);
}

.meta {
  margin: 0.65rem 0 0;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel);
}

.intake {
  display: grid;
  gap: 0.9rem;
  padding: 1.35rem;
  background: rgba(18, 27, 46, 0.9);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.intake label {
  display: grid;
  gap: 0.35rem;
}

.intake label > span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel);
}

.intake input[type="text"],
.intake input[type="email"],
.intake input[type="tel"] {
  width: 100%;
  padding: 0.8rem 0.9rem;
  font: inherit;
  color: var(--ice);
  background: rgba(5, 7, 13, 0.55);
  border: 1px solid var(--line);
  border-radius: 4px;
  outline: none;
  transition: border-color 0.25s;
}

.intake input:focus {
  border-color: var(--blue-bright);
}

.consent {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 0.7rem;
  margin-top: 0.15rem;
}

.consent input {
  margin-top: 0.25rem;
  accent-color: var(--blue);
}

.consent span {
  font-size: 0.8rem !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  line-height: 1.5;
  color: var(--mist) !important;
}

.intake .btn {
  margin-top: 0.25rem;
  width: 100%;
}

.form-note {
  margin: 0;
  font-size: 0.75rem;
  color: var(--steel);
}

/* Footer
   ========================================================================== */

.site-footer {
  padding: 2rem 0 2.5rem;
  border-top: 1px solid var(--line);
  background: var(--ink);
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.footer-logo {
  width: 140px;
  opacity: 0.92;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mist);
}

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

.footer-copy {
  margin: 0;
  width: 100%;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--steel);
}

@media (min-width: 800px) {
  .footer-copy {
    width: auto;
  }
}

/* Motion
   ========================================================================== */

.fade-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}

.fade-up.is-in {
  opacity: 1;
  transform: none;
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

@keyframes hero-drift {
  from { transform: scale(1.05) translate3d(0, 0, 0); }
  to { transform: scale(1.1) translate3d(-1.2%, -0.8%, 0); }
}

@keyframes veil-breathe {
  from { opacity: 1; }
  to { opacity: 0.88; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-image,
  .hero-veil {
    animation: none;
  }

  .fade-up {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 640px) {
  .hero-cta {
    flex-direction: column;
  }

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

::selection {
  background: rgba(30, 107, 255, 0.4);
  color: #fff;
}

/* Inner pages
   ========================================================================== */

.page-hero {
  position: relative;
  isolation: isolate;
  padding: calc(var(--header-h) + 4.25rem) 0 3.75rem;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(700px 280px at 12% 0%, rgba(30, 107, 255, 0.14), transparent 58%),
    var(--navy);
}

.page-hero .wrap {
  position: relative;
  z-index: 1;
}

.page-hero .eyebrow {
  color: var(--steel);
  margin: 0 0 1rem;
}

.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0 0 1.1rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel);
}

.crumbs a:hover {
  color: var(--ice);
}

.page-hero h1 {
  margin: 0 0 1rem;
  max-width: 16ch;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4.2vw, 3rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.page-hero p {
  margin: 0 0 1.1rem;
  max-width: 52ch;
  color: var(--mist);
}

.page-hero .hero-cta {
  margin-top: 0.5rem;
}

.page-hero-split {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.page-hero-split h1 {
  max-width: 14ch;
}

.page-hero-copy .hero-cta {
  margin-top: 0.25rem;
}

.hero-panel,
.lead-flow {
  margin: 0;
  padding: 1.35rem 1.4rem 1.5rem;
  background: rgba(18, 27, 46, 0.85);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.hero-panel-label,
.lead-flow-label {
  margin: 0 0 1rem !important;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--steel);
}

.hero-panel ol,
.lead-flow ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}

.hero-panel li,
.lead-flow li {
  border-bottom: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.hero-panel li {
  padding: 0;
}

.lead-flow li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: center;
  padding: 0.85rem 0;
}

.hero-panel li:last-child,
.lead-flow li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
  color: var(--blue-bright);
}

.hero-panel li span,
.hero-panel-link span,
.lead-flow li span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--blue-bright);
}

@media (min-width: 860px) {
  .page-hero-split {
    grid-template-columns: minmax(0, 1.15fr) minmax(16rem, 0.75fr);
    gap: 3.5rem;
  }
}

.section-center {
  text-align: center;
}

.section-center .section-lede {
  margin-inline: auto;
}

.section-center .section-title {
  max-width: 18ch;
  margin-inline: auto;
}

.stat-cards {
  list-style: none;
  margin: 2.5rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  text-align: left;
}

.stat-cards li {
  padding: 1.45rem 1.4rem 1.5rem;
  background: rgba(18, 27, 46, 0.85);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.stat-cards strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.4vw, 2.35rem);
  font-weight: 750;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--blue-bright);
  margin-bottom: 0.35rem;
}

.stat-cards span {
  color: var(--mist);
  font-size: 0.92rem;
  line-height: 1.45;
}

@media (min-width: 560px) {
  .stat-cards {
    grid-template-columns: 1fr 1fr;
  }

  .stat-cards li:last-child {
    grid-column: 1 / -1;
  }
}

@media (min-width: 860px) {
  .stat-cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .stat-cards li:last-child {
    grid-column: auto;
  }
}

.cards-3 {
  grid-template-columns: 1fr;
}

@media (min-width: 800px) {
  .cards-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.v-card .feature-icon {
  margin-bottom: 0.15rem;
}

.standard-sub {
  margin: -0.35rem 0 1.35rem;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--blue-bright);
}

.standard-words {
  list-style: none;
  margin: 2.25rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.standard-words li {
  padding: 1.1rem 1rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(18, 27, 46, 0.85);
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.4vw, 1.55rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

@media (min-width: 700px) {
  .standard-words {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

.highlight-line {
  margin: 2rem auto 0;
  max-width: 28ch;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.6vw, 1.65rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.03em;
  color: var(--ice);
}

.process-panel {
  padding: 1.45rem 1.4rem 1.55rem;
  background: rgba(18, 27, 46, 0.85);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.process-panel .price-label {
  margin-bottom: 1rem;
}

.section .hero-cta {
  margin-top: 1.5rem;
}

.closing-copy {
  margin-top: 2rem;
}

.stats {
  list-style: none;
  margin: 2.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.stats li {
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--line);
}

.stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  letter-spacing: -0.03em;
  color: var(--blue-bright);
}

.stats span {
  color: var(--mist);
  font-size: 0.9rem;
}

@media (min-width: 700px) {
  .stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 0 1.5rem;
  }

  .stats li {
    padding: 1.5rem 0;
  }
}

.price-cards > li {
  list-style: none;
}

.price-card-action {
  margin-top: auto;
  width: 100%;
  text-align: center;
}

.price-card .hero-cta {
  margin-top: 1rem;
}

.price-card .btn,
.price-card-action {
  padding: 0.7rem 1rem;
  width: 100%;
}

.compare {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

@media (min-width: 800px) {
  .compare {
    grid-template-columns: repeat(3, 1fr);
  }
}

.article-layout {
  width: min(760px, calc(100% - 2.5rem));
  margin-inline: auto;
  padding: 3rem 0 4rem;
}

.article-layout h1 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0 0 0.75rem;
}

.article-body {
  color: var(--mist);
  font-size: 1.05rem;
  line-height: 1.75;
}

.article-body p {
  margin: 0 0 1.1rem;
}

.intake textarea {
  width: 100%;
  min-height: 8rem;
  padding: 0.8rem 0.9rem;
  font: inherit;
  color: var(--ice);
  background: rgba(5, 7, 13, 0.55);
  border: 1px solid var(--line);
  border-radius: 4px;
  outline: none;
  resize: vertical;
}

.intake textarea:focus {
  border-color: var(--blue-bright);
}

.product-buy {
  display: grid;
  gap: 0.75rem;
  padding: 1.35rem;
  background: rgba(18, 27, 46, 0.9);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.product-buy .btn {
  width: 100%;
  text-align: center;
}

.qty {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.qty input {
  width: 5rem;
  padding: 0.65rem;
  font: inherit;
  color: var(--ice);
  background: rgba(5, 7, 13, 0.55);
  border: 1px solid var(--line);
  border-radius: 4px;
}

.choose-grid,
.shop-grid,
.steps,
.news-list {
  list-style: none;
  margin: 2.25rem 0 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.choose-card,
.shop-card,
.step,
.news-item {
  background: rgba(18, 27, 46, 0.85);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}

.choose-card a,
.shop-card {
  display: grid;
  height: 100%;
}

.choose-card img,
.shop-card img {
  width: 100%;
  height: 10rem;
  object-fit: cover;
}

.choose-card .pad,
.shop-card .pad,
.step,
.news-item {
  padding: 1.25rem 1.3rem 1.4rem;
}

.choose-card strong,
.shop-card h2,
.step strong,
.news-item h2 {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 0.4rem;
}

.choose-card p,
.shop-card p,
.step p,
.news-item p {
  margin: 0;
  color: var(--mist);
  font-size: 0.92rem;
}

.shop-card .price {
  margin-top: 0.85rem;
  color: var(--blue-bright);
  font-family: var(--font-display);
  font-weight: 700;
}

@media (min-width: 700px) {
  .choose-grid,
  .shop-grid {
    grid-template-columns: 1fr 1fr;
  }

  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 960px) {
  .choose-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.quotes-more {
  margin-top: 1.5rem;
  display: grid;
  gap: 1rem;
}

@media (min-width: 800px) {
  .quotes-more {
    grid-template-columns: 1fr 1fr;
  }
}

.final-cta .hero-cta {
  margin-top: 1.5rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 800px) {
  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
    align-items: start;
  }
}

.footer-col h3 {
  margin: 0 0 0.85rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel);
}

.footer-col a,
.footer-col p {
  display: block;
  margin: 0 0 0.45rem;
  color: var(--mist);
  font-size: 0.9rem;
}

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

.prose {
  max-width: 62ch;
}

.prose p {
  color: var(--mist);
  margin: 0 0 1.1rem;
}

.fit-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

@media (min-width: 700px) {
  .fit-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.fit-card {
  padding: 1.35rem 1.4rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(18, 27, 46, 0.85);
}

.fit-card h3 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
}

.fit-card li {
  color: var(--mist);
  margin: 0 0 0.4rem;
}

.faq details {
  border-bottom: 1px solid var(--line);
  padding: 1rem 0;
}

.faq summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 650;
}

.faq p {
  margin: 0.75rem 0 0;
  color: var(--mist);
}

/* Lead builder
   ========================================================================== */

.lead-hero h1 {
  max-width: 16ch;
}

.lead-progress {
  display: none;
}

.lead-builder-card .lead-progress {
  display: block;
  margin: 0;
  padding: 1.15rem 1.25rem 0;
}

.lead-progress-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.35rem;
  height: 0.4rem;
}

.lead-progress-segment {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.lead-progress-segment.is-done {
  background: linear-gradient(90deg, var(--blue), var(--blue-bright));
  box-shadow: 0 0 12px rgba(30, 107, 255, 0.35);
}

.lead-progress-segment.is-current {
  background: linear-gradient(90deg, rgba(30, 107, 255, 0.55), var(--blue-bright));
  box-shadow: 0 0 10px rgba(30, 107, 255, 0.28);
}

.lead-progress-labels {
  list-style: none;
  margin: 0.65rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.35rem;
}

.lead-progress-labels button {
  width: 100%;
  padding: 0;
  font: inherit;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel);
  background: none;
  border: none;
  cursor: default;
  text-align: center;
  line-height: 1.3;
  transition: color 0.3s var(--ease);
}

.lead-progress-labels li.is-done button {
  color: var(--blue-bright);
  cursor: pointer;
}

.lead-progress-labels li.is-done button:hover {
  color: var(--ice);
}

.lead-progress-labels li.is-current button {
  color: var(--ice);
  cursor: default;
}

.lead-progress-labels button:disabled {
  cursor: default;
}

.lead-progress-mobile {
  display: block;
  margin: 0;
  padding: 0.85rem 1.25rem 0;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel);
}

.lead-progress-mobile-bar {
  display: none;
  height: 0.4rem;
  margin-bottom: 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.lead-progress-mobile-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--blue-bright));
  box-shadow: 0 0 12px rgba(30, 107, 255, 0.35);
  transition: width 0.35s var(--ease);
}

.lead-builder-card {
  background: rgba(18, 27, 46, 0.9);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.lead-builder-step {
  padding: 1.5rem 1.35rem 1.65rem;
}

.lead-builder-card .section-title {
  max-width: none;
  font-size: clamp(1.45rem, 2.5vw, 1.85rem);
}

.lead-builder-card .section-lede {
  margin-bottom: 0;
}

.lead-builder-card .choice-grid {
  margin-top: 1.35rem;
}

.lead-builder-card .lead-intake {
  margin-top: 1.35rem;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
}

@media (min-width: 800px) {
  .lead-builder-card .lead-progress {
    display: block;
  }

  .lead-builder-card .lead-progress-mobile {
    display: none;
  }
}

@media (max-width: 799px) {
  .lead-builder-card .lead-progress {
    display: none;
  }

  .lead-builder-card .lead-progress-mobile-bar {
    display: block;
    margin: 0 1.25rem;
    padding-top: 0.85rem;
  }
}

.section .lead-progress {
  margin-top: 0;
  margin-bottom: 0;
}

.section .lead-progress-mobile {
  margin-top: 0;
  margin-bottom: 0;
}

#lead-plan {
  scroll-margin-top: calc(var(--header-h) + 0.5rem);
}

.lead-builder {
  width: min(920px, 100%);
  margin-inline: auto;
}

.lead-builder > :not(#lead-builder) + #lead-builder {
  margin-top: 1.75rem;
}

.lead-builder > .section-title {
  max-width: none;
}

.lead-builder > .section-lede {
  margin-bottom: 0;
}

.lead-pane {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.28s var(--ease), transform 0.28s var(--ease);
}

.lead-pane.is-leaving {
  opacity: 0;
  transform: translateY(12px);
}

.choice-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

@media (min-width: 700px) {
  .choice-grid {
    grid-template-columns: 1fr 1fr;
  }

  .choice-grid-tight {
    grid-template-columns: 1fr;
    max-width: 28rem;
  }
}

.choice-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  min-height: 10.5rem;
  width: 100%;
  padding: 1.35rem 1.4rem 1.5rem;
  text-align: left;
  font: inherit;
  color: inherit;
  background: rgba(18, 27, 46, 0.85);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition:
    transform 0.28s var(--ease),
    border-color 0.28s var(--ease),
    box-shadow 0.28s var(--ease),
    background 0.28s var(--ease);
}

.choice-card:hover,
.choice-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(30, 107, 255, 0.4);
  outline: none;
}

.choice-card:focus-visible {
  box-shadow: 0 0 0 3px rgba(61, 133, 255, 0.35), var(--shadow);
}

.choice-card strong {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 650;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.choice-card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--mist);
}

.choice-check {
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 50%;
  border: 1.5px solid var(--steel);
  margin-bottom: 0.2rem;
}

.choice-card.is-selected {
  border-color: rgba(30, 107, 255, 0.55);
  background:
    linear-gradient(160deg, rgba(30, 107, 255, 0.18), transparent 55%),
    rgba(18, 27, 46, 0.95);
}

.choice-card.is-selected .choice-check {
  border-color: var(--blue-bright);
  background: var(--blue);
  box-shadow: 0 0 0 4px rgba(30, 107, 255, 0.18);
}

.choice-card.is-pop {
  animation: choice-pop 0.32s var(--ease);
}

@keyframes choice-pop {
  0% { transform: scale(1); }
  45% { transform: scale(1.03); }
  100% { transform: scale(1); }
}

.lead-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.lead-actions .btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.volume-block {
  margin-top: 2rem;
  padding: 1.5rem 1.35rem 1.4rem;
  background: rgba(18, 27, 46, 0.85);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.volume-value {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 8vw, 4.2rem);
  font-weight: 750;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--blue-bright);
}

.volume-label {
  margin: 0.35rem 0 1.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel);
}

.volume-slider-label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.volume-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 10px;
  border-radius: 99px;
  background: linear-gradient(
    to right,
    var(--blue) 0,
    var(--blue) var(--pct, 0%),
    rgba(232, 238, 248, 0.14) var(--pct, 0%),
    rgba(232, 238, 248, 0.14) 100%
  );
  outline: none;
  cursor: pointer;
}

.volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--blue);
  box-shadow: 0 8px 22px rgba(30, 107, 255, 0.45);
  cursor: grab;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.volume-slider::-moz-range-track {
  height: 10px;
  border: 0;
  border-radius: 99px;
  background: rgba(232, 238, 248, 0.14);
}

.volume-slider::-moz-range-thumb {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--blue);
  box-shadow: 0 8px 22px rgba(30, 107, 255, 0.45);
  cursor: grab;
}

.volume-slider:hover::-webkit-slider-thumb,
.volume-slider:focus-visible::-webkit-slider-thumb {
  transform: scale(1.08);
  box-shadow: 0 10px 28px rgba(30, 107, 255, 0.6);
}

.volume-slider:focus-visible {
  box-shadow: 0 0 0 4px rgba(61, 133, 255, 0.28);
}

.volume-ends {
  display: flex;
  justify-content: space-between;
  margin-top: 0.85rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--steel);
}

.volume-estimate {
  margin-top: 1.25rem;
  font-size: 0.95rem;
  color: var(--steel);
}

.volume-estimate strong {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
}

.compiling-pane {
  min-height: 18rem;
}

.compiling-status {
  margin: 1.75rem 0 1.25rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.compiling-dots span {
  display: inline-block;
  animation: compiling-dot 1.1s ease-in-out infinite;
}

.compiling-dots span:nth-child(2) {
  animation-delay: 0.15s;
}

.compiling-dots span:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes compiling-dot {
  0%, 80%, 100% { opacity: 0.2; transform: translateY(0); }
  40% { opacity: 1; transform: translateY(-3px); }
}

.compiling-bar {
  position: relative;
  height: 3px;
  width: min(22rem, 100%);
  background: rgba(232, 238, 248, 0.12);
  border-radius: 99px;
  overflow: hidden;
}

.compiling-bar::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 40%;
  background: var(--blue-bright);
  border-radius: inherit;
  animation: compiling-bar 2.3s var(--ease) forwards;
}

@keyframes compiling-bar {
  from { width: 8%; }
  to { width: 100%; }
}

.plan-summary {
  margin: 2rem 0 0;
  display: grid;
  gap: 1rem;
}

.plan-summary div {
  padding: 1.2rem 1.3rem;
  background: rgba(18, 27, 46, 0.85);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.plan-summary dt {
  margin: 0 0 0.4rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--steel);
}

.plan-summary dd {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.plan-summary ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.35rem;
}

.plan-summary li {
  font-size: 1.05rem;
}

.plan-price {
  margin-top: 1.5rem;
  padding: 1.4rem 1.35rem;
  background:
    linear-gradient(160deg, rgba(30, 107, 255, 0.16), transparent 55%),
    rgba(18, 27, 46, 0.95);
  border: 1px solid rgba(30, 107, 255, 0.35);
  border-radius: 12px;
}

.lead-intake .lead-actions {
  margin-top: 0.5rem;
}

.lead-intake-grid {
  display: grid;
  gap: 0.9rem;
}

@media (min-width: 640px) {
  .lead-intake-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.lead-intake-message textarea {
  min-height: 6rem;
}

.lead-intake em {
  font-style: normal;
  color: var(--steel);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
}

@media (max-width: 640px) {
  .lead-actions {
    flex-direction: column;
  }

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

@media (prefers-reduced-motion: reduce) {
  .lead-pane,
  .choice-card.is-pop,
  .compiling-dots span,
  .compiling-bar::after {
    animation: none;
    transition: none;
  }
}
