:root {
  --bg: #f3f5f8;
  --surface: #ffffff;
  --text: #11345f;
  --muted: #4e698a;
  --line: #e1e7ef;
  --pink: #ff2f86;
  --fs-h1: clamp(2.1rem, 5.6vw, 3.4rem);
  --fs-h2: clamp(1.8rem, 3.8vw, 2.6rem);
  --fs-h3: clamp(1.3rem, 2.1vw, 1.8rem);
  --fs-body: clamp(0.98rem, 1vw, 1.02rem);
  --fs-button: clamp(0.84rem, 0.95vw, 0.9rem);
  --fs-nav: clamp(0.9rem, 0.98vw, 0.95rem);
  --lh-h1: 110%;
  --lh-h2: 114%;
  --lh-h3: 120%;
  --lh-body: 160%;
  --sp-xxs: 0.8%;
  --sp-xs: 1.2%;
  --sp-sm: 1.8%;
  --sp-md: 2.6%;
  --sp-lg: 4.2%;
  --sp-xl: 6.5%;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Manrope", sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
}

.header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(243, 245, 248, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e6ecf3;
}

.wrap {
  width: min(980px, 92vw);
  margin: var(--sp-md) auto;
}

.nav-shell {
  margin: 0 auto;
  min-height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  line-height: 100%;
}

.logo-dark,
.logo-white {
  display: block;
  width: auto;
  height: 44px;
  object-fit: contain;
}

.logo-white {
  display: none;
}

.footer .logo-dark,
.footer .logo-white {
  height: 40px;
}

.logo.is-on-dark .logo-dark {
  display: none;
}

.logo.is-on-dark .logo-white {
  display: block;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.65rem 1.15rem;
  font-size: var(--fs-button);
  font-weight: 700;
  text-decoration: none;
}

.btn-primary {
  background: var(--pink);
  color: #fff;
}

.menu {
  display: flex;
  gap: 0.35rem;
  align-items: center;
  position: relative;
}

.menu-item {
  position: relative;
}

.menu-item.has-panel {
  padding-bottom: 0.55rem;
  margin-bottom: -0.55rem;
}

.menu-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-size: var(--fs-nav);
  color: #1d4475;
  font-weight: 700;
  padding: 0.5rem 0.7rem;
  border-radius: 8px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.menu-item:hover > .menu-link,
.menu-item:focus-within > .menu-link {
  background: #e8eef7;
  color: #0f315a;
}

.menu-panel {
  position: absolute;
  top: calc(100% + 0.1rem);
  left: 0;
  min-width: 330px;
  background: #fff;
  border: 1px solid #dbe4f0;
  border-radius: 14px;
  box-shadow: 0 16px 34px rgba(16, 43, 82, 0.14);
  padding: 1rem 1rem 0.9rem;
  opacity: 0;
  transform: translateY(8px);
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 25;
}

.menu-panel.wide {
  min-width: 560px;
}

.menu-item.has-panel:hover > .menu-panel,
.menu-item.has-panel:focus-within > .menu-panel {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
}

.menu-item.has-panel::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% - 0.1rem);
  height: 0.7rem;
}

.tree-list,
.tree-list ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.tree-list > li {
  margin: 0.2rem 0 0.35rem;
}

.tree-list a {
  display: inline-block;
  text-decoration: none;
  color: #173b69;
  font-size: var(--fs-nav);
  line-height: 140%;
  padding: 0.26rem 0.38rem;
  border-radius: 6px;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.tree-list a:hover,
.tree-list a:focus-visible {
  background: #eef3fb;
  color: #0d2f58;
}

.top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: var(--sp-sm);
}

.top a {
  text-decoration: none;
  color: var(--pink);
  font-weight: 700;
}

h1 {
  margin: var(--sp-xxs) 0 var(--sp-sm);
  font-size: var(--fs-h1);
  line-height: var(--lh-h1);
}

p {
  color: var(--muted);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: var(--sp-md);
}

.card + .card {
  margin-top: var(--sp-sm);
}

.list {
  margin: var(--sp-xs) 0 0;
  padding-left: 1.1rem;
  color: #213f65;
}

.list li { margin: 0.35rem 0; }

.grid {
  margin-top: var(--sp-sm);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.grid a {
  display: block;
  text-decoration: none;
  color: #11345f;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.85rem;
  font-weight: 700;
  font-size: var(--fs-body);
  line-height: 145%;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 1.4rem 0 2.2rem;
  margin-top: var(--sp-lg);
  display: grid;
  grid-template-columns: 2fr 1.2fr 1fr 1.15fr 1fr;
  gap: 1rem;
}

.footer p {
  color: var(--muted);
  max-width: 28ch;
}

.footer h4 {
  margin: 0 0 0.65rem;
  font-size: var(--fs-h3);
  line-height: 118%;
}

.footer-text {
  color: var(--muted);
  margin: 0 0 0.55rem;
  font-size: var(--fs-nav);
  line-height: 150%;
}

.footer a {
  display: block;
  text-decoration: none;
  color: #254a78;
  margin-bottom: 0.45rem;
  font-size: var(--fs-nav);
}

.footer a:hover,
.footer a:focus-visible {
  color: #12365f;
}

@media (max-width: 980px) {
  .footer {
    grid-template-columns: 1fr 1fr;
  }

  .footer > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .menu,
  .btn-primary {
    display: none;
  }

  .wrap {
    margin: var(--sp-sm) auto;
  }

  .nav-shell {
    min-height: 60px;
  }

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

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

.components-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.components-sidebar {
  position: sticky;
  top: 108px;
  display: grid;
  gap: 0.7rem;
}

.components-nav-link {
  display: block;
  text-decoration: none;
  color: #173b69;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.72rem 0.8rem;
  font-size: var(--fs-nav);
  font-weight: 700;
  line-height: 138%;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.components-nav-link:hover,
.components-nav-link:focus-visible {
  color: #0f315a;
  border-color: #c8d7ea;
  box-shadow: 0 8px 18px rgba(15, 47, 90, 0.08);
}

.components-nav-link.is-active {
  color: #ff2f86;
  border-color: #f6c6dc;
  box-shadow: 0 8px 18px rgba(255, 47, 134, 0.14);
}

.components-content {
  min-width: 0;
}

.components-content .card + .card {
  margin-top: 0.95rem;
}

.components-content h1,
.components-content h2 {
  scroll-margin-top: 120px;
}

@media (max-width: 980px) {
  .components-layout {
    grid-template-columns: 1fr;
  }

  .components-sidebar {
    position: static;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.55rem;
  }
}

@media (max-width: 760px) {
  .components-sidebar {
    grid-template-columns: 1fr;
  }
}

.about-page {
  background:
    radial-gradient(circle at 100% 24%, rgba(255, 47, 134, 0.06), transparent 28%),
    radial-gradient(circle at 82% 58%, rgba(255, 47, 134, 0.05), transparent 22%),
    var(--bg);
}

.about-story,
.about-proof {
  position: relative;
  overflow: hidden;
}

.about-story::before,
.about-proof::before {
  content: "";
  position: absolute;
  right: -18%;
  top: -8%;
  width: 64%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 32px solid rgba(255, 47, 134, 0.05);
  box-shadow:
    inset 0 0 0 58px rgba(255, 47, 134, 0.03),
    inset 0 0 0 116px rgba(255, 47, 134, 0.025);
  pointer-events: none;
}

.about-story__grid,
.about-proof__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(280px, 0.84fr);
  gap: 1.5rem;
  align-items: start;
}

.about-story__lead,
.about-proof__content,
.about-proof__visuals {
  position: relative;
  z-index: 1;
}

.about-story__brand {
  width: min(320px, 48vw);
  height: auto;
  margin-bottom: 1.4rem;
}

.about-copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.8rem;
  align-items: start;
}

.about-kicker {
  margin: 0 0 0.55rem;
  color: var(--pink);
  font-size: clamp(1.5rem, 3.4vw, 2.2rem);
  line-height: 110%;
  font-weight: 800;
}

.about-text {
  margin: 0 0 1.15rem;
  color: #1f2c39;
  font-size: clamp(1.06rem, 1.16vw, 1.16rem);
  line-height: 150%;
}

.about-text--large {
  font-size: clamp(1.22rem, 1.42vw, 1.42rem);
  line-height: 145%;
}

.about-owned {
  grid-column: 2;
  align-self: end;
  padding-top: 0.5rem;
}

.about-owned img {
  display: block;
  width: min(310px, 100%);
  height: auto;
}

.about-story__media,
.about-proof__side-video {
  position: relative;
  z-index: 1;
}

.about-video-card,
.about-proof__side-video,
.about-proof__factory {
  overflow: hidden;
  border-radius: 24px;
  background: #dfe8f4;
  box-shadow: 0 24px 50px rgba(16, 43, 82, 0.12);
}

.about-video-card {
  min-height: 880px;
}

.about-video-card video,
.about-proof__side-video video,
.about-proof__factory video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-proof {
  margin-top: var(--sp-lg);
}

.about-proof::before {
  left: -22%;
  right: auto;
  top: auto;
  bottom: -18%;
  width: 42%;
}

.about-proof__content > .about-kicker {
  margin-bottom: 1rem;
}

.about-proof__list {
  margin: 0;
  padding-left: 1.4rem;
  color: #18314f;
}

.about-proof__list li {
  margin: 0 0 0.8rem;
  font-size: clamp(1.08rem, 1.2vw, 1.22rem);
  line-height: 150%;
}

.about-proof__factory {
  margin-top: 1.35rem;
  min-height: 280px;
}

.about-proof__visuals {
  display: grid;
  gap: 1.1rem;
}

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

.about-proof__logos img,
.about-proof__logos span {
  width: 100%;
  min-height: 84px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 28px rgba(18, 54, 95, 0.08);
  padding: 1rem;
}

.about-proof__logos img {
  object-fit: contain;
}

.about-proof__logos span {
  display: grid;
  place-items: center;
  color: #ff6a1b;
  font-size: clamp(1.2rem, 1.6vw, 1.6rem);
  font-weight: 800;
}

.about-proof__quote {
  border-radius: 24px;
  background: #101846;
  color: #fff;
  padding: 1.5rem 1.55rem;
  box-shadow: 0 24px 44px rgba(16, 24, 70, 0.24);
}

.about-proof__quote p {
  margin: 0;
  color: #fff;
  font-size: clamp(1.14rem, 1.4vw, 1.44rem);
  line-height: 145%;
  font-weight: 800;
}

.about-proof__quote p + p {
  margin-top: 1.2rem;
}

.about-proof__side-video {
  min-height: 520px;
}

@media (max-width: 1180px) {
  .about-story__grid,
  .about-proof__grid {
    grid-template-columns: 1fr;
  }

  .about-video-card {
    min-height: 520px;
  }

  .about-proof__side-video {
    min-height: 360px;
  }
}

@media (max-width: 860px) {
  .about-copy {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .about-owned {
    grid-column: auto;
  }

  .about-proof__logos {
    grid-template-columns: 1fr;
  }

  .about-proof__logos img,
  .about-proof__logos span {
    min-height: 72px;
  }
}

@media (max-width: 760px) {
  .about-story::before,
  .about-proof::before {
    display: none;
  }

  .about-story__brand {
    width: min(260px, 62vw);
    margin-bottom: 1rem;
  }

  .about-kicker {
    font-size: clamp(1.35rem, 7vw, 1.9rem);
  }

  .about-text,
  .about-text--large,
  .about-proof__list li,
  .about-proof__quote p {
    font-size: 1rem;
  }

  .about-video-card {
    min-height: 380px;
  }

  .about-proof__factory,
  .about-proof__side-video {
    min-height: 240px;
  }
}

.about-page h2 {
  margin: 0 0 0.7rem;
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 118%;
  color: var(--text);
}

.about-page h3 {
  margin: 1rem 0 0.35rem;
  font-size: clamp(1.02rem, 1.2vw, 1.18rem);
  line-height: 125%;
  color: var(--text);
}

/* About Us V3 */
.about-page-v3 {
  background:
    radial-gradient(circle at 88% 22%, rgba(255, 47, 134, 0.08), transparent 22%),
    radial-gradient(circle at 100% 62%, rgba(255, 47, 134, 0.05), transparent 24%),
    var(--bg);
}

.about-wrap {
  padding-bottom: 2.5rem;
}

.about-overview {
  position: relative;
  margin-bottom: 1.8rem;
}

.about-overview__hero {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: 24px;
  background: #d8e3f0;
  box-shadow: 0 24px 50px rgba(16, 43, 82, 0.12);
}

.about-overview__hero video {
  width: 100%;
  height: 100%;
  min-height: 420px;
  display: block;
  object-fit: cover;
}

.about-overview__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(12, 33, 68, 0.66), rgba(17, 52, 95, 0.18));
}

.about-overview__panel {
  position: relative;
  z-index: 1;
  width: min(900px, calc(100% - 3rem));
  margin: -5.4rem auto 0;
  padding: 1.6rem 1.7rem;
  border-radius: 22px;
  box-shadow: 0 24px 44px rgba(17, 52, 95, 0.12);
}

.about-overview__panel.card {
  border-color: rgba(225, 231, 239, 0.72);
}

.about-overview__brand {
  width: min(230px, 48vw);
  height: auto;
  display: block;
  margin-bottom: 1rem;
}

.about-eyebrow {
  margin: 0 0 0.45rem;
  font-size: 0.82rem;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
  color: var(--pink);
}

.about-overview__panel h1 {
  max-width: 13ch;
  margin: 0;
}

.about-intro {
  max-width: 58ch;
  margin: 0.9rem 0 0;
  font-size: clamp(1rem, 1.14vw, 1.1rem);
}

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

.about-overview__stats article {
  padding: 0.9rem 1rem;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(244, 247, 251, 0.96), rgba(255, 255, 255, 0.96));
  border: 1px solid rgba(225, 231, 239, 0.82);
}

.about-overview__stats strong {
  display: block;
  color: var(--text);
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  line-height: 1;
  font-weight: 800;
}

.about-overview__stats span {
  display: block;
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.35;
  font-weight: 700;
}

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

.about-story-card {
  min-height: 100%;
  border-radius: 22px;
  box-shadow: 0 18px 38px rgba(16, 43, 82, 0.08);
}

.about-story-card p:last-child {
  margin-bottom: 0;
}

.about-kicker--small {
  font-size: 0.82rem;
  line-height: 1.2;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-badge-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  margin-top: 1.25rem;
  padding: 1rem 1.05rem;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 246, 250, 0.95), rgba(255, 255, 255, 0.95));
  border: 1px solid rgba(246, 198, 220, 0.82);
}

.about-badge-card h3 {
  margin: 0.2rem 0 0;
  color: var(--text);
  font-size: clamp(1.15rem, 1.35vw, 1.35rem);
  line-height: 1.2;
}

.about-badge-card img {
  width: min(220px, 42vw);
  height: auto;
  display: block;
}

.about-proof-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.94fr) minmax(0, 1.18fr);
  gap: 1.2rem;
  align-items: start;
}

.about-proof-copy {
  border-radius: 22px;
  box-shadow: 0 18px 38px rgba(16, 43, 82, 0.08);
}

.about-proof-list {
  margin: 0.35rem 0 0;
  padding-left: 1.25rem;
  color: #18314f;
}

.about-proof-list li {
  margin: 0 0 0.8rem;
  font-size: clamp(1.02rem, 1.12vw, 1.08rem);
  line-height: 1.55;
}

.about-proof-visuals {
  display: grid;
  gap: 1rem;
}

.about-proof-logos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: 0.9rem;
  border-radius: 22px;
  box-shadow: 0 18px 38px rgba(16, 43, 82, 0.08);
}

.about-proof-logos img,
.about-firetv {
  display: block;
  width: 100%;
  min-height: 82px;
  object-fit: contain;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(225, 231, 239, 0.82);
  padding: 0.95rem;
}

.about-firetv {
  display: grid;
  place-items: center;
  color: #ff6a1b;
  font-size: clamp(1.2rem, 1.5vw, 1.45rem);
  font-weight: 800;
}

.about-proof-media-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(250px, 0.9fr);
  gap: 1rem;
  align-items: stretch;
}

.about-proof-media {
  overflow: hidden;
  border-radius: 22px;
  box-shadow: 0 18px 38px rgba(16, 43, 82, 0.08);
  padding: 0;
  background: #dfe8f4;
}

.about-proof-media--large {
  min-height: 360px;
}

.about-proof-media--tall {
  min-height: 360px;
}

.about-proof-media video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-proof-quote {
  display: grid;
  align-content: center;
  gap: 1rem;
  border-radius: 22px;
  padding: 1.4rem 1.45rem;
  background: #101846;
  color: #fff;
  box-shadow: 0 20px 42px rgba(16, 24, 70, 0.22);
}

.about-proof-quote p {
  margin: 0;
  color: #fff;
  font-size: clamp(1.04rem, 1.18vw, 1.18rem);
  line-height: 1.5;
  font-weight: 800;
}

@media (max-width: 1180px) {
  .about-overview__panel {
    width: min(100%, calc(100% - 2rem));
  }

  .about-proof-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .about-overview__hero,
  .about-overview__hero video {
    min-height: 360px;
  }

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

  .about-story-grid,
  .about-proof-media-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .about-wrap {
    padding-bottom: 1.5rem;
  }

  .about-overview__hero,
  .about-overview__hero video {
    min-height: 280px;
    border-radius: 18px;
  }

  .about-overview__panel {
    width: 100%;
    margin-top: -2.8rem;
    padding: 1.1rem;
    border-radius: 18px;
  }

  .about-overview__brand {
    width: min(180px, 52vw);
  }

  .about-overview__stats {
    grid-template-columns: 1fr 1fr;
    gap: 0.7rem;
  }

  .about-story-grid,
  .about-proof-grid {
    gap: 0.9rem;
  }

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

  .about-proof-logos {
    grid-template-columns: 1fr;
  }

  .about-proof-media--large,
  .about-proof-media--tall {
    min-height: 240px;
  }
}

/* About Us spacing refinements */
.about-page-v3 .card {
  padding: clamp(1.45rem, 2.4vw, 2.1rem);
}

.about-page-v3 .about-overview__panel {
  padding: clamp(1.55rem, 2.8vw, 2.3rem);
}

.about-page-v3 .about-story-card,
.about-page-v3 .about-proof-copy,
.about-page-v3 .about-proof-logos,
.about-page-v3 .about-proof-quote {
  border-radius: 24px;
}

.about-page-v3 .about-story-card,
.about-page-v3 .about-proof-copy {
  padding: clamp(1.55rem, 2.5vw, 2.2rem);
}

.about-page-v3 .about-kicker {
  margin-bottom: 0.8rem;
}

.about-page-v3 .about-text {
  margin-bottom: 1.45rem;
}

.about-page-v3 .about-text--large {
  margin-bottom: 1.3rem;
  line-height: 1.42;
}

.about-page-v3 .about-story-grid {
  gap: 1.45rem;
  margin-bottom: 1.45rem;
}

.about-page-v3 .about-proof-grid {
  gap: 1.45rem;
}

.about-page-v3 .about-badge-card {
  margin-top: 1.55rem;
  padding: 1.25rem 1.35rem;
}

.about-page-v3 .about-proof-list {
  margin-top: 0.55rem;
  padding-left: 1.45rem;
}

.about-page-v3 .about-proof-list li {
  margin-bottom: 1rem;
  padding-right: 0.35rem;
}

.about-page-v3 .about-proof-visuals {
  gap: 1.25rem;
}

.about-page-v3 .about-proof-logos {
  gap: 1.1rem;
  padding: 1.15rem;
}

.about-page-v3 .about-proof-logos img,
.about-page-v3 .about-firetv {
  min-height: 96px;
  padding: 1.15rem;
}

.about-page-v3 .about-proof-media-grid {
  gap: 1.25rem;
}

.about-page-v3 .about-proof-quote {
  padding: 1.7rem;
}

.about-page-v3 .about-proof-media--large,
.about-page-v3 .about-proof-media--tall {
  border-radius: 24px;
}

@media (max-width: 980px) {
  .about-page-v3 .about-story-grid,
  .about-page-v3 .about-proof-grid,
  .about-page-v3 .about-proof-media-grid {
    gap: 1.1rem;
  }
}

@media (max-width: 760px) {
  .about-page-v3 .card,
  .about-page-v3 .about-story-card,
  .about-page-v3 .about-proof-copy,
  .about-page-v3 .about-overview__panel {
    padding: 1.15rem;
  }

  .about-page-v3 .about-badge-card,
  .about-page-v3 .about-proof-quote,
  .about-page-v3 .about-proof-logos {
    padding: 1rem;
  }

  .about-page-v3 .about-proof-logos img,
  .about-page-v3 .about-firetv {
    min-height: 74px;
    padding: 0.9rem;
  }
}

/* About Us proof simplification */
.about-proof-quote-wrap {
  width: 100%;
}

.about-proof-quote--full {
  width: 100%;
  min-height: 320px;
  align-content: center;
}

.about-page-v3 .about-proof-quote--full {
  padding: clamp(1.7rem, 3vw, 2.6rem);
}

.about-page-v3 .about-proof-quote--full p {
  max-width: 18ch;
  font-size: clamp(1.18rem, 1.65vw, 1.75rem);
  line-height: 1.38;
}

.about-page-v3 .about-proof-quote--full p + p {
  margin-top: 1.4rem;
}

@media (max-width: 760px) {
  .about-proof-quote--full {
    min-height: auto;
  }

  .about-page-v3 .about-proof-quote--full p {
    max-width: none;
    font-size: 1.15rem;
  }
}

/* About Us proof balance */
.about-page-v3 .about-proof-logos {
  min-height: 210px;
  align-items: stretch;
}

.about-page-v3 .about-proof-logos img,
.about-page-v3 .about-firetv {
  min-height: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-page-v3 .about-proof-logos img {
  padding: 1.35rem;
}

.about-page-v3 .about-proof-quote--full {
  min-height: 360px;
}

@media (max-width: 760px) {
  .about-page-v3 .about-proof-logos {
    min-height: auto;
  }

  .about-page-v3 .about-proof-logos img,
  .about-page-v3 .about-firetv,
  .about-page-v3 .about-proof-quote--full {
    min-height: auto;
    height: auto;
  }
}

/* Shared subpage shell */
.has-subpage-shell .top {
  display: none;
}

.page-banner {
  position: relative;
  margin-bottom: 1.8rem;
}

.page-banner__media {
  min-height: 320px;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(17, 52, 95, 0.12);
  background:
    linear-gradient(135deg, rgba(14, 39, 74, 0.9), rgba(17, 52, 95, 0.6)),
    radial-gradient(circle at 78% 22%, rgba(255, 47, 134, 0.22), transparent 18%),
    radial-gradient(circle at 22% 82%, rgba(111, 182, 255, 0.2), transparent 24%),
    linear-gradient(135deg, #183f71, #0f284b);
}

.page-banner--company .page-banner__media {
  background:
    linear-gradient(135deg, rgba(10, 34, 66, 0.88), rgba(15, 46, 91, 0.62)),
    radial-gradient(circle at 80% 18%, rgba(255, 47, 134, 0.2), transparent 18%),
    linear-gradient(135deg, #173f74, #18304f);
}

.page-banner--services .page-banner__media {
  background:
    linear-gradient(135deg, rgba(11, 34, 64, 0.88), rgba(16, 67, 111, 0.56)),
    radial-gradient(circle at 20% 26%, rgba(255, 161, 83, 0.18), transparent 18%),
    linear-gradient(135deg, #17355f, #1c6e8f);
}

.page-banner--solutions .page-banner__media {
  background:
    linear-gradient(135deg, rgba(11, 34, 64, 0.88), rgba(77, 104, 176, 0.54)),
    radial-gradient(circle at 76% 22%, rgba(255, 47, 134, 0.16), transparent 18%),
    linear-gradient(135deg, #17345f, #4b68af);
}

.page-banner--industrial .page-banner__media {
  background:
    linear-gradient(135deg, rgba(7, 28, 54, 0.9), rgba(16, 57, 97, 0.56)),
    radial-gradient(circle at 78% 22%, rgba(255, 176, 49, 0.18), transparent 17%),
    linear-gradient(135deg, #102947, #194f75);
}

.page-banner--insights .page-banner__media {
  background:
    linear-gradient(135deg, rgba(13, 38, 72, 0.9), rgba(41, 103, 154, 0.52)),
    radial-gradient(circle at 74% 24%, rgba(255, 47, 134, 0.18), transparent 18%),
    linear-gradient(135deg, #17345f, #2b679a);
}

.page-banner__card {
  width: min(820px, calc(100% - 5rem));
  margin: -4.8rem auto 0;
  position: relative;
  z-index: 1;
  border-radius: 24px;
  box-shadow: 0 24px 44px rgba(17, 52, 95, 0.12);
}

.page-banner__eyebrow {
  margin: 0 0 0.55rem;
  color: var(--pink);
  font-size: 0.82rem;
  line-height: 1.2;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.page-banner__card h1 {
  margin: 0;
  max-width: 12ch;
}

.page-banner__card p {
  margin: 1rem 0 0;
  max-width: 58ch;
  font-size: clamp(1rem, 1.08vw, 1.08rem);
}

.page-shell {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 1.4rem;
  align-items: start;
}

.page-shell__sidebar {
  position: sticky;
  top: 7rem;
  border-radius: 22px;
  box-shadow: 0 18px 36px rgba(17, 52, 95, 0.08);
}

.page-shell__label {
  margin: 0 0 1rem;
  color: var(--pink);
  font-size: 0.82rem;
  line-height: 1.2;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.page-shell__nav {
  display: grid;
  gap: 0.45rem;
}

.page-shell__link {
  display: block;
  padding: 0.72rem 0.9rem;
  border-radius: 14px;
  text-decoration: none;
  color: #1b3d69;
  font-weight: 700;
  line-height: 1.35;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.page-shell__link:hover,
.page-shell__link:focus-visible {
  background: #eef3fb;
  color: #0f315a;
  transform: translateX(2px);
}

.page-shell__link.is-active {
  background: linear-gradient(180deg, rgba(255, 240, 247, 0.95), rgba(255, 255, 255, 0.98));
  color: var(--pink);
  box-shadow: inset 0 0 0 1px rgba(246, 198, 220, 0.82);
}

.page-shell__content {
  min-width: 0;
}

.page-shell__content > .card {
  border-radius: 22px;
  box-shadow: 0 18px 36px rgba(17, 52, 95, 0.08);
}

.page-shell__content > .card:first-child {
  padding: clamp(1.5rem, 2.4vw, 2rem);
}

.page-shell__content > .card:first-child > p:first-of-type {
  font-size: clamp(1.02rem, 1.1vw, 1.08rem);
}

.page-shell__content > .card:first-child .grid {
  margin-top: 1.1rem;
}

.page-shell__content > .card:first-child .list {
  margin-top: 0.95rem;
}

.page-shell__content > .card:first-child h1 {
  display: none;
}

@media (max-width: 1080px) {
  .page-banner__card {
    width: min(100%, calc(100% - 2rem));
  }

  .page-shell {
    grid-template-columns: 220px minmax(0, 1fr);
  }
}

@media (max-width: 920px) {
  .page-banner__media {
    min-height: 280px;
  }

  .page-shell {
    grid-template-columns: 1fr;
  }

  .page-shell__sidebar {
    position: static;
  }

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

@media (max-width: 760px) {
  .page-banner {
    margin-bottom: 1.15rem;
  }

  .page-banner__media {
    min-height: 220px;
    border-radius: 18px;
  }

  .page-banner__card {
    width: 100%;
    margin-top: -2.8rem;
    border-radius: 18px;
  }

  .page-shell {
    gap: 1rem;
  }

  .page-shell__nav {
    grid-template-columns: 1fr;
  }
}

/* About Us proof cleanup */
.about-page-v3 .about-proof-visuals {
  grid-template-columns: 1fr;
  grid-template-rows: auto auto;
}

.about-page-v3 .about-proof-quote-wrap {
  display: block;
  width: 100%;
}

.about-page-v3 .about-proof-quote--full {
  width: 100%;
  min-height: 390px;
  max-width: none;
}

.about-page-v3 .about-proof-quote--full p {
  max-width: 19ch;
}

.about-page-v3 .about-proof-media-grid,
.about-page-v3 .about-proof-media,
.about-page-v3 .about-proof-media--large,
.about-page-v3 .about-proof-media--tall {
  display: none !important;
}

@media (max-width: 760px) {
  .about-page-v3 .about-proof-quote--full {
    min-height: auto;
  }

  .about-page-v3 .about-proof-quote--full p {
    max-width: none;
  }
}

/* Shared subpage shell sidebar pinning */
.page-shell {
  position: relative;
}

.page-shell__sidebar {
  margin-top: -7.25rem;
  z-index: 3;
}

.page-shell__content {
  padding-top: 0.25rem;
}

@media (max-width: 980px) {
  .page-shell__sidebar {
    margin-top: -5.5rem;
  }
}

@media (max-width: 760px) {
  .page-shell__sidebar {
    margin-top: 0;
  }

  .page-shell__content {
    padding-top: 0;
  }
}

/* Shared subpage shell aligned to components distributor */
.page-shell {
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.page-shell__sidebar {
  position: sticky;
  top: 108px;
  display: block;
  margin-top: 0;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  z-index: auto;
}

.page-shell__label {
  margin: 0 0 0.7rem;
}

.page-shell__nav {
  display: grid;
  gap: 0.7rem;
}

.page-shell__link {
  display: block;
  padding: 0.72rem 0.8rem;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #fff;
  color: #173b69;
  font-size: var(--fs-nav);
  font-weight: 700;
  line-height: 138%;
  text-decoration: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.page-shell__link:hover,
.page-shell__link:focus-visible {
  color: #0f315a;
  border-color: #c8d7ea;
  box-shadow: 0 8px 18px rgba(15, 47, 90, 0.08);
  transform: none;
}

.page-shell__link.is-active {
  color: #ff2f86;
  border-color: #f6c6dc;
  background: #fff;
  box-shadow: 0 8px 18px rgba(255, 47, 134, 0.14);
}

.page-shell__content {
  padding-top: 0;
}

@media (max-width: 980px) {
  .page-shell {
    grid-template-columns: 1fr;
  }

  .page-shell__sidebar {
    position: static;
  }

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

@media (max-width: 760px) {
  .page-shell__nav {
    grid-template-columns: 1fr;
  }
}

/* Shared subpage shell two-column composition */
main.wrap[data-shell-built="true"] {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  column-gap: 1rem;
  row-gap: 0;
  align-items: start;
}

main.wrap[data-shell-built="true"] > .page-banner {
  grid-column: 2;
  margin-bottom: 1rem;
}

main.wrap[data-shell-built="true"] > .page-shell {
  display: contents;
}

main.wrap[data-shell-built="true"] .page-shell__sidebar {
  grid-column: 1;
  grid-row: 1 / span 2;
  align-self: start;
  margin-top: 460px;
}

main.wrap[data-shell-built="true"] .page-shell__content {
  grid-column: 2;
  grid-row: 2;
}

main.wrap[data-shell-built="true"] .page-banner__card {
  width: min(860px, calc(100% - 4rem));
  margin: -4.8rem 0 0 3rem;
}

@media (max-width: 1280px) {
  main.wrap[data-shell-built="true"] .page-shell__sidebar {
    margin-top: 430px;
  }

  main.wrap[data-shell-built="true"] .page-banner__card {
    width: min(100%, calc(100% - 2.5rem));
    margin-left: 1.8rem;
  }
}

@media (max-width: 980px) {
  main.wrap[data-shell-built="true"] {
    display: block;
  }

  main.wrap[data-shell-built="true"] > .page-shell {
    display: grid;
  }

  main.wrap[data-shell-built="true"] .page-shell__sidebar {
    margin-top: 0;
  }

  main.wrap[data-shell-built="true"] .page-banner__card {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 760px) {
  main.wrap[data-shell-built="true"] .page-banner__card {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}

/* Shared subpage shell sidebar offset refinement */
main.wrap[data-shell-built="true"] .page-shell__sidebar {
  margin-top: 320px;
}

@media (max-width: 1280px) {
  main.wrap[data-shell-built="true"] .page-shell__sidebar {
    margin-top: 300px;
  }
}

@media (max-width: 980px) {
  main.wrap[data-shell-built="true"] .page-shell__sidebar {
    margin-top: 0;
  }
}

/* Shared subpage shell sidebar aligned to hero top */
main.wrap[data-shell-built="true"] .page-shell__sidebar {
  margin-top: 0;
}

/* Shared subpage shell spacing polish */
main.wrap[data-shell-built="true"] {
  grid-template-columns: 196px minmax(0, 1fr);
  column-gap: 1.15rem;
}

.page-shell {
  grid-template-columns: 196px minmax(0, 1fr);
  gap: 1.15rem;
}

@media (max-width: 1080px) {
  .page-shell {
    grid-template-columns: 196px minmax(0, 1fr);
  }
}

/* Shared subpage shell nav visual polish */
.page-shell__link {
  border-radius: 12px;
  box-shadow: 0 6px 14px rgba(15, 47, 90, 0.04);
}

.page-shell__link:hover,
.page-shell__link:focus-visible {
  box-shadow: 0 10px 20px rgba(15, 47, 90, 0.08);
}

.page-shell__link.is-active {
  box-shadow: 0 10px 22px rgba(255, 47, 134, 0.12);
}

/* Shared subpage hero media system */
.page-banner__media {
  position: relative;
  isolation: isolate;
}

.page-banner__video,
.page-banner__media-overlay,
.page-banner__art {
  position: absolute;
  inset: 0;
}

.page-banner__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  filter: saturate(0.95) contrast(1.02);
}

.page-banner__media-overlay {
  background:
    linear-gradient(135deg, rgba(8, 30, 58, 0.48), rgba(14, 44, 82, 0.18)),
    radial-gradient(circle at 76% 24%, rgba(255, 47, 134, 0.16), transparent 18%),
    radial-gradient(circle at 20% 78%, rgba(111, 182, 255, 0.16), transparent 22%);
  z-index: 1;
}

.page-banner__art {
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem 1.5rem 6.5rem;
}

.page-banner__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  max-width: min(44%, 28rem);
}

.page-banner__chip {
  display: inline-flex;
  align-items: center;
  padding: 0.52rem 0.88rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.82rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.01em;
  backdrop-filter: blur(10px);
}

.page-banner__chip.is-active {
  background: rgba(255, 47, 134, 0.18);
  border-color: rgba(255, 132, 184, 0.45);
  color: #fff;
}

.page-banner__media-panel {
  width: min(31rem, 48%);
}

.page-banner__media-panel--logos,
.page-banner__media-panel--cards,
.page-banner__media-panel--stories {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.page-banner__media-panel--icons {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  width: min(33rem, 52%);
}

.page-banner__logo-card,
.page-banner__mini-card,
.page-banner__story-tile,
.page-banner__icon-tile {
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(216, 228, 243, 0.92);
  box-shadow: 0 18px 34px rgba(11, 34, 64, 0.12);
}

.page-banner__logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 82px;
  padding: 1rem 1.15rem;
}

.page-banner__logo-card img {
  max-width: 100%;
  max-height: 44px;
  width: auto;
  height: auto;
}

.page-banner__logo-card--text {
  color: #ff6a1f;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.page-banner__text-brand {
  display: inline-block;
  white-space: nowrap;
}

.page-banner__mini-card,
.page-banner__story-tile {
  padding: 1rem 1.05rem;
}

.page-banner__mini-card span,
.page-banner__story-tile strong {
  display: block;
  color: #18375f;
  font-size: 0.98rem;
  line-height: 1.35;
  font-weight: 800;
}

.page-banner__mini-card.is-active,
.page-banner__story-tile.is-active,
.page-banner__icon-tile.is-active {
  box-shadow: 0 18px 38px rgba(255, 47, 134, 0.16);
  border-color: rgba(246, 198, 220, 0.95);
}

.page-banner__story-label {
  display: inline-block;
  margin-bottom: 0.45rem;
  color: #ff2f86;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-banner__icon-tile {
  display: grid;
  place-items: center;
  gap: 0.55rem;
  min-height: 102px;
  padding: 0.9rem 0.65rem;
  text-align: center;
}

.page-banner__icon-tile img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.page-banner__icon-tile span {
  color: #173b69;
  font-size: 0.78rem;
  line-height: 1.25;
  font-weight: 800;
}

.page-banner__art--company .page-banner__chips,
.page-banner__art--insights .page-banner__chips {
  max-width: min(40%, 24rem);
}

.page-banner__art--company .page-banner__media-panel,
.page-banner__art--insights .page-banner__media-panel {
  width: min(32rem, 50%);
}

.page-banner__art--industrial .page-banner__media-panel {
  margin-top: -0.1rem;
}

@media (max-width: 1280px) {
  .page-banner__art {
    padding: 1.3rem 1.25rem 6rem;
  }

  .page-banner__chips {
    max-width: min(42%, 24rem);
  }

  .page-banner__media-panel,
  .page-banner__art--company .page-banner__media-panel,
  .page-banner__art--insights .page-banner__media-panel {
    width: min(28rem, 52%);
  }

  .page-banner__media-panel--icons {
    width: min(29rem, 56%);
  }
}

@media (max-width: 980px) {
  .page-banner__art {
    align-items: stretch;
    padding: 1.15rem 1.15rem 5rem;
  }

  .page-banner__chips {
    max-width: 44%;
  }

  .page-banner__media-panel,
  .page-banner__art--company .page-banner__media-panel,
  .page-banner__art--insights .page-banner__media-panel {
    width: min(24rem, 52%);
  }

  .page-banner__media-panel--icons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(24rem, 54%);
  }

  .page-banner__logo-card {
    min-height: 74px;
  }

  .page-banner__mini-card,
  .page-banner__story-tile {
    padding: 0.9rem;
  }
}

@media (max-width: 760px) {
  .page-banner__video {
    opacity: 0.24;
  }

  .page-banner__art {
    position: absolute;
    inset: 0;
    display: block;
    padding: 1rem 1rem 4rem;
  }

  .page-banner__chips {
    max-width: none;
    margin-bottom: 0.85rem;
  }

  .page-banner__media-panel,
  .page-banner__art--company .page-banner__media-panel,
  .page-banner__art--insights .page-banner__media-panel,
  .page-banner__media-panel--icons {
    width: 100%;
    max-width: none;
  }

  .page-banner__media-panel--logos,
  .page-banner__media-panel--cards,
  .page-banner__media-panel--stories,
  .page-banner__media-panel--icons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
  }

  .page-banner__logo-card,
  .page-banner__mini-card,
  .page-banner__story-tile,
  .page-banner__icon-tile {
    min-height: 64px;
    padding: 0.72rem;
    border-radius: 14px;
  }

  .page-banner__logo-card img {
    max-height: 28px;
  }

  .page-banner__mini-card span,
  .page-banner__story-tile strong,
  .page-banner__icon-tile span,
  .page-banner__logo-card--text {
    font-size: 0.82rem;
  }

  .page-banner__story-label {
    font-size: 0.66rem;
  }
}

/* Shared subpage hero media height restore */
.page-banner__media {
  height: 320px;
  min-height: 320px;
}

.page-banner__art {
  overflow: hidden;
}

.page-banner__media-panel,
.page-banner__media-panel--icons {
  max-height: calc(100% - 1.5rem);
}

@media (max-width: 920px) {
  .page-banner__media {
    height: 280px;
    min-height: 280px;
  }
}

@media (max-width: 760px) {
  .page-banner__media {
    height: 220px;
    min-height: 220px;
  }

  .page-banner__media-panel,
  .page-banner__media-panel--icons {
    max-height: calc(100% - 0.5rem);
  }
}

/* Shared subpage hero height restore */
.page-banner__media {
  height: 320px;
  min-height: 320px;
}

.page-banner__art {
  overflow: hidden;
}

.page-banner__media-panel,
.page-banner__media-panel--icons,
.page-banner__media-panel--logos,
.page-banner__media-panel--cards,
.page-banner__media-panel--stories {
  max-height: calc(100% - 6.5rem);
  overflow: hidden;
}

@media (max-width: 920px) {
  .page-banner__media {
    height: 280px;
    min-height: 280px;
  }
}

@media (max-width: 760px) {
  .page-banner__media {
    height: 220px;
    min-height: 220px;
  }
}
