/* nanupur — deep black technology theme. */

:root {
  --ink: #ffffff;
  --ink-soft: #e8eaed;
  --ink-muted: #d1d5db;
  --paper: #000000;
  --paper-deep: #050505;
  --surface: #0a0a0a;
  --surface-elevated: #111111;
  --accent: #e8b86d;
  --accent-bright: #f0d4a8;
  --accent-deep: #ea580c;
  --accent-soft: rgba(249, 115, 22, 0.12);
  --orange: #f97316;
  --orange-deep: #fb923c;
  --orange-mid: #ea580c;
  --orange-soft: rgba(249, 115, 22, 0.14);
  --orange-wash: rgba(249, 115, 22, 0.08);
  --purple: #c4b5a0;
  --purple-deep: #a89b8c;
  --signal: #e8b86d;
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.18);
  --glow: 0 0 48px rgba(249, 115, 22, 0.22);
  --shadow-premium: 0 22px 48px rgba(0, 0, 0, 0.65);
  --shadow-soft: 0 10px 28px rgba(0, 0, 0, 0.5);
  /* Hero video: bright centre, darker margins (vignette) */
  --hero-wash: radial-gradient(
    ellipse 58% 52% at 50% 42%,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.08) 42%,
    rgba(0, 0, 0, 0.45) 72%,
    rgba(0, 0, 0, 0.82) 100%
  );
  --hero-wash-edges:
    linear-gradient(to right, rgba(0, 0, 0, 0.78) 0%, transparent 16%, transparent 84%, rgba(0, 0, 0, 0.78) 100%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.72) 0%, transparent 20%, transparent 68%, rgba(0, 0, 0, 0.8) 100%);
  --font-display: "Satoshi", "Instrument Sans", sans-serif;
  --font-body: "Instrument Sans", "Satoshi", sans-serif;
  --max: 1180px;
  --pad: clamp(0.85rem, 3.2vw, 2rem);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --radius: 0.85rem;
  --radius-sm: 0.5rem;
}

::selection {
  background: rgba(249, 115, 22, 0.4);
  color: #ffffff;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  color-scheme: dark;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.01em;
  background-color: var(--paper);
  background-image:
    radial-gradient(900px 480px at 0% -10%, rgba(249, 115, 22, 0.08), transparent 55%),
    radial-gradient(700px 400px at 100% 0%, rgba(255, 255, 255, 0.06), transparent 50%),
    linear-gradient(180deg, #000000 0%, #050505 45%, #000000 100%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: geometricPrecision;
  font-synthesis: none;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--orange);
}

h1,
h2,
h3,
.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.12;
  text-shadow: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1 {
  font-size: clamp(1.9rem, 4.5vw, 3.1rem);
  margin: 0 0 0.35rem;
  color: #ffffff;
}

h2 {
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  margin: 0 0 0.3rem;
  color: #f5f0eb;
}

h3 {
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
  margin: 0 0 0.2rem;
  letter-spacing: -0.03em;
  color: #e8b86d;
}

p {
  margin: 0 0 0.4rem;
  color: #f3f4f6;
  font-weight: 500;
}

p:last-child {
  margin-bottom: 0;
}

.wrap {
  width: min(100% - 2 * var(--pad), var(--max));
  margin-inline: auto;
}

 .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-bottom: 0.4rem;
  padding: 0.22rem 0.55rem 0.22rem 0.4rem;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #e8d5c4;
  background: rgba(232, 184, 109, 0.12);
  border: 1px solid rgba(232, 184, 109, 0.28);
  border-radius: 999px;
}

.eyebrow::before {
  content: "";
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #e8b86d, #c4a574);
}

/* Nav — high-contrast floating bar */
.nav {
  position: fixed;
  inset: 0.55rem 0 auto;
  z-index: 40;
  padding: 0;
  background: transparent;
  border-bottom: 0;
  transition: inset 0.35s var(--ease);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: min(100% - 2 * var(--pad), var(--max));
  margin-inline: auto;
  padding: 0.45rem 0.55rem 0.45rem 0.75rem;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.92), rgba(18, 18, 18, 0.94));
  backdrop-filter: blur(22px) saturate(1.4);
  border: 1px solid rgba(251, 146, 60, 0.55);
  border-radius: 999px;
  box-shadow:
    0 0 0 1px rgba(249, 115, 22, 0.1),
    0 12px 40px rgba(0, 0, 0, 0.55),
    0 0 28px rgba(251, 146, 60, 0.18);
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}

.nav.is-scrolled .nav-inner,
.nav.is-open .nav-inner {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.96), rgba(16, 16, 16, 0.97));
  border-color: rgba(249, 115, 22, 0.4);
  box-shadow:
    0 0 0 1px rgba(251, 146, 60, 0.25),
    0 16px 48px rgba(0, 0, 0, 0.6),
    0 0 32px rgba(249, 115, 22, 0.1);
}

.nav.is-scrolled,
.nav.is-open {
  padding: 0;
  background: transparent;
  border-bottom-color: transparent;
  box-shadow: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: clamp(0.65rem, 1.6vw, 0.95rem);
  text-decoration: none;
  color: var(--ink);
}

.brand:hover {
  color: var(--orange);
}

.brand:hover .brand-name {
  color: var(--orange);
}

.brand-mark {
  width: clamp(2.4rem, 3.8vw, 3.35rem);
  height: clamp(2.4rem, 3.8vw, 3.35rem);
  flex-shrink: 0;
  border-radius: 22%;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(194, 65, 12, 0.4);
}

.brand-mark img,
.brand-mark svg {
  width: 100%;
  height: 100%;
  display: block;
}

.brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.12rem;
  min-width: 0;
}

.brand-name {
  font-size: clamp(1.15rem, 2.1vw, 1.55rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1;
  color: #ffffff;
  text-transform: lowercase;
}

 .brand-tag {
  font-size: clamp(0.58rem, 0.95vw, 0.72rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.2;
  color: #c4b5a0;
}

@media (min-width: 1100px) {
  .brand-mark {
    width: 3.5rem;
    height: 3.5rem;
  }

  .brand-name {
    font-size: 1.65rem;
  }

  .brand-tag {
    font-size: 0.75rem;
  }
}

.nav-links {
  display: none;
  align-items: center;
  gap: 1.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

 .nav-links a {
  position: relative;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  color: #f1f5f9;
  transition: color 0.25s var(--ease);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #e8b86d, #c4a574);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

 .nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: #e8b86d;
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1rem;
  background: linear-gradient(135deg, #c2410c, #ea580c 55%, #fbbf24);
  color: #ffffff !important;
  text-decoration: none !important;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  border: 0;
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(234, 88, 12, 0.5);
  transition: background 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  color: #ffffff !important;
  background: linear-gradient(135deg, #9a3412, #c2410c 50%, #ea580c);
  box-shadow: 0 10px 28px rgba(234, 88, 12, 0.6);
  transform: translateY(-1px);
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--ink);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

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

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

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

.mobile-menu {
  display: none;
  position: absolute;
  top: calc(100% + 0.55rem);
  left: var(--pad);
  right: var(--pad);
  max-width: var(--max);
  margin-inline: auto;
  padding: 1rem 1.15rem 1.25rem;
  background: linear-gradient(160deg, rgba(0, 0, 0, 0.97), rgba(18, 18, 18, 0.97));
  backdrop-filter: blur(18px);
  border: 1px solid rgba(251, 146, 60, 0.45);
  border-radius: var(--radius);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55), 0 0 24px rgba(255, 255, 255, 0.05);
}

.nav.is-open .mobile-menu {
  display: grid;
  gap: 0.35rem;
}

.mobile-menu a {
  display: block;
  padding: 0.85rem 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  text-decoration: none;
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu a:hover,
.mobile-menu a[aria-current="page"] {
  color: #e8b86d;
}

.mobile-menu .nav-cta {
  margin-top: 0.75rem;
  text-align: center;
  color: #ffffff !important;
  border-bottom: none;
  background: linear-gradient(135deg, #ea580c, #f97316);
}

@media (min-width: 900px) {
  .menu-toggle,
  .mobile-menu {
    display: none !important;
  }

  .nav-links {
    display: flex;
  }
}

/* ??? Buttons ??? */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none !important;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  transition:
    background 0.3s var(--ease),
    color 0.3s var(--ease),
    border-color 0.3s var(--ease),
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}

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

.btn-primary {
  background: linear-gradient(135deg, #9a3412 0%, #c2410c 45%, #ea580c 100%);
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
  color: #ffffff !important;
  background: linear-gradient(135deg, #7c2d12 0%, #9a3412 50%, #c2410c 100%);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.4);
  color: #ffffff !important;
  backdrop-filter: blur(10px);
}

.btn-ghost:hover {
  background: rgba(124, 58, 237, 0.16);
  border-color: var(--accent);
  color: #fff !important;
}

.btn-ink {
  background: linear-gradient(135deg, #0c0f14 0%, #1e293b 100%);
  color: #ffffff !important;
  border-color: rgba(124, 58, 237, 0.35);
}

.btn-ink:hover {
  border-color: var(--accent);
  color: #fff !important;
  box-shadow: var(--glow);
}

.btn-outline {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--ink) !important;
}

.btn-outline:hover {
  border-color: var(--accent-deep);
  color: var(--ink) !important;
  background: var(--accent-soft);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.55rem;
}

/* ??? Hero ??? */
.hero {
  position: relative;
  min-height: 58svh;
  display: flex;
  align-items: flex-end;
  color: #ffffff;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media video,
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: hero-drift 32s ease-in-out infinite alternate;
  filter: saturate(1.12) contrast(1.08) brightness(1.18);
}

@keyframes hero-drift {
  from {
    transform: scale(1.05) translate(0, 0);
  }
  to {
    transform: scale(1.12) translate(-1.2%, -0.8%);
  }
}

.hero-wash {
  position: absolute;
  inset: 0;
  background: var(--hero-wash);
  z-index: 1;
}

/* Video heroes: centre-bright radial + dark edge gradients on all margins */
.hero:not(.hero-static) .hero-wash {
  background:
    var(--hero-wash),
    var(--hero-wash-edges);
}

.hero-wash::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 42% 38% at 50% 40%, rgba(255, 255, 255, 0.1) 0%, transparent 65%),
    radial-gradient(ellipse 72% 68% at 50% 45%, transparent 28%, rgba(0, 0, 0, 0.35) 78%, rgba(0, 0, 0, 0.7) 100%);
  pointer-events: none;
}

.hero:not(.hero-static) .hero-wash::after {
  background:
    radial-gradient(ellipse 44% 40% at 50% 40%, rgba(255, 255, 255, 0.12) 0%, transparent 62%),
    radial-gradient(ellipse 70% 65% at 50% 45%, transparent 25%, rgba(0, 0, 0, 0.28) 70%, rgba(0, 0, 0, 0.72) 100%),
    linear-gradient(to right, rgba(0, 0, 0, 0.55) 0%, transparent 14%, transparent 86%, rgba(0, 0, 0, 0.55) 100%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, transparent 18%, transparent 72%, rgba(0, 0, 0, 0.65) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100% - 2 * var(--pad), var(--max));
  margin: 0 auto;
  padding: 4.25rem 0 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 6.5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.9;
  margin: 0;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55);
  color: #ffffff;
  text-transform: lowercase !important;
  text-shadow: none;
  opacity: 0;
  transform: translateY(1.4rem);
  animation: rise 1s var(--ease) 0.12s forwards;
}

.hero-brand span {
  color: #ffffff;
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  -webkit-text-fill-color: #ffffff;
  text-transform: lowercase !important;
}

 .hero h1 {
  max-width: 22ch;
  font-size: clamp(1.15rem, 2.4vw, 1.65rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.2;
  margin: 0;
  color: #f5f0eb;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: translateY(1.4rem);
  animation: rise 1s var(--ease) 0.28s forwards;
}

.hero-sub {
  max-width: 34rem;
  margin: 0;
  padding: 0.45rem 0.7rem;
  font-size: clamp(0.82rem, 1.1vw, 0.9rem);
  font-weight: 500;
  line-height: 1.45;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-sm);
  backdrop-filter: blur(14px);
  opacity: 0;
  transform: translateY(1.4rem);
  animation: rise 1s var(--ease) 0.42s forwards;
}

.hero .cta-row {
  margin-top: 0.15rem;
  opacity: 0;
  transform: translateY(1.4rem);
  animation: rise 1s var(--ease) 0.56s forwards;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-compact {
  min-height: 36svh;
}

.hero-compact .hero-content {
  padding-bottom: 1.15rem;
  gap: 0.4rem;
}

/* Slim page heroes (Contact, Careers) — no tall empty space */
.hero-page {
  min-height: 0;
  align-items: flex-end;
  padding-top: 4.5rem;
  padding-bottom: 0.25rem;
}

.hero-page .hero-content {
  padding-top: 0.55rem;
  padding-bottom: 0.75rem;
  gap: 0.3rem;
}

.hero-page .hero-brand {
  font-size: clamp(1.65rem, 4.5vw, 2.4rem);
  margin-bottom: 0;
}

 .hero-page h1 {
  max-width: none;
  font-size: clamp(1.25rem, 2.6vw, 1.7rem);
  margin-bottom: 0;
  color: #f5f0eb;
}

.hero-page .hero-sub {
  max-width: 28rem;
  margin: 0;
  padding: 0.35rem 0.6rem;
  font-size: 0.85rem;
}

.hero-static .hero-media {
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(249, 115, 22, 0.1), transparent 55%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(255, 255, 255, 0.1), transparent 50%),
    linear-gradient(145deg, #000000 0%, #0c0c0c 48%, #141414 100%);
}

.hero-static .hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(124, 58, 237, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 58, 237, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  z-index: 0;
}

/* ??? Sections ??? */
.section {
  padding: clamp(1.15rem, 2.5vw, 1.85rem) 0;
  position: relative;
}

.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(100% - 2 * var(--pad), var(--max));
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(194, 65, 12, 0.35) 20%,
    rgba(0, 0, 0, 0.55) 50%,
    rgba(194, 65, 12, 0.35) 80%,
    transparent
  );
  opacity: 0.75;
  pointer-events: none;
}

.section:first-of-type::before,
.hero + .section::before {
  opacity: 0;
}

.section-head {
  max-width: 40rem;
  margin-bottom: clamp(0.55rem, 1.4vw, 0.85rem);
}

.section-head p {
  color: var(--ink-muted);
  font-size: 0.88rem;
  margin: 0;
}

.section-muted {
  background:
    radial-gradient(700px 320px at 80% 0%, rgba(255, 255, 255, 0.05), transparent 55%),
    linear-gradient(180deg, #080808 0%, #0b0b0b 50%, #050505 100%);
  border-block: 1px solid rgba(255, 255, 255, 0.06);
}

.section-ink {
  background:
    radial-gradient(700px 360px at 85% 15%, rgba(249, 115, 22, 0.1), transparent 55%),
    radial-gradient(500px 280px at 10% 80%, rgba(255, 255, 255, 0.1), transparent 50%),
    linear-gradient(160deg, #000000 0%, #0c0c0c 48%, #141414 100%);
  color: #ffffff;
  border-block: 1px solid rgba(249, 115, 22, 0.1);
}

.section-ink .section-head p,
.section-ink .lede {
  color: #e5e7eb;
}

.section-ink .eyebrow {
  color: #fed7aa;
  background: rgba(194, 65, 12, 0.35);
  border-color: rgba(125, 211, 252, 0.4);
}

.band .eyebrow {
  color: #cbd5e1;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(125, 211, 252, 0.35);
}

.section-ink .eyebrow::before {
  background: linear-gradient(135deg, #7dd3fc, #c2410c);
}

.section-ink .feature-list li {
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
}

.section-ink .feature-list li::before {
  background: linear-gradient(135deg, var(--orange), var(--accent-bright));
  box-shadow: 0 0 10px rgba(249, 115, 22, 0.3);
}

 .lede {
  color: #f8fafc;
  font-size: 0.95rem;
}

/* Capabilities */
.capability-flow {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line-strong);
  margin: 0;
  padding: 0;
}

.capability-flow li {
  display: grid;
  grid-template-columns: 0.75rem 1fr;
  gap: 1rem 1.1rem;
  align-items: baseline;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--line);
  list-style: none;
  transition: padding-left 0.35s var(--ease), background 0.35s var(--ease);
}

.capability-flow li::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  margin-top: 0.45rem;
  background: var(--accent-bright);
  box-shadow: 0 0 8px rgba(124, 58, 237, 0.55);
  flex-shrink: 0;
}

.capability-flow li:hover {
  padding-left: 0.5rem;
  background: linear-gradient(90deg, var(--accent-soft), transparent 60%);
}

/* Legacy span kept empty if present ? prefer CSS bullet via ::before */
.capability-index {
  display: none;
}

.capability-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.08rem;
  letter-spacing: -0.02em;
}

/* Benefits — modern bento */
.benefit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.4rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

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

  .benefit-grid li:nth-child(1) {
    grid-column: span 3;
  }

  .benefit-grid li:nth-child(2) {
    grid-column: span 3;
  }

  .benefit-grid li:nth-child(3),
  .benefit-grid li:nth-child(4),
  .benefit-grid li:nth-child(5) {
    grid-column: span 2;
  }
}

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

  .benefit-grid li:nth-child(1),
  .benefit-grid li:nth-child(2),
  .benefit-grid li:nth-child(3),
  .benefit-grid li:nth-child(4),
  .benefit-grid li:nth-child(5) {
    grid-column: span 1;
  }
}

.benefit-grid li {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 4rem;
  padding: 0.85rem 0.9rem 0.8rem;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.04) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
  letter-spacing: -0.03em;
  color: #cbd5e1;
  overflow: hidden;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.benefit-grid li::after {
  content: "";
  position: absolute;
  top: -30%;
  right: -20%;
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06), transparent 70%);
  pointer-events: none;
}

.benefit-grid li:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 0, 0, 0.4);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.25);
}

.benefit-grid li::before {
  content: "";
  position: absolute;
  left: 0.9rem;
  top: 0.9rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #c2410c, #9a3412);
  box-shadow: 0 0 10px rgba(194, 65, 12, 0.45);
}

/* Outcomes — dark tech panel */
.outcomes-panel {
  background:
    radial-gradient(720px 320px at 100% 0%, rgba(249, 115, 22, 0.08), transparent 55%),
    radial-gradient(560px 280px at 0% 100%, rgba(255, 255, 255, 0.06), transparent 50%),
    linear-gradient(180deg, #050505 0%, #0b0b0b 55%, #080808 100%);
  border-block: 1px solid rgba(255, 255, 255, 0.06);
}

.outcomes-panel .section-head h2 {
  color: #f5f0eb;
}

.outcomes-panel .section-head p {
  color: #e8d5c4;
}

.outcomes-panel .benefit-grid li {
  color: #cbd5e1;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.05) 100%);
  border-color: rgba(255, 255, 255, 0.1);
}

/* Feature bands — editorial image + copy */
.feature-band {
  display: grid;
  gap: clamp(0.85rem, 2vw, 1.35rem);
  align-items: center;
  margin-bottom: clamp(1.15rem, 2.5vw, 1.85rem);
  background: transparent;
  border: 0;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  transition: none;
}

/* Services showcase — premium dark panel + compact image+text cards */
.services-showcase {
  background:
    radial-gradient(900px 420px at 10% 0%, rgba(255, 255, 255, 0.06), transparent 55%),
    radial-gradient(700px 380px at 90% 100%, rgba(255, 255, 255, 0.06), transparent 50%),
    linear-gradient(180deg, #0a0a0a 0%, #111111 48%, #0a0a0a 100%);
  color: #e8eef8;
  border-block: 1px solid rgba(255, 255, 255, 0.06);
}

.services-showcase .section-head h2 {
  color: #f5f0eb;
}

.services-showcase .section-head p {
  color: #e2e8f0;
}

.services-showcase .eyebrow {
  color: #e8d5c4;
  background: rgba(232, 184, 109, 0.12);
  border-color: rgba(232, 184, 109, 0.28);
}

.capability-bento {
  display: grid;
  gap: 0.55rem;
}

@media (min-width: 800px) {
  .capability-bento {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
  }
}

.cap-card {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.8rem 0.9rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.04) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: calc(var(--radius) + 0.15rem);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition:
    transform 0.35s var(--ease),
    border-color 0.35s var(--ease),
    background 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
}

.cap-card:hover {
  transform: translateY(-3px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border-color: rgba(249, 115, 22, 0.35);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* Tiny visual accent — not a hero image */
.cap-card-media {
  position: relative;
  flex: 0 0 3.25rem;
  width: 3.25rem;
  height: 3.25rem;
  margin-top: 0.15rem;
  overflow: hidden;
  border-radius: 0.65rem;
  background: #0a0c10;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.cap-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(249, 115, 22, 0.28), rgba(255, 255, 255, 0.1));
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.cap-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.15) contrast(1.05) brightness(0.85);
  transition: transform 0.7s var(--ease);
}

.cap-card:hover .cap-card-media img {
  transform: scale(1.08);
}

.cap-card-copy {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
  flex: 1;
}

.cap-card-index,
.cap-card-copy > .cap-card-index,
span.cap-card-index {
  display: none !important;
  visibility: hidden !important;
  font-size: 0 !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
}

.cap-card-copy h3 {
  margin: 0;
  font-size: clamp(1.02rem, 1.6vw, 1.18rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #e8b86d;
}

.cap-card-copy .pillar-tagline {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #a8a29e !important;
}

 .cap-card-copy > p:not(.pillar-tagline) {
  margin: 0.2rem 0 0.15rem;
  font-size: 0.86rem;
  line-height: 1.5;
  color: #ffffff;
  font-weight: 500;
}

.cap-card-copy .text-link {
  margin-top: 0.35rem;
  align-self: flex-start;
  font-size: 0.8rem;
  font-weight: 700;
  color: #e8b86d;
}

.cap-card-copy .text-link:hover {
  color: #f0d4a8;
}

@media (max-width: 639px) {
  .cap-card {
    gap: 0.7rem;
    padding: 0.9rem 0.95rem;
  }

  .cap-card-media {
    flex-basis: 2.75rem;
    width: 2.75rem;
    height: 2.75rem;
  }
}

/* Legacy service-feature (kept for older pages if referenced) */
.service-feature {
  display: grid;
  gap: 1.15rem;
  align-items: center;
  margin-bottom: clamp(1.75rem, 4vw, 2.75rem);
}

.service-feature:last-child {
  margin-bottom: 0;
}

@media (min-width: 860px) {
  .service-feature {
    grid-template-columns: 0.85fr 1.15fr;
    gap: clamp(1.25rem, 2.5vw, 2rem);
  }

  .service-feature-reverse .service-feature-media {
    order: 2;
  }

  .service-feature-reverse .service-feature-copy {
    order: 1;
  }
}

.service-feature-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  max-height: 16rem;
  border-radius: calc(var(--radius) + 0.45rem);
  background: #0a0c10;
  border: 1px solid rgba(203, 213, 225, 0.14);
  box-shadow:
    0 32px 70px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.service-feature-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, transparent 24%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 40%),
    linear-gradient(180deg, transparent 45%, rgba(10, 8, 6, 0.72) 100%);
  pointer-events: none;
}

.service-feature-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  pointer-events: none;
}

.service-feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.12) contrast(1.08) brightness(0.88);
  transform: scale(1.02);
  transition: transform 1.1s var(--ease), filter 1.1s var(--ease);
}

.service-feature:hover .service-feature-media img {
  transform: scale(1.07);
  filter: saturate(1.18) contrast(1.1) brightness(0.95);
}

.service-feature-caption {
  display: none;
}

.service-feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0.25rem 0;
}

.service-feature-copy h3 {
  margin: 0 0 0.35rem;
  color: #c4b5a0;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
}

.service-feature-copy > p {
  color: #e5e7eb;
  font-size: 0.95rem;
  line-height: 1.65;
}

.services-showcase .pillar-tagline {
  color: #a8a29e !important;
  font-weight: 600;
}

.services-showcase .text-link {
  color: #e8b86d;
}

.services-showcase .text-link:hover {
  color: #f0d4a8;
}

@media (max-width: 639px) {
  .service-feature-media {
    aspect-ratio: 16 / 11;
    max-height: 12rem;
  }
}

/* Solutions showcase — premium dark panel */
.solutions-showcase {
  background:
    radial-gradient(860px 400px at 85% 0%, rgba(255, 255, 255, 0.06), transparent 55%),
    radial-gradient(720px 360px at 5% 100%, rgba(255, 255, 255, 0.06), transparent 52%),
    linear-gradient(165deg, #080808 0%, #111111 50%, #0a0a0a 100%);
  color: #e8eef8;
  border-block: 1px solid rgba(255, 255, 255, 0.06);
}

.solutions-showcase .section-head h2 {
  color: #f5f0eb;
}

.solutions-showcase .section-head p {
  color: #e2e8f0;
}

.solutions-showcase .eyebrow {
  color: #e8d5c4;
  background: rgba(232, 184, 109, 0.12);
  border-color: rgba(232, 184, 109, 0.28);
}

.pillar-chips {
  display: grid;
  gap: 0.55rem;
  margin: 0 0 clamp(1.25rem, 3vw, 1.85rem);
  padding: 0;
  list-style: none;
}

@media (min-width: 720px) {
  .pillar-chips {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
  }
}

.pillar-chips li {
  display: grid;
  gap: 0.2rem;
  padding: 0.95rem 1.05rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(203, 213, 225, 0.12);
  border-radius: var(--radius);
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease), transform 0.3s var(--ease);
}

.pillar-chips li:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(249, 115, 22, 0.28);
  transform: translateY(-2px);
}

.pillar-chips strong {
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #e8b86d;
}

.pillar-chips span {
  font-size: 0.82rem;
  line-height: 1.4;
  color: #f3f4f6;
}

.solution-bento {
  margin-top: 0;
}

/* multi-color titles handled by .capability-bento nth-child rules */

/* Legacy pillar-bento (services page still uses it) */
.pillar-bento {
  display: grid;
  gap: 0.75rem;
  margin-bottom: clamp(1.5rem, 3.5vw, 2.25rem);
}

@media (min-width: 800px) {
  .pillar-bento {
    grid-template-columns: 1.4fr 1fr;
    grid-template-rows: 1fr 1fr;
    min-height: 18rem;
    gap: 0.85rem;
  }

  .pillar-card-hero {
    grid-row: 1 / span 2;
  }
}

.pillar-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  min-height: 10rem;
  border-radius: calc(var(--radius) + 0.35rem);
  border: 1px solid rgba(203, 213, 225, 0.14);
  background: #0a0c10;
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.35);
}

.pillar-card-hero {
  min-height: 12rem;
}

@media (min-width: 800px) {
  .pillar-card,
  .pillar-card-hero {
    min-height: 100%;
  }
}

.pillar-card img {
  width: 100%;
  height: 100%;
  min-height: 10rem;
  object-fit: cover;
  display: block;
  filter: saturate(1.1) contrast(1.08) brightness(0.82);
  transition: transform 1s var(--ease), filter 1s var(--ease);
}

@media (min-width: 800px) {
  .pillar-card img {
    position: absolute;
    inset: 0;
    min-height: 100%;
  }
}

.pillar-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, transparent 28%),
    linear-gradient(180deg, transparent 40%, rgba(10, 8, 6, 0.82) 100%);
  pointer-events: none;
}

.pillar-card:hover img {
  transform: scale(1.05);
  filter: saturate(1.15) contrast(1.1) brightness(0.9);
}

.pillar-card-body {
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.9rem;
  z-index: 2;
  display: grid;
  gap: 0.2rem;
  padding: 0.85rem 0.95rem;
  background: rgba(12, 10, 8, 0.48);
  border: 1px solid rgba(203, 213, 225, 0.16);
  border-radius: var(--radius-sm);
  backdrop-filter: blur(16px) saturate(1.2);
}

.pillar-card-body strong {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #c4b5a0;
}

.pillar-card-body span {
  font-size: 0.82rem;
  color: #e5e7eb;
  line-height: 1.4;
}

.solution-catalogue {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.solution-catalogue li {
  display: grid;
  gap: 0.35rem;
  padding: 1.05rem 1.15rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(203, 213, 225, 0.12);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.solution-catalogue li:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(249, 115, 22, 0.28);
  transform: translateY(-2px);
}

@media (min-width: 720px) {
  .solution-catalogue li {
    grid-template-columns: minmax(11rem, 0.38fr) 1fr;
    gap: 1.35rem;
    align-items: start;
    padding: 1.15rem 1.35rem;
  }
}

.solution-catalogue h3 {
  margin: 0;
  color: #c4b5a0;
  font-size: 1.02rem;
}

.solution-catalogue p {
  margin: 0;
  color: #e5e7eb;
  font-size: 0.92rem;
  line-height: 1.55;
}

@media (max-width: 639px) {
  .pillar-card-body {
    left: 0.65rem;
    right: 0.65rem;
    bottom: 0.65rem;
    padding: 0.7rem 0.8rem;
  }

  .solution-catalogue li {
    padding: 0.9rem 1rem;
  }
}

/* Services page — grouped premium catalogue */
.services-page {
  background:
    radial-gradient(900px 420px at 0% 0%, rgba(249, 115, 22, 0.08), transparent 55%),
    radial-gradient(760px 380px at 100% 40%, rgba(255, 255, 255, 0.06), transparent 50%),
    linear-gradient(180deg, #000000 0%, #0b0b0b 45%, #000000 100%);
  color: #e8eef8;
  border-block: 1px solid rgba(255, 255, 255, 0.06);
}

.services-page .section-head h2 {
  color: #f5f0eb;
}

.services-page .section-head p {
  color: #e2e8f0;
}

.services-page .eyebrow {
  color: #e8d5c4;
  background: rgba(232, 184, 109, 0.12);
  border-color: rgba(232, 184, 109, 0.28);
}

.service-groups {
  display: grid;
  gap: clamp(0.85rem, 2vw, 1.25rem);
}

.service-group-head {
  margin-bottom: 0.5rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(232, 184, 109, 0.22);
}

.service-group-head h3 {
  margin: 0 0 0.3rem;
  color: #e8b86d;
  font-size: clamp(1.2rem, 2.2vw, 1.45rem);
}



.service-group-head p {
  margin: 0;
  color: #e8eaed;
  font-size: 0.9rem;
}

.services-page .cap-card-copy h3 {
  font-size: clamp(0.98rem, 1.5vw, 1.1rem);
}

.feature-band:hover {
  transform: none;
  box-shadow: none;
}

.feature-band:last-child {
  margin-bottom: 0;
}

@media (min-width: 860px) {
  .feature-band {
    grid-template-columns: 1.12fr 0.88fr;
    gap: clamp(1.35rem, 3vw, 2.25rem);
  }

  .feature-band-reverse .media-stage {
    order: 2;
  }

  .feature-band-reverse .feature-band-copy {
    order: 1;
  }
}

/* Premium media stage — glow plate + framed image */
.media-stage {
  position: relative;
  isolation: isolate;
}

.media-stage-plate {
  position: absolute;
  inset: 10% -3% -4% 6%;
  z-index: 0;
  border-radius: calc(var(--radius) + 0.55rem);
  background:
    linear-gradient(145deg, rgba(249, 115, 22, 0.1), rgba(124, 58, 237, 0.18));
  filter: blur(0.5px);
  transform: rotate(1.5deg);
  pointer-events: none;
}

.media-stage-plate-alt {
  inset: -4% 5% 8% -3%;
  transform: rotate(-2deg);
  background:
    linear-gradient(210deg, rgba(124, 58, 237, 0.22), rgba(255, 255, 255, 0.06));
}

.media-stage-tall .media-frame {
  aspect-ratio: 5 / 5.2;
}

@media (min-width: 880px) {
  .media-stage-tall .media-frame {
    aspect-ratio: 5 / 5.4;
  }
}

.media-frame {
  position: relative;
  z-index: 1;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border-radius: calc(var(--radius) + 0.35rem);
  background: #0a0c10;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 28px 64px rgba(18, 8, 31, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.media-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, transparent 28%),
    linear-gradient(135deg, rgba(124, 58, 237, 0.12), transparent 42%),
    linear-gradient(180deg, transparent 50%, rgba(8, 12, 20, 0.45) 100%);
  pointer-events: none;
}

.media-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.media-frame img,
.feature-band-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.1s var(--ease), filter 1.1s var(--ease);
  filter: saturate(1.05) contrast(1.06) brightness(0.94);
}

.media-stage:hover .media-frame img,
.feature-band:hover .media-frame img {
  transform: scale(1.045);
  filter: saturate(1.1) contrast(1.08) brightness(1);
}

/* Legacy feature-band-media support */
.feature-band-media {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius) + 0.35rem);
  background: #0c0f14;
  aspect-ratio: 16 / 11;
  box-shadow: 0 28px 64px rgba(18, 8, 31, 0.16);
}

.feature-band-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 42%, rgba(8, 12, 20, 0.5) 100%),
    linear-gradient(135deg, rgba(124, 58, 237, 0.12), transparent 45%);
  pointer-events: none;
  z-index: 1;
}

.media-label {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 2;
  padding: 0.5rem 0.9rem;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
}

.feature-band-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0.25rem 0;
}

.feature-band-copy .eyebrow {
  margin-bottom: 0.45rem;
  color: var(--orange-deep);
}

.feature-band-copy h3 {
  margin-bottom: 0.25rem;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  color: var(--orange-deep);
}

.feature-band-copy > p {
  color: var(--ink-muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.pillar-tagline {
  color: #a8a29e !important;
  font-weight: 600;
  margin-bottom: 0.4rem !important;
}

.text-link {
  display: inline-flex;
  margin-top: 0.4rem;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--orange-deep);
  text-decoration: none;
}

.text-link:hover {
  color: var(--orange);
}

/* Pillars */
.pillar-list {
  display: grid;
  gap: 0.5rem;
  background: transparent;
  border: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  box-shadow: none;
}

.pillar-list a {
  display: grid;
  gap: 0.45rem;
  padding: clamp(1rem, 2vw, 1.4rem);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease), background 0.35s var(--ease);
}

.pillar-list a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--orange), var(--accent));
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}

.pillar-list a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: inherit;
  transform: translateY(-4px);
  border-color: rgba(99, 102, 241, 0.35);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4);
}

.pillar-list a:hover::before {
  opacity: 1;
}

.pillar-list a:hover .pillar-link {
  color: var(--orange);
}

.pillar-kicker {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.pillar-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink-soft);
  transition: color 0.25s var(--ease);
}

.pillar-tagline {
  font-weight: 500;
  color: #a8a29e !important;
  margin-bottom: 0.5rem !important;
}

.pillar-list-visual {
  gap: 0.65rem;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.pillar-list-visual a {
  padding: 0;
  display: grid;
  grid-template-rows: auto 1fr;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-premium);
}

.pillar-list-visual a::before {
  display: none;
}

.pillar-media {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #0a0c10;
  position: relative;
}

.pillar-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, transparent 30%),
    linear-gradient(180deg, transparent 55%, rgba(8, 12, 20, 0.35) 100%);
  pointer-events: none;
}

.pillar-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease), filter 0.9s var(--ease);
  filter: saturate(1.05) contrast(1.06) brightness(0.94);
}

.pillar-list-visual a:hover .pillar-media img {
  transform: scale(1.05);
  filter: saturate(1.1) contrast(1.08) brightness(1);
}

.pillar-body {
  display: grid;
  gap: 0.45rem;
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
}

.pillar-body p {
  font-size: 0.95rem;
  color: var(--ink-muted);
}

.split-visual {
  align-items: center;
}

.visual-panel {
  position: relative;
  overflow: hidden;
  width: 100%;
  border: 0;
  border-radius: calc(var(--radius) + 0.35rem);
  background: #0a0c10;
  box-shadow: none;
}

.media-frame.visual-panel {
  margin: 0;
}

.visual-panel img {
  width: 100%;
  height: 100%;
  display: block;
  aspect-ratio: inherit;
  min-height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.06) brightness(0.94);
  transition: transform 1.1s var(--ease), filter 1.1s var(--ease);
}

.visual-panel-premium::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, transparent 30%),
    linear-gradient(180deg, transparent 45%, rgba(8, 12, 20, 0.72) 100%);
  pointer-events: none;
}

.visual-panel-premium::after {
  content: none;
}

.media-stage:hover .visual-panel img,
.visual-panel-premium:hover img {
  transform: scale(1.04);
  filter: saturate(1.1) contrast(1.08) brightness(1);
}

.visual-panel-meta {
  position: absolute;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.75rem;
  z-index: 4;
  display: grid;
  gap: 0.15rem;
  margin: 0;
  padding: 0.7rem 0.85rem;
  color: #fff;
  background: rgba(12, 15, 20, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-sm);
  backdrop-filter: blur(18px) saturate(1.2);
}

.visual-panel-meta strong {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.visual-panel-meta span {
  font-size: 0.82rem;
  color: #e8eaed;
}

.section-bg-image {
  background-image:
    linear-gradient(160deg, rgba(26, 10, 8, 0.92) 0%, rgba(124, 45, 18, 0.85) 48%, rgba(194, 65, 12, 0.78) 100%),
    var(--section-bg);
  background-size: cover;
  background-position: center;
  border-radius: 0;
}

/* Showcase bento — asymmetric premium grid */
.media-row,
.media-bento {
  display: grid;
  gap: 0.55rem;
}

.media-bento {
  margin-bottom: clamp(0.85rem, 2vw, 1.25rem);
}

.media-bento-compact {
  margin-bottom: clamp(1rem, 2.2vw, 1.5rem);
}

@media (min-width: 800px) {
  .media-bento {
    grid-template-columns: 1.35fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 0.5rem;
    min-height: 17rem;
  }

  .media-bento .media-tile-hero {
    grid-row: 1 / span 2;
  }

  .media-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.65rem;
  }
}

.media-tile {
  margin: 0;
  overflow: hidden;
  border: 0;
  border-radius: calc(var(--radius) + 0.2rem);
  background: transparent;
  box-shadow: none;
  display: block;
  height: 100%;
  transition: transform 0.4s var(--ease);
}

.media-tile:hover {
  transform: translateY(-3px);
}

.media-tile-frame {
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: 10rem;
  background: #0a0c10;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 22px 48px rgba(18, 8, 31, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.media-tile-hero .media-tile-frame {
  min-height: 14rem;
}

@media (min-width: 800px) {
  .media-tile-frame {
    min-height: 100%;
  }

  .media-tile-hero .media-tile-frame {
    min-height: 100%;
  }
}

.media-tile-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, transparent 26%),
    linear-gradient(180deg, transparent 48%, rgba(8, 12, 20, 0.78) 100%);
  pointer-events: none;
}

.media-tile-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  pointer-events: none;
  border-radius: inherit;
}

.media-tile img {
  width: 100%;
  height: 100%;
  min-height: 10rem;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.9s var(--ease), filter 0.9s var(--ease);
  filter: saturate(1.05) contrast(1.06) brightness(0.93);
}

@media (min-width: 800px) {
  .media-tile img {
    position: absolute;
    inset: 0;
    min-height: 100%;
    aspect-ratio: auto;
  }

  .media-tile-frame {
    position: relative;
  }
}

.media-tile figcaption {
  position: absolute;
  left: 0.65rem;
  right: 0.65rem;
  bottom: 0.65rem;
  z-index: 4;
  display: grid;
  gap: 0.1rem;
  margin: 0;
  padding: 0.6rem 0.75rem;
  background: rgba(12, 15, 20, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-sm);
  backdrop-filter: blur(16px) saturate(1.2);
}

.media-tile figcaption strong {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: -0.02em;
  color: #fff;
}

.media-tile figcaption span {
  font-size: 0.8rem;
  color: #e8eaed;
  line-height: 1.4;
}

.media-tile:hover img {
  transform: scale(1.05);
  filter: saturate(1.1) contrast(1.08) brightness(1);
}

.contact-email,
.notice-panel a,
.faq summary:hover {
  color: #c4b5a0 !important;
}

.map-embed {
  margin-top: 2.5rem;
  border: 1px solid var(--line);
  overflow: hidden;
  min-height: 320px;
  background: var(--paper-deep);
  border-radius: var(--radius);
}

.map-embed iframe {
  width: 100%;
  height: 360px;
  border: 0;
  display: block;
  filter: grayscale(0.25) contrast(1.15) brightness(0.65) saturate(0.85);
}

/* Careers ? privacy & important notices */
.notice-stack {
  display: grid;
  gap: 1.15rem;
  max-width: 46rem;
}

.notice-panel {
  margin: 0;
  padding: 1rem 1.1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.notice-panel .eyebrow {
  margin-bottom: 0.55rem;
}

.notice-panel h3 {
  margin: 0 0 0.85rem;
  font-size: 1.15rem;
}

.notice-panel p {
  margin: 0 0 0.7rem;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--ink-muted);
}

.notice-panel p:last-child {
  margin-bottom: 0;
}

.notice-panel a {
  color: var(--orange-deep);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.notice-panel a:hover {
  color: var(--orange);
}

.notice-closing {
  margin-top: 0.85rem !important;
  padding-top: 0.9rem;
  border-top: 1px solid var(--line);
  font-weight: 500;
  color: var(--ink-soft) !important;
}

/* Security & privacy frameworks ? simple list */
.framework-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.4rem 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (max-width: 800px) {
  .framework-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .framework-list {
    grid-template-columns: 1fr;
  }
}

.framework-list li {
  position: relative;
  padding: 0.65rem 0.85rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  box-shadow: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: -0.02em;
  color: #cbd5e1;
  text-align: center;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease), background 0.25s var(--ease);
}

.framework-list li:hover {
  border-color: rgba(249, 115, 22, 0.3);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.framework-list li::before {
  display: none;
}

.compliance-disclaimer {
  margin: 0.75rem 0 0;
  font-size: 0.8rem;
  color: var(--ink-muted);
  line-height: 1.45;
  max-width: 56ch;
}

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

/* Prose / about */
.prose {
  max-width: 40rem;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.75;
}

.prose p + p {
  margin-top: 0.7rem;
}

.split {
  display: grid;
  gap: clamp(0.9rem, 2.2vw, 1.5rem);
}

@media (min-width: 880px) {
  .split {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .split-visual:nth-child(odd) .visual-panel,
  #healthcare .visual-panel {
    order: 0;
  }
}

.section-ink .lede {
  color: #e8eaed;
  max-width: 32rem;
}

.section-ink .feature-list li {
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
}

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

.feature-list li {
  display: grid;
  grid-template-columns: 1.1rem 1fr;
  gap: 0.65rem;
  align-items: start;
  padding: 0.65rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.55);
  color: var(--ink-soft);
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.feature-list li:hover {
  border-color: rgba(124, 58, 237, 0.25);
  transform: translateX(2px);
}

.feature-list li::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  margin-top: 0.4rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #c2410c, #9a3412);
  box-shadow: 0 0 8px rgba(194, 65, 12, 0.4);
}

/* Industries — modern chips */
.industry-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.industry-cloud li {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #c4b5a0;
  opacity: 1;
  padding: 0.4rem 0.75rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  transition: color 0.3s var(--ease), transform 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.industry-cloud li:hover {
  color: #fff;
  background: linear-gradient(135deg, #9a3412, #c2410c);
  border-color: transparent;
  transform: translateY(-1px);
}

/* Catalogue — modern service cards */
.catalogue {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.4rem;
  border-top: 0;
}

.catalogue li {
  display: grid;
  gap: 0.25rem;
  padding: 0.85rem 1rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.catalogue li:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(56, 189, 248, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.35);
}

@media (min-width: 720px) {
  .catalogue li {
    grid-template-columns: minmax(12rem, 0.4fr) 1fr;
    gap: 1.1rem;
    align-items: start;
    padding: 0.9rem 1.05rem;
  }
}

.catalogue h3 {
  margin: 0;
}

.catalogue p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.98rem;
}

/* FAQ */
.faq {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-strong);
}

.faq details {
  border-bottom: 1px solid var(--line);
  padding: 1.15rem 0;
}

.faq summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: baseline;
  transition: color 0.25s var(--ease);
}

.faq summary:hover {
  color: var(--orange-deep);
}

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

.faq summary::after {
  content: "+";
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
  font-size: 1.2rem;
}

.faq details[open] summary::after {
  content: "?";
}

.faq details p {
  margin: 0.9rem 0 0;
  color: var(--ink-muted);
  max-width: 40rem;
}

/* Contact */
.contact-grid {
  display: grid;
  gap: 1.15rem;
}

@media (min-width: 720px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-block h3 {
  margin-bottom: 0.75rem;
  color: #e8b86d;
}

.contact-block p,
.contact-block a {
  color: var(--ink-soft);
}

.contact-email {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  font-weight: 700;
  text-decoration: none;
  color: var(--orange-deep) !important;
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
}

.contact-email:hover {
  color: var(--orange) !important;
  -webkit-text-fill-color: unset;
}

.apply-box {
  margin-top: 2rem;
  padding: 1.85rem 0 0;
  border-top: 1px solid var(--line-strong);
}

.apply-steps {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
  color: var(--ink-soft);
}

.apply-steps li + li {
  margin-top: 0.4rem;
}

/* Band CTA — high-contrast premium panel */
.band {
  padding: clamp(1.25rem, 3vw, 2rem) 0;
  background:
    radial-gradient(640px 280px at 90% 20%, rgba(249, 115, 22, 0.1), transparent 55%),
    radial-gradient(520px 260px at 10% 80%, rgba(255, 255, 255, 0.1), transparent 50%),
    linear-gradient(135deg, #000000 0%, #0a0a0a 45%, #111111 100%);
  color: #e8eef8;
  border-block: 0;
  position: relative;
  overflow: hidden;
  margin: 0 var(--pad) clamp(0.45rem, 1.2vw, 0.75rem);
  border-radius: calc(var(--radius) + 0.35rem);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(249, 115, 22, 0.1);
}

.band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 35%),
    linear-gradient(90deg, transparent, rgba(203, 213, 225, 0.04) 50%, transparent);
  pointer-events: none;
}

.band .wrap,
.band-inner {
  position: relative;
  z-index: 1;
}

.band-inner {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

@media (min-width: 880px) {
  .band-inner {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2.5rem;
  }
}

.band-copy .eyebrow {
  margin-bottom: 0.75rem;
}

.band h2 {
  max-width: 18ch;
  margin: 0 0 0.75rem;
  color: #e8b86d !important;
  font-size: clamp(1.65rem, 3.2vw, 2.45rem);
  line-height: 1.15;
  text-shadow: none;
}

.band-lead,
.band p {
  max-width: 36rem;
  margin: 0;
  color: #fff7ed;
  font-size: 0.98rem;
  line-height: 1.6;
}

.band-lead {
  margin-bottom: 0.25rem;
}

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

.band-card {
  display: grid;
  gap: 0.85rem;
  padding: 1.25rem 1.35rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(203, 213, 225, 0.18);
  border-radius: var(--radius);
  backdrop-filter: blur(16px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.band-card-row {
  display: grid;
  gap: 0.2rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(203, 213, 225, 0.12);
}

.band-card-row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.band-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c4b5a0;
}

.band-card p {
  max-width: none;
  color: rgba(255, 247, 237, 0.92);
  font-size: 0.92rem;
  line-height: 1.5;
}

.band-email {
  color: #cbd5e1 !important;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(125, 211, 252, 0.45);
}

.band-email:hover {
  color: #ffffff !important;
  border-bottom-color: #fff;
}

.btn-band {
  background: linear-gradient(135deg, #ea580c, #7dd3fc);
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
}

.btn-band:hover {
  background: linear-gradient(135deg, #c2410c, #ea580c);
  color: #ffffff !important;
}

.btn-band-ghost {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(203, 213, 225, 0.35);
  color: #e8eef8 !important;
}

.btn-band-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(203, 213, 225, 0.55);
  color: #ffffff !important;
}

.band .eyebrow {
  color: #cbd5e1;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(125, 211, 252, 0.35);
}

.band .eyebrow::before {
  background: linear-gradient(135deg, #7dd3fc, #7dd3fc);
}

/* Footer — premium mega footer */
.footer {
  position: relative;
  overflow: hidden;
  padding: clamp(1.75rem, 3.5vw, 2.5rem) 0 0;
  border-top: 0;
  background:
    radial-gradient(700px 360px at 80% 0%, rgba(249, 115, 22, 0.08), transparent 55%),
    linear-gradient(165deg, #000000 0%, #0a0a0a 48%, #111111 100%);
  color: #ffffff;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 50% 45% at 0% 0%, rgba(255, 255, 255, 0.06), transparent 55%),
    radial-gradient(ellipse 45% 40% at 100% 100%, rgba(249, 115, 22, 0.06), transparent 55%);
}

.footer > .wrap {
  position: relative;
  z-index: 1;
}

.footer-statement {
  margin-bottom: 1.35rem;
  padding-bottom: 1.15rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.15rem;
  text-decoration: none;
  color: inherit;
}

.footer-brand-lockup .brand-mark {
  width: 2.75rem;
  height: 2.75rem;
  box-shadow: 0 0 0 1px rgba(124, 58, 237, 0.4);
}

@media (min-width: 900px) {
  .footer-brand-lockup .brand-mark {
    width: 3.25rem;
    height: 3.25rem;
  }
}

.footer-brand-lockup .brand-name {
  font-size: 1.35rem;
  color: #fff;
}

.footer-brand-lockup .brand-tag {
  color: #c4b5a0;
}

 .footer-statement-headline {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.25rem, 2.4vw, 1.75rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #e8b86d;
  max-width: 28ch;
}

.footer-mission {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #e8eaed;
  max-width: 48ch;
}

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

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

@media (min-width: 1100px) {
  .footer-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 1rem 0.85rem;
  }
}

.footer-col h5 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: clamp(9px, 0.35vw + 8px, 11px);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #e8b86d;
}

.footer-col a {
  display: block;
  margin: 0 0 0.2rem;
  text-decoration: none;
  color: #f3f4f6;
  font-size: clamp(9px, 0.4vw + 7.5px, 11px);
  line-height: 1.4;
  transition: color 0.25s var(--ease), transform 0.25s var(--ease);
}

.footer-col a:hover {
  color: #fff;
  transform: translateX(2px);
}

.footer-legal-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0;
  margin-top: 1.35rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-legal-bar a {
  font-size: clamp(9px, 0.35vw + 7.5px, 10px);
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.25s var(--ease);
}

.footer-legal-bar a:not(:last-child)::after {
  content: "·";
  margin: 0 0.45rem;
  color: rgba(255, 255, 255, 0.28);
}

.footer-legal-bar a:hover {
  color: #fff;
}

.footer-bottom {
  margin-top: 0.85rem;
  padding: 0.85rem 0 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: clamp(9px, 0.35vw + 7.5px, 10px);
  letter-spacing: 0.02em;
  color: #d1d5db;
}

.footer-bottom .wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  align-items: center;
}

.footer-bottom-meta {
  color: #d1d5db;
}

.footer-bottom-locale {
  color: #c4b5a0;
  font-size: clamp(9px, 0.35vw + 7.5px, 10px);
  letter-spacing: 0.04em;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}

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

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

  .hero-media video,
  .hero-media img,
  .hero-brand,
  .hero h1,
  .hero-sub,
  .hero .cta-row,
  .reveal,
  .media-frame img,
  .media-tile img,
  .visual-panel img {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ========== Responsive: all screen sizes ========== */

/* Phones */
@media (max-width: 639px) {
  :root {
    --pad: 0.9rem;
  }

  body {
    font-size: 0.92rem;
    background-attachment: scroll;
  }

  .nav {
    inset: 0.45rem 0 auto;
  }

  .nav-inner {
    width: calc(100% - 1.1rem);
    padding: 0.4rem 0.45rem 0.4rem 0.65rem;
    border-radius: 1.15rem;
  }

  .nav.is-open .nav-inner {
    border-radius: 1.15rem 1.15rem 0.65rem 0.65rem;
  }

  .brand-tag {
    display: none;
  }

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

  .brand-name {
    font-size: 1.05rem;
  }

  .mobile-menu {
    left: 0.55rem;
    right: 0.55rem;
    top: calc(100% + 0.35rem);
    padding: 0.75rem 0.9rem 1rem;
  }

  .mobile-menu a {
    font-size: 1.05rem;
    padding: 0.75rem 0;
  }

  .hero {
    min-height: 62svh;
  }

  .hero-content {
    padding: 4rem 0 1.15rem;
    gap: 0.4rem;
  }

  .hero-brand {
    font-size: clamp(2.1rem, 14vw, 3rem);
    margin-bottom: 0;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(1.15rem, 4.8vw, 1.45rem);
  }

  .hero-sub {
    max-width: none;
    padding: 0.4rem 0.65rem;
    font-size: 0.84rem;
  }

  .hero-compact {
    min-height: 34svh;
  }

  .hero-page {
    min-height: 0;
    padding-top: 4.5rem;
  }

  .cta-row {
    gap: 0.45rem;
  }

  .cta-row .btn {
    flex: 1 1 auto;
    min-width: min(100%, 9.5rem);
    text-align: center;
  }

  .section {
    padding: 1.5rem 0;
  }

  .section-head {
    margin-bottom: 0.85rem;
  }

  .benefit-grid li {
    min-height: 3.75rem;
    padding: 0.85rem 0.85rem 0.75rem;
    font-size: 0.92rem;
  }

  .feature-band {
    gap: 0.85rem;
    margin-bottom: 1.35rem;
  }

  .media-frame {
    aspect-ratio: 16 / 11;
  }

  .media-stage-tall .media-frame {
    aspect-ratio: 5 / 4;
  }

  .media-stage-plate,
  .media-stage-plate-alt {
    display: none;
  }

  .feature-band-copy h3 {
    font-size: 1.2rem;
  }

  .media-bento {
    min-height: 0;
    gap: 0.55rem;
  }

  .media-tile-frame,
  .media-tile img {
    min-height: 11rem;
  }

  .media-tile-hero .media-tile-frame {
    min-height: 13rem;
  }

  .media-tile figcaption {
    left: 0.55rem;
    right: 0.55rem;
    bottom: 0.55rem;
    padding: 0.55rem 0.65rem;
  }

  .catalogue li {
    padding: 0.85rem 0.9rem;
  }

  .framework-list {
    grid-template-columns: 1fr 1fr;
    gap: 0.35rem;
  }

  .industry-cloud li {
    font-size: 0.78rem;
    padding: 0.4rem 0.7rem;
  }

  .band {
    margin-inline: 0.55rem;
    padding: 1.5rem 0;
    border-radius: 1rem;
  }

  .band h2 {
    max-width: none;
    font-size: clamp(1.35rem, 6vw, 1.75rem);
  }

  .band-card {
    padding: 1rem;
  }

  .footer-grid {
    gap: 1rem 0.75rem;
  }

  .footer-legal-bar a:not(:last-child)::after {
    margin: 0 0.35rem;
  }

  .footer-bottom .wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
  }
}

/* Large phones / small tablets */
@media (min-width: 640px) and (max-width: 899px) {
  .hero-content {
    padding: 4.25rem 0 1.25rem;
    gap: 0.4rem;
  }

  .hero h1 {
    max-width: 22ch;
  }

  .framework-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .band {
    margin-inline: var(--pad);
  }

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

/* Tablets to small desktop — show nav links earlier if space */
@media (min-width: 820px) and (max-width: 899px) {
  .nav-links {
    display: flex;
    gap: 0.75rem;
  }

  .nav-links a {
    font-size: 0.82rem;
  }

  .nav-cta {
    padding: 0.45rem 0.85rem;
    font-size: 0.75rem;
  }

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

/* Desktop */
@media (min-width: 900px) {
  :root {
    --max: 1180px;
  }

  .hero {
    min-height: 64svh;
  }

  .hero-content {
    padding: 5rem 0 1.5rem;
    gap: 0.45rem;
  }

  .hero-brand {
    font-size: clamp(3rem, 6.5vw, 4.4rem);
  }

  .hero h1 {
    max-width: 22ch;
    font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  }

  .hero-sub {
    max-width: 38rem;
    font-size: 0.92rem;
    padding: 0.5rem 0.75rem;
  }

  .section {
    padding: clamp(1.25rem, 2.2vw, 1.85rem) 0;
  }

  .feature-band {
    gap: clamp(1.5rem, 3vw, 2.75rem);
    margin-bottom: clamp(1.75rem, 3.5vw, 2.75rem);
  }

  .media-bento {
    min-height: 24rem;
  }

  .split {
    gap: clamp(1.5rem, 3vw, 2.75rem);
  }

  .band-inner {
    align-items: stretch;
  }

  .band-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .band-card {
    height: 100%;
  }
}

/* Wide desktop */
@media (min-width: 1200px) {
  :root {
    --max: 1240px;
    --pad: 2rem;
  }

  .hero {
    min-height: 68svh;
  }

  .hero-content {
    padding: 5.25rem 0 1.65rem;
    gap: 0.45rem;
  }

  .section-head h2 {
    max-width: 18ch;
  }

  .feature-band-copy h3 {
    font-size: 1.75rem;
  }

  .media-bento {
    min-height: 28rem;
    gap: 0.85rem;
  }
}

/* Very small devices */
@media (max-width: 380px) {
  .brand-name {
    font-size: 0.98rem;
  }

  .btn {
    padding: 0.65rem 1rem;
    font-size: 0.82rem;
  }

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

/* Prevent horizontal scroll from decorative plates / absolute media */
.section,
.band,
.footer,
.hero,
.wrap,
.media-stage,
.feature-band,
.media-bento {
  max-width: 100%;
}

img,
video,
iframe {
  max-width: 100%;
  height: auto;
}

.media-frame img,
.media-tile img,
.visual-panel img,
.hero-media video,
.hero-media img {
  height: 100%;
}

/* Sharp, solid type — sitewide reinforcement */
.text-sharp,
.prose,
.lede,
.footer-col a,
.footer-col h5,
.footer-mission,
.footer-statement-headline,
.contact-block p,
.contact-block a,
.service-group-head p,
.pillar-chips span,
.benefit-grid li,
.framework-list li,
.faq summary,
.faq details p,
.feature-list li,
.apply-steps li,
.catalogue p,
.notice-panel p {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: geometricPrecision;
}

.prose,
.lede {
  color: #f3f4f6 !important;
  font-weight: 500;
}

.legal-doc {
  max-width: 42rem;
}

.legal-doc .legal-meta {
  margin: 0 0 1.75rem;
  color: #a8a29e;
  font-size: 0.85rem;
  font-weight: 500;
}

.legal-doc h2 {
  margin: 1.75rem 0 0.65rem;
  color: #f5f0eb;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.legal-doc p,
.legal-doc li {
  color: #f3f4f6;
  font-weight: 500;
  line-height: 1.65;
}

.legal-doc ul {
  margin: 0.5rem 0 1rem;
  padding-left: 1.2rem;
}

.legal-doc li + li {
  margin-top: 0.35rem;
}

.legal-doc a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

.legal-doc a:hover {
  color: var(--accent-bright);
  text-decoration: underline;
}

.footer-col a {
  color: #f3f4f6 !important;
  font-weight: 500;
}

.footer-col a:hover {
  color: #ffffff !important;
}

.cap-card-copy .text-link,
.text-link {
  font-weight: 700;
}