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

:root {
  --bg: #070b14;
  --fg: #e2e8f0;
  --muted: #94a3b8;
  --card: rgba(15, 23, 42, 0.5);
  --border: rgba(30, 41, 59, 0.85);
  --cyan: #06b6d4;
  --cyan-hover: #22d3ee;
  --violet: #a78bfa;
  --space-section: clamp(4.5rem, 9vw, 7.5rem);
  --space-grid-gap: clamp(1.25rem, 2.5vw, 2.25rem);
  --space-card: clamp(1.5rem, 2.5vw, 2.25rem);
  --content-max: 68rem;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.pilot-notice-dismissed .pilot-notice {
  display: none;
}

.breadcrumbs {
  padding: 0.75rem 0 0;
  font-size: 0.8125rem;
  color: var(--muted);
}

.breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumbs__item:not(:last-child)::after {
  content: "/";
  margin-left: 0.5rem;
  color: rgba(148, 163, 184, 0.45);
  pointer-events: none;
}

.breadcrumbs a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.15s ease;
}

.breadcrumbs a:hover {
  color: var(--cyan);
}

.breadcrumbs__item[aria-current="page"] {
  color: #cbd5e1;
}

.pilot-notice {
  position: relative;
  z-index: 60;
  border-bottom: 1px solid rgba(6, 182, 212, 0.2);
  background: rgba(6, 182, 212, 0.08);
  color: var(--fg);
  font-size: 0.8125rem;
}

.pilot-notice__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1rem;
  padding: 0.625rem clamp(1.5rem, 4vw, 2.5rem);
  text-align: center;
}

.pilot-notice__text {
  margin: 0;
  line-height: 1.45;
  color: var(--muted);
}

.pilot-notice__text strong {
  color: var(--fg);
  font-weight: 600;
}

.pilot-notice__text a {
  color: var(--cyan);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.pilot-notice__text a:hover {
  color: var(--cyan-hover);
}

.pilot-notice__dismiss {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 0.375rem;
  background: rgba(15, 23, 42, 0.6);
  color: var(--muted);
  font-size: 1.125rem;
  line-height: 1;
  cursor: pointer;
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.pilot-notice__dismiss:hover {
  color: var(--fg);
  border-color: rgba(6, 182, 212, 0.35);
  background: rgba(15, 23, 42, 0.85);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(6, 182, 212, 0.08), transparent),
    radial-gradient(ellipse 60% 40% at 100% 100%, rgba(59, 130, 246, 0.05), transparent);
  z-index: 0;
}

@media (prefers-reduced-motion: no-preference) {
  body::before {
    animation: ambient-glow 14s ease-in-out infinite alternate;
  }

  @keyframes ambient-glow {
    0% {
      opacity: 0.75;
      transform: scale(1);
    }
    100% {
      opacity: 1;
      transform: scale(1.03);
    }
  }
}

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

.wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 2.5rem);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--border);
  background: rgba(7, 11, 20, 0.92);
  backdrop-filter: blur(12px);
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.site-header--scrolled {
  background: rgba(7, 11, 20, 0.97);
  border-bottom-color: rgba(6, 182, 212, 0.15);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

@media (max-width: 899px) {
  .site-header .wrap {
    flex-wrap: wrap;
  }

  .site-header .nav--site {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 479px) {
  .site-header .nav--site {
    gap: 0.375rem;
  }

  .site-header .nav-link {
    padding: 0.4rem 0.625rem;
    font-size: 0.75rem;
    min-height: 2.125rem;
  }

  .site-header .nav-quiet,
  .site-header .btn-primary {
    padding: 0.4rem 0.75rem;
    font-size: 0.75rem;
    min-height: 2.125rem;
  }

  .nav-quiet {
    display: none;
  }
}

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

.logo-lockup {
  display: block;
  width: auto;
  height: 2.75rem;
  max-width: min(100%, 15.5rem);
}

.logo--footer {
  flex-direction: column;
  align-items: center;
}

.logo--footer .logo-lockup {
  height: 2.5rem;
  max-width: 14rem;
}

.footer-contact {
  display: block;
  margin-top: 0.375rem;
  font-size: 0.8125rem;
  color: var(--muted);
}

.footer-contact:hover {
  color: var(--cyan);
}

.logo-copyright {
  margin-top: 0.625rem;
  font-size: 0.8125rem;
  font-weight: 400;
  color: #64748b;
  text-align: center;
}

.nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.nav--site {
  justify-content: flex-end;
}

@media (min-width: 900px) {
  .nav--site {
    gap: 0.5rem;
  }
}

.nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.375rem;
  padding: 0.4375rem 0.9375rem;
  border-radius: 0.625rem;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  color: #cbd5e1;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid #334155;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.nav-link:hover {
  color: #ffffff;
  border-color: rgba(6, 182, 212, 0.4);
  background: rgba(30, 41, 59, 0.95);
}

.nav-link--active {
  color: #67e8f9;
  border-color: rgba(6, 182, 212, 0.5);
  background: rgba(8, 51, 68, 0.55);
  box-shadow: 0 0 0 1px rgba(6, 182, 212, 0.12) inset;
}

.nav-link--footer {
  min-height: 2.125rem;
  padding: 0.375rem 0.75rem;
  font-size: 0.8125rem;
  color: #94a3b8;
  background: rgba(15, 23, 42, 0.65);
  border-color: rgba(51, 65, 85, 0.85);
}

.nav-link--footer:hover {
  color: #e2e8f0;
}

.nav-quiet {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 2.375rem;
  padding: 0.4375rem 0.9375rem;
  border-radius: 0.625rem;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  color: #e2e8f0;
  background: rgba(30, 41, 59, 0.75);
  border: 1px solid #475569;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.nav-quiet:hover {
  color: #ffffff;
  border-color: #64748b;
  background: rgba(51, 65, 85, 0.9);
}

.site-header .btn-primary {
  min-height: 2.375rem;
  padding: 0.4375rem 1.0625rem;
  font-size: 0.8125rem;
}

.btn {
  display: inline-block;
  border-radius: 0.75rem;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

@media (prefers-reduced-motion: no-preference) {
  .btn:hover {
    transform: translateY(-2px);
  }

  .btn-primary:hover {
    box-shadow: 0 8px 24px rgba(6, 182, 212, 0.25);
  }
}

.btn-primary {
  background: #0891b2;
  color: white;
}

.btn-primary:hover {
  background: var(--cyan-hover);
}

.btn-secondary {
  border: 1px solid #334155;
  background: rgba(15, 23, 42, 0.6);
  color: #e2e8f0;
}

.btn-secondary:hover {
  border-color: #475569;
  background: rgba(30, 41, 59, 0.8);
}

.btn-ghost {
  color: var(--muted);
  background: transparent;
  border-color: transparent;
}

.btn-ghost:hover {
  color: var(--fg);
  border-color: rgba(51, 65, 85, 0.85);
  background: rgba(15, 23, 42, 0.5);
}

.hero {
  text-align: center;
  padding: clamp(4rem, 10vw, 6.5rem) 0 clamp(5rem, 12vw, 8rem);
}

.hero--split {
  text-align: left;
  padding: clamp(3rem, 8vw, 5rem) 0 clamp(4rem, 9vw, 6rem);
}

.hero--split .wrap {
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}

@media (min-width: 900px) {
  .hero--split .wrap {
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: clamp(2rem, 4vw, 3.5rem);
  }

  .hero--products .wrap {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .hero--products.hero--split .wrap {
    grid-template-columns: minmax(0, 1fr) minmax(22rem, 40rem);
    align-items: center;
  }
}

@media (min-width: 1100px) {
  .hero-products {
    grid-template-columns: 1.4fr auto;
    align-items: end;
    gap: 1rem;
  }
}

@media (max-width: 899px) {
  .hero--split {
    text-align: center;
  }

  .hero--products .hero-products {
    order: -1;
  }

  .hero--products .hero-phone-showcase {
    order: 1;
  }

  .hero--products .hero-cad-showcase {
    order: 2;
  }

  .hero--split .hero-actions,
  .hero--split .pillars {
    align-items: center;
    justify-content: center;
  }

  .hero--split .hero-usps {
    text-align: left;
    max-width: 28rem;
    margin-inline: auto;
  }
}

.hero--split h1,
.hero--split .hero-lead {
  margin-left: 0;
  margin-right: 0;
}

.hero--split .hero-actions {
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.hero--split .pillars {
  justify-content: flex-start;
}

.hero-visual {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(6, 182, 212, 0.22);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    145deg,
    rgba(6, 182, 212, 0.12) 0%,
    transparent 55%
  );
  pointer-events: none;
}

/* Home hero — CAD + MDT product showcase */
.hero-products {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  width: 100%;
  max-width: 100%;
}

@media (min-width: 1100px) {
  .hero-products {
    grid-template-columns: 1.4fr auto;
    align-items: end;
    gap: 1rem;
  }
}

.hero-cad-showcase,
.hero-phone-showcase {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
  padding: 0;
  flex-shrink: 0;
}

.hero-phone-showcase {
  width: 100%;
  max-width: 16rem;
}

.hero-phone-showcase .browser-frame--phone {
  width: 100%;
  max-width: 16rem;
  margin: 0;
}

.hero-phone-showcase .browser-viewport img {
  width: 100%;
  height: auto;
}

.hero-cad-showcase {
  width: 100%;
}

.hero-cad-frame {
  width: 100%;
  max-width: 100%;
  border-radius: 0.875rem;
  overflow: hidden;
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(6, 182, 212, 0.18);
}

.hero-cad-frame .browser-viewport img {
  width: 100%;
  height: auto;
}

.hero-product-label {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin: 0 0 0.75rem;
  font-family: ui-monospace, "Cascadia Code", monospace;
  font-size: 0.6875rem;
  line-height: 1.3;
  color: #94a3b8;
}

.hero-product-badge {
  display: inline-block;
  padding: 0.2rem 0.5rem;
  border-radius: 0.375rem;
  background: rgba(6, 182, 212, 0.18);
  color: #67e8f9;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.hero-product-badge--mdt {
  background: rgba(248, 113, 113, 0.14);
  color: #fca5a5;
}

.hero-product-cards {
  display: grid;
  gap: 1rem;
  margin-top: 1.75rem;
}

@media (min-width: 600px) {
  .hero-product-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.hero-product-card {
  padding: 1rem 1.125rem;
  border-radius: 0.875rem;
  border: 1px solid rgba(51, 65, 85, 0.9);
  background: rgba(15, 23, 42, 0.65);
  text-align: left;
}

.hero-product-name {
  margin: 0.5rem 0 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
}

.hero-product-card p {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.5;
}

.hero-product-link {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--cyan);
  text-decoration: none;
}

.hero-product-link:hover {
  color: var(--cyan-hover);
}

.hero-usps {
  margin: 1.75rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  text-align: left;
}

.hero-usps li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--muted);
}

.hero-usps strong {
  color: var(--fg);
  font-weight: 600;
}

.hero-usp-icon {
  flex-shrink: 0;
  width: 1.375rem;
  text-align: center;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--cyan);
}

.product-duo {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  display: grid;
  gap: var(--space-grid-gap);
}

@media (min-width: 768px) {
  .product-duo {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.product-duo-card {
  padding: 1.5rem 1.625rem;
  border-radius: 1rem;
  border: 1px solid rgba(51, 65, 85, 0.95);
  background: rgba(15, 23, 42, 0.78);
  text-align: left;
}

.product-duo-card h3 {
  margin: 0.75rem 0 0;
  font-size: 1.25rem;
  line-height: 1.35;
}

.product-duo-list {
  margin: 1rem 0 1.5rem;
  padding-left: 1.125rem;
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.product-duo-list li + li {
  margin-top: 0.375rem;
}


@media (max-width: 899px) {
  .hero-phone-showcase {
    margin-inline: auto;
  }

  .hero-cad-showcase {
    width: min(100%, 28rem);
    margin-inline: auto;
  }
}

.hero-visual img {
  display: block;
  width: 100%;
  max-height: 13.5rem;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

@media (min-width: 900px) {
  .hero-visual img {
    max-height: 15rem;
  }
}

.hero-stat-callout {
  margin: 1.75rem 0 0;
  padding: 1rem 1.125rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(6, 182, 212, 0.28);
  background: rgba(8, 51, 68, 0.35);
  font-size: 0.9375rem;
  line-height: 1.55;
  color: #cbd5e1;
  text-align: left;
}

.hero-stat-callout strong {
  color: #67e8f9;
  font-weight: 700;
}

.card--photo {
  padding: 0;
  overflow: hidden;
}

.card-photo-wrap {
  position: relative;
  overflow: hidden;
}

.card-photo-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 35%,
    rgba(7, 11, 20, 0.88) 100%
  );
  pointer-events: none;
}

.card-photo {
  display: block;
  width: 100%;
  max-height: 7.25rem;
  aspect-ratio: 21 / 9;
  object-fit: cover;
  transition: transform 0.5s ease;
}

@media (prefers-reduced-motion: no-preference) {
  .card--photo:hover .card-photo {
    transform: scale(1.04);
  }
}

.card--photo .card-body {
  padding: 1rem 1.125rem 1.25rem;
  margin-top: -1.5rem;
  position: relative;
  z-index: 1;
}

.sector-stat {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #67e8f9;
  line-height: 1.35;
}

.sector-try {
  margin: 0.75rem 0 0;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--fg);
}

.stat-grid {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  display: grid;
  gap: var(--space-grid-gap);
}

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

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

.stat-card {
  padding: 1.25rem 1.375rem;
  border-radius: 1rem;
  border: 1px solid rgba(51, 65, 85, 0.95);
  background: rgba(15, 23, 42, 0.78);
}

.stat-value {
  margin: 0;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  line-height: 1.1;
  color: #67e8f9;
}

.stat-label {
  margin: 0.375rem 0 0;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--fg);
}

.stat-context {
  margin: 0.75rem 0 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--muted);
}

.stat-source {
  margin: 0.875rem 0 0;
  font-size: 0.6875rem;
  line-height: 1.4;
  color: #64748b;
}

.stat-source a {
  color: #64748b;
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.stat-source a:hover {
  color: var(--cyan);
}

.sources-note {
  margin: 2.5rem auto 0;
  max-width: 48rem;
  text-align: center;
  font-size: 0.75rem;
  line-height: 1.55;
  color: #64748b;
}

.sources-note a {
  color: #94a3b8;
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.card--photo .card-body h3 {
  margin: 0;
}

.card--photo .card-body p {
  margin: 0.75rem 0 0;
}

.card--photo .card-icon {
  display: none;
}

.visual-banner {
  position: relative;
  display: flex;
  align-items: center;
  min-height: clamp(9rem, 20vw, 12rem);
  padding: clamp(2rem, 5vw, 3rem) 0;
  background-color: #020617;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.visual-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(7, 11, 20, 0.94) 0%,
    rgba(7, 11, 20, 0.72) 50%,
    rgba(7, 11, 20, 0.45) 100%
  );
}

.visual-banner .wrap {
  position: relative;
  z-index: 1;
}

.visual-banner h2 {
  margin: 0;
  text-align: left;
  max-width: 32rem;
}

.visual-banner p {
  margin: 1rem 0 0;
  max-width: 36rem;
  text-align: left;
  color: #cbd5e1;
  line-height: 1.65;
}

.split-visual {
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
  margin-top: clamp(2.5rem, 5vw, 4rem);
}

@media (min-width: 900px) {
  .split-visual {
    grid-template-columns: 1fr 1fr;
  }
}

.split-visual__media {
  border-radius: 1.125rem;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

.split-visual__media img {
  display: block;
  width: 100%;
  max-height: 11rem;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.split-visual__copy h3 {
  margin: 0;
  font-size: 1.375rem;
}

.split-visual__copy p {
  margin: 1rem 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.photo-grid {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  display: grid;
  gap: var(--space-grid-gap);
}

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

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

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(6, 182, 212, 0.9);
}

.hero h1 {
  margin: 1.5rem auto 0;
  max-width: 46rem;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.2;
  font-weight: 700;
}

.hero-lead {
  margin: 2rem auto 0;
  max-width: 38rem;
  color: var(--muted);
  font-size: 1.125rem;
  line-height: 1.65;
}

.hero-actions {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.pillars {
  margin: 4rem auto 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.75rem 1.5rem;
  max-width: 52rem;
  font-size: 0.875rem;
  color: #94a3b8;
}

.pillars li {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}

.pillar-icon {
  font-size: 1rem;
  line-height: 1;
}

.section {
  padding: var(--space-section) 0;
}

.section-bordered {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(2, 6, 23, 0.45);
}

.section-highlight {
  border-top: 1px solid rgba(6, 182, 212, 0.25);
  border-bottom: 1px solid rgba(6, 182, 212, 0.25);
  background: linear-gradient(
    180deg,
    rgba(8, 51, 68, 0.35) 0%,
    rgba(2, 6, 23, 0.55) 100%
  );
}

.section-highlight .hero-eyebrow {
  text-align: center;
}

.resilience-how {
  margin-top: clamp(2rem, 4vw, 3rem);
}

.resilience-note {
  margin: 2.5rem auto 0;
  max-width: 42rem;
  text-align: center;
  font-size: 0.75rem;
  line-height: 1.5;
  color: #64748b;
}

.section h2 {
  margin: 0;
  font-size: clamp(1.625rem, 3.5vw, 2.25rem);
  line-height: 1.25;
  text-align: center;
}

.section-intro {
  margin: 1.25rem auto 0;
  max-width: 34rem;
  text-align: center;
  color: var(--muted);
  font-size: 1.0625rem;
  line-height: 1.65;
}

.grid-2 {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  display: grid;
  gap: var(--space-grid-gap);
  align-items: stretch;
}

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

.grid-3 {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  display: grid;
  gap: var(--space-grid-gap);
  align-items: stretch;
}

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

.grid-4 {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  display: grid;
  gap: var(--space-grid-gap);
  align-items: stretch;
}

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

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

  .grid-3 > :last-child:nth-child(3n + 1):not(:only-child),
  .grid-4 > :last-child:nth-child(3n + 1):not(:only-child) {
    grid-column: 2;
  }
}

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

  .grid-4.grid-4--quad > :last-child:nth-child(3n + 1):not(:only-child) {
    grid-column: auto;
  }
}

.card {
  height: 100%;
  border: 1px solid rgba(51, 65, 85, 0.95);
  border-radius: 1.125rem;
  background: rgba(15, 23, 42, 0.72);
  padding: var(--space-card);
  transition:
    border-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

@media (prefers-reduced-motion: no-preference) {
  .card:hover {
    border-color: rgba(6, 182, 212, 0.35);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
  }
}

.card--icon {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card--icon p {
  flex: 1;
}

.card-icon {
  display: block;
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 1rem;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.card h3 {
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.35;
}

.card--icon h3 {
  margin-top: 0.25rem;
}

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

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

.card--step {
  position: relative;
}

.card--step .step-num {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
}

.step-num {
  display: inline-grid;
  place-items: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 0.5rem;
  background: rgba(139, 92, 246, 0.15);
  color: var(--violet);
  font-size: 0.75rem;
  font-weight: 700;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.compare-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.compare-label {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(6, 182, 212, 0.85);
}

.compare-card h3 {
  margin-top: 0.375rem;
}

.compare-points {
  margin: 0.5rem 0 0;
  padding-left: 1.125rem;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--muted);
}

.compare-points li {
  margin-top: 0.25rem;
}

.compare-points li:first-child {
  margin-top: 0;
}

.compare-outcome {
  margin-top: auto !important;
  padding-top: 0.875rem;
  border-top: 1px solid var(--border);
  font-size: 0.8125rem !important;
  line-height: 1.45;
  color: var(--fg) !important;
}

.cta-box h2 {
  text-align: center;
}

.cta-box {
  max-width: 42rem;
  margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 3.5rem) clamp(1.75rem, 4vw, 3rem);
  text-align: center;
  border-radius: 1.5rem;
  border: 1px solid rgba(6, 182, 212, 0.2);
  background: linear-gradient(
    135deg,
    rgba(8, 51, 68, 0.45),
    rgba(15, 23, 42, 0.85) 50%,
    rgba(46, 16, 101, 0.35)
  );
}

.cta-box p {
  color: var(--muted);
  max-width: 32rem;
  margin: 1.25rem auto 0;
  line-height: 1.65;
}

.cta-actions {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  margin-top: 1rem;
}

.site-footer .wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.8125rem;
  color: #64748b;
}

.site-footer .nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.75rem 1rem;
}

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

  .nav-link {
    font-size: 0.875rem;
  }

  .site-header .btn-primary {
    font-size: 0.875rem;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: row;
    justify-content: center;
  }

  .site-footer .wrap {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .site-footer .nav {
    justify-content: flex-end;
    max-width: 58%;
  }
}

/* Screenshots gallery */
.screenshot-grid {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: stretch;
}

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

  .screenshot-wide {
    grid-column: 1 / -1;
  }
}

.screenshot-card {
  display: flex;
  flex-direction: column;
  margin: 0;
  height: 100%;
}

.screenshot-card figcaption {
  flex: 1;
  margin-top: 1.25rem;
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.6;
  text-align: center;
}

.screenshot-card figcaption strong {
  color: var(--fg);
  font-weight: 600;
}

.browser-frame {
  border: 1px solid var(--border);
  border-radius: 1rem;
  overflow: hidden;
  background: #0f172a;
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.03) inset;
}

.browser-chrome {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 1rem;
  background: #1e293b;
  border-bottom: 1px solid #334155;
}

.browser-dot {
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  background: #475569;
}

.browser-dot:nth-child(1) {
  background: #ef4444;
}

.browser-dot:nth-child(2) {
  background: #f59e0b;
}

.browser-dot:nth-child(3) {
  background: #22c55e;
}

.browser-url {
  margin-left: 0.5rem;
  flex: 1;
  padding: 0.25rem 0.75rem;
  border-radius: 0.375rem;
  background: #0f172a;
  color: #64748b;
  font-size: 0.6875rem;
  font-family: ui-monospace, "Cascadia Code", monospace;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.browser-viewport {
  background: #070b14;
  line-height: 0;
}

.browser-viewport img {
  display: block;
  width: 100%;
  height: auto;
}

.browser-frame--phone {
  max-width: 16rem;
  margin: 0 auto;
}

.browser-chrome--phone {
  justify-content: center;
}

.browser-chrome--phone .browser-url {
  display: none;
}

/* Compact hero (inner pages) */
.hero--compact {
  padding: clamp(3.5rem, 8vw, 5.5rem) 0 clamp(4rem, 9vw, 6rem);
}

.hero--compact h1 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
}

/* Pricing */
.pricing-hero {
  text-align: inherit;
}

.pricing-hero-tagline {
  margin: 1rem auto 0;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(6, 182, 212, 0.35);
  border-radius: 999px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--cyan);
}

.pricing-hero-tagline-icon {
  font-size: 0.75rem;
}

.pricing-grid {
  align-items: stretch;
  margin-top: 0;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}

.pricing-card--simple {
  text-align: center;
  padding: clamp(2rem, 4vw, 2.75rem) clamp(1.5rem, 3vw, 2.25rem);
}

.pricing-card--featured {
  border-color: rgba(6, 182, 212, 0.45);
  background: linear-gradient(
    180deg,
    rgba(8, 51, 68, 0.35),
    rgba(15, 23, 42, 0.5)
  );
}

.pricing-card-icon {
  display: block;
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 1rem;
}

.pricing-card--simple h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--fg);
}

.pricing-amount {
  margin: 1rem 0 0;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  line-height: 1.1;
  color: var(--fg);
}

.pricing-amount strong {
  color: var(--cyan);
  font-weight: 700;
}

.pricing-period {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
}

.pricing-oneliner {
  margin: 0.75rem 0 0;
  flex: 1;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--muted);
}

.pricing-cta {
  margin-top: 1.5rem;
  text-align: center;
  width: 100%;
}

.pricing-footnote {
  margin: 1.5rem auto 0;
  max-width: 36rem;
  text-align: center;
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.6;
}

.pricing-footnote a {
  color: var(--cyan);
}

.pricing-included {
  margin-top: 2rem;
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: var(--card);
  overflow: hidden;
}

.pricing-included summary {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

.pricing-included summary::-webkit-details-marker {
  display: none;
}

.pricing-included-icon {
  font-size: 1.25rem;
}

.pricing-included summary .faq-chevron {
  margin-left: auto;
}

.pricing-included[open] {
  border-color: rgba(6, 182, 212, 0.35);
}

.pricing-included[open] .faq-chevron {
  transform: rotate(-135deg);
  margin-top: 0.2rem;
  border-color: var(--cyan);
}

.pricing-included-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem 1rem;
  margin: 0;
  padding: 0 1.25rem 1rem;
  list-style: none;
  font-size: 0.875rem;
  color: var(--muted);
  justify-items: start;
}

@media (min-width: 640px) {
  .pricing-included-list {
    grid-template-columns: repeat(5, 1fr);
    justify-items: center;
  }
}

.pricing-included-list li {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.pricing-included-note {
  margin: 0;
  padding: 0.75rem 1.25rem 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.8125rem;
  color: #64748b;
}

.pricing-fineprint {
  margin: 2rem auto 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.625rem;
  max-width: 42rem;
}

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

  .pricing-fineprint li:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: 36rem;
    margin-inline: auto;
  }
}

.pricing-fineprint li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.45;
}

.pricing-fineprint li span:first-child {
  flex-shrink: 0;
  font-size: 1rem;
  line-height: 1.2;
}

.pricing-note {
  margin: 2rem auto 0;
  max-width: 42rem;
  text-align: center;
  font-size: 0.8125rem;
  color: var(--muted);
}

.pricing-note strong {
  color: var(--fg);
}

.module-price--included {
  color: var(--violet) !important;
  font-size: 0.8125rem !important;
  font-weight: 600 !important;
}

.module-grid {
  margin-top: 2rem;
}

.module-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-align: center;
}

.module-card .card-icon {
  margin-bottom: 0.5rem;
}

.module-id {
  margin: 0.25rem 0 0 !important;
  font-family: ui-monospace, "Cascadia Code", monospace;
  font-size: 0.6875rem !important;
  color: #64748b !important;
}

.module-price {
  margin-top: 0.5rem !important;
  font-size: 0.9375rem !important;
  font-weight: 700;
  color: var(--cyan) !important;
}

/* Contact */
.contact-wrap {
  display: grid;
  gap: clamp(2.5rem, 5vw, 4rem);
}

@media (min-width: 900px) {
  .contact-wrap {
    grid-template-columns: 1fr 1.25fr;
    align-items: start;
  }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-email {
  color: var(--cyan);
  font-weight: 600;
}

.contact-email:hover {
  color: var(--cyan-hover);
}

.contact-form {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.contact-form-title {
  margin: 0;
  font-size: 1.25rem;
  text-align: left;
}

.contact-form-intro {
  margin: 0.5rem 0 0;
  font-size: 0.8125rem;
  color: var(--muted);
}

.form-row {
  margin-top: 1.25rem;
}

.form-row--checkbox {
  margin-top: 1rem;
}

.form-label {
  display: block;
  margin-bottom: 0.375rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--fg);
}

.form-input {
  width: 100%;
  padding: 0.625rem 0.875rem;
  border: 1px solid #334155;
  border-radius: 0.625rem;
  background: rgba(15, 23, 42, 0.8);
  color: var(--fg);
  font: inherit;
  font-size: 0.875rem;
  transition: border-color 0.15s;
}

.form-input:focus {
  outline: none;
  border-color: rgba(6, 182, 212, 0.5);
}

.form-input::placeholder {
  color: #64748b;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2394a3b8' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.875rem center;
  padding-right: 2.25rem;
}

.form-textarea {
  resize: vertical;
  min-height: 7rem;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: var(--muted);
  cursor: pointer;
}

.form-checkbox input {
  margin-top: 0.2rem;
  accent-color: var(--cyan);
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-notice {
  margin: 0 0 1rem;
  padding: 0.75rem 1rem;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--text-muted);
  background: rgba(6, 182, 212, 0.06);
  border: 1px solid var(--border);
  border-left: 3px solid var(--cyan-dim);
  border-radius: 0.5rem;
}

.form-notice a {
  color: var(--cyan);
}

.form-optional {
  font-weight: 400;
  color: var(--text-muted);
  font-size: 0.85em;
}

.contact-wrap--single {
  max-width: 40rem;
  margin: 0 auto;
}

.form-status {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 0.625rem;
  font-size: 0.875rem;
  line-height: 1.5;
}

.form-status--success {
  background: rgba(6, 182, 212, 0.12);
  border: 1px solid rgba(6, 182, 212, 0.35);
  color: var(--cyan-hover);
}

.form-status--error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.35);
  color: #fca5a5;
}

.form-actions {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 480px) {
  .form-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.site-footer .nav a:not([class]) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.125rem;
  padding: 0.375rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #94a3b8;
  background: rgba(15, 23, 42, 0.65);
  border: 1px solid rgba(51, 65, 85, 0.85);
  transition:
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.site-footer .nav a:not([class]):hover {
  color: #e2e8f0;
  border-color: rgba(6, 182, 212, 0.35);
  background: rgba(30, 41, 59, 0.85);
}

/* FAQ page — section headings & intro */
.page-faq .section {
  padding-top: clamp(3.5rem, 7vw, 5.5rem);
  padding-bottom: clamp(3.5rem, 7vw, 5.5rem);
}

.page-faq .section h2 {
  font-size: clamp(1.625rem, 3.5vw, 2.25rem);
}

.page-faq .section-intro {
  margin-top: 0.875rem;
  max-width: 40rem;
  font-size: 1.0625rem;
  line-height: 1.6;
}

.page-faq .hero-lead {
  font-size: 1.125rem;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .page-faq .section-intro {
    font-size: 1.125rem;
  }

  .page-faq .hero-lead {
    font-size: 1.1875rem;
  }
}

/* FAQ accordion */
.faq-list {
  max-width: 44rem;
  margin: clamp(3rem, 6vw, 4.5rem) auto 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 1.125rem;
  background: var(--card);
  overflow: hidden;
  transition: border-color 0.15s;
}

.faq-item:hover {
  border-color: rgba(6, 182, 212, 0.25);
}

.faq-item[open] {
  border-color: rgba(6, 182, 212, 0.35);
}

.faq-item summary {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.375rem 1.5rem;
  min-height: 3.25rem;
  cursor: pointer;
  list-style: none;
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--fg);
}

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

.faq-icon {
  flex-shrink: 0;
  font-size: 1.5rem;
  line-height: 1;
}

.faq-question {
  flex: 1;
}

.faq-chevron {
  flex-shrink: 0;
  width: 0.625rem;
  height: 0.625rem;
  border-right: 2.5px solid var(--muted);
  border-bottom: 2.5px solid var(--muted);
  transform: rotate(45deg);
  margin-top: -0.2rem;
  transition: transform 0.15s, border-color 0.15s;
}

.faq-item[open] .faq-chevron {
  transform: rotate(-135deg);
  margin-top: 0.2rem;
  border-color: var(--cyan);
}

.faq-answer {
  padding: 0 1.5rem 1.5rem 4rem;
}

.faq-answer p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--muted);
}

.faq-answer p + p {
  margin-top: 0.875rem;
}

@media (min-width: 768px) {
  .faq-list {
    gap: 1.125rem;
    margin-top: 3.25rem;
  }

  .faq-item summary {
    padding: 1.5rem 1.75rem;
    font-size: 1.125rem;
    line-height: 1.5;
  }

  .faq-icon {
    font-size: 1.625rem;
  }

  .faq-answer {
    padding: 0 1.75rem 1.75rem 4.375rem;
  }

  .faq-answer p {
    font-size: 1.0625rem;
    line-height: 1.7;
  }
}

.faq-answer a {
  color: var(--cyan);
  font-weight: 600;
}

.faq-answer a:hover {
  color: var(--cyan-hover);
}

.faq-answer strong {
  color: var(--fg);
  font-weight: 600;
}

/* About credibility cards */
.about-cred-grid {
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.about-cred-card {
  position: relative;
}

.about-cred-years {
  display: block;
  margin-top: 0.25rem;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--cyan);
}

/* Motion — scroll reveals & hero entrance */
@media (prefers-reduced-motion: no-preference) {
  .motion-hero > * {
    opacity: 0;
    animation: motion-fade-up 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }

  .motion-hero > *:nth-child(1) {
    animation-delay: 0.05s;
  }

  .motion-hero > *:nth-child(2) {
    animation-delay: 0.15s;
  }

  .motion-hero > *:nth-child(3) {
    animation-delay: 0.28s;
  }

  .motion-hero > *:nth-child(4) {
    animation-delay: 0.4s;
  }

  .motion-hero > *:nth-child(5) {
    animation-delay: 0.52s;
  }

  .motion-hero > *:nth-child(6) {
    animation-delay: 0.64s;
  }

  @keyframes motion-fade-up {
    from {
      opacity: 0;
      transform: translateY(1.25rem);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .motion-reveal {
    opacity: 0;
    transform: translateY(1.5rem);
    transition:
      opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--motion-delay, 0s);
  }

  .motion-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .logo-lockup {
    transition: transform 0.3s ease, filter 0.3s ease;
  }

  .logo:hover .logo-lockup {
    transform: scale(1.03);
    filter: drop-shadow(0 0 12px rgba(6, 182, 212, 0.35));
  }

  .nav-link,
  .nav-quiet {
    transition: color 0.2s ease, transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  }

  .nav-link:hover,
  .nav-quiet:hover {
    transform: translateY(-1px);
  }

  .browser-frame {
    transition: transform 0.35s ease, box-shadow 0.35s ease;
  }

  .screenshot-card:hover .browser-frame {
    transform: translateY(-6px);
    box-shadow:
      0 20px 48px rgba(0, 0, 0, 0.45),
      0 0 0 1px rgba(6, 182, 212, 0.12) inset;
  }

  .faq-item {
    transition:
      border-color 0.25s ease,
      transform 0.25s ease,
      box-shadow 0.25s ease;
  }

  .faq-item[open] {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
  }

  .cta-box {
    transition: transform 0.35s ease, box-shadow 0.35s ease;
  }

  .cta-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 48px rgba(6, 182, 212, 0.12);
  }

  .pillar-icon {
    display: inline-block;
    transition: transform 0.3s ease;
  }

  .pillars li:hover .pillar-icon {
    transform: scale(1.15);
  }

  .card:hover .card-icon {
    transform: scale(1.12) rotate(-4deg);
  }

  .hero .hero-eyebrow {
    animation: eyebrow-pulse 5s ease-in-out infinite alternate;
  }

  @keyframes eyebrow-pulse {
    from {
      opacity: 0.82;
      letter-spacing: 0.02em;
    }
    to {
      opacity: 1;
      letter-spacing: 0.06em;
    }
  }

  .faq-item[open] .faq-answer {
    animation: faq-reveal 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  }

  @keyframes faq-reveal {
    from {
      opacity: 0;
      transform: translateY(-0.5rem);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .card--step:hover .step-num {
    transform: scale(1.08);
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.35);
  }
}

/* Responder (MDT) page */
.responder-note {
  margin-top: 1.25rem;
  max-width: 42rem;
  font-size: 0.9375rem;
  color: var(--muted, rgba(148, 163, 184, 0.95));
  border-left: 3px solid rgba(6, 182, 212, 0.45);
  padding-left: 1rem;
}

.responder-steps {
  margin: 0 0 2rem;
  padding-left: 1.25rem;
  display: grid;
  gap: 0.85rem;
  max-width: 40rem;
  line-height: 1.55;
}

.responder-steps li {
  padding-left: 0.35rem;
}

.cta-box--inline {
  margin-top: 1.5rem;
  text-align: left;
}

.cta-box--inline h3 {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
}

.page-responder .hero-phone-showcase.hero-visual {
  align-self: center;
  justify-self: center;
}

/* Legal pages */
.page-legal .hero-lead.legal-meta {
  margin-top: 1rem;
  font-size: 0.9375rem;
  color: var(--muted);
}

.legal-doc {
  max-width: 46rem;
  margin-inline: auto;
  text-align: left;
}

.legal-intro {
  margin: 0 0 1.25rem;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--muted);
}

.legal-intro a {
  color: var(--cyan);
}

.legal-notice {
  margin: 2rem 0;
  padding: 1.25rem 1.375rem;
  border-radius: 0.875rem;
  border: 1px solid rgba(51, 65, 85, 0.9);
  background: rgba(15, 23, 42, 0.65);
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--muted);
}

.legal-notice--prominent {
  margin-top: 0;
  border-color: rgba(245, 158, 11, 0.35);
  background: rgba(120, 53, 15, 0.15);
}

.legal-notice--prominent h2 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  color: #fcd34d;
}

.legal-notice--prominent p {
  margin: 0;
}

.legal-toc {
  margin: 2.5rem 0;
  padding: 1.25rem 1.5rem;
  border-radius: 0.875rem;
  border: 1px solid var(--border);
  background: rgba(2, 6, 23, 0.35);
}

.legal-toc h2 {
  margin: 0 0 0.75rem;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #94a3b8;
}

.legal-toc ol {
  margin: 0;
  padding-left: 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.7;
}

.legal-toc a {
  color: var(--cyan);
  text-decoration: none;
}

.legal-toc a:hover {
  text-decoration: underline;
}

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

.legal-section h2 {
  margin: 0 0 1rem;
  font-size: 1.25rem;
  line-height: 1.35;
  color: var(--fg);
}

.legal-section p,
.legal-section li {
  margin: 0 0 0.875rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--muted);
}

.legal-section ul {
  margin: 0 0 0.875rem;
  padding-left: 1.25rem;
}

.legal-section strong {
  color: var(--fg);
  font-weight: 600;
}

.form-checkbox a {
  color: var(--cyan);
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.form-checkbox a:hover {
  color: var(--cyan-hover);
}
