:root {
  --ink: #1c1410;
  --ink-soft: #3d2e26;
  --muted: #7a6458;
  --paper: #fff7f1;
  --paper-2: #ffefe4;
  --line: #efd5c4;
  --teal: #e67a2e;
  --teal-deep: #c45c18;
  --teal-bright: #f0954a;
  --signal: #e67a2e;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(60, 28, 10, 0.08);
  --radius: 4px;
  --font-display: "Outfit", sans-serif;
  --font-body: "Source Sans 3", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 4.25rem;
}

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

html {
  scroll-behavior: smooth;
  overflow-anchor: none;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink-soft);
  background:
    radial-gradient(1100px 560px at 85% -8%, rgba(230, 122, 46, 0.14), transparent 58%),
    radial-gradient(900px 500px at -8% 18%, rgba(240, 149, 74, 0.1), transparent 55%),
    linear-gradient(180deg, #fff8f2 0%, var(--paper) 40%, #fffaf6 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 50;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

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

h1,
h2,
h3,
.brand,
.logo {
  font-family: var(--font-display);
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

h1 {
  font-size: clamp(1.1rem, 2.2vw, 1.55rem);
  font-weight: 700;
  margin: 0.35rem 0 1rem;
  max-width: 34ch;
}

h2 {
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  margin: 0.4rem 0 0.85rem;
  max-width: 18ch;
}

h3 {
  font-size: 1.35rem;
  margin: 0 0 0.55rem;
  font-weight: 650;
}

p {
  margin: 0 0 1rem;
}

.eyebrow {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin: 0 0 0.65rem;
}

/* Keyboard-only shortcut past the nav; off-screen until focused. */
.skip-link {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translate(-50%, -110%);
  z-index: 60;
  padding: 0.75rem 1.25rem;
  border-radius: 0 0 0.75rem 0.75rem;
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 0.2s var(--ease);
}

.skip-link:focus,
.skip-link:focus-visible {
  transform: translate(-50%, 0);
  outline: 2px solid var(--teal-deep);
  outline-offset: 2px;
}

.scroll-top-anchor {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  pointer-events: none;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.25rem, 4vw, 3.5rem);
  background: rgba(255, 247, 241, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(255, 247, 241, 0.94);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 0;
}

.logo-img {
  display: block;
  height: clamp(1.9rem, 2.9vw, 2.45rem);
  width: auto;
  max-width: min(15.5rem, 58vw);
  object-fit: contain;
  object-position: left center;
}

.nav {
  display: none;
  align-items: center;
  gap: 1.35rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.95rem;
}

.nav a:not(.nav-cta):hover {
  color: var(--teal-deep);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0;
  border: 0;
  background: transparent;
  font: inherit;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.95rem;
  color: inherit;
  cursor: pointer;
}

.nav-dropdown-toggle:hover,
.nav-dropdown.is-open .nav-dropdown-toggle {
  color: var(--teal-deep);
}

.nav-dropdown-toggle .chevron {
  transition: transform 0.25s var(--ease);
}

.nav-dropdown.is-open .nav-dropdown-toggle .chevron {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 11rem;
  margin: 0;
  padding: 0.55rem;
  list-style: none;
  background:
    linear-gradient(
      160deg,
      rgba(255, 252, 249, 0.98) 0%,
      rgba(255, 239, 228, 0.96) 48%,
      rgba(255, 232, 216, 0.94) 100%
    );
  border: 1px solid rgba(230, 122, 46, 0.2);
  border-radius: 1.15rem;
  box-shadow:
    0 14px 36px rgba(60, 28, 10, 0.12),
    0 4px 12px rgba(196, 92, 24, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.2s var(--ease),
    transform 0.2s var(--ease),
    visibility 0.2s;
  z-index: 50;
}

.nav-dropdown-menu-wide {
  min-width: 24rem;
  border-radius: 1.35rem;
  padding: 0.65rem;
}

.nav-dropdown-menu > ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.15rem;
}

.nav-dropdown.is-open .nav-dropdown-menu,
.nav-dropdown-menu:not([hidden]) {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu[hidden] {
  display: block;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.7rem 0.85rem;
  border-radius: 0.75rem;
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.35;
  color: var(--ink-soft);
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
  background: rgba(230, 122, 46, 0.12);
  color: var(--teal-deep);
  outline: none;
}

.nav-cta {
  padding: 0.55rem 1rem;
  background: var(--ink);
  color: var(--white) !important;
  border-radius: 2rem;
  transition: background 0.25s var(--ease);
}

.nav-cta:hover {
  background: var(--teal-deep);
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  /* The header is a -webkit-backdrop-filter layer. iOS Safari folds plain
     descendants into that layer, which loses the bars against a dark backdrop
     while the logo survives because an <img> is promoted on its own. A
     stacking context of its own keeps the bars painting above the blur. */
  position: relative;
  z-index: 1;
}

.nav-toggle span {
  display: block;
  width: 1.35rem;
  height: 2px;
  background: var(--ink);
  transition: transform 0.3s var(--ease);
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  z-index: 35;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 1.25rem 1.5rem;
  background: #fff7f1;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  max-height: calc(100dvh - var(--header-h));
  overflow-y: auto;
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav > a,
.mobile-accordion-toggle {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
}

.mobile-nav > a:last-child {
  border-bottom: 0;
  color: var(--teal-deep);
}

.mobile-accordion {
  border-bottom: 1px solid var(--line);
}

.mobile-accordion-toggle {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  border: 0;
  border-bottom: 0;
  background: transparent;
  font: inherit;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  color: inherit;
  cursor: pointer;
  text-align: left;
}

.mobile-accordion-toggle .chevron {
  transition: transform 0.25s var(--ease);
}

.mobile-accordion-toggle[aria-expanded="true"] .chevron {
  transform: rotate(180deg);
}

.mobile-accordion-menu {
  list-style: none;
  margin: 0 0 0.5rem;
  padding: 0 0 0.5rem;
}

.mobile-accordion-menu[hidden] {
  display: none;
}

.mobile-accordion-menu a {
  display: block;
  padding: 0.55rem 0 0.55rem 0.75rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-soft);
  border-bottom: 0;
}

.mobile-accordion-menu a:hover {
  color: var(--teal-deep);
}

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

  .nav-toggle,
  .mobile-nav {
    display: none !important;
  }
}

/* Hero */
.hero {
  --hero-gap-top: 0.5rem;
  --hero-gap-bottom: 1.65rem;
  --hero-avail: min(
    56rem,
    calc(100dvh - var(--header-h) - var(--hero-gap-top) - var(--hero-gap-bottom)),
    calc((100vw - 1.75rem) / 1.106)
  );
  --hero-svg-h: calc(var(--hero-avail) / 0.705);
  --hero-stage: calc(100dvh - var(--header-h));
  --hero-nudge: var(--hero-gap-top);
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-h) + 2rem) clamp(1.25rem, 4vw, 3.5rem) 4.5rem;
  overflow: hidden;
}

@supports (height: 100svh) {
  .hero {
    --hero-avail: min(
      56rem,
      calc(100svh - var(--header-h) - var(--hero-gap-top) - var(--hero-gap-bottom)),
      calc((100vw - 1.75rem) / 1.106)
    );
    --hero-stage: calc(100svh - var(--header-h));
  }
}

.hero-atmosphere {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(196, 92, 24, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196, 92, 24, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 48%, black 15%, transparent 78%);
  opacity: 0.85;
}

.hero-hex {
  position: absolute;
  inset: -10%;
  opacity: 0.48;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='84' height='48' viewBox='0 0 84 48'%3E%3Cpath d='M21 0 L42 12 L42 36 L21 48 L0 36 L0 12 Z M63 0 L84 12 L84 36 L63 48 L42 36 L42 12 Z' fill='none' stroke='%23f39a57' stroke-width='1.35'/%3E%3C/svg%3E");
  background-size: 84px 48px;
  mask-image: radial-gradient(
    ellipse 58% 52% at 50% 48%,
    transparent 0%,
    transparent 22%,
    rgba(0, 0, 0, 0.28) 48%,
    rgba(0, 0, 0, 0.75) 72%,
    #000 100%
  );
  -webkit-mask-image: radial-gradient(
    ellipse 58% 52% at 50% 48%,
    transparent 0%,
    transparent 22%,
    rgba(0, 0, 0, 0.28) 48%,
    rgba(0, 0, 0, 0.75) 72%,
    #000 100%
  );
  animation: hex-drift 28s linear infinite;
}

@keyframes hex-drift {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-48px);
  }
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(48px);
  animation: drift 16s var(--ease) infinite alternate;
}

.hero-orb-a {
  width: min(60vw, 520px);
  height: min(60vw, 520px);
  top: 12%;
  left: 50%;
  translate: -50% 0;
  background: rgba(230, 122, 46, 0.14);
}

.hero-orb-b {
  width: min(36vw, 280px);
  height: min(36vw, 280px);
  top: 18%;
  left: 8%;
  background: rgba(240, 149, 74, 0.12);
  animation-delay: -5s;
}

.hero-orb-c {
  width: min(34vw, 260px);
  height: min(34vw, 260px);
  bottom: 12%;
  right: 10%;
  background: rgba(196, 92, 24, 0.1);
  animation-delay: -9s;
}

@keyframes drift {
  from {
    transform: translate(0, 0);
  }
  to {
    transform: translate(-18px, 22px);
  }
}

.hero-radar {
  position: absolute;
  top: var(--header-h);
  left: 50%;
  width: var(--hero-avail);
  aspect-ratio: 1;
  translate: -50% var(--hero-nudge);
  display: grid;
  place-items: center;
}

.radar-ring {
  position: absolute;
  inset: 0;
  border: 1.2px solid rgba(230, 122, 46, 0.36);
  border-radius: 50%;
  box-shadow:
    0 0 1rem rgba(230, 122, 46, 0.08),
    inset 0 0 1.2rem rgba(240, 149, 74, 0.05);
}

.radar-ring-middle {
  inset: 14%;
  border-color: rgba(230, 122, 46, 0.28);
}

.radar-ring-inner {
  inset: 28%;
  border-color: rgba(230, 122, 46, 0.21);
}

.radar-sweep {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    rgba(247, 167, 99, 0.1) 12deg,
    rgba(230, 122, 46, 0.3) 55deg,
    rgba(240, 149, 74, 0.12) 92deg,
    transparent 125deg
  );
  animation: radar-spin 8s linear infinite;
  /* Keep outer size; fill from center (no ring hole) */
  -webkit-mask-image: none;
  mask-image: none;
  filter: drop-shadow(0 0 0.7rem rgba(230, 122, 46, 0.14));
}

.radar-core {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(230, 122, 46, 0.72);
  box-shadow:
    0 0 0 8px rgba(230, 122, 46, 0.12),
    0 0 1.1rem rgba(230, 122, 46, 0.28);
  animation: mark-pulse 2.8s var(--ease) infinite;
}

@keyframes radar-spin {
  to {
    transform: rotate(360deg);
  }
}

.hero-network {
  position: absolute;
  inset: auto;
  left: 50%;
  top: calc(var(--header-h) + var(--hero-nudge) - (0.15375 * var(--hero-svg-h)));
  width: calc(var(--hero-svg-h) * 1.5);
  height: var(--hero-svg-h);
  max-width: none;
  transform: translateX(-50%);
  opacity: 0.95;
  overflow: visible;
}

.hero-shield {
  transform-box: fill-box;
  transform-origin: center;
  filter:
    drop-shadow(0 0 12px rgba(230, 122, 46, 0.22))
    drop-shadow(0 0 28px rgba(240, 149, 74, 0.12));
  animation: shield-globe-spin 12s linear infinite;
}

/*
 * Globe spin driven by 2D scale (scaleX tracks cos of the turn angle, going
 * negative for the back half). Firefox rasterizes 3D transforms on SVG
 * differently, so this keeps the turn identical in every browser.
 */
@keyframes shield-globe-spin {
  0% {
    opacity: 0.9;
    transform: scale(1.2, 1.2);
  }

  12.5% {
    opacity: 0.74;
    transform: scale(0.859, 1.215);
  }

  25% {
    opacity: 0.58;
    transform: scale(0.012, 1.23);
  }

  37.5% {
    opacity: 0.74;
    transform: scale(-0.88, 1.245);
  }

  50% {
    opacity: 0.9;
    transform: scale(-1.26, 1.26);
  }

  62.5% {
    opacity: 0.74;
    transform: scale(-0.88, 1.245);
  }

  75% {
    opacity: 0.58;
    transform: scale(0.012, 1.23);
  }

  87.5% {
    opacity: 0.74;
    transform: scale(0.859, 1.215);
  }

  100% {
    opacity: 0.9;
    transform: scale(1.2, 1.2);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-shield {
    animation: none;
    opacity: 0.9;
    transform: scale(1.2, 1.2);
  }
}

.hero-scan {
  position: absolute;
  left: 0;
  right: 0;
  height: 28%;
  top: -30%;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(230, 122, 46, 0.06),
    transparent
  );
  animation: scan-pass 9s ease-in-out infinite;
}

@keyframes scan-pass {
  0% {
    top: -30%;
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  85% {
    opacity: 1;
  }
  100% {
    top: 100%;
    opacity: 0;
  }
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 58% 50% at 50% 48%, rgba(255, 250, 246, 0.82) 0%, transparent 70%),
    radial-gradient(ellipse 90% 80% at 50% 50%, transparent 42%, rgba(255, 247, 241, 0.55) 100%);
}

.binary-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
}

.binary-particles span {
  position: absolute;
  top: 50%;
  left: 50%;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: clamp(0.62rem, 0.82vw, 0.84rem);
  font-weight: 700;
  color: #ef863b;
  opacity: 0;
  text-shadow:
    0 0 0.35rem rgba(255, 247, 241, 0.8),
    0 0 0.9rem rgba(230, 122, 46, 0.62);
  animation: binary-radiate 7.2s linear infinite;
  animation-delay: var(--delay);
  will-change: transform, opacity;
}

@keyframes binary-radiate {
  0% {
    opacity: 0;
    transform:
      translate(-50%, -50%)
      rotate(var(--angle))
      translateX(clamp(7rem, 13vw, 11rem))
      scale(0.65);
  }
  16% {
    opacity: 0.86;
  }
  72% {
    opacity: 0.56;
  }
  100% {
    opacity: 0;
    transform:
      translate(-50%, -50%)
      rotate(var(--angle))
      translateX(var(--distance))
      scale(1.05);
  }
}

@media (max-width: 720px) {
  .binary-particles span:nth-child(2n) {
    display: none;
  }
}

.hero-content {
  position: absolute;
  left: 50%;
  top: calc(var(--header-h) + var(--hero-nudge) + (var(--hero-avail) / 2));
  z-index: 3;
  max-width: 44rem;
  width: min(44rem, calc(100% - 2rem));
  text-align: center;
  margin-inline: 0;
  transform: translate(-50%, -50%);
  animation: hero-content-in 0.9s var(--ease) both;
}

.hero-caption {
  font-family: var(--font-display);
  font-size: clamp(0.78rem, 1.4vw, 0.9rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  margin: 0 auto 3.5rem;
  max-width: 36rem;
}

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

.brand {
  font-size: clamp(2.1rem, 5.5vw, 3.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 auto 3.5rem;
  max-width: 16ch;
  line-height: 1.15;
  background: linear-gradient(120deg, var(--ink) 40%, var(--teal) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-content h1 {
  margin: 0 auto 3rem;
  max-width: 34ch;
  font-weight: 600;
  line-height: 1.4;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
  justify-content: center;
}

/*
 * Laptop: a little more breathing room under the header. Phone / tablet
 * keep the tighter base gaps so the shield can fill the portrait width.
 */
@media (min-width: 900px) {
  .hero {
    --hero-gap-top: 0.65rem;
    --hero-gap-bottom: 2.1rem;
  }

  .hero-content {
    width: min(44rem, calc(100% - 2.5rem));
  }
}

/* 14" (≈1400–1680px) */
@media (min-width: 1400px) and (max-width: 1679.98px) {
  .hero {
    --hero-gap-top: 0.5rem;
    --hero-gap-bottom: 1.15rem;
  }
}

@media (max-width: 899px) {
  .hero {
    /* Fill the phone screen and size the shield/ring to the remaining
       height (not the width cap) so they cover the leftover top/bottom
       bands. Sides may clip; laptop layout is unchanged. */
    min-height: 100vh;
    min-height: 100dvh;
    min-height: 100svh;
    --hero-gap-top: 0.35rem;
    --hero-gap-bottom: 0.85rem;
    --hero-avail: min(
      56rem,
      calc(var(--hero-stage) - var(--hero-gap-top) - var(--hero-gap-bottom))
    );
    --hero-nudge: max(0px, calc((var(--hero-stage) - var(--hero-avail)) / 2));
  }

  .hero-content {
    width: min(44rem, calc(100% - 1.25rem));
  }

  .hero-caption {
    margin-bottom: 1.25rem;
    font-size: clamp(0.74rem, 3.2vw, 0.92rem);
  }

  .brand {
    margin-bottom: 1.15rem;
    font-size: clamp(1.85rem, 8.4vw, 2.7rem);
  }

  .hero-content h1 {
    margin-bottom: 1.2rem;
    font-size: clamp(1.02rem, 4.2vw, 1.28rem);
  }

  .hero-actions {
    margin-top: 0.25rem;
    gap: 0.65rem;
  }

  .hero-actions .btn {
    padding: 0.82rem 1.25rem;
    font-size: 0.95rem;
  }
}

@keyframes hero-content-in {
  from {
    opacity: 0;
    transform: translate(-50%, calc(-50% + 28px));
  }

  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-content {
    animation: none;
    transform: translate(-50%, -50%);
  }
}

/* Statements / OVMS — Oasis-style: still heading, glow circle below */
.statements {
  position: relative;
  /* ~7 scroll gestures while sticky content stays pinned */
  height: 470vh;
  background: #fff7f1;
}

.statements-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100dvh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  align-items: start;
  justify-items: center;
  overflow: hidden;
  padding: calc(var(--header-h) + 2.5rem) 0 2rem;
  text-align: center;
}

.statements-eyebrow {
  position: relative;
  z-index: 5;
  margin: 0;
  max-width: min(94vw, 58rem);
  padding: 0 1.25rem;
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.3vw, 1.55rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-transform: uppercase;
  opacity: 1;
  white-space: nowrap;
  transform: translateZ(0);
  color: transparent;
  background-image: repeating-linear-gradient(
    90deg,
    #000000 0%,
    #111111 12%,
    #2a2a2a 28%,
    #8a8a8a 42%,
    #d4d4d4 50%,
    #8a8a8a 58%,
    #2a2a2a 72%,
    #111111 88%,
    #000000 100%
  );
  background-size: 220% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: statementsTextWave 1.8s linear infinite;
}

@keyframes statementsTextWave {
  0% {
    background-position: 200% 0%;
  }
  100% {
    background-position: 0% 0%;
  }
}

.statements-stage {
  --p: var(--glow-progress, 0);
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 0;
  display: grid;
  place-items: center;
  align-self: stretch;
  justify-self: stretch;
}

.statements-circle {
  --p: var(--glow-progress, 0);
  position: relative;
  z-index: 1;
  grid-area: 1 / 1;
  width: calc(36vmin + var(--p) * 52vmin);
  max-width: min(88vw, 620px);
  aspect-ratio: 1;
  margin: 0;
  border-radius: 50%;
  box-sizing: border-box;
  background: transparent;
  /* Ring 2 — middle: faint line, stronger shade */
  border: calc(1px + var(--p) * 0.5px) solid
    color-mix(in srgb, rgba(255, 226, 192, 0.35) calc((1 - var(--p)) * 100%), rgba(240, 149, 74, 0.45) calc(var(--p) * 100%));
  opacity: calc(0.55 + var(--p) * 0.4);
  transform: scale(calc(0.8 + var(--p) * 0.28));
  box-shadow:
    0 0 calc(0.6rem + var(--p) * 1.4rem) rgba(255, 210, 160, calc(0.45 + var(--p) * 0.4)),
    0 0 calc(1.4rem + var(--p) * 3.2rem) rgba(240, 149, 74, calc(0.28 + var(--p) * 0.38)),
    0 0 calc(2.8rem + var(--p) * 5.5rem) rgba(230, 122, 46, calc(0.16 + var(--p) * 0.28)),
    0 0 calc(4.5rem + var(--p) * 8rem) rgba(230, 122, 46, calc(0.06 + var(--p) * 0.14)),
    inset 0 0 calc(0.8rem + var(--p) * 1.8rem) rgba(255, 220, 180, calc(0.28 + var(--p) * 0.32));
  filter: drop-shadow(
    0 0 calc(0.8rem + var(--p) * 2rem) rgba(239, 134, 59, calc(0.28 + var(--p) * 0.4))
  );
  will-change: opacity, transform, width, border-color, filter, box-shadow;
  visibility: hidden;
  pointer-events: none;
  transition: box-shadow 0.15s linear, filter 0.15s linear;
}

.statements.is-glowing .statements-circle {
  visibility: visible;
}

/* Rotating shaded sweep — only inside the innermost circle, from center */
.statements-sweep {
  position: absolute;
  inset: 18%;
  border-radius: 50%;
  overflow: hidden;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    rgba(255, 220, 180, calc(0.1 + var(--p) * 0.12)) 20deg,
    rgba(240, 149, 74, calc(0.26 + var(--p) * 0.32)) 55deg,
    rgba(230, 122, 46, calc(0.14 + var(--p) * 0.2)) 95deg,
    transparent 130deg,
    transparent 360deg
  );
  opacity: calc(0.45 + var(--p) * 0.5);
  filter: blur(calc(0.5px + var(--p) * 1px));
  transform: rotate(var(--sweep-angle, 0deg));
  transform-origin: center center;
  will-change: transform;
  pointer-events: none;
}

/* Ring 1 — inner */
.statements-circle::before {
  content: "";
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  box-sizing: border-box;
  background: transparent;
  border: calc(1px + var(--p) * 0.5px) solid
    color-mix(in srgb, rgba(255, 233, 208, 0.32) calc((1 - var(--p)) * 100%), rgba(239, 134, 59, 0.4) calc(var(--p) * 100%));
  opacity: calc(0.55 + var(--p) * 0.4);
  box-shadow:
    0 0 calc(0.5rem + var(--p) * 1.2rem) rgba(255, 210, 160, calc(0.4 + var(--p) * 0.38)),
    0 0 calc(1.2rem + var(--p) * 2.8rem) rgba(239, 134, 59, calc(0.24 + var(--p) * 0.34)),
    0 0 calc(2.4rem + var(--p) * 4.5rem) rgba(230, 122, 46, calc(0.12 + var(--p) * 0.22)),
    inset 0 0 calc(0.65rem + var(--p) * 1.5rem) rgba(255, 225, 190, calc(0.26 + var(--p) * 0.3));
}

/* Ring 3 — outer */
.statements-circle::after {
  content: "";
  position: absolute;
  inset: -8%;
  border-radius: 50%;
  box-sizing: border-box;
  background: transparent;
  border: calc(1px + var(--p) * 0.5px) solid
    color-mix(in srgb, rgba(255, 216, 176, 0.28) calc((1 - var(--p)) * 100%), rgba(232, 136, 58, 0.38) calc(var(--p) * 100%));
  opacity: calc(0.5 + var(--p) * 0.4);
  box-shadow:
    0 0 calc(0.6rem + var(--p) * 1.4rem) rgba(255, 205, 150, calc(0.38 + var(--p) * 0.36)),
    0 0 calc(1.5rem + var(--p) * 3.4rem) rgba(230, 122, 46, calc(0.22 + var(--p) * 0.32)),
    0 0 calc(3rem + var(--p) * 5.5rem) rgba(230, 122, 46, calc(0.1 + var(--p) * 0.2)),
    inset 0 0 calc(0.7rem + var(--p) * 1.6rem) rgba(255, 220, 180, calc(0.22 + var(--p) * 0.28));
}

/* Ring 0 — extra innermost */
.statements-ring-core {
  position: absolute;
  inset: 16%;
  border-radius: 50%;
  box-sizing: border-box;
  background: transparent;
  border: calc(1px + var(--p) * 0.5px) solid
    color-mix(in srgb, rgba(255, 239, 220, 0.3) calc((1 - var(--p)) * 100%), rgba(240, 160, 74, 0.38) calc(var(--p) * 100%));
  opacity: calc(0.52 + var(--p) * 0.4);
  box-shadow:
    0 0 calc(0.45rem + var(--p) * 1.1rem) rgba(255, 215, 170, calc(0.38 + var(--p) * 0.36)),
    0 0 calc(1.1rem + var(--p) * 2.5rem) rgba(239, 134, 59, calc(0.22 + var(--p) * 0.3)),
    0 0 calc(2.2rem + var(--p) * 4rem) rgba(230, 122, 46, calc(0.1 + var(--p) * 0.18)),
    inset 0 0 calc(0.55rem + var(--p) * 1.3rem) rgba(255, 230, 200, calc(0.24 + var(--p) * 0.28));
}

/* Line grows from inner ring → full page width; light black → full black */
.statements-center-text {
  --p: var(--glow-progress, 0);
  --t: clamp(0, calc(var(--p) / 0.48), 1);
  --show: clamp(0, calc(var(--p) / 0.06), 1);
  grid-area: 1 / 1;
  position: relative;
  z-index: 4;
  width: calc(18vmin + var(--t) * (100% - 18vmin));
  max-width: 100%;
  margin: 0;
  padding: 0 calc(0.35rem + var(--t) * 0.4rem);
  box-sizing: border-box;
  font-family: var(--font-display);
  font-size: calc(0.7rem + var(--t) * 4.15rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: calc(-0.01em - var(--t) * 0.02em);
  text-align: center;
  white-space: normal;
  color: color-mix(in srgb, #a3a3a3 calc((1 - var(--t)) * 100%), #000000 calc(var(--t) * 100%));
  opacity: calc(var(--show) * 0.98);
  transform: scale(calc(0.92 + var(--t) * 0.08));
  transform-origin: center center;
  pointer-events: none;
  will-change: opacity, transform, width, font-size, color;
}

.statements-cta {
  --p: var(--glow-progress, 0);
  --show: clamp(0, calc((var(--p) - 0.12) / 0.2), 1);
  position: relative;
  z-index: 5;
  margin: 0 0 0.75rem;
  min-width: 11.5rem;
  padding: 0.95rem 1.75rem;
  border-radius: 0.85rem;
  opacity: calc(var(--show) * 0.98);
  transform: translateY(calc((1 - var(--show)) * 0.6rem));
  pointer-events: none;
  will-change: opacity, transform;
}

.statements.is-glowing .statements-cta {
  pointer-events: auto;
}

@media (max-width: 720px) {
  .statements-eyebrow {
    white-space: normal;
    letter-spacing: 0.06em;
    font-size: clamp(0.9rem, 3.6vw, 1.1rem);
    text-align: center;
  }

  .statements-circle {
    width: calc(38vmin + var(--p) * 50vmin);
  }

  .statements-center-text {
    width: calc(24vmin + var(--t) * (100% - 24vmin));
    font-size: calc(0.6rem + var(--t) * 1.85rem);
    padding: 0 0.75rem;
  }
}

/* ——— What Next? (3 staged popups, Oasis-style scroll) ——— */
.what-next {
  position: relative;
  /* Long scroll so each pop can grow to full width before the next */
  height: 820vh;
  background: #fff7f1;
}

.what-next-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100dvh;
  display: grid;
  grid-template-rows: auto 1fr;
  align-items: start;
  justify-items: center;
  overflow: hidden;
  padding: calc(var(--header-h) + 2.5rem) 0 2rem;
  text-align: center;
}

.what-next-eyebrow {
  position: relative;
  z-index: 5;
  margin: 0;
  max-width: min(94vw, 58rem);
  padding: 0 1.25rem;
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.3vw, 1.55rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-transform: uppercase;
  white-space: nowrap;
  transform: translateZ(0);
  color: transparent;
  background-image: repeating-linear-gradient(
    90deg,
    #000000 0%,
    #111111 12%,
    #2a2a2a 28%,
    #8a8a8a 42%,
    #d4d4d4 50%,
    #8a8a8a 58%,
    #2a2a2a 72%,
    #111111 88%,
    #000000 100%
  );
  background-size: 220% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: statementsTextWave 1.8s linear infinite;
}

.what-next-stage {
  --p: var(--wn-progress, 0);
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 0;
  display: grid;
  place-items: center;
  align-self: stretch;
  justify-self: stretch;
}

.what-next-circle {
  --p: var(--wn-progress, 0);
  position: relative;
  z-index: 1;
  grid-area: 1 / 1;
  width: calc(36vmin + var(--p) * 52vmin);
  max-width: min(88vw, 620px);
  aspect-ratio: 1;
  margin: 0;
  border-radius: 50%;
  box-sizing: border-box;
  background: transparent;
  border: calc(1px + var(--p) * 0.5px) solid
    color-mix(
      in srgb,
      rgba(255, 226, 192, 0.35) calc((1 - var(--p)) * 100%),
      rgba(240, 149, 74, 0.45) calc(var(--p) * 100%)
    );
  opacity: calc(0.55 + var(--p) * 0.4);
  transform: scale(calc(0.8 + var(--p) * 0.28));
  box-shadow:
    0 0 calc(0.6rem + var(--p) * 1.4rem) rgba(255, 210, 160, calc(0.45 + var(--p) * 0.4)),
    0 0 calc(1.4rem + var(--p) * 3.2rem) rgba(240, 149, 74, calc(0.28 + var(--p) * 0.38)),
    0 0 calc(2.8rem + var(--p) * 5.5rem) rgba(230, 122, 46, calc(0.16 + var(--p) * 0.28)),
    0 0 calc(4.5rem + var(--p) * 8rem) rgba(230, 122, 46, calc(0.06 + var(--p) * 0.14)),
    inset 0 0 calc(0.8rem + var(--p) * 1.8rem) rgba(255, 220, 180, calc(0.28 + var(--p) * 0.32));
  filter: drop-shadow(
    0 0 calc(0.8rem + var(--p) * 2rem) rgba(239, 134, 59, calc(0.28 + var(--p) * 0.4))
  );
  will-change: opacity, transform, width, border-color, filter, box-shadow;
  visibility: hidden;
  pointer-events: none;
}

.what-next.is-glowing .what-next-circle {
  visibility: visible;
}

.what-next-sweep {
  position: absolute;
  inset: 18%;
  border-radius: 50%;
  overflow: hidden;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    rgba(255, 220, 180, calc(0.1 + var(--p) * 0.12)) 20deg,
    rgba(240, 149, 74, calc(0.26 + var(--p) * 0.32)) 55deg,
    rgba(230, 122, 46, calc(0.14 + var(--p) * 0.2)) 95deg,
    transparent 130deg,
    transparent 360deg
  );
  opacity: calc(0.45 + var(--p) * 0.5);
  filter: blur(calc(0.5px + var(--p) * 1px));
  transform: rotate(var(--wn-sweep-angle, 0deg));
  transform-origin: center center;
  will-change: transform;
  pointer-events: none;
}

.what-next-circle::before {
  content: "";
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  box-sizing: border-box;
  background: transparent;
  border: calc(1px + var(--p) * 0.5px) solid
    color-mix(
      in srgb,
      rgba(255, 233, 208, 0.32) calc((1 - var(--p)) * 100%),
      rgba(239, 134, 59, 0.4) calc(var(--p) * 100%)
    );
  opacity: calc(0.55 + var(--p) * 0.4);
  box-shadow:
    0 0 calc(0.5rem + var(--p) * 1.2rem) rgba(255, 210, 160, calc(0.4 + var(--p) * 0.38)),
    0 0 calc(1.2rem + var(--p) * 2.8rem) rgba(239, 134, 59, calc(0.24 + var(--p) * 0.34)),
    0 0 calc(2.4rem + var(--p) * 4.5rem) rgba(230, 122, 46, calc(0.12 + var(--p) * 0.22)),
    inset 0 0 calc(0.65rem + var(--p) * 1.5rem) rgba(255, 225, 190, calc(0.26 + var(--p) * 0.3));
}

.what-next-circle::after {
  content: "";
  position: absolute;
  inset: -8%;
  border-radius: 50%;
  box-sizing: border-box;
  background: transparent;
  border: calc(1px + var(--p) * 0.5px) solid
    color-mix(
      in srgb,
      rgba(255, 216, 176, 0.28) calc((1 - var(--p)) * 100%),
      rgba(232, 136, 58, 0.38) calc(var(--p) * 100%)
    );
  opacity: calc(0.5 + var(--p) * 0.4);
  box-shadow:
    0 0 calc(0.6rem + var(--p) * 1.4rem) rgba(255, 205, 150, calc(0.38 + var(--p) * 0.36)),
    0 0 calc(1.5rem + var(--p) * 3.4rem) rgba(230, 122, 46, calc(0.22 + var(--p) * 0.32)),
    0 0 calc(3rem + var(--p) * 5.5rem) rgba(230, 122, 46, calc(0.1 + var(--p) * 0.2)),
    inset 0 0 calc(0.7rem + var(--p) * 1.6rem) rgba(255, 220, 180, calc(0.22 + var(--p) * 0.28));
}

.what-next-ring-core {
  position: absolute;
  inset: 16%;
  border-radius: 50%;
  box-sizing: border-box;
  background: transparent;
  border: calc(1px + var(--p) * 0.5px) solid
    color-mix(
      in srgb,
      rgba(255, 239, 220, 0.3) calc((1 - var(--p)) * 100%),
      rgba(240, 160, 74, 0.38) calc(var(--p) * 100%)
    );
  opacity: calc(0.52 + var(--p) * 0.4);
  box-shadow:
    0 0 calc(0.45rem + var(--p) * 1.1rem) rgba(255, 215, 170, calc(0.38 + var(--p) * 0.36)),
    0 0 calc(1.1rem + var(--p) * 2.5rem) rgba(239, 134, 59, calc(0.22 + var(--p) * 0.3)),
    0 0 calc(2.2rem + var(--p) * 4rem) rgba(230, 122, 46, calc(0.1 + var(--p) * 0.18)),
    inset 0 0 calc(0.55rem + var(--p) * 1.3rem) rgba(255, 230, 200, calc(0.24 + var(--p) * 0.28));
}

.what-next-pops {
  grid-area: 1 / 1;
  position: relative;
  z-index: 4;
  width: 100%;
  max-width: 100%;
  min-height: 8rem;
  display: grid;
  place-items: center;
  padding: 0 clamp(0.75rem, 2.5vw, 1.5rem);
  box-sizing: border-box;
  pointer-events: none;
}

.what-next-pop {
  --show: 0;
  --t: 0;
  grid-area: 1 / 1;
  margin: 0;
  width: calc(18vmin + var(--t) * (100% - 18vmin));
  max-width: 100%;
  padding: 0 calc(0.35rem + var(--t) * 0.4rem);
  box-sizing: border-box;
  font-family: var(--font-display);
  font-size: calc(0.85rem + var(--t) * 5.1rem);
  font-weight: 700;
  line-height: 1.32;
  letter-spacing: calc(-0.01em - var(--t) * 0.02em);
  text-align: center;
  white-space: normal;
  color: color-mix(
    in srgb,
    #a3a3a3 calc((1 - var(--t)) * 100%),
    #000000 calc(var(--t) * 100%)
  );
  opacity: calc(var(--show) * 0.98);
  transform: scale(calc(0.92 + var(--t) * 0.08));
  transform-origin: center center;
  will-change: opacity, transform, width, font-size, color;
  transition: none;
}

.what-next-pop--terminal {
  /* Always landscape rectangle — pops out from center */
  width: min(88vw, 40rem);
  max-width: 100%;
  padding: 0;
  font-size: inherit;
  color: inherit;
  letter-spacing: normal;
  line-height: normal;
  transform: scale(calc(0.18 + var(--t) * 0.82));
  transform-origin: center center;
}

.what-next-term {
  width: 100%;
  aspect-ratio: 3.4 / 1;
  display: flex;
  flex-direction: column;
  border-radius: 0.75rem;
  overflow: hidden;
  background: linear-gradient(
    165deg,
    #fffbf7 0%,
    #fff1e4 38%,
    #ffd8b8 72%,
    #f7c49a 100%
  );
  border: 1px solid rgba(230, 122, 46, 0.22);
  box-shadow:
    0 18px 48px rgba(230, 122, 46, calc(0.1 + var(--t) * 0.14)),
    0 0 0 1px rgba(255, 236, 220, 0.7),
    0 0 calc(1.4rem + var(--t) * 2.4rem) rgba(239, 134, 59, calc(0.12 + var(--t) * 0.18)),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
  text-align: left;
}

.what-next-term__bar {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 0.85rem;
  background: linear-gradient(90deg, #fff0e2 0%, #ffdcc0 55%, #f7c4a0 100%);
  border-bottom: 1px solid rgba(230, 122, 46, 0.16);
}

.what-next-term__bar i {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  display: block;
}

.what-next-term__bar i:nth-child(1) {
  background: #e07a55;
}
.what-next-term__bar i:nth-child(2) {
  background: #e6b45a;
}
.what-next-term__bar i:nth-child(3) {
  background: #7dba7a;
}

.what-next-term__bar span {
  margin-left: 0.55rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.7rem;
  color: rgba(74, 38, 12, 0.55);
  letter-spacing: 0.02em;
}

.what-next-term__body {
  margin: 0;
  flex: 1;
  display: flex;
  align-items: center;
  padding: 1.35rem 1.25rem 1.55rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: clamp(0.95rem, 2.2vw, 1.2rem);
  line-height: 1.5;
  color: #3a2414;
  white-space: pre-wrap;
}

.what-next-term__prompt {
  color: #c45a18;
  margin-right: 0.45rem;
  font-weight: 700;
}

.what-next-term__cursor {
  display: inline-block;
  width: 0.55ch;
  height: 1.05em;
  margin-left: 0.15rem;
  vertical-align: text-bottom;
  background: #d46520;
  animation: whatNextCursor 1s steps(1) infinite;
}

@keyframes whatNextCursor {
  0%,
  50% {
    opacity: 1;
  }
  51%,
  100% {
    opacity: 0;
  }
}

@media (max-width: 720px) {
  .what-next {
    height: 760vh;
  }

  .what-next-eyebrow {
    white-space: normal;
    letter-spacing: 0.06em;
    font-size: clamp(0.9rem, 3.6vw, 1.1rem);
  }

  .what-next-circle {
    width: calc(38vmin + var(--p) * 50vmin);
  }

  .what-next-pop {
    width: calc(24vmin + var(--t) * (100% - 24vmin));
    font-size: calc(0.75rem + var(--t) * 2.55rem);
    padding: 0 0.75rem;
  }

  .what-next-pop--terminal {
    width: min(92vw, 36rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .what-next-term__cursor {
    animation: none;
    opacity: 1;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 1.35rem;
  border-radius: 2rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    background 0.25s var(--ease),
    color 0.25s var(--ease),
    border-color 0.25s var(--ease),
    transform 0.25s var(--ease);
}

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

.btn-primary {
  background: var(--teal);
  color: var(--white);
}

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

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

.btn-ghost:hover {
  border-color: var(--teal);
  color: var(--teal-deep);
}

/* Who we are — editorial threat-map (exactly one viewport) */
.about {
  position: relative;
  box-sizing: border-box;
  height: 100dvh;
  min-height: 100dvh;
  max-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding:
    calc(var(--header-h) + clamp(0.75rem, 2vh, 1.5rem))
    clamp(1.25rem, 4vw, 3.5rem)
    clamp(1.25rem, 3vh, 2.25rem);
  overflow: hidden;
  background:
    linear-gradient(180deg, #fff7f1 0%, #fffaf6 55%, #fff7f1 100%);
  --about-measure: 54rem;
}

.about-atmosphere {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.about-hex {
  position: absolute;
  inset: -10% -5%;
  opacity: 0.45;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='64' viewBox='0 0 56 64'%3E%3Cpath d='M28 2 L52 16 V48 L28 62 L4 48 V16 Z' fill='none' stroke='%23e67a2e' stroke-opacity='0.14' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 56px 64px;
  mask-image: radial-gradient(ellipse 70% 60% at 80% 30%, #000 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 80% 30%, #000 20%, transparent 75%);
}

.about-glow {
  position: absolute;
  width: min(52vw, 420px);
  height: min(52vw, 420px);
  right: -6%;
  top: 12%;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(230, 122, 46, 0.12) 0%,
    rgba(230, 122, 46, 0.04) 42%,
    transparent 70%
  );
}

.about-rings {
  position: absolute;
  top: 50%;
  right: 0;
  width: min(68vw, 540px);
  aspect-ratio: 1;
  transform: translate(48%, -50%);
  pointer-events: none;
}

.about-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-sizing: border-box;
  border: 1.5px solid transparent;
  will-change: transform;
}

.about-ring-icon {
  position: absolute;
  top: 50%;
  left: 0;
  width: clamp(1.65rem, 3.2vw, 2.15rem);
  height: clamp(1.65rem, 3.2vw, 2.15rem);
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--teal-deep);
  background:
    radial-gradient(circle at 35% 30%, #fff8f2 0%, #ffe8d4 55%, #ffd7b5 100%);
  border: 1.5px solid rgba(230, 122, 46, 0.45);
  box-shadow:
    0 0 0.55rem rgba(230, 122, 46, 0.28),
    0 4px 12px rgba(60, 28, 10, 0.1);
}

.about-ring-icon svg {
  width: 68%;
  height: 68%;
}

.about-ring-a {
  inset: 4%;
  border-color: rgba(255, 210, 170, 0.45);
  box-shadow:
    0 0 1.2rem rgba(255, 220, 190, 0.22),
    0 0 2.8rem rgba(255, 200, 160, 0.1),
    inset 0 0 1.4rem rgba(255, 236, 220, 0.16);
  animation: aboutRingSpin 10s linear infinite;
}

.about-ring-a .about-ring-icon {
  animation: aboutRingIconCounter 10s linear infinite;
}

.about-ring-b {
  inset: 16%;
  border-color: rgba(255, 218, 180, 0.5);
  box-shadow:
    0 0 1rem rgba(255, 225, 195, 0.24),
    0 0 2.4rem rgba(255, 205, 165, 0.1),
    inset 0 0 1.1rem rgba(255, 240, 225, 0.18);
  animation: aboutRingSpinReverse 12s linear infinite;
  animation-delay: -3s;
}

.about-ring-b .about-ring-icon {
  animation: aboutRingIconCounterReverse 12s linear infinite;
  animation-delay: -3s;
}

.about-ring-c {
  inset: 28%;
  border-color: rgba(255, 205, 165, 0.42);
  box-shadow:
    0 0 0.85rem rgba(255, 220, 190, 0.2),
    0 0 2rem rgba(255, 200, 160, 0.09),
    inset 0 0 0.9rem rgba(255, 236, 220, 0.14);
  animation: aboutRingSpin 14s linear infinite;
  animation-delay: -6s;
}

.about-ring-c .about-ring-icon {
  animation: aboutRingIconCounter 14s linear infinite;
  animation-delay: -6s;
}

.about-ring-d {
  inset: 40%;
  border-color: rgba(255, 215, 175, 0.48);
  box-shadow:
    0 0 0.7rem rgba(255, 225, 195, 0.22),
    0 0 1.6rem rgba(255, 205, 165, 0.1),
    inset 0 0 0.75rem rgba(255, 240, 225, 0.16);
  animation: aboutRingSpinReverse 16s linear infinite;
  animation-delay: -9s;
}

.about-ring-d .about-ring-icon {
  animation: aboutRingIconCounterReverse 16s linear infinite;
  animation-delay: -9s;
}

@keyframes aboutRingSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes aboutRingSpinReverse {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}

@keyframes aboutRingIconCounter {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}

@keyframes aboutRingIconCounterReverse {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.about-inner {
  position: relative;
  z-index: 1;
  max-width: 72rem;
  width: 100%;
  flex: 1 1 auto;
  min-height: 0;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(1rem, 2.4vh, 1.75rem);
}

.about-intro {
  max-width: var(--about-measure, 54rem);
  width: 100%;
}

.about-intro .eyebrow {
  font-size: clamp(0.78rem, 1.4vh, 0.88rem);
}

.about-intro h2 {
  font-size: clamp(2.35rem, 6.2vh, 3.85rem);
  margin: 0.25rem 0 clamp(0.75rem, 1.8vh, 1.2rem);
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.about-lead {
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(1.11rem, 2.25vh, 1.26rem);
  line-height: 1.55;
  text-align: justify;
  text-justify: inter-word;
}

.about-credentials {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem 0.85rem;
  margin: clamp(0.85rem, 2vh, 1.35rem) 0 0;
  font-family: var(--font-display);
  font-size: clamp(0.7rem, 1.35vh, 0.8rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-deep);
}

.about-credentials-dot {
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--teal);
  opacity: 0.7;
}

.about-principles {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex: 0 0 auto;
  gap: clamp(1.35rem, 2.8vh, 1.9rem);
  border-left: 1px solid color-mix(in srgb, var(--teal) 35%, var(--line));
  margin-left: 0.85rem;
  max-width: var(--about-measure, 54rem);
  width: 100%;
}

.about-principle {
  position: relative;
  display: block;
  padding: clamp(0.7rem, 1.7vh, 1rem) 0 clamp(0.7rem, 1.7vh, 1rem) 1.45rem;
}

/* Core dot — centered on the timeline for each paragraph */
.about-principle::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  z-index: 2;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: linear-gradient(145deg, #fffaf6 0%, #ffe8d4 100%);
  border: 2px solid var(--teal);
  box-shadow:
    0 0 0 3px rgba(230, 122, 46, 0.14),
    0 0 8px rgba(230, 122, 46, 0.22);
  transform: translate(-50%, -50%);
}

/* Soft outer ring / shade around each dot */
.about-principle::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  z-index: 1;
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 50%;
  border: 1px solid rgba(230, 122, 46, 0.32);
  background: radial-gradient(
    circle,
    rgba(230, 122, 46, 0.1) 0%,
    rgba(230, 122, 46, 0.04) 45%,
    transparent 70%
  );
  box-shadow:
    0 0 0 4px rgba(230, 122, 46, 0.06),
    0 0 12px rgba(230, 122, 46, 0.12);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.about-principle-body {
  min-width: 0;
  max-width: var(--about-measure, 54rem);
  width: 100%;
}

.about-principle-body h3 {
  margin: 0 0 0.3rem;
  font-size: clamp(1.26rem, 2.65vh, 1.56rem);
  line-height: 1.25;
}

.about-principle-body p {
  margin: 0;
  max-width: none;
  width: 100%;
  color: var(--muted);
  font-size: clamp(1.08rem, 2.1vh, 1.21rem);
  line-height: 1.5;
  text-align: justify;
  text-justify: inter-word;
}

.about-principle:hover {
  background: linear-gradient(90deg, rgba(230, 122, 46, 0.05), transparent 70%);
}

.about-principle:hover::before {
  box-shadow:
    0 0 0 3px rgba(230, 122, 46, 0.2),
    0 0 10px rgba(230, 122, 46, 0.3);
}

.about-principle:hover::after {
  border-color: rgba(230, 122, 46, 0.45);
  box-shadow:
    0 0 0 5px rgba(230, 122, 46, 0.08),
    0 0 14px rgba(230, 122, 46, 0.16);
}

@media (max-height: 740px) {
  .about-intro h2 {
    font-size: clamp(2.1rem, 5.4vh, 3.1rem);
  }

  .about-lead {
    font-size: clamp(1.04rem, 2.1vh, 1.16rem);
    line-height: 1.48;
  }

  .about-principle {
    padding-block: clamp(0.55rem, 1.3vh, 0.75rem);
  }

  .about-principle-body h3 {
    font-size: clamp(1.16rem, 2.4vh, 1.36rem);
  }

  .about-principle-body p {
    font-size: clamp(1.01rem, 1.95vh, 1.14rem);
    line-height: 1.42;
  }
}

@media (max-width: 720px) {
  .about {
    height: auto;
    min-height: 100dvh;
    max-height: none;
    justify-content: flex-start;
    padding-block: 2.75rem;
  }

  .about-inner {
    height: auto;
    flex: none;
    justify-content: flex-start;
    gap: 1.75rem;
  }

  .about-principles {
    flex: none;
    margin-left: 0.4rem;
  }

  .about-principle {
    padding-left: 1.4rem;
  }

  .about-principle::before,
  .about-principle::after {
    left: 0;
  }
}

/* Services — sticky intro, scroll advances services one by one */
.services {
  position: relative;
  height: 620vh;
  padding: 0;
  overflow: visible;
  overflow-anchor: none;
  background:
    radial-gradient(900px 500px at 85% 20%, rgba(230, 122, 46, 0.08), transparent 55%),
    radial-gradient(700px 420px at 10% 80%, rgba(240, 149, 74, 0.05), transparent 50%),
    #ffffff;
  color: var(--ink-soft);
}

.services::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  background-image: radial-gradient(rgba(28, 20, 16, 0.06) 0.7px, transparent 0.7px);
  background-size: 22px 22px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 20%, transparent 75%);
}

.services-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100dvh;
  display: flex;
  align-items: stretch;
  /* clip (not hidden) avoids a scrollport that swallows touch/wheel so
     the page can still advance through services. Do not fall back to
     overflow: hidden — Chrome Android treats that as a nested scroller
     and freezes page scroll while the section is pinned. */
  overflow: clip;
  overflow-anchor: none;
  overscroll-behavior: auto;
  padding: calc(var(--header-h) + 1.25rem) clamp(1.25rem, 4vw, 3.5rem) 1.75rem;
  box-sizing: border-box;
}

.services-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
  overflow: hidden;
}

.services-shield-stage {
  position: relative;
  width: min(110vmin, 980px);
  aspect-ratio: 1 / 0.72;
  display: grid;
  place-items: center;
  perspective: 1200px;
  perspective-origin: 50% 40%;
  transform-style: preserve-3d;
}

.services-shield-stage::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 8%;
  width: 58%;
  height: 12%;
  transform: translateX(-50%) rotateX(78deg);
  border-radius: 50%;
  background: radial-gradient(
    ellipse at center,
    rgba(28, 20, 16, 0.12) 0%,
    transparent 70%
  );
  filter: blur(10px);
  pointer-events: none;
}

.services-shield-tilt {
  width: 100%;
  height: auto;
  transform-origin: center center;
  transform: translateY(8%) rotateX(68deg) scale(1.35);
  transform-style: preserve-3d;
}

.services-dotted-shield {
  width: 100%;
  height: auto;
  opacity: 1;
  display: block;
}

@media (prefers-reduced-motion: reduce) {
  .services-honey-scan animate,
  .services-scan-beam-edge animate,
  .services-scan-mask-rect animate {
    display: none;
  }

  .services-honey-scan {
    opacity: 0.35;
  }
}

@media (max-width: 900px) {
  .services-shield-stage {
    width: min(120vmin, 720px);
    opacity: 0.7;
  }

  .services-shield-tilt {
    transform: translateY(10%) rotateX(68deg) scale(1.25);
  }
}

.services-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 72rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  height: 100%;
  min-height: 0;
}

.services .eyebrow {
  color: var(--teal-deep);
}

.services-intro {
  max-width: 40rem;
  flex-shrink: 0;
}

.services-intro h2 {
  color: var(--ink);
  font-size: clamp(2rem, 5vw, 3.4rem);
  margin: 0.25rem 0 0.75rem;
  letter-spacing: -0.03em;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.9);
}

.services-lead {
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.4vw, 1.1rem);
  line-height: 1.65;
  text-align: justify;
  text-justify: inter-word;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}


.services-scan {
  display: grid;
  grid-template-columns: minmax(16rem, 22rem) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: stretch;
  min-height: 0;
  flex: 1;
}

.services-stages {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-self: stretch;
  margin: 0;
  padding: 0 0.35rem 0 0;
  border: 0;
  min-height: 0;
  max-height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.services-stages::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.services-stage {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 1.55rem;
  width: 100%;
  margin: 0;
  padding: 1.15rem 0.35rem 1.15rem 0;
  border: 0;
  border-bottom: 1px solid rgba(28, 20, 16, 0.1);
  background: transparent;
  color: rgba(28, 20, 16, 0.58);
  font-family: var(--font-display);
  text-align: left;
  cursor: pointer;
  opacity: 0.78;
  transition:
    opacity 0.3s var(--ease),
    color 0.3s var(--ease);
}

.services-stage:last-child {
  border-bottom: 0;
}

.services-stage.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(230, 122, 46, 0.75),
    rgba(28, 20, 16, 0.1) 45%,
    transparent
  );
  pointer-events: none;
}

.services-stage-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  min-width: 3rem;
  height: 3rem;
  padding: 0 1.15rem;
  border-radius: 999px;
  border: 1px solid rgba(28, 20, 16, 0.22);
  background: transparent;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
  color: rgba(28, 20, 16, 0.65);
  transition:
    background 0.3s var(--ease),
    color 0.3s var(--ease),
    border-color 0.3s var(--ease);
}

.services-stage-copy {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  min-width: 0;
  padding-top: 0.45rem;
}

.services-stage-label {
  font-size: clamp(1.05rem, 1.55vw, 1.22rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: inherit;
}

.services-stage-blurb {
  display: none;
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--muted);
}

.services-stage:hover {
  opacity: 0.92;
  color: rgba(28, 20, 16, 0.82);
}

.services-stage.is-active {
  opacity: 1;
  color: var(--ink);
}

.services-stage.is-active .services-stage-num {
  background: var(--ink);
  border-color: transparent;
  color: #fff;
}

.services-stage.is-active .services-stage-blurb {
  display: block;
}

.services-stage.is-passed {
  opacity: 0.78;
  color: rgba(28, 20, 16, 0.58);
}

.services-detail-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: 1.15rem;
  padding: 0.45rem 0.95rem;
  border: 1px solid rgba(230, 122, 46, 0.45);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--teal-deep);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 1.2;
  transition:
    background 0.2s var(--ease),
    border-color 0.2s var(--ease),
    color 0.2s var(--ease),
    transform 0.2s var(--ease);
}

.services-detail-more:hover {
  background: rgba(230, 122, 46, 0.12);
  border-color: rgba(230, 122, 46, 0.8);
  color: var(--ink);
  transform: translateY(-1px);
}

.services-scan-detail {
  position: relative;
  z-index: 1;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  min-height: 0;
  max-height: 100%;
  overflow: clip;
  overscroll-behavior: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 1.85rem 1.7rem 1.25rem;
  border: 0;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.services-detail-viewport {
  position: relative;
  flex: 1;
  min-height: 0;
  overflow: clip;
}

.services-detail-track {
  display: flex;
  flex-direction: column;
  height: 100%;
  will-change: transform;
  transition: transform 0.55s var(--ease);
}

.services-detail-slide {
  box-sizing: border-box;
  flex: 0 0 100%;
  height: 100%;
  max-height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.services-detail-slide .services-detail-copy {
  flex: 1;
  min-height: 0;
  margin: 0;
  overflow: hidden;
}

.services-scan-detail.is-pop:not(.is-reel) {
  animation: services-detail-in-up 0.55s var(--ease) both;
}

.services-scan-detail.is-reel {
  opacity: 1;
  transform: none;
}

@keyframes services-detail-in-up {
  from {
    opacity: 0;
    transform: translateY(2.1rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.services-scan-detail::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.services-frame-corner {
  position: absolute;
  width: 1.25rem;
  height: 1.25rem;
  pointer-events: none;
  color: rgba(28, 20, 16, 0.55);
}

.services-frame-corner::before,
.services-frame-corner::after {
  content: "";
  position: absolute;
  background: currentColor;
}

.services-frame-tl { top: 0; left: 0; }
.services-frame-tl::before { top: 0; left: 0; width: 100%; height: 2px; }
.services-frame-tl::after { top: 0; left: 0; width: 2px; height: 100%; }

.services-frame-tr { top: 0; right: 0; }
.services-frame-tr::before { top: 0; right: 0; width: 100%; height: 2px; }
.services-frame-tr::after { top: 0; right: 0; width: 2px; height: 100%; }

.services-frame-bl { bottom: 0; left: 0; }
.services-frame-bl::before { bottom: 0; left: 0; width: 100%; height: 2px; }
.services-frame-bl::after { bottom: 0; left: 0; width: 2px; height: 100%; }

.services-frame-br { bottom: 0; right: 0; }
.services-frame-br::before { bottom: 0; right: 0; width: 100%; height: 2px; }
.services-frame-br::after { bottom: 0; right: 0; width: 2px; height: 100%; }

@media (min-width: 901px) {
  .services-stages {
    overflow-y: auto;
    overscroll-behavior: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .services-scan-detail,
  .services-scan-detail.is-pop {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .services-detail-track {
    transition: none;
  }
}

.services-scan-kicker {
  margin: 0 0 0.7rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-deep);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.85);
}

.services-scan-detail h3,
.services-detail-slide h3 {
  margin: 0 0 0.9rem;
  color: var(--ink);
  font-size: clamp(1.25rem, 2.2vw, 1.7rem);
  line-height: 1.25;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.9);
}

.services-scan-detail p#service-detail-copy,
.services-detail-copy {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
  text-align: justify;
  text-justify: inter-word;
  white-space: pre-line;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.75);
}

.services-anchors {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

@media (max-width: 900px) {
  .services-sticky {
    /* svh stays within the visible viewport (URL bar shown). 100dvh is
       taller than the screen on Chrome Android and traps the swipe.
       clip (not visible) keeps the reel viewport one card tall so later
       slides stay aligned; clip (not hidden) avoids an Android scrollport. */
    height: 100svh;
    max-height: 100svh;
    padding: calc(var(--header-h) + 0.55rem) 1.1rem 0.85rem;
    overflow: clip;
    overscroll-behavior: auto;
    touch-action: pan-y;
  }

  .services-inner {
    gap: 0.7rem;
  }

  .services-intro h2 {
    font-size: clamp(1.55rem, 6.5vw, 2.05rem);
    margin: 0.1rem 0 0;
  }

  .services-lead {
    display: none;
  }

  .services-scan {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr auto;
    gap: 0.7rem;
    min-height: 0;
    touch-action: pan-y;
  }

  .services-scan-detail {
    order: -1;
    min-height: 0;
    overflow: clip;
    overscroll-behavior: auto;
    touch-action: pan-y;
    padding: 1.2rem 1.1rem 1rem;
    /* backdrop-filter creates a compositor layer that can freeze
       vertical panning on Chrome Android while this card is pinned. */
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  /* Clip only on the viewport. overflow on the track would crop slides
     02–09, so after the first translate the summary copy is blank. */
  .services-detail-viewport {
    overflow: clip;
    overscroll-behavior: auto;
    touch-action: pan-y;
  }

  .services-detail-track,
  .services-detail-slide {
    min-height: 0;
    overflow: visible;
    overscroll-behavior: auto;
    touch-action: pan-y;
  }

  .services-detail-track {
    will-change: auto;
  }

  .services-stages {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 0.12rem;
    max-height: none;
    /* Keep this a layout row, not a nested scrollport — overflow-x:auto
       plus overscroll-behavior:contain eats vertical swipes on Android. */
    overflow: visible;
    overscroll-behavior: auto;
    padding: 0.1rem 0 0.15rem;
    touch-action: pan-y;
    scrollbar-width: none;
  }

  .services-stage {
    flex: 1 1 0;
    align-items: center;
    justify-content: center;
    gap: 0;
    width: auto;
    min-width: 0;
    margin: 0;
    padding: 0.15rem 0;
    border-bottom: 0;
  }

  .services-stage.is-active::after {
    content: none;
  }

  .services-stage-copy {
    display: none;
  }

  .services-stage-num {
    min-width: 0;
    width: 100%;
    max-width: 2.15rem;
    height: 2.15rem;
    padding: 0;
    font-size: 0.68rem;
  }

  .services-stage.is-active .services-stage-blurb {
    display: none;
  }
}


.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}

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

/* Achievements */
.achievements {
  position: relative;
  padding: 8rem clamp(1.25rem, 4vw, 3.5rem) 5rem;
  margin-top: 0;
  overflow: hidden;
  background: #ffffff;
}

.achievements-inner {
  position: relative;
  z-index: 1;
  max-width: 72rem;
  margin: 0 auto;
}

.achievements-intro.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.75s var(--ease),
    transform 0.75s var(--ease);
}

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

.achievements-grid .achievements-item {
  opacity: 0;
  transform: translateY(64px) scale(0.92);
}

.achievements-grid.is-wave-on .achievements-item {
  animation: achievements-wave-pop 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* Row 1 wave: items 1–4 */
.achievements-grid.is-wave-on .achievements-item:nth-child(1) { animation-delay: 0.05s; }
.achievements-grid.is-wave-on .achievements-item:nth-child(2) { animation-delay: 0.18s; }
.achievements-grid.is-wave-on .achievements-item:nth-child(3) { animation-delay: 0.31s; }
.achievements-grid.is-wave-on .achievements-item:nth-child(4) { animation-delay: 0.44s; }
/* Row 2 wave: items 5–7 */
.achievements-grid.is-wave-on .achievements-item:nth-child(5) { animation-delay: 0.72s; }
.achievements-grid.is-wave-on .achievements-item:nth-child(6) { animation-delay: 0.86s; }
.achievements-grid.is-wave-on .achievements-item:nth-child(7) { animation-delay: 1s; }

@keyframes achievements-wave-pop {
  0% {
    opacity: 0;
    transform: translateY(72px) scale(0.9);
  }
  55% {
    opacity: 1;
    transform: translateY(-10px) scale(1.05);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.achievements-intro {
  max-width: 36rem;
  margin: 0 auto 3.75rem;
  text-align: center;
}

.achievements-intro .eyebrow {
  margin-bottom: 0.85rem;
}

.achievements-intro h2 {
  margin: 0.35rem 0 1.15rem;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  letter-spacing: -0.03em;
}

.achievements-lead {
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.4vw, 1.1rem);
  line-height: 1.75;
}

.achievements-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.75rem 1.5rem;
  justify-items: center;
  text-align: center;
}

.achievements-item {
  padding: 0;
  border: 0;
  width: 100%;
  max-width: 14rem;
}

.achievements-item:nth-child(odd),
.achievements-item:nth-child(even) {
  padding: 0;
  border: 0;
}

.achievements-value {
  margin: 0 0 0.7rem;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.8vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--teal-deep);
}

.achievements-label {
  margin: 0 auto;
  font-size: 0.98rem;
  color: var(--ink-soft);
  line-height: 1.5;
  max-width: 18ch;
}

@media (min-width: 900px) {
  .achievements-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    column-gap: 1.75rem;
    row-gap: 4rem;
  }

  .achievements-item {
    grid-column: span 3;
    padding: 0;
    border: 0;
    justify-self: center;
  }

  .achievements-item:nth-child(odd),
  .achievements-item:nth-child(even) {
    padding: 0;
  }

  .achievements-item:nth-child(n + 5) {
    grid-column: span 4;
    padding: 0;
    border: 0;
  }
}

@media (max-width: 899px) {
  .achievements-grid .achievements-item:last-child {
    grid-column: 1 / -1;
    justify-self: center;
  }
}

/* Client testimonials — horizontal square carousel */
.testimonials {
  position: relative;
  padding: 6.5rem 0 1.5rem;
  overflow: hidden;
  background:
    radial-gradient(900px 420px at 12% 0%, rgba(230, 122, 46, 0.08), transparent 55%),
    radial-gradient(700px 380px at 90% 100%, rgba(240, 149, 74, 0.06), transparent 50%),
    linear-gradient(180deg, #fffaf6 0%, #fff7f1 55%, #ffefe4 100%);
}

.testimonials-inner {
  position: relative;
  z-index: 1;
  max-width: none;
  margin: 0 auto;
}

.testimonials-intro {
  max-width: 36rem;
  margin: 0 auto 3rem;
  padding: 0 clamp(1.25rem, 4vw, 3.5rem);
  text-align: center;
}

.testimonials .eyebrow {
  color: var(--teal-deep);
}

.testimonials-intro h2 {
  margin: 0.35rem 0 1.1rem;
  color: var(--ink);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  letter-spacing: -0.03em;
}

.testimonials-lead {
  margin: 0 auto;
  color: rgba(42, 28, 20, 0.68);
  font-size: clamp(0.98rem, 1.4vw, 1.1rem);
  line-height: 1.7;
}

/* Full-viewport tagline after testimonials */
.tagline-banner {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 68dvh;
  width: 100%;
  overflow: hidden;
  padding: 2rem 0 3rem;
  background:
    radial-gradient(900px 480px at 50% 45%, rgba(230, 122, 46, 0.1), transparent 60%),
    linear-gradient(180deg, #ffefe4 0%, #fff7f1 45%, #fffaf6 100%);
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 0, 0, 0.35) 10%,
    #000 22%,
    #000 78%,
    rgba(0, 0, 0, 0.35) 90%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 0, 0, 0.35) 10%,
    #000 22%,
    #000 78%,
    rgba(0, 0, 0, 0.35) 90%,
    transparent 100%
  );
}

.tagline-banner-track {
  display: flex;
  width: max-content;
  align-items: center;
  animation: taglineBannerMarquee 130s linear infinite;
  will-change: transform;
}

.tagline-banner-group {
  display: flex;
  flex: none;
  align-items: center;
}

.tagline-banner-group span {
  flex: none;
  padding-right: clamp(3.5rem, 8vw, 7rem);
  font-family: var(--font-display);
  font-size: clamp(4rem, 13vw, 11.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  white-space: nowrap;
  color: #5a453a;
}

@keyframes taglineBannerMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .tagline-banner-track {
    animation: none;
    justify-content: center;
    width: 100%;
  }

  .tagline-banner-group:nth-child(n + 2),
  .tagline-banner-group span:nth-child(n + 2) {
    display: none;
  }

  .tagline-banner-group span {
    padding-right: 0;
  }
}

@media (max-width: 640px) {
  .tagline-banner {
    min-height: 52dvh;
    padding: 1.25rem 0 2rem;
  }

  .tagline-banner-track {
    animation-duration: 100s;
  }

  .tagline-banner-group span {
    padding-right: 2.75rem;
    font-size: clamp(3rem, 16vw, 4.2rem);
  }
}

.testimonials-carousel {
  position: relative;
  max-width: 78rem;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3.5rem);
}

.testimonials-viewport {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 8%,
    #000 92%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 8%,
    #000 92%,
    transparent 100%
  );
}

.testimonials-viewport.is-at-start {
  mask-image: linear-gradient(90deg, #000 0%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 92%, transparent 100%);
}

.testimonials-viewport.is-at-end {
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 100%);
}

.testimonials-viewport.is-at-start.is-at-end {
  mask-image: none;
  -webkit-mask-image: none;
}

.testimonials-track {
  display: flex;
  gap: 0.85rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0.75rem 0.35rem 1.25rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.testimonials-track::-webkit-scrollbar {
  display: none;
}

.testimonial {
  position: relative;
  flex: 0 0 min(78vw, 18.5rem);
  width: min(78vw, 18.5rem);
  aspect-ratio: 1 / 1;
  margin: 0;
  padding: 1.45rem 1.35rem 1.3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  scroll-snap-align: start;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(
      155deg,
      rgba(255, 255, 255, 0.95) 0%,
      rgba(255, 244, 236, 0.9) 55%,
      rgba(252, 232, 216, 0.82) 100%
    );
  box-shadow: none;
}

/* Thin vertical join in the gap between boxes */
.testimonial:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 12%;
  bottom: 12%;
  left: calc(100% + 0.42rem);
  width: 1px;
  background: rgba(230, 122, 46, 0.35);
  pointer-events: none;
  transform: translateX(-50%);
}

.testimonial-corners {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.testimonial-corner {
  position: absolute;
  width: 1.15rem;
  height: 1.15rem;
  color: rgba(196, 95, 28, 0.7);
}

.testimonial-corner::before,
.testimonial-corner::after {
  content: "";
  position: absolute;
  background: currentColor;
}

.testimonial-corner-tl { top: 0; left: 0; }
.testimonial-corner-tl::before { top: 0; left: 0; width: 100%; height: 2px; }
.testimonial-corner-tl::after { top: 0; left: 0; width: 2px; height: 100%; }

.testimonial-corner-tr { top: 0; right: 0; }
.testimonial-corner-tr::before { top: 0; right: 0; width: 100%; height: 2px; }
.testimonial-corner-tr::after { top: 0; right: 0; width: 2px; height: 100%; }

.testimonial-corner-bl { bottom: 0; left: 0; }
.testimonial-corner-bl::before { bottom: 0; left: 0; width: 100%; height: 2px; }
.testimonial-corner-bl::after { bottom: 0; left: 0; width: 2px; height: 100%; }

.testimonial-corner-br { bottom: 0; right: 0; }
.testimonial-corner-br::before { bottom: 0; right: 0; width: 100%; height: 2px; }
.testimonial-corner-br::after { bottom: 0; right: 0; width: 2px; height: 100%; }

.testimonial p {
  position: relative;
  z-index: 1;
  margin: 0.35rem 0 1rem;
  color: var(--ink-soft);
  font-size: clamp(0.82rem, 1.1vw, 0.9rem);
  line-height: 1.5;
  text-align: justify;
  text-justify: inter-word;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 8;
  -webkit-box-orient: vertical;
}

.testimonial p::before,
.testimonial p::after {
  font-family: var(--font-display);
  font-size: 1.05em;
  font-weight: 700;
  line-height: 1;
  color: rgba(230, 122, 46, 0.55);
}

.testimonial p::before {
  content: "“";
  margin-right: 0.12em;
}

.testimonial p::after {
  content: "”";
  margin-left: 0.12em;
}

.testimonial footer {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  margin-top: auto;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(230, 122, 46, 0.16);
}

.testimonial cite {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.testimonial footer span {
  font-size: 0.82rem;
  color: var(--muted);
}

.testimonials-nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(230, 122, 46, 0.28);
  border-radius: 50%;
  background: rgba(255, 250, 246, 0.92);
  color: var(--teal-deep);
  cursor: pointer;
  transform: translateY(-50%);
  box-shadow: 0 8px 20px rgba(60, 28, 10, 0.08);
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    opacity 0.2s ease;
}

.testimonials-nav:hover {
  background: #fff;
  border-color: rgba(230, 122, 46, 0.5);
}

.testimonials-nav:disabled {
  opacity: 0.35;
  cursor: default;
}

.testimonials-nav-prev {
  left: 0.35rem;
}

.testimonials-nav-next {
  right: 0.35rem;
}

@media (min-width: 900px) {
  .testimonial {
    flex-basis: 19.5rem;
    width: 19.5rem;
  }

  .testimonials-nav-prev {
    left: 0.15rem;
  }

  .testimonials-nav-next {
    right: 0.15rem;
  }
}

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

/* Strategic Framework — SCR-themed service → hub → engagement flows */
.framework {
  position: relative;
  padding: 10.5rem clamp(1.25rem, 4vw, 3.5rem) 6rem;
  overflow: hidden;
  color: #2a1c14;
  background:
    linear-gradient(180deg, #fff 0%, #f7f3ee 38%, #f3ebe3 100%);
}

.framework-inner {
  position: relative;
  z-index: 1;
  width: min(1240px, 100%);
  margin: 0 auto;
}

.framework-intro {
  max-width: 40rem;
  margin: 0 auto 2.25rem;
  text-align: center;
}

.framework-intro .eyebrow {
  color: #c45f1c;
  margin-bottom: 0.85rem;
}

.framework-intro h2 {
  margin: 0.35rem 0 1.05rem;
  color: #1f140e;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  letter-spacing: -0.03em;
}

.framework-lead {
  margin: 0 auto;
  color: rgba(42, 28, 20, 0.68);
  font-size: clamp(0.98rem, 1.4vw, 1.1rem);
  line-height: 1.7;
}

.framework-stage {
  position: relative;
  padding: clamp(1.2rem, 2.3vw, 1.7rem);
  border-radius: 1.35rem;
  border: 1px dashed rgba(196, 95, 28, 0.28);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 248, 242, 0.95) 100%),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 23px,
      rgba(230, 122, 46, 0.035) 23px,
      rgba(230, 122, 46, 0.035) 24px
    ),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 23px,
      rgba(230, 122, 46, 0.035) 23px,
      rgba(230, 122, 46, 0.035) 24px
    );
  box-shadow: 0 18px 40px rgba(196, 95, 28, 0.08);
  overflow: hidden;
}

.framework-rail {
  position: relative;
  display: grid;
  grid-template-columns:
    clamp(9.5rem, 14vw, 11.75rem)
    auto
    minmax(9.75rem, 11.75rem)
    auto
    minmax(0, 1fr);
  gap: clamp(0.55rem, 1.4vw, 1rem);
  align-items: center;
}

.framework-connectors {
  display: none;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 3;
  overflow: visible;
}

.framework-connectors path {
  fill: none;
  stroke: rgba(230, 122, 46, 0.72);
  stroke-width: 1.6;
  stroke-dasharray: 5 7;
  stroke-linecap: butt;
  stroke-linejoin: round;
}

.framework-connectors .framework-connector-arrow {
  fill: #e67a2e;
  stroke: none;
}

.framework-services,
.framework-flows {
  position: relative;
  z-index: 4;
}

.framework-col-label {
  margin: 0 0 0.55rem;
  color: #c45f1c;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
}

.framework-services {
  align-self: center;
}

/* Keep column gap; hide the straight mid arrow so SVG curves take over */
.framework-services + .framework-connector {
  visibility: hidden;
}

.framework-service-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.38rem;
}

.framework-chip {
  display: block;
  padding: 0.5rem 0.65rem;
  border-radius: 0.7rem;
  border: 1px solid rgba(230, 122, 46, 0.22);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 16px rgba(196, 95, 28, 0.06);
  color: #2a1c14;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 650;
  letter-spacing: 0.01em;
  line-height: 1.25;
  text-align: left;
  transition:
    border-color 0.2s ease,
    transform 0.2s var(--ease),
    box-shadow 0.2s ease,
    color 0.2s ease;
}

.framework-chip:hover,
.framework-chip:focus-visible {
  border-color: rgba(196, 95, 28, 0.55);
  color: #c45f1c;
  transform: translateX(3px);
  box-shadow: 0 10px 22px rgba(196, 95, 28, 0.1);
  outline: none;
}

.framework-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  min-width: 2.2rem;
  color: #e67a2e;
}

.framework-connector__line {
  display: block;
  width: clamp(1.4rem, 2.6vw, 2.2rem);
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(230, 122, 46, 0.25), #e67a2e);
}

.framework-connector__head {
  display: block;
  width: 0;
  height: 0;
  margin-left: -1px;
  border-style: solid;
  border-width: 5px 0 5px 7px;
  border-color: transparent transparent transparent #e67a2e;
}

.framework-hub {
  position: relative;
  width: 100%;
  max-width: 11.75rem;
  aspect-ratio: 1;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  box-shadow: none;
  display: grid;
  place-items: center;
  text-align: center;
  isolation: isolate;
  justify-self: center;
}

.framework-hub__radar {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 248, 242, 0.96) 0%, rgba(255, 232, 210, 0.92) 48%, rgba(246, 196, 154, 0.88) 100%);
  border: 1.5px solid rgba(230, 122, 46, 0.42);
  box-shadow:
    0 14px 32px rgba(196, 95, 28, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  z-index: 0;
}

.framework-hub__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(196, 95, 28, 0.22);
  pointer-events: none;
}

.framework-hub__ring--outer { inset: 8%; }
.framework-hub__ring--mid { inset: 22%; border-color: rgba(196, 95, 28, 0.18); }
.framework-hub__ring--inner { inset: 36%; border-color: rgba(196, 95, 28, 0.14); }

.framework-hub__cross {
  position: absolute;
  background: rgba(196, 95, 28, 0.12);
  pointer-events: none;
}

.framework-hub__cross--h {
  left: 10%;
  right: 10%;
  top: 50%;
  height: 1px;
  transform: translateY(-50%);
}

.framework-hub__cross--v {
  top: 10%;
  bottom: 10%;
  left: 50%;
  width: 1px;
  transform: translateX(-50%);
}

.framework-hub__sweep {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    rgba(247, 167, 99, 0.1) 10deg,
    rgba(230, 122, 46, 0.34) 48deg,
    rgba(240, 149, 74, 0.12) 82deg,
    transparent 110deg
  );
  animation: radar-spin 7s linear infinite;
  filter: drop-shadow(0 0 0.55rem rgba(230, 122, 46, 0.16));
  pointer-events: none;
}

.framework-hub__blip {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.35rem;
  height: 0.35rem;
  margin: -0.175rem;
  border-radius: 50%;
  background: #e67a2e;
  box-shadow: 0 0 0.45rem rgba(230, 122, 46, 0.55);
  transform: rotate(var(--a)) translate(var(--r)) rotate(calc(-1 * var(--a)));
  animation: framework-hub-blip 2.8s ease-in-out infinite;
  pointer-events: none;
}

.framework-hub__blip:nth-child(7) { animation-delay: 0.4s; }
.framework-hub__blip:nth-child(8) { animation-delay: 0.9s; }
.framework-hub__blip:nth-child(9) { animation-delay: 1.4s; }
.framework-hub__blip:nth-child(10) { animation-delay: 1.9s; }

@keyframes framework-hub-blip {
  0%, 100% { opacity: 0.35; transform: rotate(var(--a)) translate(var(--r)) rotate(calc(-1 * var(--a))) scale(0.85); }
  50% { opacity: 1; transform: rotate(var(--a)) translate(var(--r)) rotate(calc(-1 * var(--a))) scale(1.15); }
}

.framework-hub__copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.55rem;
  place-items: center;
  max-width: 8.5rem;
  padding: 0.35rem;
  pointer-events: none;
}

.framework-hub__eyebrow {
  margin: 0;
  color: #c45f1c;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.framework-hub__title {
  margin: 0;
  color: #1f140e;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 750;
  letter-spacing: -0.02em;
  line-height: 1.12;
}

.framework-hub__text {
  display: none;
}

.framework-flows {
  display: grid;
  gap: 0.38rem;
  align-content: start;
}

.framework-flows > .framework-col-label {
  margin-bottom: 0.15rem;
  text-align: center;
}

.framework-mini {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) 1.35rem minmax(5.4rem, 6.2rem);
  gap: 0.28rem 0.35rem;
  align-items: stretch;
  padding: 0.32rem 0.4rem;
  border-radius: 0.7rem;
  border: 1px solid rgba(230, 122, 46, 0.2);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 18px rgba(196, 95, 28, 0.06);
  text-decoration: none;
  color: inherit;
  transition:
    border-color 0.2s ease,
    transform 0.2s var(--ease),
    box-shadow 0.2s ease;
}

.framework-mini:hover,
.framework-mini:focus-visible {
  border-color: rgba(196, 95, 28, 0.5);
  transform: translateX(3px);
  box-shadow: 0 12px 26px rgba(196, 95, 28, 0.1);
  outline: none;
}

.framework-mini__screen {
  width: 3.6rem;
  height: 2.45rem;
  flex-shrink: 0;
  border-radius: 0.35rem;
  border: 1px solid rgba(42, 28, 20, 0.18);
  background: linear-gradient(165deg, #2a1c14 0%, #3d2a1f 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  overflow: hidden;
  align-self: center;
}

.framework-mini__screen-bar {
  display: flex;
  align-items: center;
  gap: 0.12rem;
  padding: 0.12rem 0.18rem 0.06rem;
  background: rgba(255, 255, 255, 0.06);
}

.framework-mini__screen-bar i {
  width: 0.2rem;
  height: 0.2rem;
  border-radius: 50%;
  background: rgba(255, 248, 243, 0.35);
}

.framework-mini__screen-bar i:nth-child(1) { background: #e88a6a; }
.framework-mini__screen-bar i:nth-child(2) { background: #e6c06a; }
.framework-mini__screen-bar i:nth-child(3) { background: #7dba7a; }

.framework-mini__screen-code {
  display: grid;
  gap: 0.06rem;
  padding: 0.1rem 0.18rem 0.14rem;
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-size: 0.32rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: 0;
  color: rgba(255, 232, 210, 0.78);
}

.framework-mini__screen-code span {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: clip;
  border: 0;
  background: transparent;
  padding: 0;
  min-height: 0;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  text-transform: none;
  color: inherit;
}

.framework-mini__screen-code span:nth-child(2) {
  color: #f0a56a;
}

.framework-mini__screen-code span:nth-child(3) {
  color: rgba(255, 248, 243, 0.55);
}

.framework-mini__steps {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 0.22rem;
  min-width: 0;
  overflow: hidden;
  align-self: center;
  height: 2.45rem;
}

.framework-mini__steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-width: 3.2rem;
  padding: 0.2rem 0.35rem;
  border-radius: 0.35rem;
  border: 1px solid rgba(230, 122, 46, 0.22);
  background: rgba(255, 248, 242, 0.95);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  color: #5c4a3d;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
  flex: 1 1 0;
}

.framework-mini__steps i {
  display: inline-flex;
  align-self: center;
  width: 0.24rem;
  height: 0.24rem;
  border-radius: 50%;
  background: #e67a2e;
  opacity: 0.7;
  flex-shrink: 0;
}

.framework-mini__dots {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  font-style: normal;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  color: rgba(196, 95, 28, 0.55);
  user-select: none;
  align-self: center;
}

.framework-mini__reval {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2.45rem;
  padding: 0.2rem 0.35rem;
  border-radius: 0.35rem;
  border: 1px solid rgba(196, 95, 28, 0.35);
  background: rgba(230, 122, 46, 0.12);
  color: #c45f1c;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
  text-align: center;
  align-self: center;
  box-sizing: border-box;
}

@media (max-width: 1100px) {
  .framework-rail {
    grid-template-columns: minmax(8.5rem, 10.5rem) auto minmax(9rem, 11rem);
    grid-template-areas:
      "hub arrow1 services"
      "flows flows flows";
    align-items: center;
  }

  .framework-hub { grid-area: hub; }
  .framework-hub + .framework-connector { grid-area: arrow1; }
  .framework-services { grid-area: services; }
  .framework-services + .framework-connector { display: none; }
  .framework-flows {
    grid-area: flows;
    grid-template-columns: 1fr;
    margin-top: 0.35rem;
  }

  .framework-flows > .framework-col-label {
    grid-column: 1 / -1;
  }

  .framework-connectors {
    display: none;
  }
}

@media (min-width: 1101px) {
  .framework-connectors {
    display: block;
  }
}

@media (max-width: 720px) {
  .framework {
    padding-top: 7.5rem;
    padding-bottom: 4.5rem;
  }

  .framework-rail {
    grid-template-columns: 1fr;
    grid-template-areas:
      "hub"
      "services"
      "flows";
    gap: 0.9rem;
  }

  .framework-connector {
    display: none;
  }

  .framework-service-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .framework-mini {
    grid-template-columns: auto minmax(0, 1fr) 1.2rem minmax(4.4rem, 5rem);
    gap: 0.25rem 0.3rem;
  }

  .framework-hub {
    width: clamp(8.5rem, 28vw, 10.5rem);
    min-height: 0;
    max-width: none;
  }
}

/* Process — ops-map flowchart */
.process {
  position: relative;
  padding: 6.75rem clamp(1.25rem, 4vw, 3.5rem) 6rem;
  overflow: hidden;
  color: #2a1c14;
  background:
    linear-gradient(180deg, #fff 0%, #f7f3ee 38%, #f3ebe3 100%);
}

.process-atmosphere {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.process-wave {
  position: absolute;
  left: -10%;
  width: 120%;
  height: 42%;
  opacity: 0.55;
  background:
    radial-gradient(ellipse 60% 80% at 50% 100%, rgba(230, 122, 46, 0.12), transparent 70%);
  transform-origin: center bottom;
}

.process-wave-a {
  top: 8%;
  animation: process-wave-drift 14s ease-in-out infinite alternate;
}

.process-wave-b {
  bottom: -4%;
  opacity: 0.4;
  animation: process-wave-drift 18s ease-in-out infinite alternate-reverse;
}

@keyframes process-wave-drift {
  from { transform: translateX(-2%) scaleY(1); }
  to { transform: translateX(2%) scaleY(1.08); }
}

.process-inner {
  position: relative;
  z-index: 1;
  max-width: 68rem;
  margin: 0 auto;
}

.process-intro {
  max-width: 36rem;
  margin: 0 auto 3.25rem;
  text-align: center;
}

.process .eyebrow {
  color: #c45f1c;
}

.process-intro h2 {
  margin: 0.35rem 0 1.05rem;
  color: #1f140e;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  letter-spacing: -0.03em;
}

.process-lead {
  margin: 0 auto;
  color: rgba(42, 28, 20, 0.68);
  font-size: clamp(0.98rem, 1.4vw, 1.1rem);
  line-height: 1.7;
}

.process-map {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.15rem;
  isolation: isolate;
}

.process-node {
  position: relative;
  z-index: 2;
  padding: 1.15rem 1.2rem 1.25rem;
  border: 1px solid rgba(230, 122, 46, 0.22);
  border-radius: 1.15rem;
  background:
    linear-gradient(
      155deg,
      rgba(255, 255, 255, 0.92) 0%,
      rgba(255, 244, 236, 0.88) 48%,
      rgba(252, 232, 216, 0.78) 100%
    );
  box-shadow:
    0 10px 28px rgba(196, 95, 28, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--i, 0) * 0.12s);
}

.process-map.is-drawn .process-node {
  opacity: 1;
  transform: none;
}

.process-node h3 {
  margin: 0 0 0.45rem;
  color: #1f140e;
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  letter-spacing: -0.02em;
}

.process-node p {
  margin: 0;
  max-width: 34ch;
  color: rgba(42, 28, 20, 0.62);
  font-size: 0.95rem;
  line-height: 1.55;
}

.process-node-report {
  border-color: rgba(230, 122, 46, 0.32);
  background:
    linear-gradient(
      155deg,
      rgba(255, 250, 245, 0.96) 0%,
      rgba(255, 236, 220, 0.9) 50%,
      rgba(248, 220, 196, 0.82) 100%
    );
  box-shadow:
    0 12px 32px rgba(196, 95, 28, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.process-node-report h3 {
  color: #c45f1c;
}

.process-loop-note {
  margin: 0.15rem 0 0.35rem;
  padding: 0.85rem 1rem;
  border: 1px dashed rgba(230, 122, 46, 0.4);
  color: rgba(42, 28, 20, 0.58);
  font-size: 0.88rem;
  line-height: 1.45;
}

.process-loop-note span {
  display: block;
  margin-bottom: 0.2rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c45f1c;
}

.process-routes {
  display: none;
}

.process-feedback {
  display: none;
}

.process-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 1.35rem;
  color: #e67a2e;
}

.process-link-line {
  display: block;
  width: 2.5px;
  height: 100%;
  background: linear-gradient(180deg, rgba(230, 122, 46, 0.35), #e67a2e);
  border-radius: 2px;
}

.process-link-head {
  display: block;
  width: 0;
  height: 0;
  margin-top: -1px;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 9px solid #e67a2e;
}

.process-link-discover-attack {
  /* only show plan→discover connector on mobile */
  display: none;
}

.process-elbow {
  display: none;
}

@media (min-width: 900px) {
  .process-loop-note {
    display: none;
  }

  .process-map {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(4.5rem, 6.5rem) minmax(0, 1fr) minmax(4.5rem, 6.5rem) minmax(0, 1fr);
    grid-template-rows: auto auto;
    gap: 0;
    min-height: 28rem;
    padding: 3.75rem 0 0.5rem;
    align-items: stretch;
    container-type: inline-size;
    container-name: process-map;
  }

  .process-node {
    padding: 1.35rem 1.15rem 1.4rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .process-node p {
    max-width: 28ch;
    margin-inline: auto;
  }

  .process-node-plan {
    grid-column: 1;
    grid-row: 1;
  }

  .process-link-plan-discover {
    grid-column: 2;
    grid-row: 1;
  }

  .process-node-discover {
    grid-column: 3;
    grid-row: 1;
  }

  .process-link-discover-attack {
    display: flex;
    grid-column: 4;
    grid-row: 1;
  }

  .process-node-attack {
    grid-column: 5;
    grid-row: 1;
  }

  .process-link {
    flex-direction: row;
    align-self: center;
    width: 100%;
    height: auto;
    margin-top: 0;
    padding-inline: 0.15rem;
    z-index: 3;
    opacity: 0;
    transform: scaleX(0.4);
    transform-origin: left center;
    transition:
      opacity 0.45s ease,
      transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .process-map.is-drawn .process-link {
    opacity: 1;
    transform: scaleX(1);
  }

  .process-map.is-drawn .process-link-plan-discover {
    transition-delay: 0.15s;
  }

  .process-map.is-drawn .process-link-discover-attack {
    transition-delay: 0.28s;
  }

  .process-link-line {
    flex: 1;
    width: auto;
    min-width: 3.25rem;
    height: 2.5px;
    background: linear-gradient(90deg, rgba(230, 122, 46, 0.35), #e67a2e);
  }

  .process-link-head {
    flex-shrink: 0;
    margin-top: 0;
    margin-left: -1px;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 9px solid #e67a2e;
    border-right: 0;
  }

  .process-node-report {
    grid-column: 1 / -1;
    grid-row: 2;
    align-self: end;
    justify-self: center;
    width: min(100%, 22rem);
    margin-top: 5.5rem;
    padding-top: 0.85rem;
  }

  /* L-arrows: Planning → left-center of Reporting, Attack → right-center */
  .process-elbow {
    /* to Reporting left/right edge */
    --elbow-run: calc(50cqw - min(11rem, 50cqw) - (100cqw - 11rem) / 6);
    /* down to vertical mid of Reporting (margin-top + ~half card) */
    --elbow-drop: calc(5.5rem + 5rem);
    display: block;
    position: absolute;
    left: 50%;
    top: 100%;
    width: 0;
    height: 0;
    z-index: 2;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.45s ease 0.35s;
  }

  .process-map.is-drawn .process-elbow {
    opacity: 1;
  }

  .process-elbow-v {
    position: absolute;
    left: 0;
    top: 0;
    width: 2.5px;
    height: var(--elbow-drop);
    transform: translateX(-50%);
  }

  .process-elbow-plan .process-elbow-v,
  .process-elbow-attack .process-elbow-v {
    background: linear-gradient(
      180deg,
      rgba(230, 122, 46, 0.2) 0%,
      rgba(230, 122, 46, 0.55) 45%,
      #e67a2e 100%
    );
  }

  .process-elbow-h {
    position: absolute;
    top: var(--elbow-drop);
    height: 2.5px;
    width: var(--elbow-run);
  }

  .process-elbow-plan .process-elbow-h {
    left: 0;
    background: linear-gradient(
      90deg,
      rgba(230, 122, 46, 0.35) 0%,
      rgba(230, 122, 46, 0.7) 55%,
      #e67a2e 100%
    );
  }

  .process-elbow-attack .process-elbow-h {
    right: 0;
    background: linear-gradient(
      270deg,
      rgba(230, 122, 46, 0.35) 0%,
      rgba(230, 122, 46, 0.7) 55%,
      #e67a2e 100%
    );
  }

  .process-elbow-head {
    position: absolute;
    top: calc(var(--elbow-drop) + 1.25px);
    width: 0;
    height: 0;
    transform: translateY(-50%);
  }

  .process-elbow-plan .process-elbow-head {
    left: var(--elbow-run);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 9px solid #e67a2e;
  }

  .process-elbow-attack .process-elbow-head {
    right: var(--elbow-run);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-right: 9px solid #e67a2e;
  }

  /* U-loop: Attack → Discovery (Additional Discovery) */
  .process-feedback {
    --loop-rise: 2.35rem;
    --loop-span: calc((100cqw - 11rem) / 3 + 5.5rem);
    display: block;
    position: absolute;
    left: 50%;
    top: 0;
    width: 0;
    height: 0;
    z-index: 3;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.45s ease 0.45s;
  }

  .process-map.is-drawn .process-feedback {
    opacity: 1;
  }

  .process-feedback-up {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 2.5px;
    height: var(--loop-rise);
    transform: translateX(-50%);
    background: linear-gradient(
      0deg,
      rgba(230, 122, 46, 0.25) 0%,
      rgba(230, 122, 46, 0.65) 50%,
      #e67a2e 100%
    );
  }

  .process-feedback-across {
    position: absolute;
    top: calc(-1 * var(--loop-rise));
    right: 0;
    width: var(--loop-span);
    height: 2.5px;
    background: linear-gradient(
      270deg,
      rgba(230, 122, 46, 0.35) 0%,
      rgba(230, 122, 46, 0.75) 50%,
      #e67a2e 100%
    );
  }

  .process-feedback-down {
    position: absolute;
    top: calc(-1 * var(--loop-rise));
    right: var(--loop-span);
    width: 2.5px;
    height: var(--loop-rise);
    transform: translateX(50%);
    background: linear-gradient(
      180deg,
      #e67a2e 0%,
      rgba(196, 95, 28, 0.95) 100%
    );
  }

  .process-feedback-head {
    position: absolute;
    top: -1px;
    right: var(--loop-span);
    width: 0;
    height: 0;
    transform: translate(50%, 0);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 9px solid #e67a2e;
  }

  .process-feedback-label {
    position: absolute;
    top: calc(-1 * var(--loop-rise) - 1.15rem);
    right: calc(var(--loop-span) / 2);
    transform: translateX(50%);
    white-space: nowrap;
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #c45f1c;
  }
}

@media (prefers-reduced-motion: reduce) {
  .process-wave-a,
  .process-wave-b {
    animation: none;
  }

  .process-node,
  .process-link,
  .process-elbow,
  .process-feedback {
    transition: none !important;
  }

  .process-map .process-node,
  .process-map .process-link,
  .process-map .process-elbow,
  .process-map .process-feedback {
    opacity: 1;
    transform: none;
  }
}

/* Cloud & Email — light architecture diagram */
.process--cloud .process-lead {
  max-width: 42rem;
}

.cloud-arch {
  width: min(100%, 76rem);
  margin: 0 auto;
}

.cloud-arch-board {
  position: relative;
  padding: 1.25rem 1rem 1.5rem;
  border-radius: 1.35rem;
  border: 1px dashed rgba(196, 95, 28, 0.28);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 248, 242, 0.95) 100%),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 23px,
      rgba(230, 122, 46, 0.035) 23px,
      rgba(230, 122, 46, 0.035) 24px
    ),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 23px,
      rgba(230, 122, 46, 0.035) 23px,
      rgba(230, 122, 46, 0.035) 24px
    );
  box-shadow: 0 18px 40px rgba(196, 95, 28, 0.08);
  overflow: hidden;
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.cloud-arch.is-drawn .cloud-arch-board {
  opacity: 1;
  transform: none;
}

.cloud-arch-wires {
  display: none;
}

.cloud-arch-layer {
  position: relative;
  z-index: 2;
}

.cloud-arch-layer-label {
  margin: 0 0 0.75rem;
  color: #c45f1c;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
}

.cloud-arch-providers {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  margin-bottom: 1.25rem;
}

.cloud-arch-chip {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 0.8rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(230, 122, 46, 0.22);
  background: rgba(255, 255, 255, 0.9);
  color: #2a1c14;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 8px 18px rgba(196, 95, 28, 0.06);
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.45s ease,
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(0.1s + var(--i, 0) * 0.08s);
}

.cloud-arch.is-drawn .cloud-arch-chip {
  opacity: 1;
  transform: none;
}

.cloud-arch-ico {
  width: 2rem;
  height: 2rem;
  color: #e67a2e;
  flex-shrink: 0;
  display: grid;
  place-items: center;
}

.cloud-arch-ico svg,
.cloud-arch-ico .cloud-brand-logo {
  width: 100%;
  height: 100%;
  display: block;
}

.cloud-arch-ico img.cloud-brand-logo {
  object-fit: contain;
}

.cloud-arch-ico--brand {
  width: 2.35rem;
  height: 2.35rem;
  padding: 0.15rem;
  border-radius: 0.45rem;
  background: #fff;
  border: 1px solid rgba(42, 28, 20, 0.08);
  box-sizing: border-box;
}

.cloud-arch-suite {
  position: relative;
  margin: 0 auto 1.35rem;
  padding: 1.15rem 1.1rem 1.2rem;
  max-width: 40rem;
  text-align: center;
  border-radius: 1.1rem;
  border: 1.5px solid rgba(230, 122, 46, 0.4);
  background:
    linear-gradient(160deg, #fffaf6 0%, #ffe8d2 55%, #f6c49a 100%);
  box-shadow:
    0 14px 32px rgba(196, 95, 28, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
  opacity: 0;
  transform: scale(0.96);
  transition:
    opacity 0.5s ease 0.2s,
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.2s;
}

.cloud-arch.is-drawn .cloud-arch-suite {
  opacity: 1;
  transform: none;
}

.cloud-arch-suite-kicker {
  display: block;
  margin-bottom: 0.3rem;
  color: #c45f1c;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cloud-arch-suite strong {
  display: block;
  color: #1f140e;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.4vw, 1.45rem);
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.cloud-arch-suite-icons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.85rem;
  color: #c45c18;
}

.cloud-arch-suite-icon,
.cloud-arch-suite-icons span {
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border-radius: 0.55rem;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(196, 92, 24, 0.18);
}

.cloud-arch-suite-icon svg,
.cloud-arch-suite-icons svg {
  width: 1.15rem;
  height: 1.15rem;
}

.cloud-arch-suite-icon--spin svg,
.cloud-arch-atom--spin .cloud-arch-atom-ico svg {
  animation: cloud-arch-spin 4.5s linear infinite;
  transform-origin: center;
}

.cloud-arch-tracks {
  display: grid;
  gap: 0.85rem;
}

.cloud-arch-track {
  padding: 1.05rem 1rem 1.1rem;
  border-radius: 1rem;
  border: 1px solid rgba(230, 122, 46, 0.2);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 24px rgba(196, 95, 28, 0.06);
  min-width: 0;
  width: 100%;
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.5s ease,
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(0.35s + var(--i, 0) * 0.1s);
}

.cloud-arch.is-drawn .cloud-arch-track {
  opacity: 1;
  transform: none;
}

.cloud-arch-track-head {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.75rem;
}

.cloud-arch-track-ico {
  width: 2.4rem;
  height: 2.4rem;
  color: #e67a2e;
  display: grid;
  place-items: center;
  border-radius: 0.7rem;
  background: linear-gradient(160deg, #fff7f1, #ffe0c4);
  border: 1px solid rgba(230, 122, 46, 0.25);
  flex-shrink: 0;
}

.cloud-arch-track-ico svg {
  width: 1.45rem;
  height: 1.45rem;
}

.cloud-arch-track-tag {
  display: block;
  color: #c45f1c;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cloud-arch-track h3 {
  margin: 0.1rem 0 0;
  color: #1f140e;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.cloud-arch-atoms {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem;
}

.cloud-arch-atoms li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.45rem;
  border-radius: 0.55rem;
  background: rgba(255, 247, 241, 0.9);
  border: 1px solid rgba(230, 122, 46, 0.12);
  color: rgba(42, 28, 20, 0.78);
  font-size: 0.78rem;
  font-weight: 600;
}

.cloud-arch-atom-ico {
  width: 1.15rem;
  height: 1.15rem;
  color: #e67a2e;
  flex-shrink: 0;
}

.cloud-arch-atom-ico svg {
  width: 100%;
  height: 100%;
  display: block;
}

.cloud-arch-packet {
  opacity: 0;
}

.cloud-arch.is-drawn .cloud-arch-packet {
  opacity: 1;
}

@media (min-width: 760px) {
  .cloud-arch-providers {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

@media (min-width: 1024px) {
  .cloud-arch-board {
    padding: 1.75rem 1.6rem 2rem;
    min-height: 42rem;
  }

  .cloud-arch-wires {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
  }

  .cloud-arch-wire {
    fill: none;
    stroke: #e67a2e;
    stroke-width: 1.7;
    stroke-dasharray: 3.5 5.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dashoffset: 220;
    opacity: 0.22;
    transition:
      stroke-dashoffset 0.95s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.45s ease;
    transition-delay: calc(0.15s + var(--i, 0) * 0.05s);
  }

  .cloud-arch.is-drawn .cloud-arch-wire {
    stroke-dashoffset: 0;
    opacity: 0.9;
    animation: cloud-arch-dash 1.8s linear infinite;
    animation-delay: calc(0.9s + var(--i, 0) * 0.08s);
  }

  .cloud-arch-layer--providers {
    margin-bottom: 3.6rem;
  }

  .cloud-arch-layer--suite {
    margin-bottom: 3.4rem;
  }

  .cloud-arch-suite {
    max-width: 48rem;
    padding: 1.35rem 1.5rem 1.4rem;
  }

  .cloud-arch-tracks {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.1rem;
  }

  .cloud-arch-atoms {
    grid-template-columns: 1fr;
  }

  .cloud-arch-chip {
    justify-content: center;
    flex-direction: column;
    text-align: center;
    gap: 0.4rem;
    padding: 1rem 0.75rem;
    min-height: 5.6rem;
  }
}

@keyframes cloud-arch-dash {
  to {
    stroke-dashoffset: -36;
  }
}

@keyframes cloud-arch-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .cloud-arch-board,
  .cloud-arch-chip,
  .cloud-arch-suite,
  .cloud-arch-track,
  .cloud-arch-wire,
  .cloud-arch-suite-icon--spin svg,
  .cloud-arch-atom--spin .cloud-arch-atom-ico svg {
    transition: none !important;
    animation: none !important;
  }

  .cloud-arch .cloud-arch-board,
  .cloud-arch .cloud-arch-chip,
  .cloud-arch .cloud-arch-suite,
  .cloud-arch .cloud-arch-track {
    opacity: 1;
    transform: none;
  }

  .cloud-arch-wire {
    stroke-dashoffset: 0;
    opacity: 0.7;
  }

  .cloud-arch-packet {
    opacity: 0 !important;
  }
}

/* Source Code Review architecture — horizontal */
.process--scr .process-lead {
  max-width: 44rem;
}

.process--scr .process-inner {
  max-width: min(100%, 96rem);
  padding-inline: clamp(0.5rem, 1.5vw, 1.25rem);
}

.scr-arch {
  width: 100%;
  margin: 0 auto;
}

.scr-arch-board {
  position: relative;
  padding: 1.25rem 1rem 1.5rem;
  border-radius: 1.35rem;
  border: 1px dashed rgba(196, 95, 28, 0.28);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 248, 242, 0.95) 100%),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 23px,
      rgba(230, 122, 46, 0.035) 23px,
      rgba(230, 122, 46, 0.035) 24px
    ),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 23px,
      rgba(230, 122, 46, 0.035) 23px,
      rgba(230, 122, 46, 0.035) 24px
    );
  box-shadow: 0 18px 40px rgba(196, 95, 28, 0.08);
  overflow: visible;
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.scr-arch.is-drawn .scr-arch-board {
  opacity: 1;
  transform: none;
}

.scr-arch-wires {
  display: none;
}

.scr-arch-layer-label {
  margin: 0 0 0.75rem;
  color: #c45f1c;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
}

.scr-sats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.scr-sat {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(230, 122, 46, 0.22);
  background: rgba(255, 255, 255, 0.92);
  color: #2a1c14;
  font-size: 0.78rem;
  font-weight: 650;
  box-shadow: 0 8px 16px rgba(196, 95, 28, 0.06);
  opacity: 0;
  transform: translateX(-8px);
  transition:
    opacity 0.45s ease,
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(0.08s + var(--i, 0) * 0.06s);
}

.scr-arch.is-drawn .scr-sat {
  opacity: 1;
  transform: none;
}

.scr-sat-ico {
  width: 1.35rem;
  height: 1.35rem;
  color: #e67a2e;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.scr-sat-ico svg {
  width: 100%;
  height: 100%;
  display: block;
}

.scr-arch-flow {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 1.15rem;
}

.scr-col-stack {
  display: grid;
  gap: 0.65rem;
}

.scr-arch-chip {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 0.8rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(230, 122, 46, 0.22);
  background: rgba(255, 255, 255, 0.9);
  color: #2a1c14;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 8px 18px rgba(196, 95, 28, 0.06);
  opacity: 0;
  transform: translateX(-10px);
  transition:
    opacity 0.45s ease,
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(0.12s + var(--i, 0) * 0.08s);
}

.scr-arch.is-drawn .scr-arch-chip {
  opacity: 1;
  transform: none;
}

.scr-arch-ico {
  width: 2rem;
  height: 2rem;
  color: #e67a2e;
  flex-shrink: 0;
  display: grid;
  place-items: center;
}

.scr-arch-ico svg,
.scr-arch-ico .scr-brand-logo {
  width: 100%;
  height: 100%;
  display: block;
}

.scr-arch-ico img.scr-brand-logo {
  object-fit: contain;
}

.scr-arch-ico--brand {
  width: 2.2rem;
  height: 2.2rem;
  padding: 0.12rem;
  border-radius: 0.45rem;
  background: #fff;
  border: 1px solid rgba(42, 28, 20, 0.08);
  box-sizing: border-box;
}

.scr-engine {
  position: relative;
  padding: 1.35rem 1.1rem 1.3rem;
  border-radius: 1.2rem;
  border: 1.5px solid rgba(230, 122, 46, 0.42);
  background:
    linear-gradient(160deg, #fffaf6 0%, #ffe8d2 55%, #f6c49a 100%);
  box-shadow:
    0 14px 32px rgba(196, 95, 28, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
  text-align: center;
  min-height: 14rem;
  display: grid;
  place-items: center;
  opacity: 0;
  transform: scale(0.96);
  transition:
    opacity 0.5s ease 0.18s,
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.18s;
}

.scr-engine--infinity {
  border: 1px dashed rgba(230, 122, 46, 0.35);
  background:
    linear-gradient(165deg, #fffaf6 0%, #fff3e8 55%, #ffe8d4 100%);
  box-shadow:
    0 14px 28px rgba(196, 95, 28, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  padding: 1rem 0.85rem 1.1rem;
  min-height: 18rem;
}

.scr-arch.is-drawn .scr-engine {
  opacity: 1;
  transform: none;
}

.scr-arch.is-drawn .scr-inf-track {
  animation: cloud-arch-dash 1.8s linear infinite;
}

.scr-engine-core {
  position: relative;
  z-index: 1;
  max-width: 16rem;
  width: 100%;
}

.scr-engine--infinity .scr-engine-core {
  max-width: 24rem;
}

.scr-engine-infinity {
  margin: 0.35rem auto 0.55rem;
  width: 100%;
}

.scr-engine-svg {
  display: block;
  width: 100%;
  height: auto;
}

.scr-inf-hub {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.scr-inf-hub--dev,
.scr-inf-hub--sec,
.scr-inf-hub--ops {
  fill: #c45c18;
}

.scr-inf-hub--sec {
  fill: #e67a2e;
}

.scr-inf-stage {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  fill: #9a4f1c;
}

.scr-inf-callout-text {
  fill: #c45c18;
  font-size: 0.55rem;
  font-weight: 650;
}

.scr-engine-kicker {
  display: block;
  margin-bottom: 0.25rem;
  color: #c45f1c;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scr-engine--infinity .scr-engine-kicker {
  color: #c45f1c;
}

.scr-engine-core strong {
  display: block;
  color: #1f140e;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.scr-engine-core p {
  margin: 0.45rem 0 0;
  color: rgba(42, 28, 20, 0.72);
  font-size: 0.82rem;
  line-height: 1.4;
}

.scr-tools-panel {
  position: relative;
  padding: 0.85rem 0.8rem;
  border-radius: 1.1rem;
  border: 1px solid rgba(230, 122, 46, 0.28);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 247, 241, 0.94) 100%);
  box-shadow: 0 12px 28px rgba(196, 95, 28, 0.08);
  opacity: 0;
  transform: translateX(10px);
  transition:
    opacity 0.5s ease,
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(0.28s + var(--i, 0) * 0.08s);
}

.scr-arch.is-drawn .scr-tools-panel {
  opacity: 1;
  transform: none;
}

.scr-tools-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.scr-tools-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.6rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(230, 122, 46, 0.14);
  background: rgba(255, 255, 255, 0.88);
  color: #2a1c14;
  font-size: 0.88rem;
  font-weight: 600;
}

.scr-tools-item--end {
  border-color: rgba(230, 122, 46, 0.34);
  background: linear-gradient(160deg, #fffaf6, #ffe8d4);
}

.scr-tools-more {
  display: grid;
  place-items: center;
  min-height: 3rem;
  padding: 0.4rem 0;
  color: #c45c18;
}

.scr-tools-dots {
  position: relative;
  width: 0.3rem;
  height: 2.35rem;
}

.scr-tools-dots::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 0.3rem;
  height: 0.3rem;
  margin-left: -0.15rem;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.7;
  box-shadow:
    0 0.51rem 0 currentColor,
    0 1.02rem 0 currentColor,
    0 1.53rem 0 currentColor,
    0 2.04rem 0 currentColor;
}

.scr-arch-track {
  padding: 0.85rem 0.9rem;
  border-radius: 1rem;
  border: 1px solid rgba(230, 122, 46, 0.2);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 24px rgba(196, 95, 28, 0.06);
  min-width: 0;
  width: 100%;
  opacity: 0;
  transform: translateX(10px);
  transition:
    opacity 0.5s ease,
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(0.35s + var(--i, 0) * 0.1s);
}

.scr-arch.is-drawn .scr-arch-track {
  opacity: 1;
  transform: none;
}

.scr-arch-track--prod {
  border-color: rgba(230, 122, 46, 0.45);
  background: linear-gradient(160deg, #fffaf6, #ffe3c8);
}

.scr-arch-track-head {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0;
}

.scr-arch-track-ico {
  width: 2.2rem;
  height: 2.2rem;
  color: #e67a2e;
  display: grid;
  place-items: center;
  border-radius: 0.65rem;
  background: linear-gradient(160deg, #fff7f1, #ffe0c4);
  border: 1px solid rgba(230, 122, 46, 0.25);
  flex-shrink: 0;
}

.scr-arch-track-ico svg {
  width: 1.3rem;
  height: 1.3rem;
}

.scr-arch-track-tag {
  display: block;
  color: #c45f1c;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scr-arch-track h3 {
  margin: 0.08rem 0 0;
  color: #1f140e;
  font-size: 0.98rem;
  letter-spacing: -0.02em;
}

.scr-arch-packet {
  opacity: 0;
}

.scr-arch.is-drawn .scr-arch-packet {
  opacity: 1;
}

@keyframes scr-engine-orbit {
  to {
    transform: rotate(360deg);
  }
}

@media (min-width: 900px) {
  .scr-arch-board {
    padding: 2rem 2rem 2.25rem 7.25rem;
    min-height: 36rem;
    display: flex;
    align-items: center;
  }

  .scr-sats {
    position: absolute;
    left: 1rem;
    top: 0;
    bottom: 0;
    width: 5.4rem;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    gap: 0.85rem;
    grid-template-columns: none;
    z-index: 3;
    transform: none;
  }

  .scr-sat {
    flex-direction: column;
    text-align: center;
    gap: 0.25rem;
    padding: 0.55rem 0.35rem;
    border-radius: 0.85rem;
    font-size: 0.68rem;
  }

  .scr-sat-ico {
    width: 1.5rem;
    height: 1.5rem;
  }

  .scr-arch-flow {
    width: 100%;
    grid-template-columns:
      minmax(9.5rem, 0.85fr)
      minmax(14rem, 1.2fr)
      minmax(10rem, 0.9fr)
      minmax(11rem, 1fr);
    gap: 2.75rem;
    align-items: center;
  }

  .scr-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    min-width: 0;
    height: auto;
  }

  .scr-col-stack {
    flex: 0 0 auto;
    gap: 0.9rem;
  }

  .scr-engine {
    flex: 0 0 auto;
    min-height: 16.5rem;
    width: 100%;
  }

  .scr-engine--infinity {
    min-height: 20rem;
  }

  .scr-engine--infinity .scr-engine-core {
    max-width: 100%;
  }

  .scr-tools-panel {
    width: 100%;
  }

  .scr-arch-wires {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: visible;
  }

  .scr-arch-wire {
    fill: none;
    stroke: #e67a2e;
    stroke-width: 1.7;
    stroke-dasharray: 3.5 5.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dashoffset: 220;
    opacity: 0.22;
    transition:
      stroke-dashoffset 0.95s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.45s ease;
    transition-delay: calc(0.12s + var(--i, 0) * 0.04s);
  }

  .scr-arch-wire--cycle {
    stroke-width: 1.9;
    opacity: 0.3;
  }

  .scr-arch-wire--both {
    stroke-width: 1.6;
    opacity: 0.2;
  }

  .scr-arch.is-drawn .scr-arch-wire {
    stroke-dashoffset: 0;
    opacity: 0.9;
    animation: cloud-arch-dash 1.8s linear infinite;
    animation-delay: calc(0.85s + var(--i, 0) * 0.06s);
  }

  .scr-arch.is-drawn .scr-arch-wire--cycle {
    opacity: 1;
  }

  .scr-arch.is-drawn .scr-arch-wire--both {
    opacity: 0.75;
    animation: none;
  }
}

@media (min-width: 1200px) {
  .scr-arch-board {
    padding: 2.25rem 2.5rem 2.5rem 7.75rem;
    min-height: 38rem;
  }

  .scr-sats {
    width: 5.8rem;
    left: 1.15rem;
    gap: 1rem;
  }

  .scr-arch-flow {
    gap: 3.5rem;
  }
}

@media (min-width: 1440px) {
  .scr-arch-board {
    padding: 2.5rem 3rem 2.75rem 8.25rem;
  }

  .scr-arch-flow {
    gap: 4.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .scr-arch-board,
  .scr-arch-chip,
  .scr-arch-track,
  .scr-arch-wire,
  .scr-sat,
  .scr-engine,
  .scr-tools-panel,
  .scr-engine-ring,
  .scr-engine-ring::before,
  .scr-arch-suite-icon--spin svg,
  .scr-engine-gear svg {
    transition: none !important;
    animation: none !important;
  }

  .scr-arch .scr-arch-board,
  .scr-arch .scr-arch-chip,
  .scr-arch .scr-arch-track,
  .scr-arch .scr-sat,
  .scr-arch .scr-engine,
  .scr-arch .scr-tools-panel {
    opacity: 1;
    transform: none;
  }

  .scr-arch-wire {
    stroke-dashoffset: 0;
    opacity: 0.7;
  }

  .scr-arch-packet {
    opacity: 0 !important;
  }
}

/* Red Teaming Assessment */
.process--rt .process-wave {
  display: none;
}

.process--rt .process-lead,
.rt-scope .process-lead,
.rt-ext-impact .process-lead,
.rt-internal .process-lead {
  max-width: 46rem;
}

.process--rt .process-intro {
  margin-bottom: 1.35rem;
}

.process--rt {
  padding-bottom: 0;
}

#outcomes.process--rt {
  /* Match the space above the outcomes heading (.process padding-top) */
  padding-bottom: 6.75rem;
}

@media (min-width: 960px) {
  .process--rt .rt-cycle {
    margin-top: -5.5rem;
    margin-bottom: 0;
  }
}

.about-page-hero-sub {
  margin: 0 0 0.55rem;
  color: #c45c18;
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.rt-hero-paths {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: center;
  margin-top: 1rem;
}

.rt-hero-path-pill {
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  border: 1px dashed rgba(230, 122, 46, 0.45);
  background: rgba(255, 255, 255, 0.62);
  color: #c45c18;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.rt-hero-path-pill--tagline {
  padding: 0.55rem 1.15rem;
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  letter-spacing: 0.03em;
}

.rt-scope,
.rt-ext-impact,
.rt-internal {
  width: min(100%, 76rem);
  margin: 0 auto;
  padding: 1.5rem 0 2.5rem;
}

.rt-ext-impact {
  width: min(100%, 86rem);
  max-width: 86rem;
  padding-left: clamp(1rem, 3vw, 2.25rem);
  padding-right: clamp(1rem, 3vw, 2.25rem);
  padding-top: 2rem;
  padding-bottom: 3rem;
  overflow: visible;
}

.rt-ext-impact .rt-internal-path {
  margin-top: 2.25rem;
}

.rt-scope-paths {
  position: relative;
  display: grid;
  grid-template-columns:
    13.5rem
    6.75rem
    16.5rem
    16.5rem
    6.75rem
    13.5rem;
  grid-template-areas: "ext-cards . ext-head int-head . int-cards";
  align-items: center;
  justify-content: center;
  column-gap: 0.65rem;
  row-gap: 1.25rem;
  width: 100%;
  max-width: none;
  margin: 1rem 0 2.25rem;
  padding-left: clamp(1rem, 2.5vw, 2rem);
  padding-right: clamp(1rem, 2.5vw, 2rem);
  box-sizing: border-box;
}

.rt-scope-paths-wires {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: visible;
}

.rt-scope-paths-wires path {
  fill: none;
  stroke: #e67a2e;
  stroke-width: 2.2;
  stroke-dasharray: 7 6;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 1;
}

.rt-scope-paths-wires .rt-scope-paths-arrow {
  fill: #e67a2e;
  stroke: none;
}

.rt-scope-cards {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 0.42rem !important;
  width: 13.5rem !important;
  max-width: 13.5rem !important;
  margin: 0 !important;
  padding: 0;
  list-style: none;
}

.rt-scope-paths .rt-scope-cards--ext,
.rt-scope-paths .rt-scope-cards--int {
  justify-self: stretch !important;
}

.rt-scope-paths .rt-scope-cards--ext {
  grid-area: ext-cards;
}

.rt-scope-paths .rt-scope-cards--int {
  grid-area: int-cards;
}

.rt-scope-heading {
  position: relative;
  z-index: 2;
  margin: 0;
  width: 16.5rem;
  max-width: 16.5rem;
  height: 9rem;
  align-self: center;
}

.rt-scope-heading#rt-ext-heading {
  grid-area: ext-head;
  justify-self: center;
}

.rt-scope-heading#rt-int-heading {
  grid-area: int-head;
  justify-self: center;
}

.rt-scope-paths .hardening-heading-frame {
  width: 16.5rem;
  max-width: 16.5rem;
  height: 9rem;
  min-height: 9rem;
  display: grid;
  place-content: center;
  padding: 1.15rem 1.1rem;
  margin: 0;
  box-sizing: border-box;
}

.rt-scope-paths .rt-scope-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1rem, 1.4vw, 1.22rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
  text-align: center;
}

.rt-scope-paths .hardening-heading-lead {
  margin-top: 0.45rem;
  font-size: 0.78rem;
  line-height: 1.35;
  text-align: center;
}

.about-page-service-features--titles .about-page-pillar {
  padding: 0.48rem 0.72rem !important;
  border-radius: 0.55rem !important;
  min-height: 0;
  box-shadow: none !important;
}

.about-page-service-features--titles .about-page-pillar h3 {
  margin: 0 !important;
  font-size: 0.82rem !important;
  font-weight: 650;
  line-height: 1.25 !important;
  letter-spacing: -0.01em;
  color: #1f140e !important;
}

.about-page-service-features--titles .about-page-pillar p {
  display: none;
}

.rt-scope-paths-still {
  display: none;
}

/* The fan is built from fixed-width columns that need roughly 1290px, so
   anything narrower than that swaps in a scaled SVG twin of the desktop
   rendering rather than letting the outer cards fall off the page. */
@media (max-width: 1319.98px) {
  .rt-scope-paths {
    display: block;
  }

  .rt-scope-paths-still {
    display: block;
    width: 100%;
    height: auto;
  }

  .rt-scope-paths > .rt-scope-paths-wires,
  .rt-scope-paths > .rt-scope-heading,
  .rt-scope-paths > .rt-scope-cards {
    display: none;
  }
}


.rt-scope-diagram,
.rt-lifecycle,
.rt-rail,
.rt-outcomes,
.rt-internal-path {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s ease, transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.rt-scope-diagram.is-drawn,
.rt-lifecycle.is-drawn,
.rt-rail.is-drawn,
.rt-outcomes.is-drawn,
.rt-internal-path.is-drawn {
  opacity: 1;
  transform: none;
}

.rt-scope-diagram {
  margin: 0 auto 1.75rem;
  padding: 1.1rem 1.35rem 1.2rem;
  border-radius: 1.25rem;
  border: 1px dashed rgba(196, 95, 28, 0.28);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 248, 242, 0.96)),
    repeating-linear-gradient(90deg, transparent, transparent 23px, rgba(230, 122, 46, 0.035) 23px, rgba(230, 122, 46, 0.035) 24px),
    repeating-linear-gradient(0deg, transparent, transparent 23px, rgba(230, 122, 46, 0.035) 23px, rgba(230, 122, 46, 0.035) 24px);
  box-shadow: 0 16px 36px rgba(196, 95, 28, 0.08);
  overflow: hidden;
  width: min(100%, 76rem);
}

.rt-scope-svg {
  display: block;
  width: min(100%, 58rem);
  height: auto;
  min-height: 0;
  margin-inline: auto;
  aspect-ratio: 920 / 300;
}

.rt-scope-svg--vertical {
  max-width: 62rem;
}

/* Fallback stack, kept for the case where the diagram has to be re-flowed
   rather than scaled. This diagram carries few enough words that it stays
   legible when scaled, so the SVG itself is used at every width. */
.rt-scope-stack {
  display: none;
}

@media (max-width: 899.98px) {
  .rt-scope-svg {
    width: 100%;
  }

  .rt-scope-diagram {
    padding: 1.1rem 1rem 1.2rem;
  }

  .rt-scope-stack {
    max-width: 30rem;
    margin-inline: auto;
  }

  .rt-scope-stack-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
  }

  .rt-scope-stack-box {
    position: relative;
    display: grid;
    align-content: center;
    gap: 0.2rem;
    padding: 0.7rem 0.6rem 0.75rem;
    border: 1.8px dashed rgba(230, 122, 46, 0.4);
    border-radius: 0.9rem;
    background: rgba(255, 255, 255, 0.92);
    text-align: center;
  }

  .rt-scope-stack-box strong {
    color: #1f140e;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
  }

  .rt-scope-stack-box span {
    color: #c45c18;
    font-size: 0.68rem;
    font-weight: 600;
    line-height: 1.25;
  }

  .rt-scope-stack-box--goal {
    max-width: 20rem;
    margin-inline: auto;
    border: 2.1px solid #e67a2e;
    border-radius: 1rem;
    background: #fff4ea;
  }

  /* Both paths drop into a shared bracket, then a single arrow into the goal. */
  .rt-scope-stack-join {
    position: relative;
    height: 2.5rem;
  }

  .rt-scope-stack-join::before {
    content: "";
    position: absolute;
    left: 25%;
    right: 25%;
    top: 0;
    height: 1.15rem;
    border-left: 2px dashed rgba(230, 122, 46, 0.6);
    border-right: 2px dashed rgba(230, 122, 46, 0.6);
    border-bottom: 2px dashed rgba(230, 122, 46, 0.6);
    border-bottom-left-radius: 0.6rem;
    border-bottom-right-radius: 0.6rem;
  }

  .rt-scope-stack-join::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 1.15rem;
    bottom: 0;
    border-left: 2px dashed rgba(230, 122, 46, 0.6);
    transform: translateX(-1px);
  }

  .rt-scope-stack-box--goal::before {
    content: "";
    position: absolute;
    left: 50%;
    top: -0.52rem;
    width: 0;
    height: 0;
    border-left: 0.34rem solid transparent;
    border-right: 0.34rem solid transparent;
    border-top: 0.5rem solid #e67a2e;
    transform: translateX(-0.34rem);
  }
}

.rt-scope-box {
  fill: rgba(255, 255, 255, 0.92);
  stroke: rgba(230, 122, 46, 0.4);
  stroke-width: 1.8;
  stroke-dasharray: 5 4;
}

.rt-scope-box--goal {
  fill: #fff4ea;
  stroke: #e67a2e;
  stroke-dasharray: none;
  stroke-width: 2.1;
}

.rt-scope-label {
  fill: #1f140e;
  font-size: 18px;
  font-weight: 700;
  font-family: var(--font-display);
}

.rt-scope-sub {
  fill: #c45c18;
  font-size: 13px;
  font-weight: 600;
}

.rt-scope-diagram .rt-flow-wire.rt-scope-wire {
  opacity: 1;
  stroke-width: 2.6;
  stroke-dasharray: 6 5;
}

.rt-scope-columns {
  display: grid;
  gap: 1rem;
}

.rt-scope-card,
.rt-phase-card,
.rt-outcome-card {
  padding: 1.15rem 1.05rem 1.2rem;
  border-radius: 1rem;
  border: 1px solid rgba(230, 122, 46, 0.2);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 24px rgba(196, 95, 28, 0.06);
}

.rt-scope-card h3,
.rt-phase-card h3,
.rt-outcome-card h3 {
  margin: 0.2rem 0 0.55rem;
  color: #1f140e;
  font-size: 1.08rem;
  letter-spacing: -0.02em;
}

.rt-bullet-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.4rem;
}

.rt-bullet-list li {
  position: relative;
  padding-left: 0.95rem;
  color: rgba(42, 28, 20, 0.78);
  font-size: 0.9rem;
  line-height: 1.4;
}

.rt-bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: #e67a2e;
}

.rt-cycle {
  position: relative;
  width: min(100%, 58rem);
  margin: 0.5rem auto 0.35rem;
  min-height: 22rem;
}

.rt-cycle-svg {
  display: none;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.rt-cycle-ring {
  fill: none;
  stroke: rgba(230, 122, 46, 0.22);
  stroke-width: 1.6;
  stroke-dasharray: 5 7;
}

.rt-cycle-arc {
  stroke-width: 2.15;
  stroke-dasharray: 6 6;
}

.rt-cycle-hub {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 0.25rem;
  width: 8.75rem;
  height: 8.75rem;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  border: 1.5px dashed rgba(230, 122, 46, 0.5);
  background:
    linear-gradient(165deg, #fff7f1 0%, rgba(230, 122, 46, 0.16) 48%, #fffaf6 100%);
  box-shadow: 0 10px 24px rgba(196, 95, 28, 0.08);
  text-align: center;
  position: relative;
  z-index: 2;
}

.rt-cycle-hub-ico {
  width: 1.7rem;
  height: 1.7rem;
  color: #e67a2e;
}

.rt-cycle-hub-ico svg {
  width: 100%;
  height: 100%;
}

.rt-cycle-hub strong {
  color: #1f140e;
  font-size: 0.82rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.rt-cycle-hub span {
  color: #c45c18;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.rt-cycle-nodes {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
  position: relative;
  z-index: 2;
}

.rt-cycle-node {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 0.7rem;
  row-gap: 0.2rem;
  align-items: start;
  padding: 0.7rem 1rem 0.75rem;
  border-radius: 1.35rem;
  border: 1.5px dashed rgba(230, 122, 46, 0.42);
  background:
    linear-gradient(165deg, #fff7f1 0%, #f7e4d4 48%, #fffaf6 100%);
  box-shadow: 0 8px 20px rgba(28, 20, 16, 0.05);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.45s ease, transform 0.55s ease;
  transition-delay: calc(0.08s + var(--i, 0) * 0.06s);
}

.rt-cycle.is-drawn .rt-cycle-node {
  opacity: 1;
  transform: none;
}

.rt-cycle-ico {
  grid-row: 1 / span 2;
  width: 2.1rem;
  height: 2.1rem;
  display: grid;
  place-items: center;
  margin: 0.1rem 0 0;
  border-radius: 0.7rem;
  border: 1px dashed rgba(230, 122, 46, 0.4);
  background: rgba(255, 255, 255, 0.75);
  color: #e67a2e;
}

.rt-cycle-ico svg {
  width: 1.2rem;
  height: 1.2rem;
}

.rt-cycle-node h3 {
  margin: 0;
  color: #1f140e;
  font-size: 0.98rem;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.rt-cycle-node p {
  margin: 0;
  color: rgba(42, 28, 20, 0.74);
  font-size: 0.82rem;
  line-height: 1.4;
}

.rt-cycle-still {
  display: none;
}

/* The desktop circle is a CSS layout that needs ~960px, so below that
   breakpoint a scaled SVG twin carries the whole diagram on its own. */
@media (max-width: 959.98px) {
  .rt-cycle {
    min-height: 0;
  }

  .rt-cycle-still {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 auto 1.5rem;
    opacity: 0;
    transition: opacity 0.6s ease;
  }

  .rt-cycle.is-drawn .rt-cycle-still {
    opacity: 1;
  }

  /* The SVG draws its own hub, so the stacked one would be a duplicate. */
  .rt-cycle > .rt-cycle-hub {
    display: none;
  }

  .rt-still-ring path {
    stroke-width: 2.15;
    stroke-dasharray: 6 6;
  }

  .rt-cycle.is-drawn .rt-still-ring path {
    animation: cloud-arch-dash 1.8s linear infinite;
  }

  .rt-still-hub-title {
    font-family: var(--font-display);
    font-size: 14.4px;
    font-weight: 700;
    fill: #1f140e;
  }

  .rt-still-hub-sub {
    font-family: var(--font-display);
    font-size: 10.9px;
    font-weight: 700;
    letter-spacing: 0.5px;
    fill: #c45c18;
  }

  .rt-still-title {
    font-family: var(--font-display);
    font-size: 14.72px;
    font-weight: 700;
    letter-spacing: -0.3px;
    fill: #1f140e;
  }

  .rt-still-body {
    font-family: var(--font-body);
    font-size: 12.48px;
    fill: rgba(42, 28, 20, 0.74);
  }

  /* The SVG already shows every stage, so the stacked cards are a duplicate. */
  .rt-cycle-nodes {
    display: none;
  }

  .rt-cycle-still {
    margin-bottom: 0.25rem;
  }
}

@media (min-width: 960px) {
  .rt-cycle {
    width: min(100%, 64rem);
    min-height: 64rem;
  }

  .rt-cycle-svg {
    display: block;
  }

  .rt-cycle.is-drawn .rt-cycle-arc {
    animation: cloud-arch-dash 1.8s linear infinite;
  }

  .rt-cycle-hub {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    width: 11.5rem;
    height: 11.5rem;
    gap: 0.3rem;
  }

  .rt-cycle-hub-ico {
    width: 1.9rem;
    height: 1.9rem;
  }

  .rt-cycle-hub strong {
    font-size: 0.9rem;
  }

  .rt-cycle-nodes {
    position: absolute;
    inset: 0;
    display: block;
  }

  .rt-cycle-node {
    --orbit: 22rem;
    --a: 0deg;
    position: absolute;
    left: 50%;
    top: 50%;
    width: 16rem;
    height: 6.85rem;
    min-height: 6.85rem;
    max-height: 6.85rem;
    box-sizing: border-box;
    padding: 0.7rem 1.05rem 0.65rem;
    overflow: hidden;
    align-content: start;
    transform:
      translate(-50%, -50%)
      rotate(var(--a))
      translateY(calc(-1 * var(--orbit)))
      rotate(calc(-1 * var(--a)))
      translateY(10px);
  }

  .rt-cycle.is-drawn .rt-cycle-node {
    transform:
      translate(-50%, -50%)
      rotate(var(--a))
      translateY(calc(-1 * var(--orbit)))
      rotate(calc(-1 * var(--a)));
  }

  .rt-cycle-node h3 {
    font-size: 0.92rem;
    line-height: 1.28;
    overflow: visible;
    display: block;
    -webkit-line-clamp: initial;
    -webkit-box-orient: initial;
  }

  .rt-cycle-node p {
    font-size: 0.78rem;
    line-height: 1.4;
    overflow: visible;
    display: block;
    -webkit-line-clamp: initial;
    -webkit-box-orient: initial;
  }

  .rt-cycle-ico {
    width: 2.15rem;
    height: 2.15rem;
  }

  .rt-cycle-ico svg {
    width: 1.25rem;
    height: 1.25rem;
  }

  /* 8-stage cycle (External Attack Lifecycle) */
  .rt-cycle--8 .rt-cycle-node:nth-child(1) { --a: 0deg; --orbit: 16.4rem; }
  .rt-cycle--8 .rt-cycle-node:nth-child(2) { --a: 64.5deg; --orbit: 20.75rem; }
  .rt-cycle--8 .rt-cycle-node:nth-child(3) { --a: 90deg; --orbit: 22.1rem; }
  .rt-cycle--8 .rt-cycle-node:nth-child(4) { --a: 115.5deg; --orbit: 20.75rem; }
  .rt-cycle--8 .rt-cycle-node:nth-child(5) { --a: 180deg; --orbit: 16.4rem; }
  .rt-cycle--8 .rt-cycle-node:nth-child(6) { --a: 244.5deg; --orbit: 20.75rem; }
  .rt-cycle--8 .rt-cycle-node:nth-child(7) { --a: 270deg; --orbit: 22.1rem; }
  .rt-cycle--8 .rt-cycle-node:nth-child(8) { --a: 295.5deg; --orbit: 20.75rem; }

  /* 6-stage cycle (Internal Assumed Breach) */
  .rt-cycle--6 .rt-cycle-node:nth-child(1) { --a: 0deg; --orbit: 16.4rem; }
  .rt-cycle--6 .rt-cycle-node:nth-child(2) { --a: 60deg; --orbit: 21.3rem; }
  .rt-cycle--6 .rt-cycle-node:nth-child(3) { --a: 120deg; --orbit: 21.3rem; }
  .rt-cycle--6 .rt-cycle-node:nth-child(4) { --a: 180deg; --orbit: 16.4rem; }
  .rt-cycle--6 .rt-cycle-node:nth-child(5) { --a: 240deg; --orbit: 21.3rem; }
  .rt-cycle--6 .rt-cycle-node:nth-child(6) { --a: 300deg; --orbit: 21.3rem; }
}

@media (prefers-reduced-motion: reduce) {
  .rt-cycle-node,
  .rt-cycle-arc {
    transition: none !important;
    animation: none !important;
  }

  .rt-cycle-node {
    opacity: 1;
    transform: none;
  }

  @media (min-width: 960px) {
    .rt-cycle-node,
    .rt-cycle.is-drawn .rt-cycle-node {
      transform:
        translate(-50%, -50%)
        rotate(var(--a))
        translateY(calc(-1 * var(--orbit)))
        rotate(calc(-1 * var(--a)));
    }
  }
}




.rt-hubmap {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.25rem;
  width: 100%;
  margin: 1.35rem auto 0.5rem;
  padding: 0.35rem 0 0.75rem;
  background: none;
  box-shadow: none;
  overflow: visible;
}

.rt-hubmap-col {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.rt-hubmap-item {
  display: flex;
  align-items: center;
  gap: 0;
  min-width: 0;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.45s ease, transform 0.55s ease;
  transition-delay: calc(0.04s + var(--i, 0) * 0.035s);
}

.rt-hubmap.is-drawn .rt-hubmap-item {
  opacity: 1;
  transform: none;
}

.rt-hubmap-card {
  position: relative;
  flex: 1 1 auto;
  min-width: 0;
  min-height: 5.1rem;
  padding: 0.95rem 1.2rem;
  display: grid;
  align-content: center;
  color: #1f140e;
  background: linear-gradient(180deg, #fff8f2 0%, #ffe8d4 100%);
  border: none;
  box-shadow: none;
  filter: drop-shadow(0 10px 18px rgba(40, 24, 16, 0.08));
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

.rt-hubmap-col--left .rt-hubmap-card {
  padding: 0.95rem 1.55rem;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 100' preserveAspectRatio='none'%3E%3Cpath fill='white' d='M48 8 H352 C388 8 400 28 400 50 C400 72 388 92 352 92 H48 C12 92 4 70 4 50 C4 30 12 8 48 8 Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 100' preserveAspectRatio='none'%3E%3Cpath fill='white' d='M48 8 H352 C388 8 400 28 400 50 C400 72 388 92 352 92 H48 C12 92 4 70 4 50 C4 30 12 8 48 8 Z'/%3E%3C/svg%3E");
}

.rt-hubmap-col--right .rt-hubmap-card {
  padding: 0.95rem 1.55rem;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 100' preserveAspectRatio='none'%3E%3Cpath fill='white' d='M48 8 H352 C388 8 400 28 400 50 C400 72 388 92 352 92 H48 C12 92 4 70 4 50 C4 30 12 8 48 8 Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 100' preserveAspectRatio='none'%3E%3Cpath fill='white' d='M48 8 H352 C388 8 400 28 400 50 C400 72 388 92 352 92 H48 C12 92 4 70 4 50 C4 30 12 8 48 8 Z'/%3E%3C/svg%3E");
}

.rt-hubmap-copy {
  min-width: 0;
}

.rt-hubmap-card h3 {
  margin: 0;
  color: #1f140e;
  font-size: 0.92rem;
  font-weight: 750;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.rt-hubmap-card p {
  margin: 0.22rem 0 0;
  color: rgba(42, 28, 20, 0.78);
  font-size: 0.72rem;
  line-height: 1.35;
}

@media (min-width: 980px) {
  .rt-hubmap-col--left .rt-hubmap-copy {
    text-align: right;
  }
}

.rt-hubmap-num {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  flex: 0 0 2.55rem;
  width: 2.55rem;
  height: 2.2rem;
  color: #fff;
  background: #e67a2e;
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 800;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

.rt-hubmap-col--left .rt-hubmap-num {
  margin-right: -1.15rem;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 36' preserveAspectRatio='none'%3E%3Cpath fill='white' d='M18 3 H44 C47 3 48 7 48 11 V25 C48 29 47 33 44 33 H18 C8 33 3 23 3 18 C3 13 8 3 18 3 Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 36' preserveAspectRatio='none'%3E%3Cpath fill='white' d='M18 3 H44 C47 3 48 7 48 11 V25 C48 29 47 33 44 33 H18 C8 33 3 23 3 18 C3 13 8 3 18 3 Z'/%3E%3C/svg%3E");
}

.rt-hubmap-col--right .rt-hubmap-num {
  margin-left: -0.7rem;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 36' preserveAspectRatio='none'%3E%3Cpath fill='white' d='M4 3 H30 C40 3 45 13 45 18 C45 23 40 33 30 33 H4 C1 33 0 29 0 25 V11 C0 7 1 3 4 3 Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 36' preserveAspectRatio='none'%3E%3Cpath fill='white' d='M4 3 H30 C40 3 45 13 45 18 C45 23 40 33 30 33 H4 C1 33 0 29 0 25 V11 C0 7 1 3 4 3 Z'/%3E%3C/svg%3E");
}

.rt-hubmap-core {
  display: none;
}

.rt-hubmap-still {
  display: none;
}

.rt-radar {
  position: absolute;
  left: 50%;
  top: 50%;
  /* Fit the open middle corridor with clearance from cards */
  width: min(22rem, calc(100% + 10rem));
  aspect-ratio: 1;
  translate: -50% -50%;
  display: grid;
  place-items: center;
  pointer-events: none;
  z-index: 0;
}

.rt-radar-sweep {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    rgba(247, 167, 99, 0.12) 12deg,
    rgba(230, 122, 46, 0.34) 55deg,
    rgba(240, 149, 74, 0.14) 92deg,
    transparent 125deg
  );
  animation: radar-spin 8s linear infinite;
  /* Full disc from center — no hole mask */
  -webkit-mask-image: none;
  mask-image: none;
  filter: drop-shadow(0 0 0.7rem rgba(230, 122, 46, 0.14));
}

.rt-hubmap-item.is-live .rt-hubmap-card {
  background: linear-gradient(180deg, #fffdfb 0%, #ffd7b0 100%);
  filter: drop-shadow(0 12px 20px rgba(196, 92, 24, 0.18));
}

.rt-hubmap-item.is-live .rt-hubmap-num {
  background: #c45c18;
  transform: scale(1.06);
}

/* Stacked view: both columns read as one top-down sequence, so the right-hand
   column drops its mirrored layout and every step is joined by a connector. */
@media (max-width: 979.98px) {
  /* The two flanking columns need ~980px to hold their shape, so below that
     a scaled SVG twin of the desktop rendering stands in for the whole map. */
  .rt-hubmap-still {
    display: block;
    width: 100%;
    height: auto;
    opacity: 0;
    transition: opacity 0.6s ease;
  }

  .rt-hubmap.is-drawn .rt-hubmap-still {
    opacity: 1;
  }

  /* The SVG already shows every stage, so the columns would be a duplicate. */
  .rt-hubmap-col {
    display: none;
  }
}

@media (min-width: 980px) {
  .rt-hubmap {
    grid-template-columns: minmax(0, 1fr) 16.5rem minmax(0, 1fr);
    grid-template-areas: "left hub right";
    align-items: stretch;
    gap: 0.7rem 1.35rem;
    padding: 0.5rem 0 0.85rem;
    overflow: visible;
  }

  .rt-hubmap-col--left { grid-area: left; }
  .rt-hubmap-col--right { grid-area: right; }

  .rt-hubmap-col {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 42rem;
    gap: 0.7rem;
  }

  .rt-hubmap-col--left .rt-hubmap-item {
    margin-left: var(--inset, 0rem);
    margin-right: var(--pull, 0rem);
    width: calc(100% - var(--inset, 0rem) - var(--pull, 0rem));
  }

  .rt-hubmap-col--right .rt-hubmap-item {
    margin-right: var(--inset, 0rem);
    margin-left: var(--pull, 0rem);
    width: calc(100% - var(--inset, 0rem) - var(--pull, 0rem));
  }

  .rt-hubmap-card {
    min-height: 5.35rem;
  }

  .rt-hubmap-core {
    display: block;
    grid-area: hub;
    position: relative;
    width: 16.5rem;
    height: 100%;
    min-height: 42rem;
    margin: 0;
    align-self: stretch;
    overflow: visible;
    z-index: 1;
  }

  .rt-hubmap--12 .rt-hubmap-col {
    min-height: 36rem;
    gap: 0.85rem;
  }

  .rt-hubmap--12 .rt-hubmap-core {
    min-height: 36rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .rt-hubmap-item {
    transition: none !important;
    opacity: 1;
    transform: none;
  }

  .rt-radar-sweep {
    animation: none !important;
  }
}

.rt-lifecycle {
  margin: 0 auto 0.35rem;
}

.rt-rail {
  margin: 0 auto 1.15rem;
  padding: 1.05rem 0.9rem 1.15rem;
  border-radius: 1.2rem;
  border: 1px dashed rgba(196, 95, 28, 0.28);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 248, 242, 0.96));
  box-shadow: 0 14px 30px rgba(196, 95, 28, 0.07);
}

/* Arc-shaped process strip under outcome cards */
.rt-rail--arc {
  position: relative;
  width: 100%;
  margin: 0.55rem 0 1.5rem;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.rt-arc-stage {
  position: relative;
  width: 100%;
  margin: 0;
  aspect-ratio: 1100 / 220;
}

.rt-arc-shape {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
  filter: drop-shadow(0 10px 18px rgba(196, 120, 60, 0.14));
}

.rt-arc-dots {
  opacity: 0.95;
}

.rt-rail--arc.is-drawn .rt-arc-dots {
  animation: cloud-arch-dash 1.8s linear infinite;
}

.rt-rail--arc .rt-rail-steps {
  position: absolute;
  inset: 0;
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
  pointer-events: none;
}

.rt-rail--arc .rt-rail-step {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: clamp(2.35rem, 3.6vw, 2.85rem);
  min-height: clamp(4.8rem, 8vw, 6.1rem);
  display: grid;
  place-items: center;
  padding: 0.55rem 0.28rem;
  border-radius: 0.7rem;
  border: 1px solid rgba(196, 120, 70, 0.28);
  background: linear-gradient(180deg, #fffdfb 0%, #fff6ee 100%);
  box-shadow: 0 6px 14px rgba(140, 70, 20, 0.1);
  text-align: center;
  transform: translate(-50%, -50%) rotate(var(--r, 0deg)) translateY(10px);
  opacity: 0;
  pointer-events: auto;
  transition: opacity 0.4s ease, transform 0.5s ease;
  transition-delay: calc(0.08s + var(--i, 0) * 0.045s);
}

.rt-rail--arc .rt-rail-step strong {
  display: block;
  color: #5c3418;
  font-size: clamp(0.58rem, 0.95vw, 0.72rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.15;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
}

.rt-rail--arc.is-drawn .rt-rail-step {
  opacity: 1;
  transform: translate(-50%, -50%) rotate(var(--r, 0deg));
}

@media (max-width: 759px) {
  .rt-arc-stage {
    aspect-ratio: auto;
    min-height: 0;
  }

  .rt-arc-shape {
    display: none;
  }

  .rt-rail--arc .rt-rail-steps {
    position: relative;
    inset: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
  }

  .rt-rail--arc .rt-rail-step {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    min-height: 0;
    padding: 0.7rem 0.75rem;
    transform: translateY(8px);
  }

  .rt-rail--arc .rt-rail-step strong {
    writing-mode: horizontal-tb;
    transform: none;
    font-size: 0.86rem;
  }

  .rt-rail--arc.is-drawn .rt-rail-step {
    transform: none;
  }
}

.rt-lifecycle .rt-rail {
  opacity: 1;
  transform: none;
}

.rt-rail-wires {
  display: none;
}

.rt-rail-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}

.rt-rail-step {
  display: grid;
  gap: 0.2rem;
  padding: 0.7rem 0.75rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(230, 122, 46, 0.18);
  background: rgba(255, 255, 255, 0.9);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.5s ease;
  transition-delay: calc(0.08s + var(--i, 0) * 0.045s);
}

.rt-rail.is-drawn .rt-rail-step,
.rt-lifecycle.is-drawn .rt-rail-step {
  opacity: 1;
  transform: none;
}

.rt-rail--arc.is-drawn .rt-rail-step {
  opacity: 1;
  transform: translate(-50%, -50%) rotate(var(--r, 0deg));
}

.rt-rail-num {
  color: #c45f1c;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.rt-rail-step strong {
  color: #1f140e;
  font-size: 0.88rem;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.rt-phase-grid {
  display: grid;
  gap: 0.85rem;
}

.rt-phase-card p,
.rt-outcome-card p {
  margin: 0;
  color: rgba(42, 28, 20, 0.76);
  font-size: 0.9rem;
  line-height: 1.45;
}

.rt-phase-card,
.rt-outcome-card {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.45s ease, transform 0.55s ease;
  transition-delay: calc(0.12s + var(--i, 0) * 0.05s);
}

.rt-lifecycle.is-drawn .rt-phase-card,
.rt-rail.is-drawn ~ .rt-phase-grid .rt-phase-card,
.rt-outcomes.is-drawn .rt-outcome-card {
  opacity: 1;
  transform: none;
}

.rt-phase-card.reveal.is-visible,
.rt-scope-card.reveal.is-visible,
.rt-outcome-card.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.rt-outcomes {
  display: grid;
  gap: 0.9rem;
  margin-bottom: 1.4rem;
}

.rt-outcome-ico {
  width: 2.4rem;
  height: 2.4rem;
  display: grid;
  place-items: center;
  margin-bottom: 0.55rem;
  border-radius: 0.7rem;
  border: 1px dashed rgba(230, 122, 46, 0.35);
  background: linear-gradient(160deg, #fff7f1, #ffe0c4);
  color: #e67a2e;
}

.rt-outcome-ico svg {
  width: 1.35rem;
  height: 1.35rem;
}

.rt-outcome-footer {
  margin-top: 1.15rem;
  text-align: center;
}

.rt-outcome-note {
  margin: 0 auto;
  max-width: 48rem;
  color: #c45c18;
  font-size: 0.86rem;
  font-weight: 600;
}

.rt-outcome-paths {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.1rem;
  justify-content: center;
  margin-top: 0.85rem;
}

.rt-outcome-paths span {
  color: rgba(42, 28, 20, 0.78);
  font-size: 0.84rem;
}

.rt-outcome-paths strong {
  color: #c45c18;
}

.rt-step-kicker {
  margin: 0 0 0.35rem;
  color: #c45f1c;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.rt-internal-path {
  margin-top: 2rem;
  padding: 1.1rem 1rem 1.2rem;
  border-radius: 1.1rem;
  border: 1px dashed rgba(230, 122, 46, 0.35);
  background: linear-gradient(160deg, #fffaf6, #ffe8d4);
  text-align: center;
}

.rt-path-line {
  list-style: none;
  margin: 0.85rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}

.rt-path-line li {
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(230, 122, 46, 0.28);
  background: rgba(255, 255, 255, 0.85);
  color: #1f140e;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.4s ease, transform 0.45s ease;
  transition-delay: calc(0.1s + var(--i, 0) * 0.06s);
}

.rt-path-line .rt-path-arrow {
  padding: 0;
  border: 0;
  background: transparent;
  color: #e67a2e;
  font-size: 1rem;
  font-weight: 700;
}

.rt-internal-path.is-drawn .rt-path-line li {
  opacity: 1;
  transform: none;
}

.rt-flow-wire {
  fill: none;
  stroke: #e67a2e;
  stroke-width: 1.7;
  stroke-dasharray: 3.5 5.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.rt-packet {
  opacity: 0;
}

.rt-scope-diagram.is-drawn .rt-packet,
.rt-rail.is-drawn .rt-packet,
.rt-lifecycle.is-drawn .rt-packet,
.rt-cycle.is-drawn .rt-packet {
  opacity: 1;
}

@media (min-width: 760px) {
  .rt-scope-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.15rem;
  }

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

  .rt-rail--arc .rt-rail-steps {
    display: block;
    grid-template-columns: none;
  }

  .rt-rail--arc .rt-rail-step {
    padding: 0.55rem 0.4rem;
  }

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

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

@media (min-width: 1024px) {
  .rt-rail-wires {
    display: block;
    width: 100%;
    height: 2rem;
    margin-bottom: 0.85rem;
  }

  .rt-arc-stage {
    width: 100%;
  }

  .rt-rail--arc .rt-rail-step {
    width: 7rem;
    min-height: 2.55rem;
    padding: 0.55rem 0.45rem;
  }

  .rt-rail--arc .rt-rail-step strong {
    font-size: 0.84rem;
  }

  .rt-lifecycle.is-drawn .rt-flow-wire,
  .rt-rail.is-drawn .rt-flow-wire,
  .rt-scope-diagram.is-drawn .rt-flow-wire {
    animation: cloud-arch-dash 1.8s linear infinite;
  }

  .rt-rail-steps {
    grid-template-columns: repeat(auto-fit, minmax(7.5rem, 1fr));
  }

  .rt-rail--arc .rt-rail-steps {
    grid-template-columns: none;
  }

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

@media (prefers-reduced-motion: reduce) {
  .rt-scope-diagram,
  .rt-lifecycle,
  .rt-rail,
  .rt-outcomes,
  .rt-internal-path,
  .rt-rail-step,
  .rt-phase-card,
  .rt-outcome-card,
  .rt-path-line li,
  .rt-flow-wire {
    transition: none !important;
    animation: none !important;
  }

  .rt-scope-diagram,
  .rt-lifecycle,
  .rt-rail,
  .rt-outcomes,
  .rt-internal-path,
  .rt-rail-step,
  .rt-phase-card,
  .rt-outcome-card,
  .rt-path-line li {
    opacity: 1;
    transform: none;
  }

  .rt-packet {
    opacity: 0 !important;
  }
}

/* Approach */
.approach {
  display: grid;
  gap: 2.5rem;
  align-items: center;
  padding: 4rem clamp(1.25rem, 4vw, 3.5rem) 5rem;
  margin: 0 clamp(1.25rem, 4vw, 3.5rem);
  background:
    linear-gradient(145deg, rgba(40, 22, 12, 0.96), #3a2418 55%, #5a3218);
  color: rgba(255, 247, 241, 0.9);
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.approach .eyebrow {
  color: #f0b27a;
}

.approach h2 {
  color: var(--white);
  max-width: 12ch;
}

.approach-copy p {
  max-width: 34rem;
}

.approach-points {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
  display: grid;
  gap: 1.15rem;
}

.approach-points li {
  padding-left: 1rem;
  border-left: 2px solid rgba(240, 178, 122, 0.55);
}

.approach-points strong {
  display: block;
  font-family: var(--font-display);
  color: var(--white);
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.approach-visual {
  position: relative;
  width: min(100%, 220px);
  height: 220px;
  margin: 0 auto;
  display: grid;
  place-items: center;
}

.pulse-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(240, 178, 122, 0.35);
  border-radius: 50%;
  animation: ring-out 3s ease-out infinite;
}

.pulse-ring::before,
.pulse-ring::after {
  content: "";
  position: absolute;
  inset: 18%;
  border: 1px solid rgba(240, 178, 122, 0.25);
  border-radius: 50%;
}

.pulse-ring::after {
  inset: 34%;
  animation: ring-out 3s ease-out 0.8s infinite;
}

.pulse-core {
  width: 28px;
  height: 28px;
  background: #f0b27a;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  animation: mark-pulse 2.4s var(--ease) infinite;
}

@keyframes ring-out {
  0% {
    transform: scale(0.85);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.15);
    opacity: 0;
  }
}

@media (min-width: 900px) {
  .approach {
    grid-template-columns: 0.7fr 1.3fr;
    padding: 4.5rem 4rem;
    gap: 3rem;
  }

  .approach-visual {
    width: 260px;
    height: 260px;
  }
}

/* Contact */
.contact {
  position: relative;
  padding: 5rem clamp(1.25rem, 4vw, 3.5rem) 4rem;
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.contact-atmosphere {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.contact-grid {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6' height='6' viewBox='0 0 6 6'%3E%3Crect x='0' y='0' width='2' height='2' fill='%23e67a2e' fill-opacity='0.72'/%3E%3C/svg%3E");
  background-size: 6px 6px;
  background-repeat: repeat;
  opacity: 1;
  mask-image:
    linear-gradient(
      180deg,
      transparent 0%,
      rgba(0, 0, 0, 0.35) 12%,
      #000 28%,
      #000 72%,
      rgba(0, 0, 0, 0.35) 88%,
      transparent 100%
    ),
    radial-gradient(
      ellipse 38% 42% at 50% 48%,
      transparent 0%,
      transparent 52%,
      #000 82%
    );
  -webkit-mask-image:
    linear-gradient(
      180deg,
      transparent 0%,
      rgba(0, 0, 0, 0.35) 12%,
      #000 28%,
      #000 72%,
      rgba(0, 0, 0, 0.35) 88%,
      transparent 100%
    ),
    radial-gradient(
      ellipse 38% 42% at 50% 48%,
      transparent 0%,
      transparent 52%,
      #000 82%
    );
  mask-composite: intersect;
  -webkit-mask-composite: source-in;
}

.contact-panel {
  position: relative;
  z-index: 1;
  max-width: 40rem;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.1rem 1rem;
  background: radial-gradient(
    ellipse 68% 62% at 50% 48%,
    rgba(255, 250, 246, 0.97) 0%,
    rgba(255, 250, 246, 0.9) 48%,
    rgba(255, 250, 246, 0) 78%
  );
}

.contact-panel .eyebrow,
.contact-panel h2 {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.contact-panel h2 {
  margin-bottom: 1.35rem;
}

.contact-panel > p {
  color: var(--muted);
  max-width: 32rem;
  margin: 0 auto;
}

.contact-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  margin-top: 2rem;
  gap: 0.65rem;
  padding: 1rem 1.6rem;
  font-size: 1.05rem;
  border-radius: 2.5rem;
}

.contact-cta svg {
  flex-shrink: 0;
}

.field-row {
  display: grid;
  gap: 1.1rem;
}

@media (min-width: 640px) {
  .field-row {
    grid-template-columns: 1fr 1fr;
  }
}

label {
  display: grid;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
}

input,
select,
textarea {
  font: inherit;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 0.8rem 0.9rem;
  width: 100%;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(230, 122, 46, 0.15);
}

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

.form-note {
  font-size: 0.95rem;
  color: var(--teal-deep);
  margin: 0;
}

/* Careers page */
.careers-hero,
.partners-hero,
.news-hero,
.contact-page-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  align-items: center;
  justify-items: start;
  padding: calc(var(--header-h) + 4rem) clamp(1.5rem, 5vw, 4.5rem) 4.5rem;
  padding-left: clamp(3rem, 12vw, 9rem);
  overflow: visible;
  text-align: left;
  background:
    linear-gradient(180deg, #fff8f2 0%, var(--paper) 55%, #fffaf6 100%);
}

.careers-hero-atmosphere,
.partners-hero-atmosphere,
.news-hero-atmosphere,
.contact-page-hero-atmosphere {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.careers-hero-wash,
.partners-hero-wash,
.news-hero-wash,
.contact-page-hero-wash {
  position: absolute;
  inset: 0;
  background: none;
}

.careers-hero-honey,
.partners-hero-honey,
.news-hero-honey,
.contact-page-hero-honey {
  position: absolute;
  top: -8%;
  right: -6%;
  bottom: -8%;
  width: min(74vw, 54rem);
  pointer-events: none;
  z-index: 0;
  opacity: 0.88;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='84' height='48' viewBox='0 0 84 48'%3E%3Cpath d='M21 0 L42 12 L42 36 L21 48 L0 36 L0 12 Z M63 0 L84 12 L84 36 L63 48 L42 36 L42 12 Z' fill='rgba(230,122,46,0.07)' stroke='%23e67a2e' stroke-opacity='0.4' stroke-width='1.25'/%3E%3C/svg%3E");
  background-size: 84px 48px;
  /* Even left fade along a vertical arc */
  mask-image:
    radial-gradient(
      ellipse 82% 125% at 88% 50%,
      #000 0%,
      #000 28%,
      rgba(0, 0, 0, 0.85) 38%,
      rgba(0, 0, 0, 0.55) 48%,
      rgba(0, 0, 0, 0.28) 58%,
      rgba(0, 0, 0, 0.1) 68%,
      transparent 78%
    ),
    linear-gradient(
      180deg,
      transparent 0%,
      rgba(0, 0, 0, 0.35) 14%,
      #000 30%,
      #000 70%,
      rgba(0, 0, 0, 0.35) 86%,
      transparent 100%
    );
  -webkit-mask-image:
    radial-gradient(
      ellipse 82% 125% at 88% 50%,
      #000 0%,
      #000 28%,
      rgba(0, 0, 0, 0.85) 38%,
      rgba(0, 0, 0, 0.55) 48%,
      rgba(0, 0, 0, 0.28) 58%,
      rgba(0, 0, 0, 0.1) 68%,
      transparent 78%
    ),
    linear-gradient(
      180deg,
      transparent 0%,
      rgba(0, 0, 0, 0.35) 14%,
      #000 30%,
      #000 70%,
      rgba(0, 0, 0, 0.35) 86%,
      transparent 100%
    );
  mask-composite: intersect;
  -webkit-mask-composite: source-in;
  animation: partners-honey-drift 32s linear infinite;
}

.careers-hero-honey::before,
.partners-hero-honey::before,
.news-hero-honey::before,
.contact-page-hero-honey::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 82% 125% at 88% 50%,
    rgba(230, 122, 46, 0.14) 0%,
    rgba(230, 122, 46, 0.08) 36%,
    rgba(230, 122, 46, 0.03) 54%,
    transparent 72%
  );
  pointer-events: none;
  mask-image: linear-gradient(
    180deg,
    transparent 0%,
    rgba(0, 0, 0, 0.4) 14%,
    #000 30%,
    #000 70%,
    rgba(0, 0, 0, 0.4) 86%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    180deg,
    transparent 0%,
    rgba(0, 0, 0, 0.4) 14%,
    #000 30%,
    #000 70%,
    rgba(0, 0, 0, 0.4) 86%,
    transparent 100%
  );
}

.careers-hero-honey::after,
.partners-hero-honey::after,
.news-hero-honey::after,
.contact-page-hero-honey::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='84' height='48' viewBox='0 0 84 48'%3E%3Cpath d='M21 0 L42 12 L42 36 L21 48 L0 36 L0 12 Z M63 0 L84 12 L84 36 L63 48 L42 36 L42 12 Z' fill='rgba(230,122,46,0.1)' stroke='%23c45c18' stroke-opacity='0.45' stroke-width='1.3'/%3E%3C/svg%3E");
  background-size: 84px 48px;
  opacity: 0.5;
  mask-image:
    radial-gradient(
      ellipse 82% 125% at 88% 50%,
      #000 0%,
      #000 26%,
      rgba(0, 0, 0, 0.7) 40%,
      rgba(0, 0, 0, 0.35) 52%,
      rgba(0, 0, 0, 0.12) 64%,
      transparent 76%
    ),
    linear-gradient(
      180deg,
      transparent 0%,
      rgba(0, 0, 0, 0.35) 14%,
      #000 30%,
      #000 70%,
      rgba(0, 0, 0, 0.35) 86%,
      transparent 100%
    );
  -webkit-mask-image:
    radial-gradient(
      ellipse 82% 125% at 88% 50%,
      #000 0%,
      #000 26%,
      rgba(0, 0, 0, 0.7) 40%,
      rgba(0, 0, 0, 0.35) 52%,
      rgba(0, 0, 0, 0.12) 64%,
      transparent 76%
    ),
    linear-gradient(
      180deg,
      transparent 0%,
      rgba(0, 0, 0, 0.35) 14%,
      #000 30%,
      #000 70%,
      rgba(0, 0, 0, 0.35) 86%,
      transparent 100%
    );
  mask-composite: intersect;
  -webkit-mask-composite: source-in;
}

@keyframes partners-honey-drift {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 0 -48px;
  }
}

@media (max-width: 720px) {
  .careers-hero-honey,
  .partners-hero-honey,
  .news-hero-honey,
  .contact-page-hero-honey {
    width: min(78vw, 22rem);
    opacity: 0.55;
  }
}

.careers-hero-orb,
.partners-hero-orb,
.news-hero-orb,
.careers-hero-orb-a,
.partners-hero-orb-a,
.news-hero-orb-a,
.careers-hero-orb-b,
.partners-hero-orb-b,
.news-hero-orb-b,
.careers-hero-orb-c,
.partners-hero-orb-c,
.news-hero-orb-c {
  display: none;
}

.careers-page,
.partners-page,
.news-page,
.contact-us-page,
.privacy-page {
  position: relative;
  background: linear-gradient(180deg, #fff8f2 0%, var(--paper) 40%, #fffaf6 100%);
}

.careers-page > *:not(.site-header):not(.mobile-nav):not(.noise):not(.skip-link),
.partners-page > *:not(.site-header):not(.mobile-nav):not(.noise):not(.skip-link),
.news-page > *:not(.site-header):not(.mobile-nav):not(.noise):not(.skip-link),
.contact-us-page > *:not(.site-header):not(.mobile-nav):not(.noise):not(.skip-link),
.privacy-page > *:not(.site-header):not(.mobile-nav):not(.noise):not(.skip-link) {
  position: relative;
  z-index: 1;
}

.careers-page .site-header,
.partners-page .site-header,
.news-page .site-header,
.contact-us-page .site-header,
.privacy-page .site-header {
  z-index: 40;
}

.careers-page .mobile-nav,
.partners-page .mobile-nav,
.news-page .mobile-nav,
.contact-us-page .mobile-nav,
.privacy-page .mobile-nav {
  z-index: 35;
}

.careers-hero-copy,
.partners-hero-copy,
.news-hero-copy,
.contact-page-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 40rem;
  padding-left: 0;
  display: grid;
  justify-items: start;
  gap: 0.35rem;
}

.careers-hero-copy .eyebrow,
.partners-hero-copy .eyebrow,
.news-hero-copy .eyebrow,
.contact-page-hero-copy .eyebrow {
  color: var(--teal-deep);
  margin: 0 0 0.4rem;
  letter-spacing: 0.12em;
  margin-left: 0.45em;
  padding-left: 0;
}

.news-hero-copy .eyebrow-dot {
  display: inline-block;
  width: 0.28em;
  height: 0.28em;
  margin: 0 0.55em;
  border-radius: 50%;
  background: currentColor;
  vertical-align: middle;
  transform: translateY(-0.08em);
}

.careers-hero-copy h1,
.partners-hero-copy h1,
.news-hero-copy h1,
.contact-page-hero-copy h1 {
  margin: 0 0 0.75rem;
  margin-left: 0;
  padding-left: 0;
  font-size: clamp(3.2rem, 10vw, 6.5rem);
  letter-spacing: -0.03em;
  max-width: none;
}

.contact-page-hero-copy h1 {
  font-size: clamp(2.6rem, 8vw, 4.75rem);
}

.contact-page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 0.85rem;
  margin-top: 0.35rem;
}

.careers-hero-lead,
.partners-hero-lead,
.news-hero-lead,
.contact-page-hero-lead {
  margin: 0 0 1.75rem;
  max-width: 34rem;
  color: rgba(42, 28, 20, 0.72);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  line-height: 1.65;
}

.privacy-page .contact-page-hero {
  min-height: 0;
  padding-top: calc(var(--header-h) + 3.25rem);
  padding-bottom: 2.35rem;
}

.privacy-page .contact-page-hero-copy h1 {
  font-size: clamp(2.4rem, 7.5vw, 4.35rem);
}

.privacy-page .contact-page-hero-lead {
  margin-bottom: 0;
  max-width: 38rem;
}

.privacy-doc {
  padding: 3.25rem clamp(1.5rem, 5vw, 4.5rem) 5rem;
  padding-left: clamp(3rem, 12vw, 9rem);
  padding-right: clamp(2rem, 7vw, 5.5rem);
  background: #ffffff;
}

.privacy-doc__inner {
  max-width: 46rem;
}

.privacy-doc h2 {
  margin: 2.35rem 0 0.7rem;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--ink);
}

.privacy-doc h2:first-child {
  margin-top: 0;
}

.privacy-doc h3 {
  margin: 1.15rem 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--ink);
}

.privacy-doc p,
.privacy-doc li {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.75;
}

.privacy-doc p + p,
.privacy-doc ul + p {
  margin-top: 0.85rem;
}

.privacy-doc ul {
  margin: 0.55rem 0 0;
  padding-left: 1.2rem;
}

.privacy-doc li + li {
  margin-top: 0.35rem;
}

.privacy-doc a {
  color: var(--teal-deep);
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.privacy-doc a:hover,
.privacy-doc a:focus-visible {
  color: var(--teal);
}

.privacy-doc__contact {
  margin-top: 0.35rem;
}

.privacy-doc__contact p {
  margin-top: 0.35rem;
}

.privacy-doc__updated {
  margin-top: 2.5rem !important;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 720px) {
  .privacy-doc {
    padding-left: 1.35rem;
    padding-right: 1.35rem;
  }
}

.careers-section-intro,
.partners-section-intro,
.news-section-intro,
.contact-section-intro {
  max-width: 40rem;
  margin: 0 0 2.75rem;
  text-align: left;
}

.careers-section-intro .eyebrow,
.partners-section-intro .eyebrow,
.news-section-intro .eyebrow,
.contact-section-intro .eyebrow {
  color: var(--teal-deep);
}

.careers-section-intro h2,
.partners-section-intro h2,
.news-section-intro h2,
.contact-section-intro h2 {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

.careers-section-intro p,
.partners-section-intro p,
.news-section-intro p,
.contact-section-intro p {
  margin: 0;
  color: rgba(42, 28, 20, 0.68);
  max-width: 36rem;
}

.careers-why {
  padding: 5.5rem clamp(1.5rem, 5vw, 4.5rem) 4rem;
  padding-left: clamp(3rem, 12vw, 9rem);
  background: #ffffff;
}

.careers-why .careers-section-intro {
  margin-bottom: 3.5rem;
}

.careers-why .careers-section-intro .eyebrow {
  margin-bottom: 1.75rem;
}

.careers-why .careers-section-intro h2 {
  margin-bottom: 1.75rem;
}

.careers-why .careers-section-intro p {
  margin: 0;
  line-height: 1.8;
}

.partners-why {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(3.5rem, 8vh, 5.5rem);
  padding: clamp(5rem, 12vh, 8rem) clamp(1.5rem, 5vw, 4.5rem);
  padding-left: clamp(3rem, 12vw, 9rem);
  background: #ffffff;
  box-sizing: border-box;
}

.partners-why .partners-section-intro {
  margin-bottom: 0;
}

.partners-why .partners-section-intro .eyebrow {
  margin-bottom: 1.75rem;
  margin-left: 0.45em;
}

.partners-why .partners-section-intro h2 {
  margin-bottom: 1.75rem;
}

.partners-why .partners-section-intro p {
  margin: 0;
  line-height: 1.8;
}

.careers-why-list,
.partners-why-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 68rem;
  display: grid;
  gap: 2.5rem 2rem;
}

.careers-why-list {
  gap: 3.25rem 2.5rem;
}

.partners-why-list {
  gap: clamp(4rem, 9vh, 5.5rem) 3.25rem;
}

@media (min-width: 800px) {
  .careers-why-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (min-width: 1100px) {
  .careers-why-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.careers-why-list h3,
.partners-why-list h3 {
  display: inline-block;
  margin: 0 0 1.15rem;
  padding: 0.7rem 1.2rem;
  max-width: 100%;
  font-size: clamp(1.1rem, 1.7vw, 1.3rem);
  line-height: 1.3;
  color: var(--ink);
  border-radius: 1.15rem;
  border: 1px solid rgba(230, 122, 46, 0.16);
  background:
    linear-gradient(
      165deg,
      rgba(255, 247, 241, 0.98) 0%,
      rgba(230, 122, 46, 0.12) 48%,
      rgba(255, 255, 255, 0.7) 100%
    );
  box-shadow:
    0 8px 22px rgba(28, 20, 16, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.careers-why-list p,
.partners-why-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.careers-why-list p {
  line-height: 1.8;
}

.partners-why-list p {
  line-height: 1.8;
}

.careers-roles {
  padding: 5rem clamp(1.5rem, 5vw, 4.5rem) 4.5rem;
  padding-left: clamp(3rem, 12vw, 9rem);
  background:
    linear-gradient(90deg, rgba(255, 236, 220, 0.45) 0%, transparent 40%),
    linear-gradient(180deg, #fffaf6 0%, #fff7f1 100%);
}

.careers-role-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 52rem;
  display: grid;
  gap: 0;
}

.careers-role {
  display: grid;
  gap: 1.25rem;
  align-items: center;
  padding: 1.75rem 0;
  border-top: 1px solid rgba(230, 122, 46, 0.18);
}

.careers-role:last-child {
  border-bottom: 1px solid rgba(230, 122, 46, 0.18);
}

@media (min-width: 720px) {
  .careers-role {
    grid-template-columns: 1fr auto;
    gap: 2rem;
  }
}

.careers-role-copy h3 {
  margin: 0 0 0.35rem;
  font-size: clamp(1.2rem, 2vw, 1.45rem);
}

.careers-role-meta {
  margin: 0 0 0.7rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--teal-deep);
}

.careers-role-copy > p:last-child {
  margin: 0;
  color: rgba(42, 28, 20, 0.7);
  line-height: 1.65;
}

.careers-apply,
.partners-apply {
  padding: 4.5rem clamp(1.5rem, 5vw, 4.5rem) 5rem;
  padding-left: clamp(3rem, 12vw, 9rem);
  display: flex;
  justify-content: flex-start;
  background:
    linear-gradient(90deg, rgba(255, 228, 205, 0.55) 0%, transparent 55%),
    linear-gradient(180deg, #fff7f1 0%, #ffefe4 100%);
}

.careers-apply-panel,
.partners-apply-panel {
  max-width: 38rem;
  width: 100%;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.partners-apply-panel {
  max-width: 44rem;
}

.careers-apply-panel .eyebrow,
.partners-apply-panel .eyebrow {
  color: var(--teal-deep);
}

.partners-apply-panel .eyebrow {
  margin-left: 0.45em;
  margin-bottom: 1.75rem;
}

.partners-apply-panel h2 {
  margin-bottom: 1.75rem;
}

.careers-apply-panel h2,
.partners-apply-panel h2 {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 1.1rem;
}

.partners-apply-panel h2 {
  margin-bottom: 1.75rem;
}

.careers-apply-panel > p,
.partners-apply-panel > p {
  margin: 0;
  color: var(--muted);
  max-width: 32rem;
}

.partners-apply-panel > p {
  margin-bottom: 2rem;
  max-width: 40rem;
}

.careers-apply-panel .contact-cta,
.partners-apply-panel .contact-cta {
  align-self: flex-start;
  margin-top: 1.75rem;
}

.partners-form {
  width: 100%;
  display: grid;
  gap: 1.35rem;
}

.partners-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem 1.25rem;
}

@media (min-width: 720px) {
  .partners-form-grid {
    grid-template-columns: 1fr 1fr;
  }

  .partners-field--full {
    grid-column: 1 / -1;
  }
}

.partners-field {
  display: grid;
  gap: 0.45rem;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
}

.partners-field span {
  text-transform: uppercase;
}

.partners-field .required {
  color: var(--brand);
  text-decoration: none;
  margin-left: 0.15em;
  font-weight: 700;
}

.partners-field input,
.partners-field select {
  width: 100%;
  margin: 0;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(230, 122, 46, 0.28);
  border-radius: 0.65rem;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  outline: none;
  transition:
    border-color 0.2s var(--ease),
    box-shadow 0.2s var(--ease);
}

.partners-field input::placeholder {
  color: rgba(122, 100, 88, 0.55);
}

.partners-field input:focus,
.partners-field select:focus {
  border-color: rgba(230, 122, 46, 0.7);
  box-shadow: 0 0 0 3px rgba(230, 122, 46, 0.14);
}

.partners-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4 6 L8 10 L12 6' stroke='%23c45c18' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.4rem;
}

.partners-form .btn {
  justify-self: start;
  margin-top: 0.35rem;
}

.form-captcha {
  margin-top: 0.35rem;
}

.form-captcha .h-captcha {
  display: inline-block;
}

.partners-form-note {
  margin: 0;
  min-height: 1.25rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: var(--teal-deep);
}


.partners-programs {
  padding: 1rem clamp(1.5rem, 5vw, 4.5rem) 5rem;
  padding-left: clamp(3rem, 12vw, 9rem);
  max-width: none;
  margin: 0;
}

.partners-program-list {
  list-style: none;
  margin: 2.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 860px) {
  .partners-program-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
  }
}

.partners-program {
  padding: 1.5rem 1.35rem 1.65rem;
  border-radius: 1.15rem;
  border: 1px solid rgba(42, 28, 20, 0.1);
  background:
    linear-gradient(
      165deg,
      rgba(255, 247, 241, 0.95) 0%,
      rgba(230, 122, 46, 0.1) 48%,
      rgba(255, 255, 255, 0.65) 100%
    );
  box-shadow:
    0 10px 28px rgba(28, 20, 16, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.partners-program h3 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.15rem, 1.8vw, 1.35rem);
  color: var(--ink);
}

.partners-program p {
  margin: 0;
  color: rgba(42, 28, 20, 0.68);
  line-height: 1.65;
}

/* About us page */
.about-page-hero {
  position: relative;
  min-height: min(100dvh, 58rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(2rem, 5vw, 3.5rem);
  padding: calc(var(--header-h) + 2.5rem) clamp(1rem, 3vw, 2.5rem) 3.25rem;
  overflow: hidden;
  text-align: center;
  color: rgba(255, 247, 241, 0.86);
  background:
    linear-gradient(
      180deg,
      rgba(230, 122, 46, 0.34) 0%,
      rgba(230, 122, 46, 0.22) 22%,
      rgba(230, 122, 46, 0.1) 40%,
      rgba(230, 122, 46, 0.03) 50%,
      transparent 58%
    ),
    linear-gradient(
      180deg,
      #0a0806 0%,
      #0c0a08 40%,
      #0d0d0f 50%,
      #4a382c 60%,
      #7a5c48 72%,
      #8a6a52 86%,
      #8a6a52 100%
    );
}

.about-page-hero-dots {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.about-page-hero-dots-grid {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3E%3Crect x='0' y='0' width='1.5' height='1.5' fill='%23ffffff' fill-opacity='0.28'/%3E%3C/svg%3E");
  background-size: 4px 4px;
  background-repeat: repeat;
  opacity: 1;
  mask-image: linear-gradient(
    180deg,
    #000 0%,
    #000 42%,
    rgba(0, 0, 0, 0.55) 58%,
    rgba(0, 0, 0, 0.18) 74%,
    transparent 92%
  );
  -webkit-mask-image: linear-gradient(
    180deg,
    #000 0%,
    #000 42%,
    rgba(0, 0, 0, 0.55) 58%,
    rgba(0, 0, 0, 0.18) 74%,
    transparent 92%
  );
}

.about-page-hero-dots-blur {
  position: absolute;
  inset: 52% 0 0;
  background:
    linear-gradient(
      180deg,
      rgba(138, 106, 82, 0) 0%,
      rgba(138, 106, 82, 0.12) 40%,
      rgba(138, 106, 82, 0.2) 100%
    ),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3E%3Crect x='0' y='0' width='1.5' height='1.5' fill='%23ffffff' fill-opacity='0.1'/%3E%3C/svg%3E");
  background-size: auto, 4px 4px;
  background-repeat: no-repeat, repeat;
  filter: blur(14px);
  opacity: 0.55;
  mask-image: linear-gradient(
    180deg,
    transparent 0%,
    rgba(0, 0, 0, 0.25) 20%,
    rgba(0, 0, 0, 0.5) 55%,
    rgba(0, 0, 0, 0.35) 100%
  );
  -webkit-mask-image: linear-gradient(
    180deg,
    transparent 0%,
    rgba(0, 0, 0, 0.25) 20%,
    rgba(0, 0, 0, 0.5) 55%,
    rgba(0, 0, 0, 0.35) 100%
  );
}

.about-page-hero-stage {
  position: relative;
  z-index: 1;
  width: min(100%, 72rem);
  height: min(58dvh, 30rem);
  display: grid;
  place-items: center;
  margin-top: 0.75rem;
  overflow: visible;
}

.about-page-rings {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(185%, 72rem);
  aspect-ratio: 1;
  transform: translate(-50%, -22%);
  pointer-events: none;
  z-index: 1;
  mask-image: linear-gradient(
    180deg,
    #000 0%,
    rgba(0, 0, 0, 0.9) 40%,
    rgba(0, 0, 0, 0.4) 68%,
    rgba(0, 0, 0, 0.1) 85%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    180deg,
    #000 0%,
    rgba(0, 0, 0, 0.9) 40%,
    rgba(0, 0, 0, 0.4) 68%,
    rgba(0, 0, 0, 0.1) 85%,
    transparent 100%
  );
}

.about-page-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: radial-gradient(
    circle at 50% 42%,
    rgba(230, 122, 46, 0.14) 0%,
    rgba(230, 122, 46, 0.06) 42%,
    rgba(255, 255, 255, 0.03) 68%,
    transparent 78%
  );
  box-shadow:
    0 0 0 1px rgba(230, 122, 46, 0.1),
    inset 0 0 48px rgba(230, 122, 46, 0.12),
    inset 0 0 90px rgba(255, 255, 255, 0.04);
}

.about-page-ring-1 {
  width: 100%;
  height: 100%;
  opacity: 0.95;
}

.about-page-ring-2 {
  width: 90%;
  height: 90%;
  opacity: 0.62;
  border-color: rgba(255, 255, 255, 0.22);
  background: radial-gradient(
    circle at 50% 42%,
    rgba(230, 122, 46, 0.1) 0%,
    rgba(230, 122, 46, 0.04) 45%,
    transparent 76%
  );
}

.about-page-ring-3 {
  width: 80%;
  height: 80%;
  opacity: 0.36;
  border-color: rgba(255, 255, 255, 0.16);
  background: radial-gradient(
    circle at 50% 42%,
    rgba(230, 122, 46, 0.08) 0%,
    rgba(255, 255, 255, 0.03) 50%,
    transparent 74%
  );
}

.about-page-frame {
  position: relative;
  z-index: 2;
  width: min(86%, 48rem);
  height: min(70%, 18rem);
  display: grid;
  place-items: center;
  border: none;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.about-page-frame-border {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  border: 1px dashed rgba(255, 255, 255, 0.78);
}

.about-page-frame::before,
.about-page-frame::after {
  content: none;
}

.about-page-ext {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  background: none;
  box-shadow: none;
}

.about-page-ext-v {
  width: 0;
  border-left: 1px dashed rgba(255, 255, 255, 0.78);
}

.about-page-ext-h {
  height: 0;
  width: 48vw;
  border-top: 1px dashed rgba(255, 255, 255, 0.78);
}

.about-page-ext-left-top {
  left: 0;
  bottom: 100%;
  height: 28vh;
}

.about-page-ext-left-bottom {
  left: 0;
  top: 100%;
  height: min(120vh, 70rem);
  z-index: 3;
  mask-image: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.7) 35%,
    rgba(0, 0, 0, 0.4) 65%,
    rgba(0, 0, 0, 0.18) 85%,
    rgba(0, 0, 0, 0.06) 100%
  );
  -webkit-mask-image: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.7) 35%,
    rgba(0, 0, 0, 0.4) 65%,
    rgba(0, 0, 0, 0.18) 85%,
    rgba(0, 0, 0, 0.06) 100%
  );
}

.about-page-ext-right-top {
  right: 0;
  bottom: 100%;
  height: 28vh;
}

.about-page-ext-right-bottom {
  right: 0;
  top: 100%;
  height: min(120vh, 70rem);
  z-index: 3;
  mask-image: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.7) 35%,
    rgba(0, 0, 0, 0.4) 65%,
    rgba(0, 0, 0, 0.18) 85%,
    rgba(0, 0, 0, 0.06) 100%
  );
  -webkit-mask-image: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.7) 35%,
    rgba(0, 0, 0, 0.4) 65%,
    rgba(0, 0, 0, 0.18) 85%,
    rgba(0, 0, 0, 0.06) 100%
  );
}

.about-page-ext-top-left {
  top: 0;
  right: 100%;
}

.about-page-ext-top-right {
  top: 0;
  left: 100%;
}

.about-page-ext-bottom-left {
  bottom: 0;
  right: 100%;
}

.about-page-ext-bottom-right {
  bottom: 0;
  left: 100%;
}

.about-page-node {
  position: absolute;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #ffffff, #ffe8d2 55%, #fff7f1);
  box-shadow:
    0 0 0 3px rgba(255, 255, 255, 0.22),
    0 0 14px rgba(255, 247, 241, 0.45);
}

.about-page-node-tl,
.about-page-node-tr,
.about-page-node-bl,
.about-page-node-br {
  opacity: 1;
  filter: none;
}

.about-page-node-tl { top: -0.35rem; left: -0.35rem; }
.about-page-node-tr { top: -0.35rem; right: -0.35rem; }
.about-page-node-bl { bottom: -0.35rem; left: -0.35rem; }
.about-page-node-br { bottom: -0.35rem; right: -0.35rem; }

.about-page-tag {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  padding: 0.28rem 0.7rem;
  border-radius: 0.35rem;
  background: #fffaf6;
  color: var(--teal-deep);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow:
    0 0 0 1.5px transparent,
    0 0 0 1.5px rgba(255, 255, 255, 0.85);
}

.about-page-brand {
  position: relative;
  z-index: 2;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(4.2rem, 12vw, 7.5rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  color: #fffaf6;
  line-height: 0.95;
}

.about-page-bot {
  position: absolute;
  z-index: 4;
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  filter: drop-shadow(0 8px 18px rgba(196, 92, 24, 0.22));
  will-change: transform;
}

.about-page-bot svg {
  width: 100%;
  height: 100%;
  display: block;
}

.about-page-bot-a {
  left: -1.35rem;
  top: 18%;
  animation: about-bot-float-y 5.8s ease-in-out infinite;
}

.about-page-bot-b {
  right: -1.35rem;
  top: 28%;
  width: 2.35rem;
  height: 2.35rem;
  animation: about-bot-float-y 6.6s ease-in-out infinite reverse;
  animation-delay: -1.4s;
}

.about-page-bot-c {
  left: 12%;
  top: auto;
  bottom: -1.35rem;
  width: 2.5rem;
  height: 2.5rem;
  animation: about-bot-float-x 7s ease-in-out infinite;
  animation-delay: -0.8s;
}

@keyframes about-bot-float-y {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4.5rem); }
}

@keyframes about-bot-float-x {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(14rem); }
}

@media (prefers-reduced-motion: reduce) {
  .about-page-bot-a,
  .about-page-bot-b,
  .about-page-bot-c {
    animation: none;
  }
}

.about-page-hero-copy {
  position: relative;
  z-index: 2;
  width: min(92%, 44rem);
  max-width: 44rem;
  margin: 1.75rem auto 0;
  display: grid;
  justify-items: stretch;
  gap: 1.15rem;
  padding: 0 0.5rem;
}

.about-page-headline {
  margin: 0 auto;
  max-width: 18ch;
  text-align: center;
  font-size: clamp(1.85rem, 4.8vw, 3.1rem);
  letter-spacing: -0.035em;
  line-height: 1.12;
  background: linear-gradient(180deg, #f6b57a 0%, #e67a2e 55%, #ffe8d2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.about-page-hero-lead {
  margin: 0;
  max-width: 44rem;
  color: rgba(255, 247, 241, 0.72);
  font-size: clamp(0.98rem, 1.4vw, 1.1rem);
  line-height: 1.7;
  text-align: justify;
  display: grid;
  gap: 1.1rem;
}

.about-page-hero-lead p {
  margin: 0;
}

@media (max-width: 640px) {
  .about-page-hero-stage {
    height: min(42dvh, 20rem);
  }

  .about-page-frame {
    width: min(92%, 22rem);
    height: min(62%, 12rem);
  }

  .about-page-bot-a {
    display: none;
  }

  .about-page-bot-c {
    left: 8%;
    bottom: -1.35rem;
    top: auto;
  }

  @keyframes about-bot-float-y {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(2.5rem); }
  }

  @keyframes about-bot-float-x {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(6rem); }
  }
}

.about-page-intro {
  max-width: 40rem;
  margin: 0 auto 2.75rem;
  text-align: center;
}

.about-page-intro .eyebrow {
  color: #f0954a;
}

.about-page-intro h2 {
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  color: #fffaf6;
}

.about-page-intro p {
  margin: 0 auto;
  color: rgba(255, 242, 230, 0.7);
  max-width: 38rem;
  line-height: 1.7;
}

.about-page-continue {
  position: relative;
  overflow: hidden;
  margin-top: -1px;
  background:
    linear-gradient(
      180deg,
      #8a6a52 0%,
      #826450 8%,
      #6a5240 18%,
      #4a3a30 30%,
      #3d2e26 42%,
      #1a1614 58%,
      #171310 80%,
      #161210 100%
    );
  color: rgba(255, 247, 241, 0.86);
}

.about-page-continue-dots {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3E%3Crect x='0' y='0' width='1.5' height='1.5' fill='%23ffffff' fill-opacity='0.16'/%3E%3C/svg%3E");
  background-size: 4px 4px;
  background-repeat: repeat;
  mask-image: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.28) 0%,
    rgba(0, 0, 0, 0.22) 14%,
    rgba(0, 0, 0, 0.28) 40%,
    rgba(0, 0, 0, 0.12) 72%,
    rgba(0, 0, 0, 0.04) 100%
  );
  -webkit-mask-image: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.28) 0%,
    rgba(0, 0, 0, 0.22) 14%,
    rgba(0, 0, 0, 0.28) 40%,
    rgba(0, 0, 0, 0.12) 72%,
    rgba(0, 0, 0, 0.04) 100%
  );
}

.about-page-story,
.about-page-principles,
.about-page-focus,
.about-page-pillars,
.about-page-leaders {
  position: relative;
  z-index: 1;
  padding: 4.5rem clamp(1.25rem, 4vw, 3.5rem);
  background: transparent;
}

.about-page-pillars {
  --pillar-line: rgba(255, 247, 241, 0.55);
  padding-top: 2.75rem;
  padding-bottom: 2.5rem;
  padding-left: clamp(1.25rem, 4vw, 3.5rem);
  padding-right: clamp(1.25rem, 4vw, 3.5rem);
  overflow: visible;
}

.about-page-pillars .about-page-intro {
  padding-inline: 0;
  margin-bottom: clamp(2.75rem, 5vw, 4rem);
}

.about-page-pillar-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 68rem;
  display: grid;
  gap: 2.5rem;
  overflow: visible;
}

@media (min-width: 860px) {
  .about-page-pillar-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
  }
}

.about-page-pillar {
  position: relative;
  padding: 0.5rem 0.75rem;
  border: 0;
  background: transparent;
  text-align: center;
  overflow: visible;
}

@media (min-width: 860px) {
  .about-page-pillar {
    padding: 0.85rem clamp(1.75rem, 3.2vw, 2.75rem) 1rem;
  }

  .about-page-pillar:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 0;
    border-right: 1px dotted var(--pillar-line);
    pointer-events: none;
    -webkit-mask-image: linear-gradient(
      180deg,
      transparent 0%,
      rgba(0, 0, 0, 0.35) 14%,
      #000 32%,
      #000 68%,
      rgba(0, 0, 0, 0.35) 86%,
      transparent 100%
    );
    mask-image: linear-gradient(
      180deg,
      transparent 0%,
      rgba(0, 0, 0, 0.35) 14%,
      #000 32%,
      #000 68%,
      rgba(0, 0, 0, 0.35) 86%,
      transparent 100%
    );
  }
}

@media (max-width: 859px) {
  .about-page-pillar:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -0.875rem;
    height: 0;
    border-bottom: 1px dotted var(--pillar-line);
    pointer-events: none;
    -webkit-mask-image: linear-gradient(
      90deg,
      transparent 0%,
      rgba(0, 0, 0, 0.35) 14%,
      #000 32%,
      #000 68%,
      rgba(0, 0, 0, 0.35) 86%,
      transparent 100%
    );
    mask-image: linear-gradient(
      90deg,
      transparent 0%,
      rgba(0, 0, 0, 0.35) 14%,
      #000 32%,
      #000 68%,
      rgba(0, 0, 0, 0.35) 86%,
      transparent 100%
    );
  }
}

.about-page-pillars .about-page-intro h2 {
  color: #fffaf6;
  text-shadow: 0 1px 12px rgba(28, 20, 16, 0.12);
}

.about-page-pillar h3 {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin: 0 0 1.15rem;
  padding: 0.65rem 1.25rem;
  max-width: 100%;
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
  color: #fffaf6;
  line-height: 1.3;
  border-radius: 1.15rem;
  border: 1px solid rgba(255, 247, 241, 0.14);
  background:
    linear-gradient(
      165deg,
      rgba(255, 247, 241, 0.14) 0%,
      rgba(230, 122, 46, 0.22) 48%,
      rgba(61, 46, 38, 0.35) 100%
    );
  box-shadow:
    0 10px 28px rgba(28, 20, 16, 0.22),
    inset 0 1px 0 rgba(255, 247, 241, 0.12);
}

.about-page-pillar p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(255, 247, 241, 0.78);
  line-height: 1.7;
  text-align: justify;
}

.about-page-story {
  padding-top: 3.5rem;
}

.about-page-focus {
  padding-bottom: 5.5rem;
}

.about-page-panel {
  position: relative;
  max-width: 68rem;
  margin: 0 auto;
  padding: clamp(1.75rem, 4vw, 3rem);
  border: 1px dashed rgba(255, 255, 255, 0.28);
  background-color: rgba(255, 255, 255, 0.02);
  background-image:
    radial-gradient(circle at center, #f6b57a 0 42%, #e67a2e 55%, transparent 60%),
    radial-gradient(circle at center, #f6b57a 0 42%, #e67a2e 55%, transparent 60%),
    radial-gradient(circle at center, #f6b57a 0 42%, #e67a2e 55%, transparent 60%),
    radial-gradient(circle at center, #f6b57a 0 42%, #e67a2e 55%, transparent 60%);
  background-size: 0.55rem 0.55rem;
  background-position:
    left top,
    right top,
    left bottom,
    right bottom;
  background-repeat: no-repeat;
  box-shadow:
    0 0 0 1px rgba(230, 122, 46, 0.05),
    inset 0 0 60px rgba(230, 122, 46, 0.04);
}

.about-page-panel::before,
.about-page-panel::after {
  content: none;
}

.about-page-story .about-page-intro {
  margin-bottom: 0;
}

.about-page-principle-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 52rem;
  display: grid;
  gap: 2.25rem;
}

.about-page-principle-list h3 {
  margin: 0 0 0.55rem;
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  color: #fffaf6;
}

.about-page-principle-list p {
  margin: 0;
  color: rgba(255, 242, 230, 0.68);
  line-height: 1.7;
}

.about-page-focus-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 68rem;
  display: grid;
  gap: 2.5rem 2rem;
}

@media (min-width: 800px) {
  .about-page-focus-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.about-page-focus-list h3 {
  margin: 0 0 0.55rem;
  font-size: clamp(1.15rem, 1.8vw, 1.35rem);
  color: #fffaf6;
}

.about-page-focus-list p {
  margin: 0;
  color: rgba(255, 242, 230, 0.65);
  line-height: 1.65;
}

.about-page-orange-band {
  position: relative;
  z-index: 1;
  isolation: isolate;
}

.about-page-orange-band-wash {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      #8a6a52 0%,
      rgba(138, 106, 82, 0.55) 6%,
      rgba(106, 82, 64, 0.45) 12%,
      #4a3a30 20%,
      #3d2e26 32%,
      #3d2e26 100%
    );
}

.about-page-orange-band > .about-page-pillars,
.about-page-orange-band > .about-page-milestones,
.about-page-orange-band > .about-page-leaders,
.about-page-orange-band > .about-page-awards,
.about-page-orange-band > .about-page-industries,
.about-page-orange-band > .about-page-trusted {
  position: relative;
  z-index: 1;
  background: transparent;
}

.about-page-leaders {
  position: relative;
  padding-top: 3.5rem;
  padding-bottom: 4.5rem;
  background: transparent;
  overflow: visible;
}

.about-page-section-dots {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3E%3Crect x='0' y='0' width='1.5' height='1.5' fill='%23ffffff' fill-opacity='0.28'/%3E%3C/svg%3E");
  background-size: 4px 4px;
  background-repeat: repeat;
  opacity: 1;
}

.about-page-awards .about-page-section-dots {
  top: -4.5rem;
  mask-image: linear-gradient(
    180deg,
    transparent 0%,
    rgba(0, 0, 0, 0.08) 22%,
    rgba(0, 0, 0, 0.35) 40%,
    rgba(0, 0, 0, 0.7) 62%,
    #000 100%
  );
  -webkit-mask-image: linear-gradient(
    180deg,
    transparent 0%,
    rgba(0, 0, 0, 0.08) 22%,
    rgba(0, 0, 0, 0.35) 40%,
    rgba(0, 0, 0, 0.7) 62%,
    #000 100%
  );
}

.about-page-trusted .about-page-section-dots {
  mask-image: linear-gradient(
    180deg,
    transparent 0%,
    rgba(0, 0, 0, 0.25) 14%,
    rgba(0, 0, 0, 0.75) 32%,
    #000 48%,
    #000 58%,
    rgba(0, 0, 0, 0.75) 72%,
    rgba(0, 0, 0, 0.25) 88%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    180deg,
    transparent 0%,
    rgba(0, 0, 0, 0.25) 14%,
    rgba(0, 0, 0, 0.75) 32%,
    #000 48%,
    #000 58%,
    rgba(0, 0, 0, 0.75) 72%,
    rgba(0, 0, 0, 0.25) 88%,
    transparent 100%
  );
}

.about-page-leaders-layout {
  position: relative;
  z-index: 1;
  max-width: 72rem;
  margin: 0 auto;
  display: grid;
  gap: 2.25rem;
  align-items: center;
}

@media (min-width: 900px) {
  .about-page-leaders-layout {
    grid-template-columns: minmax(14rem, 0.9fr) minmax(0, 1.55fr);
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: center;
  }
}

.about-page-leaders-intro {
  position: relative;
  max-width: 22rem;
  margin: 0;
  padding: 0.25rem 0;
  text-align: left;
}

@media (min-width: 900px) {
  .about-page-leaders-intro {
    max-width: none;
    padding: 0;
    align-self: center;
  }
}

.about-page-leaders-kicker {
  margin: 0 0 0.85rem;
  color: #f0954a;
  font-family: var(--font-display);
  font-size: clamp(0.85rem, 1.4vw, 1.05rem);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.about-page-leaders-intro h2 {
  margin: 0;
  color: #fffaf6;
  max-width: 9ch;
  line-height: 1.05;
  font-size: clamp(2.4rem, 5.2vw, 4.25rem);
  letter-spacing: -0.035em;
  font-weight: 700;
}

.about-page-leaders-photos {
  display: grid;
  gap: 1.75rem;
  align-items: start;
  justify-items: center;
}

@media (min-width: 700px) {
  .about-page-leaders-photos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(1.25rem, 2.5vw, 2rem);
  }
}

.about-page-leader {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 0.85rem;
  align-content: start;
  width: 100%;
  max-width: 25rem;
  margin-inline: auto;
  padding: 0.35rem 0.25rem 0.5rem;
  border: 0;
  text-align: center;
  overflow: visible;
  background: transparent;
  box-shadow: none;
}

.about-page-leader-avatar {
  width: clamp(10.5rem, 26vw, 13.5rem);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1.5px solid rgba(230, 122, 46, 0.42);
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 247, 241, 0.1) 0%, transparent 55%),
    linear-gradient(165deg, rgba(92, 70, 56, 0.55) 0%, rgba(61, 46, 38, 0.85) 100%);
  box-shadow:
    0 0 0 6px rgba(230, 122, 46, 0.06),
    inset 0 0 28px rgba(28, 20, 16, 0.28);
  overflow: hidden;
}

.about-page-leader-avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.about-page-leader-linkedin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 50%;
  color: #f6b57a;
  background: rgba(230, 122, 46, 0.12);
  border: 1px solid rgba(230, 122, 46, 0.35);
  transition:
    color 0.25s var(--ease),
    background 0.25s var(--ease),
    border-color 0.25s var(--ease),
    transform 0.25s var(--ease);
}

.about-page-leader-linkedin:hover,
.about-page-leader-linkedin:focus-visible {
  color: #fff7f1;
  background: rgba(230, 122, 46, 0.42);
  border-color: rgba(246, 181, 122, 0.7);
  transform: translateY(-2px);
  outline: none;
}

.about-page-leader-linkedin svg {
  display: block;
}

.about-page-leader-copy {
  min-width: 0;
  padding: 0 0.35rem;
  display: grid;
  gap: 0.3rem;
  justify-items: center;
}

.about-page-leader-copy h3 {
  margin: 0;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: #fffaf6;
  line-height: 1.2;
}

.about-page-leader-role {
  margin: 0;
  color: #f0954a;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.4;
}

.about-page-leader-bio {
  position: relative;
  width: 100%;
  min-height: 10rem;
  margin-top: 0.55rem;
  padding: 1.85rem 1.7rem;
  text-align: left;
  border-radius: 1.15rem;
  border: 1px solid rgba(255, 247, 241, 0.14);
  background:
    linear-gradient(
      165deg,
      rgba(255, 247, 241, 0.14) 0%,
      rgba(230, 122, 46, 0.22) 48%,
      rgba(61, 46, 38, 0.35) 100%
    );
  box-shadow:
    0 10px 28px rgba(28, 20, 16, 0.22),
    inset 0 1px 0 rgba(255, 247, 241, 0.12);
}

.about-page-leader-bio p {
  margin: 0;
  color: rgba(255, 242, 230, 0.78);
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  line-height: 1.7;
}

.about-page-awards {
  position: relative;
  z-index: 1;
  padding: clamp(3rem, 6vw, 4.75rem) 0 clamp(3.5rem, 7vw, 5.5rem);
  overflow: visible;
  background: transparent;
}

/* ——— Industries We Serve (Allied Boston–style oval track) ——— */
.about-page-industries {
  position: relative;
  z-index: 1;
  padding: clamp(3.25rem, 6vw, 4.75rem) clamp(1.25rem, 4vw, 3.5rem)
    clamp(5rem, 8vw, 6.5rem);
  overflow: visible;
  background: transparent;
}

.about-page-industries .about-page-section-dots {
  mask-image: linear-gradient(
    180deg,
    transparent 0%,
    rgba(0, 0, 0, 0.35) 18%,
    #000 40%,
    #000 70%,
    rgba(0, 0, 0, 0.35) 88%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    180deg,
    transparent 0%,
    rgba(0, 0, 0, 0.35) 18%,
    #000 40%,
    #000 70%,
    rgba(0, 0, 0, 0.35) 88%,
    transparent 100%
  );
}

.about-page-industries-inner {
  position: relative;
  z-index: 1;
  max-width: 88rem;
  margin: 0 auto;
}

.about-page-industries-intro {
  text-align: center;
  margin: 0 auto 2.35rem;
  max-width: 36rem;
}

.about-page-industries-intro h2 {
  margin: 0 auto 0.75rem;
  max-width: none;
  width: 100%;
  color: #fffaf6;
  font-size: clamp(1.85rem, 3.6vw, 2.65rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  text-align: center;
  text-transform: capitalize;
}

.about-page-industries-intro h2 span {
  color: #f0954a;
}

.about-page-industries-intro p {
  margin: 0;
  color: rgba(255, 242, 230, 0.72);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  line-height: 1.5;
}

.about-page-industries-orbit {
  --industries-ring-gap: clamp(3.75rem, 5.5vw, 4.75rem);
  --industries-icon-size: clamp(2.65rem, 3.9vw, 3.25rem);
  position: relative;
  z-index: 1;
  max-width: 81rem;
  width: 100%;
  margin: 0 auto;
  padding: clamp(3.75rem, 5.5vw, 5rem) 0;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent;
}

/* Outer stadium — equal padding so top/left/right/bottom ring gaps match */
.about-page-industries-ring {
  border: 1.5px dashed rgba(255, 247, 241, 0.42);
  border-radius: 999px;
  padding: var(--industries-ring-gap);
  box-sizing: border-box;
}

/* Inner stadium — taller oval; icons stay pinned to top/bottom edges */
.about-page-industries-track {
  position: relative;
  border: 1.5px dashed rgba(255, 247, 241, 0.42);
  border-radius: 999px;
  min-height: clamp(11.5rem, 18vw, 15.5rem);
  display: grid;
  place-items: center;
  box-sizing: border-box;
}

.about-page-industries-row {
  --industries-icon-gap: clamp(2.15rem, 5vw, 4.25rem);
  list-style: none;
  margin: 0;
  padding: 0 clamp(1.25rem, 3.5vw, 2.75rem);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: var(--industries-icon-gap);
  position: absolute;
  left: 0;
  z-index: 2;
  box-sizing: border-box;
  height: 0;
  overflow: visible;
}

/* Anchor to dashed track lines; icons are centered on the line */
.about-page-industries-row--top {
  top: 0;
  transform: none;
}

.about-page-industries-row--bottom {
  bottom: 0;
  top: auto;
  transform: none;
}

.about-page-industry {
  position: relative;
  display: block;
  flex: 0 0 auto;
  width: clamp(6.5rem, 9vw, 8rem);
  height: 0;
  min-width: 0;
  text-align: center;
}

.about-page-industry > span:not(.about-page-industry-icon) {
  position: absolute;
  left: 50%;
  z-index: 2;
  font-family: var(--font-display);
  font-size: clamp(0.78rem, 1.15vw, 1.05rem);
  font-weight: 700;
  line-height: 1.2;
  color: #fffaf6;
  padding: 0.15rem 0.2rem;
  background: #3d2e26;
  white-space: nowrap;
  pointer-events: none;
}

/* Top labels sit above the icon / line */
.about-page-industries-row--top .about-page-industry > span:not(.about-page-industry-icon) {
  top: 0;
  transform: translate(
    -50%,
    calc(-0.5 * var(--industries-icon-size) - 100% - 0.55rem)
  );
}

/* Bottom labels sit below the icon / line */
.about-page-industries-row--bottom .about-page-industry > span:not(.about-page-industry-icon) {
  top: 0;
  transform: translate(
    -50%,
    calc(0.5 * var(--industries-icon-size) + 0.55rem)
  );
}

.about-page-industry-icon {
  position: absolute;
  left: 50%;
  top: 0;
  display: grid;
  place-items: center;
  width: var(--industries-icon-size);
  height: var(--industries-icon-size);
  border-radius: 0.7rem;
  color: #ef863b;
  background: rgba(61, 46, 38, 0.92);
  box-shadow:
    0 0 0 1px rgba(239, 134, 59, 0.28),
    0 6px 14px rgba(0, 0, 0, 0.22);
  transform: translate(-50%, -50%);
  transition:
    background 0.25s var(--ease),
    box-shadow 0.25s var(--ease),
    transform 0.25s var(--ease);
}

.about-page-industry:hover .about-page-industry-icon {
  background: rgba(239, 134, 59, 0.18);
  color: #f2a05a;
  box-shadow:
    0 0 0 1px rgba(239, 134, 59, 0.55),
    0 8px 16px rgba(239, 134, 59, 0.22);
  transform: translate(-50%, calc(-50% - 3px));
  filter: none;
}

.about-page-industry-icon img,
.about-page-industry-icon svg {
  width: 62%;
  height: 62%;
  display: block;
  object-fit: contain;
}

.about-page-industries-hub {
  position: relative;
  z-index: 3;
  display: grid;
  place-items: center;
  margin: clamp(2.5rem, 5vw, 4.5rem) 0;
}

.about-page-industries-hub-mark {
  display: block;
  width: clamp(4.25rem, 6.5vw, 5.75rem);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 22px rgba(239, 134, 59, 0.35));
}

@media (max-width: 900px) {
  .about-page-industries {
    padding-bottom: clamp(3.5rem, 7vw, 5rem);
  }

  .about-page-industries-orbit {
    padding: 0;
  }

  .about-page-industries-ring {
    border: 0;
    border-radius: 0;
    padding: 0;
  }

  .about-page-industries-track {
    border: 0;
    border-radius: 0;
    min-height: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: stretch;
  }

  .about-page-industries-row {
    position: relative;
    left: auto;
    top: auto;
    bottom: auto;
    transform: none;
    height: auto;
    overflow: visible;
    padding: 1.1rem 1rem;
    border-radius: 1.5rem;
    border: 1.5px dashed rgba(255, 247, 241, 0.55);
    background: rgba(61, 46, 38, 0.28);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem 0.65rem;
  }

  .about-page-industry {
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.55rem;
  }

  .about-page-industry-icon {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
  }

  .about-page-industry:hover .about-page-industry-icon {
    transform: translateY(-3px);
  }

  .about-page-industry > span:not(.about-page-industry-icon),
  .about-page-industries-row--top .about-page-industry > span:not(.about-page-industry-icon),
  .about-page-industries-row--bottom .about-page-industry > span:not(.about-page-industry-icon) {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
  }

  .about-page-industries-row--top .about-page-industry > span:not(.about-page-industry-icon) {
    order: -1;
  }

  .about-page-industries-hub {
    margin: 0 auto;
  }

  /* The stadium needs the full desktop width to hold its shape, so below the
     breakpoint the inline SVG twin of it stands in for the live markup. The
     rules above still apply to the fallback, which is what prints and what
     shows if the twin ever goes missing. See .svc-still. */
  .about-page-industries-orbit > *:not(.svc-still) {
    display: none;
  }

  .about-page-industries-orbit > .svc-still {
    display: block;
    width: 100%;
    height: auto;
  }
}

@media (max-width: 560px) {
  .about-page-industries-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}


.about-page-awards-grid {
  --awards-line: rgba(255, 247, 241, 0.48);
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
  margin: 0;
  display: grid;
  grid-template-columns: minmax(2.75rem, 1fr) minmax(0, 68rem) minmax(2.75rem, 1fr);
}

.about-page-awards-cell {
  position: relative;
  min-width: 0;
}

.about-page-awards-cell--side {
  border-bottom: 0;
}

.about-page-awards-cell--title {
  display: grid;
  place-items: center;
  padding: 0 clamp(1.25rem, 4vw, 3.5rem) clamp(1.75rem, 3.5vw, 2.5rem);
  border: 0;
  text-align: center;
}

.about-page-awards-cell--title h2 {
  margin: 0;
  color: #fffaf6;
  font-size: clamp(1.65rem, 3.5vw, 2.45rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.about-page-awards-cell--rail {
  border-top: 1px dashed var(--awards-line);
  border-bottom: 1px dashed var(--awards-line);
  min-height: 10.5rem;
}

.about-page-awards-cell--rail-right {
  border-right: 0;
}

.about-page-awards-cell--marquee {
  position: relative;
  display: flex;
  align-items: center;
  padding: clamp(1.75rem, 3.5vw, 2.65rem) 0;
  border-top: 1px dashed var(--awards-line);
  border-bottom: 1px dashed var(--awards-line);
  border-left: 1px dashed var(--awards-line);
  border-right: 1px dashed var(--awards-line);
  overflow: visible;
  min-height: 10.5rem;
}

.about-page-awards-cell--marquee::before,
.about-page-awards-cell--marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(2.75rem, 9vw, 6rem);
  z-index: 2;
  pointer-events: none;
}

.about-page-awards-cell--marquee::before {
  left: 0;
  background: linear-gradient(
    90deg,
    rgba(61, 46, 38, 0.88) 0%,
    rgba(61, 46, 38, 0.55) 40%,
    rgba(61, 46, 38, 0.18) 72%,
    rgba(61, 46, 38, 0) 100%
  );
}

.about-page-awards-cell--marquee::after {
  right: 0;
  background: linear-gradient(
    270deg,
    rgba(61, 46, 38, 0.88) 0%,
    rgba(61, 46, 38, 0.55) 40%,
    rgba(61, 46, 38, 0.18) 72%,
    rgba(61, 46, 38, 0) 100%
  );
}

.about-page-awards-marquee-clip {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 0, 0, 0.35) 6%,
    #000 16%,
    #000 84%,
    rgba(0, 0, 0, 0.35) 94%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 0, 0, 0.35) 6%,
    #000 16%,
    #000 84%,
    rgba(0, 0, 0, 0.35) 94%,
    transparent 100%
  );
}

.about-page-awards-node {
  position: absolute;
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 247, 241, 0.55);
  background:
    radial-gradient(circle at 40% 35%, #ffe0c2 0%, #f6b57a 35%, #e67a2e 72%, #9a4a16 100%);
  box-shadow: 0 0 10px rgba(230, 122, 46, 0.5);
  z-index: 3;
  pointer-events: none;
}

.about-page-awards-node--tl {
  top: -0.36rem;
  left: -0.36rem;
}

.about-page-awards-node--tr {
  top: -0.36rem;
  right: -0.36rem;
}

.about-page-awards-node--bl {
  bottom: -0.36rem;
  left: -0.36rem;
}

.about-page-awards-node--br {
  bottom: -0.36rem;
  right: -0.36rem;
}

.about-page-awards-marquee {
  display: flex;
  width: max-content;
  animation: about-awards-scroll 36s linear infinite;
}

.about-page-awards-track {
  display: flex;
  align-items: center;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  padding-inline: clamp(1.25rem, 2.5vw, 2.25rem);
  flex-shrink: 0;
}

.about-page-awards-logo {
  margin: 0;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  height: 6.75rem;
}

.about-page-awards-logo img {
  display: block;
  width: auto;
  height: clamp(4.25rem, 9.5vw, 6.25rem);
  max-width: 9rem;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.28));
}

.about-page-awards-logo--wide {
  padding: 0.45rem 0.65rem;
  background: #ffffff;
  border-radius: 0.35rem;
}

.about-page-awards-logo--wide img {
  max-width: clamp(10rem, 22vw, 14.5rem);
  height: clamp(3.25rem, 7vw, 4.75rem);
  filter: none;
}

.about-page-awards-logo--seal {
  height: auto;
  min-height: 7rem;
  overflow: visible;
}

.about-page-awards-logo--seal img {
  max-width: clamp(8.5rem, 18vw, 11.5rem);
  height: clamp(5.75rem, 11vw, 7.5rem);
  filter: none;
}

.about-page-awards-logo--lg {
  height: auto;
  min-height: 9rem;
  overflow: visible;
}

.about-page-awards-logo--lg img {
  height: clamp(7rem, 14vw, 9.5rem);
  max-width: 12rem;
  width: auto;
  object-fit: contain;
  object-position: center;
}

.about-page-awards-logo--md {
  height: auto;
  min-height: 6rem;
  overflow: visible;
}

.about-page-awards-logo--md img {
  height: clamp(4.25rem, 9vw, 5.5rem);
  max-width: 7rem;
  width: auto;
  object-fit: contain;
}

.about-page-awards-logo--trophy {
  padding: 0.3rem;
  background: #ffffff;
  border-radius: 0.35rem;
}

.about-page-awards-logo--trophy img {
  max-width: clamp(4.5rem, 10vw, 6rem);
  height: clamp(5.5rem, 12vw, 7.5rem);
  object-fit: contain;
  filter: none;
}

@keyframes about-awards-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-page-awards-marquee {
    animation: none;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .about-page-awards-track[aria-hidden="true"] {
    display: none;
  }

  .about-page-awards-track {
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 1.5rem;
  }
}

@media (max-width: 700px) {
  .about-page-awards-grid {
    grid-template-columns: minmax(1.5rem, 1fr) minmax(0, 68rem) minmax(1.5rem, 1fr);
  }

  .about-page-awards-cell--rail,
  .about-page-awards-cell--marquee {
    min-height: 9rem;
  }

  .about-page-awards-logo {
    height: 5.5rem;
  }
}

.about-page-trusted {
  position: relative;
  z-index: 1;
  padding: clamp(3.25rem, 6.5vw, 5rem) 0 clamp(3.75rem, 7.5vw, 5.5rem);
  overflow: hidden;
  text-align: center;
  background: transparent;
}

.about-page-trusted-heading {
  position: relative;
  z-index: 1;
  margin: 0 auto 2.35rem;
  max-width: 44rem;
  padding-inline: 1.25rem;
  color: rgba(255, 247, 241, 0.78);
  font-family: var(--font-display);
  font-size: clamp(0.88rem, 1.5vw, 1.05rem);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.about-page-trusted-marquee-wrap {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.about-page-trusted-marquee-wrap::before,
.about-page-trusted-marquee-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(2.75rem, 9vw, 6.5rem);
  z-index: 2;
  pointer-events: none;
}

.about-page-trusted-marquee-wrap::before {
  left: 0;
  background: linear-gradient(
    90deg,
    rgba(61, 46, 38, 0.92) 0%,
    rgba(61, 46, 38, 0.55) 42%,
    rgba(61, 46, 38, 0) 100%
  );
}

.about-page-trusted-marquee-wrap::after {
  right: 0;
  background: linear-gradient(
    270deg,
    rgba(61, 46, 38, 0.92) 0%,
    rgba(61, 46, 38, 0.55) 42%,
    rgba(61, 46, 38, 0) 100%
  );
}

.about-page-trusted-marquee {
  display: flex;
  width: max-content;
  animation: about-trusted-scroll 42s linear infinite;
}

.about-page-trusted-track {
  display: flex;
  align-items: center;
  gap: clamp(3.25rem, 6vw, 5.5rem);
  padding-inline: clamp(1.5rem, 3vw, 2.75rem);
  flex-shrink: 0;
}

.about-page-trusted-logo {
  margin: 0;
  flex: 0 0 auto;
  box-sizing: border-box;
  display: grid;
  place-items: center;
  width: 10.5rem;
  height: 5.25rem;
  padding: 0.85rem 1rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.14);
  opacity: 1;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.about-page-trusted-logo:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}

.about-page-trusted-logo img {
  display: block;
  width: auto;
  height: auto;
  max-width: 7.75rem;
  max-height: 3.15rem;
  object-fit: contain;
  object-position: center;
  filter: none;
}

@keyframes about-trusted-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-page-trusted-marquee {
    animation: none;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .about-page-trusted-track[aria-hidden="true"] {
    display: none;
  }

  .about-page-trusted-track {
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 1.25rem;
  }
}

.about-page-milestones {
  position: relative;
  z-index: 2;
  margin: 0;
  padding: clamp(3.5rem, 7vw, 5.5rem) clamp(1.25rem, 4vw, 3.5rem) clamp(4.5rem, 8vw, 6.5rem);
  overflow: hidden;
  color: rgba(255, 247, 241, 0.86);
  background: transparent;
}

.about-page-milestones-glow {
  display: none;
}

.about-page-milestones-inner {
  position: relative;
  z-index: 1;
  max-width: 72rem;
  margin: 0 auto;
}

.about-page-milestones-intro {
  max-width: 36rem;
  margin: 0 auto clamp(2.75rem, 5vw, 3.75rem);
  text-align: center;
}

.about-page-milestones-kicker {
  margin: 0 0 0.7rem;
  color: #f0954a;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.about-page-milestones-intro h2 {
  margin: 0;
  color: #fffaf6;
  max-width: none;
  font-size: clamp(2rem, 4.2vw, 3rem);
  letter-spacing: -0.03em;
}

.about-page-milestones-intro p {
  margin: 0;
  color: rgba(255, 242, 230, 0.68);
  line-height: 1.7;
}

.about-page-milestones-stage {
  position: relative;
  width: 100%;
  min-height: 44rem;
  height: clamp(44rem, 120vw, 52rem);
  margin: 0 auto;
  overflow: visible;
}

@media (min-width: 900px) {
  .about-page-milestones-stage {
    min-height: 48rem;
    height: clamp(48rem, 58vw, 56rem);
    margin-bottom: 0;
  }
}

.about-page-milestones-line {
  position: absolute;
  top: 2%;
  bottom: 2%;
  left: 50%;
  width: 2px;
  translate: -50% 0;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      transparent 0%,
      rgba(255, 255, 255, 0.14) 8%,
      rgba(255, 255, 255, 0.14) 92%,
      transparent 100%
    );
}

.about-page-milestones-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      transparent 0%,
      rgba(230, 122, 46, 0.35) 10%,
      #e67a2e 28%,
      #f0954a 72%,
      rgba(230, 122, 46, 0.2) 90%,
      transparent 100%
    );
}

.about-page-milestone-rail {
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  inset: 0;
}

.about-page-milestone {
  position: absolute;
  left: var(--x, 50%);
  top: var(--y);
  width: 0;
  height: 0;
  margin: 0;
  padding: 0;
  pointer-events: none;
}

.about-page-milestone-anchor {
  position: relative;
  width: 0;
  height: 0;
  pointer-events: auto;
}

.about-page-milestone-marker {
  position: absolute;
  left: 0;
  top: 0;
  width: 0.95rem;
  height: 0.95rem;
  border-radius: 50%;
  translate: -50% -50%;
  background: #e67a2e;
  box-shadow:
    0 0 0 4px rgba(26, 22, 20, 0.92),
    0 0 18px rgba(230, 122, 46, 0.4);
  z-index: 2;
}

.about-page-milestone-ping {
  position: absolute;
  left: 0;
  top: 0;
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 50%;
  translate: -50% -50%;
  background: rgba(230, 122, 46, 0.35);
  animation: about-milestone-ping 2.4s cubic-bezier(0, 0, 0.2, 1) infinite;
  z-index: 1;
}

@keyframes about-milestone-ping {
  0% {
    transform: scale(0.7);
    opacity: 0.7;
  }
  75%,
  100% {
    transform: scale(1.55);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-page-milestone-ping {
    animation: none;
    opacity: 0;
  }
}

.about-page-milestone-year {
  display: block;
  margin: 0 0 0.4rem;
  color: #fffaf6;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1;
}

.about-page-milestone-card {
  position: absolute;
  top: 0;
  width: min(15rem, 42vw);
  translate: 0 -50%;
  padding: 0.9rem 1.05rem;
  border-radius: 1.15rem;
  border: 1px solid rgba(255, 247, 241, 0.14);
  background:
    linear-gradient(
      165deg,
      rgba(255, 247, 241, 0.14) 0%,
      rgba(230, 122, 46, 0.22) 48%,
      rgba(61, 46, 38, 0.35) 100%
    );
  box-shadow:
    0 10px 28px rgba(28, 20, 16, 0.22),
    inset 0 1px 0 rgba(255, 247, 241, 0.12);
  pointer-events: none;
  z-index: 3;
}

.about-page-milestone.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.65s var(--ease),
    transform 0.65s var(--ease);
}

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

.about-page-milestone--right .about-page-milestone-card {
  left: 2.75rem;
  right: auto;
  text-align: left;
}

.about-page-milestone--left .about-page-milestone-card {
  right: 2.75rem;
  left: auto;
  text-align: right;
}

@media (min-width: 900px) {
  .about-page-milestone-card {
    width: min(17rem, 28vw);
    padding: 1rem 1.15rem;
  }

  .about-page-milestone--right .about-page-milestone-card {
    left: 3.25rem;
  }

  .about-page-milestone--left .about-page-milestone-card {
    right: 3.25rem;
  }
}

.about-page-milestone-copy {
  margin: 0;
  color: rgba(255, 242, 230, 0.78);
  font-size: clamp(0.86rem, 1.15vw, 0.98rem);
  line-height: 1.5;
}

.about-page-milestone:last-child .about-page-milestone-year {
  color: #fff4ea;
}

.about-page-milestone:last-child .about-page-milestone-copy {
  color: rgba(255, 244, 234, 0.9);
}

.about-page-milestone:last-child .about-page-milestone-card {
  background:
    linear-gradient(
      165deg,
      rgba(255, 247, 241, 0.18) 0%,
      rgba(230, 122, 46, 0.3) 48%,
      rgba(61, 46, 38, 0.4) 100%
    );
  border-color: rgba(240, 149, 74, 0.32);
  box-shadow:
    0 12px 32px rgba(28, 20, 16, 0.26),
    inset 0 1px 0 rgba(255, 247, 241, 0.16);
}

.about-page-cta {
  position: relative;
  padding: 4.5rem clamp(1.25rem, 4vw, 3.5rem) 5rem;
  display: flex;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(180deg, #fff7f1 0%, #ffefe4 100%);
}

.about-page-cta-dots {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.about-page-cta-dots-grid {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6' height='6' viewBox='0 0 6 6'%3E%3Crect x='0' y='0' width='2' height='2' fill='%23e67a2e' fill-opacity='0.72'/%3E%3C/svg%3E");
  background-size: 6px 6px;
  background-repeat: repeat;
  opacity: 1;
  mask-image:
    linear-gradient(
      180deg,
      transparent 0%,
      rgba(0, 0, 0, 0.35) 12%,
      #000 28%,
      #000 72%,
      rgba(0, 0, 0, 0.35) 88%,
      transparent 100%
    ),
    radial-gradient(
      ellipse 38% 42% at 50% 48%,
      transparent 0%,
      transparent 52%,
      #000 82%
    );
  -webkit-mask-image:
    linear-gradient(
      180deg,
      transparent 0%,
      rgba(0, 0, 0, 0.35) 12%,
      #000 28%,
      #000 72%,
      rgba(0, 0, 0, 0.35) 88%,
      transparent 100%
    ),
    radial-gradient(
      ellipse 38% 42% at 50% 48%,
      transparent 0%,
      transparent 52%,
      #000 82%
    );
  mask-composite: intersect;
  -webkit-mask-composite: source-in;
}

.about-page-cta-panel {
  position: relative;
  z-index: 1;
  max-width: 36rem;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-page-cta-panel .eyebrow {
  color: var(--teal-deep);
}

.about-page-cta-panel h2 {
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.1rem;
}

.about-page-cta-panel > p {
  margin: 0 auto;
  color: var(--muted);
  max-width: 30rem;
}

.about-page-cta-panel .contact-cta {
  margin-top: 1.75rem;
}

/* Footer */
.site-footer {
  padding: 3.5rem clamp(1.25rem, 4vw, 3.5rem) 2.5rem;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, #fffaf6 0%, #ffefe4 100%);
}

.footer-top {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: fit-content;
  max-width: min(16rem, 100%);
  gap: 0.15rem;
}

.footer-brand .logo {
  display: block;
  width: fit-content;
  max-width: 100%;
  line-height: 0;
}

.footer-brand .logo-img {
  display: block;
  max-width: 100%;
}

.footer-brand .footer-tagline {
  margin: 0;
  text-align: right;
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

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

.footer-col {
  min-width: 0;
}

.footer-heading {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--ink);
}

.footer-heading a {
  color: inherit;
  transition: color 0.2s var(--ease);
}

.footer-heading a:hover {
  color: var(--teal-deep);
}

.footer-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.footer-col a {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.35;
  transition: color 0.2s var(--ease);
}

.footer-col a:hover {
  color: var(--teal-deep);
}

.footer-col--contact {
  display: grid;
  gap: 0.9rem;
  align-content: start;
  justify-self: start;
  margin-left: -0.75rem;
  max-width: 15.5rem;
}

.footer-col--contact .footer-heading {
  margin-bottom: 0;
}

.footer-addresses {
  display: grid;
  gap: 1.1rem;
}

.footer-addresses p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.75;
}

.footer-addresses strong {
  display: inline-block;
  margin-bottom: 0.15rem;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 0.84rem;
  font-weight: 600;
}

.footer-col ul.footer-social,
.footer-social {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.55rem;
  list-style: none;
  margin: 0.15rem 0 0;
  padding: 0;
  width: max-content;
  max-width: 100%;
}

.footer-social a {
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.45rem;
  border: 1px solid rgba(196, 92, 24, 0.22);
  background: #fffaf6;
  color: #2a1c14;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.footer-social a:hover,
.footer-social a:focus-visible {
  background: linear-gradient(180deg, #e67a2e 0%, #c45c18 100%);
  border-color: transparent;
  color: #fffaf6;
  transform: translateY(-1px);
  outline: none;
}

.footer-social svg {
  display: block;
}

.copyright {
  margin: 2.5rem 0 0 !important;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(239, 213, 196, 0.7);
  color: var(--muted);
  font-size: 0.85rem !important;
}

.copyright a {
  margin-left: 0.7rem;
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.copyright a:hover,
.copyright a:focus-visible {
  color: var(--teal-deep);
}

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

@media (min-width: 1024px) {
  .footer-top {
    grid-template-columns: minmax(12rem, 16rem) 1fr;
    gap: 3rem;
  }

  .footer-nav {
    grid-template-columns: 1.55fr minmax(0, 0.85fr) minmax(0, 0.95fr) minmax(0, 1.15fr);
    gap: 1.5rem 0.85rem;
  }

  .footer-col--contact {
    margin-left: -1.35rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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

  .achievements-grid .achievements-item {
    opacity: 1;
    transform: none;
    animation: none !important;
  }
}

/* Service detail pages */
.service-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  align-items: center;
  justify-items: start;
  padding: calc(var(--header-h) + 4rem) clamp(1.5rem, 5vw, 4.5rem) 4.5rem;
  padding-left: clamp(3rem, 12vw, 9rem);
  overflow: hidden;
  text-align: left;
  background:
    linear-gradient(180deg, #fff8f2 0%, var(--paper) 55%, #fffaf6 100%);
}

.service-hero-atmosphere {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.service-hero-wash {
  position: absolute;
  inset: 0;
  background: none;
}

.service-hero-honey {
  position: absolute;
  top: -8%;
  right: -6%;
  bottom: -8%;
  width: min(74vw, 54rem);
  pointer-events: none;
  z-index: 0;
  opacity: 0.88;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='84' height='48' viewBox='0 0 84 48'%3E%3Cpath d='M21 0 L42 12 L42 36 L21 48 L0 36 L0 12 Z M63 0 L84 12 L84 36 L63 48 L42 36 L42 12 Z' fill='rgba(230,122,46,0.07)' stroke='%23e67a2e' stroke-opacity='0.4' stroke-width='1.25'/%3E%3C/svg%3E");
  background-size: 84px 48px;
  mask-image:
    radial-gradient(
      ellipse 82% 125% at 88% 50%,
      #000 0%,
      #000 28%,
      rgba(0, 0, 0, 0.85) 38%,
      rgba(0, 0, 0, 0.55) 48%,
      rgba(0, 0, 0, 0.28) 58%,
      rgba(0, 0, 0, 0.1) 68%,
      transparent 78%
    ),
    linear-gradient(
      180deg,
      transparent 0%,
      rgba(0, 0, 0, 0.35) 14%,
      #000 30%,
      #000 70%,
      rgba(0, 0, 0, 0.35) 86%,
      transparent 100%
    );
  -webkit-mask-image:
    radial-gradient(
      ellipse 82% 125% at 88% 50%,
      #000 0%,
      #000 28%,
      rgba(0, 0, 0, 0.85) 38%,
      rgba(0, 0, 0, 0.55) 48%,
      rgba(0, 0, 0, 0.28) 58%,
      rgba(0, 0, 0, 0.1) 68%,
      transparent 78%
    ),
    linear-gradient(
      180deg,
      transparent 0%,
      rgba(0, 0, 0, 0.35) 14%,
      #000 30%,
      #000 70%,
      rgba(0, 0, 0, 0.35) 86%,
      transparent 100%
    );
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
}

.service-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 40rem;
  display: grid;
  justify-items: start;
  gap: 0;
}

.service-hero-copy .eyebrow {
  margin-bottom: 1.5rem;
  color: var(--teal-deep);
}

.service-hero-copy h1 {
  margin: 0 0 1.25rem;
  font-size: clamp(3.2rem, 10vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.service-hero-name {
  margin: 0 0 1rem;
  max-width: 34rem;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  font-weight: 600;
  line-height: 1.35;
  color: var(--ink);
}

.service-hero-tagline {
  margin: 0 0 2rem;
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  font-weight: 500;
  line-height: 1.55;
  color: rgba(42, 28, 20, 0.72);
}

.service-overview {
  padding: 5.5rem clamp(1.5rem, 5vw, 4.5rem) 4rem;
  padding-left: clamp(3rem, 12vw, 9rem);
  background: #ffffff;
}

.service-section-intro,
.service-offering-intro {
  max-width: 42rem;
  margin: 0 0 2.5rem;
  text-align: left;
}

.service-section-intro .eyebrow,
.service-offering-intro .eyebrow {
  margin-bottom: 1.5rem;
  color: var(--teal-deep);
}

.service-section-intro h2,
.service-offering-intro h2 {
  margin: 0;
  max-width: none;
}

.service-overview-copy {
  max-width: 46rem;
  display: grid;
  gap: 1.5rem;
}

.service-overview-copy p {
  margin: 0;
  color: rgba(42, 28, 20, 0.72);
  line-height: 1.8;
}

.service-offerings {
  display: grid;
  gap: 0;
}

.service-offering {
  padding: 5rem clamp(1.5rem, 5vw, 4.5rem) 4.5rem;
  padding-left: clamp(3rem, 12vw, 9rem);
  background: #ffffff;
}

.service-offering:nth-child(even) {
  background:
    linear-gradient(90deg, rgba(255, 236, 220, 0.4) 0%, transparent 42%),
    linear-gradient(180deg, #fffaf6 0%, #fff7f1 100%);
}

.service-feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 68rem;
  display: grid;
  gap: 2.75rem 2.25rem;
}

@media (min-width: 800px) {
  .service-feature-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .service-feature-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.service-feature-list h3 {
  display: inline-block;
  margin: 0 0 1.1rem;
  padding: 0.7rem 1.2rem;
  max-width: 100%;
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  line-height: 1.3;
  color: var(--ink);
  border-radius: 1.15rem;
  border: 1px solid rgba(230, 122, 46, 0.16);
  background:
    linear-gradient(
      165deg,
      rgba(255, 247, 241, 0.98) 0%,
      rgba(230, 122, 46, 0.12) 48%,
      rgba(255, 255, 255, 0.7) 100%
    );
  box-shadow:
    0 8px 22px rgba(28, 20, 16, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.service-feature-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.service-cta {
  padding: 4.5rem clamp(1.5rem, 5vw, 4.5rem) 5rem;
  padding-left: clamp(3rem, 12vw, 9rem);
  display: flex;
  justify-content: flex-start;
  background:
    linear-gradient(90deg, rgba(255, 228, 205, 0.55) 0%, transparent 55%),
    linear-gradient(180deg, #fff7f1 0%, #ffefe4 100%);
}

.service-cta-panel {
  max-width: 38rem;
  width: 100%;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.service-cta-panel .eyebrow {
  margin-bottom: 1.5rem;
  color: var(--teal-deep);
}

.service-cta-panel h2 {
  margin: 0 0 1.5rem;
  max-width: none;
}

.service-cta-panel > p {
  margin: 0;
  color: var(--muted);
  max-width: 32rem;
  line-height: 1.75;
}

.service-cta-panel .contact-cta {
  align-self: flex-start;
  margin-top: 1.75rem;
}

/* Service detail page — About theme adaptations */
.service-detail-page .about-page-hero {
  gap: clamp(1.5rem, 3vw, 2.5rem);
  /* Keep ground dark under the para; soft fade only after the copy */
  padding-bottom: clamp(5.5rem, 12vh, 8.5rem);
  color: rgba(255, 247, 241, 0.92);
  isolation: auto;
  overflow: visible;
  z-index: 2;
  /* No mask — masks create a visible seam mid-fade */
  -webkit-mask-image: none;
  mask-image: none;
  background:
    linear-gradient(
      180deg,
      rgba(230, 122, 46, 0.28) 0%,
      rgba(230, 122, 46, 0.14) 22%,
      rgba(230, 122, 46, 0.06) 42%,
      rgba(230, 122, 46, 0.02) 58%,
      transparent 72%
    ),
    linear-gradient(
      180deg,
      #2a221c 0%,
      #322820 12%,
      #3c3026 24%,
      #4a3a2e 36%,
      #564636 48%,
      #655240 58%,
      #76604c 68%,
      #8a7058 78%,
      #9e8168 88%,
      #b09078 100%
    );
}

.service-detail-page .about-page-hero::after {
  display: none;
  content: none;
}

.service-detail-page .about-page-hero-dots-blur {
  display: none;
}

.service-detail-page .about-page-hero-dots {
  overflow: hidden;
}

.service-detail-page .about-page-hero-dots-grid {
  /* Fade dots out early so texture doesn’t form a line in the blend */
  mask-image: linear-gradient(
    180deg,
    #000 0%,
    #000 28%,
    rgba(0, 0, 0, 0.35) 45%,
    transparent 60%
  );
  -webkit-mask-image: linear-gradient(
    180deg,
    #000 0%,
    #000 28%,
    rgba(0, 0, 0, 0.35) 45%,
    transparent 60%
  );
}

.service-detail-page .about-page-rings {
  transform: translate(-50%, -29%);
  /* Fade rings out well before the bottom so no mid-fade cutoff line */
  mask-image: linear-gradient(
    180deg,
    #000 0%,
    #000 28%,
    rgba(0, 0, 0, 0.55) 40%,
    rgba(0, 0, 0, 0.18) 52%,
    transparent 64%
  );
  -webkit-mask-image: linear-gradient(
    180deg,
    #000 0%,
    #000 28%,
    rgba(0, 0, 0, 0.55) 40%,
    rgba(0, 0, 0, 0.18) 52%,
    transparent 64%
  );
}

/*
  Soft fade into Hardening — settles into a light white shade
  before the Hardening heading begins.
*/
.service-detail-page .about-page-continue {
  margin-top: -1px;
  padding-top: clamp(12rem, 28vh, 18rem);
  border: 0;
  outline: 0;
  box-shadow: none;
  overflow: hidden;
  position: relative;
  z-index: 1;
  background: linear-gradient(
    180deg,
    #b09078 0,
    #c2a28a 3.5rem,
    #d4b8a0 7.5rem,
    #e6d4c0 12rem,
    #f2e8dc 16rem,
    #faf6f1 20rem,
    #fffaf6 24rem,
    #fffaf6 100%
  );
  color: var(--ink-soft);
}

/* This runway is sized in vh, so it stayed ~250px tall on phones while every
   section around it shrank, leaving a screen-and-a-half of empty gradient
   between sections. Halving it and the gradient stops together keeps the fade
   landing at the same point in its ramp, just over a shorter distance. */
@media (max-width: 899px) {
  .service-detail-page .about-page-continue {
    padding-top: clamp(6rem, 14vh, 9rem);
    background: linear-gradient(
      180deg,
      #b09078 0,
      #c2a28a 1.75rem,
      #d4b8a0 3.75rem,
      #e6d4c0 6rem,
      #f2e8dc 8rem,
      #faf6f1 10rem,
      #fffaf6 12rem,
      #fffaf6 100%
    );
  }
}

/* Bottom dotted rails end just above the first split section */
.service-detail-page .about-page-ext-left-bottom,
.service-detail-page .about-page-ext-right-bottom {
  height: min(36vh, 18rem);
  mask-image: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.95) 0%,
    rgba(0, 0, 0, 0.65) 45%,
    rgba(0, 0, 0, 0.28) 72%,
    rgba(0, 0, 0, 0.08) 88%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.95) 0%,
    rgba(0, 0, 0, 0.65) 45%,
    rgba(0, 0, 0, 0.28) 72%,
    rgba(0, 0, 0, 0.08) 88%,
    transparent 100%
  );
}

.service-detail-page .about-page-continue::before {
  content: none;
  display: none;
}

.service-detail-page .about-page-continue-dots {
  display: none;
}

.service-detail-page .about-page-continue:has(.rt-hubmap),
.service-detail-page .about-page-orange-band:has(.rt-hubmap),
.service-detail-page .about-page-continue:has(.rt-hubmap) .rt-ext-impact {
  overflow: visible;
}

.service-detail-page .about-page-continue:has(.ovms-features),
.service-detail-page .about-page-orange-band:has(.ovms-features) {
  overflow: visible;
}

@media (max-width: 899.98px) {
  .service-detail-page .about-page-continue:has(.ovms-features),
  .service-detail-page .about-page-orange-band:has(.ovms-features),
  .service-detail-page .about-page-continue:has(.rt-hubmap),
  .service-detail-page .about-page-orange-band:has(.rt-hubmap),
  .service-detail-page .about-page-continue:has(.audit-services),
  .service-detail-page .about-page-orange-band:has(.audit-services),
  .service-detail-page .about-page-continue:has(.dpdp-services),
  .service-detail-page .about-page-orange-band:has(.dpdp-services) {
    overflow: hidden;
  }

  .ovms-showcase-frame img,
  .ovms-feature-media img,
  .audit-media img {
    max-width: 100%;
  }
}

/* Keep the full service continuum light — no dark lower wash */
.service-detail-page .about-page-orange-band-wash {
  display: none;
}

.service-detail-page .about-page-service-block--split + .about-page-service-block {
  border-top: none;
  padding-top: clamp(3rem, 5.5vw, 4rem);
}

.service-detail-page .about-page-service-block--split:has(+ .about-page-service-block) {
  padding-bottom: clamp(3rem, 5.5vw, 4rem);
}

.service-detail-page .about-page-hero-lead,
.service-detail-page .about-page-frame .about-page-hero-lead {
  color: rgba(255, 247, 241, 0.72);
  text-shadow: none;
}

.service-detail-page .about-page-frame .about-page-hero-lead p {
  color: rgba(255, 247, 241, 0.72);
  font-weight: 400;
  text-shadow: none;
}

.service-detail-page .about-page-hero-tagline,
.service-detail-page .about-page-frame .about-page-hero-tagline,
.service-detail-page .about-page-frame .about-page-hero-lead .about-page-hero-tagline {
  color: rgba(255, 247, 241, 0.88);
  font-weight: 700;
  text-shadow: none;
}

.service-detail-page .about-page-ring {
  border-color: rgba(255, 247, 241, 0.32);
  box-shadow:
    0 0 0 1px rgba(230, 122, 46, 0.14),
    inset 0 0 48px rgba(230, 122, 46, 0.12),
    inset 0 0 90px rgba(255, 255, 255, 0.06);
}

.service-detail-page .about-page-hero-stage {
  height: 36rem;
  position: relative;
  overflow: visible;
}

/* Icons orbit on ring paths, outside the rings mask so they stay visible */
.service-ring-orbits {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(185%, 72rem);
  aspect-ratio: 1;
  transform: translate(-50%, -29%);
  z-index: 3;
  pointer-events: none;
}

/* Same ring diameter and crown on 13.6" / 14" / 15.6" desktops.
   Crown sits just under the fixed header (hero padding 2.5rem + stage
   margin 0.75rem, minus a 0.6rem breathing gap). */
@media (min-width: 900px) {
  .service-detail-page .about-page-rings,
  .service-detail-page .service-ring-orbits {
    top: 0;
    width: 72rem;
    transform: translate(-50%, -2.65rem);
  }
}

.service-ring-orbit-track {
  position: absolute;
  border-radius: 50%;
}

.service-ring-orbit-track--outer {
  inset: 0;
}

.service-ring-orbit-track--mid {
  left: 50%;
  top: 50%;
  width: 90%;
  height: 90%;
  transform: translate(-50%, -50%);
}

.service-ring-orbit {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  pointer-events: none;
  transform-origin: center center;
}

.service-ring-orbit--outer {
  animation: service-orbit-sweep-a 7.5s ease-in-out infinite;
}

.service-ring-orbit--mid {
  animation: service-orbit-sweep-b 8.5s ease-in-out infinite;
  animation-delay: -1.5s;
}

.service-ring-icon {
  position: absolute;
  left: 50%;
  top: 0;
  width: 2.55rem;
  height: 2.55rem;
  margin-left: -1.275rem;
  margin-top: -1.275rem;
  display: grid;
  place-items: center;
  filter: drop-shadow(0 8px 18px rgba(196, 92, 24, 0.28));
  will-change: transform;
}

.service-ring-icon-face {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  transform-origin: center center;
}

.service-ring-orbit--outer .service-ring-icon-face {
  animation: service-orbit-counter-a 7.5s ease-in-out infinite;
}

.service-ring-orbit--mid .service-ring-icon-face {
  animation: service-orbit-counter-b 8.5s ease-in-out infinite;
  animation-delay: -1.5s;
}

.service-ring-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Each icon: side → ~3/4 up the half-circle (not to the peak), then back */
@keyframes service-orbit-sweep-a {
  0%,
  100% {
    transform: rotate(-80deg);
  }
  50% {
    transform: rotate(-41deg);
  }
}

@keyframes service-orbit-counter-a {
  0%,
  100% {
    transform: rotate(80deg);
  }
  50% {
    transform: rotate(41deg);
  }
}

@keyframes service-orbit-sweep-b {
  0%,
  100% {
    transform: rotate(80deg);
  }
  50% {
    transform: rotate(41deg);
  }
}

@keyframes service-orbit-counter-b {
  0%,
  100% {
    transform: rotate(-80deg);
  }
  50% {
    transform: rotate(-41deg);
  }
}

@media (max-width: 640px) {
  .service-ring-icon {
    width: 2.1rem;
    height: 2.1rem;
    margin-left: -1.05rem;
    margin-top: -1.05rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .service-ring-orbit--outer,
  .service-ring-orbit--mid,
  .service-ring-orbit--outer .service-ring-icon-face,
  .service-ring-orbit--mid .service-ring-icon-face {
    animation: none !important;
  }

  .service-ring-orbit--outer {
    transform: rotate(-60deg);
  }

  .service-ring-orbit--mid {
    transform: rotate(60deg);
  }

  .service-ring-orbit--outer .service-ring-icon-face {
    transform: rotate(60deg);
  }

  .service-ring-orbit--mid .service-ring-icon-face {
    transform: rotate(-60deg);
  }
}

.service-detail-page .about-page-frame {
  position: absolute;
  z-index: 4;
  left: 50%;
  /* Keep heading + para in the darker upper/mid hero */
  top: 18%;
  transform: translateX(-50%);
  width: min(92%, 52rem);
  height: auto;
  min-height: min(42%, 16rem);
  padding: clamp(2.75rem, 5vw, 3.75rem) clamp(1.25rem, 3vw, 2.25rem)
    clamp(2.25rem, 4vw, 3.25rem);
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 1.65rem;
  box-sizing: border-box;
}

.service-detail-page .about-page-frame-border {
  display: block;
}

.service-detail-page .about-page-ext,
.service-detail-page .about-page-node {
  display: block;
}

.service-detail-page .about-page-bot {
  display: grid;
}

/* Key (left) + shield (right): travel up/down along vertical dotted rails */
.service-detail-page .about-page-bot-a {
  left: -1.35rem;
  top: 6%;
  animation: service-line-bot-float-y 6.4s ease-in-out infinite;
}

.service-detail-page .about-page-bot-b {
  right: -1.35rem;
  top: 52%;
  width: 2.55rem;
  height: 2.55rem;
  animation: service-line-bot-float-y 7.2s ease-in-out infinite reverse;
  animation-delay: -1.6s;
}

@keyframes service-line-bot-float-y {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(11rem);
  }
}

@media (max-width: 640px) {
  @keyframes service-line-bot-float-y {
    0%,
    100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(6.5rem);
    }
  }
}

@media (prefers-reduced-motion: reduce) {
  .service-detail-page .about-page-bot-a,
  .service-detail-page .about-page-bot-b {
    animation: none;
  }
}

.service-detail-page .about-page-tag {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  z-index: 3;
}

.service-detail-page .about-page-frame .about-page-headline--service {
  position: relative;
  z-index: 2;
  margin: 0;
  max-width: 28ch;
  padding: 0 0.75rem;
  text-align: center;
  font-size: clamp(1.85rem, 4vw, 2.85rem);
  line-height: 1.18;
}

.service-detail-page .about-page-frame .about-page-hero-lead {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 52rem;
  margin: 0;
  text-align: center;
  justify-items: center;
  gap: 1.85rem;
  font-size: clamp(1.08rem, 1.55vw, 1.22rem);
  line-height: 1.85;
}

.service-detail-page .about-page-frame .about-page-hero-tagline {
  margin: 0 0 0.55rem;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
}

.about-page-headline--service {
  max-width: 46rem;
  font-size: clamp(1.55rem, 3.4vw, 2.35rem);
  line-height: 1.2;
}

.about-page-headline--ovms {
  max-width: none;
  font-size: clamp(3.2rem, 9vw, 5.75rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.service-detail-page .about-page-frame .about-page-headline--ovms {
  max-width: none;
  font-size: clamp(3.2rem, 9vw, 5.75rem);
  line-height: 1.05;
}

.about-page-hero-tagline {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255, 247, 241, 0.95);
}

/* Network graphic stage (replaces About OWNZAP frame) */
.about-net-graphic {
  position: relative;
  z-index: 2;
  width: min(90%, 40rem);
  height: min(78%, 18rem);
  display: grid;
  place-items: center;
}

.about-net-tag {
  position: absolute;
  top: -0.35rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.about-net-svg {
  width: 100%;
  height: auto;
  max-height: 100%;
  filter: drop-shadow(0 12px 28px rgba(28, 20, 16, 0.28));
}

.about-net-node {
  transform-origin: center;
  transform-box: fill-box;
}

.about-net-node-f,
.about-net-node-b {
  animation: about-net-pulse 3s ease-in-out infinite;
}

.about-net-node-d,
.about-net-node-j {
  animation: about-net-pulse 3.6s ease-in-out infinite;
  animation-delay: -1.2s;
}

.about-net-link {
  stroke-dasharray: 6 8;
  animation: about-net-flow 16s linear infinite;
}

.about-net-chip {
  position: absolute;
  z-index: 4;
  width: 2.6rem;
  height: 2.6rem;
  display: grid;
  place-items: center;
  border-radius: 0.85rem;
  background: linear-gradient(160deg, #f6b57a 0%, #e67a2e 100%);
  box-shadow: 0 10px 24px rgba(196, 92, 24, 0.28);
  will-change: transform;
}

.about-net-chip svg {
  width: 1.55rem;
  height: 1.55rem;
}

.about-net-chip-a {
  left: -0.85rem;
  top: 18%;
  animation: about-bot-float-y 5.8s ease-in-out infinite;
}

.about-net-chip-b {
  right: -0.95rem;
  top: 36%;
  width: 2.35rem;
  height: 2.35rem;
  animation: about-bot-float-y 6.4s ease-in-out infinite reverse;
  animation-delay: -1.1s;
}

.about-net-chip-c {
  left: 12%;
  bottom: -0.65rem;
  width: 2.45rem;
  height: 2.45rem;
  animation: about-bot-float-y 5.2s ease-in-out infinite;
  animation-delay: -2s;
}

@keyframes about-net-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.28);
    opacity: 0.8;
  }
}

@keyframes about-net-flow {
  to {
    stroke-dashoffset: -160;
  }
}

@media (max-width: 640px) {
  .about-net-graphic {
    width: min(94%, 24rem);
    height: min(70%, 12.5rem);
  }

  .about-net-chip-a,
  .about-net-chip-b,
  .about-net-chip-c {
    width: 2.1rem;
    height: 2.1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-net-node-f,
  .about-net-node-b,
  .about-net-node-d,
  .about-net-node-j,
  .about-net-link,
  .about-net-chip-a,
  .about-net-chip-b,
  .about-net-chip-c {
    animation: none !important;
  }
}

.about-page-orange-band > .about-page-service-block {
  position: relative;
  z-index: 1;
  background: transparent;
}

.about-page-service-block {
  padding-top: clamp(3.5rem, 7vw, 5rem);
  padding-bottom: clamp(3.5rem, 7vw, 5rem);
}

.about-page-service-block + .about-page-service-block {
  border-top: 1px dotted rgba(61, 46, 38, 0.12);
}

.service-detail-page .about-page-service-block + .about-page-service-block {
  border-top: none;
}

.about-page-service-features {
  gap: 2.75rem 0;
}

@media (min-width: 860px) {
  .about-page-service-features {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .about-page-service-features .about-page-pillar:nth-child(3n)::after {
    display: none;
  }
}

@media (min-width: 860px) and (max-width: 1099px) {
  .about-page-service-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-page-service-features .about-page-pillar:nth-child(3n)::after {
    display: block;
  }

  .about-page-service-features .about-page-pillar:nth-child(2n)::after {
    display: none;
  }
}

/* Split: heading left, stacked feature boxes right */
.about-page-service-block--split {
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
  background: transparent !important;
  color: var(--ink-soft);
  border-radius: 0;
  border: 0;
  outline: 0;
  box-shadow: none;
  padding-top: clamp(0.75rem, 2.5vh, 1.75rem);
  position: relative;
}

.about-page-service-block--split .about-page-intro {
  margin-bottom: 0;
  max-width: none;
  text-align: left;
  padding-top: 0;
  position: relative;
  z-index: 2;
}

.about-page-service-block--split .about-page-intro h2 {
  text-align: center;
  max-width: 100%;
  width: 100%;
  margin: 0;
  color: var(--ink);
  text-shadow: none;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  line-height: 1.28;
  letter-spacing: -0.02em;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  -webkit-hyphens: none;
}

.hardening-heading-frame {
  display: block;
  box-sizing: border-box;
  width: 100%;
  max-width: min(100%, 36rem);
  padding: 1.75rem 2.1rem;
  border-radius: 1.45rem;
  border: 1.5px dashed rgba(230, 122, 46, 0.55);
  background:
    linear-gradient(
      165deg,
      #fff7f1 0%,
      rgba(230, 122, 46, 0.12) 48%,
      #fffaf6 100%
    );
  box-shadow:
    0 10px 28px rgba(28, 20, 16, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
  text-align: center;
}

.hardening-heading-frame .hardening-heading-lead {
  margin: 1rem 0 0;
  max-width: none;
  color: rgba(42, 28, 20, 0.82);
  font-size: clamp(0.9rem, 1.15vw, 1.02rem);
  line-height: 1.55;
  text-align: center;
  text-shadow: none;
}

.hardening-connectors {
  display: none;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: visible;
}

.hardening-connectors path {
  fill: none;
  stroke: rgba(230, 122, 46, 0.72);
  stroke-width: 1.6;
  stroke-dasharray: 5 7;
  stroke-linecap: butt;
  stroke-linejoin: round;
}

.hardening-connectors .hardening-connector-arrow {
  fill: #e67a2e;
  stroke: none;
}

.about-page-service-features--stack {
  position: relative;
  z-index: 2;
  grid-template-columns: 1fr !important;
  gap: 0.95rem !important;
  max-width: min(100%, 40rem);
  width: 100%;
  margin: 0;
  justify-self: end;
}

.about-page-service-features--stack .about-page-pillar {
  text-align: left;
  padding: 0.95rem 1.3rem;
  border-radius: 0.95rem;
  border: 1.5px dashed rgba(230, 122, 46, 0.55);
  /* Fully opaque so the hero join never shows through the cards */
  background:
    linear-gradient(
      165deg,
      #fff7f1 0%,
      #f7e4d4 48%,
      #fffaf6 100%
    );
  box-shadow:
    0 8px 20px rgba(28, 20, 16, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.about-page-service-features--stack .about-page-pillar::after {
  display: none !important;
}

.about-page-service-features--stack .about-page-pillar h3 {
  display: block;
  margin: 0 0 0.45rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
  text-align: left;
  color: var(--teal-deep);
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
  line-height: 1.3;
}

.about-page-service-features--stack .about-page-pillar p {
  text-align: left;
  color: rgba(42, 28, 20, 0.72);
  font-size: clamp(0.9rem, 1.2vw, 1.02rem);
  line-height: 1.55;
  margin: 0;
}

@media (min-width: 900px) {
  .about-page-service-block--split {
    grid-template-columns: minmax(14rem, 0.9fr) minmax(0, 1.35fr);
    gap: clamp(1.25rem, 2.5vw, 2rem);
  }

  /* Keep heading in document flow so SVG connectors stay aligned */
  .about-page-service-block--split .about-page-intro {
    position: relative;
    top: auto;
    align-self: center;
  }

  .about-page-service-block--split-flip {
    grid-template-columns: minmax(0, 1.35fr) minmax(14rem, 0.9fr);
  }

  .about-page-service-block--split-flip .about-page-intro {
    order: 2;
    justify-self: end;
    text-align: center;
  }

  .about-page-service-block--split-flip .about-page-intro h2 {
    text-align: center;
  }

  .about-page-service-block--split-flip .hardening-heading-frame {
    margin-left: auto;
  }

  .about-page-service-block--split-flip .about-page-service-features--stack {
    order: 1;
    justify-self: start;
  }

  .hardening-connectors {
    display: block;
  }
}

/*
  Desktop-only diagrams below 900px.

  The service pages' fan blocks and "Our process" maps, the home page's
  Strategic Framework rail, and the about page's Industries stadium are CSS
  layouts that need roughly 900-1300px to hold their shape, so at phone widths
  the connectors used to be dropped and the pieces just stacked. Each of those
  containers now carries an inline SVG twin of its desktop rendering (generated
  by .gen.html and .gen-extra.html, injected by .inject-svc.py); below the
  breakpoint the twin stands in for the live layout so the diagram reads the
  same as on desktop.

  The Industries swap lives with that section instead, because it flips at its
  own 900px breakpoint rather than this one.
*/
.svc-still {
  display: none;
}

@media (max-width: 899.98px) {
  .svc-still {
    display: block;
    width: 100%;
    height: auto;
  }

  /* The twin already draws the heading card and every feature card, so the
     live versions underneath it would just be a duplicate. */
  .about-page-service-block--split > .about-page-intro,
  .about-page-service-block--split > .about-page-service-features--stack,
  .process-map > *:not(.svc-still),
  .scr-arch > *:not(.svc-still),
  .cloud-arch > *:not(.svc-still),
  .framework-rail > *:not(.svc-still) {
    display: none;
  }

  .about-page-service-block--split {
    display: block;
  }

  /* The rail's grid areas would drop the twin into the narrow "hub" column,
     and with the live children gone there is nothing left to lay out. */
  .framework-rail {
    display: block;
  }

  /* The hero's headline and lead paragraph live in .about-page-frame, which is
     positioned out of flow, so neither the stage nor the hero can size to it.
     Once the lead wraps to enough lines the frame runs past the bottom of the
     hero and collides with the section below. Put it back in flow here and let
     the hero grow; the rings stay absolute since they are decoration. */
  .service-detail-page .about-page-hero-stage {
    height: auto;
    min-height: min(68dvh, 36rem);
    align-content: center;
  }

  .service-detail-page .about-page-frame {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    justify-self: center;
  }

  /* The rings are anchored with top: 50%, which resolves against a stage that
     now grows with its copy, so the arcs drifted further down the taller the
     paragraph got. Their diameter is a share of the stage width, so anchoring
     to a share of that same diameter keeps the crown of the arc in the same
     place relative to the headline at every width. Resolves to ~288px once the
     ring hits its 72rem cap, which is what the desktop rule already produces. */
  .service-detail-page .about-page-rings {
    top: min(42.5vw, 18rem);
  }

  /* The dashed 48vw rails and 185%-wide rings sit outside the stage. Desktop
     keeps overflow visible so those decorations can bleed; on a phone they
     expand the document and the page pans sideways. Clip the hero, not the
     stage — the Solution/Platform pill hangs 0.75rem above the frame and
     would be cut in half if the stage clipped too. */
  .service-detail-page .about-page-hero {
    overflow: hidden;
  }

  .service-detail-page .about-page-hero-stage {
    overflow: visible;
    padding-top: 1rem;
  }
}

/* Network infrastructure service page — distinct mesh theme */
.net-service-page {
  background:
    radial-gradient(900px 480px at 92% 8%, rgba(230, 122, 46, 0.12), transparent 55%),
    linear-gradient(180deg, #f7f4f0 0%, #fff8f2 38%, #fffaf6 100%);
}

.net-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  align-items: center;
  justify-items: start;
  padding: calc(var(--header-h) + 3.5rem) clamp(1.5rem, 5vw, 4.5rem) 4rem;
  padding-left: clamp(3rem, 12vw, 9rem);
  overflow: hidden;
  background:
    linear-gradient(
      115deg,
      #1a1612 0%,
      #2a221c 38%,
      #3d3228 62%,
      #5a4638 100%
    );
}

.net-hero-mesh {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  display: grid;
  justify-items: end;
  align-items: center;
  padding-right: clamp(0rem, 4vw, 2rem);
  opacity: 0.92;
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.35) 28%, #000 52%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.35) 28%, #000 52%);
}

.net-hero-svg {
  width: min(72vw, 46rem);
  height: auto;
  transform: translateX(4%);
}

.net-node {
  fill: #e67a2e;
  transform-origin: center;
  transform-box: fill-box;
}

.net-node-f {
  fill: #f0954a;
  animation: net-node-pulse 2.8s ease-in-out infinite;
}

.net-node-b,
.net-node-k {
  animation: net-node-pulse 3.4s ease-in-out infinite;
  animation-delay: -1s;
}

.net-links path {
  stroke-dasharray: 8 10;
  animation: net-link-flow 14s linear infinite;
}

.net-glow {
  animation: net-glow-breathe 6s ease-in-out infinite;
}

.net-rack {
  animation: net-rack-float 5.5s ease-in-out infinite;
}

@keyframes net-node-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.35);
    opacity: 0.75;
  }
}

@keyframes net-link-flow {
  to {
    stroke-dashoffset: -180;
  }
}

@keyframes net-glow-breathe {
  0%,
  100% {
    opacity: 0.7;
  }
  50% {
    opacity: 1;
  }
}

@keyframes net-rack-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

.net-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 36rem;
  display: grid;
  justify-items: start;
}

.net-hero-copy .eyebrow {
  margin-bottom: 1.35rem;
  color: #f6b57a;
}

.net-hero-copy h1 {
  margin: 0 0 1.15rem;
  font-size: clamp(3.2rem, 9vw, 5.8rem);
  letter-spacing: -0.035em;
  line-height: 0.95;
  color: #fffaf6;
}

.net-hero-name {
  margin: 0 0 0.85rem;
  max-width: 32rem;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 600;
  line-height: 1.35;
  color: rgba(255, 247, 241, 0.92);
}

.net-hero-tagline {
  margin: 0 0 1.85rem;
  font-size: clamp(1.02rem, 1.5vw, 1.15rem);
  font-weight: 500;
  color: rgba(255, 247, 241, 0.68);
}

.net-overview {
  position: relative;
  padding: 5.5rem clamp(1.5rem, 5vw, 4.5rem) 4.5rem;
  padding-left: clamp(3rem, 12vw, 9rem);
  background: #fffaf6;
}

.net-section-mark {
  margin-bottom: 1.5rem;
}

.net-section-intro {
  max-width: 40rem;
  margin: 0 0 2.25rem;
}

.net-section-intro .eyebrow {
  margin-bottom: 1.35rem;
  color: var(--teal-deep);
}

.net-section-intro h2 {
  margin: 0;
  max-width: none;
}

.net-overview-copy {
  max-width: 46rem;
  display: grid;
  gap: 1.4rem;
}

.net-overview-copy p {
  margin: 0;
  color: rgba(42, 28, 20, 0.72);
  line-height: 1.8;
}

.net-offerings {
  display: grid;
}

.net-offering {
  position: relative;
  padding: 5rem clamp(1.5rem, 5vw, 4.5rem) 4.5rem;
  padding-left: clamp(3rem, 12vw, 9rem);
  background: #ffffff;
}

.net-offering--alt {
  background:
    linear-gradient(105deg, rgba(230, 122, 46, 0.06) 0%, transparent 42%),
    linear-gradient(180deg, #faf6f1 0%, #fff8f2 100%);
}

.net-offering-visual {
  margin-bottom: 1.75rem;
}

.net-offering-visual svg {
  width: 4.5rem;
  height: 4.5rem;
}

.net-offering-intro {
  max-width: 42rem;
  margin: 0 0 2.5rem;
}

.net-offering-intro .eyebrow {
  margin-bottom: 1.25rem;
  color: var(--teal-deep);
}

.net-offering-intro h2 {
  margin: 0;
  max-width: none;
}

.net-feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 68rem;
  display: grid;
  gap: 2.5rem 2rem;
}

@media (min-width: 800px) {
  .net-feature-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .net-feature-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.net-feature-list h3 {
  display: inline-block;
  margin: 0 0 1.05rem;
  padding: 0.65rem 1.15rem;
  max-width: 100%;
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  line-height: 1.3;
  color: var(--ink);
  border-radius: 1.1rem;
  border: 1px solid rgba(230, 122, 46, 0.18);
  background:
    linear-gradient(
      165deg,
      rgba(255, 247, 241, 0.98) 0%,
      rgba(230, 122, 46, 0.12) 50%,
      rgba(255, 255, 255, 0.75) 100%
    );
  box-shadow:
    0 8px 20px rgba(28, 20, 16, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.net-feature-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.net-cta {
  position: relative;
  padding: 5rem clamp(1.5rem, 5vw, 4.5rem) 5.5rem;
  padding-left: clamp(3rem, 12vw, 9rem);
  overflow: hidden;
  background:
    linear-gradient(180deg, #2a221c 0%, #1a1612 100%);
}

.net-cta-graphic {
  position: absolute;
  right: clamp(1rem, 8vw, 6rem);
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.55;
  pointer-events: none;
}

.net-cta-panel {
  position: relative;
  z-index: 1;
  max-width: 36rem;
  display: grid;
  justify-items: start;
}

.net-cta-panel .eyebrow {
  margin-bottom: 1.35rem;
  color: #f6b57a;
}

.net-cta-panel h2 {
  margin: 0 0 1.25rem;
  max-width: none;
  color: #fffaf6;
}

.net-cta-panel > p {
  margin: 0 0 1.75rem;
  color: rgba(255, 247, 241, 0.7);
  line-height: 1.75;
}

@media (max-width: 800px) {
  .net-hero-mesh {
    opacity: 0.4;
    mask-image: linear-gradient(180deg, transparent 0%, #000 35%, #000 70%, transparent 100%);
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 35%, #000 70%, transparent 100%);
  }

  .net-hero-svg {
    width: min(110vw, 34rem);
    position: absolute;
    right: -18%;
    top: 12%;
  }

  .net-cta-graphic {
    opacity: 0.28;
    right: -2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .net-node-f,
  .net-node-b,
  .net-node-k,
  .net-links path,
  .net-glow,
  .net-rack {
    animation: none !important;
  }
}

/* OVMS Platform — showcase (Oasis-style) + blank media slots */
.ovms-showcase {
  width: min(100%, 86rem);
  margin: 0 auto;
  padding: 2.5rem clamp(1rem, 3vw, 2.25rem) 5.5rem;
}

.ovms-showcase-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.25rem 2rem;
  margin-bottom: 4.75rem;
}

.ovms-showcase-bar h2 {
  margin: 0;
  max-width: none;
  color: #1f140e;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.6vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  text-align: left;
}

.ovms-showcase-cta {
  flex-shrink: 0;
}

.ovms-showcase-stage {
  position: relative;
  display: grid;
  place-items: center;
  padding: clamp(0.55rem, 1.4vw, 0.95rem);
  border-radius: 1.5rem;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 250, 246, 0.92), rgba(255, 241, 230, 0.88));
}

.ovms-showcase-dots {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(196, 92, 24, 0.22) 1.15px, transparent 1.3px);
  background-size: 14px 14px;
  opacity: 0.55;
  mask-image: none;
  -webkit-mask-image: none;
}

.ovms-showcase-frame {
  position: relative;
  z-index: 1;
  margin: 0;
  width: 100%;
  border-radius: 0.85rem;
  border: 1px solid rgba(196, 120, 70, 0.2);
  background: #fff;
  box-shadow:
    0 16px 36px rgba(120, 55, 12, 0.12),
    0 2px 0 rgba(255, 255, 255, 0.8) inset;
  overflow: hidden;
}

.ovms-showcase-frame img {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
  object-fit: contain;
  image-rendering: auto;
  -webkit-user-drag: none;
}

.ovms-showcase-points {
  display: grid;
  gap: 1.5rem;
  margin-top: 4.25rem;
}

.ovms-showcase-point {
  position: relative;
  padding: 0.25rem 0.15rem 0;
}

.ovms-showcase-point + .ovms-showcase-point::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -1rem;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(196, 120, 70, 0.28) 12%,
    rgba(196, 120, 70, 0.28) 88%,
    transparent 100%
  );
}

.ovms-showcase-point h3 {
  margin: 0 0 0.65rem;
  color: #c45c18;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.ovms-showcase-point p {
  margin: 0;
  color: rgba(42, 28, 20, 0.78);
  font-size: 0.98rem;
  line-height: 1.55;
}

@media (min-width: 900px) {
  .ovms-showcase-points {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem 2.5rem;
  }

  .ovms-showcase-point + .ovms-showcase-point::before {
    left: -1.25rem;
    right: auto;
    top: 0;
    bottom: 0;
    width: 1px;
    height: auto;
    background: linear-gradient(
      180deg,
      transparent 0%,
      rgba(196, 120, 70, 0.32) 10%,
      rgba(196, 120, 70, 0.32) 90%,
      transparent 100%
    );
  }
}

.ovms-media {
  width: min(100%, 86rem);
  margin: 0 auto;
  padding: 1rem clamp(1rem, 3vw, 2.25rem) 4rem;
}

.ovms-media-inner {
  display: grid;
  gap: 1.5rem;
}

.ovms-media-slot {
  margin: 0;
  min-height: clamp(14rem, 32vh, 22rem);
  border-radius: 1.25rem;
  border: 1px dashed rgba(196, 120, 70, 0.35);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(255, 244, 234, 0.7));
  overflow: hidden;
}

.ovms-media-slot img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: inherit;
}

@media (min-width: 900px) {
  .ovms-media-inner {
    gap: 2rem;
  }

  .ovms-media-slot {
    min-height: clamp(18rem, 38vh, 28rem);
  }
}

/* OVMS Top Features — alternating 70% image / 30% copy */
.ovms-features {
  width: min(100%, 86rem);
  margin: 0 auto;
  padding: 6.5rem clamp(1rem, 3vw, 2.25rem) 8.5rem;
  overflow: visible;
}

.ovms-features-intro {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 0 0 7.25rem;
  text-align: center;
}

.ovms-features-intro h2 {
  margin: 0 auto;
  width: 100%;
  color: #1f140e;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  text-align: center;
}

.ovms-feature-row {
  --ovms-feature-gap: 7.5rem;
  position: relative;
  display: grid;
  gap: 2.25rem;
  align-items: center;
  margin: 0 0 var(--ovms-feature-gap);
  padding-bottom: 0;
  border: none;
  background: none;
  overflow: visible;
}

.ovms-feature-row:last-child {
  margin-bottom: 0;
}

.ovms-feature-media {
  position: relative;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 1rem;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.ovms-feature-media::before,
.ovms-feature-media::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
  border-radius: 1.5rem;
}

/* Soft ambient glow on all sides — tan/cream wash */
.ovms-feature-media::before {
  inset: -1.1rem -1.1rem -1.35rem -1.1rem;
  background: radial-gradient(
    ellipse 88% 78% at 50% 52%,
    rgba(213, 187, 164, 0.58) 0%,
    rgba(180, 150, 126, 0.34) 42%,
    rgba(238, 227, 213, 0.18) 62%,
    transparent 78%
  );
  filter: blur(34px);
  opacity: 1;
}

/* Directional edge wash — even along the accent sides */
.ovms-feature-row--image-left .ovms-feature-media::after,
.ovms-feature-media::after {
  inset: -0.35rem -1.55rem -1.7rem -0.35rem;
  background:
    linear-gradient(
      90deg,
      transparent 0%,
      transparent 52%,
      rgba(213, 187, 164, 0.4) 76%,
      rgba(180, 150, 126, 0.55) 100%
    ),
    linear-gradient(
      180deg,
      transparent 0%,
      transparent 52%,
      rgba(213, 187, 164, 0.4) 76%,
      rgba(180, 150, 126, 0.55) 100%
    );
  filter: blur(28px);
  opacity: 1;
}

.ovms-feature-row--image-right .ovms-feature-media::after {
  inset: -0.35rem -0.35rem -1.7rem -1.55rem;
  background:
    linear-gradient(
      270deg,
      transparent 0%,
      transparent 52%,
      rgba(213, 187, 164, 0.4) 76%,
      rgba(180, 150, 126, 0.55) 100%
    ),
    linear-gradient(
      180deg,
      transparent 0%,
      transparent 52%,
      rgba(213, 187, 164, 0.4) 76%,
      rgba(180, 150, 126, 0.55) 100%
    );
}

.ovms-feature-media img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
  border-radius: 0.85rem;
  border: 1px solid rgba(180, 150, 126, 0.28);
  background: #0b0d12;
  box-shadow:
    0 0 0 1px rgba(238, 227, 213, 0.4),
    0 12px 28px rgba(140, 110, 85, 0.16),
    0 4px 14px rgba(180, 150, 126, 0.18);
  object-fit: contain;
  image-rendering: auto;
  -webkit-user-drag: none;
  filter: none;
  transform: none;
}

.ovms-feature-row--image-left .ovms-feature-media img {
  box-shadow:
    0 0 0 1px rgba(238, 227, 213, 0.4),
    10px 14px 36px rgba(180, 150, 126, 0.36),
    0 10px 28px rgba(180, 150, 126, 0.28),
    4px 4px 16px rgba(140, 110, 85, 0.14);
}

.ovms-feature-row--image-right .ovms-feature-media img {
  box-shadow:
    0 0 0 1px rgba(238, 227, 213, 0.4),
    -10px 14px 36px rgba(180, 150, 126, 0.36),
    0 10px 28px rgba(180, 150, 126, 0.28),
    -4px 4px 16px rgba(140, 110, 85, 0.14);
}

.ovms-feature-copy h3 {
  margin: 0 0 0.75rem;
  color: #c45c18;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.ovms-feature-copy p {
  margin: 0;
  color: rgba(42, 28, 20, 0.78);
  font-size: 1rem;
  line-height: 1.65;
}

@media (min-width: 900px) {
  .ovms-feature-row {
    --ovms-feature-gap: 9.5rem;
    grid-template-columns: 6fr 4fr;
    gap: 3.5rem;
  }

  .ovms-feature-media::before {
    inset: -1.35rem -1.35rem -1.6rem -1.35rem;
    filter: blur(40px);
  }

  .ovms-feature-row--image-left .ovms-feature-media::after {
    inset: -0.4rem -2rem -2.1rem -0.4rem;
    filter: blur(34px);
  }

  .ovms-feature-row--image-right .ovms-feature-media::after {
    inset: -0.4rem -0.4rem -2.1rem -2rem;
    filter: blur(34px);
  }

  .ovms-feature-row--image-right {
    grid-template-columns: 4fr 6fr;
  }

  .ovms-feature-row--image-right .ovms-feature-copy {
    order: -1;
  }

  .ovms-feature-copy {
    padding-inline: 0.35rem;
  }
}

/* Audit Services — alternating 30% image / 70% content */
@media (min-width: 900px) {
  .service-detail-page .about-page-continue:has(.audit-services),
  .service-detail-page .about-page-orange-band:has(.audit-services),
  .service-detail-page .about-page-continue:has(.dpdp-services),
  .service-detail-page .about-page-orange-band:has(.dpdp-services) {
    overflow: visible;
  }
}

/* Sit Audit / DPDP intros a little above where the fade settles to white */
.service-detail-page .about-page-continue:has(.dpdp-services),
.service-detail-page .about-page-continue:has(.audit-services) {
  padding-top: clamp(9rem, 19vh, 13rem);
}

.audit-services,
.dpdp-services {
  width: min(100%, 86rem);
  margin: 0 auto;
  padding: 3.5rem clamp(1rem, 3vw, 2.25rem) 7.5rem;
  padding-inline: clamp(1.25rem, 3.5vw, 2.5rem);
  box-sizing: border-box;
}

.audit-services-intro,
.dpdp-services-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 46rem;
  margin: 0 auto 5.5rem;
  text-align: center;
}

.audit-services-intro h2,
.dpdp-services-intro h2 {
  width: 100%;
  max-width: none;
  margin: 0 0 0.85rem;
  color: #1f140e;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.6vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  text-align: center;
}

.audit-services-intro p,
.dpdp-services-intro p {
  width: 100%;
  margin: 0;
  color: rgba(42, 28, 20, 0.72);
  font-size: 1.05rem;
  line-height: 1.65;
  text-align: center;
}

.audit-row {
  --audit-row-gap: 7.5rem;
  display: grid;
  gap: 1.75rem;
  align-items: center;
  margin: 0 0 var(--audit-row-gap);
}

.audit-row:last-child {
  margin-bottom: 0;
}

.audit-media {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  overflow: visible;
}

.audit-media::before {
  content: "";
  position: absolute;
  inset: 8% 6% 10% 6%;
  z-index: 0;
  border-radius: 1.75rem;
  background: radial-gradient(
    ellipse 78% 70% at 50% 48%,
    rgba(213, 187, 164, 0.42) 0%,
    rgba(180, 150, 126, 0.22) 48%,
    transparent 76%
  );
  filter: blur(28px);
  pointer-events: none;
}

.audit-media img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  max-width: 18rem;
  height: auto;
  margin-inline: auto;
  border: none;
  background: transparent;
  box-shadow: none;
  object-fit: contain;
}

/* Equal outer edges — flush checklist ink to section ends. Only meaningful
   once the row splits into two columns, so it lives in the 900px block; at
   mobile widths the row is a single column and the image stays centred. */

.audit-copy h3 {
  margin: 0 0 1.1rem;
  color: #c45c18;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.audit-copy > p {
  margin: 0 0 1.65rem;
  color: rgba(42, 28, 20, 0.8);
  font-size: 1.02rem;
  line-height: 1.75;
}

/* Audit / DPDP phase copy — dotted panel with soft fades & shades */
.audit-services .audit-copy,
.dpdp-services .audit-copy {
  position: relative;
  padding: clamp(1.35rem, 2.4vw, 2rem) clamp(1.35rem, 2.6vw, 2.15rem);
  border-radius: 1.35rem;
  border: 1.5px dotted rgba(196, 95, 28, 0.48);
  background:
    radial-gradient(
      ellipse 90% 70% at 12% 8%,
      rgba(255, 255, 255, 0.92) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse 75% 65% at 92% 88%,
      rgba(230, 122, 46, 0.14) 0%,
      transparent 58%
    ),
    linear-gradient(
      165deg,
      rgba(255, 250, 246, 0.96) 0%,
      rgba(255, 236, 220, 0.72) 46%,
      rgba(255, 247, 241, 0.94) 100%
    );
  box-shadow:
    0 14px 36px rgba(140, 95, 55, 0.1),
    0 4px 14px rgba(196, 95, 28, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 -1px 0 rgba(230, 122, 46, 0.08);
  overflow: hidden;
}

.audit-services .audit-copy::before,
.dpdp-services .audit-copy::before {
  content: "";
  position: absolute;
  inset: 0.55rem;
  border-radius: 1.05rem;
  border: 1px dotted rgba(230, 122, 46, 0.22);
  pointer-events: none;
  opacity: 0.9;
}

.audit-services .audit-copy::after,
.dpdp-services .audit-copy::after {
  content: "";
  position: absolute;
  inset: auto -18% -28% auto;
  width: 58%;
  height: 70%;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(230, 122, 46, 0.16) 0%,
    rgba(213, 187, 164, 0.1) 42%,
    transparent 72%
  );
  filter: blur(22px);
  pointer-events: none;
  z-index: 0;
}

.audit-services .audit-copy > *,
.dpdp-services .audit-copy > * {
  position: relative;
  z-index: 1;
}

.audit-services .audit-copy h3,
.dpdp-services .audit-copy h3 {
  margin-bottom: 1.15rem;
}

.audit-points {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.9rem;
}

.audit-points li {
  position: relative;
  padding-left: 1.55rem;
  color: rgba(42, 28, 20, 0.78);
  font-size: 0.98rem;
  line-height: 1.5;
}

.audit-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 0.85rem;
  height: 0.85rem;
  border: 1.75px solid #e67a2e;
  border-radius: 50%;
  box-sizing: border-box;
}

.audit-points li::after {
  content: "";
  position: absolute;
  left: 0.22rem;
  top: 0.52rem;
  width: 0.28rem;
  height: 0.45rem;
  border-right: 1.75px solid #e67a2e;
  border-bottom: 1.75px solid #e67a2e;
  transform: rotate(40deg);
}

@media (min-width: 900px) {
  .audit-row {
    --audit-row-gap: 9.5rem;
    grid-template-columns: 3fr 7fr;
    gap: 3.25rem;
  }

  .audit-row--image-right {
    grid-template-columns: 7fr 3fr;
  }

  .audit-row--image-right .audit-copy {
    order: -1;
  }

  .audit-media img {
    max-width: 18.5rem;
  }

  .audit-row--image-left .audit-media img {
    margin-inline: 0 auto;
    transform: translateX(-0.45rem);
  }

  .audit-row--image-right .audit-media img {
    margin-inline: auto 0;
    transform: translateX(0.45rem);
  }

  .audit-copy {
    padding-inline: 0;
  }

  .audit-services .audit-copy,
  .dpdp-services .audit-copy {
    padding: clamp(1.5rem, 2.5vw, 2.15rem) clamp(1.5rem, 2.7vw, 2.35rem);
  }
}

@media (max-width: 899px) {
  .audit-services,
  .dpdp-services {
    padding-top: 2.75rem;
    padding-bottom: 5.5rem;
  }

  .service-detail-page .about-page-continue:has(.dpdp-services),
  .service-detail-page .about-page-continue:has(.audit-services) {
    padding-top: clamp(6.5rem, 15vh, 9.5rem);
  }

  .audit-services-intro,
  .dpdp-services-intro {
    margin-bottom: 3.5rem;
  }

  .audit-row {
    --audit-row-gap: 5.25rem;
  }

  .audit-media {
    order: -1;
  }
}

/* ── AI - Infused Security Assessment ── */

.service-detail-page .about-page-continue:has(.ai-services) {
  padding-top: clamp(6.5rem, 15vh, 9.5rem);
}

.ai-services {
  position: relative;
  z-index: 1;
  max-width: 82rem;
  margin-inline: auto;
  padding: 3.25rem clamp(1.25rem, 4vw, 2.5rem) 5.75rem;
}

.ai-attack-surface {
  margin-bottom: 4.25rem;
}

.ai-attack-surface__header {
  display: grid;
  gap: 1.75rem 4.5rem;
  margin-bottom: clamp(2.75rem, 5vw, 4rem);
  align-items: start;
}

@media (min-width: 900px) {
  .ai-attack-surface__header {
    grid-template-columns: minmax(18rem, 0.42fr) minmax(0, 0.58fr);
    gap: 4rem 5rem;
  }
}

.ai-attack-surface__heading h2 {
  margin: 0;
  max-width: none;
  font-family: Outfit, system-ui, sans-serif;
  font-size: clamp(2.6rem, 5.4vw, 3.5rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.ai-attack-surface__accent {
  color: var(--teal-deep);
}

.ai-attack-surface__copy p {
  margin: 0;
  color: rgba(42, 28, 20, 0.68);
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.65;
}

.ai-attack-surface__copy p + p {
  margin-top: 1.15rem;
}

.ai-attack-surface__copy-strong {
  color: rgba(42, 28, 20, 0.86) !important;
  font-weight: 550;
}

.ai-attack-surface__diagram {
  position: relative;
  width: 100%;
  padding: clamp(2.25rem, 4vw, 3.25rem) clamp(1.25rem, 3vw, 2.5rem) clamp(1.75rem, 3vw, 2.35rem);
  border-radius: 1.5rem;
  border: 1.5px dashed rgba(196, 95, 28, 0.28);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.55) 0%,
      rgba(255, 247, 241, 0.82) 100%
    );
  overflow: hidden;
}

.ai-attack-surface__diagram-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(196, 95, 28, 0.13) 1.15px, transparent 1.15px);
  background-size: 16px 16px;
  pointer-events: none;
}

.ai-attack-surface__tree {
  position: relative;
  z-index: 1;
}

.ai-attack-surface__spine {
  position: relative;
  z-index: 1;
}

.ai-attack-surface__hub {
  position: relative;
  z-index: 2;
  width: min(100%, 24rem);
  margin: 0 auto;
  padding: 1.35rem 1.5rem 1.4rem;
  border-radius: 1.15rem;
  border: 1px solid rgba(230, 122, 46, 0.16);
  background: #fff;
  box-shadow:
    0 16px 36px rgba(140, 95, 55, 0.1),
    0 2px 8px rgba(140, 95, 55, 0.05);
  text-align: center;
}

.ai-attack-surface__hub-title {
  display: block;
  margin-bottom: 0.8rem;
  font-family: Outfit, system-ui, sans-serif;
  font-size: clamp(1.45rem, 2.6vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.ai-attack-surface__hub-pill {
  display: inline-block;
  padding: 0.48rem 1.05rem;
  border-radius: 999px;
  background: #e67a2e;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.ai-attack-surface__gap {
  height: 3.5rem;
}

.ai-attack-surface__connectors {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  z-index: 1;
  pointer-events: none;
  color: rgba(196, 95, 28, 0.42);
  overflow: visible;
}

.ai-attack-surface__nodes {
  position: relative;
  z-index: 2;
  display: grid;
  gap: clamp(1rem, 2.2vw, 1.5rem);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 100%;
}

.ai-attack-surface__node {
  padding: 1.35rem 1.2rem 1.25rem;
  border-radius: 1.15rem;
  border: 1px solid rgba(230, 122, 46, 0.12);
  background: #fff;
  box-shadow:
    0 12px 28px rgba(140, 95, 55, 0.08),
    0 2px 8px rgba(140, 95, 55, 0.04);
}

.ai-attack-surface__node h3 {
  margin: 0 0 0.2rem;
  font-family: Outfit, system-ui, sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.ai-attack-surface__node p {
  margin: 0 0 1rem;
  color: rgba(42, 28, 20, 0.55);
  font-size: 0.82rem;
  line-height: 1.4;
}

.ai-attack-surface__node--cia h3 {
  color: #c45c18;
}

.ai-attack-surface__node--domains h3 {
  color: #e67a2e;
}

.ai-attack-surface__node--genai {
  border: 1.5px dashed rgba(61, 46, 38, 0.28);
  box-shadow: none;
}

.ai-attack-surface__node--genai h3 {
  color: #3d2e26;
}

.ai-attack-surface__arrows {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.ai-attack-surface__arrows li {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 2.35rem;
  padding: 0.45rem 1.35rem 0.45rem 1.7rem;
  font-size: 0.88rem;
  font-weight: 550;
  color: rgba(28, 20, 16, 0.86);
  clip-path: polygon(0 0, calc(100% - 0.85rem) 0, 100% 50%, calc(100% - 0.85rem) 100%, 0 100%, 0.55rem 50%);
}

.ai-attack-surface__arrows li::before {
  content: "";
  position: absolute;
  left: 0.72rem;
  top: 50%;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  transform: translateY(-50%);
}

.ai-attack-surface__node--cia .ai-attack-surface__arrows li:nth-child(1) {
  background: #fff4ea;
}
.ai-attack-surface__node--cia .ai-attack-surface__arrows li:nth-child(2) {
  background: #ffe4cc;
}
.ai-attack-surface__node--cia .ai-attack-surface__arrows li:nth-child(3) {
  background: #ffd3ad;
}
.ai-attack-surface__node--cia .ai-attack-surface__arrows li:nth-child(4) {
  background: #f7bc88;
}
.ai-attack-surface__node--cia .ai-attack-surface__arrows li::before {
  background: #c45c18;
}

.ai-attack-surface__node--domains .ai-attack-surface__arrows li:nth-child(1) {
  background: #fff7f0;
}
.ai-attack-surface__node--domains .ai-attack-surface__arrows li:nth-child(2) {
  background: #ffe9d6;
}
.ai-attack-surface__node--domains .ai-attack-surface__arrows li:nth-child(3) {
  background: #ffd7b8;
}
.ai-attack-surface__node--domains .ai-attack-surface__arrows li:nth-child(4) {
  background: #f5b57a;
}
.ai-attack-surface__node--domains .ai-attack-surface__arrows li::before {
  background: #e67a2e;
}

.ai-attack-surface__node--genai .ai-attack-surface__arrows li:nth-child(1) {
  background: #f6f1ec;
}
.ai-attack-surface__node--genai .ai-attack-surface__arrows li:nth-child(2) {
  background: #ece4dc;
}
.ai-attack-surface__node--genai .ai-attack-surface__arrows li:nth-child(3) {
  background: #ddd2c7;
}
.ai-attack-surface__node--genai .ai-attack-surface__arrows li:nth-child(4) {
  background: #cbbcb0;
}
.ai-attack-surface__node--genai .ai-attack-surface__arrows li::before {
  background: #3d2e26;
}

.ai-coverage-intro {
  max-width: 46rem;
  margin: 0.5rem auto 2.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ai-coverage-intro h2 {
  margin: 0 0 1rem;
  max-width: none;
  text-align: center;
}

.ai-coverage-intro p {
  margin: 0;
  color: rgba(42, 28, 20, 0.78);
  font-size: 1.02rem;
  line-height: 1.7;
  text-align: center;
}

.ai-rows {
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
}

.ai-row {
  position: relative;
  border-radius: 1.35rem;
  border: 1px solid rgba(230, 122, 46, 0.2);
  background:
    linear-gradient(
      165deg,
      rgba(255, 255, 255, 0.96) 0%,
      rgba(255, 247, 241, 0.94) 100%
    );
  box-shadow:
    0 14px 36px rgba(140, 95, 55, 0.1),
    0 4px 14px rgba(196, 95, 28, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  overflow: hidden;
}

.ai-row::before {
  content: "";
  position: absolute;
  inset: 0.55rem;
  border-radius: 1.1rem;
  border: 1px dotted rgba(230, 122, 46, 0.22);
  pointer-events: none;
  z-index: 1;
}

.ai-row__body {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 1.5rem;
  align-items: center;
  padding: clamp(1.35rem, 2.5vw, 2rem);
}

.ai-row__copy {
  min-width: 0;
}

.ai-row__copy h3 {
  margin: 0 0 0.85rem;
  max-width: none;
  font-family: Outfit, system-ui, sans-serif;
  font-size: clamp(1.15rem, 2.2vw, 1.4rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--ink);
}

.ai-row__copy > p {
  margin: 0 0 1.1rem;
  color: rgba(42, 28, 20, 0.78);
  font-size: 0.98rem;
  line-height: 1.6;
}

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

.ai-row__points li {
  position: relative;
  padding-left: 1.35rem;
  color: rgba(42, 28, 20, 0.8);
  font-size: 0.92rem;
  line-height: 1.45;
}

.ai-row__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #f0954a, #e67a2e);
  box-shadow: 0 0 0 3px rgba(230, 122, 46, 0.12);
}

.ai-row__media {
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.85rem;
  border-radius: 1rem;
  border: 1px dotted rgba(230, 122, 46, 0.28);
  background: rgba(255, 255, 255, 0.72);
}

.ai-row__media img {
  display: block;
  width: 100%;
  max-width: 22rem;
  height: auto;
  border-radius: 0.85rem;
}

@media (min-width: 900px) {
  .ai-row__body {
    grid-template-columns: minmax(0, 1.15fr) minmax(14rem, 0.85fr);
    gap: clamp(1.5rem, 3vw, 2.5rem);
    padding: clamp(1.5rem, 2.8vw, 2.25rem);
  }

  .ai-row__media {
    justify-self: stretch;
  }

  .ai-row__media img {
    max-width: none;
  }
}

@media (max-width: 899px) {
  .ai-services {
    padding-top: 2.75rem;
    padding-bottom: 5.5rem;
  }

  .ai-attack-surface {
    margin-bottom: 3rem;
  }

  .ai-coverage-intro {
    margin-bottom: 2.25rem;
  }

  .ai-row__media {
    order: -1;
  }
}

@media (max-width: 767px) {
  .ai-attack-surface__nodes {
    grid-template-columns: 1fr;
    max-width: 22rem;
    margin-inline: auto;
  }

  .ai-attack-surface__connectors {
    display: none;
  }

  .ai-attack-surface__diagram {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.85rem;
  }
}


/* ——— News page: Recent Coverage (Oasis-style) ——— */
.news-coverage {
  padding: 4.5rem clamp(1.5rem, 5vw, 4.5rem) 4.75rem;
  padding-left: clamp(2rem, 6vw, 4.5rem);
  background:
    linear-gradient(180deg, #fff8f2 0%, #ffffff 55%, #fffaf6 100%);
  border-top: 1px solid rgba(196, 92, 24, 0.1);
}

.news-coverage__layout {
  display: grid;
  grid-template-columns: minmax(10rem, 0.34fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 3.5vw, 2.5rem);
  align-items: start;
  max-width: 78rem;
  margin: 0 auto;
}

.news-coverage__heading {
  margin: 0;
  font-family: Outfit, sans-serif;
  font-size: clamp(2.1rem, 4.2vw, 3.35rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: #2a1c14;
}

.news-coverage__slider {
  min-width: 0;
  display: grid;
  gap: 1.25rem;
}

.news-coverage__viewport {
  overflow: hidden;
  width: 100%;
}

.news-coverage__track {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.25rem;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.news-coverage__slide {
  flex: 0 0 calc((100% - 1.25rem) / 2);
  min-width: 0;
}

.news-coverage__card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 20rem;
  padding: 1.65rem 1.5rem 1.4rem;
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(196, 92, 24, 0.28);
  border-radius: 0.75rem;
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 247, 241, 0.92) 100%);
  transition: border-color 0.2s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.news-coverage__card:hover {
  border-color: rgba(196, 92, 24, 0.55);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(196, 92, 24, 0.1);
}

.news-coverage__arrow {
  position: absolute;
  top: 1.15rem;
  right: 1.15rem;
  display: grid;
  place-items: center;
  width: 2.55rem;
  height: 2.55rem;
  border-radius: 0.4rem;
  background: #fff;
  border: 1px solid rgba(196, 92, 24, 0.22);
  color: #c45c18;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.news-coverage__card:hover .news-coverage__arrow {
  background: linear-gradient(180deg, #e67a2e 0%, #c45c18 100%);
  border-color: transparent;
  color: #fffaf6;
}

.news-coverage__card-body {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-right: 3rem;
  height: 100%;
}

.news-coverage__card-body h3 {
  margin: 0;
  font-family: Outfit, sans-serif;
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.35;
  color: #2a1c14;
}

.news-coverage__card-body p {
  margin: 0;
  color: rgba(42, 28, 20, 0.68);
  font-family: "Source Sans 3", sans-serif;
  font-size: 0.98rem;
  line-height: 1.55;
}

.news-coverage__card-body time {
  margin-top: auto;
  padding-top: 0.85rem;
  font-family: "Source Sans 3", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(42, 28, 20, 0.72);
}

.news-coverage__nav {
  display: flex;
  gap: 0.65rem;
  justify-content: flex-start;
}

.news-coverage__nav-btn {
  appearance: none;
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.4rem;
  border: 1.5px solid rgba(42, 28, 20, 0.18);
  background: #ffffff;
  color: #2a1c14;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease, opacity 0.2s ease;
}

.news-coverage__nav-btn:hover:not(:disabled) {
  border-color: rgba(196, 92, 24, 0.5);
  color: #c45c18;
}

.news-coverage__nav-btn:disabled {
  opacity: 0.35;
  cursor: default;
  color: rgba(42, 28, 20, 0.35);
}

@media (max-width: 980px) {
  .news-coverage__layout {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .news-coverage__heading br {
    display: none;
  }
}

@media (max-width: 720px) {
  .news-coverage {
    padding-top: 3.25rem;
    padding-bottom: 3.5rem;
  }

  .news-coverage__slide {
    flex-basis: 100%;
  }

  .news-coverage__card {
    min-height: 15.5rem;
  }
}

/* ——— News page feed ——— */
.news-feed {
  padding: 5.5rem clamp(1.5rem, 5vw, 4.5rem) 5.5rem;
  padding-left: clamp(3rem, 12vw, 9rem);
  padding-right: clamp(1.5rem, 5vw, 4.5rem);
  background: #ffffff;
}

.news-feed .news-section-intro {
  margin-bottom: 1.75rem;
}

.news-live-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.65rem;
  margin: 0 0 1.5rem;
  max-width: 52rem;
  color: rgba(42, 28, 20, 0.62);
  font-size: 0.92rem;
  font-family: "Source Sans 3", sans-serif;
}

.news-live-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: #c45c18;
  box-shadow: 0 0 0 0 rgba(196, 92, 24, 0.45);
  animation: news-live-pulse 1.8s ease-out infinite;
}

@keyframes news-live-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(196, 92, 24, 0.45);
  }
  70% {
    box-shadow: 0 0 0 0.55rem rgba(196, 92, 24, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(196, 92, 24, 0);
  }
}

.news-live-label {
  font-weight: 600;
  color: var(--teal-deep);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.news-live-sep {
  opacity: 0.45;
}

.news-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 2.25rem;
  max-width: 52rem;
}

.news-filter {
  appearance: none;
  border: 1px solid rgba(196, 92, 24, 0.22);
  background: rgba(255, 247, 241, 0.85);
  color: rgba(42, 28, 20, 0.78);
  font-family: "Source Sans 3", sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.42rem 0.85rem;
  border-radius: 0.35rem;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.news-filter:hover {
  border-color: rgba(196, 92, 24, 0.45);
  color: #2a1c14;
}

.news-filter.is-active {
  background: linear-gradient(180deg, #e67a2e 0%, #c45c18 100%);
  border-color: transparent;
  color: #fffaf6;
}

.news-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 52rem;
  display: grid;
  gap: 0;
}

.news-item {
  padding: 1.55rem 0 1.65rem;
  border-top: 1px solid rgba(196, 92, 24, 0.14);
}

.news-item:last-child {
  border-bottom: 1px solid rgba(196, 92, 24, 0.14);
}

.news-item.is-hidden {
  display: none;
}

.news-item__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.85rem;
  margin-bottom: 0.55rem;
  font-family: "Source Sans 3", sans-serif;
  font-size: 0.86rem;
  color: rgba(42, 28, 20, 0.55);
}

.news-item__tag {
  color: var(--teal-deep);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.news-item__source {
  position: relative;
  padding-left: 0.85rem;
}

.news-item__source::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 0.28rem;
  height: 0.28rem;
  border-radius: 50%;
  background: rgba(196, 92, 24, 0.45);
  transform: translateY(-50%);
}

.news-item__title {
  margin: 0 0 0.55rem;
  font-family: Outfit, sans-serif;
  font-size: clamp(1.15rem, 2.2vw, 1.4rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.35;
  color: #2a1c14;
}

.news-item__title a {
  color: inherit;
  text-decoration: none;
}

.news-item__title a:hover {
  color: #c45c18;
}

.news-item__excerpt {
  margin: 0;
  max-width: 44rem;
  color: rgba(42, 28, 20, 0.68);
  font-family: "Source Sans 3", sans-serif;
  font-size: 1.02rem;
  line-height: 1.6;
}

.news-feed-note {
  margin: 2.25rem 0 0;
  max-width: 42rem;
  color: rgba(42, 28, 20, 0.5);
  font-family: "Source Sans 3", sans-serif;
  font-size: 0.9rem;
  line-height: 1.55;
}

@media (max-width: 720px) {
  .news-feed {
    padding-top: 3.5rem;
    padding-bottom: 4rem;
  }

  .news-item {
    padding: 1.25rem 0 1.35rem;
  }
}


/* ——— Contact us page ——— */
.contact-details {
  padding: 4.75rem clamp(1.5rem, 5vw, 4.5rem) 3.5rem;
  padding-left: clamp(3rem, 12vw, 9rem);
  padding-right: clamp(2rem, 7vw, 5.5rem);
  background: #ffffff;
}

.contact-details__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0;
  align-items: start;
  max-width: none;
  width: 100%;
  margin-inline: 0;
}

.contact-details__main {
  max-width: 22rem;
  text-align: left;
  justify-self: start;
  padding-right: clamp(1rem, 3vw, 2rem);
}

.contact-details__main .contact-section-intro {
  margin-bottom: 2.25rem;
  text-align: left;
}

.contact-details__main .contact-section-intro p {
  max-width: 20rem;
}

.contact-channels {
  display: grid;
  gap: 1.75rem;
  max-width: none;
  margin-bottom: 0;
}

.contact-email-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
}

.contact-email-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: #2a1c14;
  font-family: Outfit, sans-serif;
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  transition: color 0.2s ease;
}

.contact-email-link:hover {
  color: #c45c18;
}

.contact-email-link__icon {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.55rem;
  border: 1px solid rgba(196, 92, 24, 0.28);
  background: rgba(255, 247, 241, 0.95);
  color: #c45c18;
  flex-shrink: 0;
}

.contact-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-social a {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.55rem;
  border: 1px solid rgba(196, 92, 24, 0.22);
  background: #fffaf6;
  color: #2a1c14;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.contact-social a:hover,
.contact-social a:focus-visible {
  background: linear-gradient(180deg, #e67a2e 0%, #c45c18 100%);
  border-color: transparent;
  color: #fffaf6;
  transform: translateY(-2px);
  outline: none;
}

.contact-social svg {
  display: block;
}

.contact-locations {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: auto;
  gap: 5.75rem;
  justify-self: start;
  width: 100%;
  max-width: 28rem;
  margin-left: 0;
  margin-right: auto;
  padding-left: 1.75rem;
  border-left: none;
}

.contact-locations::before {
  display: none;
}

.contact-location {
  display: block;
  padding: 0.85rem 0;
  border: none;
  border-radius: 0;
  background: none;
  position: relative;
}

.contact-location:last-child {
  padding-bottom: 0.85rem;
}

.contact-location__rail {
  position: absolute;
  left: -1.4rem;
  top: 0;
  bottom: 0;
  z-index: 1;
  width: 0.7rem;
  margin: 0;
  transform: translateX(-50%);
  pointer-events: none;
}

.contact-location__rail::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  transform: translateX(-50%);
  background: rgba(196, 92, 24, 0.42);
  mask-image: linear-gradient(
    180deg,
    transparent 0%,
    #000 18%,
    #000 82%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    180deg,
    transparent 0%,
    #000 18%,
    #000 82%,
    transparent 100%
  );
}

.contact-location__rail::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: #e67a2e;
  box-shadow: 0 0 0 4px rgba(230, 122, 46, 0.14);
  transform: translate(-50%, -50%);
}

.contact-location__body {
  min-width: 0;
}

.contact-location__body .contact-location__label {
  margin: 0 0 0.7rem;
  color: var(--teal-deep);
  font-family: "Source Sans 3", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-location__body h3 {
  margin: 0 0 0.85rem;
  font-family: Outfit, sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #2a1c14;
}

.contact-location__body p:not(.contact-location__label) {
  margin: 0;
  color: rgba(42, 28, 20, 0.7);
  font-family: "Source Sans 3", sans-serif;
  font-size: 0.98rem;
  line-height: 1.55;
  max-width: none;
}

.contact-inquire {
  padding: 4.5rem clamp(1.5rem, 5vw, 4.5rem) 5.5rem;
  padding-left: clamp(3rem, 12vw, 9rem);
  display: flex;
  justify-content: flex-start;
  border-top: 1px solid rgba(196, 92, 24, 0.12);
  background:
    linear-gradient(90deg, rgba(255, 228, 205, 0.55) 0%, transparent 55%),
    linear-gradient(180deg, #fff7f1 0%, #ffefe4 100%);
}

.contact-inquire-panel {
  max-width: 44rem;
  width: 100%;
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
  box-shadow: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.contact-inquire-panel .eyebrow {
  color: var(--teal-deep);
  margin-left: 0.45em;
  margin-bottom: 1.75rem;
}

.contact-inquire-panel h2 {
  margin: 0 0 1.75rem;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

.contact-inquire-panel > p {
  margin: 0 0 2rem;
  color: rgba(42, 28, 20, 0.68);
  max-width: 40rem;
}

.contact-form {
  width: 100%;
  display: grid;
  gap: 1.35rem;
}

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

.contact-field {
  display: grid;
  gap: 0.4rem;
}

.contact-field--full {
  grid-column: 1 / -1;
}

.contact-field span {
  font-family: "Source Sans 3", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(42, 28, 20, 0.78);
}

.contact-field .required {
  color: #c45c18;
  text-decoration: none;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  border: 1px solid rgba(196, 92, 24, 0.22);
  border-radius: 0.45rem;
  background: #fffaf6;
  color: #2a1c14;
  font-family: "Source Sans 3", sans-serif;
  font-size: 1rem;
  padding: 0.75rem 0.9rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-field textarea {
  min-height: 8.5rem;
  resize: vertical;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: rgba(42, 28, 20, 0.4);
}

.contact-field input:focus,
.contact-field textarea:focus {
  outline: none;
  border-color: rgba(196, 92, 24, 0.55);
  box-shadow: 0 0 0 3px rgba(230, 122, 46, 0.14);
}

.contact-form .btn {
  justify-self: start;
}

.contact-form .form-captcha {
  margin-top: 0.15rem;
}

.contact-form-note {
  margin: 0;
  min-height: 1.25rem;
  color: rgba(42, 28, 20, 0.55);
  font-family: "Source Sans 3", sans-serif;
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .contact-details__layout {
    grid-template-columns: 1fr;
  }

  .contact-locations {
    justify-self: stretch;
    max-width: none;
    margin-left: 0;
  }
}

@media (max-width: 640px) {
  .contact-details,
  .contact-inquire {
    padding-left: clamp(1.5rem, 5vw, 4.5rem);
  }

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

/*
 * Touch targets — 44px minimum per Apple HIG / WCAG 2.5.5.
 * Coarse pointers cover phones and tablets at any width; the width query keeps
 * wide-desktop mouse layouts on their tighter original spacing.
 */
@media (pointer: coarse), (max-width: 800px) {
  /*
   * Padding rather than min-height + flex: these links hold wrapping text, and
   * a flex box refuses to shrink below its longest word, overflowing at 320px.
   */
  .footer-col a,
  .footer-heading a {
    display: block;
    padding-block: 0.8rem;
  }

  .logo {
    display: flex;
    align-items: center;
    min-height: 44px;
  }

  .framework-chip,
  .services-detail-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
  }

  /* Padding now supplies the separation, so tighten the list gap. */
  .footer-col ul {
    gap: 0.1rem;
  }

  /* 44px icons no longer fit one row inside a narrow footer column. */
  .footer-col ul.footer-social,
  .footer-social {
    flex-wrap: wrap;
    width: auto;
  }

  .footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
    padding-block: 0;
  }

  .nav-toggle,
  .testimonials-nav {
    width: 44px;
    height: 44px;
  }
}
