/* ── DESIGN SYSTEM ─────────────────────────────────────────── */
:root {
  --blue-300: #5fcbf5;
  --blue-400: #27c0f1;
  --blue-500: #2f8fd6;
  --blue-600: #3260ac;
  --blue-700: #2c4f93;
  --blue-800: #233d73;
  --blue-900: #0a1f44;
  --blue-950: #061530;
  --surface-bg: var(--blue-900);
  --surface-bg-deep: var(--blue-950);
  --surface-raised: #12295a;
  --surface-card: #152e63;
  --surface-border: rgba(255, 255, 255, 0.12);
  --surface-border-strong: rgba(255, 255, 255, 0.22);
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.72);
  --text-tertiary: rgba(255, 255, 255, 0.5);
  --accent-primary: #27c0f1;
  --accent-secondary: #2f8fd6;
  --gradient-mark: linear-gradient(
    160deg,
    #5fcbf5 0%,
    #2f8fd6 55%,
    #233d73 100%
  );
  --gradient-cta: linear-gradient(90deg, #27c0f1, #3260ac);
  --success: #3fd68a;
  --warning: #f2b84b;
  --display-font: "Big Shoulders Display", sans-serif;
  --body-font: "Inter", system-ui, sans-serif;
  --mono-font: "JetBrains Mono", monospace;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--body-font);
  background: var(--surface-bg-deep);
  color: var(--text-primary);
}

.grad {
  background: var(--gradient-mark);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── NAV ───────────────────────────── */
.active-menu {
  border-bottom: 2px solid var(--blue-300);
}
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--surface-bg-deep);
  border-bottom: 1px solid var(--surface-border);
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  transition: height 0.3s;
}
.nav-logo img {
  height: 62px;
  width: 200px;
  object-fit: contain;
  display: block;
  transition: height 0.3s;
}
.nav-links {
  display: flex;
  gap: 2px;
}
.nav-links a {
  color: var(--text-secondary);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 10px 13px;
  cursor: pointer;
  text-decoration: none;
  transition:
    color 0.2s,
    background 0.2s;
  position: relative;
  font-family: var(--mono-font);
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 13px;
  right: 13px;
  height: 2px;
  background: var(--accent-primary);
  transform: scaleX(0);
  transition: transform 0.25s;
}
.nav-links a:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 2px solid var(--blue-400);
}
.nav-links a.active {
  color: var(--text-primary);
}
.nav-links a.active::after {
  transform: scaleX(1);
}
.menu-btn {
  display: none;
}
.menu-btn .open-menu {
  display: none;
}
.menu-btn .close-menu {
  display: none;
}
.menu-bar {
  display: none;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  gap: 1.5rem;
  position: fixed;
  top: 5rem;
  right: 0;
  z-index: 200;
  background: var(--surface-bg-deep);
  border-bottom: 1px solid var(--surface-border);
  height: 100vh;
  width: 250px;
  padding: 0 48px;
  padding-top: 2rem;
  transition: height 0.3s;
}
.menu-bar a {
  color: var(--text-secondary);
  font-size: 12px;
  font-weight: 500;
  width: 80%;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 10px 10px;
  cursor: pointer;
  text-decoration: none;
  transition:
    color 0.2s,
    background 0.2s;
  position: relative;
  font-family: var(--mono-font);
}

.menu-bar a:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 2px solid var(--blue-400);
}
.nav-cta {
  margin-left: 14px;
  background: var(--gradient-cta);
  color: #fff !important;
  padding: 11px 22px !important;
  border-radius: 3px;
  transition:
    transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.3s !important;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.nav-cta::after {
  display: none;
}
.nav-cta:hover {
  background: var(--gradient-cta);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px -8px rgba(39, 192, 241, 0.5);
}
.nav-cta-menu {
  background: var(--gradient-cta);
  color: #fff !important;
  padding: 11px 22px !important;
  border-radius: 3px;
  transition:
    transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.3s !important;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}
.nav-cta-menu::after {
  display: none;
}
.nav-cta-menu:hover {
  background: var(--gradient-cta);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px -8px rgba(39, 192, 241, 0.5);
  border-radius: 15px;
  border-bottom: none;
}

/* ── PAGES ──────────────────────────── */
.page {
  display: flex;
  flex-direction: column;
  padding-top: 96px;
}
.page.active {
  display: block;
  animation: pageIn 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes pageIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── SCROLL REVEALS ───────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger.in {
  transition-delay: calc(var(--stagger-i, 0) * 70ms);
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .page.active {
    animation: none !important;
  }
}

/* ── HERO ───────────────────────────── */
.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: flex-end;
  padding: 80px;
  overflow: hidden;
  background: var(--surface-bg-deep);
}
.hero-top {
  align-items: flex-start;
  padding-top: 180px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 70% 60% at 80% 40%,
      rgba(47, 143, 214, 0.13) 0%,
      transparent 65%
    ),
    radial-gradient(
      ellipse 40% 40% at 10% 80%,
      rgba(39, 192, 241, 0.07) 0%,
      transparent 55%
    ),
    var(--surface-bg-deep);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--surface-border) 1px, transparent 1px),
    linear-gradient(90deg, var(--surface-border) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.35;
}
.hero-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center right;
}
.process-hero-photo {
  background-image: url("./images/OUR\ PROCESS/our_process_hero_1920x900.jpg");
}
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    var(--surface-bg-deep) 0%,
    rgba(6, 21, 48, 0.92) 26%,
    rgba(6, 21, 48, 0.62) 46%,
    rgba(6, 21, 48, 0.22) 66%,
    transparent 84%
  );
}
.photo-brief {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(10, 31, 68, 0.8);
  border: 1px solid var(--surface-border-strong);
  border-left: 2px solid var(--accent-primary);
  padding: 12px 16px;
  max-width: 300px;
  border-radius: 3px;
}
.pb-label {
  font-family: var(--mono-font);
  font-size: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent-primary);
  font-weight: 500;
  margin-bottom: 5px;
}
.pb-text {
  font-size: 12px;
  color: var(--text-tertiary);
  line-height: 1.6;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 880px;
}

/* Option 1 — brand-name lead: big, light weight, tracked wide */
.brand-lead {
  position: relative;
  z-index: 2;
  font-family: var(--body-font);
  font-size: clamp(28px, 5vw, 68px);
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.08;
  margin-bottom: 20px;
  white-space: normal;
}
.brand-lead .accent-dot {
  color: var(--accent-primary);
}

/* ── TYPOGRAPHY ─────────────────────── */
.eyebrow {
  font-family: var(--mono-font);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--accent-primary);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 1.5px;
  background: var(--accent-primary);
  flex-shrink: 0;
}
h1 {
  font-family: var(--display-font);
  font-size: clamp(44px, 6.5vw, 88px);
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.02;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.h2-normal {
  text-transform: none;
  letter-spacing: -0.01em;
}
h2 {
  font-family: var(--display-font);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 14px;
}
h3 {
  font-family: var(--display-font);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--text-primary);
  margin-bottom: 10px;
}
p {
  font-size: 15.5px;
  line-height: 1.78;
  color: var(--text-secondary);
}
p.lg {
  font-size: 17px;
}

.hero-sub {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 40px;
}
.ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-cta {
  position: relative;
  overflow: hidden;
  background: var(--gradient-cta);
  color: #fff;
  padding: 14px 28px;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition:
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  display: inline-block;
  border-radius: 3px;
  font-family: var(--mono-font);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}
.btn-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.16),
    rgba(255, 255, 255, 0)
  );
  transform: translateX(-100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -8px rgba(39, 192, 241, 0.45);
}
.btn-cta:hover::before {
  transform: translateX(0);
}
.btn-cta:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px -2px rgba(39, 192, 241, 0.4);
}
.btn-ghost {
  background: transparent;
  color: #fff;
  padding: 14px 28px;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid var(--surface-border-strong);
  cursor: pointer;
  transition:
    border-color 0.3s,
    transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.3s;
  text-decoration: none;
  display: inline-block;
  border-radius: 3px;
  font-family: var(--mono-font);
}
.btn-ghost:hover {
  border-color: var(--accent-primary);
  background: rgba(39, 192, 241, 0.06);
  transform: translateY(-2px);
}
.btn-ghost:active {
  transform: translateY(0);
}
.btn-text {
  color: var(--accent-primary);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
  background-image: linear-gradient(
    var(--accent-primary),
    var(--accent-primary)
  );
  background-size: 0% 1px;
  background-repeat: no-repeat;
  background-position: 0 100%;
  transition:
    background-size 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    color 0.3s;
  padding-bottom: 2px;
}
.btn-text:hover {
  background-size: 100% 1px;
  color: var(--blue-300);
}
.btn-text:hover {
  color: var(--blue-300);
}
.amber-line {
  width: 40px;
  height: 2px;
  background: var(--accent-primary);
  margin: 14px 0 28px;
}

/* ── SECTIONS ───────────────────────── */
.section {
  padding: 76px 80px;
}
.section-sm {
  padding: 64px 80px;
}
.section-bg {
  background: var(--surface-bg);
}
.section-deep {
  background: var(--surface-bg-deep);
}
.section-raised {
  background: var(--surface-raised);
}
.sec-header {
  margin-bottom: 52px;
}
.row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.row-2-stretch {
  align-items: stretch;
}
.row-2-stretch > div:first-child {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.row-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.row-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
hr.rule {
  border: none;
  border-top: 1px solid var(--surface-border);
}

/* ── STATS ──────────────────────────── */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  background: var(--surface-raised);
  border-top: 1px solid var(--surface-border);
  border-bottom: 1px solid var(--surface-border);
  position: relative;
  overflow: hidden;
}
.stat {
  padding: 36px 20px;
  text-align: center;
  border-right: 1px solid var(--surface-border);
  position: relative;
  transition: background 0.3s;
}
.stat:last-child {
  border-right: none;
}
.stat:hover {
  background: rgba(39, 192, 241, 0.06);
}
.stat::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-cta);
  transform: translateX(-50%);
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.stat:hover::after {
  width: 60%;
}
.stat-n {
  font-family: var(--mono-font);
  font-size: clamp(24px, 2.4vw, 36px);
  font-weight: 600;
  color: var(--accent-primary);
  line-height: 1;
  margin-bottom: 8px;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
  text-shadow: 0 0 0 rgba(39, 192, 241, 0);
  transition: text-shadow 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
}
.stat:hover .stat-n {
  text-shadow: 0 0 22px rgba(39, 192, 241, 0.55);
}
.stat-l {
  font-family: var(--mono-font);
  font-size: 10.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  font-weight: 500;
}

/* ── BUILT DIFFERENT ─────────────────── */
.diff-list {
  display: flex;
  flex-direction: column;
}
.diff-item {
  display: grid;
  grid-template-columns: 52px 220px 1fr;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--surface-border);
  gap: 24px;
}
.diff-item:last-child {
  border-bottom: none;
}
.diff-num {
  font-family: var(--mono-font);
  font-size: 22px;
  font-weight: 600;
  color: rgba(39, 192, 241, 0.35);
  line-height: 1;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}
.diff-title {
  font-family: var(--display-font);
  font-size: 16.5px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-primary);
  letter-spacing: 0.03em;
}
.diff-desc {
  font-size: 13.5px;
  color: var(--text-tertiary);
  line-height: 1.55;
}

/* ── SECTORS ────────────────────────── */
.sectors {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
.sector {
  padding: 32px;
  background: var(--surface-card);
  border: 1px solid var(--surface-border);
  border-left: 3px solid var(--accent-primary);
  transition:
    background 0.3s,
    transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.3s;
}
.sector:hover {
  background: var(--surface-raised);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px -12px rgba(0, 0, 0, 0.4);
}
.sector h4 {
  font-family: var(--display-font);
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.sector p {
  font-size: 14px;
  color: var(--text-tertiary);
  line-height: 1.6;
}

/* ── PROCESS TEASER ─────────────────── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.ps {
  padding: 36px 24px;
  text-align: center;
  background: var(--surface-card);
  border: 1px solid var(--surface-border);
  position: relative;
}
.ps::after {
  content: "→";
  position: absolute;
  right: -14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent-primary);
  font-size: 20px;
  z-index: 1;
}
.ps:last-child::after {
  display: none;
}
.ps-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(39, 192, 241, 0.1);
  border: 1px solid rgba(39, 192, 241, 0.25);
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.ps h4 {
  font-family: var(--display-font);
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.ps p {
  font-size: 13px;
  color: var(--text-tertiary);
}

/* ── What We Make — split layout: intro + two product cards ── */
.wwm-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 56px;
  align-items: center;
  margin-top: 8px;
}
.wwm-intro h2 {
  font-family: var(--display-font);
  font-weight: 700;
  font-size: clamp(28px, 3.2vw, 44px);
  text-transform: none;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: #fff;
  text-align: left;
  margin-bottom: 22px;
}
.wwm-intro h2 span {
  display: block;
}
.wwm-intro h2 .wwm-accent {
  background: var(--gradient-mark);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.wwm-intro p {
  font-size: 15.5px;
  color: var(--text-secondary);
  max-width: 38ch;
  margin-bottom: 32px;
}

.wwm-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.wwm-card {
  display: block;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  background: var(--surface-card);
  border: 1px solid var(--surface-border);
  transition:
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.35s,
    border-color 0.35s;
}
.wwm-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -18px rgba(0, 0, 0, 0.55);
  border-color: rgba(39, 192, 241, 0.3);
}
.wwm-card-img {
  position: relative;
  aspect-ratio: 4/3.1;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    var(--surface-raised),
    var(--surface-bg-deep)
  );
}
.wwm-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}
.wwm-card:hover .wwm-card-img img {
  transform: scale(1.07);
}
.wwm-card-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 60%,
    rgba(6, 21, 48, 0.5) 100%
  );
  pointer-events: none;
}
.wwm-card-foot {
  padding: 22px 22px 26px;
}
.wwm-icon {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--gradient-cta);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -44px;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 18px -6px rgba(39, 192, 241, 0.45);
}
.wwm-icon svg {
  width: 20px;
  height: 20px;
}
.wwm-card h3 {
  font-family: var(--display-font);
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #fff;
  margin-bottom: 8px;
}
.wwm-card .wwm-tags {
  font-size: 12.5px;
  color: var(--text-tertiary);
  line-height: 1.6;
}
@media (max-width: 900px) {
  .wwm-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .wwm-cards {
    grid-template-columns: 1fr;
  }
}

/* ── Who We Build For — vertical strip of visual cards ─────── */
.wwbf-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 8px;
}
.wwbf-card {
  position: relative;
  display: block;
  aspect-ratio: 3/4.4;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    var(--surface-raised),
    var(--surface-bg-deep)
  );
  cursor: pointer;
  text-decoration: none;
}
.wwbf-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}
.wwbf-card:hover img {
  transform: scale(1.08);
}
.wwbf-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    transparent 55%,
    rgba(6, 21, 48, 0.85) 100%
  );
  transition: background 0.35s;
}
.wwbf-card:hover .wwbf-overlay {
  background: linear-gradient(
    180deg,
    transparent 0%,
    transparent 55%,
    rgba(6, 21, 48, 0.8) 100%
  );
}
.wwbf-label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.wwbf-label span:last-child {
  font-family: var(--display-font);
  font-weight: 700;
  font-size: 13.5px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #fff;
  line-height: 1.3;
}
.wwbf-foot {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.wwbf-foot p {
  font-size: 14.5px;
  color: var(--text-secondary);
  max-width: 52ch;
  margin: 0;
}
@media (max-width: 900px) {
  .wwbf-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .wwbf-foot {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ── Final closing CTA — distributors + projects ──── */
.final-cta {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--surface-border);
}
.final-cta-bg {
  position: absolute;
  inset: 0;
  background-image: var(--home-cta-img);
  background-size: cover;
  background-position: center 30%;
}
.final-cta-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(6, 21, 48, 0.94) 0%,
    rgba(6, 21, 48, 0.88) 55%,
    rgba(6, 21, 48, 0.96) 100%
  );
}
.final-cta-inner {
  position: relative;
  text-align: center;
}
.final-cta-inner .sec-header {
  margin: 0 auto;
  text-align: center;
}
.final-cta-inner .sec-header h2 {
  text-align: center;
}
.final-cta-inner .amber-line {
  margin-left: auto;
  margin-right: auto;
}
.final-cta-inner p.final-lead {
  max-width: 600px;
  margin: 0 auto;
}
.final-paths {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 56px;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}
.final-path {
  background: rgba(21, 46, 99, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 40px 36px;
  text-align: left;
  backdrop-filter: blur(2px);
  transition:
    transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.3s;
}
.final-path:hover {
  transform: translateY(-5px);
  background: rgba(21, 46, 99, 0.75);
}
.fp-rule {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  width: 32px;
  margin: 0 0 18px;
}
.final-path .fp-tag {
  font-family: var(--mono-font);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-primary);
  margin-bottom: 14px;
}
.final-path h3 {
  font-family: var(--display-font);
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 12px;
}
.final-path p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}
@media (max-width: 900px) {
  .final-paths {
    grid-template-columns: 1fr;
  }
}

/* ── Cinematic process section ─────────── */
.cine-section {
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cine-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      ellipse 55% 40% at 50% 8%,
      rgba(39, 192, 241, 0.14) 0%,
      transparent 65%
    ),
    radial-gradient(
      ellipse 55% 45% at 50% 100%,
      rgba(47, 143, 214, 0.16) 0%,
      transparent 65%
    );
}
.cine-intro {
  position: relative;
  max-width: 720px;
  margin: 0 auto 52px;
}
.cine-lead {
  margin-top: 18px;
  font-size: 15.5px;
  color: var(--text-secondary);
  max-width: 56ch;
  margin-left: auto;
  margin-right: auto;
}
.cine-compact {
  padding-top: 56px;
  padding-bottom: 56px;
}
.cine-eyebrow {
  font-family: var(--mono-font);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-primary);
  font-weight: 500;
}
.cine-intro h2 {
  text-align: center;
}
.cine-flow {
  position: relative;
  max-width: 480px;
  margin: 0 auto;
  padding: 4px 0;
}
.cine-flow::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 8px;
  bottom: 8px;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(
    180deg,
    var(--blue-300) 0%,
    var(--blue-500) 40%,
    var(--accent-primary) 75%,
    var(--blue-800) 100%
  );
  opacity: 0.55;
}
.cine-step {
  position: relative;
  padding: 30px 0;
}
.cine-dot {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin: 0 auto 20px;
  background: var(--accent-primary);
  position: relative;
  z-index: 1;
  box-shadow:
    0 0 0 5px rgba(39, 192, 241, 0.14),
    0 0 18px rgba(39, 192, 241, 0.55);
}
.cine-dot-final {
  background: var(--blue-300);
  box-shadow:
    0 0 0 6px rgba(95, 203, 245, 0.18),
    0 0 26px rgba(95, 203, 245, 0.7);
}
.cine-label {
  font-family: var(--display-font);
  font-weight: 700;
  font-size: clamp(19px, 2.6vw, 30px);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #fff;
}
.cine-final {
  background: var(--gradient-mark);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: clamp(24px, 3.4vw, 40px);
}
.cine-statement {
  position: relative;
  max-width: 480px;
  margin: 64px auto 0;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
}
.cine-cta {
  position: relative;
  margin-top: 28px;
  display: flex;
  justify-content: center;
}

/* ── People behind the aluminium — editorial layout ───────── */
.people-layout {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 2rem;
}
.people-left {
  display: flex;
  flex-direction: column;
  justify-content: start;
}

.people-left-top {
  margin-bottom: 48px;
}
.people-leaders-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
}
.people-profile {
  display: grid;
  grid-template-columns: 104px 1fr;
  grid-template-rows: 139px auto;
  column-gap: 18px;
  row-gap: 0;
}
.people-portrait {
  grid-column: 1;
  grid-row: 1;
  align-self: start;
  width: 104px;
  aspect-ratio: 3/4;
  border-radius: 4px;
  overflow: hidden;
  background: linear-gradient(
    150deg,
    var(--surface-raised) 0%,
    var(--surface-bg-deep) 100%
  );
  border: 1px solid var(--surface-border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.people-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.people-portrait span {
  font-family: var(--display-font);
  font-weight: 700;
  font-size: 22px;
  color: rgba(39, 192, 241, 0.55);
  letter-spacing: 0.02em;
}
.people-info {
  grid-column: 2;
  grid-row: 1;
  align-self: start;
  padding-top: 2px;
}
.people-name {
  font-family: var(--display-font);
  font-weight: 700;
  font-size: 16.5px;
  color: #fff;
  letter-spacing: 0.01em;
  line-height: 1.25;
}
.people-title {
  font-family: var(--mono-font);
  font-size: 10.5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent-primary);
  margin-top: 5px;
}
.people-rule {
  width: 26px;
  height: 1.5px;
  background: var(--accent-primary);
  margin-top: 12px;
  opacity: 0.7;
}
.people-bio-block {
  grid-column: 1/3;
  grid-row: 2;
  margin-top: 16px;
}
.people-bio {
  font-size: 13px;
  color: var(--text-tertiary);
  line-height: 1.6;
  margin-bottom: 14px;
  min-height: 64px;
}
.people-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--mono-font);
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent-primary);
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
}
.people-link svg {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.people-link:hover svg {
  transform: translateX(3px);
}

.people-photo-col {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  background-image: var(--home-people-img);
  background-size: cover;
  background-position: center;
  border: 1px solid var(--surface-border);
}

.people-photo-col img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.people-bottom-bar {
  margin-top: 44px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  border: 1px solid var(--surface-border);
  border-radius: 6px;
  padding: 22px 28px;
  background: var(--surface-card);
}
.people-bottom-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(39, 192, 241, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-primary);
}
.people-bottom-bar p {
  flex: 1;
  min-width: 240px;
  font-family: var(--display-font);
  font-weight: 700;
  font-size: 14.5px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #fff;
  margin: 0;
  line-height: 1.4;
}

/* ── Custom profiles — single image placeholder ─────── */
.custom-visual {
  border: 1px solid var(--surface-border);
  background: var(--surface-raised);
}
.result-visual {
  aspect-ratio: 4/3;
  overflow: hidden;
  border: 1px solid var(--surface-border);
}
.result-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.custom-visual-img {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.custom-visual-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.custom-visual-img-solo {
  aspect-ratio: 4/3;
}

/* ── Founder bios — editorial, full credentials ─────── */
.founder-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
}
.founder-block {
  overflow: hidden;
}
.founder-portrait-float {
  float: left;
  width: 208px;
  aspect-ratio: 3/4;
  margin: 0 22px 12px 0;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--surface-border);
  background: linear-gradient(
    150deg,
    var(--surface-raised) 0%,
    var(--surface-bg-deep) 100%
  );
}
.founder-portrait-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.founder-name {
  font-family: var(--display-font);
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  letter-spacing: 0.01em;
  padding-top: 4px;
}
.founder-title {
  font-family: var(--mono-font);
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent-primary);
  margin-top: 5px;
  margin-bottom: 12px;
}
.founder-bio {
  clear: none;
}
.founder-bio p {
  font-size: 13.5px;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 15px;
}
.founder-bio p:last-child {
  margin-bottom: 0;
}
.founder-credentials {
  border-left: 2px solid var(--accent-primary);
  padding-left: 14px;
  font-style: italic;
  color: var(--text-tertiary) !important;
}
.founder-bio-more {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.45s;
}
.founder-bio-more.open {
  max-height: 900px;
  opacity: 1;
}
.founder-readmore {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-family: var(--mono-font);
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent-primary);
  font-weight: 500;
}
.founder-readmore svg {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.founder-readmore.open svg {
  transform: rotate(180deg);
}
@media (max-width: 900px) {
  .founder-columns {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .founder-portrait-float {
    width: 104px;
    margin: 0 18px 10px 0;
  }
}

/* ── Built In The Southeast — major emotional section ── */
.south-emotional {
  position: relative;
  overflow: hidden;
  text-align: left;
  padding-top: 100px;
  padding-bottom: 100px;
  border-top: 1px solid var(--surface-border);
}
.south-bg {
  position: absolute;
  inset: 0;
  background-image: var(--story-south-img);
  background-size: cover;
  background-position: right 40%;
}
.south-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      var(--surface-bg-deep) 0%,
      rgba(6, 21, 48, 0.93) 30%,
      rgba(6, 21, 48, 0.62) 52%,
      rgba(6, 21, 48, 0.3) 70%,
      rgba(6, 21, 48, 0.18) 100%
    ),
    linear-gradient(
      180deg,
      rgba(6, 21, 48, 0.55) 0%,
      rgba(6, 21, 48, 0.2) 20%,
      rgba(6, 21, 48, 0.2) 80%,
      rgba(6, 21, 48, 0.65) 100%
    );
}
.south-inner {
  position: relative;
  max-width: 620px;
  margin: 0;
}
.south-h2 {
  font-family: var(--display-font);
  font-weight: 800;
  font-size: clamp(34px, 5.5vw, 64px);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: #fff;
  line-height: 1.08;
  margin-top: 18px;
}
.south-lead {
  font-size: 16.5px;
  color: var(--text-secondary);
  max-width: 52ch;
  margin: 26px 0 0;
  line-height: 1.75;
}
.south-statement {
  margin-top: 44px;
  font-family: var(--display-font);
  font-weight: 700;
  font-size: clamp(22px, 3vw, 32px);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #fff;
}

/* ── The Next Chapter — trajectory ─────────────────── */
.trajectory {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin: 44px auto 0;
}
.trajectory-step {
  font-family: var(--display-font);
  font-weight: 700;
  font-size: clamp(15px, 2vw, 20px);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.trajectory-past {
  color: var(--text-tertiary);
}
.trajectory-now {
  color: var(--text-primary);
}
.trajectory-next {
  background: var(--gradient-mark);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: clamp(18px, 2.4vw, 24px);
}
.trajectory-arrow {
  color: var(--accent-primary);
  font-size: 18px;
}
.next-chapter-line {
  margin-top: 44px;
  font-size: 15.5px;
  color: var(--text-tertiary);
  font-style: italic;
}
@media (max-width: 900px) {
  .people-layout {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
  }
  .people-photo-col {
    display: none;
  }

  .people-leaders-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
@media (max-width: 520px) {
  .people-profile {
    grid-template-columns: 84px 1fr;
  }
  .people-portrait {
    width: 84px;
  }
}

/* ── FINISH SWATCHES ─────────────────── */
.finish-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.swatch-col {
  height: 72px;
  border-radius: 3px;
  border: 1px solid var(--surface-border-strong);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.swatch:hover .swatch-col {
  transform: scale(1.04);
}
.swatch-name {
  padding: 10px 0 3px;
  font-family: var(--display-font);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-primary);
}
.swatch-note {
  font-size: 12px;
  color: var(--text-tertiary);
}

/* Product category with image placeholder */
.product-cat {
  background: var(--surface-card);
  border: 1px solid var(--surface-border);
  overflow: hidden;
  transition:
    transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.3s;
}
.product-cat:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px -14px rgba(0, 0, 0, 0.45);
}
.product-cat img {
  aspect-ratio: 4/3;
  background: var(--surface-raised);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--surface-border);
  position: relative;
  overflow: hidden;
}
.product-cat-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 60% at 50% 50%,
    rgba(39, 192, 241, 0.08) 0%,
    transparent 70%
  );
}
.product-cat-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 1000;
}
.product-cat-img .img-icon {
  font-size: 28px;
  color: rgba(39, 192, 241, 0.3);
  margin-bottom: 8px;
  z-index: 1;
}
.product-cat-img .img-brief {
  font-size: 11px;
  color: var(--text-tertiary);
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  z-index: 1;
}
.product-cat-body {
  padding: 28px;
}
.product-cat-body h3 {
  font-size: 20px;
  margin-bottom: 8px;
}
.product-cat-body p {
  font-size: 14px;
}
.product-cat-top {
  height: 4px;
}

/* ── SUSTAINABILITY ──────────────────── */
.sus-stat-hero {
  background: var(--surface-raised);
  padding: 80px;
  border-bottom: 1px solid var(--surface-border);
}
.sus-big {
  font-family: var(--mono-font);
  font-size: clamp(60px, 8.5vw, 108px);
  font-weight: 600;
  background: var(--gradient-mark);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}
.sus-label {
  font-size: 16px;
  color: var(--text-secondary);
  margin-top: 14px;
  max-width: 420px;
  line-height: 1.65;
}

/* ── Sustainability cards ─────────────── */
.sus-section {
  position: relative;
}
.sus-sub-h {
  font-family: var(--display-font);
  font-weight: 600;
  font-size: 24px;
  text-transform: none;
  letter-spacing: 0;
  color: var(--text-primary);
  margin: 36px 0 16px;
}
.sus-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.sus-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    160deg,
    rgba(39, 192, 241, 0.14) 0%,
    var(--surface-raised) 55%
  );
  border: 1px solid rgba(39, 192, 241, 0.28);
  border-radius: 16px;
  padding: 40px 40px 36px;
  transition:
    transform 0.3s var(--ease-extrude, ease),
    border-color 0.3s;
}
.sus-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-cta);
}
.sus-card:hover {
  transform: translateY(-3px);
  border-color: rgba(39, 192, 241, 0.5);
}
.sus-card-big {
  font-family: var(--mono-font);
  font-weight: 600;
  font-size: clamp(40px, 4.5vw, 56px);
  line-height: 1;
  color: var(--accent-primary);
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
  margin-bottom: 14px;
}
.sus-card-label {
  font-size: 15px;
  color: var(--text-secondary);
}

/* ── Sustainability — scrap to profile visual ─────── */
.sus-closing-line {
  margin-top: 24px;
  font-family: var(--display-font);
  font-weight: 600;
  font-size: 17px;
  color: var(--text-primary);
  font-style: italic;
}
.sus-visual {
  display: flex;
  align-items: center;
  gap: 14px;
}
.sus-visual-panel {
  position: relative;
  flex: 1;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid var(--surface-border);
  background: var(--surface-raised);
}
.sus-visual-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sus-visual-tag {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 10px 14px;
  background: linear-gradient(180deg, transparent, rgba(6, 21, 48, 0.85));
  font-family: var(--mono-font);
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
}
.sus-visual-arrow {
  color: var(--accent-primary);
  font-size: 22px;
  flex-shrink: 0;
}
@media (max-width: 700px) {
  .sus-visual {
    flex-direction: column;
  }
  .sus-visual-arrow {
    transform: rotate(90deg);
  }
}

/* ── What that means for you — pillars ─────────────── */
.meaning-pillar {
  border-top: 2px solid var(--accent-primary);
  padding-top: 22px;
}
.meaning-num {
  font-family: var(--mono-font);
  font-size: 12px;
  color: var(--text-tertiary);
  letter-spacing: 0.05em;
  margin-bottom: 14px;
}
.meaning-pillar h3 {
  font-family: var(--display-font);
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #fff;
  margin-bottom: 8px;
}
.meaning-pillar p {
  font-size: 14px;
  color: var(--text-secondary);
}

/* ── Life At Rotic — photo grid ─────────────────────── */
.life-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  text-align: left;
}
.life-cell {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--surface-raised);
}
.life-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.life-cell:hover img {
  transform: scale(1.06);
}
/* ── Our Team — full-width photo band ─────────────────── */
.team-band {
  margin-top: 40px;
  width: 100%;
  height: clamp(300px, 42vw, 560px);
  overflow: hidden;
  border: 1px solid var(--surface-border);
}
.team-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 700px) {
  .life-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── Career Opportunities — department tags ────────── */
.dept-tags {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.dept-tag {
  background: var(--surface-card);
  border: 1px solid var(--surface-border);
  padding: 22px 20px;
}
.dept-tag h4 {
  font-family: var(--display-font);
  font-weight: 700;
  font-size: 14.5px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #fff;
  margin-bottom: 6px;
}
.dept-tag p {
  font-size: 12.5px;
  color: var(--text-tertiary);
}
@media (max-width: 700px) {
  .dept-tags {
    grid-template-columns: 1fr 1fr;
  }
}

/* ── VALUE CHAIN ────────────────────── */
.chain-wrap {
  overflow-x: auto;
  padding-bottom: 4px;
}
.chain-row {
  display: flex;
  align-items: stretch;
}
.chain-row-rev {
  flex-direction: row-reverse;
}
.chain-stage {
  flex: 1;
  min-width: 110px;
  display: flex;
  flex-direction: column;
  cursor: default;
  transition: flex 0.3s ease;
}
.chain-stage:hover {
  flex: 1.5;
}
.stage-box {
  padding: 20px 10px;
  text-align: center;
  min-height: 92px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.stage-num {
  font-family: var(--mono-font);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 5px;
  font-weight: 500;
}
.stage-name {
  font-family: var(--display-font);
  font-weight: 700;
  font-size: 13px;
  color: #fff;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.stage-desc {
  padding: 12px 8px;
  text-align: center;
  font-size: 11.5px;
  color: #4d5b78;
  line-height: 1.55;
  background: #f0f4f8;
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.chain-arr {
  display: flex;
  align-items: flex-start;
  padding-top: 30px;
  color: var(--accent-primary);
  font-size: 16px;
  flex-shrink: 0;
  width: 20px;
  justify-content: center;
}
.chain-row-rev .chain-arr {
  transform: scaleX(-1);
}
.chain-down {
  text-align: right;
  padding: 6px 0;
  color: var(--accent-primary);
  font-size: 20px;
}

/* ── Connector between stage rows (05 → 06) ──────────── */
.chain-connector {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 44px 0;
  padding-left: 2px;
}
.chain-connector-line {
  width: 2px;
  height: 56px;
  background: linear-gradient(
    180deg,
    var(--accent-primary),
    rgba(39, 192, 241, 0.15)
  );
  position: relative;
  flex-shrink: 0;
}
.chain-connector-line::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 7px solid var(--accent-primary);
}
.chain-connector-tag {
  font-family: var(--mono-font);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-primary);
  font-weight: 500;
}

/* ── Chain progress track ─────────────── */
.chain-progress {
  margin: 36px 0 44px;
}
.cp-track {
  position: relative;
  height: 2px;
  background: var(--surface-border);
  border-radius: 2px;
  overflow: visible;
}
.cp-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background: var(--gradient-cta);
  border-radius: 2px;
}
.cp-dots {
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
}
.cp-dot {
  font-family: var(--mono-font);
  font-size: 11px;
  font-weight: 500;
  color: var(--metal-700, var(--text-tertiary));
  position: relative;
  padding-top: 16px;
  text-align: center;
  flex: 1;
  transition: color 0.3s;
}
.cp-dot::before {
  content: "";
  position: absolute;
  top: -3px;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--surface-border-strong);
  transition:
    background 0.3s,
    box-shadow 0.3s,
    width 0.3s,
    height 0.3s;
}
.cp-dot:first-child {
  text-align: left;
}
.cp-dot:first-child::before {
  left: 4px;
}
.cp-dot:last-child {
  text-align: right;
}
.cp-dot:last-child::before {
  left: auto;
  right: 4px;
  transform: translateY(-50%);
}
.cp-dot.passed {
  color: var(--text-secondary);
}
.cp-dot.passed::before {
  background: var(--blue-500);
}
.cp-dot.active {
  color: #fff;
}
.cp-dot.active::before {
  width: 11px;
  height: 11px;
  background: var(--accent-primary);
  box-shadow:
    0 0 0 5px rgba(39, 192, 241, 0.16),
    0 0 16px rgba(39, 192, 241, 0.6);
}
.chain-stage.stage-live .stage-box {
  box-shadow:
    inset 0 0 0 2px var(--accent-primary),
    0 0 22px -4px rgba(39, 192, 241, 0.55);
}
@media (max-width: 960px) {
  .cp-dots {
    display: none;
  }
}

/* ── Horizontal progress track (Home — 7 stage journey) ── */
.cine-h-progress {
  max-width: 1040px;
  margin: 0 auto;
}
.cine-h-track {
  position: relative;
  height: 2px;
  background: var(--surface-border);
  border-radius: 2px;
}
.cine-h-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background: var(--gradient-cta);
  border-radius: 2px;
}
.cine-h-stages {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  row-gap: 30px;
  column-gap: 8px;
  margin-top: 34px;
}
.cine-h-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 22px;
  position: relative;
}
.cine-h-step::before {
  content: "";
  position: absolute;
  top: -3px;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--surface-border-strong);
  transition:
    background 0.3s,
    box-shadow 0.3s,
    width 0.3s,
    height 0.3s;
}
.cine-h-label {
  font-family: var(--display-font);
  font-weight: 700;
  font-size: clamp(11px, 1.05vw, 13.5px);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--text-tertiary);
  transition:
    color 0.35s,
    transform 0.35s;
  text-align: center;
  line-height: 1.3;
}
.cine-h-step.passed::before {
  background: var(--blue-500);
}
.cine-h-step.passed .cine-h-label {
  color: var(--text-secondary);
}
.cine-h-step.active::before {
  width: 13px;
  height: 13px;
  background: var(--accent-primary);
  box-shadow:
    0 0 0 6px rgba(39, 192, 241, 0.16),
    0 0 22px rgba(39, 192, 241, 0.65);
}
.cine-h-step.active .cine-h-label {
  color: #fff;
  transform: scale(1.08);
}
.cine-h-step.active:last-child .cine-h-label {
  background: var(--gradient-mark);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (max-width: 1048px) {
  .menu-btn {
    display: block;
  }
  .menu-btn .open-menu {
    display: block;
    margin-right: 1rem;
    font-size: 2rem;
    color: var(--blue-400);
    cursor: pointer;
  }
  .menu-btn .close-menu {
    display: none;
    margin-right: 1rem;
    font-size: 2rem;
    color: var(--blue-400);
    cursor: pointer;
  }
  .cine-h-stages {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 26px;
    column-gap: 10px;
  }
  .cine-h-step {
    padding-top: 18px;
  }
  .cine-h-label {
    font-size: 11px;
  }
  .main-hero-photo {
    filter: blur(2px);
  }
}
@media (max-width: 520px) {
  .cine-h-stages {
    grid-template-columns: repeat(2, 1fr);
  }
}
.s1 .stage-box {
  background: #1e3a5f;
}
.s2 .stage-box {
  background: #1a5a8a;
}
.s3 .stage-box {
  background: #1a6a4a;
}
.s4 .stage-box {
  background: #5a3010;
}
.s5 .stage-box {
  background: #3d1a6e;
}
.s6 .stage-box {
  background: #5a4a10;
}
.s7 .stage-box {
  background: #104a6a;
}
.s8 .stage-box {
  background: #6a1040;
}
.s9 .stage-box {
  background: var(--blue-800);
}
.s10 .stage-box {
  background: #2a2a2a;
}

/* ── WHAT WE BELIEVE — Mission & Vision, one cohesive section ── */
.believe-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  max-width: 1160px;
  margin: 0 auto;
}
.believe-panel {
  background: var(--surface-raised);
  border: 1px solid var(--surface-border);
  padding: 56px 48px;
}
.believe-vision {
  background: var(--surface-card);
}
.believe-rule {
  width: 40px;
  height: 3px;
  margin-bottom: 28px;
}
.believe-mission .believe-rule {
  background: var(--accent-primary);
}
.believe-vision .believe-rule {
  background: var(--gradient-mark);
}
.believe-label {
  font-family: var(--display-font);
  font-weight: 800;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 28px;
}
.believe-mission .believe-label {
  color: var(--accent-primary);
}
.believe-vision .believe-label {
  background: var(--gradient-mark);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.believe-q {
  font-family: var(--display-font);
  font-weight: 600;
  font-size: clamp(24px, 2.2vw, 32px);
  line-height: 1.38;
  color: var(--text-primary);
  letter-spacing: 0.005em;
}
@media (max-width: 900px) {
  .believe-grid {
    grid-template-columns: 1fr;
  }
  .believe-panel {
    padding: 44px 32px;
  }

  .career-hero {
    background-image: url("./images/JOIN THE TEAM/join_the_team_hero_1920x900 final 2.jpg");
    filter: blur(1.5px);
  }

  .main-hero-photo {
    filter: blur(1.5px);
  }

  .solution-hero {
    filter: blur(1.5px);
  }

  .process-hero-photo {
    filter: blur(1.5px);
  }

  .story-hero {
    filter: blur(1.5px);
  }
  .contact-hero {
    filter: blur(1px);
  }
}

/* ── VALUES ─────────────────────────── */
.val-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--surface-border);
}
.val-card {
  padding: 48px 44px;
  border-right: 1px solid var(--surface-border);
  transition: transform 0.3s var(--ease-extrude, ease);
}
.val-card:nth-child(3n) {
  border-right: none;
}
.val-card:nth-child(-n + 3) {
  padding-top: 1.5rem;
}
.val-card:nth-child(n + 4) {
  border-top: 1px solid var(--surface-border);
}
.val-card:nth-child(3n + 1) {
  padding-left: 0;
}
.val-card:hover {
  transform: translateY(-4px);
}
.val-card:hover .val-icon svg {
  transform: scale(1.06);
}
.val-head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
}
.val-icon {
  flex-shrink: 0;
}
.val-icon svg {
  width: 48px;
  height: 48px;
  display: block;
  transition: transform 0.3s var(--ease-extrude, ease);
}
.val-name {
  font-family: var(--display-font);
  font-weight: 700;
  font-size: 26px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--accent-primary);
  line-height: 1;
}
.val-title {
  font-family: var(--display-font);
  font-weight: 600;
  font-size: 20px;
  text-transform: none;
  letter-spacing: 0;
  color: var(--text-primary);
  margin-bottom: 14px;
}
.val-desc {
  font-size: 14px;
  color: var(--text-tertiary);
  line-height: 1.75;
  max-width: 34ch;
}

/* ── LEADERS ────────────────────────── */
.leader-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
.leader {
  display: grid;
  grid-template-columns: 140px 1fr;
  background: var(--surface-card);
  border: 1px solid var(--surface-border);
  overflow: hidden;
  transition:
    transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.3s;
}
.leader:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px -14px rgba(0, 0, 0, 0.4);
}
.leader-img {
  background: var(--surface-raised);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  border-right: 1px solid var(--surface-border);
}
.leader-img-icon {
  font-size: 28px;
  color: rgba(39, 192, 241, 0.3);
  margin-bottom: 8px;
}
.leader-img-label {
  font-family: var(--mono-font);
  font-size: 9px;
  color: var(--text-tertiary);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.leader-body {
  padding: 28px;
}
.leader-name {
  font-family: var(--display-font);
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.leader-title {
  font-size: 11px;
  font-weight: 600;
  color: var(--accent-primary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.leader-bio {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.72;
}

/* ── TEAM PHOTO ──────────────────────── */
.team-photo {
  width: 100%;
  height: 320px;
  background: var(--surface-raised);
  border: 1px solid var(--surface-border);
  border-left: 3px solid var(--success);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  margin-top: 32px;
}
.team-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--surface-border) 1px, transparent 1px),
    linear-gradient(90deg, var(--surface-border) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.5;
}
.team-photo-inner {
  text-align: center;
  z-index: 1;
  padding: 24px;
}
.tp-label {
  font-family: var(--mono-font);
  font-size: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--success);
  font-weight: 500;
  margin-bottom: 10px;
}
.tp-text {
  color: var(--text-tertiary);
  font-size: 13px;
  line-height: 1.7;
  max-width: 500px;
}

/* ── BENEFITS ───────────────────────── */
.benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.ben {
  background: var(--surface-card);
  padding: 36px 24px;
  border: 1px solid var(--surface-border);
  border-top: 3px solid var(--accent-primary);
  text-align: center;
}
.ben-icon {
  font-size: 26px;
  margin-bottom: 14px;
}
.ben-title {
  font-family: var(--display-font);
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.ben-desc {
  font-size: 13px;
  color: var(--text-tertiary);
  line-height: 1.6;
}

/* ── ROLES ACCORDION ────────────────── */
.roles {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.role-item {
  background: var(--surface-card);
  border: 1px solid var(--surface-border);
  overflow: hidden;
}
.role-header {
  display: grid;
  grid-template-columns: 1fr 160px 220px 40px;
  align-items: center;
  padding: 22px 28px;
  cursor: pointer;
  transition: background 0.2s;
  user-select: none;
}
.role-header:hover {
  background: var(--surface-raised);
}
.role-title {
  font-family: var(--display-font);
  font-weight: 700;
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--text-primary);
}
.role-level {
  font-family: var(--mono-font);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent-primary);
  font-weight: 500;
}
.role-fmt {
  font-family: var(--mono-font);
  font-size: 12.5px;
  color: var(--text-tertiary);
}
.role-chevron {
  color: var(--accent-primary);
  font-size: 16px;
  text-align: center;
  transition: transform 0.25s;
  font-weight: 700;
}
.role-item.open .role-chevron {
  transform: rotate(180deg);
}
.role-body {
  display: none;
  padding: 0 28px 24px 28px;
  border-top: 1px solid var(--surface-border);
}
.role-item.open .role-body {
  display: block;
  padding-top: 24px;
}
.role-body h4 {
  font-family: var(--display-font);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-primary);
  margin: 16px 0 8px;
}
.role-body h4:first-child {
  margin-top: 0;
}
.role-body p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}
.role-body ul {
  list-style: none;
  padding: 0;
}
.role-body ul li {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  padding-left: 16px;
  position: relative;
}
.role-body ul li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--accent-primary);
}

/* ── CONTACT ────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
.contact-item {
  display: flex;
  gap: 14px;
  margin-bottom: 24px;
  align-items: flex-start;
}
.c-icon {
  font-size: 17px;
  margin-top: 2px;
  flex-shrink: 0;
}
.c-label {
  font-family: var(--mono-font);
  font-size: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--text-tertiary);
  margin-bottom: 3px;
}
.c-val {
  font-size: 15px;
  color: var(--text-primary);
  font-weight: 500;
}
.c-val a {
  color: var(--accent-primary);
  text-decoration: none;
}
.c-val a:hover {
  color: var(--blue-300);
}
.map {
  height: 256px;
  border: 1px solid var(--surface-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  border-radius: 3px;
}

.map a {
  color: var(--accent-primary);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

/* ── LOCATION SECTION ────────────────── */
.location-section {
  padding: 96px 80px;
  background: var(--surface-bg-deep);
  position: relative;
  overflow: hidden;
}
.location-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 60% at 30% 50%,
    rgba(47, 143, 214, 0.1) 0%,
    transparent 65%
  );
}
.location-section .inner {
  position: relative;
  z-index: 1;
}
.location-h1 {
  font-family: var(--display-font);
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--text-primary);
  line-height: 1.02;
  margin-bottom: 32px;
}
.location-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 48px;
}
.location-detail-card {
  background: var(--surface-raised);
  padding: 32px;
  border: 1px solid var(--surface-border);
  border-left: 3px solid var(--accent-primary);
}
.location-detail-card h4 {
  font-family: var(--display-font);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-primary);
  margin-bottom: 10px;
}
.location-detail-card p {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ── FORM ────────────────────────────── */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.fg {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.fg.full {
  grid-column: 1/-1;
}
label {
  font-family: var(--mono-font);
  font-size: 10.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--text-secondary);
}
input,
select,
textarea {
  background: var(--surface-raised);
  border: 1px solid var(--surface-border);
  color: var(--text-primary);
  padding: 12px 14px;
  font-family: var(--body-font);
  font-size: 14.5px;
  outline: none;
  transition: border-color 0.2s;
  border-radius: 3px;
  width: 100%;
}
input::placeholder,
textarea::placeholder {
  color: var(--text-tertiary);
}
input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent-primary);
}
select option {
  background: var(--surface-card);
}
textarea {
  resize: vertical;
  min-height: 120px;
}
.form-submit {
  margin-top: 18px;
  background: var(--gradient-cta);
  color: #fff;
  padding: 14px 32px;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
  border-radius: 3px;
  font-family: var(--mono-font);
}
.form-submit:hover {
  opacity: 0.88;
}
.form-success {
  display: none;
  margin-top: 18px;
  padding: 16px 20px;
  background: rgba(63, 214, 138, 0.08);
  border: 1px solid rgba(63, 214, 138, 0.3);
  border-radius: 3px;
}
.form-success p {
  color: var(--success);
  font-weight: 600;
  font-size: 14px;
}
.form-error {
  display: none;
  margin-top: 16px;
  padding: 14px 18px;
  font-size: 13px;
  line-height: 1.6;
  background: rgba(220, 68, 68, 0.08);
  border: 1px solid rgba(220, 68, 68, 0.3);
  border-radius: 3px;
  color: #e08585;
}
.form-error a {
  color: #fff;
  text-decoration: underline;
}
.form-submit:disabled {
  opacity: 0.6;
  cursor: default;
}

/* ── SOCIAL ──────────────────────────── */
.social-icons {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}
.social-icon {
  width: 36px;
  height: 36px;
  /* border: 1px solid var(--surface-border); */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--text-tertiary);
  border-radius: 3px;
  opacity: 0.55;
  cursor: default;
}
.social-icon i {
  font-size: 2.5rem;
  color: white;
}
a.social-icon {
  opacity: 1;
  color: var(--text-primary);
  cursor: pointer;
  text-decoration: none;
  transition:
    border-color 0.25s,
    color 0.25s,
    transform 0.25s;
}
a.social-icon:hover {
  border-color: var(--accent-primary);
  color: var(--accent-primary);
  transform: translateY(-2px);
}
.social-note {
  font-family: var(--mono-font);
  font-size: 11px;
  color: var(--text-tertiary);
  margin-top: 7px;
}

/* ── STORY STATS ─────────────────────── */
.story-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  background: var(--surface-card);
  padding: 40px;
  border: 1px solid var(--surface-border);
  align-content: space-between;
}
.story-stats-6 {
  grid-template-rows: repeat(3, 1fr);
}
.ssn {
  font-family: var(--mono-font);
  font-size: 32px;
  font-weight: 600;
  color: var(--accent-primary);
  line-height: 1;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}
.ssl {
  font-family: var(--mono-font);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-top: 5px;
}

/* ── FOOTER ──────────────────────────── */
footer {
  background: var(--surface-bg-deep);
  padding: 64px 80px 0;
  border-top: 1px solid var(--surface-border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.4fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--surface-border);
}
.footer-brand-name {
  font-family: var(--display-font);
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.footer-tagline {
  font-family: var(--display-font);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent-primary);
  margin-bottom: 12px;
  line-height: 1.5;
}
.footer-desc {
  font-size: 13px;
  color: var(--text-tertiary);
  line-height: 1.7;
}
.footer-col-h {
  font-family: var(--mono-font);
  font-size: 10.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--accent-primary);
  margin-bottom: 18px;
}
.footer-lnk {
  display: block;
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 10px;
  cursor: pointer;
  transition: color 0.2s;
  text-decoration: none;
}
.footer-lnk:hover {
  color: var(--text-primary);
}
.footer-ci {
  margin-bottom: 14px;
}
.footer-cl {
  font-family: var(--mono-font);
  font-size: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 3px;
}
.footer-cv {
  font-size: 13.5px;
  color: var(--text-secondary);
}
.footer-cv a {
  color: var(--accent-primary);
  text-decoration: none;
}
.footer-soc {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}
.footer-si {
  width: 34px;
  height: 34px;
  border: 1px solid var(--surface-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--text-tertiary);
  border-radius: 3px;
  opacity: 0.5;
}
a.footer-si {
  opacity: 1;
  color: var(--text-secondary);
  text-decoration: none;
  transition:
    border-color 0.25s,
    color 0.25s,
    transform 0.25s;
}
a.footer-si:hover {
  border-color: var(--accent-primary);
  color: var(--accent-primary);
  transform: translateY(-2px);
}
.footer-sn {
  font-family: var(--mono-font);
  font-size: 11px;
  color: var(--text-tertiary);
  margin-top: 7px;
}
.footer-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  margin: 0 -80px;
  padding-left: 80px;
  padding-right: 80px;
  background: rgba(0, 0, 0, 0.2);
}
.footer-copy {
  font-size: 12px;
  color: var(--text-tertiary);
}
.footer-priv {
  font-size: 12px;
  color: var(--accent-primary);
  cursor: pointer;
  font-weight: 600;
}

/* ── RESPONSIVE ──────────────────────── */
@media (max-width: 1048px) {
  nav {
    padding: 0 20px;
  }
  .nav-links {
    display: none;
  }
  .hero,
  .section,
  .section-sm,
  .location-section {
    padding: 56px 24px;
  }
  .stats-strip {
    grid-template-columns: repeat(3, 1fr);
  }
  .row-2,
  .row-3,
  .row-4,
  .believe-grid,
  .val-grid,
  .leader-grid,
  .contact-grid,
  .location-details,
  .people-grid {
    grid-template-columns: 1fr;
  }
  .benefits {
    grid-template-columns: repeat(2, 1fr);
  }
  .sectors {
    grid-template-columns: 1fr;
  }
  .finish-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .footer,
  .footer-bar {
    padding-left: 24px;
    padding-right: 24px;
  }
  .footer-bar {
    margin: 0 -24px;
  }
  .role-header {
    grid-template-columns: 1fr 40px;
    gap: 8px;
  }
  .role-level,
  .role-fmt {
    display: none;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .diff-item {
    grid-template-columns: 60px 1fr;
  }
  .diff-desc {
    display: none;
  }
  .val-card {
    padding: 36px 0 !important;
    border-right: none !important;
    border-top: 1px solid var(--surface-border) !important;
  }
  .val-card:first-child {
    border-top: none !important;
  }
}
