html {
  overflow-x: hidden;
}

:root {
  color-scheme: light;
  --ink: #0b1220;
  --navy: #0b1f4a;
  --navy-2: #0f2d63;
  --blue: #2563eb;
  --cyan: #22d3ee;
  --mint: #16c79a;
  --slate: #3b4c64;
  --muted: #64748b;
  --surface: #ffffff;
  --surface-2: #f1f5ff;
  --surface-3: #eef2f8;
  --border: #e2e8f0;
  --shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: radial-gradient(1200px 600px at 10% -10%, #e0ebff 0%, #ffffff 55%, #f7f9fe 100%);
  overflow-x: hidden;
}

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

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

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.site-header .container {
  width: min(1380px, 96vw);
}

.promo-banner {
  display: block;
  background: linear-gradient(90deg, #0b1f4a 0%, #123a84 55%, #1f67d2 100%);
  color: #eff6ff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.promo-banner:hover {
  color: #ffffff;
}

.promo-banner__inner {
  min-height: 54px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 0;
}

.promo-banner__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.78);
  white-space: nowrap;
}

.promo-banner__eyebrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, #67e8f9, #f8fafc);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.08);
  animation: promo-blink 1.15s ease-in-out infinite;
}

.promo-banner__title {
  font-family: "Sora", sans-serif;
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.35;
}

.promo-banner__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-weight: 700;
  white-space: nowrap;
  animation: promo-cta-pulse 1.6s ease-in-out infinite;
}

@keyframes promo-blink {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.25;
    transform: scale(0.75);
  }
}

@keyframes promo-cta-pulse {
  0%,
  100% {
    background: rgba(255, 255, 255, 0.14);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.18);
  }
  50% {
    background: rgba(255, 255, 255, 0.24);
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.04);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  transition: box-shadow 0.2s ease, background 0.2s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.header-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem 0;
}

.brand img {
  height: 42px;
  width: auto;
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-links {
  display: flex;
  gap: clamp(0.85rem, 1vw, 1.2rem);
  justify-content: center;
  font-weight: 600;
  color: var(--slate);
  flex: 1;
  align-items: center;
  font-size: 0.94rem;
}

.nav-links a,
.nav-dropdown summary {
  white-space: nowrap;
}

.nav-links a:hover,
.nav-dropdown summary:hover {
  color: var(--blue);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown summary {
  list-style: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

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

.nav-dropdown summary::after {
  content: "▾";
  font-size: 0.75rem;
  transition: transform 0.2s ease;
}

.nav-dropdown[open] summary::after {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.8rem);
  left: 0;
  min-width: 240px;
  display: grid;
  gap: 0.25rem;
  padding: 0.5rem;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.7rem 0.85rem;
  border-radius: 12px;
  color: var(--slate);
}

.nav-dropdown-menu a:hover {
  background: var(--surface-2);
}

.header-actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--border);
  background: white;
  border-radius: 999px;
  padding: 0.5rem 0.85rem;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  align-items: center;
  gap: 0.5rem;
}

.nav-toggle span:first-child {
  width: 18px;
  height: 2px;
  background: currentColor;
  display: block;
  position: relative;
}

.nav-toggle span:first-child::before,
.nav-toggle span:first-child::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: currentColor;
  transition: transform 0.2s ease;
}

.nav-toggle span:first-child::before {
  top: -6px;
}

.nav-toggle span:first-child::after {
  top: 6px;
}

.nav-toggle span:last-child {
  width: auto;
  height: auto;
  background: none;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-header.is-open .nav-toggle span:first-child {
  background: transparent;
}

.site-header.is-open .nav-toggle span:first-child::before {
  transform: translateY(6px) rotate(45deg);
}

.site-header.is-open .nav-toggle span:first-child::after {
  transform: translateY(-6px) rotate(-45deg);
}

.lang-switch {
  display: inline-flex;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.15rem;
}

.lang-btn {
  border: none;
  background: transparent;
  padding: 0.35rem 0.7rem;
  font-weight: 700;
  cursor: pointer;
  color: var(--muted);
  border-radius: 999px;
}

.lang-btn.is-active {
  background: var(--ink);
  color: white;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.65rem 1.2rem;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  font-family: inherit;
  font-size: 0.95rem;
  line-height: 1;
  appearance: none;
  min-height: 44px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
  max-width: 100%;
}

.btn--primary {
  background: linear-gradient(180deg, #234fd2 0%, #142f86 100%);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.25);
}

.btn--ghost {
  border: 1px solid var(--border);
  background: white;
  color: var(--ink);
}

.btn--secondary {
  background: linear-gradient(180deg, #234fd2 0%, #142f86 100%);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.25);
}

.btn--large {
  padding: 0.8rem 1.6rem;
  font-size: 1rem;
}

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

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.hero {
  padding: 5rem 0 3rem;
  background: radial-gradient(900px 420px at 80% -10%, rgba(34, 211, 238, 0.25), transparent 60%);
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3rem;
  align-items: center;
}

.hero-aside {
  display: grid;
  gap: 1.6rem;
  align-items: start;
}

.hero-copy,
.hero-aside,
.hero-trust-main,
.hero-trust-panel,
.slide-copy,
.pillar-card,
.component-card,
.detail-card,
.journey-card,
.deployment-card,
.gallery-caption,
.contact-card > div,
.legal-card,
.legal-aside,
.legal-topbar__actions {
  min-width: 0;
}

.hero-panel .card-link {
  display: inline-flex;
  margin-top: 0.95rem;
}

.hero-copy h1,
.hero-title {
  font-family: "Sora", sans-serif;
  font-size: clamp(2.6rem, 3.4vw, 3.6rem);
  margin: 0.6rem 0 1rem;
}

.hero-title {
  display: grid;
  gap: 0.2rem;
}

.hero-title-static {
  display: block;
}

.hero-rotator {
  display: inline-flex;
  align-items: center;
  min-height: 1.35em;
}

.hero-rotator-text {
  display: inline-block;
  color: var(--navy);
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.18), rgba(37, 99, 235, 0.12));
  border: 1px solid rgba(37, 99, 235, 0.16);
  border-radius: 18px;
  padding: 0.1em 0.32em 0.14em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.hero-rotator-text.is-animating {
  animation: hero-rotator-swap 0.45s ease;
}

@keyframes hero-rotator-swap {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--blue);
}

.lead {
  font-size: 1.1rem;
  color: var(--slate);
}

.hero-trust {
  padding: 0 0 3.4rem;
}

.hero-trust-shell {
  width: min(1440px, calc(100vw - 1.6rem));
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(191, 219, 254, 0.22);
  background: linear-gradient(135deg, rgba(8, 24, 74, 0.99) 0%, rgba(11, 49, 130, 0.97) 54%, rgba(27, 99, 203, 0.95) 100%);
  box-shadow: 0 28px 64px rgba(9, 26, 68, 0.26);
}

.hero-trust-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 54px 54px;
  opacity: 0.26;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.24));
  pointer-events: none;
}

.hero-trust-shell::after {
  content: "";
  position: absolute;
  inset: auto -12% -26% 44%;
  height: 88%;
  background:
    radial-gradient(circle at 14% 28%, rgba(34, 211, 238, 0.22) 0, rgba(34, 211, 238, 0.05) 17%, transparent 18%),
    radial-gradient(circle at 42% 18%, rgba(255, 255, 255, 0.18) 0, rgba(255, 255, 255, 0.03) 14%, transparent 15%),
    radial-gradient(circle at 72% 55%, rgba(56, 189, 248, 0.2) 0, rgba(56, 189, 248, 0.04) 16%, transparent 17%),
    radial-gradient(circle at 86% 22%, rgba(255, 255, 255, 0.12) 0, transparent 24%);
  pointer-events: none;
}

.hero-trust-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: 2rem;
  align-items: stretch;
  padding: clamp(2rem, 4vw, 3.4rem);
}

.hero-trust-main,
.hero-trust-panel {
  color: #f8fbff;
}

.hero-trust-main {
  display: grid;
  align-content: center;
}

.hero-trust-eyebrow {
  color: rgba(226, 236, 255, 0.76);
}

.hero-trust-value {
  display: block;
  margin-top: 0.55rem;
  font-family: "Sora", sans-serif;
  font-size: clamp(3.3rem, 7vw, 5.9rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
  color: white;
}

.hero-trust-body {
  margin: 1rem 0 0;
  max-width: 620px;
  font-size: 1.16rem;
  line-height: 1.78;
  color: rgba(237, 245, 255, 0.92);
}

.trust-points {
  margin-top: 1.9rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.95rem;
}

.trust-point {
  display: grid;
  gap: 0.45rem;
  padding: 1.1rem 1rem 1.05rem;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.trust-point strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  color: white;
}

.trust-point span {
  display: block;
  font-size: 0.92rem;
  line-height: 1.58;
  color: rgba(231, 240, 255, 0.84);
}

.hero-trust-panel {
  display: grid;
  align-content: center;
  gap: 0.95rem;
  padding: clamp(1.55rem, 3vw, 2.35rem);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.hero-trust-panel h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.55rem, 2.2vw, 2.2rem);
  line-height: 1.14;
  color: white;
}

.hero-trust-panel p:not(.hero-trust-eyebrow) {
  margin: 0;
  color: rgba(235, 244, 255, 0.9);
  font-size: 1rem;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.6rem 0 1.8rem;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.metric {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.8rem 0.9rem;
  box-shadow: var(--shadow);
}

.metric-value {
  font-weight: 700;
  color: var(--ink);
}

.metric-label {
  display: block;
  color: var(--muted);
  font-size: 0.85rem;
}

.hero-visual img {
  width: 100%;
  box-sizing: border-box;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.9), rgba(15, 45, 99, 0.92));
  padding: 1.2rem;
}

.portal-showcase {
  padding-top: 1rem;
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fe 100%);
}

.showcase-card {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 1rem;
  box-shadow: var(--shadow);
}

.showcase-card img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  display: block;
}

.section {
  padding: 4rem 0;
}

.section-heading h2 {
  font-family: "Sora", sans-serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin: 0.5rem 0 0.8rem;
}

.section-heading p {
  color: var(--muted);
  max-width: 680px;
}

.suite {
  background: var(--surface-2);
}

.product-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.4rem;
}

.product-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.4rem;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.product-media {
  background: var(--surface-3);
  border-radius: 18px;
  padding: 0.6rem;
  margin-bottom: 1rem;
}

.product-media img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.product-card::after {
  content: "";
  position: absolute;
  inset: auto -30% -40% auto;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.2), transparent 70%);
}

.product-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: white;
  display: grid;
  place-items: center;
  font-weight: 700;
  margin-bottom: 1rem;
}

.product-card h3 {
  margin: 0 0 0.6rem;
  font-family: "Sora", sans-serif;
}

.product-card p {
  color: var(--muted);
  margin-bottom: 1.2rem;
}

.tag {
  display: inline-flex;
  padding: 0.3rem 0.75rem;
  background: var(--surface-2);
  border-radius: 999px;
  font-size: 0.8rem;
  color: var(--navy);
  font-weight: 600;
}

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

.card-link {
  font-weight: 600;
  color: var(--blue);
}

.card-link:hover {
  color: var(--navy);
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.5rem;
  align-items: center;
}

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

.checklist li {
  padding-left: 1.6rem;
  position: relative;
  color: var(--slate);
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--mint);
  font-weight: 700;
}

.platform-panel {
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.panel-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  color: #f8fafc;
}

.panel-card h3 {
  margin-top: 0;
  font-family: "Sora", sans-serif;
}

.panel-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.panel-metrics span {
  background: rgba(255, 255, 255, 0.12);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.85rem;
}

.architecture {
  background: url("assets/architecture-bg.svg") center/cover no-repeat;
  color: #f8fafc;
}

.architecture-card {
  background: rgba(8, 14, 30, 0.78);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  max-width: 720px;
}

.architecture-card p {
  color: #cbd5f5;
}

.architecture-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.architecture-tags span {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  font-size: 0.85rem;
}

.use-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.4rem;
}

.use-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 1.4rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.bundle-strip {
  margin-top: 1.8rem;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.bundle-strip h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
}

.bundle-strip p {
  margin: 0.45rem 0 0;
  color: var(--slate);
  max-width: 640px;
}

.bundle-strip .pill-list {
  margin-top: 0;
}

.locations {
  background: linear-gradient(180deg, #f7f9fe 0%, #ffffff 100%);
}

.location-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.6rem;
}

.location-card {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 1.6rem;
  box-shadow: var(--shadow);
}

.location-card h3 {
  margin-top: 0;
  font-family: "Sora", sans-serif;
}

.location-card p {
  color: var(--slate);
}

.location-phone {
  font-weight: 600;
  color: var(--ink);
  margin-top: 0.5rem;
}

.location-map {
  margin-top: 1rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface-2);
  aspect-ratio: 16 / 9;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.clients {
  background: linear-gradient(180deg, #f7f9fe 0%, #ffffff 100%);
}

.pyramid {
  background: linear-gradient(180deg, #ffffff 0%, #f1f5ff 100%);
}

.pyramid-stack {
  margin-top: 2rem;
  display: grid;
  gap: 0.8rem;
}

.pyramid-tailor {
  margin-top: 1.6rem;
  padding: 1.4rem 1.6rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(37, 99, 235, 0.2);
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(34, 211, 238, 0.14));
  box-shadow: var(--shadow);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  padding-right: clamp(6rem, 14vw, 11rem);
  isolation: isolate;
}

.pyramid-tailor::after {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  width: clamp(7rem, 20vw, 14rem);
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.6) 55%,
    rgba(255, 255, 255, 0.9) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.pyramid-tailor::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: clamp(8rem, 24vw, 16rem);
  background: radial-gradient(
    circle at 70% 50%,
    rgba(255, 255, 255, 0.75) 0%,
    rgba(255, 255, 255, 0.45) 45%,
    rgba(255, 255, 255, 0) 78%
  );
  pointer-events: none;
  z-index: 1;
}

.pyramid-tailor h3 {
  margin: 0 0 0.4rem;
  font-family: "Sora", sans-serif;
}

.pyramid-tailor p {
  margin: 0;
  color: var(--slate);
  max-width: 620px;
}

.pyramid-tailor > * {
  position: relative;
  z-index: 2;
}

.pyramid-tailor-logo {
  position: absolute;
  right: clamp(1rem, 2.2vw, 1.8rem);
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
}

.pyramid-tailor-logo img {
  width: clamp(90px, 12vw, 140px);
  height: auto;
  display: block;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 0 22px rgba(255, 255, 255, 0.9));
  -webkit-mask-image: radial-gradient(circle at 50% 50%, #000 38%, rgba(0, 0, 0, 0.45) 62%, transparent 88%);
  mask-image: radial-gradient(circle at 50% 50%, #000 38%, rgba(0, 0, 0, 0.45) 62%, transparent 88%);
}

.pyramid-tier {
  margin: 0 auto;
  width: var(--tier-width, 100%);
  padding: 0.95rem clamp(1.7rem, 3vw, 2.3rem);
  border-radius: var(--radius-md);
  border: 1px solid rgba(37, 99, 235, 0.2);
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, var(--tone, 0.18)),
    rgba(34, 211, 238, var(--tone-2, 0.24))
  );
  box-shadow: var(--shadow);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.pyramid-tier > div:first-child {
  padding-left: clamp(1rem, 2.2vw, 1.8rem);
  padding-right: clamp(0.3rem, 1vw, 0.7rem);
}

.pyramid-tier h3 {
  margin: 0 0 0.25rem;
  font-family: "Sora", sans-serif;
}

.pyramid-tier p {
  margin: 0;
  color: var(--slate);
  max-width: 560px;
}

.pyramid-chips {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  padding-right: clamp(0.4rem, 1.2vw, 0.9rem);
}

.pyramid-chip {
  background: white;
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.85rem;
  white-space: nowrap;
}

.tier-1 {
  --tier-width: 44%;
  --tone: 0.28;
  --tone-2: 0.32;
}

.tier-2 {
  --tier-width: 58%;
  --tone: 0.24;
  --tone-2: 0.3;
}

.tier-3 {
  --tier-width: 70%;
  --tone: 0.22;
  --tone-2: 0.28;
}

.tier-4 {
  --tier-width: 85%;
  --tone: 0.2;
  --tone-2: 0.26;
}

.tier-5 {
  --tier-width: 100%;
  --tone: 0.18;
  --tone-2: 0.24;
}

@supports (clip-path: polygon(6% 0, 94% 0, 100% 100%, 0 100%)) {
  .pyramid-tier {
    clip-path: polygon(6% 0, 94% 0, 100% 100%, 0 100%);
  }
}

.client-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
}

.client-logo {
  background: white;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.1rem 1rem;
  text-align: center;
  font-weight: 600;
  color: var(--slate);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 72px;
}

.client-logo img {
  max-width: 140px;
  max-height: 36px;
  object-fit: contain;
}

.client-note {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.2;
}

.training {
  background: var(--surface-2);
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.2rem;
}

.pill-list span {
  background: white;
  border: 1px solid var(--border);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--ink);
}

.training-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 1.8rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.training-poster {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  border: 1px solid var(--border);
  background: var(--surface-2);
}

.training-card .btn {
  margin-top: 1rem;
}

.components {
  background: linear-gradient(180deg, #ffffff 0%, #f1f5ff 100%);
}

.component-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.2rem;
}

.component-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.35rem;
  box-shadow: var(--shadow);
  display: grid;
  gap: 0.8rem;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.component-card:hover {
  transform: translateY(-2px);
  border-color: rgba(37, 99, 235, 0.28);
}

.component-card h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
}

.component-card p {
  margin: 0;
  color: var(--muted);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.card {
  background: white;
  border-radius: var(--radius-md);
  padding: 1.4rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.contact-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 2rem;
  background: linear-gradient(135deg, #0b1f4a, #0f2d63);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  color: #f8fafc;
  box-shadow: var(--shadow);
}

.contact-card p {
  color: #cbd5f5;
}

.contact-card .form-note {
  color: #cbd5f5;
}

.contact-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.contact-form {
  background: white;
  color: var(--ink);
  border-radius: var(--radius-md);
  padding: 1.6rem;
  border: 1px solid rgba(148, 163, 184, 0.25);
  display: grid;
  gap: 1rem;
}

.contact-form h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  min-width: 0;
}

.form-field label {
  font-weight: 600;
  color: var(--ink);
}

.form-field input,
.form-field textarea,
.form-field select {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  border-radius: 12px;
  border: 1px solid var(--border);
  padding: 0.7rem 0.85rem;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--ink);
  background: #f8fafc;
}

.form-field textarea {
  resize: vertical;
  min-height: 120px;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: 2px solid rgba(37, 99, 235, 0.25);
  border-color: rgba(37, 99, 235, 0.65);
  background: white;
}

.form-field .is-invalid {
  border-color: #ef4444;
  background: #fff5f5;
}

.form-status {
  font-size: 0.9rem;
  color: var(--muted);
}

.form-status.is-error {
  color: #ef4444;
}

.form-status.is-success {
  color: #16a34a;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
}

.form-note {
  font-size: 0.8rem;
  color: var(--muted);
}

.form-label {
  font-weight: 600;
  color: var(--ink);
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem 1rem;
  margin-top: 0.5rem;
}

.option-grid label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--slate);
  cursor: pointer;
}

.option-grid input {
  margin-top: 0.15rem;
}

.form-hint {
  margin: 0.35rem 0 0;
  font-size: 0.82rem;
  color: var(--muted);
}

.form-group.is-invalid .form-hint {
  color: #dc2626;
}

.modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(15, 23, 42, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 50;
  padding: 1.5rem;
}

.modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
}

.modal-dialog {
  position: relative;
  width: min(760px, 95vw);
  max-height: 90vh;
  overflow: auto;
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.2);
  z-index: 1;
}

.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.modal-header h2 {
  margin: 0.2rem 0 0.4rem;
  font-family: "Sora", sans-serif;
}

.modal-header p {
  margin: 0;
  color: var(--muted);
}

.modal-close {
  border: none;
  background: rgba(15, 23, 42, 0.08);
  border-radius: 999px;
  padding: 0.5rem 0.9rem;
  font-weight: 600;
  cursor: pointer;
}

.modal-form {
  display: grid;
  gap: 1rem;
}

body.modal-open {
  overflow: hidden;
}

body.landing {
  background: radial-gradient(1100px 520px at 90% -10%, rgba(34, 211, 238, 0.2), transparent 60%), #ffffff;
}

.page-hero {
  padding: 4.5rem 0 3rem;
}

.hero-panel {
  min-width: 0;
  background: white;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  padding: 1.6rem;
  box-shadow: var(--shadow);
}

.hero-panel h3 {
  margin-top: 0;
  font-family: "Sora", sans-serif;
}

.module-illustration {
  width: 100%;
  max-width: 260px;
  margin: 0 auto 1rem;
  display: block;
}

.feature-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.4rem;
}

.feature-card {
  background: white;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.feature-card h3 {
  margin-top: 0;
  font-family: "Sora", sans-serif;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  border-radius: var(--radius-lg);
  padding: 2.4rem;
  color: #f8fafc;
  box-shadow: var(--shadow);
}

.cta-band p {
  color: #cbd5f5;
  margin-bottom: 0;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
  justify-content: flex-end;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.site-footer {
  padding: 3rem 0 1.5rem;
  background: #0b1220;
  color: #e2e8f0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo {
  height: 42px;
  margin-bottom: 1rem;
  width: auto;
}

.footer-grid a {
  color: #93c5fd;
}

.footer-bottom {
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  color: #94a3b8;
}

.legal-page-shell {
  min-height: 100vh;
  background:
    radial-gradient(circle at top right, rgba(59, 130, 246, 0.12), transparent 22%),
    linear-gradient(180deg, #f7fbff 0%, #eef4ff 100%);
}

.legal-topbar {
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
}

.legal-topbar__inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.legal-topbar__brand img {
  height: 44px;
  width: auto;
}

.legal-topbar__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.legal-main {
  padding: 3rem 0 4rem;
}

.legal-hero {
  background: linear-gradient(145deg, #0b1f4a 0%, #123578 100%);
  color: white;
  border-radius: 2rem;
  padding: 2.25rem;
  box-shadow: 0 24px 70px rgba(11, 31, 74, 0.2);
}

.legal-hero .eyebrow,
.legal-hero p,
.legal-hero h1 {
  color: white;
}

.legal-hero p:last-child {
  color: rgba(255, 255, 255, 0.78);
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(280px, 0.8fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
  align-items: start;
}

.legal-panel,
.legal-aside {
  background: white;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 1.5rem;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
}

.legal-panel {
  padding: 1.75rem;
  display: grid;
  gap: 1rem;
}

.legal-aside {
  padding: 1.5rem;
  display: grid;
  gap: 1rem;
  position: sticky;
  top: 1.5rem;
}

.legal-card {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 1.25rem;
  padding: 1.25rem;
  background: #f8fbff;
}

.legal-card h2,
.legal-card h3,
.legal-aside h3 {
  margin-bottom: 0.75rem;
}

.legal-list {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.55rem;
}

.legal-inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.legal-inline-links a,
.legal-note a {
  font-weight: 700;
}

.legal-note {
  margin: 0;
  color: var(--muted);
  overflow-wrap: anywhere;
}

.legal-meta {
  display: grid;
  gap: 0.85rem;
}

.legal-meta div {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 1rem;
  padding: 0.95rem 1rem;
  background: white;
}

.legal-meta strong {
  display: block;
  margin-bottom: 0.35rem;
}

.hero-proof {
  margin-top: 1.6rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.proof-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.95rem 1rem;
  box-shadow: var(--shadow);
}

.proof-item strong {
  display: block;
  font-family: "Sora", sans-serif;
  margin-bottom: 0.3rem;
}

.proof-item span {
  color: var(--muted);
  font-size: 0.9rem;
}

.screen-carousel {
  width: 100%;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.screen-carousel-stage {
  position: relative;
  aspect-ratio: 16 / 10;
  background: #091a3a;
}

.screen-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease;
}

.screen-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.screen-slide::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 42%;
  background: linear-gradient(180deg, rgba(4, 9, 21, 0) 0%, rgba(4, 9, 21, 0.88) 100%);
}

.screen-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slide-copy {
  position: absolute;
  left: 1.1rem;
  right: 1.1rem;
  bottom: 1.05rem;
  z-index: 2;
  color: white;
  display: grid;
  gap: 0.25rem;
  max-width: min(520px, 88%);
}

.slide-copy span {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.slide-copy strong {
  font-family: "Sora", sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
}

.slide-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
}

.carousel-dots {
  display: flex;
  gap: 0.55rem;
  padding: 1rem 1rem 1.1rem;
  align-items: center;
  justify-content: flex-start;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border: none;
  border-radius: 999px;
  background: rgba(59, 76, 100, 0.22);
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}

.carousel-dot.is-active {
  width: 32px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
}

.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.pillar-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.4rem;
}

.pillar-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  display: grid;
  gap: 0.8rem;
}

.pillar-card h3,
.detail-card h3,
.journey-card h3,
.deployment-card h3,
.gallery-caption h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
}

.pillar-card p,
.detail-card p,
.journey-card p,
.deployment-card p,
.gallery-caption p {
  margin: 0;
  color: var(--muted);
  overflow-wrap: anywhere;
}

.media-collage {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: stretch;
}

.media-collage-lead,
.media-tile,
.gallery-lead,
.gallery-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.media-collage-lead,
.media-tile {
  padding: 0.7rem;
}

.media-collage-lead img,
.media-tile img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: 14px;
  background: linear-gradient(180deg, #f8fbff 0%, #eef4ff 100%);
}

.gallery-lead img,
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.media-collage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1rem;
  align-content: start;
}

.media-tile img {
  aspect-ratio: auto;
}

.media-tile span,
.gallery-item span {
  display: block;
  padding: 0.8rem 0.9rem 0;
  font-weight: 700;
}

.media-tile small,
.gallery-item small {
  display: block;
  padding: 0.15rem 0.9rem 0.95rem;
  color: var(--muted);
}

.detail-grid,
.journey-grid,
.deployment-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
}

.detail-card,
.journey-card,
.deployment-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.4rem;
  box-shadow: var(--shadow);
}

.journey-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: white;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.gallery-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: start;
}

.gallery-lead,
.gallery-item {
  padding: 0.7rem;
}

.gallery-lead img,
.gallery-item img,
.showcase-card img,
.training-poster {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: 14px;
  background: linear-gradient(180deg, #f8fbff 0%, #eef4ff 100%);
}

.gallery-caption {
  padding: 1rem 0.15rem 0.2rem;
}

.gallery-mini {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.mini-stat-grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0.9rem;
}

.mini-stat {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1rem;
  box-shadow: var(--shadow);
}

.mini-stat strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.mini-stat span {
  color: var(--muted);
  font-size: 0.88rem;
}

@media (max-width: 1024px) {
  .promo-banner__inner {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 0.55rem;
    padding: 0.85rem 0;
  }

  .header-grid {
    grid-template-columns: auto auto;
    align-items: center;
  }

  .header-shell {
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    display: none;
    padding-bottom: 1rem;
  }

  .site-header.is-open .header-shell {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 0.9rem;
    font-size: 1rem;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown summary {
    width: 100%;
    justify-content: space-between;
  }

  .nav-dropdown-menu {
    position: static;
    margin-top: 0.55rem;
    width: 100%;
    box-shadow: none;
  }

  .hero-grid,
  .split {
    grid-template-columns: 1fr;
  }

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

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

  .hero-visual img {
    max-width: 520px;
    margin: 0 auto;
  }

  .screen-carousel {
    max-width: none;
    margin: 0;
  }

  .contact-card {
    grid-template-columns: 1fr;
  }

  .header-actions {
    flex-wrap: wrap;
    justify-content: flex-start;
    width: 100%;
  }

  .nav-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .header-actions .btn {
    width: auto;
  }

  .cta-band {
    flex-direction: column;
    align-items: flex-start;
  }

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

@media (max-width: 900px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    white-space: normal;
    text-align: center;
  }

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

  .hero-trust-value {
    font-size: clamp(3rem, 9vw, 4.8rem);
  }

  .screen-carousel-stage {
    aspect-ratio: 4 / 4.7;
  }

  .screen-slide {
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
  }

  .screen-slide::after {
    display: none;
  }

  .screen-slide img {
    grid-row: 1;
    object-fit: contain;
    object-position: center top;
    background: #091a3a;
    padding: 0.85rem 0.85rem 0;
  }

  .slide-copy {
    position: static;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    max-width: none;
    padding: 1rem 1rem 1.05rem;
    gap: 0.35rem;
    background: linear-gradient(180deg, #0c2148 0%, #081831 100%);
  }

  .carousel-dots {
    padding-top: 0.85rem;
  }
}

@media (max-width: 768px) {
  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

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

  .media-collage-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .media-collage {
    grid-template-columns: 1fr;
  }

  .slide-copy {
    max-width: 100%;
  }

  .screen-carousel-stage {
    aspect-ratio: 4 / 4.7;
  }

  .screen-slide {
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
  }

  .screen-slide::after {
    display: none;
  }

  .screen-slide img {
    grid-row: 1;
    object-fit: contain;
    object-position: center top;
    background: #091a3a;
    padding: 0.85rem 0.85rem 0;
  }

  .slide-copy {
    position: static;
    left: auto;
    right: auto;
    bottom: auto;
    max-width: none;
    padding: 1rem 1rem 1.05rem;
    gap: 0.35rem;
    background: linear-gradient(180deg, #0c2148 0%, #081831 100%);
  }

  .carousel-dots {
    padding-top: 0.85rem;
  }

  .bundle-strip,
  .pyramid-tailor,
  .pyramid-tier,
  .section-actions,
  .cta-actions,
  .contact-actions,
  .legal-topbar__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .bundle-strip .btn,
  .pyramid-tailor .btn,
  .section-actions .btn,
  .cta-actions .btn,
  .contact-actions .btn,
  .legal-topbar__actions .btn {
    width: 100%;
    justify-content: center;
    white-space: normal;
    text-align: center;
  }

  .pyramid-tailor {
    padding-right: 1.6rem;
  }

  .pyramid-tailor::before,
  .pyramid-tailor::after,
  .pyramid-tailor-logo {
    display: none;
  }

  .pyramid-tier {
    width: 100%;
    clip-path: none;
  }
}

@media (max-width: 640px) {
  .promo-banner__title {
    font-size: 0.9rem;
  }

  .promo-banner__cta {
    width: 100%;
  }

  .hero {
    padding: 3.5rem 0 2.5rem;
  }

  .hero-grid {
    gap: 2rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.1rem, 8vw, 2.8rem);
  }

  .hero-rotator-text {
    line-height: 1.15;
  }

  .hero-rotator {
    min-height: 2.35em;
  }

  .lead {
    font-size: 1rem;
  }

  .hero-trust-shell {
    width: calc(100vw - 1rem);
    border-radius: 26px;
  }

  .hero-trust-grid {
    padding: 1.55rem;
  }

  .hero-trust-body,
  .hero-trust-panel p:not(.hero-trust-eyebrow) {
    font-size: 0.98rem;
  }

  .trust-points {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

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

  .hero-visual img {
    padding: 0.8rem;
  }

  .section {
    padding: 3rem 0;
  }

  .section-heading h2 {
    font-size: clamp(1.7rem, 7vw, 2.2rem);
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-card,
  .use-card,
  .training-card,
  .card,
  .component-card {
    padding: 1.2rem;
  }

  .client-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
  }

  .client-logo {
    padding: 0.9rem 0.7rem;
    min-height: 64px;
  }

  .client-note {
    font-size: 0.68rem;
  }

  .pill-list span {
    font-size: 0.78rem;
  }

  .contact-card {
    padding: 1.8rem;
    gap: 1.5rem;
  }

  .contact-form {
    padding: 1.2rem;
  }

  .option-grid {
    grid-template-columns: 1fr;
  }

  .modal-dialog {
    padding: 1.4rem;
  }

  .modal-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .header-actions {
    width: 100%;
  }

  .header-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .lang-switch {
    width: 100%;
    display: flex;
    justify-content: flex-start;
  }

  .legal-topbar__actions {
    width: 100%;
  }

  .legal-topbar__actions .lang-switch {
    width: 100%;
  }

  .hero-proof,
  .media-collage-grid,
  .detail-grid,
  .journey-grid,
  .deployment-grid,
  .mini-stat-grid,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .carousel-dots,
  .section-actions {
    justify-content: stretch;
  }

  .legal-aside {
    position: static;
  }

  .legal-hero {
    padding: 1.6rem;
  }

  .slide-copy {
    left: 0.9rem;
    right: 0.9rem;
    bottom: 0.9rem;
  }

  .slide-copy strong {
    font-size: 1rem;
    line-height: 1.2;
  }

  .slide-copy p {
    font-size: 0.92rem;
    line-height: 1.45;
  }

  .screen-carousel-stage {
    aspect-ratio: 4 / 5.05;
  }

  .screen-slide img {
    padding: 0.7rem 0.7rem 0;
  }

  .slide-copy {
    padding: 0.95rem 0.9rem 1rem;
  }
}

@media (max-width: 480px) {
  input,
  textarea,
  select,
  button {
    font-size: 16px;
  }

  h1,
  h2,
  h3,
  .btn,
  .promo-banner__title {
    overflow-wrap: anywhere;
  }

  .hero-panel,
  .hero-panel *,
  .feature-card,
  .component-card,
  .deployment-card {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .container,
  .site-header .container {
    width: calc(100% - 2rem);
  }

  .hero-copy h1 {
    font-size: clamp(1.9rem, 9vw, 2.4rem);
  }

  .eyebrow {
    letter-spacing: 0.14em;
  }

  .hero-actions {
    gap: 0.8rem;
  }

  .hero-visual img {
    padding: 0.6rem;
  }

  .metric {
    padding: 0.7rem 0.8rem;
  }

  .pyramid-chip {
    font-size: 0.74rem;
  }

  .client-grid {
    grid-template-columns: 1fr;
  }

  .contact-card {
    padding: 1.5rem;
  }

  .screen-carousel-stage {
    aspect-ratio: 4 / 5.45;
  }

  .screen-slide img {
    padding: 0.62rem 0.62rem 0;
  }

  .slide-copy span {
    font-size: 0.7rem;
  }

  .slide-copy strong {
    font-size: 0.96rem;
  }

  .slide-copy p {
    font-size: 0.88rem;
  }

  .hero-trust-grid,
  .contact-card,
  .legal-panel,
  .legal-aside {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }

  .pyramid-tier,
  .pyramid-tailor {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .promo-banner__eyebrow::before,
  .promo-banner__cta {
    animation: none;
  }

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