:root {
  --primary-blue: #081f8f;
  --primary-rgb: 8, 31, 143;
  --secondary: #f3eee6;
  --secondary-rgb: 243, 238, 230;
  --cta: #eadfc8;
  --cta-rgb: 234, 223, 200;
  --bg: var(--secondary);
  --bg-soft: var(--cta);
  --logo-turquoise: var(--cta);
  --logo-sky: var(--secondary);
  --logo-violet: var(--primary-blue);
  --logo-sand: var(--cta);
  --text: #111111;
  --text-inverse: var(--secondary);
  --text-inverse-soft: rgba(var(--secondary-rgb), 0.88);
  --text-inverse-faint: rgba(var(--secondary-rgb), 0.76);
  --muted: #4f4943;
  --line: rgba(var(--primary-rgb), 0.12);
  --accent: var(--primary-blue);
  --accent-secondary: var(--cta);
  --accent-tertiary: var(--primary-blue);
  --brand-night: var(--primary-blue);
  --sand: var(--cta);
  --shadow: 0 6px 18px rgba(17, 17, 17, 0.06);
  --radius: 1.15rem;
  --radius-sm: 0.95rem;
  --container: min(100% - 1.5rem, 72rem);
  --header-height: 5rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

[hidden] {
  display: none !important;
}

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

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: var(--sand);
  color: var(--brand-night);
  font-weight: 700;
  transform: translateY(-180%);
}

.sr-only:focus,
.sr-only:focus-visible {
  transform: translateY(0);
}

.site-shell {
  position: relative;
  overflow: clip;
}

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

.eyebrow {
  margin: 0 0 1rem;
  color: var(--primary-blue);
  font-size: 0.79rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: var(--header-height);
  backdrop-filter: blur(16px);
  background: rgba(243, 238, 230, 0.9);
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header--hidden {
  transform: translateY(-110%);
}

@media (prefers-reduced-motion: reduce) {
  .site-header {
    transition: none;
  }
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-height);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.68rem;
}

.brand-mark {
  width: 2.9rem;
  height: 2.9rem;
  border-radius: 1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(17, 17, 17, 0.05);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 0.24rem;
  align-items: flex-start;
  align-self: center;
  transform: none;
  min-width: 0;
}

.brand-name {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.86rem, 5vw, 2.18rem);
  font-weight: 700;
  letter-spacing: 0.016em;
  line-height: 0.9;
  text-rendering: geometricPrecision;
  white-space: nowrap;
}

.brand-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  color: var(--primary-blue);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.26em;
  line-height: 1.15;
  text-transform: uppercase;
  white-space: nowrap;
  padding-left: 0.08rem;
}

.brand-tag::before {
  content: "";
  width: 1.35rem;
  height: 1px;
  background: rgba(var(--primary-rgb), 0.3);
  flex: 0 0 auto;
  transform: translateY(0.04rem);
}

@media (min-width: 48rem) {
  .brand {
    gap: 0.82rem;
  }

  .brand-mark {
    width: 3.15rem;
    height: 3.15rem;
  }

  .brand-copy {
    gap: 0.18rem;
  }

  .brand-tag {
    gap: 0.5rem;
    font-size: 0.67rem;
  }

  .brand-tag::before {
    width: 1.7rem;
  }
}

.nav-toggle {
  display: inline-grid;
  place-items: center;
  width: 2.78rem;
  height: 2.78rem;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 0.82rem;
  background: transparent;
  color: var(--text);
}

.nav-toggle span {
  display: block;
  width: 1.02rem;
  height: 2px;
  margin: 0.12rem auto;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 47.99rem) {
  .nav-toggle {
    width: 2.10rem;
    height: 2.10rem;
    border-radius: 0.72rem;
  }

  .nav-toggle span {
    width: 0.92rem;
    margin: 0.1rem auto;
  }

  .nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(4px) rotate(45deg);
  }

  .nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-4px) rotate(-45deg);
  }
}

.site-nav {
  position: fixed;
  inset: var(--header-height) 0 auto 0;
  display: grid;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(243, 238, 230, 0.97);
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  transform: translateY(-110%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.24s ease, opacity 0.24s ease, visibility 0.24s ease;
}

.nav-open .site-nav {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  color: var(--muted);
  font-weight: 600;
}

.site-nav a[aria-current="page"] {
  color: var(--primary-blue);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--accent-tertiary);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0 1.25rem;
  border: 1px solid rgba(var(--primary-rgb), 0.18);
  border-radius: 1rem;
  background: var(--cta);
  color: var(--primary-blue);
  font-weight: 800;
  letter-spacing: -0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  box-shadow: 0 10px 22px rgba(var(--primary-rgb), 0.12);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(var(--primary-rgb), 0.16);
}

.button-outline {
  background: rgba(var(--secondary-rgb), 0.6);
  color: var(--primary-blue);
  border-color: rgba(var(--primary-rgb), 0.18);
  box-shadow: none;
}

.button-outline:hover,
.button-outline:focus-visible {
  background: rgba(var(--cta-rgb), 0.68);
  border-color: var(--primary-blue);
  color: var(--primary-blue);
}

.button-small {
  min-height: 2.9rem;
  padding-inline: 1rem;
}

.nav-cta {
  border-color: rgba(var(--primary-rgb), 0.12);
  background: var(--cta);
  color: var(--primary-blue);
  box-shadow: 0 12px 24px rgba(var(--primary-rgb), 0.16);
}

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

.nav-cta:hover,
.nav-cta:focus-visible {
  color: var(--primary-blue);
  border-color: rgba(var(--primary-rgb), 0.18);
  box-shadow: 0 16px 30px rgba(var(--primary-rgb), 0.2);
}

.button-row {
  display: grid;
  gap: 0.75rem;
}

.button-row .button,
.site-nav .button {
  width: 100%;
}

.main-content {
  padding-bottom: 4.5rem;
}

.page-hero {
  position: relative;
  padding: 2.5rem 0 4rem;
  background: var(--primary-blue);
  color: var(--text-inverse);
  overflow: clip;
  isolation: isolate;
}

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

.page-hero::after {
  content: "";
  position: absolute;
  top: -4rem;
  left: auto;
  right: -4rem;
  width: 14rem;
  height: 14rem;
  border-bottom-left-radius: 100%;
  background: rgba(255, 255, 255, 0.08);
}

.hero-home {
  background:
    radial-gradient(circle at 18% 84%, rgba(var(--cta-rgb), 0.18), transparent 24rem),
    radial-gradient(circle at 86% 18%, rgba(var(--secondary-rgb), 0.1), transparent 16rem),
    linear-gradient(180deg, var(--primary-blue) 0%, #06186f 100%);
}

.hero-home .hero-copy h1 {
  max-width: 8.4ch;
}

.hero-home::after {
  top: auto;
  right: -5rem;
  bottom: -4rem;
  width: 20rem;
  height: 12rem;
  border-bottom-left-radius: 8rem;
  background: linear-gradient(135deg, rgba(var(--secondary-rgb), 0.18), rgba(var(--cta-rgb), 0.08));
}

.hero-product {
  background:
    radial-gradient(circle at 16% 80%, rgba(var(--cta-rgb), 0.16), transparent 20rem),
    linear-gradient(180deg, var(--primary-blue) 0%, #06186f 100%);
}

.hero-product::before {
  top: 2.2rem;
  right: 6vw;
  bottom: auto;
  width: 8.5rem;
  height: 8.5rem;
  border-radius: 1rem;
  background: repeating-linear-gradient(
    90deg,
    rgba(var(--cta-rgb), 0.92) 0 0.85rem,
    transparent 0.85rem 1.35rem
  );
  -webkit-mask: none;
  mask: none;
  opacity: 0.24;
}

.hero-product::after {
  top: auto;
  right: -3rem;
  bottom: -3rem;
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--secondary-rgb), 0.16), transparent 62%);
}

.hero-usages {
  background:
    linear-gradient(135deg, rgba(var(--secondary-rgb), 0.08), transparent 32%),
    linear-gradient(180deg, var(--primary-blue) 0%, #06186f 100%);
}

.hero-usages::before {
  top: auto;
  right: 6vw;
  bottom: 2.25rem;
  width: 8.5rem;
  height: 8.5rem;
  border-radius: 1.25rem;
  background: repeating-linear-gradient(
    -45deg,
    rgba(var(--cta-rgb), 0.9) 0 0.95rem,
    transparent 0.95rem 1.5rem
  );
  -webkit-mask: none;
  mask: none;
  opacity: 0.28;
}

.hero-usages::after {
  top: -2rem;
  right: -4rem;
  width: 18rem;
  height: 14rem;
  border-bottom-left-radius: 7rem;
  background: rgba(255, 255, 255, 0.07);
}

.hero-contact {
  background:
    radial-gradient(circle at 84% 28%, rgba(var(--cta-rgb), 0.08), transparent 16rem),
    linear-gradient(180deg, var(--primary-blue) 0%, #06186f 100%);
}

.hero-contact::before {
  top: 2.6rem;
  right: 6vw;
  width: 10rem;
  height: 2.5rem;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(var(--cta-rgb), 0.95) 0 22%,
    transparent 22% 40%,
    rgba(var(--secondary-rgb), 0.82) 40% 62%,
    transparent 62% 80%,
    rgba(var(--cta-rgb), 0.82) 80% 100%
  );
  -webkit-mask: none;
  mask: none;
  opacity: 0.95;
}

.hero-contact::after {
  top: auto;
  right: -2rem;
  bottom: -3rem;
  width: 15rem;
  height: 10rem;
  border-top-left-radius: 5rem;
  border-bottom-left-radius: 5rem;
  background: rgba(255, 255, 255, 0.08);
}

.hero-grid,
.split-grid,
.contact-layout {
  display: grid;
  gap: 1rem;
}

.breadcrumbs {
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumbs li + li::before {
  content: "/";
  margin-right: 0.45rem;
  color: rgba(255, 255, 255, 0.32);
}

.hero-copy h1,
.section-head h2,
.cta-band h2 {
  margin: 0;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.section-head h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  line-height: 1.1;
}

.hero-copy h1,
.section-blue .section-head h2,
.surface-accent.cta-band h2 {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.hero-copy h1 {
  font-size: clamp(2.8rem, 12vw, 4.7rem);
  max-width: 11.5ch;
}

.section-head h2,
.cta-band h2 {
  font-size: clamp(2.15rem, 9vw, 3.8rem);
}

.hero-copy p,
.section-head p,
.surface p,
.text-block p,
.timeline-item p,
.faq-item p,
.faq-item li,
.contact-list li,
.site-footer p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.72;
}

.page-hero .hero-copy p,
.page-hero .hero-list li,
.page-hero .surface p,
.page-hero .breadcrumbs,
.page-hero .breadcrumbs li + li::before {
  color: var(--text-inverse-soft);
}

.page-hero .button {
  background: var(--sand);
  color: var(--primary-blue);
  border-color: var(--sand);
}

.page-hero .button-outline {
  background: rgba(243, 238, 230, 0.18);
  color: var(--text-inverse);
  border-color: rgba(243, 238, 230, 0.72);
}

.page-hero .button-outline:hover,
.page-hero .button-outline:focus-visible {
  background: rgba(243, 238, 230, 0.28);
  color: var(--text-inverse);
  border-color: var(--sand);
}

.hero-intro {
  max-width: 62ch;
  margin-top: 1rem;
}

.surface {
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: var(--radius);
  background: rgba(var(--secondary-rgb), 0.78);
  box-shadow: var(--shadow);
}

.cards > .surface,
.stat-grid > .surface,
.timeline > .surface {
  background: transparent;
  box-shadow: none;
}

.surface-accent {
  background: var(--primary-blue);
  border-color: var(--primary-blue);
}

.surface-accent h2,
.surface-accent h3,
.surface-accent .eyebrow {
  color: var(--text-inverse);
}

.surface-accent p {
  color: var(--text-inverse-soft);
}

.surface-accent .eyebrow {
  color: var(--accent-secondary);
}

.surface-pad {
  padding: 1.15rem;
}

.hero-list,
.check-list,
.contact-list {
  display: grid;
  gap: 0.75rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.hero-list li,
.check-list li,
.contact-list li {
  position: relative;
  padding-left: 1.2rem;
}

.hero-list li::before,
.check-list li::before,
.contact-list li::before {
  content: "";
  position: absolute;
  top: 0.68rem;
  left: 0;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--accent);
}

.page-hero .hero-list li::before {
  background: var(--cta);
}

.hero-visual {
  display: grid;
  gap: 1rem;
}

.hero-visual-home,
.hero-visual-product,
.hero-visual-usages,
.hero-visual-contact {
  align-items: start;
}

.hero-brand-card,
.hero-contact-card {
  border-color: rgba(243, 238, 230, 0.18);
  background: rgba(var(--secondary-rgb), 0.92);
}

.hero-home .hero-brand-card {
  position: relative;
  display: grid;
  gap: 0.85rem;
  max-width: 32rem;
  margin-left: auto;
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0%, rgba(var(--primary-rgb), 0.08), transparent 34%),
    linear-gradient(180deg, rgba(var(--secondary-rgb), 0.99), rgba(var(--cta-rgb), 0.92));
  border-color: rgba(var(--secondary-rgb), 0.28);
}

.hero-home .hero-brand-card::after {
  content: "";
  position: absolute;
  right: -2.2rem;
  bottom: -2.8rem;
  width: 8.5rem;
  height: 8.5rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--primary-rgb), 0.12), transparent 68%);
  pointer-events: none;
}

.hero-home .hero-brand-card p,
.hero-contact .hero-contact-card p,
.hero-contact .hero-contact-card a {
  color: rgba(var(--primary-rgb), 0.92);
}

.hero-home .hero-brand-card > * {
  position: relative;
  z-index: 1;
}

.hero-home .hero-brand-card h3 {
  margin: 0;
  color: var(--primary-blue);
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.hero-brand-kicker {
  margin: 0;
  color: rgba(var(--primary-rgb), 0.58);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-brand-summary {
  margin: 0;
  max-width: 24ch;
  color: rgba(var(--primary-rgb), 0.82);
  font-size: 0.96rem;
  line-height: 1.58;
}

.hero-brand-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.hero-brand-signals span {
  padding: 0.48rem 0.72rem;
  border: 1px solid rgba(var(--primary-rgb), 0.12);
  border-radius: 999px;
  background: rgba(var(--primary-rgb), 0.06);
  color: var(--primary-blue);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-contact .hero-contact-card h3 {
  color: var(--primary-blue);
}

.hero-contact .hero-contact-card a {
  font-weight: 800;
}

.hero-meta-grid,
.hero-contact-points {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-meta-grid {
  display: grid;
  gap: 0.75rem;
}

.hero-meta-grid li {
  padding: 0.8rem 0.9rem;
  border: 1px solid rgba(243, 238, 230, 0.18);
  border-radius: 1rem;
  background: rgba(243, 238, 230, 0.1);
  color: var(--text-inverse);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
  overflow-wrap: anywhere;
  backdrop-filter: blur(6px);
}

.hero-home-strip li:nth-child(1) {
  background: rgba(var(--cta-rgb), 0.22);
  border-color: rgba(var(--cta-rgb), 0.34);
}

.hero-home-strip li:nth-child(2) {
  background: rgba(var(--secondary-rgb), 0.14);
  border-color: rgba(var(--secondary-rgb), 0.28);
}

.hero-home-strip li:nth-child(3) {
  background: rgba(var(--cta-rgb), 0.14);
  border-color: rgba(var(--secondary-rgb), 0.24);
}

.hero-home .hero-home-strip {
  gap: 0.7rem;
}

.hero-home-strip li {
  display: grid;
  gap: 0.32rem;
  align-content: start;
  min-height: 5.4rem;
  padding: 0.95rem 1rem;
  text-align: left;
  text-transform: none;
  letter-spacing: normal;
}

.hero-home-strip li strong {
  color: var(--text-inverse);
  font-family: "Montserrat", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.1;
  text-transform: uppercase;
}

.hero-home-strip li span {
  color: rgba(var(--secondary-rgb), 0.84);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.45;
}

.hero-product-strip li {
  background: rgba(243, 238, 230, 0.08);
  border-style: dashed;
}

.hero-product-note {
  border-color: rgba(243, 238, 230, 0.16);
  background: rgba(243, 238, 230, 0.1);
}

.hero-product-note h3 {
  color: var(--text-inverse);
}

.hero-product-note p {
  color: var(--text-inverse-soft);
}

.hero-usage-mosaic,
.hero-contact-stack {
  display: grid;
  gap: 1rem;
}

.hero-usage-feature,
.hero-usage-tile,
.hero-contact-mini {
  border-color: rgba(243, 238, 230, 0.18);
  background: rgba(243, 238, 230, 0.1);
}

.hero-usage-feature,
.hero-contact-mini {
  display: grid;
  gap: 0.65rem;
}

.hero-usage-feature h3,
.hero-contact-mini h3 {
  color: var(--text-inverse);
}

.hero-usage-feature p,
.hero-usage-tile p,
.hero-contact-mini p {
  color: var(--text-inverse-soft);
}

.hero-usage-tile strong {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--sand);
  font-size: 1rem;
}

.hero-contact-card {
  display: grid;
  gap: 0.6rem;
  align-content: start;
}

.hero-contact .hero-contact-card {
  border-color: rgba(var(--secondary-rgb), 0.22);
  background: rgba(var(--secondary-rgb), 0.97);
  box-shadow: 0 1rem 2.2rem rgba(var(--primary-rgb), 0.16);
}

.hero-contact-points {
  display: grid;
  gap: 0.65rem;
  margin-top: 0.35rem;
}

.hero-contact-points li {
  padding: 0.72rem 0.85rem;
  border-radius: 0.95rem;
  background: rgba(var(--primary-rgb), 0.08);
  color: var(--primary-blue);
  font-size: 0.82rem;
  font-weight: 700;
}

.hero-contact .hero-contact-mini,
.hero-contact-panel li {
  border: 1px solid rgba(243, 238, 230, 0.26);
  background: linear-gradient(180deg, rgba(243, 238, 230, 0.16), rgba(243, 238, 230, 0.08));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-contact .hero-contact-mini h3,
.hero-contact-panel li {
  color: var(--text-inverse);
}

.hero-contact .hero-contact-mini p {
  color: rgba(var(--secondary-rgb), 0.96);
}

.page-hero::before {
  animation: hero-ornament-sway 18s ease-in-out infinite;
  transform-origin: center;
  will-change: transform, opacity;
}

.page-hero::after {
  animation: hero-ornament-float 16s ease-in-out infinite;
  will-change: transform, opacity;
}

.hero-home::after {
  animation-duration: 19s;
}

.hero-product::before {
  animation: hero-grid-sway 15s ease-in-out infinite;
  transform-origin: center;
}

.hero-product::after,
.hero-usages::after,
.hero-contact::after {
  animation: hero-ornament-float 18s ease-in-out infinite;
}

.hero-usages::before {
  animation: hero-ornament-sway 17s ease-in-out infinite reverse;
  transform-origin: center;
}

.hero-contact::before {
  animation: hero-contact-bar 10s ease-in-out infinite;
  transform-origin: center;
}

.page-hero .breadcrumbs,
.page-hero .hero-copy > *,
.page-hero .hero-visual article,
.page-hero .hero-visual ul,
.page-hero .hero-visual li,
.page-hero .wheel-tag,
.page-hero .wheel-stage {
  will-change: transform, opacity, filter, translate, scale;
}

.page-hero .breadcrumbs.is-visible {
  animation: hero-breadcrumb-in 0.74s cubic-bezier(0.22, 0.9, 0.2, 1) both;
}

.page-hero .hero-copy.is-visible .eyebrow {
  animation: hero-chip-in 0.66s cubic-bezier(0.22, 0.9, 0.2, 1) 0.02s both;
}

.page-hero .hero-copy.is-visible h1 {
  animation: hero-heading-in 1s cubic-bezier(0.18, 0.92, 0.2, 1) 0.08s both;
}

.page-hero .hero-copy.is-visible .hero-intro {
  animation: hero-copy-in 0.9s cubic-bezier(0.22, 0.9, 0.2, 1) 0.22s both;
}

.page-hero .hero-copy.is-visible .button-row .button:nth-child(1) {
  animation: hero-button-in 0.84s cubic-bezier(0.22, 0.9, 0.2, 1) 0.32s both;
}

.page-hero .hero-copy.is-visible .button-row .button:nth-child(2) {
  animation: hero-button-in 0.84s cubic-bezier(0.22, 0.9, 0.2, 1) 0.42s both;
}

.page-hero .hero-copy.is-visible .hero-list li:nth-child(1) {
  animation: hero-list-in 0.78s cubic-bezier(0.22, 0.9, 0.2, 1) 0.42s both;
}

.page-hero .hero-copy.is-visible .hero-list li:nth-child(2) {
  animation: hero-list-in 0.78s cubic-bezier(0.22, 0.9, 0.2, 1) 0.5s both;
}

.page-hero .hero-copy.is-visible .hero-list li:nth-child(3) {
  animation: hero-list-in 0.78s cubic-bezier(0.22, 0.9, 0.2, 1) 0.58s both;
}

.hero-home .hero-visual.is-visible .hero-brand-card {
  animation: hero-panel-in 0.96s cubic-bezier(0.18, 0.92, 0.2, 1) 0.14s both, hero-panel-drift 10.5s ease-in-out 1.28s infinite;
}

.hero-home .hero-visual.is-visible .hero-home-strip li:nth-child(1) {
  animation: hero-chip-in 0.78s cubic-bezier(0.22, 0.9, 0.2, 1) 0.28s both, hero-chip-float 6.8s ease-in-out 1.18s infinite;
}

.hero-home .hero-visual.is-visible .hero-home-strip li:nth-child(2) {
  animation: hero-chip-in 0.78s cubic-bezier(0.22, 0.9, 0.2, 1) 0.36s both, hero-chip-float 7.2s ease-in-out 1.3s infinite;
}

.hero-home .hero-visual.is-visible .hero-home-strip li:nth-child(3) {
  animation: hero-chip-in 0.78s cubic-bezier(0.22, 0.9, 0.2, 1) 0.44s both, hero-chip-float 7.6s ease-in-out 1.42s infinite;
}

.hero-home .hero-visual.is-visible .wheel-stage {
  animation: hero-stage-entry 1.02s cubic-bezier(0.18, 0.92, 0.2, 1) 0.22s both, hero-stage-home 13.5s ease-in-out 1.18s infinite;
}

.hero-home .hero-visual.is-visible .cover-card img {
  animation: hero-image-glide 18s ease-in-out 1.3s infinite;
}

.hero-home .hero-visual.is-visible .wheel-tag-top {
  animation: hero-tag-drift 7.4s ease-in-out 1.25s infinite;
}

.hero-home .hero-visual.is-visible .wheel-tag-right {
  animation: hero-tag-drift 8.2s ease-in-out 1.45s infinite reverse;
}

.hero-home .hero-visual.is-visible .wheel-tag-bottom {
  animation: hero-tag-drift 7.8s ease-in-out 1.62s infinite;
}

.hero-product .hero-visual.is-visible .hero-product-note {
  animation: hero-panel-in 0.94s cubic-bezier(0.18, 0.92, 0.2, 1) 0.14s both, hero-panel-drift 10.8s ease-in-out 1.24s infinite;
}

.hero-product .hero-visual.is-visible .wheel-stage {
  animation: hero-stage-entry 1s cubic-bezier(0.18, 0.92, 0.2, 1) 0.24s both, hero-stage-product 12.8s ease-in-out 1.16s infinite;
}

.hero-product .hero-visual.is-visible .hero-product-strip li:nth-child(1) {
  animation: hero-chip-in 0.76s cubic-bezier(0.22, 0.9, 0.2, 1) 0.34s both, hero-chip-float 6.6s ease-in-out 1.18s infinite;
}

.hero-product .hero-visual.is-visible .hero-product-strip li:nth-child(2) {
  animation: hero-chip-in 0.76s cubic-bezier(0.22, 0.9, 0.2, 1) 0.42s both, hero-chip-float 7s ease-in-out 1.3s infinite;
}

.hero-product .hero-visual.is-visible .hero-product-strip li:nth-child(3) {
  animation: hero-chip-in 0.76s cubic-bezier(0.22, 0.9, 0.2, 1) 0.5s both, hero-chip-float 7.4s ease-in-out 1.42s infinite;
}

.hero-usages .hero-visual.is-visible .hero-usage-mosaic > *:nth-child(1) {
  animation: hero-panel-in 0.94s cubic-bezier(0.18, 0.92, 0.2, 1) 0.12s both, hero-panel-drift 11.2s ease-in-out 1.2s infinite;
}

.hero-usages .hero-visual.is-visible .hero-usage-mosaic > *:nth-child(2) {
  animation: hero-panel-in 0.94s cubic-bezier(0.18, 0.92, 0.2, 1) 0.24s both, hero-panel-drift 12s ease-in-out 1.32s infinite;
}

.hero-usages .hero-visual.is-visible .hero-usage-mosaic > *:nth-child(3) {
  animation: hero-panel-in 0.94s cubic-bezier(0.18, 0.92, 0.2, 1) 0.34s both, hero-panel-drift 12.4s ease-in-out 1.44s infinite;
}

.hero-usages .hero-visual.is-visible .hero-usage-mosaic > *:nth-child(4) {
  animation: hero-panel-in 0.94s cubic-bezier(0.18, 0.92, 0.2, 1) 0.46s both, hero-panel-drift 12.8s ease-in-out 1.56s infinite;
}

.hero-contact .hero-visual.is-visible .hero-contact-card {
  animation: hero-panel-in 0.96s cubic-bezier(0.18, 0.92, 0.2, 1) 0.12s both, hero-panel-drift 10.8s ease-in-out 1.24s infinite;
}

.hero-contact .hero-visual.is-visible .hero-contact-mini {
  animation: hero-panel-in 0.92s cubic-bezier(0.18, 0.92, 0.2, 1) 0.28s both, hero-panel-drift 11.6s ease-in-out 1.36s infinite;
}

.hero-contact .hero-visual.is-visible .hero-contact-panel li:nth-child(1) {
  animation: hero-chip-in 0.74s cubic-bezier(0.22, 0.9, 0.2, 1) 0.38s both, hero-chip-float 6.4s ease-in-out 1.2s infinite;
}

.hero-contact .hero-visual.is-visible .hero-contact-panel li:nth-child(2) {
  animation: hero-chip-in 0.74s cubic-bezier(0.22, 0.9, 0.2, 1) 0.46s both, hero-chip-float 6.8s ease-in-out 1.32s infinite;
}

.hero-contact .hero-visual.is-visible .hero-contact-panel li:nth-child(3) {
  animation: hero-chip-in 0.74s cubic-bezier(0.22, 0.9, 0.2, 1) 0.54s both, hero-chip-float 7.2s ease-in-out 1.44s infinite;
}

.cover-card img {
  width: 100%;
  border-radius: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-home .cover-card img {
  width: min(100%, 12.75rem);
  border-radius: 1rem;
  box-shadow: 0 14px 28px rgba(var(--primary-rgb), 0.12);
}

.cards {
  display: grid;
  gap: 1rem;
}

.card {
  padding: 1.15rem;
}

h3 {
  margin: 0 0 0.55rem;
  font-size: 1.18rem;
  line-height: 1.28;
  text-wrap: balance;
}

.card h3,
.timeline-item h3,
.faq-item summary,
.contact-form label span {
  margin: 0 0 0.55rem;
}

.card p,
.timeline-item p,
.faq-item p,
.faq-item ul {
  margin: 0;
}

.card-number,
.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.9rem;
  padding: 0 0.75rem;
  border-radius: 999px;
  background: var(--primary-blue);
  color: var(--text-inverse);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

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

.team-card {
  display: grid;
  gap: 1rem;
  padding: 1.15rem;
}

.team-photo {
  aspect-ratio: 4 / 5;
  width: 100%;
  margin: 0;
  border-radius: 1.2rem;
  overflow: hidden;
  border: 1px solid rgba(var(--primary-rgb), 0.14);
  background:
    radial-gradient(circle at 22% 18%, rgba(var(--cta-rgb), 0.92), transparent 34%),
    linear-gradient(145deg, rgba(var(--secondary-rgb), 0.96), rgba(var(--cta-rgb), 0.94));
  display: grid;
  place-items: center;
  align-content: center;
  gap: 0.8rem;
  padding: 1rem;
  text-align: center;
}

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

.team-photo-placeholder {
  color: var(--primary-blue);
}

.team-photo-initials {
  display: inline-grid;
  place-items: center;
  width: 4.8rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--primary-blue);
  color: var(--text-inverse);
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: 0.08em;
}

.team-photo figcaption {
  margin: 0;
  color: var(--primary-blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.team-card-body {
  display: grid;
  gap: 1rem;
}

.team-card-head {
  display: grid;
  gap: 0.35rem;
}

.team-card-head .pill {
  justify-self: start;
}

.team-role,
.team-summary {
  margin: 0;
}

.team-role {
  color: var(--text-muted);
  font-weight: 700;
}

.team-details {
  display: grid;
  gap: 0.75rem;
  margin: 0;
}

.team-details div {
  padding: 0.85rem 0.95rem;
  border-radius: 1rem;
  border: 1px solid rgba(var(--primary-rgb), 0.08);
  background: rgba(var(--primary-rgb), 0.05);
}

.team-details dt {
  margin: 0 0 0.28rem;
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.team-details dd {
  margin: 0;
  color: var(--text-main);
  font-weight: 600;
}

.team-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.team-tags li {
  padding: 0.55rem 0.82rem;
  border-radius: 999px;
  background: rgba(var(--cta-rgb), 0.92);
  color: var(--primary-blue);
  font-size: 0.78rem;
  font-weight: 700;
}

.project-story-band {
  border-color: rgba(var(--primary-rgb), 0.08);
  background: linear-gradient(180deg, rgba(var(--secondary-rgb), 0.99), rgba(var(--cta-rgb), 0.9));
  box-shadow: 0 1rem 2.4rem rgba(var(--primary-rgb), 0.08);
}

.project-why-band {
  background: linear-gradient(180deg, rgba(var(--secondary-rgb), 0.99), rgba(var(--secondary-rgb), 0.94));
}

.project-story-head {
  max-width: 44rem;
  margin-bottom: 1.35rem;
}

.project-story-head h2,
.partner-wall-head h2 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2.25rem, 8vw, 4.3rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.project-story-head h2 {
  max-width: 10ch;
}

.project-story-head p:last-child,
.partner-wall-head p:last-child {
  margin-top: 0.95rem;
  color: var(--muted);
}

.project-story-grid,
.partner-logo-grid {
  display: grid;
  gap: 1rem;
}

.project-story-card {
  height: 100%;
  padding: 1.15rem;
  border: 1px solid rgba(var(--primary-rgb), 0.08);
  background: rgba(var(--secondary-rgb), 0.52);
  box-shadow: none;
}

.project-story-card h3 {
  color: var(--text);
}

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

.partner-wall {
  border-color: rgba(var(--primary-rgb), 0.08);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 1rem 2.2rem rgba(var(--primary-rgb), 0.08);
}

.partner-wall-head {
  max-width: 34rem;
  margin: 0 auto 1.35rem;
  text-align: center;
}

.partner-logo {
  display: grid;
  place-items: center;
  min-height: 6.8rem;
  padding: 1.15rem;
  border: 1px solid rgba(var(--primary-rgb), 0.08);
  border-radius: 1rem;
  background: linear-gradient(180deg, rgba(var(--secondary-rgb), 0.94), rgba(var(--cta-rgb), 0.52));
  text-align: center;
}

.partner-logo span {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1rem, 4vw, 1.38rem);
  font-weight: 700;
  letter-spacing: 0.015em;
  color: var(--secondary);
}

.section {
  padding: 3.5rem 0;
}

.section-blue {
  position: relative;
  background: var(--primary-blue);
  color: var(--text-inverse);
  overflow: clip;
}

.section-blue::before,
.section-blue::after {
  content: "";
  position: absolute;
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  border: 1.35rem solid rgba(243, 238, 230, 0.14);
  pointer-events: none;
}

.section-blue::before {
  top: -5rem;
  left: -4rem;
}

.section-blue::after {
  right: -4rem;
  bottom: -5rem;
}

.section-blue .section-head h2,
.section-blue .section-head p,
.section-blue .card h3,
.section-blue .card p,
.section-blue .timeline-item h3,
.section-blue .timeline-item p,
.section-blue .surface p,
.section-blue .text-block p {
  color: var(--text-inverse);
}

.section-blue .section-head p:last-child,
.section-blue .timeline-item p,
.section-blue .card p,
.section-blue .surface p {
  color: var(--text-inverse-soft);
}

.section-blue .eyebrow {
  color: var(--accent-secondary);
}

.section-blue .cards > .surface,
.section-blue .timeline > .surface,
.section-blue .stat-grid > .surface {
  border-color: rgba(243, 238, 230, 0.18);
}

.section-blue .card-number,
.section-blue .pill {
  background: var(--accent-secondary);
  color: var(--brand-night);
}

.section-head {
  max-width: 44rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.section-head p:last-child {
  margin-top: 0.9rem;
}

.stat-grid {
  display: grid;
  gap: 1rem;
}

.stat {
  padding: 1rem;
}

.stat strong {
  display: block;
  margin-top: 0.55rem;
  font-size: 1.05rem;
}

.stats-showcase {
  overflow: clip;
}

.stats-showcase-layout {
  display: grid;
  gap: 1.2rem;
  align-items: start;
}

.stats-showcase-copy {
  max-width: 37rem;
}

.stats-showcase-copy h2 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(3.2rem, 11vw, 6.4rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
  text-wrap: balance;
  color: var(--text-inverse);
}

.stats-showcase-copy p:last-child {
  max-width: 34rem;
  margin-top: 1.15rem;
  color: var(--text-inverse-soft);
  font-size: 1.04rem;
}

.stats-showcase-grid {
  gap: 1rem;
}

.stat-card {
  position: relative;
  height: 100%;
  padding: 1.35rem;
  overflow: hidden;
  border: 1px solid rgba(243, 238, 230, 0.18);
  background: linear-gradient(180deg, rgba(243, 238, 230, 0.08), rgba(243, 238, 230, 0.04));
  backdrop-filter: blur(8px);
  transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.stat-card ul {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.9rem;
  line-height: 1.55;
  opacity: 0.88;
}

.stat-card ul li + li {
  margin-top: 0.25rem;
}

.stat-card::before {
  content: "";
  position: absolute;
  right: -2.8rem;
  bottom: -3.6rem;
  width: 10.5rem;
  height: 10.5rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--cta-rgb), 0.26), transparent 68%);
  pointer-events: none;
}

.stat-card:hover,
.stat-card:focus-within {
  transform: translateY(-0.25rem);
  border-color: rgba(243, 238, 230, 0.28);
  background: linear-gradient(180deg, rgba(243, 238, 230, 0.12), rgba(243, 238, 230, 0.05));
}

.stat-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.2rem;
  padding: 0 0.9rem;
  margin: 0 0 1rem;
  border-radius: 999px;
  background: rgba(var(--cta-rgb), 0.96);
  color: var(--brand-night);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.stat-value {
  display: block;
  margin: 0 0 0.45rem;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(4.8rem, 16vw, 8rem);
  line-height: 0.84;
  letter-spacing: -0.08em;
  color: var(--text-inverse);
  font-variant-numeric: tabular-nums;
  text-shadow: 0 0.18rem 0 rgba(var(--primary-rgb), 0.18);
  transform-origin: left center;
  will-change: transform, opacity;
}

.stat-card h3 {
  max-width: 12ch;
  margin-bottom: 0.75rem;
  font-size: clamp(1.38rem, 4vw, 1.95rem);
  color: var(--text-inverse);
}

.stat-card p:last-child {
  max-width: 26ch;
  margin: 0;
  color: var(--text-inverse-soft);
  font-size: 1rem;
}

.stat-card.is-visible .stat-value {
  animation: stat-impact-in 0.72s cubic-bezier(0.2, 0.9, 0.2, 1) both, stat-breathe 4.8s ease-in-out 0.72s infinite;
}

.stats-showcase .stat-card {
  border-color: rgba(243, 238, 230, 0.16);
  background: linear-gradient(180deg, rgba(243, 238, 230, 0.1), rgba(243, 238, 230, 0.05));
}

.stats-showcase .stat-card .stat-kicker {
  padding: 0 1rem;
  color: var(--primary-blue);
  background: rgba(var(--cta-rgb), 1);
  box-shadow: 0 0.55rem 1.2rem rgba(var(--primary-rgb), 0.16), inset 0 0 0 1px rgba(var(--primary-rgb), 0.1);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-shadow: none;
}

.stats-showcase .stat-value {
  margin-bottom: 0.6rem;
  font-size: clamp(4.2rem, 14vw, 7.2rem);
  letter-spacing: -0.06em;
  text-shadow: 0 0.18rem 0 rgba(var(--primary-rgb), 0.24);
}

.stats-showcase .stat-card h3 {
  max-width: 10ch;
  font-size: clamp(1.22rem, 3.6vw, 1.72rem);
  line-height: 1.02;
  text-wrap: balance;
  color: var(--secondary);
}

.stats-source {
  margin-top: 1.25rem;
  font-size: 0.72rem;
  color: rgba(var(--secondary-rgb), 0.45);
  text-align: right;
}

.stats-showcase .stat-card p:last-child {
  max-width: 24ch;
  color: rgba(var(--secondary-rgb), 0.96);
  font-size: 1.05rem;
  line-height: 1.62;
}

.wheel-stage {
  position: relative;
  min-height: 22rem;
  border-radius: 1.35rem;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background:
    linear-gradient(180deg, rgba(var(--secondary-rgb), 0.78), rgba(var(--cta-rgb), 0.92)),
    var(--bg-soft);
  box-shadow: none;
}

.hero-product .wheel-stage {
  background:
    linear-gradient(135deg, rgba(var(--secondary-rgb), 0.98), rgba(var(--cta-rgb), 0.92)),
    var(--bg-soft);
  border-color: rgba(243, 238, 230, 0.18);
  transform: translateY(0.15rem) rotate(1.25deg);
}

.hero-home .wheel-stage {
  background:
    radial-gradient(circle at 50% 48%, rgba(var(--secondary-rgb), 0.58), transparent 26%),
    radial-gradient(circle at 18% 82%, rgba(var(--cta-rgb), 0.26), transparent 12rem),
    radial-gradient(circle at 84% 14%, rgba(var(--primary-rgb), 0.12), transparent 11rem),
    linear-gradient(135deg, rgba(var(--secondary-rgb), 0.99), rgba(var(--cta-rgb), 0.95)),
    var(--bg-soft);
  border-color: rgba(var(--primary-rgb), 0.14);
  box-shadow:
    inset 0 0 0 1px rgba(243, 238, 230, 0.18),
    0 1.2rem 2.8rem rgba(var(--primary-rgb), 0.1);
  transform: rotate(-1.15deg) translateY(0.15rem);
  isolation: isolate;
}

.hero-home .wheel-stage::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 28%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(var(--primary-rgb), 0.36), transparent);
  transform: rotate(-7deg);
  z-index: 0;
}

.hero-home .wheel-stage::after {
  content: "";
  position: absolute;
  inset: 6% 7%;
  border-radius: 1.45rem;
  background:
    radial-gradient(circle at 50% 50%, transparent 0 34%, rgba(var(--primary-rgb), 0.08) 34.4%, rgba(var(--primary-rgb), 0.08) 35%, transparent 35.4%),
    repeating-linear-gradient(0deg, transparent 0 2.9rem, rgba(var(--primary-rgb), 0.035) 2.9rem 2.98rem),
    repeating-linear-gradient(90deg, transparent 0 2.9rem, rgba(var(--primary-rgb), 0.03) 2.9rem 2.98rem);
  opacity: 0.7;
  pointer-events: none;
  z-index: 0;
}

.glow {
  position: absolute;
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  filter: blur(44px);
}

.glow-a {
  top: 1.5rem;
  right: 0.5rem;
  background: rgba(var(--secondary-rgb), 0.18);
}

.glow-b {
  left: 0.5rem;
  bottom: 1.5rem;
  background: rgba(var(--cta-rgb), 0.22);
}

.hero-home .glow {
  filter: blur(54px);
  opacity: 0.95;
  z-index: 0;
}

.hero-home .glow-a {
  top: 0.7rem;
  right: -0.25rem;
  width: 13.5rem;
  height: 13.5rem;
  background: rgba(var(--secondary-rgb), 0.32);
  animation: hero-glow-drift 12s ease-in-out infinite;
}

.hero-home .glow-b {
  left: -0.35rem;
  bottom: 0.4rem;
  width: 14rem;
  height: 14rem;
  background: rgba(var(--cta-rgb), 0.3);
  animation: hero-glow-drift 10s ease-in-out infinite reverse;
}

.wheel {
  position: absolute;
  inset: 50%;
  width: min(15rem, 70vw);
  aspect-ratio: 1;
  margin: calc(min(15rem, 70vw) / -2);
  animation: wheel-spin 16s linear infinite;
}

.rim,
.wheel::before,
.wheel::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.rim {
  inset: 0;
  border: 14px solid var(--primary-blue);
  box-shadow:
    0 0 0 8px rgba(var(--cta-rgb), 0.2),
    inset 0 0 0 10px rgba(var(--secondary-rgb), 0.3);
}

.wheel::before {
  inset: 1.9rem;
  border: 1px dashed rgba(255, 255, 255, 0.18);
}

.wheel::after {
  inset: 4.2rem;
  background: radial-gradient(circle, rgba(var(--secondary-rgb), 0.2), transparent 72%);
}

.hero-home .wheel {
  width: min(16.4rem, 72vw);
  margin: calc(min(16.4rem, 72vw) / -2);
  animation: wheel-spin 18s linear infinite;
  filter: drop-shadow(0 1.25rem 1.5rem rgba(var(--primary-rgb), 0.16));
  z-index: 1;
}

.hero-home .wheel::before {
  inset: 1.2rem;
  border: 1px dashed rgba(var(--secondary-rgb), 0.32);
  box-shadow:
    inset 0 0 0 0.7rem rgba(var(--primary-rgb), 0.06),
    0 0 0 0.24rem rgba(var(--secondary-rgb), 0.08);
}

.hero-home .wheel::after {
  inset: 3.3rem;
  border: 1px solid rgba(var(--secondary-rgb), 0.24);
  background:
    radial-gradient(circle at 50% 45%, rgba(var(--secondary-rgb), 0.42), rgba(var(--cta-rgb), 0.16) 44%, transparent 74%);
  box-shadow: inset 0 0 0 1.1rem rgba(var(--primary-rgb), 0.05);
}

.hub {
  position: absolute;
  inset: 50%;
  width: 4rem;
  height: 4rem;
  margin: -2rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-secondary), var(--sand));
  box-shadow: 0 0 0 12px rgba(var(--cta-rgb), 0.18);
}

.spoke {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6.8rem;
  height: 0.9rem;
  margin-top: -0.45rem;
  margin-left: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(var(--primary-rgb), 0.96), rgba(var(--cta-rgb), 0.56));
  transform-origin: left center;
  box-shadow: none;
}

.spoke-a {
  transform: rotate(15deg);
}

.spoke-b {
  transform: rotate(135deg);
}

.spoke-c {
  transform: rotate(255deg);
}

.hero-home .rim {
  inset: 0;
  border: none;
  background: conic-gradient(
    from 220deg,
    rgba(var(--primary-rgb), 1),
    rgba(var(--primary-rgb), 0.86) 28%,
    rgba(var(--secondary-rgb), 0.92) 40%,
    rgba(var(--cta-rgb), 0.98) 58%,
    rgba(var(--primary-rgb), 0.96) 100%
  );
  box-shadow:
    0 0 0 0.55rem rgba(var(--secondary-rgb), 0.24),
    inset 0 0 0 0.95rem rgba(var(--secondary-rgb), 0.12),
    inset 0 0 0 1.8rem rgba(var(--primary-rgb), 0.98),
    inset 0 0 0 2.45rem rgba(var(--cta-rgb), 0.14),
    0 1rem 2.2rem rgba(var(--primary-rgb), 0.12);
}

.hero-home .rim::before,
.hero-home .rim::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.hero-home .rim::before {
  inset: 0.95rem;
  border: 1px solid rgba(var(--secondary-rgb), 0.2);
}

.hero-home .rim::after {
  inset: 1.55rem;
  border: 1px solid rgba(var(--cta-rgb), 0.3);
  border-top-color: rgba(var(--secondary-rgb), 0.78);
  border-left-color: rgba(var(--secondary-rgb), 0.44);
}

.hero-home .hub {
  width: 4.7rem;
  height: 4.7rem;
  margin: -2.35rem;
  background: radial-gradient(
    circle at 35% 30%,
    rgba(255, 255, 255, 0.72),
    rgba(var(--cta-rgb), 0.95) 34%,
    rgba(var(--primary-rgb), 0.84) 100%
  );
  box-shadow:
    0 0 0 0.52rem rgba(var(--secondary-rgb), 0.16),
    0 0 0 1.38rem rgba(var(--cta-rgb), 0.18),
    0 0.9rem 1.5rem rgba(var(--primary-rgb), 0.22);
}

.hero-home .hub::before,
.hero-home .hub::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.hero-home .hub::before {
  inset: 1rem;
  background: var(--primary-blue);
  box-shadow: inset 0 0 0 0.28rem rgba(var(--secondary-rgb), 0.24);
}

.hero-home .hub::after {
  inset: 50%;
  width: 0.55rem;
  height: 0.55rem;
  margin: -0.275rem;
  background: var(--secondary);
  box-shadow: 0 0 0 0.2rem rgba(var(--primary-rgb), 0.22);
}

.hero-home .spoke {
  width: 7.45rem;
  height: 0.72rem;
  margin-top: -0.36rem;
  background: linear-gradient(
    90deg,
    rgba(var(--secondary-rgb), 0.96),
    rgba(var(--cta-rgb), 0.92) 24%,
    rgba(var(--primary-rgb), 0.96)
  );
  box-shadow:
    0 0 0 1px rgba(var(--secondary-rgb), 0.08),
    0 0.35rem 0.75rem rgba(var(--primary-rgb), 0.12);
}

.hero-home .spoke::after {
  content: "";
  position: absolute;
  inset: 0.12rem 0.35rem 0.12rem 1.1rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.3), transparent 56%);
}

.wheel-tag {
  position: absolute;
  padding: 0.45rem 0.7rem;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 999px;
  background: rgba(243, 238, 230, 0.9);
  color: var(--text);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.wheel-tag-top {
  top: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
}

.wheel-tag-right {
  right: 0.8rem;
  top: 50%;
  transform: translateY(-50%);
}

.wheel-tag-bottom {
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
}

.hero-home .wheel-tag {
  padding: 0.55rem 0.82rem;
  border-color: rgba(var(--primary-rgb), 0.12);
  background: rgba(var(--secondary-rgb), 0.92);
  color: var(--primary-blue);
  box-shadow: 0 0.55rem 1.1rem rgba(var(--primary-rgb), 0.08);
  backdrop-filter: blur(10px);
  z-index: 2;
}

.hero-home .wheel-tag::before {
  content: "";
  position: absolute;
  background: linear-gradient(180deg, rgba(var(--primary-rgb), 0.3), transparent);
}

.hero-home .wheel-tag-top {
  top: 1.45rem;
}

.hero-home .wheel-tag-top::before {
  left: 50%;
  top: 100%;
  width: 1px;
  height: 3rem;
  transform: translateX(-50%);
}

.hero-home .wheel-tag-right {
  right: 1.05rem;
}

.hero-home .wheel-tag-right::before {
  right: 100%;
  top: 50%;
  width: 3.5rem;
  height: 1px;
  transform: translateY(-50%);
  background: linear-gradient(90deg, rgba(var(--primary-rgb), 0.24), transparent);
}

.hero-home .wheel-tag-bottom {
  bottom: 1.45rem;
}

.hero-home .wheel-tag-bottom::before {
  left: 50%;
  bottom: 100%;
  width: 1px;
  height: 2.8rem;
  transform: translateX(-50%);
}

.diagram-ring {
  position: absolute;
  inset: 50%;
  width: 14rem;
  height: 14rem;
  margin: -7rem;
  border-radius: 50%;
  border: 1px solid rgba(var(--primary-rgb), 0.18);
  box-shadow:
    0 0 0 1.5rem rgba(var(--cta-rgb), 0.18),
    0 0 0 4rem rgba(var(--primary-rgb), 0.03);
}

.diagram-core {
  position: absolute;
  inset: 50%;
  display: grid;
  place-items: center;
  width: 6.75rem;
  height: 6.75rem;
  margin: -3.375rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-secondary), var(--sand));
  color: var(--brand-night);
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.diagram-tag {
  position: absolute;
  padding: 0.55rem 0.85rem;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 999px;
  background: rgba(243, 238, 230, 0.94);
  color: var(--text);
  font-weight: 600;
}

.tag-top {
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
}

.tag-right {
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
}

.tag-bottom {
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
}

.tag-left {
  top: 50%;
  left: 1rem;
  transform: translateY(-50%);
}

.timeline {
  display: grid;
  gap: 1rem;
}

.timeline-item {
  padding: 1.1rem;
}

.timeline-item strong {
  display: inline-grid;
  place-items: center;
  width: 2.9rem;
  aspect-ratio: 1;
  margin-bottom: 0.75rem;
  border-radius: 0.7rem;
  background: linear-gradient(135deg, var(--accent-secondary), var(--sand));
  color: var(--brand-night);
  font-family: "Montserrat", sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
}

.quote-card blockquote {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.55;
}

.faq-list {
  display: grid;
  gap: 0.9rem;
}

.faq-item {
  padding: 0.2rem 1rem 1rem;
}

.faq-item summary {
  padding: 0.95rem 0 0.75rem;
  list-style: none;
  font-weight: 700;
  cursor: pointer;
}

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

.faq-item[open] summary {
  color: var(--accent);
}

.faq-item ul {
  padding-left: 1rem;
}

.cta-band {
  padding: 1.45rem;
}

.cta-band .button-row {
  margin-top: 1.2rem;
}

.cta-band p {
  color: var(--muted);
  max-width: 52ch;
  font-size: 1.04rem;
  line-height: 1.72;
}

.surface-accent.cta-band p {
  color: var(--text-inverse-soft);
}

.surface-accent .button {
  background: var(--sand);
  color: var(--primary-blue);
  border-color: var(--sand);
}

.surface-accent .button:hover,
.surface-accent .button:focus-visible {
  box-shadow: 0 8px 18px rgba(17, 17, 17, 0.12);
}

.surface-accent .button-outline {
  background: rgba(243, 238, 230, 0.1);
  color: var(--text-inverse);
  border-color: rgba(243, 238, 230, 0.5);
}

.surface-accent .button-outline:hover,
.surface-accent .button-outline:focus-visible {
  background: rgba(243, 238, 230, 0.18);
  color: var(--text-inverse);
  border-color: var(--sand);
}

.contact-layout {
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 1.1rem;
  padding: 1.15rem;
}

.contact-form-intro {
  display: grid;
  gap: 0.5rem;
}

.contact-form-intro .eyebrow,
.contact-form-intro p {
  margin: 0;
}

.contact-form-intro p {
  max-width: min(46rem, 100%);
  line-height: 1.62;
}

.contact-form-intro h2 {
  margin: 0;
  max-width: min(17.5ch, 100%);
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2rem, 7vw, 3rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.contact-type-switch {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  border: 0;
}

.contact-type-switch legend {
  padding: 0;
  font-weight: 700;
}

.contact-type-options,
.contact-grid {
  display: grid;
  gap: 1rem;
}

.contact-type-option {
  position: relative;
  display: block;
  cursor: pointer;
}

.contact-type-option input {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.contact-type-card {
  display: grid;
  gap: 0.35rem;
  min-height: 100%;
  padding: 1rem;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 1rem;
  background: rgba(var(--secondary-rgb), 0.88);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-type-card strong {
  font-size: 1rem;
}

.contact-type-card small {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.6;
}

.contact-type-option:hover .contact-type-card {
  transform: translateY(-2px);
}

.contact-type-option input:checked + .contact-type-card {
  border-color: rgba(var(--primary-rgb), 0.4);
  background: rgba(var(--cta-rgb), 0.7);
  box-shadow: 0 8px 20px rgba(var(--primary-rgb), 0.08);
}

.contact-type-option input:focus-visible + .contact-type-card {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.contact-form label {
  display: grid;
  gap: 0.5rem;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 0.9rem;
  background: rgba(var(--secondary-rgb), 0.9);
  color: var(--text);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(var(--primary-rgb), 0.48);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(var(--primary-rgb), 0.42);
  box-shadow: 0 0 0 4px rgba(var(--cta-rgb), 0.3);
  outline: none;
}

.contact-grid-span {
  grid-column: 1 / -1;
}

.contact-grid [data-organization-field] {
  grid-column: 1 / -1;
}

.form-note {
  margin: 0;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(var(--primary-rgb), 0.12);
  border-radius: 0.95rem;
  background: rgba(var(--primary-rgb), 0.04);
  color: var(--muted);
  line-height: 1.65;
}

.form-status {
  min-height: 1.4rem;
  margin: 0;
  color: var(--accent);
}

.contact-box {
  display: grid;
  gap: 1rem;
}

.contact-box a {
  color: var(--accent);
  font-weight: 700;
}

.site-footer {
  position: relative;
  padding: 2.75rem 0 1.35rem;
  border-top: 0;
  background:
    radial-gradient(circle at 8% 18%, rgba(var(--cta-rgb), 0.1), transparent 14rem),
    radial-gradient(circle at 92% 22%, rgba(var(--secondary-rgb), 0.08), transparent 14rem),
    linear-gradient(180deg, var(--primary-blue) 0%, #06186f 100%);
  overflow: clip;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(100% - 2rem, 75rem);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(
    90deg,
    rgba(243, 238, 230, 0),
    rgba(243, 238, 230, 0.3),
    rgba(243, 238, 230, 0)
  );
}

.footer-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  width: fit-content;
  padding: 0.72rem 0.9rem;
  border: 1px solid rgba(var(--primary-rgb), 0.08);
  border-radius: 1.2rem;
  background: rgba(var(--secondary-rgb), 0.98);
  box-shadow: 0 0.7rem 1.6rem rgba(17, 17, 17, 0.08);
}

.footer-mark {
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(17, 17, 17, 0.12);
}

.footer-copy {
  display: grid;
  gap: 0.18rem;
  align-content: center;
}

.site-footer .footer-title {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.015em;
  line-height: 0.96;
  color: var(--text);
}

.site-footer .footer-kicker {
  display: block;
  color: var(--primary-blue);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.site-footer .footer-lockup,
.site-footer .footer-lockup:hover,
.site-footer .footer-lockup:focus-visible,
.site-footer .footer-lockup .footer-copy {
  color: var(--text);
}

.site-footer p,
.site-footer strong,
.site-footer a {
  color: rgba(243, 238, 230, 0.84);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal="left"] {
  transform: translateX(24px);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

@keyframes stat-impact-in {
  0% {
    opacity: 0;
    transform: translateY(1rem) scale(0.72) rotate(-4deg);
    filter: blur(4px);
  }

  62% {
    opacity: 1;
    transform: translateY(-0.12rem) scale(1.08) rotate(0deg);
    filter: blur(0);
  }

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

@keyframes stat-breathe {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-0.14rem) scale(1.02);
  }
}

@keyframes hero-ornament-sway {
  0%,
  100% {
    transform: rotate(0deg) translate3d(0, 0, 0);
    opacity: 0.92;
  }

  50% {
    transform: rotate(9deg) translate3d(0.45rem, -0.6rem, 0);
    opacity: 1;
  }
}

@keyframes hero-ornament-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.88;
  }

  50% {
    transform: translate3d(-0.85rem, 0.65rem, 0) scale(1.04);
    opacity: 1;
  }
}

@keyframes hero-grid-sway {
  0%,
  100% {
    transform: rotate(0deg) scale(1);
    opacity: 0.24;
  }

  50% {
    transform: rotate(6deg) scale(1.04);
    opacity: 0.36;
  }
}

@keyframes hero-ring-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes hero-contact-bar {
  0%,
  100% {
    transform: translateX(0) scaleX(1);
    opacity: 0.92;
  }

  50% {
    transform: translateX(-0.35rem) scaleX(1.04);
    opacity: 1;
  }
}

@keyframes hero-breadcrumb-in {
  0% {
    opacity: 0;
    transform: translateY(0.8rem);
    filter: blur(6px);
  }

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

@keyframes hero-chip-in {
  0% {
    opacity: 0;
    transform: translateY(0.9rem) scale(0.92);
    filter: blur(6px);
  }

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

@keyframes hero-heading-in {
  0% {
    opacity: 0;
    transform: translateY(1.1rem) scale(0.96);
    filter: blur(10px);
  }

  60% {
    opacity: 1;
    transform: translateY(-0.12rem) scale(1.01);
    filter: blur(0);
  }

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

@keyframes hero-copy-in {
  0% {
    opacity: 0;
    transform: translateY(1rem);
    filter: blur(7px);
  }

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

@keyframes hero-button-in {
  0% {
    opacity: 0;
    transform: translateY(0.8rem) scale(0.94);
    filter: blur(5px);
  }

  70% {
    opacity: 1;
    transform: translateY(-0.08rem) scale(1.02);
    filter: blur(0);
  }

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

@keyframes hero-list-in {
  0% {
    opacity: 0;
    transform: translateX(-0.6rem);
    filter: blur(5px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
  }
}

@keyframes hero-panel-in {
  0% {
    opacity: 0;
    transform: translateY(1rem) scale(0.95);
    filter: blur(10px);
  }

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

@keyframes hero-panel-drift {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -0.45rem;
  }
}

@keyframes hero-chip-float {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -0.28rem;
  }
}

@keyframes hero-image-glide {
  0%,
  100% {
    transform: scale(1) translate3d(0, 0, 0);
    filter: saturate(1);
  }

  50% {
    transform: scale(1.04) translate3d(-0.35rem, -0.2rem, 0);
    filter: saturate(1.08);
  }
}

@keyframes hero-stage-entry {
  0% {
    opacity: 0;
    filter: blur(10px);
    scale: 0.9;
  }

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

@keyframes hero-stage-home {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -0.45rem;
  }
}

@keyframes hero-stage-product {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -0.35rem;
  }
}

@keyframes hero-tag-drift {
  0%,
  100% {
    translate: 0 0;
    box-shadow: 0 0.55rem 1.1rem rgba(var(--primary-rgb), 0.08);
  }

  50% {
    translate: 0 -0.28rem;
    box-shadow: 0 0.9rem 1.4rem rgba(var(--primary-rgb), 0.14);
  }
}

@keyframes hero-glow-drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(0.65rem, -0.8rem, 0) scale(1.06);
  }
}

@keyframes wheel-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@media (min-width: 48rem) {
  :root {
    --container: min(100% - 2rem, 72rem);
  }

  .button-row {
    display: flex;
    flex-wrap: wrap;
  }

  .button-row .button {
    width: auto;
  }

  .cards-2,
  .cards-3,
  .cards-4,
  .stat-grid,
  .timeline,
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-story-grid,
  .partner-logo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .contact-type-options,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wheel-stage {
    min-height: 25rem;
  }

  .wheel {
    width: 17rem;
    margin: -8.5rem;
  }

  .hero-home .wheel {
    width: 18.2rem;
    margin: -9.1rem;
  }

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

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

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

  .hero-usage-feature,
  .hero-usage-tile:last-child {
    grid-column: 1 / -1;
  }

  .hero-copy h1 {
    font-size: clamp(3.2rem, 8.4vw, 5.2rem);
  }
}

@media (min-width: 68rem) {
  :root {
    --container: min(100% - 2.5rem, 75rem);
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    inset: auto;
    display: flex;
    align-items: center;
    gap: 1.15rem;
    padding: 0;
    background: transparent;
    border: 0;
    transform: none;
    opacity: 1;
    visibility: visible;
  }

  .site-nav .button {
    width: auto;
  }

  .stats-showcase-layout {
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    gap: 1.6rem;
    align-items: start;
  }

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

  .stat-card {
    min-height: 18rem;
  }

  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: start;
    gap: 1.5rem;
  }

  .hero-home .hero-grid {
    grid-template-columns: 0.94fr 1.06fr;
    align-items: center;
  }

  .hero-product .hero-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .hero-usages .hero-grid {
    grid-template-columns: 1.08fr 0.92fr;
    align-items: start;
  }

  .hero-usages .hero-usage-mosaic {
    grid-auto-rows: minmax(0, auto);
  }

  .hero-contact .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
  }

  .hero-meta-grid,
  .hero-contact-points {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .hero-visual-product {
    grid-template-columns: minmax(0, 0.38fr) minmax(0, 0.62fr);
    grid-template-areas:
      "note stage"
      "strip strip";
    align-items: stretch;
  }

  .hero-product-note {
    grid-area: note;
  }

  .hero-product .wheel-stage {
    grid-area: stage;
    min-height: 28rem;
  }

  .hero-product-strip {
    grid-area: strip;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .split-grid {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 1.5rem;
  }

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

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

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

  .page-hero {
    padding: 4rem 0 5.5rem;
  }

  .section {
    padding: 5rem 0;
  }

  .cta-band {
    padding: 1.8rem;
  }
}

@media (min-width: 82rem) {
  .hero-home .hero-visual-home {
    grid-template-columns: minmax(0, 0.35fr) minmax(0, 0.65fr);
    grid-template-areas:
      "brand stage"
      "strip stage";
    align-items: start;
  }

  .hero-home .hero-brand-card {
    grid-area: brand;
    max-width: none;
    margin: 0.7rem 0 0;
    transform: translateX(0.7rem);
  }

  .hero-home .hero-home-strip {
    grid-area: strip;
    grid-template-columns: 1fr;
    align-self: start;
  }

  .hero-home .wheel-stage {
    grid-area: stage;
    min-height: 29rem;
  }

  .hero-home .wheel {
    width: 19.1rem;
    margin: -9.55rem;
  }

  .hero-contact .hero-visual-contact {
    grid-template-columns: minmax(0, 0.62fr) minmax(0, 0.38fr);
    align-items: stretch;
  }

  .hero-contact .hero-contact-card {
    min-height: 100%;
  }
}

:root {
  --font-display: "Montserrat", sans-serif;
  --text-muted: #615952;
  --text-main: #171513;
  --shadow-soft: 0 18px 42px rgba(var(--primary-rgb), 0.08);
  --shadow-deep: 0 28px 56px rgba(var(--primary-rgb), 0.16);
  --shadow-dark: 0 26px 56px rgba(5, 12, 54, 0.34);
}

body {
  background:
    radial-gradient(circle at top left, rgba(var(--cta-rgb), 0.5), transparent 26rem),
    linear-gradient(180deg, #f7f3ec 0%, var(--bg) 24%, #ede5da 100%);
}

.site-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 15;
  background:
    radial-gradient(circle at top, rgba(var(--cta-rgb), 0.2), transparent 22rem),
    rgba(6, 19, 89, 0.48);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}

body.nav-open .site-shell::before {
  opacity: 1;
}

.site-header {
  background: rgba(243, 238, 230, 0.82);
  border-bottom-color: rgba(var(--primary-rgb), 0.08);
  box-shadow: 0 0.8rem 2rem rgba(var(--primary-rgb), 0.07);
}

.site-header::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(var(--primary-rgb), 0),
    rgba(var(--primary-rgb), 0.14),
    rgba(var(--primary-rgb), 0)
  );
}

.nav-toggle {
  border-color: rgba(var(--primary-rgb), 0.14);
  background: rgba(var(--secondary-rgb), 0.66);
  box-shadow: 0 0.65rem 1.4rem rgba(var(--primary-rgb), 0.08);
  transition: transform 0.24s ease, background 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  transform: translateY(-1px);
  background: rgba(var(--secondary-rgb), 0.88);
  border-color: rgba(var(--primary-rgb), 0.24);
  box-shadow: 0 1rem 1.8rem rgba(var(--primary-rgb), 0.12);
}

.site-nav {
  inset: calc(var(--header-height) + 0.4rem) 0.75rem auto;
  gap: 0.6rem;
  padding: 0.8rem;
  border: 1px solid rgba(var(--primary-rgb), 0.14);
  border-radius: 1.2rem;
  background: linear-gradient(180deg, rgba(var(--secondary-rgb), 0.98), rgba(255, 255, 255, 0.94));
  box-shadow: var(--shadow-deep);
  backdrop-filter: blur(18px);
  transform: translateY(-1rem) scale(0.98);
}

.nav-open .site-nav {
  transform: translateY(0) scale(1);
}

.site-nav a {
  border-radius: 0.95rem;
  transition: transform 0.24s ease, color 0.24s ease, background 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.site-nav a:not(.button) {
  padding: 0.72rem 0.9rem;
  border: 1px solid transparent;
  background: rgba(var(--primary-rgb), 0.035);
}

.site-nav a[aria-current="page"]:not(.button) {
  color: var(--primary-blue);
  border-color: rgba(var(--primary-rgb), 0.12);
  background: rgba(var(--primary-rgb), 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  transform: translateY(-1px);
}

.site-nav a:not(.button):hover,
.site-nav a:not(.button):focus-visible {
  color: var(--accent-tertiary);
  border-color: rgba(var(--primary-rgb), 0.14);
  background: rgba(var(--primary-rgb), 0.065);
}

.button {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-color: rgba(var(--primary-rgb), 0.14);
  background: linear-gradient(180deg, rgba(var(--cta-rgb), 0.98), rgba(var(--cta-rgb), 0.9));
  box-shadow: 0 16px 32px rgba(var(--primary-rgb), 0.12);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0 32%, rgba(255, 255, 255, 0.44) 46%, transparent 60%);
  transform: translateX(-130%);
  transition: transform 0.55s ease;
  pointer-events: none;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px) scale(1.01);
  border-color: rgba(var(--primary-rgb), 0.22);
  box-shadow: 0 20px 38px rgba(var(--primary-rgb), 0.16);
}

.button:hover::before,
.button:focus-visible::before {
  transform: translateX(130%);
}

.button-outline {
  background: rgba(var(--secondary-rgb), 0.58);
  border-color: rgba(var(--primary-rgb), 0.14);
  box-shadow: 0 12px 24px rgba(var(--primary-rgb), 0.06);
}

.button-outline:hover,
.button-outline:focus-visible {
  background: rgba(var(--cta-rgb), 0.72);
  box-shadow: 0 16px 30px rgba(var(--primary-rgb), 0.1);
}

.page-hero {
  padding: 2.75rem 0 4.3rem;
  box-shadow: inset 0 -1px 0 rgba(var(--secondary-rgb), 0.08);
}

.page-hero::before {
  opacity: 0.62;
  filter: blur(0.25rem);
}

.page-hero::after {
  opacity: 0.92;
}

.breadcrumbs {
  width: fit-content;
  padding: 0.42rem 0.75rem;
  border: 1px solid rgba(var(--secondary-rgb), 0.14);
  border-radius: 999px;
  background: rgba(var(--secondary-rgb), 0.08);
  backdrop-filter: blur(12px);
}

.hero-copy h1 {
  text-shadow: 0 0.12rem 0 rgba(0, 0, 0, 0.12);
}

.hero-copy p,
.section-head p,
.surface p,
.text-block p,
.timeline-item p,
.faq-item p,
.faq-item li,
.contact-list li,
.site-footer p {
  line-height: 1.76;
}

.page-hero .hero-copy p,
.page-hero .hero-list li,
.page-hero .surface p,
.page-hero .breadcrumbs,
.page-hero .breadcrumbs li + li::before {
  color: rgba(var(--secondary-rgb), 0.92);
}

.hero-intro {
  font-size: 1.05rem;
  line-height: 1.8;
}

.surface {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-color: rgba(var(--primary-rgb), 0.1);
  background: linear-gradient(180deg, rgba(var(--secondary-rgb), 0.96), rgba(255, 255, 255, 0.86));
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-soft);
}

.surface::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 40%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
  opacity: 0.72;
  pointer-events: none;
}

.cards > .surface,
.timeline > .surface,
.team-card,
.project-story-card,
.partner-logo,
.contact-form,
.contact-box > .surface,
.quote-card,
.surface-accent.cta-band {
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease, background 0.32s ease;
}

.cards > .surface:hover,
.cards > .surface:focus-within,
.timeline > .surface:hover,
.timeline > .surface:focus-within,
.team-card:hover,
.team-card:focus-within,
.project-story-card:hover,
.project-story-card:focus-within,
.partner-logo:hover,
.partner-logo:focus-within,
.contact-form:hover,
.contact-form:focus-within,
.contact-box > .surface:hover,
.contact-box > .surface:focus-within,
.quote-card:hover,
.quote-card:focus-within,
.surface-accent.cta-band:hover,
.surface-accent.cta-band:focus-within {
  transform: translateY(-4px);
  border-color: rgba(var(--primary-rgb), 0.16);
  box-shadow: var(--shadow-deep);
}

.cover-card img {
  box-shadow: 0 16px 30px rgba(var(--primary-rgb), 0.12);
}

.hero-brand-card,
.hero-contact-card {
  border-color: rgba(var(--secondary-rgb), 0.18);
  background: linear-gradient(180deg, rgba(var(--secondary-rgb), 0.98), rgba(var(--secondary-rgb), 0.92));
  box-shadow: var(--shadow-deep);
}

.hero-meta-grid li {
  background: linear-gradient(180deg, rgba(var(--secondary-rgb), 0.14), rgba(var(--secondary-rgb), 0.06));
  border-color: rgba(var(--secondary-rgb), 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-product-note,
.hero-usage-feature,
.hero-usage-tile,
.hero-contact-mini {
  border-color: rgba(var(--secondary-rgb), 0.22);
  background: linear-gradient(180deg, rgba(var(--secondary-rgb), 0.14), rgba(var(--secondary-rgb), 0.08));
  box-shadow: 0 18px 36px rgba(3, 12, 57, 0.22);
}

.hero-contact .hero-contact-card {
  box-shadow: 0 24px 48px rgba(var(--primary-rgb), 0.2);
}

.hero-contact .hero-contact-mini,
.hero-contact-panel li {
  border-color: rgba(var(--secondary-rgb), 0.3);
  background: linear-gradient(180deg, rgba(var(--secondary-rgb), 0.2), rgba(var(--secondary-rgb), 0.08));
}

.wheel-stage {
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 24px 54px rgba(5, 12, 54, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.wheel-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 38%, rgba(var(--primary-rgb), 0.06));
  pointer-events: none;
}

.section {
  padding: 3.9rem 0;
}

.section-blue {
  background:
    radial-gradient(circle at top left, rgba(var(--cta-rgb), 0.16), transparent 24rem),
    linear-gradient(180deg, #082095 0%, #071a77 52%, #051354 100%);
  isolation: isolate;
}

.section-blue > .container {
  position: relative;
  z-index: 1;
}

.section-blue::before,
.section-blue::after {
  width: 16rem;
  height: 16rem;
  border-width: 1rem;
  opacity: 0.55;
  filter: blur(1px);
}

.section-blue .cards > .surface,
.section-blue .timeline > .surface,
.section-blue .stat-grid > .surface {
  background: linear-gradient(180deg, rgba(var(--secondary-rgb), 0.12), rgba(var(--secondary-rgb), 0.06));
  box-shadow: 0 22px 44px rgba(3, 10, 48, 0.22);
  backdrop-filter: blur(10px);
}

.stats-showcase-copy h2 {
  text-shadow: 0 0.12rem 0 rgba(0, 0, 0, 0.18);
}

.stat-card {
  border-color: rgba(var(--secondary-rgb), 0.2);
  background: linear-gradient(180deg, rgba(var(--secondary-rgb), 0.13), rgba(var(--secondary-rgb), 0.05));
  box-shadow: 0 20px 40px rgba(4, 11, 53, 0.24);
}

.stat-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.1), transparent 28%, transparent 72%, rgba(var(--cta-rgb), 0.08));
  pointer-events: none;
}

.stat-card:hover,
.stat-card:focus-within {
  transform: translateY(-5px);
  border-color: rgba(var(--secondary-rgb), 0.34);
  box-shadow: 0 24px 46px rgba(4, 11, 53, 0.28);
}

.stats-showcase .stat-value {
  text-shadow: 0 0.2rem 0 rgba(var(--primary-rgb), 0.28), 0 0 1.8rem rgba(var(--cta-rgb), 0.06);
}

.team-photo {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7), 0 16px 34px rgba(var(--primary-rgb), 0.08);
}

.team-photo-initials {
  box-shadow: 0 14px 30px rgba(var(--primary-rgb), 0.2);
}

.team-details div {
  background: linear-gradient(180deg, rgba(var(--primary-rgb), 0.06), rgba(var(--primary-rgb), 0.03));
}

.project-story-band,
.partner-wall {
  position: relative;
}

.project-story-band::before,
.partner-wall::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(var(--cta-rgb), 0.3), transparent 24rem);
  opacity: 0.82;
  pointer-events: none;
}

.project-story-card,
.partner-logo {
  box-shadow: 0 16px 32px rgba(var(--primary-rgb), 0.08);
}

.quote-card blockquote {
  font-size: clamp(1.1rem, 3.2vw, 1.45rem);
  line-height: 1.5;
}

.contact-form {
  background: linear-gradient(180deg, rgba(var(--secondary-rgb), 0.98), rgba(255, 255, 255, 0.88));
  box-shadow: var(--shadow-deep);
}

.contact-type-card {
  background: linear-gradient(180deg, rgba(var(--secondary-rgb), 0.94), rgba(var(--secondary-rgb), 0.78));
}

.contact-form input,
.contact-form textarea {
  background: rgba(255, 255, 255, 0.8);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  transition: border-color 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}

.contact-form input:hover,
.contact-form textarea:hover {
  border-color: rgba(var(--primary-rgb), 0.18);
}

.form-note {
  background: linear-gradient(180deg, rgba(var(--primary-rgb), 0.06), rgba(var(--cta-rgb), 0.18));
}

.site-footer {
  background:
    radial-gradient(circle at 12% 16%, rgba(var(--cta-rgb), 0.16), transparent 18rem),
    radial-gradient(circle at 88% 18%, rgba(var(--secondary-rgb), 0.1), transparent 18rem),
    linear-gradient(180deg, #081f8f 0%, #06196d 48%, #040f49 100%);
}

.site-footer::after {
  content: "";
  position: absolute;
  right: -6rem;
  bottom: -5rem;
  width: 20rem;
  height: 20rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--cta-rgb), 0.16), transparent 68%);
  filter: blur(10px);
  animation: footer-orb-drift 18s ease-in-out infinite;
  pointer-events: none;
}

[data-reveal] {
  filter: blur(8px);
  transition: opacity 0.8s cubic-bezier(0.22, 0.9, 0.2, 1), transform 0.8s cubic-bezier(0.22, 0.9, 0.2, 1), filter 0.8s cubic-bezier(0.22, 0.9, 0.2, 1);
}

[data-reveal="left"] {
  transform: translateX(30px);
}

[data-reveal].is-visible {
  filter: none;
}

@media (max-width: 47.99rem) {
  :root {
    --container: min(100% - 1rem, 72rem);
  }

  .header-inner {
    gap: 0.65rem;
  }

  .brand-copy {
    gap: 0.18rem;
  }

  .brand-name {
    font-size: clamp(1.62rem, 6.2vw, 1.9rem);
    line-height: 0.92;
  }

  .brand-tag {
    gap: 0.34rem;
    font-size: 0.5rem;
    letter-spacing: 0.2em;
    line-height: 1.1;
  }

  .brand-tag::before {
    width: 1rem;
  }

  .site-nav {
    max-height: calc(100vh - var(--header-height) - 1rem);
    overflow: auto;
  }

  .page-hero {
    padding: 1.7rem 0 3.1rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.45rem, 11vw, 3.45rem);
  }

  .hero-intro {
    font-size: 1rem;
  }

  .hero-meta-grid li,
  .hero-contact-points li {
    font-size: 0.74rem;
  }

  .wheel-stage {
    min-height: 18.5rem;
  }

  .hero-home .wheel {
    width: 13.6rem;
    margin: -6.8rem;
  }

  .stats-showcase-copy h2 {
    font-size: clamp(2.8rem, 14vw, 4.1rem);
  }

  .stat-card {
    min-height: auto;
  }
}

@media (min-width: 68rem) {
  .site-nav {
    position: static;
    inset: auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    transform: none;
  }

  .site-nav a:not(.button) {
    min-height: 2.7rem;
    padding: 0.55rem 0.85rem;
    background: transparent;
  }

  .site-nav a:not(.button):hover,
  .site-nav a:not(.button):focus-visible,
  .site-nav a[aria-current="page"]:not(.button) {
    background: rgba(var(--primary-rgb), 0.05);
    box-shadow: none;
  }

  .page-hero {
    padding: 4.3rem 0 5.8rem;
  }

  .hero-grid {
    gap: 1.8rem;
  }

  .surface-pad {
    padding: 1.3rem;
  }

  .cta-band {
    padding: 2rem;
  }
}

@keyframes footer-orb-drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(-1.2rem, -1rem, 0) scale(1.08);
  }
}
.cards > .surface,
.timeline > .surface,
.stat-grid > .surface {
  background: linear-gradient(180deg, rgba(var(--secondary-rgb), 0.96), rgba(255, 255, 255, 0.84));
  box-shadow: var(--shadow-soft);
}

.page-hero .button-outline {
  background: rgba(var(--secondary-rgb), 0.14);
  border-color: rgba(var(--secondary-rgb), 0.54);
  box-shadow: 0 16px 32px rgba(3, 12, 57, 0.18);
}

.page-hero .button-outline:hover,
.page-hero .button-outline:focus-visible {
  background: rgba(var(--secondary-rgb), 0.22);
  border-color: rgba(var(--secondary-rgb), 0.72);
}
html {
  scroll-padding-top: calc(var(--header-height) + 1rem);
}

:where([id]) {
  scroll-margin-top: calc(var(--header-height) + 1rem);
}

.hero-grid > *,
.split-grid > *,
.contact-layout > * {
  min-width: 0;
}

@media (min-width: 48rem) {
  .split-grid-reverse > :first-child {
    order: 2;
  }

  .split-grid-reverse > :last-child {
    order: 1;
  }
}

.site-nav {
  overscroll-behavior: contain;
}

.section {
  content-visibility: auto;
  contain-intrinsic-size: 1px 920px;
}
.page-hero .breadcrumbs,
.page-hero .hero-copy > *,
.page-hero .hero-visual article,
.page-hero .hero-visual ul,
.page-hero .hero-visual li,
.page-hero .wheel-tag,
.page-hero .wheel-stage,
.stat-value {
  will-change: transform, opacity;
}

[data-reveal] {
  filter: none;
  transition: opacity 0.55s ease, transform 0.55s ease;
}

[data-reveal].is-visible {
  filter: none;
}

.site-nav,
.breadcrumbs,
.surface,
.hero-meta-grid li,
.stat-card,
.section-blue .cards > .surface,
.section-blue .timeline > .surface,
.section-blue .stat-grid > .surface {
  backdrop-filter: none;
}

.page-hero::before,
.page-hero::after,
.section-blue::before,
.section-blue::after,
.site-footer::after {
  filter: none;
}

.glow {
  width: 8rem;
  height: 8rem;
  filter: none;
  opacity: 0.24;
}

.glow-a,
.glow-b,
.page-hero::before,
.page-hero::after,
.hero-usages::before,
.hero-contact::before,
.site-footer::after {
  animation: none;
}

.hero-home .wheel {
  animation-duration: 24s;
  filter: none;
}

.hero-home .hero-visual.is-visible .hero-brand-card,
.hero-home .hero-visual.is-visible .hero-home-strip li,
.hero-home .hero-visual.is-visible .wheel-stage,
.hero-home .hero-visual.is-visible .cover-card img,
.hero-home .hero-visual.is-visible .wheel-tag-top,
.hero-home .hero-visual.is-visible .wheel-tag-right,
.hero-home .hero-visual.is-visible .wheel-tag-bottom,
.hero-product .hero-visual.is-visible .hero-product-note,
.hero-product .hero-visual.is-visible .wheel-stage,
.hero-product .hero-visual.is-visible .hero-product-strip li,
.hero-usages .hero-visual.is-visible .hero-usage-mosaic > *,
.hero-contact .hero-visual.is-visible .hero-contact-card,
.hero-contact .hero-visual.is-visible .hero-contact-mini,
.hero-contact .hero-visual.is-visible .hero-contact-panel li,
.stat-card.is-visible .stat-value {
  animation-iteration-count: 1;
}

@keyframes stat-impact-in {
  0% {
    opacity: 0;
    transform: translateY(0.7rem) scale(0.86);
  }

  65% {
    opacity: 1;
    transform: translateY(-0.08rem) scale(1.04);
  }

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

@keyframes hero-breadcrumb-in {
  0% {
    opacity: 0;
    transform: translateY(0.6rem);
  }

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

@keyframes hero-chip-in {
  0% {
    opacity: 0;
    transform: translateY(0.75rem) scale(0.96);
  }

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

@keyframes hero-heading-in {
  0% {
    opacity: 0;
    transform: translateY(0.9rem) scale(0.98);
  }

  60% {
    opacity: 1;
    transform: translateY(-0.08rem) scale(1.005);
  }

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

@keyframes hero-copy-in {
  0% {
    opacity: 0;
    transform: translateY(0.8rem);
  }

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

@keyframes hero-button-in {
  0% {
    opacity: 0;
    transform: translateY(0.8rem) scale(0.97);
  }

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

@keyframes hero-list-in {
  0% {
    opacity: 0;
    transform: translateY(0.6rem);
  }

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

@keyframes hero-panel-in {
  0% {
    opacity: 0;
    transform: translateY(0.8rem) scale(0.97);
  }

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

@keyframes hero-stage-entry {
  0% {
    opacity: 0;
    transform: scale(0.94);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 67.99rem) {
  .site-header {
    backdrop-filter: none;
  }

  .hero-home .hero-visual.is-visible .hero-brand-card,
  .hero-home .hero-visual.is-visible .hero-home-strip li,
  .hero-home .hero-visual.is-visible .wheel-stage,
  .hero-home .hero-visual.is-visible .cover-card img,
  .hero-home .hero-visual.is-visible .wheel-tag-top,
  .hero-home .hero-visual.is-visible .wheel-tag-right,
  .hero-home .hero-visual.is-visible .wheel-tag-bottom,
  .hero-product .hero-visual.is-visible .hero-product-note,
  .hero-product .hero-visual.is-visible .wheel-stage,
  .hero-product .hero-visual.is-visible .hero-product-strip li,
  .hero-usages .hero-visual.is-visible .hero-usage-mosaic > *,
  .hero-contact .hero-visual.is-visible .hero-contact-card,
  .hero-contact .hero-visual.is-visible .hero-contact-mini,
  .hero-contact .hero-visual.is-visible .hero-contact-panel li,
  .stat-card.is-visible .stat-value {
    animation: none !important;
  }

  .hero-home .wheel {
    animation: wheel-spin 28s linear infinite;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}


































.surface.surface-accent.cta-band {
  border-color: rgba(var(--secondary-rgb), 0.18);
  background:
    radial-gradient(circle at top left, rgba(var(--cta-rgb), 0.16), transparent 28%),
    linear-gradient(135deg, rgba(var(--primary-rgb), 0.98), rgba(12, 42, 176, 0.98) 58%, rgba(var(--primary-rgb), 0.94));
  box-shadow: var(--shadow-deep);
}

.surface.surface-accent.cta-band::before {
  inset: 0;
  height: auto;
  background:
    linear-gradient(180deg, rgba(var(--secondary-rgb), 0.14), rgba(var(--secondary-rgb), 0) 42%),
    radial-gradient(circle at 85% 82%, rgba(var(--cta-rgb), 0.12), transparent 28%);
  opacity: 0.8;
}

.surface.surface-accent.cta-band > * {
  position: relative;
  z-index: 1;
}

.surface.surface-accent.cta-band .eyebrow {
  color: var(--cta);
}

.surface.surface-accent.cta-band h2 {
  color: var(--text-inverse);
  text-shadow: none;
}

.surface.surface-accent.cta-band p {
  color: rgba(var(--secondary-rgb), 0.92);
}

.surface.surface-accent.cta-band .button {
  background: var(--cta);
  color: var(--primary-blue);
  border-color: var(--cta);
}

.surface.surface-accent.cta-band .button-outline {
  background: rgba(var(--secondary-rgb), 0.1);
  color: var(--secondary);
  border-color: rgba(var(--secondary-rgb), 0.58);
  box-shadow: none;
}

.surface.surface-accent.cta-band .button-outline:hover,
.surface.surface-accent.cta-band .button-outline:focus-visible {
  background: rgba(var(--secondary-rgb), 0.18);
  color: var(--secondary);
  border-color: rgba(var(--secondary-rgb), 0.82);
}

.team-photo--elea,
.team-photo--joachim {
  padding: 0;
  gap: 0;
  background: rgba(var(--secondary-rgb), 0.94);
}

.team-photo--elea img {
  object-position: center 18%;
}

.team-photo--joachim img {
  object-position: center 20%;
}

.product-video-stage {
  display: grid;
  align-items: end;
  padding: 0;
  isolation: isolate;
  background:
    radial-gradient(circle at 18% 18%, rgba(var(--cta-rgb), 0.16), transparent 24%),
    linear-gradient(145deg, rgba(4, 11, 53, 0.96), rgba(var(--primary-rgb), 0.98));
}

.product-video-stage::before {
  inset: 0;
  height: auto;
  background:
    linear-gradient(180deg, rgba(var(--secondary-rgb), 0.06), rgba(var(--secondary-rgb), 0) 28%),
    radial-gradient(circle at 80% 78%, rgba(var(--cta-rgb), 0.12), transparent 26%);
  opacity: 1;
}

.product-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: linear-gradient(180deg, rgba(4, 11, 53, 0.3), rgba(4, 11, 53, 0.56));
}

.product-video-caption {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.45rem;
  max-width: 16rem;
  margin: 0 0 1rem 1rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(var(--secondary-rgb), 0.18);
  border-radius: 1rem;
  background: rgba(4, 11, 53, 0.58);
  box-shadow: 0 1rem 2rem rgba(4, 11, 53, 0.22);
}

.product-video-caption p {
  margin: 0;
  color: rgba(var(--secondary-rgb), 0.88);
  font-size: 0.92rem;
  line-height: 1.5;
}

@media (max-width: 47.99rem) {
  .product-video-caption {
    max-width: none;
    margin: 0.75rem;
  }
}

.hero-product {
  background:
    radial-gradient(circle at 14% 18%, rgba(var(--cta-rgb), 0.16), transparent 18rem),
    radial-gradient(circle at 88% 12%, rgba(var(--secondary-rgb), 0.12), transparent 16rem),
    linear-gradient(180deg, var(--primary-blue) 0%, #06186f 100%);
}

.hero-product::before {
  top: 2.8rem;
  right: 5vw;
  width: 13rem;
  height: 13rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--secondary-rgb), 0.16), transparent 64%);
  opacity: 0.9;
}

.hero-product::after {
  right: 8vw;
  bottom: -3.5rem;
  width: 18rem;
  height: 6.5rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(var(--cta-rgb), 0.26), rgba(var(--secondary-rgb), 0.06));
}

.team-card {
  grid-template-rows: auto 1fr;
}

.team-photo {
  width: 100%;
  max-width: none;
  height: clamp(21rem, 34vw, 31rem);
  aspect-ratio: auto;
  justify-self: stretch;
  margin-inline: 0;
}

.team-photo--elea,
.team-photo--joachim {
  position: relative;
  display: block;
  overflow: hidden;
}

.team-photo--elea img,
.team-photo--joachim img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.hero-product .innovation-hero-layout {
  grid-template-columns: 1fr;
  grid-template-areas:
    "copy"
    "visual"
    "highlights";
  gap: 1rem;
  align-items: start;
}

.innovation-hero-copy {
  max-width: 36rem;
}

.innovation-hero-copy h1 {
  max-width: 8ch;
}

.innovation-hero-visual {
  min-width: 0;
}

.innovation-hero-stage {
  min-height: clamp(22rem, 74vw, 30rem);
}

.innovation-video-caption {
  max-width: 18rem;
}

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

@media (min-width: 58rem) {
  .hero-product .innovation-hero-layout {
    grid-template-columns: minmax(0, 0.38fr) minmax(0, 0.62fr);
    grid-template-areas:
      "copy visual"
      "highlights visual";
    gap: 1.2rem 1.5rem;
    align-items: stretch;
  }

  .innovation-hero-copy {
    max-width: 28rem;
    align-self: start;
  }

  .innovation-hero-copy h1 {
    max-width: 7.2ch;
    font-size: clamp(3rem, 4.5vw, 4.9rem);
  }

  .innovation-hero-visual {
    display: block;
    align-self: stretch;
  }

  .innovation-hero-stage {
    min-height: clamp(31rem, 68vh, 47rem);
    height: 100%;
  }

  .innovation-hero-highlights {
    align-content: start;
  }
}

.hero-product {
  padding: 2.1rem 0 2.8rem;
}

.hero-product .innovation-hero-layout {
  grid-template-columns: 1fr;
  grid-template-areas:
    "copy"
    "visual";
  gap: 1.35rem;
  align-items: center;
}

.innovation-hero-copy {
  display: grid;
  gap: 0.95rem;
  max-width: 32rem;
}

.innovation-hero-copy h1 {
  max-width: 6.2ch;
  font-size: clamp(3rem, 8vw, 4.35rem);
  line-height: 0.92;
}

.innovation-hero-copy .hero-intro {
  max-width: 32rem;
  margin-top: 0;
}

.innovation-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.25rem;
}

.innovation-hero-points li {
  padding: 0.72rem 0.95rem;
  border: 1px solid rgba(var(--secondary-rgb), 0.2);
  border-radius: 999px;
  background: rgba(var(--secondary-rgb), 0.1);
  color: rgba(var(--secondary-rgb), 0.96);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.2;
}

.innovation-hero-points li::before {
  display: none;
}

.innovation-hero-visual {
  min-width: 0;
}

.innovation-hero-stage {
  min-height: clamp(20rem, 46vw, 34rem);
  aspect-ratio: 16 / 10;
  border-radius: 1.5rem;
}

.innovation-product-video {
  object-fit: cover;
  object-position: center;
  transform: scale(1.14);
}

.innovation-video-caption {
  max-width: 15rem;
  margin: 0 0 1rem 1rem;
  padding: 0.82rem 0.95rem;
}

.innovation-video-caption strong {
  font-size: 1rem;
  line-height: 1.12;
}

.innovation-video-caption p {
  font-size: 0.86rem;
  line-height: 1.45;
}

.innovation-summary-strip {
  padding-top: 0.4rem;
}

.innovation-summary-grid {
  display: grid;
  gap: 1rem;
}

.innovation-summary-grid > .surface {
  height: 100%;
}

@media (min-width: 58rem) {
  .hero-product .innovation-hero-layout {
    grid-template-columns: minmax(0, 0.34fr) minmax(0, 0.66fr);
    gap: 1.35rem 1.8rem;
    align-items: center;
  }

  .innovation-hero-copy {
    max-width: 24rem;
  }

  .innovation-hero-copy h1 {
    max-width: 5.8ch;
    font-size: clamp(3.05rem, 4.6vw, 4.55rem);
  }

  .innovation-hero-stage {
    min-height: clamp(28rem, 60vh, 40rem);
  }

  .innovation-summary-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 47.99rem) {
  .hero-product {
    padding: 1.4rem 0 2.2rem;
  }

  .innovation-hero-copy h1 {
    max-width: 7ch;
    font-size: clamp(2.7rem, 13vw, 3.8rem);
  }

  .innovation-hero-stage {
    min-height: 18rem;
    aspect-ratio: 1 / 1;
  }

  .innovation-product-video {
    transform: scale(1.08);
  }

  .innovation-video-caption {
    max-width: none;
  }
}



.stats-showcase .stat-card {
  container-type: inline-size;
}

.stats-showcase .stat-value {
  font-size: clamp(2.7rem, 18cqi, 4.7rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.stats-showcase .stat-value[data-count-value="150000"],
.stats-showcase .stat-value[data-count-value="400000"] {
  font-size: clamp(2.45rem, 15.5cqi, 4.15rem);
  letter-spacing: -0.045em;
}

@media (max-width: 55.99rem) {
  .stats-showcase-grid {
    grid-template-columns: 1fr;
  }

  .stats-showcase .stat-card {
    min-height: auto;
    padding: 1.2rem 1.1rem;
  }

  .stats-showcase .stat-kicker {
    min-height: 2rem;
    padding-inline: 0.85rem;
    margin-bottom: 0.9rem;
    font-size: 0.74rem;
    letter-spacing: 0.08em;
  }

  .stats-showcase .stat-value,
  .stats-showcase .stat-value[data-count-value="150000"],
  .stats-showcase .stat-value[data-count-value="400000"] {
    font-size: clamp(2.8rem, 16vw, 4.35rem);
    letter-spacing: -0.035em;
  }

  .stats-showcase .stat-card h3 {
    max-width: none;
    font-size: clamp(1.2rem, 6vw, 1.65rem);
  }

  .stats-showcase .stat-card p:last-child {
    max-width: none;
    font-size: 1rem;
    line-height: 1.52;
  }
}

@media (min-width: 56rem) and (max-width: 67.99rem) {
  .stats-showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stats-showcase .stat-card {
    min-height: 15.5rem;
    padding: 1.2rem 1.05rem 1.15rem;
  }

  .stats-showcase .stat-kicker {
    margin-bottom: 0.85rem;
    padding-inline: 0.82rem;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
  }

  .stats-showcase .stat-value {
    font-size: clamp(2.5rem, 15cqi, 3.95rem);
  }

  .stats-showcase .stat-value[data-count-value="150000"],
  .stats-showcase .stat-value[data-count-value="400000"] {
    font-size: clamp(2.2rem, 13cqi, 3.35rem);
  }

  .stats-showcase .stat-card h3 {
    max-width: 9ch;
    font-size: clamp(1.1rem, 7.5cqi, 1.45rem);
  }

  .stats-showcase .stat-card p:last-child {
    max-width: none;
    font-size: 0.96rem;
    line-height: 1.48;
  }
}

@media (max-width: 47.99rem) {
  .stats-showcase .stat-value,
  .stats-showcase .stat-value[data-count-value="150000"],
  .stats-showcase .stat-value[data-count-value="400000"] {
    font-size: clamp(2.6rem, 13vw, 3.95rem);
  }
}
@media (max-width: 89.99rem) {
  .page-hero {
    padding: 1.85rem 0 2.75rem;
  }
}

@media (min-width: 58rem) and (max-width: 71.99rem) {
  .hero-product {
    padding: 1.55rem 0 2rem;
  }

  .hero-product .innovation-hero-layout {
    grid-template-columns: minmax(0, 0.43fr) minmax(0, 0.57fr);
    gap: 1rem 1.2rem;
    align-items: center;
  }

  .innovation-hero-copy {
    max-width: 23rem;
    gap: 0.75rem;
  }

  .innovation-hero-copy h1 {
    max-width: 6.4ch;
    font-size: clamp(2.7rem, 4.9vw, 3.6rem);
    line-height: 0.92;
    text-wrap: initial;
  }

  .innovation-hero-copy .hero-intro {
    max-width: 25rem;
    font-size: 0.98rem;
  }

  .hero-product .innovation-hero-copy .button-row {
    display: grid;
    grid-template-columns: repeat(2, max-content);
    gap: 0.65rem;
    width: fit-content;
  }

  .hero-product .innovation-hero-copy .button-row .button {
    width: auto;
  }

  .innovation-hero-points {
    gap: 0.42rem;
  }

  .innovation-hero-points li {
    padding: 0.58rem 0.72rem;
    font-size: 0.79rem;
  }

  .innovation-hero-stage {
    min-height: clamp(18rem, 36vw, 22rem);
    aspect-ratio: 16 / 10;
  }

  .innovation-product-video {
    transform: scale(1.05);
    object-position: 60% center;
  }

  .innovation-video-caption {
    max-width: 11rem;
    margin: 0 0 0.7rem 0.7rem;
    padding: 0.66rem 0.72rem;
  }

  .innovation-summary-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 72rem) {
  .hero-product {
    padding: 1.6rem 0 2.1rem;
  }

  .hero-product .innovation-hero-layout {
    grid-template-columns: minmax(0, 0.45fr) minmax(0, 0.55fr);
    gap: 1.25rem 1.7rem;
    align-items: center;
  }

  .innovation-hero-visual {
    display: flex;
    justify-content: flex-end;
  }

  .innovation-hero-copy {
    gap: 0.85rem;
    max-width: 29rem;
  }

  .innovation-hero-copy h1 {
    max-width: 7.4ch;
    font-size: clamp(3.1rem, 4.05vw, 4.45rem);
    line-height: 0.9;
    text-wrap: initial;
  }

  .innovation-hero-copy .hero-intro {
    max-width: 30rem;
    font-size: clamp(1rem, 1.05vw, 1.08rem);
  }

  .hero-product .innovation-hero-copy .button-row {
    display: grid;
    grid-template-columns: repeat(2, max-content);
    gap: 0.75rem;
    width: fit-content;
  }

  .hero-product .innovation-hero-copy .button-row .button {
    width: auto;
  }

  .innovation-hero-points {
    max-width: 30rem;
    gap: 0.48rem;
  }

  .innovation-hero-points li {
    padding: 0.62rem 0.8rem;
    font-size: 0.82rem;
  }

  .innovation-hero-stage {
    width: min(100%, 48rem);
    min-height: clamp(19rem, 25vw, 24rem);
    aspect-ratio: 16 / 9;
  }

  .innovation-product-video {
    transform: scale(1.04);
    object-position: 58% center;
  }

  .innovation-video-caption {
    max-width: 12rem;
    margin: 0 0 0.8rem 0.8rem;
    padding: 0.72rem 0.8rem;
  }

  .innovation-video-caption strong {
    font-size: 0.92rem;
  }

  .innovation-video-caption p {
    font-size: 0.8rem;
    line-height: 1.36;
  }
}

@media (min-width: 68rem) and (max-width: 84rem) {
  .site-nav {
    gap: 0.8rem;
  }

  .site-nav a:not(.button) {
    font-size: 0.96rem;
  }

  .button-small {
    min-height: 2.8rem;
    padding-inline: 0.92rem;
  }
}

@media (max-width: 63.99rem) {
  .project-story-grid,
  .partner-logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .innovation-summary-grid,
  .stats-showcase-layout {
    grid-template-columns: 1fr;
  }

  .hero-product .innovation-hero-copy .button-row {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .hero-product .innovation-hero-copy .button-row .button {
    width: 100%;
  }
}

@media (max-width: 31.99rem) {
  .partner-logo-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 72rem) and (max-height: 60rem) {
  .hero-product {
    padding: 1.2rem 0 1.55rem;
  }

  .innovation-hero-visual {
    display: flex;
    justify-content: flex-end;
  }

  .hero-product .breadcrumbs {
    margin-bottom: 0.72rem;
  }

  .hero-product .eyebrow {
    margin-bottom: 0.55rem;
  }

  .hero-product .innovation-hero-layout {
    grid-template-columns: minmax(0, 0.43fr) minmax(0, 0.57fr);
    gap: 0.95rem 1.35rem;
    align-items: center;
  }

  .innovation-hero-copy {
    gap: 0.72rem;
    max-width: 27rem;
  }

  .innovation-hero-copy h1 {
    max-width: 6.3ch;
    font-size: clamp(2.9rem, 3.55vw, 4rem);
    line-height: 0.9;
  }

  .innovation-hero-copy .hero-intro {
    max-width: 27rem;
    font-size: 0.98rem;
    line-height: 1.58;
  }

  .hero-product .innovation-hero-copy .button-row {
    gap: 0.6rem;
  }

  .hero-product .innovation-hero-copy .button {
    min-height: 3rem;
    padding-inline: 1.05rem;
  }

  .innovation-hero-points {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.42rem;
    max-width: 100%;
    margin-top: 0.1rem;
  }

  .innovation-hero-points li {
    min-width: 0;
    padding: 0.52rem 0.46rem;
    font-size: 0.74rem;
    text-align: center;
  }

  .innovation-hero-stage {
    width: min(100%, 44rem);
    min-height: clamp(16rem, 20vw, 19rem);
    max-height: calc(100svh - 11.5rem);
  }

  .innovation-video-caption {
    max-width: 10.25rem;
    margin: 0 0 0.65rem 0.65rem;
    padding: 0.62rem 0.68rem;
  }

  .innovation-video-caption strong {
    font-size: 0.88rem;
    line-height: 1.08;
  }

  .innovation-video-caption p {
    font-size: 0.76rem;
    line-height: 1.28;
  }
}

.innovation-hero-stage .product-video-caption {
  display: none;
}

.innovation-hero-copy .hero-intro {
  max-width: 30rem;
  color: rgba(var(--secondary-rgb), 0.94);
  line-height: 1.6;
}

.innovation-hero-note {
  display: grid;
  gap: 0.75rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(var(--secondary-rgb), 0.16);
  border-radius: 1.15rem;
  background: linear-gradient(180deg, rgba(var(--secondary-rgb), 0.12), rgba(var(--secondary-rgb), 0.06));
  box-shadow: 0 1rem 2rem rgba(3, 12, 57, 0.14);
}

.innovation-hero-note-item {
  display: grid;
  gap: 0.34rem;
  min-width: 0;
}

.innovation-hero-note-item strong {
  color: var(--text-inverse);
  font-family: "Montserrat", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.1;
  text-transform: uppercase;
}

.innovation-hero-note-item p {
  margin: 0;
  color: rgba(var(--secondary-rgb), 0.88);
  font-size: 0.92rem;
  line-height: 1.5;
}

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

.innovation-hero-points li {
  display: grid;
  place-items: center;
  min-height: 4.1rem;
  padding: 0.78rem 0.8rem;
  text-align: center;
}

@media (min-width: 58rem) {
  .innovation-hero-note {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 47.99rem) {
  .innovation-hero-note {
    padding: 0.9rem;
  }

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

  .innovation-hero-points li {
    min-height: auto;
    text-align: left;
    place-items: start;
  }
}

.hero-contact .hero-contact-card {
  isolation: isolate;
}

.hero-contact .hero-contact-card h3 {
  color: var(--primary-blue);
}

.hero-contact .hero-contact-card p {
  color: rgba(var(--primary-rgb), 0.94);
}

.hero-contact .hero-contact-card .pill {
  color: var(--text-inverse);
}

.hero-home .hero-brand-card {
  gap: 1rem;
  padding: 1.2rem;
  border-color: rgba(var(--primary-rgb), 0.12);
  background:
    radial-gradient(circle at 100% 0%, rgba(var(--primary-rgb), 0.1), transparent 34%),
    linear-gradient(180deg, rgba(var(--secondary-rgb), 0.995), rgba(var(--cta-rgb), 0.94));
}

.hero-home .hero-brand-card .hero-brand-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 2rem;
  padding: 0.35rem 0.72rem;
  border: 1px solid rgba(var(--primary-rgb), 0.12);
  border-radius: 999px;
  background: rgba(var(--primary-rgb), 0.05);
  color: rgba(var(--primary-rgb), 0.7);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-home .hero-brand-card h3 {
  max-width: 9ch;
  color: var(--primary-blue);
  font-size: clamp(1.6rem, 4.2vw, 2.25rem);
  line-height: 0.96;
  text-wrap: balance;
}

.hero-home .hero-brand-card .hero-brand-summary {
  max-width: 19ch;
  margin: 0;
  color: rgba(var(--primary-rgb), 0.84);
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.58;
}

.hero-home .hero-brand-card .hero-brand-signals {
  gap: 0.6rem;
}

.hero-home .hero-brand-card .hero-brand-signals span {
  border-color: rgba(var(--primary-rgb), 0.14);
  background: rgba(var(--primary-rgb), 0.06);
  color: var(--primary-blue);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

@media (max-width: 47.99rem) {
  .hero-home .hero-brand-card {
    padding: 1rem;
  }

  .hero-home .hero-brand-card h3 {
    max-width: 10ch;
    font-size: clamp(1.45rem, 8vw, 2rem);
  }

  .hero-home .hero-brand-card .hero-brand-summary {
    max-width: none;
    font-size: 0.98rem;
    line-height: 1.54;
  }
}
@media (max-width: 47.99rem) {
  .site-footer .footer-title {
    font-size: 1.82rem;
    line-height: 0.98;
  }

  .site-footer .footer-kicker {
    font-size: 0.68rem;
    letter-spacing: 0.16em;
  }
}

/* Innovation development section */
.section-head-development {
  max-width: none;
  display: grid;
  gap: 1rem;
}

.section-head-development-copy {
  max-width: 46rem;
}

.development-metrics {
  display: grid;
  gap: 0.75rem;
}

.development-metric {
  padding: 1rem 1.05rem;
  border: 1px solid rgba(var(--primary-rgb), 0.08);
  border-radius: 1rem;
  background: linear-gradient(180deg, rgba(var(--secondary-rgb), 0.92), rgba(var(--cta-rgb), 0.66));
  box-shadow: 0 1rem 2rem rgba(var(--primary-rgb), 0.06);
}

.development-metric strong {
  display: block;
  margin: 0;
  color: var(--primary-blue);
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.35rem, 4vw, 2rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.development-metric span {
  display: block;
  margin-top: 0.35rem;
  max-width: 24ch;
  color: var(--text-main);
  font-weight: 600;
  line-height: 1.45;
}

.timeline.timeline-development {
  position: relative;
  gap: 1rem;
}

.timeline.timeline-development::before {
  content: "";
  position: absolute;
  top: 1.35rem;
  bottom: 1.35rem;
  left: 1.45rem;
  width: 1px;
  background: linear-gradient(180deg, rgba(var(--primary-rgb), 0.06), rgba(var(--primary-rgb), 0.26), rgba(var(--primary-rgb), 0.06));
  pointer-events: none;
}

.timeline-development .timeline-step {
  position: relative;
  padding: 1.2rem 1.15rem 1.15rem 1.35rem;
  overflow: hidden;
  border-color: rgba(var(--primary-rgb), 0.09);
  background: linear-gradient(180deg, rgba(var(--secondary-rgb), 0.96), rgba(var(--secondary-rgb), 0.9));
  box-shadow: 0 1rem 2.1rem rgba(var(--primary-rgb), 0.06);
}

.timeline-development .timeline-step:nth-child(2n) {
  background: linear-gradient(180deg, rgba(var(--secondary-rgb), 0.98), rgba(var(--cta-rgb), 0.42));
}

.timeline-development .timeline-step::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 0.32rem;
  background: linear-gradient(180deg, rgba(var(--cta-rgb), 0.96), rgba(var(--primary-rgb), 0.65));
}

.timeline-development .timeline-step::after {
  content: "";
  position: absolute;
  top: -2.8rem;
  right: -2.8rem;
  width: 8rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--cta-rgb), 0.38), transparent 68%);
  pointer-events: none;
}

.timeline-item-top {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.timeline-development .timeline-step strong {
  margin-bottom: 0;
  flex: 0 0 auto;
  box-shadow: 0 0.7rem 1.3rem rgba(var(--primary-rgb), 0.14);
}

.timeline-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0 0.8rem;
  border-radius: 999px;
  background: rgba(var(--primary-rgb), 0.06);
  color: var(--primary-blue);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.timeline-development .timeline-step h3 {
  max-width: 16ch;
}

.timeline-development .timeline-step p {
  color: var(--muted);
  line-height: 1.64;
}

.timeline-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.timeline-points li {
  padding: 0.48rem 0.72rem;
  border-radius: 999px;
  background: rgba(var(--primary-rgb), 0.06);
  color: var(--primary-blue);
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.2;
}

@media (min-width: 48rem) {
  .development-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .timeline.timeline-development::before {
    display: none;
  }
}

@media (min-width: 72rem) {
  .section-head-development {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    align-items: end;
    gap: 1.5rem;
  }

  .development-metrics {
    grid-template-columns: 1fr;
  }
}


/* Home hero refinement */
.hero-home .hero-visual-home {
  gap: 1rem;
}

.hero-home .hero-brand-card {
  gap: 1rem;
  max-width: none;
  margin: 0;
  padding: 1.2rem;
  align-content: start;
}

.hero-home .hero-brand-card h3 {
  max-width: 10ch;
}

.hero-home .hero-brand-card .hero-brand-summary {
  max-width: none;
}

.hero-brand-points {
  display: grid;
  gap: 0.7rem;
  margin-top: 0.1rem;
}

.hero-brand-point {
  padding: 0.85rem 0.9rem;
  border: 1px solid rgba(var(--primary-rgb), 0.1);
  border-radius: 1rem;
  background: rgba(var(--primary-rgb), 0.06);
}

.hero-brand-point strong {
  display: block;
  margin: 0 0 0.35rem;
  color: var(--primary-blue);
  font-family: "Montserrat", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.1;
  text-transform: uppercase;
}

.hero-brand-point p {
  margin: 0;
  color: rgba(var(--primary-rgb), 0.84);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.48;
}

@media (min-width: 64rem) {
  .hero-home .hero-visual-home {
    grid-template-columns: minmax(0, 0.44fr) minmax(0, 0.56fr);
    grid-template-areas: "brand stage";
    align-items: stretch;
  }

  .hero-home .hero-brand-card {
    grid-area: brand;
    height: 100%;
  }

  .hero-home .wheel-stage {
    grid-area: stage;
    min-height: clamp(24rem, 38vw, 30rem);
  }
}

@media (min-width: 82rem) {
  .hero-home .hero-visual-home {
    grid-template-columns: minmax(0, 0.43fr) minmax(0, 0.57fr);
    grid-template-areas: "brand stage";
    align-items: stretch;
  }

  .hero-home .hero-brand-card {
    margin: 0;
    transform: none;
  }

  .hero-home .wheel-stage {
    min-height: 30rem;
  }
}


/* Project story head layout fix */
@media (min-width: 60rem) {
  .project-story-head {
    max-width: none;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 0.9rem 1.8rem;
    align-items: end;
  }

  .project-story-head .eyebrow {
    grid-column: 1 / -1;
    margin-bottom: 0;
  }

  .project-story-head h2 {
    max-width: 11ch;
  }

  .project-story-head p:last-child {
    max-width: 34rem;
    margin-top: 0;
    align-self: end;
  }
}


/* Partner wall refinement */
.partner-wall-head {
  max-width: 44rem;
}

.partner-ecosystem-grid {
  align-items: stretch;
}

.partner-logo-card,
.partner-person-card {
  height: 100%;
  padding: 1.1rem;
  border-color: rgba(var(--primary-rgb), 0.08);
  background: linear-gradient(180deg, rgba(var(--secondary-rgb), 0.96), rgba(var(--cta-rgb), 0.42));
  box-shadow: 0 1rem 2rem rgba(var(--primary-rgb), 0.06);
}

.partner-logo-card {
  display: grid;
  gap: 0.9rem;
  align-content: start;
  text-align: left;
}

.partner-logo-mark {
  width: min(100%, 11.5rem);
  height: 3.8rem;
  object-fit: contain;
  object-position: left center;
  display: block;
  margin: 0 auto 0 0;
  mix-blend-mode: multiply;
}

.partner-logo-mark--compact {
  width: min(100%, 10.2rem);
}

.partner-logo-copy {
  display: grid;
  gap: 0.25rem;
  text-align: left;
}

.partner-logo-copy strong,
.partner-person-card strong {
  color: var(--primary-blue);
  font-family: "Montserrat", sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.01em;
}

.partner-logo-copy p,
.partner-person-card p {
  margin: 0;
  color: var(--text-main);
  font-size: 0.95rem;
  line-height: 1.55;
}

.partner-person-card {
  display: grid;
  gap: 0.7rem;
  place-items: start;
  text-align: left;
}

.partner-person-card .pill {
  min-height: 1.8rem;
  padding-inline: 0.7rem;
  font-size: 0.72rem;
}

.partner-person-card--wide {
  background: linear-gradient(180deg, rgba(var(--secondary-rgb), 0.98), rgba(var(--secondary-rgb), 0.9));
}

@media (min-width: 48rem) {
  .partner-person-card--wide {
    grid-column: span 2;
  }
}

@media (min-width: 72rem) {
  .partner-logo-mark {
    width: min(100%, 12.4rem);
    height: 4.2rem;
  }
}


/* Home hero tone down */
.hero-home .hero-copy h1 {
  max-width: 10.6ch;
  font-size: clamp(2.7rem, 8.2vw, 4.05rem);
  line-height: 0.97;
}

.hero-home .hero-intro {
  max-width: 54ch;
  font-size: 1rem;
  line-height: 1.66;
}

.hero-home .hero-list {
  gap: 0.6rem;
  margin-top: 1.1rem;
}

.hero-home .hero-list li {
  font-size: 0.96rem;
  line-height: 1.58;
}

.hero-home .hero-visual-home {
  gap: 0.8rem;
}

.hero-home .hero-brand-card {
  gap: 0.8rem;
  padding: 1rem;
}

.hero-home .hero-brand-card .hero-brand-kicker {
  min-height: 1.8rem;
  padding: 0.28rem 0.62rem;
  font-size: 0.68rem;
}

.hero-home .hero-brand-card h3 {
  max-width: 9.5ch;
  font-size: clamp(1.38rem, 2.5vw, 1.82rem);
  line-height: 0.98;
}

.hero-home .hero-brand-card .hero-brand-summary {
  font-size: 0.92rem;
  line-height: 1.5;
}

.hero-home .hero-brand-signals {
  gap: 0.45rem;
}

.hero-home .hero-brand-signals span {
  padding: 0.36rem 0.58rem;
  font-size: 0.64rem;
}

.hero-brand-points {
  gap: 0.5rem;
}

.hero-brand-point {
  padding: 0.62rem 0.68rem;
  border-radius: 0.85rem;
}

.hero-brand-point strong {
  margin-bottom: 0.2rem;
  font-size: 0.7rem;
}

.hero-brand-point p {
  font-size: 0.82rem;
  line-height: 1.38;
}

.hero-home .wheel-stage {
  min-height: clamp(19.5rem, 28vw, 23rem);
}

.hero-home .wheel {
  width: min(13.4rem, 54vw);
  margin: calc(min(13.4rem, 54vw) / -2);
}

.hero-home .wheel-tag {
  padding: 0.44rem 0.65rem;
  font-size: 0.68rem;
}

@media (min-width: 72rem) {
  .hero-home .hero-grid {
    grid-template-columns: 1.02fr 0.98fr;
    gap: 1.25rem;
    align-items: start;
  }
}

@media (max-width: 47.99rem) {
  .hero-home .hero-copy h1 {
    max-width: 9.5ch;
    font-size: clamp(2.3rem, 10vw, 3.15rem);
  }

  .hero-home .hero-brand-card {
    padding: 0.9rem;
  }
}


/* Simple footer */
.site-footer {
  padding: 2.2rem 0 1rem;
  background:
    radial-gradient(circle at 14% 18%, rgba(var(--cta-rgb), 0.16), transparent 18rem),
    radial-gradient(circle at 86% 18%, rgba(var(--secondary-rgb), 0.08), transparent 16rem),
    repeating-linear-gradient(120deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 6.5rem),
    linear-gradient(180deg, #081f8f 0%, #06186f 100%);
}

.site-footer::before,
.site-footer::after {
  display: none;
}

.footer-simple {
  display: grid;
  gap: 1rem;
  align-items: center;
  padding-bottom: 1rem;
}

.footer-brand-simple {
  display: grid;
  gap: 0.9rem;
}

.footer-simple-text {
  margin: 0;
  max-width: 32rem;
  color: rgba(var(--secondary-rgb), 0.9);
  font-size: 1rem;
  line-height: 1.5;
}

.footer-simple-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.2rem;
  align-items: center;
}

.footer-simple-nav a {
  color: rgba(var(--secondary-rgb), 0.8);
  font-size: 0.98rem;
  font-weight: 700;
}

.footer-simple-nav a:hover,
.footer-simple-nav a:focus-visible {
  color: #ffffff;
}

.site-footer .footer-simple-cta {
  width: fit-content;
  min-height: 2.9rem;
  padding-inline: 1rem;
  justify-self: start;
  border-color: rgba(var(--cta-rgb), 0.9);
  background: linear-gradient(180deg, rgba(var(--cta-rgb), 1), rgba(224, 210, 184, 1));
  color: var(--primary-blue);
  box-shadow: 0 0.8rem 1.7rem rgba(3, 10, 47, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.site-footer .footer-simple-cta:hover,
.site-footer .footer-simple-cta:focus-visible {
  border-color: rgba(var(--secondary-rgb), 0.96);
  background: rgba(var(--secondary-rgb), 0.98);
  color: var(--primary-blue);
}

.footer-bottom-simple {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(var(--secondary-rgb), 0.14);
}

@media (min-width: 64rem) {
  .footer-simple {
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 1rem 1.5rem;
  }

  .footer-simple-nav {
    justify-content: center;
  }

  .site-footer .footer-simple-cta {
    justify-self: end;
  }
}

@media (max-width: 47.99rem) {
  .footer-simple-text {
    font-size: 0.92rem;
  }

  .footer-simple-nav {
    gap: 0.7rem 1rem;
  }

  .site-footer .footer-simple-cta {
    width: 100%;
    justify-content: center;
  }

  .footer-bottom-simple {
    flex-direction: column;
    align-items: flex-start;
  }
}


/* Home hero card readability */
.hero-home .cover-card img {
  width: min(100%, 11.2rem);
  padding: 0.18rem;
  border-radius: 0.95rem;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 0.55rem 1.1rem rgba(var(--primary-rgb), 0.14);
}

.hero-home .hero-brand-card .hero-brand-summary {
  color: rgba(var(--primary-rgb), 0.92);
}

.hero-home .hero-brand-point {
  border-color: rgba(var(--primary-rgb), 0.12);
  background: rgba(var(--secondary-rgb), 0.78);
}

.hero-home .hero-brand-point p {
  color: rgba(var(--primary-rgb), 0.76);
}

@media (max-width: 47.99rem) {
  .hero-home .cover-card img {
    width: min(100%, 10.4rem);
  }

  .hero-home .hero-brand-point {
    padding: 0.68rem 0.72rem;
  }

  .hero-home .hero-brand-point p {
    font-size: 0.84rem;
    line-height: 1.42;
  }
}


/* Footer bottom fix */
.footer-bottom-simple > span {
  color: rgba(var(--secondary-rgb), 0.7);
}

.footer-bottom-simple > span:first-child {
  font-weight: 600;
}

.footer-bottom-simple > span:last-child {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 2.1rem;
  padding: 0.34rem 0.78rem;
  border: 1px solid rgba(var(--secondary-rgb), 0.1);
  border-radius: 999px;
  background: rgba(var(--secondary-rgb), 0.06);
  color: rgba(var(--secondary-rgb), 0.84);
}

.footer-bottom-simple [data-year] {
  display: inline;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  font: inherit;
}


/* Partner groups */
.partner-group + .partner-group {
  margin-top: 1.2rem;
}

.partner-group-title {
  margin: 0 0 0.8rem;
  color: var(--primary-blue);
  font-family: "Montserrat", sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}


/* Final site adjustments */
.hero-contact .hero-visual-contact {
  grid-template-columns: 1fr;
}

.hero-contact .hero-contact-card {
  max-width: 32rem;
}

.hero-contact .hero-contact-points {
  margin-top: 0.5rem;
}

.contact-form {
  gap: 1rem;
}

.contact-form-intro h2 {
  max-width: min(17ch, 100%);
  font-size: clamp(1.75rem, 5vw, 2.45rem);
}

.contact-type-card small {
  font-size: 0.9rem;
  line-height: 1.5;
}

.form-note {
  font-size: 0.95rem;
  line-height: 1.55;
}

.hero-usages .hero-copy {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.hero-usages .hero-copy h1 {
  max-width: 9.8ch;
}

.hero-usages .hero-intro {
  max-width: 37rem;
  margin-top: 0;
  font-size: 1.06rem;
}

.hero-story-list {
  max-width: 36rem;
  margin-top: 0.1rem;
}

.hero-story-list li {
  color: rgba(var(--secondary-rgb), 0.94);
  font-size: 0.98rem;
  line-height: 1.58;
}

.hero-usages .button-row {
  gap: 0.8rem;
}

.hero-usages .button-row .button {
  min-width: 11.5rem;
}

.hero-story-feature {
  position: relative;
  overflow: hidden;
  gap: 0.9rem;
  padding: 1.35rem;
  background: linear-gradient(180deg, rgba(var(--secondary-rgb), 0.99), rgba(var(--cta-rgb), 0.96));
  border-color: rgba(var(--secondary-rgb), 0.3);
  box-shadow: 0 1.2rem 2.6rem rgba(3, 11, 48, 0.24);
}

.hero-story-feature::after {
  content: "";
  position: absolute;
  right: -2.25rem;
  bottom: -2.4rem;
  width: 8.6rem;
  height: 8.6rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--primary-rgb), 0.14), transparent 68%);
  pointer-events: none;
}

.hero-story-feature > * {
  position: relative;
  z-index: 1;
}

.hero-story-avatars {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.hero-story-avatar {
  width: 3rem;
  height: 3rem;
  border: 2px solid rgba(255, 255, 255, 0.88);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0.5rem 1rem rgba(var(--primary-rgb), 0.12);
}

.hero-story-avatar + .hero-story-avatar {
  margin-left: -0.95rem;
}

.hero-story-avatars .pill {
  margin-left: auto;
  background: var(--primary-blue);
  color: var(--text-inverse);
}

.hero-story-feature h3 {
  margin: 0;
  max-width: 13ch;
  color: var(--primary-blue);
  font-size: clamp(1.55rem, 2.2vw, 2rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.page-hero .hero-story-feature p {
  max-width: 34ch;
  color: rgba(var(--primary-rgb), 0.92);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.62;
}

.hero-story-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.hero-story-highlights span {
  padding: 0.5rem 0.78rem;
  border: 1px solid rgba(var(--primary-rgb), 0.14);
  border-radius: 999px;
  background: rgba(var(--primary-rgb), 0.08);
  color: rgba(var(--primary-rgb), 0.96);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-usages .hero-usage-tile {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 0.72rem;
  align-content: start;
  min-height: 100%;
  padding: 1.15rem;
  border-color: rgba(var(--secondary-rgb), 0.24);
  background: linear-gradient(180deg, rgba(var(--secondary-rgb), 0.98), rgba(var(--cta-rgb), 0.9));
  box-shadow: 0 0.95rem 2rem rgba(3, 11, 48, 0.18);
}

.hero-usages .hero-usage-tile::before {
  content: "";
  position: absolute;
  top: -2.2rem;
  right: -1.8rem;
  width: 7.2rem;
  height: 7.2rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--primary-rgb), 0.12), transparent 68%);
  pointer-events: none;
}

.hero-usages .hero-usage-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 42%);
  opacity: 0.72;
  pointer-events: none;
}

.hero-usages .hero-usage-tile > * {
  position: relative;
  z-index: 1;
}

.page-hero.hero-usages .hero-usage-tile {
  color: rgba(var(--primary-rgb), 0.94);
}

.hero-usages .hero-usage-tile strong {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 2rem;
  margin-bottom: 0;
  padding: 0 0.82rem;
  border: 1px solid rgba(var(--primary-rgb), 0.16);
  border-radius: 999px;
  background: rgba(var(--primary-rgb), 0.1);
  color: rgba(var(--primary-rgb), 0.98) !important;
  font-family: "Montserrat", sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-hero.hero-usages .hero-usage-tile p {
  color: rgba(var(--primary-rgb), 0.9) !important;
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.58;
  text-shadow: none;
}

.hero-usages .hero-usage-mosaic > .hero-usage-tile:nth-child(2)::before {
  top: auto;
  right: auto;
  left: -1.9rem;
  bottom: -2.4rem;
}

.hero-usages .hero-usage-mosaic > .hero-usage-tile:nth-child(4)::before {
  width: 8rem;
  height: 8rem;
}

.innovation-hero-copy {
  max-width: 34rem;
}

.innovation-hero-copy h1 {
  max-width: 9.1ch;
  font-size: clamp(3rem, 7.2vw, 4.55rem);
  line-height: 0.94;
  text-wrap: balance;
}

.innovation-hero-copy .hero-intro {
  max-width: 33rem;
}

.site-footer .footer-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.82rem;
  width: fit-content;
  padding: 0.82rem 1rem;
  border: 1px solid rgba(var(--primary-rgb), 0.08);
  border-radius: 1.3rem;
  background: rgba(var(--secondary-rgb), 0.98);
  box-shadow: 0 0.95rem 2rem rgba(3, 10, 47, 0.18);
}

.site-footer .footer-mark {
  width: 3.15rem;
  height: 3.15rem;
  border-radius: 1rem;
  box-shadow: 0 0.55rem 1.2rem rgba(17, 17, 17, 0.12);
}

.site-footer .footer-copy {
  gap: 0.16rem;
}

.site-footer .footer-title {
  color: #111111;
  font-size: clamp(1.95rem, 4vw, 2.2rem);
  line-height: 0.96;
}

.site-footer .footer-kicker {
  color: var(--primary-blue);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
}

@media (min-width: 48rem) and (max-width: 63.99rem) {
  .contact-layout {
    grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
    gap: 1rem;
  }

  .contact-form-intro h2 {
    max-width: min(16.5ch, 100%);
  }

  .hero-product .innovation-hero-layout {
    grid-template-columns: minmax(0, 0.4fr) minmax(0, 0.6fr);
  }

  .innovation-hero-copy {
    max-width: 29rem;
  }

  .innovation-hero-copy h1 {
    max-width: 8.6ch;
    font-size: clamp(3.05rem, 4.15vw, 4.45rem);
  }
}

@media (min-width: 64rem) {
  .contact-layout {
    grid-template-columns: minmax(0, 1.34fr) minmax(18rem, 0.66fr);
    gap: 1rem 1.15rem;
    align-items: start;
  }

  .contact-form {
    padding: 1.2rem;
  }

  .contact-form-intro h2 {
    max-width: none;
  }

  .contact-box {
    gap: 1rem;
    align-content: start;
  }
}

@media (min-width: 68rem) {
  .hero-usages .hero-grid {
    grid-template-columns: 1fr 0.96fr;
    align-items: center;
  }
}

@media (min-width: 72rem) {
  .hero-product .innovation-hero-layout {
    grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
  }

  .innovation-hero-copy {
    max-width: 31rem;
  }

  .innovation-hero-copy h1 {
    max-width: 9.2ch;
    font-size: clamp(3.15rem, 3.8vw, 4.55rem);
    line-height: 0.92;
  }

  .innovation-hero-copy .hero-intro {
    max-width: 31rem;
  }
}

@media (min-width: 72rem) and (max-height: 60rem) {
  .innovation-hero-copy {
    max-width: 28rem;
  }

  .innovation-hero-copy h1 {
    max-width: 8.5ch;
    font-size: clamp(2.95rem, 3.3vw, 4rem);
    line-height: 0.92;
  }
}

@media (max-width: 47.99rem) {
  .hero-usages .hero-copy h1 {
    max-width: 10.4ch;
    font-size: clamp(2.35rem, 11vw, 3.35rem);
  }

  .hero-usages .hero-intro,
  .hero-story-list li,
  .page-hero .hero-story-feature p,
  .page-hero.hero-usages .hero-usage-tile p {
    font-size: 0.95rem;
  }

  .hero-story-feature {
    padding: 1rem;
  }

  .hero-story-avatars {
    flex-wrap: wrap;
  }

  .hero-story-avatars .pill {
    margin-left: 0;
  }

  .hero-story-avatar {
    width: 2.7rem;
    height: 2.7rem;
  }

  .hero-story-feature h3,
  .page-hero .hero-story-feature p {
    max-width: none;
  }

  .hero-usages .hero-usage-tile {
    gap: 0.62rem;
    padding: 1rem;
  }

  .innovation-hero-copy h1 {
    max-width: 9ch;
    font-size: clamp(2.6rem, 11.4vw, 3.7rem);
    line-height: 0.95;
  }

  .site-footer .footer-lockup {
    padding: 0.72rem 0.85rem;
  }

  .site-footer .footer-mark {
    width: 2.85rem;
    height: 2.85rem;
  }

  .site-footer .footer-title {
    font-size: 1.7rem;
  }

  .site-footer .footer-kicker {
    font-size: 0.66rem;
  }
}


/* Background enrichment */
body {
  background:
    radial-gradient(circle at 0% 0%, rgba(var(--cta-rgb), 0.36), transparent 22rem),
    radial-gradient(circle at 100% 14%, rgba(var(--primary-rgb), 0.05), transparent 18rem),
    radial-gradient(circle at 52% 100%, rgba(var(--cta-rgb), 0.16), transparent 24rem),
    linear-gradient(180deg, #f8f4ed 0%, var(--bg) 24%, #ede4d8 100%);
}

.main-content > .section:not(.section-blue) {
  position: relative;
  isolation: isolate;
  overflow: clip;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.26), rgba(var(--cta-rgb), 0.12)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08), rgba(var(--primary-rgb), 0.02));
}

.main-content > .section:not(.section-blue) > .container {
  position: relative;
  z-index: 1;
}

.main-content > .section:not(.section-blue)::before,
.main-content > .section:not(.section-blue)::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.main-content > .section:not(.section-blue):nth-of-type(odd)::before {
  background:
    radial-gradient(circle at 10% 18%, rgba(var(--cta-rgb), 0.3), transparent 18rem),
    radial-gradient(circle at 84% 72%, rgba(var(--primary-rgb), 0.06), transparent 16rem),
    radial-gradient(circle at 52% 100%, rgba(255, 255, 255, 0.22), transparent 20rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0));
}

.main-content > .section:not(.section-blue):nth-of-type(odd)::after {
  opacity: 0.92;
  background:
    linear-gradient(125deg, rgba(255, 255, 255, 0.16), transparent 22%, transparent 74%, rgba(var(--primary-rgb), 0.035)),
    repeating-linear-gradient(90deg, rgba(var(--primary-rgb), 0.024) 0 1px, transparent 1px 4.4rem),
    repeating-linear-gradient(0deg, rgba(var(--cta-rgb), 0.14) 0 1px, transparent 1px 4.4rem);
}

.main-content > .section:not(.section-blue):nth-of-type(even)::before {
  background:
    radial-gradient(circle at 86% 16%, rgba(var(--cta-rgb), 0.28), transparent 17rem),
    radial-gradient(circle at 14% 84%, rgba(var(--primary-rgb), 0.055), transparent 15rem),
    radial-gradient(circle at 22% 22%, rgba(255, 255, 255, 0.2), transparent 14rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.28), rgba(var(--cta-rgb), 0.09) 46%, rgba(255, 255, 255, 0));
}

.main-content > .section:not(.section-blue):nth-of-type(even)::after {
  opacity: 0.76;
  background:
    linear-gradient(130deg, rgba(255, 255, 255, 0.22), transparent 24%, transparent 72%, rgba(var(--primary-rgb), 0.045)),
    repeating-linear-gradient(120deg, rgba(var(--primary-rgb), 0.024) 0 1px, transparent 1px 5.2rem),
    repeating-linear-gradient(28deg, rgba(255, 255, 255, 0.16) 0 1px, transparent 1px 5.2rem);
}

.main-content > .section-blue {
  background:
    radial-gradient(circle at 14% 16%, rgba(var(--cta-rgb), 0.18), transparent 22rem),
    radial-gradient(circle at 88% 74%, rgba(var(--secondary-rgb), 0.08), transparent 18rem),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.022) 0 1px, transparent 1px 6rem),
    linear-gradient(180deg, #082095 0%, #071a77 52%, #051354 100%);
}

.main-content > .section-blue:nth-of-type(even) {
  background:
    radial-gradient(circle at 82% 18%, rgba(var(--secondary-rgb), 0.12), transparent 17rem),
    radial-gradient(circle at 18% 82%, rgba(var(--cta-rgb), 0.16), transparent 20rem),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0 1px, transparent 1px 7rem),
    linear-gradient(180deg, #071d88 0%, #06186f 48%, #04124f 100%);
}

.main-content > .stats-showcase.section-blue {
  background:
    radial-gradient(circle at 18% 24%, rgba(var(--cta-rgb), 0.2), transparent 18rem),
    radial-gradient(circle at 78% 14%, rgba(var(--secondary-rgb), 0.1), transparent 16rem),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.022) 0 1px, transparent 1px 5rem),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.016) 0 1px, transparent 1px 5rem),
    linear-gradient(180deg, #082095 0%, #071a77 52%, #051354 100%);
}

/* ── Compare section ───────────────────────────── */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
  margin: 2.5rem 0;
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.08);
}

.compare-col {
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.compare-col--standard {
  background: var(--surface);
}

.compare-col--sport {
  background: linear-gradient(160deg, #0a239c 0%, #071c7f 100%);
  color: var(--text-inverse);
}

.compare-col-header {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.compare-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.08);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  width: fit-content;
}

.compare-tag--sport {
  background: rgba(243, 238, 230, 0.18);
  color: var(--text-inverse);
}

.compare-angle {
  font-size: 0.82rem;
  font-weight: 600;
  opacity: 0.52;
  letter-spacing: 0.04em;
}

.compare-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.compare-item {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.92rem;
  line-height: 1.45;
}

.compare-item::before {
  flex-shrink: 0;
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 50%;
  margin-top: 0.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 900;
}

.compare-item--good::before {
  content: "✓";
  background: #22c55e;
  color: #fff;
}

.compare-item--bad::before {
  content: "✕";
  background: #ef4444;
  color: #fff;
}

.compare-item--neutral::before {
  content: "–";
  background: rgba(17, 17, 17, 0.12);
  color: inherit;
}

.compare-col--sport .compare-item--neutral::before {
  background: rgba(243, 238, 230, 0.2);
}

.compare-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  background: linear-gradient(180deg, var(--surface) 50%, #0a239c 50%);
  position: relative;
}

.compare-vs {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: var(--primary-blue);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  z-index: 1;
  box-shadow: 0 0 0 4px var(--surface);
}

.compare-bridge {
  display: flex;
  align-items: baseline;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.compare-bridge p {
  margin: 0;
  flex: 1;
  min-width: 200px;
  font-size: 1rem;
  line-height: 1.55;
  font-style: italic;
}

@media (max-width: 54rem) {
  .compare-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }

  .compare-divider {
    width: 100%;
    height: 3rem;
    background: linear-gradient(90deg, var(--surface) 50%, #0a239c 50%);
  }
}
/* ─────────────────────────────────────────────── */

.main-content > .home-overview-band.section-blue {
  background:
    radial-gradient(circle at 84% 18%, rgba(var(--secondary-rgb), 0.12), transparent 16rem),
    radial-gradient(circle at 14% 84%, rgba(var(--cta-rgb), 0.14), transparent 18rem),
    repeating-linear-gradient(118deg, rgba(255, 255, 255, 0.024) 0 1px, transparent 1px 7.25rem),
    linear-gradient(180deg, #0a239c 0%, #071c7f 46%, #051457 100%);
}

.main-content > .home-overview-band.section-blue::before {
  top: auto;
  bottom: -3.6rem;
  left: -5.6rem;
  width: 13rem;
  height: 13rem;
  opacity: 0.34;
}

.main-content > .home-overview-band.section-blue::after {
  top: 1.2rem;
  right: -4.2rem;
  bottom: auto;
  width: 11rem;
  height: 11rem;
  opacity: 0.18;
}

.page-hero + .section-blue,
.section-blue + .section-blue {
  margin-top: -1px;
}

.section-blue::before {
  top: clamp(1.5rem, 3vw, 2.35rem);
  left: -5.25rem;
}

.section-blue::after {
  right: -5.25rem;
  bottom: clamp(1.5rem, 3vw, 2.35rem);
}

/* Mobile visual polish */
@media (max-width: 47.99rem) {
  .main-content {
    padding-bottom: 3.25rem;
  }

  .page-hero {
    padding: 1.35rem 0 2.25rem;
  }

  .page-hero::before,
  .page-hero::after,
  .section-blue::before,
  .section-blue::after {
    opacity: 0.42;
    transform: scale(0.82);
  }

  .breadcrumbs {
    margin-bottom: 0.75rem;
    font-size: 0.82rem;
  }

  .hero-grid {
    gap: 1rem;
  }

  .hero-copy {
    gap: 0.85rem;
  }

  .hero-copy h1 {
    max-width: 10.2ch;
    line-height: 0.96;
  }

  .hero-copy p,
  .section-head p,
  .surface p,
  .text-block p,
  .timeline-item p,
  .faq-item p,
  .faq-item li,
  .contact-list li {
    font-size: 0.96rem;
    line-height: 1.62;
  }

  .button-row {
    gap: 0.65rem;
  }

  .button-row .button,
  .site-nav .button {
    width: 100%;
  }

  .section {
    padding: 2.7rem 0;
  }

  .section-head,
  .project-story-head,
  .partner-wall-head,
  .section-head-development {
    margin-bottom: 1rem;
  }

  .section-head h2,
  .cta-band h2,
  .project-story-head h2,
  .partner-wall-head h2 {
    font-size: clamp(1.95rem, 9vw, 2.7rem);
    line-height: 1.02;
    max-width: none;
  }

  .stats-showcase-layout,
  .project-story-grid,
  .partner-logo-grid,
  .innovation-summary-grid {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .stats-showcase-copy h2 {
    font-size: clamp(2.4rem, 11vw, 3.4rem);
    line-height: 0.96;
  }

  .stats-showcase-copy p:last-child,
  .stat-card p:last-child {
    max-width: none;
    font-size: 0.96rem;
    line-height: 1.58;
  }

  .stat-card,
  .stats-showcase .stat-card {
    padding: 1rem;
  }

  .stats-showcase .stat-kicker {
    min-height: 2rem;
    padding: 0 0.8rem;
    margin-bottom: 0.8rem;
    font-size: 0.72rem;
  }

  .stats-showcase .stat-value,
  .stats-showcase .stat-value[data-count-value="150000"],
  .stats-showcase .stat-value[data-count-value="400000"] {
    font-size: clamp(3.25rem, 16vw, 4.6rem);
    line-height: 0.9;
    letter-spacing: -0.07em;
  }

  .stats-showcase .stat-card h3 {
    max-width: none;
    font-size: 1.22rem;
    line-height: 1.06;
  }

  .hero-home .hero-visual-home {
    width: 100%;
    max-width: 100%;
    gap: 0.85rem;
  }

  .hero-home .hero-brand-card,
  .hero-home .wheel-stage {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .hero-home .hero-brand-card {
    padding: 1rem;
  }

  .hero-home .hero-brand-card h3 {
    max-width: none;
    font-size: clamp(1.56rem, 6.8vw, 1.95rem);
    line-height: 1.04;
    text-wrap: pretty;
  }

  .hero-home .hero-brand-summary {
    max-width: none;
    font-size: 0.93rem;
    line-height: 1.56;
    overflow-wrap: anywhere;
  }

  .hero-home .hero-brand-signals {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.45rem;
  }

  .hero-home .hero-brand-signals span,
  .hero-story-highlights span,
  .team-tags li {
    min-width: 0;
    padding: 0.45rem 0.62rem;
    font-size: 0.68rem;
  }

  .hero-home .hero-brand-signals span {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.18;
    letter-spacing: 0.05em;
    white-space: normal;
  }

  .hero-home .hero-brand-signals span:last-child {
    grid-column: 1 / -1;
  }

  .hero-brand-points {
    gap: 0.55rem;
  }

  .hero-brand-point {
    padding: 0.72rem 0.76rem;
  }

  .hero-brand-point p {
    overflow-wrap: anywhere;
  }

  .hero-home .wheel-stage {
    min-height: 15rem;
  }

  .hero-home .wheel {
    width: min(10.75rem, 56vw);
    margin: calc(min(10.75rem, 56vw) / -2);
  }

  .hero-home .wheel-tag {
    max-width: calc(100% - 1rem);
    padding: 0.38rem 0.56rem;
    font-size: 0.64rem;
    line-height: 1.14;
    text-align: center;
  }

  .hero-home .wheel-tag-right {
    right: 0.55rem;
    max-width: 7rem;
  }

  .innovation-hero-note {
    grid-template-columns: 1fr;
    gap: 0.7rem;
    padding: 0.85rem;
  }

  .innovation-hero-note-item p {
    font-size: 0.9rem;
    line-height: 1.48;
  }

  .innovation-hero-points {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .innovation-hero-points li {
    min-height: auto;
    padding: 0.7rem 0.78rem;
    place-items: start;
    text-align: left;
  }

  .innovation-summary-grid > .surface,
  .project-story-card,
  .partner-logo-card,
  .partner-person-card,
  .contact-form,
  .contact-box > .surface,
  .surface-accent.cta-band,
  .team-card {
    padding: 1rem;
  }

  .project-story-head {
    display: grid;
    gap: 0.85rem;
  }

  .project-story-head p:last-child,
  .partner-wall-head p:last-child {
    margin-top: 0;
  }

  .partner-wall-head {
    margin: 0 0 1rem;
    text-align: left;
  }

  .partner-logo-mark {
    width: min(100%, 9.8rem);
    height: 3.2rem;
  }

  .team-card {
    gap: 0.9rem;
  }

  .team-photo {
    aspect-ratio: 1 / 1.08;
    padding: 0;
  }

  .team-card-body,
  .team-details {
    gap: 0.85rem;
  }

  .team-details div {
    padding: 0.78rem 0.82rem;
  }

  .contact-type-options,
  .contact-grid {
    gap: 0.85rem;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 0.88rem 0.92rem;
  }

  .contact-form textarea {
    min-height: 8rem;
  }

  .faq-list {
    gap: 0.75rem;
  }

  .faq-item summary {
    font-size: 0.98rem;
    line-height: 1.4;
  }

  .surface-accent.cta-band {
    padding: 1rem;
  }

  .site-footer {
    padding: 1.8rem 0 1rem;
  }

  .footer-simple {
    gap: 0.85rem;
  }

  .footer-simple-nav {
    gap: 0.6rem 0.9rem;
  }

  .footer-simple-nav a {
    font-size: 0.92rem;
  }

  .footer-simple-text {
    font-size: 0.94rem;
    line-height: 1.5;
  }

  .footer-bottom-simple {
    gap: 0.45rem;
    padding-top: 0.75rem;
  }
}



/* Home hero immersive wheel redesign */
.hero-home {
  --home-wheel-scale: 2.45;
  --home-wheel-opacity: 0.98;
}

.hero-home .hero-grid {
  position: relative;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  min-height: clamp(30rem, 54vw, 42rem);
}

.hero-home .hero-copy {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 0.95rem;
  max-width: min(35rem, 100%);
  padding: clamp(1.4rem, 2.8vw, 2.4rem) 0;
}

.hero-home .hero-copy h1 {
  max-width: 8.4ch;
  font-size: clamp(3rem, 7.6vw, 5.45rem);
  line-height: 0.92;
  text-wrap: balance;
}

.hero-home .hero-intro {
  max-width: 35rem;
  margin-top: 0;
  font-size: clamp(1rem, 1.2vw, 1.08rem);
  line-height: 1.7;
}

.hero-home .button-row {
  margin-top: 0.2rem;
}

.hero-home .hero-visual-home {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  pointer-events: none;
  overflow: visible;
}

.hero-home .wheel-stage {
  position: absolute;
  inset: 0;
  min-height: auto;
  border: none;
  border-radius: 0;
  background: none;
  box-shadow: none;
  overflow: visible;
  isolation: isolate;
}

.hero-home .wheel-stage::before {
  content: "";
  position: absolute;
  inset: 8% 0 8% 34%;
  border-radius: clamp(1.4rem, 3vw, 2.1rem);
  background:
    radial-gradient(circle at 64% 52%, rgba(var(--secondary-rgb), 0.12), transparent 18rem),
    repeating-linear-gradient(0deg, transparent 0 3.45rem, rgba(var(--secondary-rgb), 0.08) 3.45rem 3.53rem),
    repeating-linear-gradient(90deg, transparent 0 3.45rem, rgba(var(--secondary-rgb), 0.07) 3.45rem 3.53rem);
  opacity: 0.34;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, rgba(0, 0, 0, 0.12) 12%, #000 42%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, rgba(0, 0, 0, 0.12) 12%, #000 42%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.hero-home .wheel-stage::after {
  content: "";
  position: absolute;
  inset: 2% -8% 2% 34%;
  background:
    radial-gradient(circle at 66% 54%, rgba(var(--secondary-rgb), 0.24), transparent 17rem),
    radial-gradient(circle at 74% 34%, rgba(var(--cta-rgb), 0.18), transparent 20rem),
    linear-gradient(112deg, transparent 0 42%, rgba(var(--secondary-rgb), 0.08) 60%, transparent 82%);
  filter: blur(0.45rem);
  opacity: 0.94;
  pointer-events: none;
  z-index: 0;
}

.hero-home .hero-home-structure {
  position: absolute;
  display: block;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(var(--secondary-rgb), 0),
    rgba(var(--secondary-rgb), 0.72) 30%,
    rgba(var(--cta-rgb), 0.34) 100%
  );
  box-shadow: 0 0 0 1px rgba(var(--secondary-rgb), 0.06);
  opacity: 0.72;
  transform-origin: left center;
  pointer-events: none;
  z-index: 1;
}

.hero-home .hero-home-structure-back {
  top: 16%;
  right: 24%;
  width: 0.18rem;
  height: clamp(6.6rem, 13vw, 10.8rem);
  transform: rotate(7deg);
}

.hero-home .hero-home-structure-seat {
  top: 35%;
  right: 18%;
  width: clamp(7rem, 11vw, 9.8rem);
  height: 0.18rem;
  transform: rotate(10deg);
}

.hero-home .hero-home-structure-link {
  top: 46%;
  right: 14%;
  width: clamp(6.8rem, 10vw, 8.6rem);
  height: 0.18rem;
  opacity: 0.66;
  transform: rotate(37deg);
}

.hero-home .hero-home-structure-front {
  top: 55%;
  right: 6%;
  width: clamp(5.2rem, 8vw, 6.9rem);
  height: 0.18rem;
  transform: rotate(12deg);
}

.hero-home .hero-home-structure-front::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -0.9rem;
  width: 1.45rem;
  height: 1.45rem;
  border: 1px solid rgba(var(--secondary-rgb), 0.46);
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 32%, rgba(var(--secondary-rgb), 0.7), rgba(var(--primary-rgb), 0.1) 58%, transparent 60%);
  transform: translateY(-50%);
  box-shadow: 0 0 0 0.18rem rgba(var(--secondary-rgb), 0.05);
}

.hero-home .hero-home-structure-ground {
  left: 8%;
  right: 0;
  bottom: 16%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(var(--cta-rgb), 0.42) 24%,
    rgba(var(--secondary-rgb), 0.58) 58%,
    transparent
  );
  box-shadow: none;
  opacity: 0.55;
  transform: rotate(-5deg);
}

.hero-home .wheel-orbit {
  position: absolute;
  top: 55%;
  right: -4rem;
  width: 16.4rem;
  height: 16.4rem;
  opacity: var(--home-wheel-opacity);
  transform: translateY(-50%) scale(var(--home-wheel-scale));
  transform-origin: center;
  pointer-events: none;
  z-index: 2;
}

.hero-home .wheel-orbit::before,
.hero-home .wheel-orbit::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-home .wheel-orbit::before {
  inset: -2rem;
  background: radial-gradient(circle, rgba(var(--secondary-rgb), 0.16), transparent 64%);
  opacity: 0.86;
}

.hero-home .wheel-orbit::after {
  inset: -0.85rem;
  border: 1px solid rgba(var(--secondary-rgb), 0.2);
  opacity: 0.54;
}

.hero-home .wheel-orbit .glow {
  z-index: 0;
  opacity: 0.9;
  filter: blur(74px);
}

.hero-home .wheel-orbit .glow-a {
  top: -2rem;
  right: -1.3rem;
  width: 15rem;
  height: 15rem;
  background: rgba(var(--secondary-rgb), 0.3);
}

.hero-home .wheel-orbit .glow-b {
  left: -2rem;
  bottom: -1.2rem;
  width: 16rem;
  height: 16rem;
  background: rgba(var(--cta-rgb), 0.24);
}

.hero-home .wheel {
  width: 16.4rem;
  margin: -8.2rem;
  animation: wheel-spin 34s linear infinite;
  filter: drop-shadow(0 1.5rem 2rem rgba(var(--primary-rgb), 0.18));
  z-index: 1;
}

.hero-home .wheel-stage,
.hero-home .hero-visual.is-visible .wheel-stage {
  animation: none !important;
}

@media (max-width: 71.99rem) {
  .hero-home {
    --home-wheel-scale: 2.05;
    --home-wheel-opacity: 0.84;
  }

  .hero-home .hero-grid {
    min-height: clamp(26rem, 66vw, 34rem);
  }

  .hero-home .hero-copy {
    max-width: min(31rem, 100%);
    padding: 1.25rem 0;
  }

  .hero-home .hero-copy h1 {
    max-width: 8.8ch;
    font-size: clamp(2.7rem, 7.5vw, 4.35rem);
  }

  .hero-home .hero-intro {
    max-width: 31rem;
    font-size: 0.98rem;
    line-height: 1.66;
  }

  .hero-home .wheel-stage::before {
    inset: 10% -2% 8% 28%;
    opacity: 0.28;
  }

  .hero-home .wheel-stage::after {
    inset: 8% -10% 0 25%;
    opacity: 0.84;
  }

  .hero-home .hero-home-structure-back {
    top: 18%;
    right: 22%;
  }

  .hero-home .hero-home-structure-seat {
    top: 36%;
    right: 16%;
  }

  .hero-home .hero-home-structure-link {
    top: 47%;
    right: 12%;
  }

  .hero-home .hero-home-structure-front {
    top: 56%;
    right: 4%;
  }

  .hero-home .hero-home-structure-ground {
    left: 2%;
    right: -2%;
    bottom: 14%;
  }

  .hero-home .wheel-orbit {
    top: 58%;
    right: -5.4rem;
  }
}

@media (max-width: 47.99rem) {
  .hero-home {
    --home-wheel-scale: 1.3;
    --home-wheel-opacity: 0.62;
  }

  .hero-home .hero-grid {
    min-height: clamp(25rem, 132vw, 31rem);
    align-items: start;
  }

  .hero-home .hero-copy {
    max-width: none;
    gap: 0.8rem;
    padding: 0.4rem 0 9.5rem;
  }

  .hero-home .hero-copy h1 {
    max-width: 8.9ch;
    font-size: clamp(2.35rem, 10.6vw, 3.45rem);
    line-height: 0.95;
  }

  .hero-home .hero-intro {
    max-width: none;
    font-size: 0.97rem;
    line-height: 1.62;
  }

  .hero-home .wheel-stage {
    overflow: hidden;
  }

  .hero-home .wheel-stage::before {
    inset: 34% -16% 2% 6%;
    opacity: 0.18;
  }

  .hero-home .wheel-stage::after {
    inset: 22% -22% -6% 10%;
    opacity: 0.72;
  }

  .hero-home .hero-home-structure {
    opacity: 0.5;
  }

  .hero-home .hero-home-structure-back {
    top: 51%;
    right: 29%;
    height: 5.5rem;
  }

  .hero-home .hero-home-structure-seat {
    top: 61%;
    right: 20%;
    width: 6.1rem;
  }

  .hero-home .hero-home-structure-link {
    top: 68%;
    right: 15%;
    width: 5.4rem;
  }

  .hero-home .hero-home-structure-front {
    top: 73%;
    right: 6%;
    width: 4.6rem;
  }

  .hero-home .hero-home-structure-front::after {
    width: 1.1rem;
    height: 1.1rem;
    right: -0.7rem;
  }

  .hero-home .hero-home-structure-ground {
    left: -2%;
    right: -6%;
    bottom: 4.7rem;
    transform: rotate(-4deg);
  }

  .hero-home .wheel-orbit {
    top: auto;
    right: -6.4rem;
    bottom: 1.1rem;
    transform: scale(var(--home-wheel-scale));
  }

  .hero-home .wheel-orbit::after {
    opacity: 0.34;
  }

  .hero-home .wheel {
    animation-duration: 38s;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-home .wheel,
  .hero-home .wheel-orbit .glow-a,
  .hero-home .wheel-orbit .glow-b {
    animation: none;
  }
}

/* Home hero immersive wheel adjustments */
.hero-home::before,
.hero-home::after,
.hero-home .wheel-orbit .glow-a,
.hero-home .wheel-orbit .glow-b {
  animation: none;
}

@media (min-width: 48rem) and (max-width: 71.99rem) {
  .hero-home .wheel-orbit {
    right: -7.8rem;
  }
}

/* Home hero text breathing room */
.hero-home .hero-copy {
  max-width: min(43rem, 58vw);
  gap: 1.05rem;
}

.hero-home .hero-copy h1 {
  max-width: 10.9ch;
  font-size: clamp(3rem, 6.2vw, 4.95rem);
  letter-spacing: -0.05em;
}

.hero-home .hero-intro {
  max-width: 39rem;
  font-size: clamp(1.02rem, 1.1vw, 1.1rem);
}

.hero-home .wheel-stage::before {
  inset: 8% -2% 8% 42%;
}

.hero-home .wheel-stage::after {
  inset: 2% -10% 2% 40%;
}

.hero-home .wheel-orbit {
  right: -6rem;
}

@media (min-width: 48rem) and (max-width: 71.99rem) {
  .hero-home .hero-copy {
    max-width: min(38rem, 64vw);
  }

  .hero-home .hero-copy h1 {
    max-width: 10.2ch;
    font-size: clamp(2.75rem, 5.8vw, 4.2rem);
  }

  .hero-home .hero-intro {
    max-width: 34rem;
  }

  .hero-home .wheel-stage::before {
    inset: 10% -4% 8% 38%;
  }

  .hero-home .wheel-stage::after {
    inset: 8% -12% 0 36%;
  }

  .hero-home .wheel-orbit {
    right: -8.6rem;
  }
}



/* Home overview band redesign */
.home-overview-shell {
  position: relative;
  display: grid;
  gap: clamp(1.35rem, 3vw, 2.4rem);
  padding: clamp(1.4rem, 2.9vw, 2.15rem);
  border: 1px solid rgba(var(--secondary-rgb), 0.14);
  border-radius: clamp(1.6rem, 2.6vw, 2.1rem);
  background:
    radial-gradient(circle at 88% 16%, rgba(var(--secondary-rgb), 0.1), transparent 18rem),
    radial-gradient(circle at 14% 86%, rgba(var(--cta-rgb), 0.12), transparent 18rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02) 32%, rgba(255, 255, 255, 0)),
    linear-gradient(180deg, rgba(5, 22, 102, 0.42), rgba(4, 18, 79, 0.18));
  box-shadow:
    0 1.6rem 3.2rem rgba(2, 10, 46, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  overflow: hidden;
  isolation: isolate;
}

.home-overview-shell::before,
.home-overview-shell::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.home-overview-shell::before {
  inset: 0;
  background:
    repeating-linear-gradient(118deg, rgba(255, 255, 255, 0.024) 0 1px, transparent 1px 7rem),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.014) 0 1px, transparent 1px 6rem);
  opacity: 0.56;
  z-index: 0;
}

.home-overview-shell::after {
  right: -5rem;
  top: -4rem;
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
  border: 1px solid rgba(var(--secondary-rgb), 0.1);
  box-shadow:
    0 0 0 1.4rem rgba(var(--secondary-rgb), 0.025),
    0 0 0 3rem rgba(var(--secondary-rgb), 0.018);
  opacity: 0.45;
  z-index: 0;
}

.home-overview-copy,
.home-overview-stage {
  position: relative;
  z-index: 1;
}

.home-overview-copy {
  max-width: min(38rem, 100%);
  margin-bottom: 0;
  align-self: center;
}

.home-overview-copy h2 {
  max-width: 8.9ch;
  font-size: clamp(2.85rem, 5vw, 4.55rem);
  line-height: 0.92;
  letter-spacing: -0.055em;
}

.home-overview-copy > p:not(.eyebrow) {
  max-width: 34rem;
  margin-top: 1rem;
  font-size: clamp(1rem, 1.05vw, 1.08rem);
  line-height: 1.72;
}

.home-overview-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.home-overview-signals span {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0 0.8rem;
  border: 1px solid rgba(var(--secondary-rgb), 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.home-overview-caption {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.85rem;
  align-items: start;
  max-width: 29rem;
  margin-top: 1.25rem;
}

.home-overview-caption-line {
  width: 1px;
  min-height: 3.6rem;
  background: linear-gradient(180deg, rgba(var(--secondary-rgb), 0.14), rgba(var(--secondary-rgb), 0.72), rgba(var(--secondary-rgb), 0.08));
}

.home-overview-caption p {
  margin: 0;
  color: rgba(var(--secondary-rgb), 0.76);
  font-size: 0.95rem;
  line-height: 1.62;
}

.home-overview-stage {
  display: grid;
  gap: 1rem;
}


.home-overview-stage-head,
.home-overview-cards {
  position: relative;
  z-index: 1;
}

.home-overview-stage-head {
  display: grid;
  gap: 0.35rem;
  max-width: 23rem;
}

.home-overview-stage-kicker {
  color: rgba(var(--secondary-rgb), 0.92);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-overview-stage-head p {
  margin: 0;
  color: rgba(var(--secondary-rgb), 0.74);
  font-size: 0.92rem;
  line-height: 1.58;
}

.home-overview-cards {
  display: grid;
  gap: 0.95rem;
  grid-template-columns: 1fr;
  grid-template-areas:
    "story"
    "contact";
}

.home-overview-card {
  display: grid;
  align-content: start;
  gap: 0.8rem;
  min-height: 100%;
  padding: 1rem;
  border-color: rgba(var(--secondary-rgb), 0.14);
  border-radius: 1.35rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.03)),
    linear-gradient(180deg, rgba(88, 106, 202, 0.34), rgba(10, 23, 94, 0.24));
  box-shadow:
    0 0.95rem 2rem rgba(3, 11, 54, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.home-overview-card-story {
  grid-area: story;
}

.home-overview-card-innovation {
  grid-area: innovation;
}

.home-overview-card-contact {
  grid-area: contact;
}

.home-overview-card:hover,
.home-overview-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(var(--secondary-rgb), 0.24);
  box-shadow:
    0 1.2rem 2.4rem rgba(3, 11, 54, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.home-overview-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}

.home-overview-card .pill {
  min-height: 2rem;
  padding-inline: 0.82rem;
  background: rgba(var(--cta-rgb), 0.96);
  color: var(--primary-blue);
  box-shadow: 0 0.55rem 1.15rem rgba(4, 12, 58, 0.16);
}

.home-overview-card-step {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.72rem;
  font-weight: 800;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.home-overview-card h3 {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(1.12rem, 1.36vw, 1.38rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.home-overview-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.96rem;
  line-height: 1.62;
}

.home-overview-card-note {
  color: rgba(var(--secondary-rgb), 0.68);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-overview-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  width: fit-content;
  margin-top: auto;
  padding-top: 0.1rem;
  color: var(--secondary);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.home-overview-card-link::after {
  content: "";
  width: 0.46rem;
  height: 0.46rem;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.home-overview-card-link:hover,
.home-overview-card-link:focus-visible {
  color: var(--text-inverse);
}

@media (min-width: 72rem) {
  .home-overview-shell {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    align-items: center;
  }
}

@media (max-width: 71.99rem) {
  .home-overview-copy {
    max-width: none;
  }

  .home-overview-copy h2,
  .home-overview-copy > p:not(.eyebrow) {
    max-width: none;
  }
}

@media (max-width: 47.99rem) {
  .home-overview-shell {
    padding: 1.1rem;
  }

  .home-overview-copy h2 {
    max-width: none;
    font-size: clamp(2.35rem, 10vw, 3.25rem);
    line-height: 0.96;
  }

  .home-overview-caption {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  .home-overview-caption-line {
    width: 3.6rem;
    min-height: 1px;
    height: 1px;
    background: linear-gradient(90deg, rgba(var(--secondary-rgb), 0.14), rgba(var(--secondary-rgb), 0.72), rgba(var(--secondary-rgb), 0.08));
  }

  .home-overview-cards {
    grid-template-columns: 1fr;
    grid-template-areas:
      "story"
      "innovation"
      "contact";
  }

  .home-overview-card {
    padding: 1rem;
  }

  .home-overview-card h3 {
    max-width: none;
  }
}
/* Title wrapping tune-up */
.hero-copy h1,
.section-head h2,
.cta-band h2,
.stats-showcase-copy h2,
.home-overview-copy h2 {
  text-wrap: pretty;
  overflow-wrap: normal;
  word-break: normal;
}
@media (min-width: 72rem) {
  .hero-home .hero-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: 1.6rem;
  }
  .stats-showcase-layout {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: 1.9rem;
  }
  .home-overview-shell {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}
.hero-home .hero-copy {
  max-width: min(46rem, 62vw);
}
.hero-home .hero-copy h1 {
  max-width: 11.6ch;
  font-size: clamp(2.95rem, 5.9vw, 4.8rem);
  line-height: 0.96;
}
.hero-home .hero-intro {
  max-width: 40rem;
}
.stats-showcase-copy {
  max-width: 44rem;
}
.stats-showcase-copy h2 {
  max-width: 11.2ch;
  font-size: clamp(2.9rem, 8vw, 5.25rem);
  line-height: 0.95;
}
.home-overview-copy {
  max-width: 42rem;
}
.home-overview-copy h2 {
  max-width: 11.4ch;
  font-size: clamp(2.65rem, 4.35vw, 4rem);
  line-height: 0.96;
}
@media (min-width: 48rem) and (max-width: 71.99rem) {
  .hero-home .hero-grid {
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  }
  .hero-home .hero-copy {
    max-width: min(39rem, 68vw);
  }
  .hero-home .hero-copy h1 {
    max-width: 11.2ch;
    font-size: clamp(2.65rem, 5.4vw, 4.05rem);
  }
  .stats-showcase-copy h2 {
    max-width: 10.8ch;
    font-size: clamp(2.55rem, 7vw, 4.15rem);
  }
  .home-overview-copy h2 {
    max-width: 11ch;
    font-size: clamp(2.4rem, 5.1vw, 3.45rem);
  }
}
@media (max-width: 47.99rem) {
  .hero-home .hero-copy {
    max-width: none;
  }
  .hero-home .hero-copy h1 {
    max-width: 12.4ch;
    font-size: clamp(2.15rem, 8.8vw, 2.95rem);
    line-height: 0.99;
  }
  .stats-showcase-copy h2 {
    max-width: none;
    font-size: clamp(2.15rem, 8.9vw, 3rem);
    line-height: 0.99;
  }
  .home-overview-copy h2 {
    max-width: none;
    font-size: clamp(2.1rem, 8.6vw, 2.95rem);
    line-height: 0.99;
  }
}

/* Shared legal UI */
.legal-inline-note {
  margin: 0.15rem 0 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.55;
}

.legal-inline-note a {
  color: var(--primary-blue);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.16em;
}

.footer-legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1rem;
  margin-left: auto;
}

.footer-legal-nav a {
  color: rgba(var(--secondary-rgb), 0.72);
  font-size: 0.92rem;
  font-weight: 600;
}

.footer-legal-nav a:hover,
.footer-legal-nav a:focus-visible {
  color: #ffffff;
}

@media (max-width: 47.99rem) {
  .footer-legal-nav {
    margin-left: 0;
  }
}