/* EverLine: landing shell */
:root {
  --bg: #06080d;
  --bg-elevated: #0e1219;
  --surface: #141a24;
  --surface-hover: #1a222e;
  --text: #f1f3f7;
  --text-muted: #94a0b8;
  --accent: #18cdd4;
  --accent-strong: #12bfc6;
  --accent-warm: #fbbf24;
  --accent-soft: rgba(24, 205, 212, 0.1);
  /* Sky blue for glows, ghost buttons, gradients, addon highlights (not brand word color) */
  --blue-sky: rgb(56, 189, 248);
  --border: rgba(255, 255, 255, 0.07);
  --radius: 16px;
  --radius-sm: 10px;
  --max: 100vw;
  --nav-h: 4.5rem;
  --font: "DM Sans", ui-sans-serif, system-ui, sans-serif;
  --font-display: "Outfit", var(--font);
  /* Same stops/angle as .gradient-text; tuned for nav backgrounds */
  --nav-gradient-tint: linear-gradient(
    120deg,
    rgba(241, 243, 247, 0.08) 0%,
    rgba(24, 205, 212, 0.22) 55%,
    rgba(251, 191, 36, 0.14) 100%
  );
}

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

html {
  scroll-behavior: smooth;
}

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

  .hero-visual {
    animation: none;
  }

  .wave span {
    animation: none;
    opacity: 0.45;
    transform: scaleY(0.55);
  }
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

/* Full-page texture (grid + soft glow). Off = solid `body` background only. */
body::before {
  display: none;
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 100% 80% at 50% -30%, rgba(56, 189, 248, 0.12), transparent 50%),
    radial-gradient(ellipse 60% 40% at 100% 50%, rgba(251, 191, 36, 0.04), transparent 45%),
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 56px 56px, 56px 56px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, black, transparent 75%);
  opacity: 0.85;
}

.wrap {
  position: relative;
  z-index: 1;
  max-width: none;
  margin: 0 auto;
  padding: 0 1.5rem 4rem;
}

/* Nav: full viewport width (gradient stretches with screen); inner padding aligns grid with .wrap column */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  box-sizing: border-box;
  padding-left: max(1.5rem, calc((100vw - var(--max)) / 2 + 1.5rem));
  padding-right: max(1.5rem, calc((100vw - var(--max)) / 2 + 1.5rem));
  padding-top: 0.65rem;
  padding-bottom: 0.65rem;
  min-height: var(--nav-h);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  column-gap: 0.75rem;
  row-gap: 0.65rem;
  border-bottom: 1px solid transparent;
  background:
    var(--nav-gradient-tint),
    rgba(6, 8, 13, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition:
    border-color 0.2s ease,
    background 0.25s ease;
}

.nav-cluster {
  display: flex;
  align-items: center;
  justify-self: start;
  min-width: 0;
}

.site-nav.is-scrolled {
  border-bottom-color: rgba(24, 205, 212, 0.18);
  background:
    linear-gradient(
      120deg,
      rgba(241, 243, 247, 0.1) 0%,
      rgba(24, 205, 212, 0.28) 55%,
      rgba(251, 191, 36, 0.18) 100%
    ),
    rgba(6, 8, 13, 0.86);
}

.nav-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.65rem 1.15rem;
  justify-content: center;
  justify-self: center;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition:
    color 0.2s ease,
    transform 0.2s ease,
    text-shadow 0.2s ease;
  white-space: nowrap;
  display: inline-block;
  transform-origin: center;
}

.nav-links a:hover {
  color: var(--text);
  transform: translateY(-1px) scale(1.03);
  text-shadow: 0 0 16px rgba(56, 189, 248, 0.28);
}

.nav-links a[aria-current="page"] {
  color: var(--text);
  font-weight: 600;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown summary {
  list-style: none;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  white-space: nowrap;
  padding: 0.15rem 0.1rem;
  border-radius: 0.5rem;
  transition:
    color 0.2s ease,
    transform 0.2s ease,
    text-shadow 0.2s ease;
}

.nav-dropdown summary::-webkit-details-marker {
  display: none;
}

.nav-dropdown summary::after {
  content: " ▾";
  font-size: 0.75rem;
}

.nav-dropdown[open] summary,
.nav-dropdown summary:hover {
  color: var(--text);
  transform: translateY(-1px) scale(1.03);
  text-shadow: 0 0 16px rgba(56, 189, 248, 0.28);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.35rem);
  left: 0;
  min-width: 10rem;
  padding: 0.45rem;
  border-radius: 1rem;
  /* Solid card off the nav bar: darker + cooler than the bar’s warm gradient wash */
  border: 1px solid rgba(56, 189, 248, 0.26);
  background:
    radial-gradient(ellipse 130% 85% at 50% -35%, rgba(56, 189, 248, 0.16) 0%, transparent 52%),
    radial-gradient(ellipse 90% 70% at 100% 100%, rgba(24, 205, 212, 0.06) 0%, transparent 45%),
    linear-gradient(180deg, #151b26 0%, #0b0e14 100%);
  backdrop-filter: blur(18px) saturate(1.05);
  -webkit-backdrop-filter: blur(18px) saturate(1.05);
  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(56, 189, 248, 0.12) inset,
    0 1px 0 rgba(255, 255, 255, 0.05) inset;
  z-index: 60;
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.48rem 0.72rem;
  border-radius: 0.8rem;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease,
    color 0.18s ease;
}

.nav-dropdown-menu a .blueprint-word-blue,
.nav-dropdown-menu a .ever-word-blue {
  color: inherit;
  font-weight: inherit;
}

.nav-dropdown-menu a:hover {
  color: var(--text);
  background: rgba(56, 189, 248, 0.1);
  transform: translateY(-1px) scale(1.03);
  box-shadow:
    0 0 0 1px rgba(56, 189, 248, 0.28) inset,
    0 0 18px rgba(56, 189, 248, 0.22);
}

.service-link-icon {
  width: 14px;
  height: 14px;
  vertical-align: -2px;
  margin-right: 0.35rem;
  opacity: 0.95;
}

.services-everline-page .why-us-tabs {
  margin-bottom: 0.85rem;
}

.services-everline-page .service-brand-heading {
  margin: 0 0 0.65rem;
}

.services-everline-page .service-brand-heading .wordmark {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 2.65rem);
  letter-spacing: -0.04em;
  line-height: 1.12;
  padding-bottom: 0.03em;
  background: linear-gradient(
    120deg,
    #f8fafc 0%,
    #a5f3fc 22%,
    var(--accent) 48%,
    var(--accent-strong) 68%,
    #38bdf8 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 2px 24px rgba(34, 211, 238, 0.18));
}

.services-everline-page .service-brand-heading .wordmark .ever-word-blue {
  color: transparent;
}

.services-everline-page .service-brand-logo {
  display: block;
  width: clamp(180px, 32vw, 260px);
  height: auto;
  margin-left: -10px;
}

/* EverLine page: match BluePrint cyan panels, gradients, and depth */
.subpage-head.everline-simple-head {
  text-align: center;
  border-bottom-color: rgba(56, 189, 248, 0.2);
}

.subpage-head.everline-simple-head .subpage-lead {
  max-width: min(40rem, 100%);
  margin-inline: auto;
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  line-height: 1.55;
}

.services-everline-page .why-stat-heading {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: none;
  line-height: 1.25;
  background: linear-gradient(120deg, #f1f5f9 0%, #a5f3fc 32%, var(--accent) 58%, #38bdf8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.services-everline-page .why-stat-heading .ever-word-blue {
  color: transparent;
}

.services-everline-page .why-us-tablist {
  border-color: rgba(56, 189, 248, 0.28);
  background: linear-gradient(165deg, rgba(24, 205, 212, 0.08) 0%, rgba(0, 0, 0, 0.25) 100%);
  box-shadow:
    0 0 0 1px rgba(24, 205, 212, 0.06) inset,
    0 10px 32px rgba(14, 165, 233, 0.1);
}

.services-everline-page .why-us-tab[aria-selected="true"] {
  box-shadow:
    0 0 0 1px rgba(56, 189, 248, 0.35) inset,
    0 4px 20px rgba(14, 165, 233, 0.15);
}

.services-everline-page .why-stat-card {
  border-color: rgba(56, 189, 248, 0.22);
  background: linear-gradient(
    165deg,
    rgba(24, 205, 212, 0.1) 0%,
    rgba(14, 18, 25, 0.72) 42%,
    var(--surface) 100%
  );
  box-shadow:
    0 0 0 1px rgba(24, 205, 212, 0.06) inset,
    0 10px 32px rgba(14, 165, 233, 0.12);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.services-everline-page .why-stat-card:hover {
  border-color: rgba(56, 189, 248, 0.38);
  background: linear-gradient(
    165deg,
    rgba(24, 205, 212, 0.12) 0%,
    rgba(14, 18, 25, 0.65) 40%,
    var(--surface) 100%
  );
  box-shadow:
    0 0 0 1px rgba(125, 211, 252, 0.1) inset,
    0 14px 40px rgba(14, 165, 233, 0.18);
  transform: translateY(-2px);
}

@media (prefers-reduced-motion: reduce) {
  .services-everline-page .why-stat-card:hover {
    transform: none;
  }
}

.services-everline-page .why-us-disclaimer--hero {
  border-color: rgba(56, 189, 248, 0.3);
  background: linear-gradient(165deg, rgba(24, 205, 212, 0.1) 0%, rgba(56, 189, 248, 0.05) 100%);
  box-shadow:
    0 0 0 1px rgba(24, 205, 212, 0.08) inset,
    0 8px 28px rgba(14, 165, 233, 0.1);
}

.services-everline-page .why-compare-table {
  border-color: rgba(56, 189, 248, 0.28);
  box-shadow:
    0 0 0 1px rgba(24, 205, 212, 0.06) inset,
    0 12px 40px rgba(14, 165, 233, 0.12);
  font-size: 0.875rem;
}

.services-everline-page .why-compare-table thead th,
.services-everline-page .why-compare-table tbody th[scope="row"],
.services-everline-page .why-compare-table tbody td {
  padding: 0.55rem 0.75rem;
}

.services-everline-page .everline-sources-wrap {
  max-width: min(44rem, 100%);
  margin-top: 0.75rem;
  padding: 1rem 1.15rem 1.15rem;
  border-radius: var(--radius);
  border: 1px solid rgba(56, 189, 248, 0.28);
  background: linear-gradient(
    165deg,
    rgba(24, 205, 212, 0.09) 0%,
    var(--bg-elevated) 38%,
    var(--surface) 100%
  );
  box-shadow:
    0 0 0 1px rgba(24, 205, 212, 0.08) inset,
    0 12px 36px rgba(14, 165, 233, 0.1);
}

.services-everline-page .everline-sources-summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.35;
  color: var(--text);
  list-style: none;
}

.services-everline-page .everline-sources-summary::marker,
.services-everline-page .everline-sources-summary::-webkit-details-marker {
  display: none;
}

.services-everline-page .everline-sources-summary::after {
  content: "";
  display: inline-block;
  width: 0.45em;
  height: 0.45em;
  margin-left: 0.4em;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(45deg);
  vertical-align: 0.15em;
  opacity: 0.85;
  transition: transform 0.2s ease;
}

.services-everline-page .everline-sources-wrap[open] .everline-sources-summary::after {
  transform: rotate(-135deg);
  vertical-align: 0.05em;
}

.services-everline-page .everline-sources-wrap .why-us-sources-intro {
  margin-top: 0.65rem;
}

.services-everline-page .everline-sources-wrap .why-us-sources-list {
  margin-top: 0.35rem;
}

.services-everline-page .subpage-head.everline-simple-head {
  padding-bottom: 0.85rem;
  margin-bottom: 0.25rem;
}

.services-everline-page .why-us-page .why-stat-section {
  margin-bottom: 1rem;
}

.services-everline-page .why-stat-section .why-stat-intro {
  margin: 0 0 0.7rem;
}

.services-everline-page .why-stat-grid {
  gap: 0.65rem;
}

.services-everline-page .why-stat-card {
  padding: 0.85rem 1rem;
}

.services-everline-page .why-stat-value {
  font-size: 1.55rem;
  margin-bottom: 0.35rem;
}

.services-everline-page .why-us-disclaimer--hero {
  margin-top: 0.65rem;
  padding: 0.6rem 0.8rem;
  font-size: 0.8125rem;
  line-height: 1.45;
}

/* Trial lives inside pricing panel on EverLine */
.services-everline-page .pricing .everline-trial-inline {
  padding-bottom: 1rem;
  margin-bottom: 0.75rem;
  border-bottom: 1px solid rgba(56, 189, 248, 0.22);
  max-width: 42rem;
}

.services-everline-page .pricing .everline-trial-heading {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: var(--text);
}

.services-everline-page .pricing .everline-trial-body p {
  margin: 0 0 0.65rem;
  font-size: 0.9rem;
  line-height: 1.55;
  color: #e2e8f0;
}

.services-everline-page .pricing .everline-trial-body p:last-child {
  margin-bottom: 0;
}

.services-everline-page .pricing .everline-trial-body a:not(.btn) {
  color: #7dd3fc;
  font-weight: 600;
  text-decoration: none;
}

.services-everline-page .pricing .everline-trial-body a:not(.btn):hover {
  text-decoration: underline;
  color: #bae6fd;
}

.services-everline-page .pricing .everline-trial-body strong {
  color: var(--text);
  font-weight: 600;
}

.services-everline-page .pricing.pricing-inner {
  padding: 1.1rem 1rem 1.35rem;
  border-radius: var(--radius);
  border: 1px solid rgba(56, 189, 248, 0.22);
  background: linear-gradient(
    165deg,
    rgba(24, 205, 212, 0.06) 0%,
    var(--bg-elevated) 45%,
    var(--surface) 100%
  );
  box-shadow: 0 12px 40px rgba(14, 165, 233, 0.1);
}

.services-everline-page .faq-section {
  padding: 1.15rem 1.1rem 1.35rem;
  margin-top: 1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(56, 189, 248, 0.22);
  border-top: 1px solid rgba(56, 189, 248, 0.22);
  background: linear-gradient(
    165deg,
    rgba(24, 205, 212, 0.05) 0%,
    var(--bg-elevated) 50%,
    var(--surface) 100%
  );
  box-shadow: 0 12px 40px rgba(14, 165, 233, 0.08);
}

.services-everline-page .faq-section h2 {
  margin-bottom: 0.65rem;
  background: linear-gradient(120deg, #f1f5f9 0%, #a5f3fc 32%, var(--accent) 58%, #38bdf8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.services-everline-page .faq-list {
  gap: 0.75rem;
}

@media (min-width: 1024px) {
  .why-us-page.services-everline-page .why-stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
}

.brand-wordmark .wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.2rem, 3.5vw, 1.45rem);
  letter-spacing: -0.04em;
  color: var(--text);
  line-height: 1;
}

.brand-logo {
  display: block;
  height: 34px;
  width: auto;
  max-width: 220px;
}

/* Accent slice (matches “AI” in the wordmark; reusable in headings) */
.wordmark-ai {
  color: var(--accent);
  font-weight: 700;
}

.blueprint-word-blue {
  color: var(--accent);
  font-weight: 700;
}

.ever-word-blue {
  color: var(--accent);
  font-weight: 700;
}

.brand-wordmark:hover .wordmark {
  color: #fff;
}

.brand-wordmark:hover .wordmark-ai {
  color: var(--accent-strong);
}

/* buttons */
.btn {
  position: relative;
  z-index: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.65rem 1.15rem;
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.22s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.22s ease,
    filter 0.2s ease;
}

.btn:hover {
  z-index: 1;
  transform: translateY(-2.5px) scale(1.02);
}

.btn:active {
  transform: translateY(0) scale(0.98);
  transition-duration: 0.12s;
}

.btn-primary {
  color: #021a24;
  background: linear-gradient(135deg, #5ac8fa 0%, var(--accent) 38%, var(--accent-strong) 72%, #0284c7 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.2) inset,
    0 8px 28px rgba(14, 165, 233, 0.35);
}

.btn-primary:hover {
  filter: brightness(1.06) saturate(1.08);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.22) inset,
    0 14px 40px rgba(14, 165, 233, 0.5),
    0 0 32px rgba(34, 211, 238, 0.35);
}

.btn-ghost {
  color: #bae6fd;
  background: linear-gradient(165deg, rgba(56, 189, 248, 0.16) 0%, rgba(14, 116, 144, 0.12) 100%);
  border-color: rgba(56, 189, 248, 0.38);
  box-shadow: 0 0 0 1px rgba(125, 211, 252, 0.12) inset;
}

.btn-ghost:hover {
  color: #e0f2fe;
  background: linear-gradient(165deg, rgba(56, 189, 248, 0.28) 0%, rgba(8, 145, 178, 0.2) 100%);
  border-color: rgba(125, 211, 252, 0.55);
  box-shadow:
    0 0 0 1px rgba(165, 243, 252, 0.2) inset,
    0 0 0 1px rgba(56, 189, 248, 0.2),
    0 10px 36px rgba(14, 165, 233, 0.25);
}

@media (prefers-reduced-motion: reduce) {
  .btn:hover {
    transform: none;
  }

  .btn:active {
    transform: none;
  }
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-self: end;
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .site-nav {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: auto auto;
  }

  .nav-cluster {
    grid-column: 1;
    grid-row: 1;
  }

  .nav-actions {
    grid-column: 2;
    grid-row: 1;
  }

  .nav-links {
    grid-column: 1 / -1;
    grid-row: 2;
  }
}

/* Hero */
.hero {
  padding: 1.5rem 0 3rem;
}

.hero-content {
  display: grid;
  gap: 2.5rem;
  width: 100%;
  align-items: center;
}

@media (min-width: 880px) {
  .hero {
    padding: 2rem 0 3.5rem;
  }

  .hero-content {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.hero-copy {
  width: 100%;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent-warm);
}

.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
}

.hero h1 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.8vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.gradient-text {
  background: linear-gradient(120deg, var(--text) 0%, var(--accent) 55%, var(--accent-warm) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Solid sky accent for emphasized words (vs gradient-text) */
.accent-text {
  color: var(--accent);
  font-weight: 700;
}

.hero-lead {
  margin: 0 0 1.5rem;
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 38em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1.35rem;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.8rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 999px;
}

/* Hero visual: headline + waveform + quick wins */
.hero-visual {
  position: relative;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  padding: 1.75rem 1.35rem 1.5rem;
  min-height: auto;
  overflow: hidden;
  animation: panel-in 0.8s ease-out both;
}

.hero-visual-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}

.hero-visual-title {
  margin: 0;
  max-width: 16rem;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.4vw, 1.35rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.25;
  color: var(--text);
}

.hero-visual-lead {
  margin: 0;
  max-width: 19rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.hero-visual-list {
  list-style: none;
  margin: 0.25rem 0 0;
  padding: 0;
  width: 100%;
  max-width: 26rem;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: stretch;
  gap: 0.45rem;
}

.hero-visual-list li {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 0.4rem;
  border-radius: var(--radius-sm);
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border);
  font-size: 0.6875rem;
  line-height: 1.35;
  color: var(--text-muted);
  text-align: center;
}

.hero-visual-k {
  font-weight: 700;
  font-size: 0.6875rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
  flex-shrink: 0;
}

.hero-visual-v {
  color: var(--text-muted);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (max-width: 400px) {
  .hero-visual-list {
    flex-wrap: wrap;
    row-gap: 0.5rem;
  }

  .hero-visual-list li {
    flex: 1 1 30%;
    min-width: 5.25rem;
  }
}

@keyframes panel-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 70% at 50% 50%, rgba(56, 189, 248, 0.08), transparent 65%);
  pointer-events: none;
}

.wave {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
  width: 100%;
  max-width: 20rem;
  height: 64px;
  margin: 0.15rem auto 0;
}

.wave span {
  flex: 1;
  border-radius: 4px;
  background: linear-gradient(180deg, var(--accent) 0%, rgba(56, 189, 248, 0.2) 100%);
  opacity: 0.35;
  transform: scaleY(var(--s, 0.3));
  animation: wave 2.4s ease-in-out infinite;
  animation-delay: var(--d, 0ms);
}

.wave span:nth-child(1) {
  --s: 0.45;
  --d: 0ms;
}
.wave span:nth-child(2) {
  --s: 0.75;
  --d: 100ms;
}
.wave span:nth-child(3) {
  --s: 0.55;
  --d: 200ms;
}
.wave span:nth-child(4) {
  --s: 0.9;
  --d: 50ms;
}
.wave span:nth-child(5) {
  --s: 0.4;
  --d: 150ms;
}
.wave span:nth-child(6) {
  --s: 0.7;
  --d: 220ms;
}
.wave span:nth-child(7) {
  --s: 0.5;
  --d: 80ms;
}
.wave span:nth-child(8) {
  --s: 0.85;
  --d: 180ms;
}
.wave span:nth-child(9) {
  --s: 0.38;
  --d: 30ms;
}
.wave span:nth-child(10) {
  --s: 0.65;
  --d: 120ms;
}
.wave span:nth-child(11) {
  --s: 0.52;
  --d: 200ms;
}
.wave span:nth-child(12) {
  --s: 0.78;
  --d: 90ms;
}

@keyframes wave {
  0%,
  100% {
    transform: scaleY(0.25);
    opacity: 0.3;
  }
  50% {
    transform: scaleY(1);
    opacity: 0.95;
  }
}

/* Trust strip */
.trust-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: 1.5rem 0 2.5rem;
  border-top: 1px solid var(--border);
}

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

.trust-item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
}

.trust-item svg {
  flex-shrink: 0;
  color: var(--accent);
  margin-top: 2px;
}

.trust-item h3 {
  margin: 0 0 0.25rem;
  font-size: 0.9375rem;
  font-weight: 700;
  font-family: var(--font-display);
}

.trust-item p {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Capabilities grid */
.section-head {
  margin-bottom: 1.75rem;
}

.section-head h2 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.section-head p {
  margin: 0;
  color: var(--text-muted);
  max-width: 40em;
}

.cap-grid {
  display: grid;
  gap: 1rem;
  padding-bottom: 2.5rem;
}

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

.cap-card {
  padding: 1.35rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.cap-card:hover {
  border-color: rgba(56, 189, 248, 0.25);
  background: var(--surface);
}

.cap-card .icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  background: var(--accent-soft);
  color: var(--accent);
  margin-bottom: 1rem;
}

.cap-card h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.cap-card p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Mission & vision (standalone sections) */
.statement-section {
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
}

.pillar {
  padding: 1.5rem 1.35rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, transparent 100%);
}

.pillar-standalone {
  max-width: 42rem;
}

.pillar h2 {
  margin: 0 0 0.85rem;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
}

.pillar p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9875rem;
}

.pillar strong {
  color: var(--text);
  font-weight: 600;
}

/* Subpages (pricing, mission) */
.subpage-head {
  padding: 1.25rem 0 1.5rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2rem;
}

.subpage-head h1 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.subpage-lead {
  margin: 0;
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 40em;
  line-height: 1.55;
}

.subpage-head .pricing-intro {
  margin-top: 0.35rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.pricing.pricing-inner {
  padding: 0 0 2.5rem;
  border-top: none;
}

.statement-section-first {
  border-top: none;
  padding-top: 0;
}

/* Mission page */
.mission-page {
  --mission-col: min(52rem, 100%);
  --mission-body: #b9c3cf;
  --mission-gutter: 2rem;
}

.mission-page .mission-doc {
  display: grid;
  gap: 1.25rem;
  align-items: start;
  max-width: var(--mission-col);
  margin-inline: auto;
  padding-block: 1.25rem 1.75rem;
  position: relative;
}

.mission-page .mission-doc-mission,
.mission-page .mission-doc-vision {
  text-align: center;
}

.mission-page .mission-doc-mission h1 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.mission-page .mission-doc-mission .mission-lead {
  margin: 0;
  color: var(--text);
  font-size: 1.0625rem;
  line-height: 1.6;
}

.mission-page .mission-part-heading {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--text);
}

.mission-page .mission-doc-vision {
  padding-top: 0;
  border-top: none;
}

.mission-page .mission-doc-vision::before {
  content: '';
  display: block;
  width: min(10rem, 55%);
  margin: 0 auto 1rem;
  border-top: 1px solid var(--border);
}

.mission-page .mission-doc-vision p {
  margin: 0 0 0.6rem;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--text);
}

.mission-page .mission-doc-vision p:last-child {
  margin-bottom: 0;
}

.mission-page .mission-doc-vision strong {
  color: var(--text);
  font-weight: 600;
}

@media (min-width: 800px) {
  .mission-page .mission-doc {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 0;
    row-gap: 0;
  }

  .mission-page .mission-doc::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0.25rem;
    bottom: 0.25rem;
    width: 1px;
    background: var(--border);
    transform: translateX(-0.5px);
    pointer-events: none;
  }

  .mission-page .mission-doc-vision::before {
    display: none;
  }

  .mission-page .mission-doc-mission {
    padding-right: var(--mission-gutter);
  }

  .mission-page .mission-doc-vision {
    margin: 0;
    padding: 0 0 0 var(--mission-gutter);
    border-top: none;
    border-left: none;
  }
}

.principles-section {
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
}

.mission-page .principles-section,
.mission-page .value-prop-card,
.mission-page .mission-cta-inner {
  max-width: var(--mission-col);
  margin-inline: auto;
  width: 100%;
  box-sizing: border-box;
}

.mission-page .principles-section {
  padding-block: 1.5rem;
}

.mission-page .principles-section > p {
  max-width: none;
  margin: 0 0 0.75rem;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--mission-body);
}

.mission-page .value-prop-section {
  display: flex;
  justify-content: center;
  padding-block: 1.5rem;
}

.mission-page .value-prop-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--mission-body);
}

.mission-page .mission-cta {
  margin-top: 0;
  padding-block: 1.5rem 0;
}

.mission-page .mission-cta-inner p {
  margin: 0;
  max-width: 28em;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--mission-body);
}

.mission-page .principles-grid {
  gap: 0.45rem;
}

.principles-section h2 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.principles-section > p {
  margin: 0 0 1.25rem;
  color: var(--text-muted);
  max-width: 40em;
  font-size: 0.9875rem;
}

.principles-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.principle-pill {
  padding: 0.45rem 0.9rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 999px;
}

.value-prop-section {
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
}

.value-prop-card {
  padding: 1.5rem 1.35rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(165deg, var(--bg-elevated) 0%, var(--surface) 100%);
  max-width: 48rem;
}

.value-prop-card h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
}

.value-prop-card p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 0.9875rem;
}

/* Service splash pages (BluePrint + EverLine): cyan glow behind content */
.acrolin-service-splash {
  position: relative;
  isolation: isolate;
  padding-bottom: 2.5rem;
}

.acrolin-service-splash::before {
  content: "";
  position: absolute;
  inset: -0.5rem -1.5rem auto;
  height: min(52vh, 28rem);
  background:
    radial-gradient(ellipse 90% 75% at 50% -15%, rgba(24, 205, 212, 0.22) 0%, transparent 58%),
    radial-gradient(ellipse 55% 45% at 95% 25%, rgba(56, 189, 248, 0.14) 0%, transparent 52%),
    radial-gradient(ellipse 40% 35% at 8% 45%, rgba(2, 132, 199, 0.1) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.acrolin-service-splash > * {
  position: relative;
  z-index: 1;
}

/* Cyan / sky panel vibe on every page that uses the service splash (layout unchanged) */
.acrolin-service-splash .subpage-head:not(.blueprint-simple-head):not(.everline-simple-head) {
  border-bottom-color: rgba(56, 189, 248, 0.22);
}

.acrolin-service-splash .contact {
  border-top-color: rgba(56, 189, 248, 0.18);
}

.acrolin-service-splash .cta-panel {
  border-color: rgba(56, 189, 248, 0.22);
  background: linear-gradient(
    165deg,
    rgba(24, 205, 212, 0.08) 0%,
    var(--surface) 52%,
    var(--bg-elevated) 100%
  );
  box-shadow:
    0 0 0 1px rgba(24, 205, 212, 0.06) inset,
    0 14px 40px rgba(14, 165, 233, 0.1);
}

.home-page.acrolin-service-splash .hero-visual {
  border-color: rgba(56, 189, 248, 0.22);
  background: linear-gradient(
    165deg,
    rgba(24, 205, 212, 0.08) 0%,
    var(--bg-elevated) 48%,
    var(--surface) 100%
  );
  box-shadow:
    0 0 0 1px rgba(24, 205, 212, 0.06) inset,
    0 18px 48px rgba(14, 165, 233, 0.12);
}

.home-page.acrolin-service-splash .hero-visual-list li {
  border-color: rgba(56, 189, 248, 0.16);
}

.home-page.acrolin-service-splash .trust-strip {
  border-top-color: rgba(56, 189, 248, 0.18);
}

.home-page.acrolin-service-splash #services {
  border-top-color: rgba(56, 189, 248, 0.18);
}

.home-page.acrolin-service-splash .home-demo-section {
  border-top-color: rgba(56, 189, 248, 0.18);
}

.home-page.acrolin-service-splash .teaser-card {
  border-color: rgba(56, 189, 248, 0.22);
  background: linear-gradient(
    165deg,
    rgba(24, 205, 212, 0.07) 0%,
    var(--bg-elevated) 55%,
    var(--surface) 100%
  );
  box-shadow:
    0 0 0 1px rgba(24, 205, 212, 0.05) inset,
    0 12px 36px rgba(14, 165, 233, 0.09);
}

.home-page.acrolin-service-splash .teaser-card:hover {
  border-color: rgba(56, 189, 248, 0.38);
}

.home-page.acrolin-service-splash .why {
  border-top-color: rgba(56, 189, 248, 0.18);
}

.home-page.acrolin-service-splash .why-card {
  border-color: rgba(56, 189, 248, 0.24);
  background: linear-gradient(
    135deg,
    rgba(24, 205, 212, 0.09) 0%,
    rgba(56, 189, 248, 0.06) 100%
  );
}

.about-page.acrolin-service-splash .about-purpose .mission-doc-vision::before {
  border-top-color: rgba(56, 189, 248, 0.28);
}

@media (min-width: 800px) {
  .about-page.acrolin-service-splash .about-purpose .mission-doc-vision {
    border-left-color: rgba(56, 189, 248, 0.22);
  }
}

.about-page.acrolin-service-splash .team-card {
  border-color: rgba(56, 189, 248, 0.2);
  background: linear-gradient(165deg, rgba(24, 205, 212, 0.06) 0%, var(--bg-elevated) 52%);
  box-shadow: 0 0 0 1px rgba(24, 205, 212, 0.05) inset;
}

.about-page.acrolin-service-splash .team-card:hover {
  border-color: rgba(56, 189, 248, 0.35);
}

.about-page.acrolin-service-splash .team-photo-slot {
  border: 0;
  background: transparent;
}

.mission-page.acrolin-service-splash .mission-doc {
  border-radius: var(--radius);
  border: 1px solid rgba(56, 189, 248, 0.18);
  background: linear-gradient(165deg, rgba(24, 205, 212, 0.07) 0%, transparent 48%);
  box-shadow:
    0 0 0 1px rgba(24, 205, 212, 0.05) inset,
    0 12px 36px rgba(14, 165, 233, 0.07);
}

.mission-page.acrolin-service-splash .principles-section {
  border-top-color: rgba(56, 189, 248, 0.18);
}

.mission-page.acrolin-service-splash .principle-pill {
  border-color: rgba(56, 189, 248, 0.18);
  background: rgba(24, 205, 212, 0.07);
}

.mission-page.acrolin-service-splash .value-prop-section {
  border-top-color: rgba(56, 189, 248, 0.18);
}

.mission-page.acrolin-service-splash .value-prop-card {
  border-color: rgba(56, 189, 248, 0.22);
  background: linear-gradient(
    165deg,
    rgba(24, 205, 212, 0.09) 0%,
    var(--bg-elevated) 42%,
    var(--surface) 100%
  );
  box-shadow:
    0 0 0 1px rgba(24, 205, 212, 0.06) inset,
    0 12px 36px rgba(14, 165, 233, 0.09);
}

.mission-page.acrolin-service-splash .mission-cta {
  border-top-color: rgba(56, 189, 248, 0.18);
}

.mission-page.acrolin-service-splash .mission-cta-inner {
  border-radius: var(--radius);
  border: 1px solid rgba(56, 189, 248, 0.2);
  background: linear-gradient(165deg, rgba(24, 205, 212, 0.08) 0%, var(--bg-elevated) 65%);
  box-shadow: 0 10px 32px rgba(14, 165, 233, 0.08);
}

.legal-page.acrolin-service-splash .legal-content {
  border-radius: var(--radius);
  border: 1px solid rgba(56, 189, 248, 0.2);
  background: linear-gradient(
    165deg,
    rgba(24, 205, 212, 0.06) 0%,
    var(--bg-elevated) 38%,
    var(--surface) 100%
  );
  box-shadow:
    0 0 0 1px rgba(24, 205, 212, 0.05) inset,
    0 12px 36px rgba(14, 165, 233, 0.08);
}

.acrolin-service-splash:not(.services-everline-page) > .pricing.pricing-inner {
  padding: 1.5rem 1.25rem 2rem;
  border-radius: var(--radius);
  border: 1px solid rgba(56, 189, 248, 0.22);
  background: linear-gradient(
    165deg,
    rgba(24, 205, 212, 0.06) 0%,
    var(--bg-elevated) 45%,
    var(--surface) 100%
  );
  box-shadow: 0 12px 40px rgba(14, 165, 233, 0.1);
}

main.acrolin-service-splash .login-form {
  border-color: rgba(56, 189, 248, 0.28);
  box-shadow:
    0 0 0 1px rgba(24, 205, 212, 0.08) inset,
    0 4px 22px rgba(14, 165, 233, 0.14),
    0 1px 4px rgba(0, 0, 0, 0.05);
}

main.acrolin-service-splash .login-header h1 {
  background: linear-gradient(
    120deg,
    #f8fafc 0%,
    #a5f3fc 26%,
    var(--accent) 58%,
    #38bdf8 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 2px 18px rgba(34, 211, 238, 0.12));
}

.blueprint-simple-head {
  text-align: center;
  padding-bottom: 0.35rem;
  border-bottom-color: rgba(56, 189, 248, 0.2);
}

.acrolin-page-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #7dd3fc;
}

.acrolin-page-eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 14px var(--accent), 0 0 28px rgba(56, 189, 248, 0.45);
}

.subpage-head.blueprint-simple-head h1.blueprint-hero-title {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.65rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.1;
  background: linear-gradient(
    120deg,
    #f8fafc 0%,
    #a5f3fc 22%,
    var(--accent) 48%,
    var(--accent-strong) 68%,
    #38bdf8 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 2px 24px rgba(34, 211, 238, 0.18));
}

.blueprint-simple-head .subpage-lead {
  max-width: min(42rem, 100%);
  margin-inline: auto;
}

.blueprint-compare-section {
  padding: 1.85rem 0 0.35rem;
  border-top: 1px solid transparent;
  border-image: linear-gradient(
      90deg,
      transparent,
      rgba(56, 189, 248, 0.35) 20%,
      rgba(24, 205, 212, 0.45) 50%,
      rgba(56, 189, 248, 0.35) 80%,
      transparent
    )
    1;
  max-width: min(56rem, 100%);
  margin-inline: auto;
}

.blueprint-compare-title {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.4vw, 1.3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-align: center;
  background: linear-gradient(120deg, #f1f5f9 0%, #a5f3fc 35%, var(--accent) 62%, #7dd3fc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.blueprint-compare-lead {
  margin: 0 auto 1.15rem;
  max-width: 38rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.55;
}

.blueprint-compare-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.85rem;
}

@media (min-width: 720px) {
  .blueprint-compare-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 1.35rem;
  }
}

.blueprint-compare-list li {
  margin: 0;
  padding: 1rem 1.15rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(56, 189, 248, 0.22);
  background: linear-gradient(
    165deg,
    rgba(24, 205, 212, 0.1) 0%,
    rgba(14, 18, 25, 0.72) 42%,
    var(--surface) 100%
  );
  box-shadow:
    0 0 0 1px rgba(24, 205, 212, 0.06) inset,
    0 10px 32px rgba(14, 165, 233, 0.12);
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--text-muted);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.blueprint-compare-list li:hover {
  border-color: rgba(56, 189, 248, 0.38);
  box-shadow:
    0 0 0 1px rgba(125, 211, 252, 0.12) inset,
    0 14px 40px rgba(14, 165, 233, 0.2);
  transform: translateY(-2px);
}

@media (prefers-reduced-motion: reduce) {
  .blueprint-compare-list li:hover {
    transform: none;
  }
}

.blueprint-compare-kicker {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: -0.02em;
  background: linear-gradient(90deg, #e0f2fe 0%, var(--accent) 45%, var(--blue-sky) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* BluePrint ballpark pricing (embedded in “Your project” panel) */
.blueprint-pricing-card {
  padding: 1rem 1rem 1.05rem;
  border-radius: var(--radius);
  border: 1px solid rgba(56, 189, 248, 0.22);
  background: linear-gradient(
    165deg,
    rgba(24, 205, 212, 0.08) 0%,
    var(--bg-elevated) 42%,
    var(--surface) 100%
  );
  box-shadow:
    0 0 0 1px rgba(24, 205, 212, 0.06) inset,
    0 12px 36px rgba(14, 165, 233, 0.1);
  max-width: 40rem;
  margin-inline: auto;
  text-align: left;
}

.blueprint-pricing-card--embedded {
  max-width: none;
  margin: 0 0 0.85rem;
  padding: 0.85rem 0.95rem 0.95rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(56, 189, 248, 0.16);
  background: rgba(0, 0, 0, 0.22);
  box-shadow: 0 0 0 1px rgba(24, 205, 212, 0.04) inset;
}

.blueprint-pricing-embed-heading {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #e0f2fe;
}

.blueprint-pricing-fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.blueprint-pricing-fieldset legend {
  padding: 0;
  margin: 0 0 0.45rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.blueprint-base-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0 0 0.55rem;
  margin-bottom: 0.55rem;
  border-bottom: 1px solid rgba(56, 189, 248, 0.15);
}

.blueprint-base-row span:first-of-type {
  font-weight: 600;
  color: var(--text);
  font-size: 0.9375rem;
}

.blueprint-base-row .blueprint-price {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text);
  font-size: 1rem;
}

.blueprint-addon-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.35rem;
}

@media (min-width: 520px) {
  .blueprint-addon-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.35rem 0.5rem;
  }
}

.blueprint-addon {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 0.5rem;
  margin: 0;
  padding: 0.4rem 0.5rem;
  border-radius: var(--radius-sm);
  background: rgba(56, 189, 248, 0.06);
  border: 1px solid rgba(56, 189, 248, 0.14);
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.blueprint-addon:hover {
  background: rgba(56, 189, 248, 0.09);
  border-color: rgba(56, 189, 248, 0.22);
}

.blueprint-addon:focus-within {
  outline: 2px solid rgba(56, 189, 248, 0.45);
  outline-offset: 2px;
}

.blueprint-addon input {
  margin: 0;
  width: 1rem;
  height: 1rem;
  accent-color: var(--accent);
  flex-shrink: 0;
}

.blueprint-addon-row {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.35rem;
}

.blueprint-addon-title {
  font-weight: 600;
  font-size: 0.8125rem;
  color: var(--text);
  line-height: 1.25;
}

.blueprint-addon-price {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8125rem;
  color: var(--blue-sky);
  white-space: nowrap;
}

.blueprint-extra-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 0.65rem;
  margin-top: 0.65rem;
  padding-top: 0.65rem;
  border-top: 1px solid rgba(56, 189, 248, 0.12);
}

.blueprint-extra-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text);
}

.blueprint-extra-row input[type="number"] {
  width: 3.25rem;
  padding: 0.3rem 0.4rem;
  font-size: 0.875rem;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.blueprint-extra-hint {
  flex: 1 1 100%;
  margin: 0;
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.4;
}

@media (min-width: 520px) {
  .blueprint-extra-hint {
    flex: 1 1 auto;
    margin: 0;
  }
}

.blueprint-pricing-totals {
  margin-top: 0.65rem;
  padding-top: 0.65rem;
  border-top: 1px solid rgba(56, 189, 248, 0.2);
}

.blueprint-total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.75rem;
}

.blueprint-total-row span:first-of-type {
  font-weight: 600;
  color: var(--text);
  font-size: 0.9375rem;
}

.blueprint-total-row strong {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--blue-sky);
  letter-spacing: -0.02em;
}

.blueprint-total-detail {
  margin: 0.35rem 0 0;
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.blueprint-inquiry-section {
  padding: 1.85rem 0 2.75rem;
  border-top: 1px solid transparent;
  border-image: linear-gradient(
      90deg,
      transparent,
      rgba(24, 205, 212, 0.3) 25%,
      rgba(56, 189, 248, 0.35) 50%,
      rgba(24, 205, 212, 0.3) 75%,
      transparent
    )
    1;
  max-width: min(56rem, 100%);
  margin-inline: auto;
}

.blueprint-section-title {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.5vw, 1.35rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-align: center;
  background: linear-gradient(120deg, #f1f5f9 0%, #a5f3fc 32%, var(--accent) 58%, #38bdf8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.blueprint-section-subtitle {
  margin: 0 auto 1.5rem;
  max-width: 38rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.55;
}

.blueprint-inquiry-layout {
  display: grid;
  gap: 1.35rem;
  align-items: start;
}

@media (min-width: 880px) {
  .blueprint-inquiry-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.12fr);
    gap: 1.5rem;
  }
}

.blueprint-info-panel,
.blueprint-form-panel {
  padding: 1.35rem 1.35rem;
  border-radius: var(--radius);
  border: 1px solid rgba(56, 189, 248, 0.28);
  background: linear-gradient(
    165deg,
    rgba(24, 205, 212, 0.09) 0%,
    var(--bg-elevated) 35%,
    var(--surface) 100%
  );
  box-shadow:
    0 0 0 1px rgba(24, 205, 212, 0.08) inset,
    0 16px 48px rgba(14, 165, 233, 0.14);
}

.blueprint-panel-heading {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #e0f2fe;
}

.blueprint-panel-heading::after {
  content: "";
  display: block;
  width: 2.5rem;
  height: 2px;
  margin-top: 0.4rem;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--accent), var(--blue-sky));
  opacity: 0.9;
}

.blueprint-panel-heading--spaced {
  margin-top: 1.15rem;
}

.blueprint-info-list {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.55;
}

.blueprint-info-list li {
  margin-bottom: 0.6rem;
}

.blueprint-info-list li:last-child {
  margin-bottom: 0;
}

.blueprint-info-list strong {
  color: #bae6fd;
  font-weight: 600;
}

.blueprint-info-text {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.55;
}

.blueprint-inquiry-intro {
  margin: 0 0 1.1rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.blueprint-calc-cta {
  margin-top: 0.25rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.85rem;
}

.blueprint-calc-cta-text {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 32rem;
}

.blueprint-calc-cta-btn {
  align-self: stretch;
  text-align: center;
  justify-content: center;
}

@media (min-width: 480px) {
  .blueprint-calc-cta-btn {
    align-self: flex-start;
    width: auto;
    min-width: 14rem;
  }
}

.blueprint-inquiry-footnote {
  margin: 1rem 0 0;
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.blueprint-inquiry-footnote strong {
  color: #7dd3fc;
  font-weight: 600;
}

.mission-cta {
  padding: 2rem 0 0;
  border-top: 1px solid var(--border);
  margin-top: 2rem;
}

.mission-cta-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

@media (min-width: 560px) {
  .mission-cta-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.mission-cta-inner p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9375rem;
  max-width: 28em;
}

/* About page */
.about-page .about-head code {
  font-size: 0.85em;
  color: var(--accent);
}

.about-page .about-purpose {
  --mission-gutter: 2rem;
  display: grid;
  gap: 1.25rem;
  align-items: start;
  max-width: min(52rem, 100%);
  margin-inline: auto;
  padding: 0 0 1.5rem;
}

.about-page .about-purpose .mission-part-heading {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--text);
}

.about-page .about-purpose .mission-doc-mission .mission-lead {
  margin: 0;
  color: var(--text);
  font-size: 1.0625rem;
  line-height: 1.6;
}

.about-page .about-purpose .mission-doc-mission,
.about-page .about-purpose .mission-doc-vision {
  text-align: center;
}

.about-page .about-purpose .mission-doc-vision {
  padding-top: 0;
  border-top: none;
}

.about-page .about-purpose .mission-doc-vision::before {
  content: '';
  display: block;
  width: min(10rem, 55%);
  margin: 0 auto 1rem;
  border-top: 1px solid var(--border);
}

.about-page .about-purpose .mission-doc-vision p {
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--text);
}

@media (min-width: 800px) {
  .about-page .about-purpose {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: var(--mission-gutter);
    row-gap: 0;
  }

  .about-page .about-purpose .mission-doc-vision::before {
    display: none;
  }

  .about-page .about-purpose .mission-doc-vision {
    margin: 0;
    padding: 0 0 0 var(--mission-gutter);
    border-top: none;
    border-left: 1px solid var(--border);
  }
}

.team-section {
  padding: 0 0 2rem;
}

.team-grid {
  display: grid;
  gap: 1.25rem;
}

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

.team-card {
  padding: 1.35rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.team-card:hover {
  border-color: rgba(56, 189, 248, 0.2);
  background: var(--surface);
}

.team-photo-slot {
  width: 120px;
  height: 120px;
  margin: 0 0 1rem;
  border-radius: 14px;
  border: 1px dashed var(--border);
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.team-photo-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 13px;
  display: block;
}

/* Anchor crop to top so portrait/headroom (hat, sky) stays in frame */
.team-photo-slot--focus-top img {
  object-position: center top;
}

/* About page founder photos: keep faces framed in 120×120 crop */
.team-photo-slot--focus-face-ty img {
  object-position: center 10%;
  transform: scale(1.6);
  transform-origin: center top;
}

.team-photo-slot--focus-face-cole img {
  object-position: 50% 16%;
  transform: scale(2.2);
  transform-origin: center 20%;
}

.team-photo-placeholder {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  padding: 0.5rem;
  line-height: 1.3;
}

.team-card h2 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.team-role {
  margin: 0 0 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
}

.team-bio p {
  margin: 0 0 0.75rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.team-bio p:last-child {
  margin-bottom: 0;
}

.bio-prompt {
  font-style: italic;
  opacity: 0.95;
}

.team-bio p:not(.bio-prompt) {
  font-style: normal;
  opacity: 1;
}

.about-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
  padding: 2rem 0 0;
  margin-top: 0.5rem;
  border-top: 1px solid var(--border);
}

@media (min-width: 560px) {
  .about-cta {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.about-cta p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9375rem;
  max-width: 28em;
}

/* Why us? page */
.why-us-disclaimer {
  margin: 0 0 1.75rem;
  padding: 1rem 1.15rem;
  max-width: 44em;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--text-muted);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.15);
}

.why-us-disclaimer--hero {
  max-width: none;
  margin-top: 1.75rem;
  margin-bottom: 0;
  padding: 1.15rem 1.35rem;
  font-size: 0.875rem;
  line-height: 1.6;
  border-color: rgba(56, 189, 248, 0.18);
  background: rgba(56, 189, 248, 0.06);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2);
}

.why-us-disclaimer strong {
  color: var(--text);
}

/* Why us? Tabs + comparison table */
.why-us-tabs {
  margin-bottom: 2rem;
}

.why-us-tablist {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0 0 1.35rem;
  padding: 0.2rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.2);
  width: fit-content;
  max-width: 100%;
}

.why-us-tab {
  appearance: none;
  margin: 0;
  padding: 0.55rem 1.1rem;
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  background: transparent;
  border: none;
  border-radius: calc(var(--radius-sm) - 4px);
  cursor: pointer;
  transition: color 0.15s ease, background 0.15s ease;
}

.why-us-tab:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.why-us-tab[aria-selected="true"] {
  color: var(--text);
  background: var(--surface);
  box-shadow: 0 0 0 1px rgba(56, 189, 248, 0.2);
}

.why-us-tab:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.why-us-tabpanel[hidden] {
  display: none !important;
}

.why-compare-section {
  margin: 0;
  padding: 0 0 0.25rem;
}

.why-compare-scroll {
  overflow-x: auto;
  margin: 0 -0.25rem;
  padding: 0 0.25rem 0.5rem;
  -webkit-overflow-scrolling: touch;
}

.why-compare-footnote {
  margin: 1.1rem 0 0;
  max-width: 44em;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.why-compare-footnote a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

.why-compare-footnote a:hover {
  text-decoration: underline;
}

.why-compare-table {
  width: 100%;
  min-width: 52rem;
  border-collapse: collapse;
  font-size: 0.9rem;
  line-height: 1.5;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--bg-elevated);
}

.why-compare-table thead th {
  padding: 0.85rem 1rem;
  text-align: left;
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text);
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  vertical-align: bottom;
}

.why-compare-table thead th.why-compare-col-us {
  color: var(--accent);
  background: rgba(56, 189, 248, 0.08);
  box-shadow: inset 0 0 0 1px rgba(56, 189, 248, 0.12);
}

.why-compare-table tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.025);
}

.why-compare-table tbody tr:nth-child(even) td.why-compare-us {
  background: rgba(56, 189, 248, 0.06);
}

.why-compare-table tbody tr:nth-child(odd) td.why-compare-us {
  background: rgba(56, 189, 248, 0.04);
}

.why-compare-table tbody th[scope="row"] {
  width: 11rem;
  padding: 0.85rem 1rem;
  text-align: left;
  font-weight: 700;
  color: var(--text);
  border-top: 1px solid var(--border);
  vertical-align: top;
}

.why-compare-table tbody td {
  padding: 0.85rem 1rem;
  border-top: 1px solid var(--border);
  vertical-align: top;
  max-width: 22rem;
}

.why-compare-table tbody td.why-compare-muted {
  color: var(--text-muted);
}

.why-compare-table tbody td.why-compare-muted strong {
  color: var(--text-muted);
  font-weight: 600;
}

.why-compare-table tbody td.why-compare-us {
  color: var(--text);
  border-left: 1px solid rgba(56, 189, 248, 0.15);
  box-shadow: inset 3px 0 0 rgba(56, 189, 248, 0.35);
}

.why-compare-table tbody td.why-compare-us strong {
  color: var(--text);
  font-weight: 600;
}

.why-compare-table tbody td.why-compare-us a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

.why-compare-table tbody td.why-compare-us a:hover {
  text-decoration: underline;
}

@media (max-width: 640px) {
  .why-compare-table tbody th[scope="row"] {
    width: 8.5rem;
    font-size: 0.82rem;
  }

  .why-compare-table tbody td {
    font-size: 0.85rem;
  }
}

.why-stat-heading {
  margin: 0 0 1.15rem;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
}

.why-us-page .why-stat-section {
  margin: 0 0 2.5rem;
  padding: 0 0 0.25rem;
}

.why-stat-intro {
  margin: -0.35rem 0 1.25rem;
  max-width: 44em;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.why-us-summary {
  padding: 2rem 0 0.5rem;
  margin-top: 0.25rem;
  border-top: 1px solid var(--border);
  max-width: 44em;
}

.why-us-summary-body p {
  margin: 0 0 1rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.why-us-summary-body p:last-child {
  margin-bottom: 0;
}

.why-us-summary-body strong {
  color: var(--text);
}

.why-us-summary-body a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

.why-us-summary-body a:hover {
  text-decoration: underline;
}

.why-us-sources {
  padding: 2rem 0 0.5rem;
  margin-top: 1.5rem;
  border-top: 1px solid var(--border);
  max-width: 44em;
}

.why-us-sources-intro {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
  max-width: 40em;
}

.why-us-sources-list {
  margin: 0;
  padding-left: 1.25rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.why-us-sources-list a {
  color: var(--accent);
  font-weight: 500;
  text-decoration: none;
}

.why-us-sources-list a:hover {
  text-decoration: underline;
}

.why-stat-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .why-stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.why-stat-card {
  margin: 0;
  padding: 1.25rem 1.2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.why-stat-card:hover {
  border-color: rgba(56, 189, 248, 0.2);
  background: var(--surface);
}

.why-stat-value {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  background: linear-gradient(120deg, #a5f3fc, var(--accent), #67e8f9);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.why-stat-label {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.why-stat-label strong {
  color: var(--text);
}

/* Pricing page extras */
.pricing-intro {
  margin-bottom: 1.75rem;
  max-width: 44em;
}

.pricing-intro p {
  margin: 0 0 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 0.9875rem;
}

.pricing-intro p:last-child {
  margin-bottom: 0;
}

.includes-section {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  margin-top: 0.5rem;
}

.includes-section h2 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.includes-grid {
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 560px) {
  .includes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.include-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.include-item svg {
  flex-shrink: 0;
  color: var(--accent);
  margin-top: 2px;
}

.include-item strong {
  color: var(--text);
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.9375rem;
}

.faq-section {
  padding: 2.5rem 0 0;
  margin-top: 2rem;
  border-top: 1px solid var(--border);
}

.faq-section h2 {
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
}

.faq-list {
  display: grid;
  gap: 1.15rem;
  max-width: 40rem;
}

.faq-item h3 {
  margin: 0 0 0.35rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
}

.faq-item p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Home: demo + About (also used inside .home-demo-section) */
.home-demo-section {
  padding: 2.75rem 0 3rem;
  border-top: 1px solid var(--border);
}

.home-demo-section-head {
  margin-bottom: 1.35rem;
  text-align: center;
}

.home-demo-section-head p {
  margin-left: auto;
  margin-right: auto;
}

.home-demo-card {
  max-width: min(44rem, 100%);
  margin: 0 auto;
  padding: 1.75rem 1.5rem 2rem;
}

.home-demo-card .demo-upload-lead {
  font-size: 1rem;
  text-align: center;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.demo-dropzone--hero {
  min-height: 10.5rem;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 1.75rem 1.25rem;
}

.demo-dropzone--hero .demo-dropzone-title {
  font-size: 1.05rem;
}

.demo-dropzone--hero .demo-dropzone-sub {
  font-size: 0.9rem;
}

.home-demo-card #demo-audio-player {
  max-width: 100%;
}

/* Home: links to about, pricing & mission */
.home-teasers {
  display: grid;
  gap: 1rem;
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
}

@media (min-width: 640px) {
  .home-teasers {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

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

.teaser-card {
  padding: 1.5rem 1.35rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
}

.teaser-card h2 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.teaser-card p {
  margin: 0 0 1.1rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.teaser-card .btn {
  margin: 0;
}

/* Home: audio demo uploader (lives in teaser grid next to About Us) */
.teaser-card--demo .demo-upload-lead {
  margin: 0 0 0.85rem;
}

.teaser-card--demo .visually-hidden + .demo-upload-lead {
  margin-top: 0;
}

.demo-upload-lead {
  margin: 0 0 1rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.demo-dropzone {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1rem;
  border-radius: var(--radius-sm);
  border: 1px dashed rgba(56, 189, 248, 0.35);
  background: rgba(56, 189, 248, 0.05);
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.demo-dropzone:hover,
.demo-dropzone.is-dragging {
  border-color: rgba(56, 189, 248, 0.65);
  background: rgba(56, 189, 248, 0.1);
}

.demo-dropzone input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.demo-dropzone-title {
  color: var(--text);
  font-weight: 600;
}

.demo-dropzone-sub {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.demo-file-name {
  margin: 0.75rem 0 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

#demo-audio-player {
  width: 100%;
  margin-top: 0.75rem;
}

/* Home: Acrolin multi-service layout */
.home-page #services {
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}

.home-page .home-services {
  display: grid;
  gap: 1.25rem;
  padding-bottom: 0.5rem;
}

/* Service teaser titles: signature brand blue */
.home-page .home-services .teaser-card h2 {
  color: var(--accent);
  font-weight: 700;
}

@media (min-width: 720px) {
  .home-page .home-services {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.home-page .why-card-cta {
  margin-top: 1.15rem;
}

/* Pricing */
.pricing {
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
}

.pricing .section-head {
  margin-bottom: 1rem;
}

.pricing-grid {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

@media (min-width: 720px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    align-items: stretch;
  }
}

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

.price-card {
  display: flex;
  flex-direction: column;
  padding: 1.5rem 1.35rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  transition:
    border-color 0.22s ease,
    background 0.22s ease,
    transform 0.26s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.26s ease,
    filter 0.26s ease;
}

.price-card:hover {
  border-color: rgba(255, 255, 255, 0.1);
  background: var(--surface);
}

.price-badge {
  margin: 0 0 0.65rem;
  display: inline-block;
  width: fit-content;
  padding: 0.25rem 0.55rem;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 6px;
}

.price-name {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.price-plan-hook {
  margin: 0 0 1rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* Tier cards: border / wash / title hue matched to metal name */
.price-card-essential,
.price-card-essential-plus,
.price-card-premium,
.price-card-executive {
  position: relative;
  z-index: 0;
  overflow: hidden;
  transform-origin: center center;
}

.price-card-essential::before,
.price-card-essential-plus::before,
.price-card-premium::before,
.price-card-executive::before {
  content: "";
  position: absolute;
  top: 0;
  left: 12%;
  right: 12%;
  height: 2px;
  border-radius: 0 0 6px 6px;
  pointer-events: none;
  transition: filter 0.26s ease, opacity 0.26s ease;
}

.price-card-essential {
  border-color: rgba(180, 83, 9, 0.45);
  background: linear-gradient(165deg, rgba(154, 52, 18, 0.165) 0%, var(--bg-elevated) 58%);
  box-shadow: 0 0 0 1px rgba(217, 119, 6, 0.094) inset;
}

.price-card-essential::before {
  height: 2.35px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(251, 146, 60, 0.53),
    rgba(180, 83, 9, 1),
    rgba(251, 146, 60, 0.53),
    transparent
  );
}

.price-card-essential:hover {
  z-index: 2;
  transform: translateY(-5px) scale(1.035);
  filter: saturate(1.15) brightness(1.05);
  border-color: rgba(251, 146, 60, 0.85);
  background: linear-gradient(165deg, rgba(194, 65, 12, 0.32) 0%, rgba(154, 52, 18, 0.22) 45%, var(--surface) 58%);
  box-shadow:
    0 0 0 1px rgba(251, 146, 60, 0.35) inset,
    0 16px 48px rgba(0, 0, 0, 0.45),
    0 0 36px rgba(234, 88, 12, 0.28);
}

.price-card-essential:hover::before {
  filter: brightness(1.35) saturate(1.2);
}

.price-card-essential .price-name {
  color: #fdba74;
  transition: color 0.22s ease;
}

.price-card-essential:hover .price-name {
  color: #ffedd5;
}

.price-card-essential-plus {
  border-color: rgba(148, 163, 184, 0.47);
  background: linear-gradient(165deg, rgba(100, 116, 139, 0.142) 0%, var(--bg-elevated) 58%);
  box-shadow: 0 0 0 1px rgba(148, 163, 184, 0.118) inset;
}

.price-card-essential-plus::before {
  height: 2.35px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(226, 232, 240, 0.41),
    rgba(203, 213, 225, 1),
    rgba(226, 232, 240, 0.41),
    transparent
  );
}

.price-card-essential-plus:hover {
  z-index: 2;
  transform: translateY(-5px) scale(1.035);
  filter: saturate(1.12) brightness(1.06);
  border-color: rgba(226, 232, 240, 0.88);
  background: linear-gradient(165deg, rgba(100, 116, 139, 0.28) 0%, rgba(71, 85, 105, 0.18) 48%, var(--surface) 58%);
  box-shadow:
    0 0 0 1px rgba(226, 232, 240, 0.22) inset,
    0 16px 48px rgba(0, 0, 0, 0.45),
    0 0 38px rgba(148, 163, 184, 0.35);
}

.price-card-essential-plus:hover::before {
  filter: brightness(1.4) saturate(1.15);
}

.price-card-essential-plus .price-name {
  color: #e2e8f0;
  transition: color 0.22s ease;
}

.price-card-essential-plus:hover .price-name {
  color: #ffffff;
}

.price-card-premium {
  border-color: rgba(234, 179, 8, 0.53);
  background: linear-gradient(165deg, rgba(180, 83, 9, 0.1) 0%, rgba(234, 179, 8, 0.125) 35%, var(--bg-elevated) 65%);
  box-shadow: 0 0 0 1px rgba(234, 179, 8, 0.125) inset;
}

.price-card-premium::before {
  height: 2.5px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(253, 224, 71, 0.625),
    rgba(250, 204, 21, 1),
    rgba(253, 224, 71, 0.625),
    transparent
  );
}

.price-card-premium:hover {
  z-index: 2;
  transform: translateY(-5px) scale(1.035);
  filter: saturate(1.2) brightness(1.06);
  border-color: rgba(250, 204, 21, 0.92);
  background: linear-gradient(165deg, rgba(180, 83, 9, 0.2) 0%, rgba(234, 179, 8, 0.32) 35%, var(--surface) 65%);
  box-shadow:
    0 0 0 1px rgba(253, 224, 71, 0.4) inset,
    0 16px 48px rgba(0, 0, 0, 0.45),
    0 0 40px rgba(234, 179, 8, 0.32);
}

.price-card-premium:hover::before {
  filter: brightness(1.35) saturate(1.25);
}

.price-card-premium .price-name {
  color: #fde047;
  transition: color 0.22s ease;
}

.price-card-premium:hover .price-name {
  color: #fef08a;
}

/* Executive: ice / brilliance (top tier; extra depth + lift) */
.price-card-executive {
  border-color: rgba(103, 232, 249, 0.48);
  background: linear-gradient(
    165deg,
    rgba(165, 243, 252, 0.125) 0%,
    rgba(56, 189, 248, 0.075) 40%,
    var(--bg-elevated) 72%
  );
  box-shadow:
    0 0 0 1px rgba(165, 243, 252, 0.15) inset,
    0 18px 55px rgba(0, 0, 0, 0.48);
}

.price-card-executive::before {
  height: 2.5px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.69),
    rgba(165, 243, 252, 1),
    rgba(255, 255, 255, 0.69),
    transparent
  );
}

.price-card-executive:hover {
  z-index: 2;
  transform: translateY(-6px) scale(1.035);
  filter: saturate(1.18) brightness(1.07);
  border-color: rgba(103, 232, 249, 0.95);
  background: linear-gradient(
    165deg,
    rgba(165, 243, 252, 0.28) 0%,
    rgba(56, 189, 248, 0.16) 40%,
    var(--surface) 72%
  );
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.35) inset,
    0 32px 78px rgba(0, 0, 0, 0.62),
    0 0 64px rgba(34, 211, 238, 0.28),
    0 0 100px rgba(165, 243, 252, 0.12);
}

.price-card-executive:hover::before {
  filter: brightness(1.45) saturate(1.2);
}

.price-badge-executive {
  color: #a5f3fc;
  background: rgba(34, 211, 238, 0.15);
  border: 1px solid rgba(103, 232, 249, 0.44);
  transition: color 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.price-card-executive:hover .price-badge-executive {
  color: #ecfeff;
  background: rgba(34, 211, 238, 0.28);
  border-color: rgba(103, 232, 249, 0.65);
}

.price-card-executive .price-name {
  margin-top: 0;
  color: #f0fdff;
  transition: color 0.22s ease;
}

.price-card-executive:hover .price-name {
  color: #ffffff;
}

.btn-essential {
  color: #fff7ed;
  background: linear-gradient(135deg, #9a3412 0%, #c2410c 45%, #ea580c 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.14) inset,
    0 7px 24px rgba(234, 88, 12, 0.33);
}

.btn-essential:hover {
  filter: brightness(1.08);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.24) inset,
    0 12px 38px rgba(234, 88, 12, 0.52),
    0 0 26px rgba(251, 146, 60, 0.22);
}

.btn-essential-plus {
  color: #f8fafc;
  background: linear-gradient(135deg, #475569 0%, #64748b 48%, #94a3b8 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.17) inset,
    0 7px 24px rgba(71, 85, 105, 0.41);
}

.btn-essential-plus:hover {
  filter: brightness(1.08);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.28) inset,
    0 12px 38px rgba(71, 85, 105, 0.58),
    0 0 26px rgba(148, 163, 184, 0.25);
}

.btn-premium {
  color: #1a0f03;
  background: linear-gradient(135deg, #fde68a 0%, #eab308 42%, #ca8a04 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.28) inset,
    0 8px 28px rgba(202, 138, 4, 0.38);
}

.btn-premium:hover {
  filter: brightness(1.09);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.38) inset,
    0 14px 42px rgba(202, 138, 4, 0.55),
    0 0 28px rgba(234, 179, 8, 0.28);
}

.btn-executive {
  color: #042f2e;
  background: linear-gradient(135deg, #ecfeff 0%, #a5f3fc 38%, #22d3ee 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.44) inset,
    0 8px 28px rgba(34, 211, 238, 0.4);
}

.btn-executive:hover {
  filter: brightness(1.08);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.58) inset,
    0 14px 44px rgba(34, 211, 238, 0.58),
    0 0 32px rgba(103, 232, 249, 0.35);
}

@media (prefers-reduced-motion: reduce) {
  .price-card-essential:hover,
  .price-card-essential-plus:hover,
  .price-card-premium:hover,
  .price-card-executive:hover {
    transform: none;
  }
}

.price-tag {
  margin: 0 0 1.1rem;
  line-height: 1.2;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
}

.price-period {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-muted);
}

.price-features {
  margin: 0 0 1.25rem;
  padding: 0 0 0 1.1rem;
  flex: 1;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.price-features li {
  margin-bottom: 0.4rem;
}

.price-features strong {
  color: var(--text);
}

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

/* EverLine service page: compact CTA under tier features */
.services-everline-page .pricing .price-cta {
  align-self: center;
  width: auto;
  margin-top: auto;
  padding: 0.42rem 0.85rem;
  font-size: 0.8125rem;
  font-weight: 600;
}

.services-everline-page .pricing .price-cta:hover {
  transform: translateY(-1px) scale(1.01);
}

.pricing-footnote {
  margin: 1.25rem 0 0;
  font-size: 0.8125rem;
  color: var(--text-muted);
  max-width: 48em;
  line-height: 1.5;
}

/* Home: sample call audio (calling agent) */
.example-call-audio {
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
}

.example-call-audio .section-head code {
  font-size: 0.85em;
  color: var(--accent);
}

.audio-player-slot {
  max-width: 40rem;
  margin: 0 auto;
  padding: 1.25rem 1.2rem 1.35rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
}

.example-call-player {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0 0 0.75rem;
}

/* Legal pages */
.legal-page {
  padding-bottom: 1.5rem;
}

.legal-summary {
  max-width: 52rem;
  margin: 0 auto 1.5rem;
  padding: 1rem 1.15rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
}

.legal-summary-heading {
  margin: 0 0 0.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
}

.legal-summary p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.legal-summary p + p {
  margin-top: 0.65rem;
}

.legal-content {
  max-width: 52rem;
  margin: 0 auto 1rem;
}

.legal-content h2 {
  margin: 1.5rem 0 0.55rem;
  font-size: 1.05rem;
}

.legal-content p {
  margin: 0 0 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.legal-tabs {
  display: flex;
  gap: 0.8rem;
}

/* Improve native audio bar on WebKit */
.example-call-player::-webkit-media-controls-panel {
  background: var(--surface);
}

.audio-slot-note {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* Why us */
.why {
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
}

.why-card {
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid rgba(251, 191, 36, 0.2);
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.06) 0%, rgba(56, 189, 248, 0.05) 100%);
}

.why-card h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.why-card p {
  margin: 0;
  color: var(--text-muted);
  max-width: 52em;
}

.why-card strong {
  color: var(--text);
}

/* Contact CTA */
.contact {
  padding: 2.5rem 0 1rem;
  border-top: 1px solid var(--border);
}

.cta-panel {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 2rem 1.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
}

@media (min-width: 640px) {
  .cta-panel {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.cta-panel h2 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.cta-panel p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9375rem;
}

.cta-panel-actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  width: 100%;
}

@media (min-width: 640px) {
  .cta-panel-actions {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    width: auto;
    max-width: min(100%, 26rem);
  }
}

.phone-digits {
  font-variant-numeric: tabular-nums;
}

.everline-demo-call {
  margin: -0.35rem 0 1.5rem;
  padding: 0.9rem 1.15rem;
  max-width: 44rem;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--text);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
}

.everline-demo-call a {
  color: var(--accent);
  font-weight: 600;
  white-space: nowrap;
}

.everline-demo-call a:hover {
  color: var(--accent-strong);
}

.everline-demo-call-note {
  color: var(--text-muted);
  font-weight: 400;
}

.services-everline-page .everline-demo-call {
  margin-inline: auto;
  width: min(44rem, 100%);
  border-color: rgba(56, 189, 248, 0.22);
  background: linear-gradient(
    165deg,
    rgba(24, 205, 212, 0.06) 0%,
    var(--surface) 100%
  );
}

/* Client login page */
.client-login-panel {
  padding-bottom: 2.5rem;
}

.client-login-card {
  max-width: 38rem;
  padding: 1.5rem 1.35rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
}

.client-login-card p {
  margin: 0 0 1rem;
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.55;
}

.client-login-card p:last-of-type {
  margin-bottom: 1.25rem;
}

.client-login-card a:not(.btn) {
  color: var(--accent);
  font-weight: 600;
}

.client-login-card a:not(.btn):hover {
  color: var(--accent-strong);
}

/* Footer */
.site-footer {
  margin-top: 2.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.site-footer p {
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
}

.footer-links a:hover {
  color: var(--text);
}

.footer-links a[aria-current="page"] {
  color: var(--accent);
  font-weight: 600;
}
