@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

@font-face {
  font-family: 'Aviator';
  src: url('Aviator-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

* { box-sizing: border-box; }

:root {
  --black: #0a0a0a;
  --white: #ffffff;

  /* New palette — Anduril-inspired */
  --bg:        #E2E2E2;   /* page background */
  --bg-card:   #D4D4D4;   /* card / inset surfaces */
  --ink:       #111111;   /* primary text */
  --ink-mid:   #444444;   /* secondary text */
  --ink-light: #888888;   /* muted text */
  --red:       #6c8d71;   /* accent */
  --red-light: #7fa386;

  /* keep legacy names mapped so old rules still work */
  --amber:       #6c8d71;
  --amber-light: #7fa386;
  --gray-100: #f0f0f0;
  --gray-400: #888888;
  --gray-600: #555555;
  --gray-800: #2a2a2a;
  --gray-900: #E2E2E2;
}

html { scroll-behavior: smooth; }

body {
  background-color: var(--bg);
  color: var(--ink);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  margin: 0;
  padding: 0;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: #000000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-inner {
  width: 100%;
  padding: 0 2.5rem;
  height: 100px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

@keyframes logo-entrance {
  0%   { opacity: 0; transform: scale(0); }
  60%  { opacity: 1; transform: scale(1.08); }
  80%  { transform: scale(0.96); }
  100% { transform: scale(1); }
}

.logo-img {
  height: 72px;
  width: auto;
  display: block;
  filter: invert(1);
  mix-blend-mode: screen;
  animation: none;
}

.logo-img--footer {
  height: 32px;
  opacity: 0.7;
}

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

.nav-links--center {
  justify-self: center;
  gap: 3.5rem;
}

.nav-links a {
  color: rgba(255, 255, 255, 1);
  text-decoration: none;
  font-family: 'Aviator', 'Inter', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: none;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

/* ── Capabilities dropdown ── */
.nav-dropdown {
  position: relative;
}

@keyframes dropdown-scan-in {
  0%   { clip-path: inset(0 100% 0 0); }
  100% { clip-path: inset(0 0% 0 0); }
}

@keyframes dropdown-scan-out {
  0%   { clip-path: inset(0 0% 0 0); }
  100% { clip-path: inset(0 100% 0 0); }
}

@keyframes dropdown-item-in {
  0%   { opacity: 0; transform: translateY(6px); filter: blur(3px); }
  100% { opacity: 1; transform: translateY(0);   filter: blur(0); }
}

@keyframes dropdown-item-out {
  0%   { opacity: 1; transform: translateY(0);   filter: blur(0); }
  100% { opacity: 0; transform: translateY(4px); filter: blur(2px); }
}

/* expanded hover zone — invisible padding around the trigger word */
.nav-dropdown {
  padding: 0.75rem 1rem;
  margin: -0.75rem -1rem;
}

.nav-dropdown-panel {
  position: fixed;
  top: 100px;
  left: 0;
  right: 0;
  width: 100%;
  background: #000000;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 2rem 2.5rem;
  opacity: 0;
  pointer-events: none;
  z-index: 99;
}

.nav-dropdown-panel.open {
  opacity: 1;
  pointer-events: auto;
  animation: dropdown-scan-in 0.32s cubic-bezier(0.16,1,0.3,1) forwards;
}

.nav-dropdown-panel.closing {
  opacity: 1;
  pointer-events: none;
  animation: dropdown-scan-out 0.24s ease forwards;
}

.nav-dropdown-panel.open .nav-dropdown-items a:nth-child(1) { animation: dropdown-item-in 0.25s 0.08s ease both; }
.nav-dropdown-panel.open .nav-dropdown-items a:nth-child(2) { animation: dropdown-item-in 0.25s 0.13s ease both; }
.nav-dropdown-panel.open .nav-dropdown-items a:nth-child(3) { animation: dropdown-item-in 0.25s 0.18s ease both; }
.nav-dropdown-panel.open .nav-dropdown-items a:nth-child(4) { animation: dropdown-item-in 0.25s 0.23s ease both; }
.nav-dropdown-panel.open .nav-dropdown-items a:nth-child(5) { animation: dropdown-item-in 0.25s 0.28s ease both; }
.nav-dropdown-panel.open .nav-dropdown-items a:nth-child(6) { animation: dropdown-item-in 0.25s 0.33s ease both; }
.nav-dropdown-panel.open .nav-dropdown-items a:nth-child(7) { animation: dropdown-item-in 0.25s 0.38s ease both; }

.nav-dropdown-panel.closing .nav-dropdown-items a:nth-child(1) { animation: dropdown-item-out 0.15s 0s ease both; }
.nav-dropdown-panel.closing .nav-dropdown-items a:nth-child(2) { animation: dropdown-item-out 0.15s 0.03s ease both; }
.nav-dropdown-panel.closing .nav-dropdown-items a:nth-child(3) { animation: dropdown-item-out 0.15s 0.06s ease both; }
.nav-dropdown-panel.closing .nav-dropdown-items a:nth-child(4) { animation: dropdown-item-out 0.15s 0.09s ease both; }
.nav-dropdown-panel.closing .nav-dropdown-items a:nth-child(5) { animation: dropdown-item-out 0.15s 0.12s ease both; }
.nav-dropdown-panel.closing .nav-dropdown-items a:nth-child(6) { animation: dropdown-item-out 0.15s 0.15s ease both; }
.nav-dropdown-panel.closing .nav-dropdown-items a:nth-child(7) { animation: dropdown-item-out 0.15s 0.18s ease both; }


.nav-dropdown-items {
  display: flex;
  flex-direction: row;
  gap: 3rem;
  align-items: center;
}

.nav-dropdown-items a {
  font-family: 'Aviator', 'Inter', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: 0.03em;
  padding: 0.3rem 0;
  transition: color 0.15s;
}

.nav-dropdown-items a:hover {
  color: var(--amber);
}

.nav-company {
  color: rgba(255, 255, 255, 1);
  text-decoration: none;
  font-family: 'Aviator', 'Inter', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: none;
  transition: color 0.2s;
  white-space: nowrap;
  justify-self: end;
}

.nav-company:hover {
  color: var(--white);
}


/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 100px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(245,158,11,0.07) 0%, transparent 70%),
    linear-gradient(135deg, #0a0a0a 0%, #0f0f0f 50%, #0a0a0a 100%);
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245,158,11,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,158,11,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero-eyebrow-line {
  width: 40px;
  height: 2px;
  background: var(--amber);
}

.hero-eyebrow-text {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--amber);
}

.hero-headline {
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0 0 1.5rem;
  color: var(--white);
}

.hero-headline em {
  font-style: normal;
  color: var(--amber);
}

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 300;
  color: var(--gray-400);
  max-width: 560px;
  line-height: 1.7;
  margin: 0 0 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, transform 0.2s;
}

.btn-primary:hover {
  background: var(--red-light);
  transform: translateY(-1px);
}

.btn-outline {
  border: 1px solid rgba(0,0,0,0.3);
  color: var(--ink);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  text-decoration: none;
  display: inline-block;
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}

.btn-outline:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-1px);
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 10;
}

.hero-scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-600);
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--amber), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* ── VIDEO SECTION ── */
.video-section {
  width: 100%;
  height: calc(100vh - 100px);
  margin-top: 100px;
  background: #000;
  padding: 12px;
  box-sizing: border-box;
}

.video-inner {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.2) 0%,
    rgba(0,0,0,0.05) 40%,
    rgba(0,0,0,0.05) 60%,
    rgba(0,0,0,0.5) 100%
  );
}

/* ── C2 MODULE STACK ── */
.c2-stack {
  margin-top: 100px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px;
  background: #000;
}

.c2-module-card {
  position: relative;
  display: block;
  overflow: hidden;
  cursor: pointer;
  line-height: 0;
  border: 3px solid #000;
}

.c2-module-card img {
  width: 100%;
  height: 70vh;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.c2-module-card:hover img {
  transform: scale(1.02);
}

.c2-module-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  padding: 2rem 2.5rem;
  transition: background 0.3s ease;
}

.c2-module-card:hover .c2-module-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 60%);
}

.c2-module-label {
  color: #fff;
  font-family: 'Aviator', 'Inter', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1;
  text-shadow: 0 2px 16px rgba(0,0,0,0.6);
}

.c2-module-cta {
  color: rgba(255,255,255,0.7);
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 0.5rem;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.c2-module-card:hover .c2-module-cta {
  opacity: 1;
  transform: translateY(0);
}

/* ── PHOTO PAIR ── */
.photo-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 12px;
  background: #000;
}

.photo-card {
  position: relative;
  overflow: hidden;
  border: 3px solid #000;
  line-height: 0;
}

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

/* ── Logo ticker ── */
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.logo-ticker-section {
  background: var(--black);
  padding: 3.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
}

.logo-ticker-label {
  font-family: 'Aviator', 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  text-align: center;
  margin-bottom: 1.5rem;
}

.logo-ticker-wrap {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.logo-ticker-track {
  display: flex;
  align-items: center;
  gap: 6rem;
  width: max-content;
  animation: ticker-scroll 35s linear infinite;
}

.logo-ticker-track:hover {
  animation-play-state: paused;
}

.ticker-logo {
  height: 80px;
  width: auto;
  object-fit: contain;
  filter: invert(1) sepia(1) saturate(0.6) hue-rotate(80deg) opacity(0.5);
  flex-shrink: 0;
}

.photo-quad {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 0 12px 12px;
  background: #000;
}

.photo-label {
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
  text-align: right;
  text-shadow: 0 2px 12px rgba(0,0,0,0.7);
}

.photo-label-title {
  color: #fff;
  font-family: 'Aviator', 'Inter', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1;
}

.photo-label-sub {
  color: rgba(255,255,255,0.65);
  font-family: 'Aviator', 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 0.3rem;
}

/* ── SECTIONS ── */
.section {
  padding: 6rem 1.5rem;
  background: var(--bg);
}

.section-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.section-eyebrow-line {
  width: 32px;
  height: 2px;
  background: var(--red);
}

.section-eyebrow-text {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red);
}

.section-headline {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0 0 1rem;
  color: var(--ink);
}

.section-subtext {
  font-size: 1rem;
  font-weight: 400;
  color: var(--ink-mid);
  max-width: 600px;
  line-height: 1.7;
  margin: 0 0 3rem;
}

/* ── DIVIDER ── */
.amber-divider {
  width: 100%;
  height: 1px;
  background: rgba(0,0,0,0.12);
  margin: 0;
}

/* ── INDUSTRY STRIP ── */
.industry-strip {
  background: var(--bg-card);
  padding: 4rem 1.5rem;
  border-top: 1px solid rgba(0,0,0,0.1);
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.industry-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: rgba(0,0,0,0.08);
}

.industry-card {
  background: var(--bg-card);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s;
  gap: 0.75rem;
}

.industry-card:hover {
  background: rgba(108,141,113,0.1);
}

.industry-icon {
  font-size: 2rem;
  margin-bottom: 0.25rem;
}

.industry-name {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mid);
  transition: color 0.2s;
}

.industry-card:hover .industry-name {
  color: var(--red);
}

/* ── CARDS ── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(0,0,0,0.1);
}

.card {
  background: var(--bg);
  padding: 2.5rem;
  text-decoration: none;
  display: block;
  transition: background 0.2s;
  border-top: 2px solid transparent;
}

.card:hover {
  background: var(--bg-card);
  border-top-color: var(--red);
}

.card-number {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--red);
  margin-bottom: 1.5rem;
}

.card-title {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 0.75rem;
}

.card-text {
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--ink-mid);
  line-height: 1.7;
  margin: 0;
}

.card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-top: 1.5rem;
  text-decoration: none;
  transition: gap 0.2s;
}

.card:hover .card-arrow { gap: 0.75rem; }

/* ── MISSION BAND ── */
.mission-band {
  background: var(--ink);
  padding: 5rem 1.5rem;
  text-align: center;
}

.mission-band h2 {
  font-size: clamp(1.8rem, 4vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--white);
  margin: 0 0 1rem;
  line-height: 1.05;
}

.mission-band p {
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.btn-dark {
  background: var(--red);
  color: var(--white);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, transform 0.2s;
}

.btn-dark:hover {
  background: var(--red-light);
  transform: translateY(-1px);
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: 10rem 1.5rem 5rem;
  position: relative;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg) 100%);
}

.page-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
}

.page-hero-content {
  position: relative;
  z-index: 10;
  max-width: 1280px;
  margin: 0 auto;
}

.page-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0 0 1rem;
  line-height: 1;
}

.page-title em {
  font-style: normal;
  color: var(--red);
}

.page-subtitle {
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--ink-mid);
  max-width: 560px;
  line-height: 1.7;
  margin: 0;
}

/* ── INDUSTRY DETAIL ── */
.industry-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.industry-detail:last-child { border-bottom: none; }

.industry-detail.reverse { direction: rtl; }
.industry-detail.reverse > * { direction: ltr; }

.industry-detail-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.75rem;
}

.industry-detail h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin: 0 0 1rem;
  line-height: 1.1;
}

.industry-detail p {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--gray-400);
  line-height: 1.8;
  margin: 0 0 1.5rem;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  border: 1px solid rgba(108,141,113,0.45);
  padding: 0.3rem 0.75rem;
}

.industry-visual {
  background: var(--bg-card);
  border: 1px solid rgba(0,0,0,0.1);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

/* ── STATS BAR ── */
.stats-bar {
  background: var(--bg-card);
  border-top: 1px solid rgba(0,0,0,0.1);
  border-bottom: 1px solid rgba(0,0,0,0.1);
  padding: 3rem 1.5rem;
}

.stats-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(0,0,0,0.08);
}

.stat-item {
  background: var(--bg-card);
  padding: 2rem;
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--red);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-mid);
}

/* ── CASE STUDY CARDS ── */
.case-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.05);
}

.case-card {
  background: var(--black);
  padding: 3rem;
  text-decoration: none;
  display: block;
  transition: background 0.2s;
  position: relative;
  overflow: hidden;
}

.case-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: transparent;
  transition: background 0.2s;
}

.case-card:hover { background: rgba(245,158,11,0.03); }
.case-card:hover::before { background: var(--amber); }

.case-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
  display: block;
}

.case-card h3 {
  font-size: 1.4rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--white);
  margin: 0 0 0.75rem;
}

.case-card p {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--gray-400);
  line-height: 1.7;
  margin: 0 0 1.5rem;
}

.case-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.case-meta-item {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-600);
}

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
}

.contact-info h3 {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin: 0 0 0.5rem;
}

.contact-info p {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--gray-400);
  line-height: 1.7;
  margin: 0 0 2rem;
}

.contact-info a {
  color: var(--amber);
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

.contact-divider {
  width: 40px;
  height: 2px;
  background: var(--amber);
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  font-family: inherit;
  font-size: 0.9rem;
  padding: 0.85rem 1rem;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--amber);
}

.form-select option {
  background: #1a1a1a;
  color: var(--white);
}

.form-textarea {
  resize: vertical;
  min-height: 140px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* ── FOOTER ── */
footer {
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 4rem 1.5rem 2rem;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--gray-600);
  line-height: 1.7;
  margin: 1rem 0 0;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  margin: 0 0 1.25rem;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col a {
  font-size: 0.83rem;
  font-weight: 300;
  color: var(--gray-600);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--amber); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: var(--gray-600);
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  font-size: 0.75rem;
  color: var(--gray-600);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom-links a:hover { color: var(--amber); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .industry-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .industry-detail { grid-template-columns: 1fr; gap: 2rem; }
  .industry-detail.reverse { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .case-grid { grid-template-columns: 1fr; }
}

/* ── Hamburger & mobile menu ── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  justify-self: end;
  z-index: 201;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@keyframes mobile-menu-in {
  0%   { clip-path: inset(0 0 100% 0); opacity: 0; }
  100% { clip-path: inset(0 0 0% 0);   opacity: 1; }
}

@keyframes mobile-menu-out {
  0%   { clip-path: inset(0 0 0% 0);   opacity: 1; }
  100% { clip-path: inset(0 0 100% 0); opacity: 0; }
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 100px;
  left: 0;
  right: 0;
  background: #000;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  z-index: 200;
  padding: 1.5rem 2rem 2rem;
  overflow-y: auto;
  max-height: calc(100vh - 100px);
}

.mobile-menu.open {
  display: block;
  animation: mobile-menu-in 0.3s cubic-bezier(0.16,1,0.3,1) forwards;
}

.mobile-menu.closing {
  display: block;
  animation: mobile-menu-out 0.22s ease forwards;
}

.mobile-nav-item {
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.mobile-nav-item > a {
  display: block;
  font-family: 'Aviator', 'Inter', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  padding: 1rem 0;
  letter-spacing: 0.03em;
}

.mobile-nav-sub {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-bottom: 0.75rem;
}

.mobile-nav-sub a {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  padding: 0.4rem 0 0.4rem 1rem;
  border-left: 1px solid rgba(255,255,255,0.12);
  transition: color 0.15s;
}

.mobile-nav-sub a:hover { color: var(--amber); }

.mobile-nav-company {
  display: block;
  font-family: 'Aviator', 'Inter', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  padding: 1rem 0;
  letter-spacing: 0.03em;
}

@media (max-width: 768px) {
  .nav-links--center { display: none; }
  .nav-company { display: none; }
  .hamburger { display: flex; }
  .photo-pair { grid-template-columns: 1fr; }
  .photo-card img { height: 60vw; }
  .photo-quad { grid-template-columns: 1fr; }
  .card-grid { grid-template-columns: 1fr; }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .case-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-primary,
  .hero-actions .btn-outline { text-align: center; }
}

@media (max-width: 480px) {
  .section { padding: 4rem 1rem; }
  .industry-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
