:root {
  --red: #e8321a;
  --bg: #0d0d0d;
  --bg2: #181818;
  --bg3: #222222;
  --white: #f0ece8;
  --grey: #9a9290;
  --light: #d0c8c0;
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: auto; }
body {
  background: #0e0b09;
  background-image: radial-gradient(ellipse 120% 80% at 50% 100%, rgba(80,56,33,0.75) 0%, rgba(60,30,10,0.4) 40%, transparent 65%);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  overscroll-behavior-x: none;
}
#sun-bg {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 85% 50%, rgba(200,100,30,0.45) 0%, rgba(160,70,20,0.22) 40%, transparent 72%),
    radial-gradient(ellipse 50% 40% at 15% 60%, rgba(80,56,33,0.35) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
/* ── LOADER ── */
#loader {
  position: fixed; inset: 0; background: var(--bg);
  z-index: 9999; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 20px;
  transition: opacity 0.8s ease, visibility 0.8s;
}
#loader.hidden { opacity: 0; visibility: hidden; }
.loader-logo { font-family: 'Bebas Neue', sans-serif; font-size: 36px; letter-spacing: 6px; color: var(--white); }
.loader-logo span { color: var(--white); }
.loader-text { font-family: 'Space Mono', monospace; font-size: 9px; letter-spacing: 4px; color: var(--white); text-transform: uppercase; }
.loader-bar-wrap { width: 200px; height: 1px; background: rgba(255,255,255,.1); }
.loader-bar { height: 100%; background: var(--red); width: 0%; transition: width 0.08s linear; }

/* ── NAV ── */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 500; display: flex; align-items: center; padding: 16px 48px; background: rgba(18,18,18,.94); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(255,255,255,.04); }
nav.scrolled { padding: 16px 48px; }
.nav-logo { font-family: 'Bebas Neue', sans-serif; font-size: 28px; letter-spacing: 4px; color: var(--white); text-decoration: none; }
.nav-logo span { color: var(--white); }
.nav-links { display: flex; gap: 24px; list-style: none; margin-left: auto; }
.nav-links a { font-family: 'Space Mono', monospace; font-size: 14px; letter-spacing: 2px; color: var(--light); text-decoration: none; text-transform: uppercase; transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-cta { font-family: 'Space Mono', monospace; font-size: 14px; letter-spacing: 2px; text-transform: uppercase; color: var(--white); border: 1px solid var(--red); padding: 10px 22px; text-decoration: none; transition: background .25s; }
.nav-cta:hover { background: var(--red); }
.nav-right { display: flex; align-items: center; gap: 20px; margin-left: 24px; }
.nav-hamburger { display: none; align-items: center; justify-content: center; width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.15); background: transparent; color: var(--white); cursor: pointer; padding: 0; transition: border-color .2s, background .2s; }
.nav-hamburger:hover { border-color: rgba(255,255,255,.35); background: rgba(255,255,255,.03); }
.nav-hamburger span { display: block; width: 18px; height: 1px; background: currentColor; position: relative; }
.nav-hamburger span::before,
.nav-hamburger span::after { content: ''; position: absolute; left: 0; width: 18px; height: 1px; background: currentColor; }
.nav-hamburger span::before { top: -6px; }
.nav-hamburger span::after { top: 6px; }
.lang-btn { position: relative; }
.lang-toggle { font-family: 'Space Mono', monospace; font-size: 14px; letter-spacing: 2px; text-transform: uppercase; color: var(--light); background: none; border: none; padding: 0; cursor: pointer; display: flex; align-items: center; gap: 7px; transition: color .2s; }
.lang-toggle:hover { color: var(--white); }
.lang-globe { width: 11px; height: 11px; flex-shrink: 0; }
.lang-chevron { width: 8px; height: 8px; transition: transform .25s; flex-shrink: 0; }
.lang-btn.open .lang-chevron { transform: rotate(180deg); }
.lang-dropdown { position: absolute; top: calc(100% + 8px); left: 50%; background: #0e0b09; border: 1px solid rgba(255,255,255,.08); min-width: 120px; opacity: 0; pointer-events: none; transform: translateX(-50%) translateY(-6px); transition: opacity .2s, transform .2s; }
.lang-btn.open .lang-dropdown { opacity: 1; pointer-events: all; transform: translateX(-50%) translateY(0); }
.lang-option { font-family: 'Space Mono', monospace; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--light); padding: 12px 16px; cursor: pointer; display: block; transition: color .2s, background .2s; }
.lang-option:hover { color: var(--white); background: rgba(255,255,255,.04); }
.lang-option.active { color: var(--red); }
.mobile-menu { position: fixed; top: 0; right: 0; width: min(320px, 88vw); height: 100vh; z-index: 550; background: rgba(9,9,9,.98); border-left: 1px solid rgba(255,255,255,.06); padding: 28px 24px; display: none; flex-direction: column; gap: 24px; transform: translateX(100%); transition: transform .28s ease; }
.mobile-menu.open { display: flex; transform: translateX(0); }
.mobile-menu-header { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.mobile-menu-close { width: 40px; height: 40px; border: 1px solid rgba(255,255,255,.12); background: transparent; color: var(--white); font-size: 22px; cursor: pointer; }
.mobile-menu-links { display: flex; flex-direction: column; gap: 14px; list-style: none; padding-top: 12px; }
.mobile-menu-links a { font-family: 'Space Mono', monospace; font-size: 14px; text-transform: uppercase; letter-spacing: 2px; color: var(--light); text-decoration: none; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.06); }
.mobile-menu-actions { margin-top: auto; display: flex; flex-direction: column; gap: 16px; }
.mobile-menu-cta { display: inline-flex; justify-content: center; text-align: center; }
body.menu-open { overflow: hidden; }

/* ── PAGE BANNER (inner pages) ── */
.page-banner {
  padding: 100px 64px 60px;
  background: transparent;
  border-bottom: 1px solid rgba(255,255,255,.04);
  position: relative;
  overflow: hidden;
}
.page-banner::before { display: none; }
.page-banner-inner { position: relative; z-index: 1; }

/* ── HERO ── */
#hero-scroll { height: 300vh; position: relative; width: 100%; }
#hero-sticky { position: sticky; top: 0; width: 100%; height: 100vh; overflow: hidden; z-index: 499; }
#heroBg { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
#heroOverlay { position: absolute; inset: 0; z-index: 1; background: #000; opacity: 0; transition: opacity 0.05s linear; }
#heroRedOverlay { position: absolute; inset: 0; z-index: 2; background: #9e1c0a; opacity: 0; pointer-events: none; transition: opacity 0.05s linear; }
#formCanvas { position: absolute; inset: 0; z-index: 2; width: 100%; height: 100%; }
#heroText { position: absolute; inset: 0; z-index: 3; display: flex; flex-direction: column; justify-content: flex-end; padding: 0 48px 180px; pointer-events: none; }
.hero-tag { font-family: 'Space Mono', monospace; font-size: 10px; letter-spacing: 4px; color: var(--red); text-transform: uppercase; margin-bottom: 20px; display: flex; align-items: center; gap: 12px; }
.hero-tag::before { content: ''; display: block; width: 32px; height: 1px; background: var(--red); }
.hero-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(36px,5.5vw,82px); line-height: .9; letter-spacing: 2px; color: var(--white); margin-bottom: 32px; }
.hero-title .accent { color: var(--red); }
.hero-subtitle { max-width: 480px; font-size: 15px; line-height: 1.8; color: var(--light); margin-bottom: 48px; }
.hero-actions { display: flex; gap: 20px; align-items: center; pointer-events: all; }
.btn-primary { font-family: 'Space Mono', monospace; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--white); background: var(--red); padding: 16px 36px; text-decoration: none; border: 1px solid var(--red); display: inline-block; transition: background .25s, transform .2s; }
.btn-primary:hover { background: transparent; transform: translateY(-2px); }
.btn-ghost { font-family: 'Space Mono', monospace; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--light); text-decoration: none; display: flex; align-items: center; gap: 10px; transition: color .2s; }
.btn-ghost:hover { color: var(--white); }
.btn-ghost::after { content: '→'; transition: transform .2s; }
.btn-ghost:hover::after { transform: translateX(4px); }
#scrollHint { position: absolute; right: 48px; bottom: 80px; z-index: 4; display: flex; flex-direction: column; align-items: center; gap: 10px; }
#scrollHint span { font-family: 'Space Mono', monospace; font-size: 9px; letter-spacing: 3px; color: var(--grey); writing-mode: vertical-rl; text-transform: uppercase; }
.scroll-line { width: 1px; height: 60px; background: linear-gradient(to bottom, var(--grey), transparent); animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%,100%{transform:scaleY(1);opacity:1;} 50%{transform:scaleY(.5);opacity:.4;} }
#formHud { position: absolute; inset: 0; z-index: 3; pointer-events: none; opacity: 0; transition: opacity .5s; }
#formHud.visible { opacity: 1; }
.hud-corner { position: absolute; width: 36px; height: 36px; border-color: rgba(232,50,26,.2); border-style: solid; }
.hud-corner.tl { top: 28px; left: 28px; border-width: 1px 0 0 1px; }
.hud-corner.tr { top: 28px; right: 28px; border-width: 1px 1px 0 0; }
.hud-corner.bl { bottom: 28px; left: 28px; border-width: 0 0 1px 1px; }
.hud-corner.br { bottom: 28px; right: 28px; border-width: 0 1px 1px 0; }
.hud-bar { position: absolute; bottom: 0; left: 0; height: 2px; background: var(--red); width: 0%; }
#heroBtmText { position: absolute; bottom: 60px; left: 64px; max-width: 500px; z-index: 10; opacity: 0; transform: none; pointer-events: none; }
#heroBtmText.visible { pointer-events: auto; }
.hero-btm-tag { font-family: 'Space Mono', monospace; font-size: 9px; letter-spacing: 4px; text-transform: uppercase; color: var(--red); display: block; margin-bottom: 14px; }
.hero-btm-heading { font-family: 'DM Sans', sans-serif; font-size: clamp(20px,2vw,30px); font-weight: 300; font-style: italic; color: var(--white); line-height: 1.5; margin-bottom: 22px; }
.hero-btm-divider { width: 36px; height: 1px; background: var(--red); margin-bottom: 20px; }
.hero-btm-body { font-family: 'DM Sans', sans-serif; font-size: 14px; line-height: 1.9; color: var(--light); margin-bottom: 8px; font-weight: 300; }
.hero-btm-link { display: inline-flex; align-items: center; gap: 10px; border: 1px solid rgba(255,255,255,.25); padding: 13px 28px; font-family: 'Space Mono', monospace; font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--white); text-decoration: none; margin-top: 22px; transition: background .25s, border-color .25s; }
.hero-btm-link::after { content: '→'; }
.hero-btm-link:hover { background: var(--red); border-color: var(--red); }
.hero-red-active .hero-btm-link { border-color: #fff; color: #fff; }
.hero-red-active .hero-btm-link:hover { background: #fff; border-color: #fff; color: #000; }
@media (max-width: 768px) {
  #heroBtmText { left: 24px; right: 24px; max-width: none; bottom: 28px; transform: translateX(160px) translateY(-120px); }
  #heroBtmText .hero-btm-tag { font-size: 8px; margin-bottom: 8px; }
  #heroBtmText .hero-btm-heading { font-size: 13px; margin-bottom: 10px; }
  #heroBtmText .hero-btm-divider { margin-bottom: 10px; }
  #heroBtmText .hero-btm-body { font-size: 10px; line-height: 1.6; margin-bottom: 4px; }
  #heroBtmText .hero-btm-link { font-size: 8px; padding: 9px 18px; margin-top: 10px; }
}
#heroNoise { position: absolute; inset: 0; z-index: 5; pointer-events: none; opacity: .25; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.07'/%3E%3C/svg%3E"); }

/* ── MARQUEE ── */
.marquee-wrap { overflow: hidden; background: var(--red); padding: 16px 0; white-space: nowrap; }
.marquee-track { display: inline-flex; animation: marquee 18s linear infinite; }
.marquee-item { font-family: 'Bebas Neue', sans-serif; font-size: 18px; letter-spacing: 4px; color: rgba(255,255,255,.85); margin: 0 40px; }
.marquee-dot { color: rgba(255,255,255,.4); margin: 0 4px; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ── COMMON SECTIONS ── */
section { position: relative; }
.section-pad { padding: 120px 48px; }
.section-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 72px; flex-wrap: wrap; gap: 24px; }
.section-label { font-family: 'Space Mono', monospace; font-size: 11px; letter-spacing: 4px; color: var(--red); text-transform: uppercase; margin-bottom: 16px; display: flex; align-items: center; gap: 12px; }
.section-label::before { content: ''; display: block; width: 24px; height: 1px; background: var(--red); }
.section-title { font-family: 'Bebas Neue', sans-serif; font-size: 32px; letter-spacing: 2px; line-height: 1; color: var(--white); display: inline-flex; align-items: center; gap: 20px; max-width: 529px; }
#svc-pin-zone .section-title { font-size: 22px !important; }
#feat-chapter-heading { font-size: clamp(52px, 8vw, 110px) !important; letter-spacing: 4px; }
#feature .section-header { padding-left: 8vw; }
.section-link { font-family: 'Space Mono', monospace; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--light); text-decoration: none; align-self: flex-end; display: flex; align-items: center; gap: 8px; transition: color .2s; white-space: nowrap; margin-bottom: 4px; }
.section-link:hover { color: var(--red); }
.section-link::after { content: '→'; transition: transform .2s; }
.section-link:hover::after { transform: translateX(4px); }
.section-divider { width: 100%; padding: 8px 48px 0; display: flex; align-items: center; gap: 16px; overflow: hidden; background: transparent; }
.section-divider::before, .section-divider::after { content: ''; height: 1px; flex: 1; background: linear-gradient(90deg, transparent, rgba(255,255,255,.22), transparent); box-shadow: 0 0 18px rgba(255,255,255,.06); }
.section-divider::after { background: linear-gradient(90deg, transparent, rgba(232,50,26,.8), transparent); box-shadow: 0 0 18px rgba(232,50,26,.48), 0 0 32px rgba(232,50,26,.22); animation: dividerPulse 2.4s ease-in-out infinite; }
@keyframes dividerPulse { 0%, 100% { opacity: .75; transform: scaleX(.99); } 50% { opacity: 1; transform: scaleX(1.02); } }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .35s; }
.reveal-delay-4 { transition-delay: .5s; }
.reveal-scale { opacity: 0; transform: scale(.92); transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1); }
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* ── OUR SERVICES GRID ── */
#our-services {
  background: transparent;
  padding: 135px 48px 60px;
}
.os-layout {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 73px;
}
.os-label-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 80px;
  flex-shrink: 0;
  gap: 22px;
  position: sticky;
  top: 80px;
  align-self: flex-start;
}
.os-vertical-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(72px, 9vw, 130px);
  letter-spacing: 18px;
  color: var(--white);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(0deg);
  white-space: nowrap;
}
.os-icon {
  margin-top: 4px;
  transform: rotate(180deg);
}
.os-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 692px));
  gap: 27px;
}
.os-card {
  display: flex;
  flex-direction: column;
  background: transparent;
  text-decoration: none;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.25);
  width: 100%;
  max-width: 692px;
  height: 469px;
  position: relative;
}
.os-card-body {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 32px 0 0 32px;
  height: 260px;
  z-index: 2;
}
.os-card-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 3.8vw, 52px);
  letter-spacing: 2px;
  line-height: 1.05;
  color: var(--white);
}
.os-card-link {
  position: absolute;
  bottom: 20px;
  right: 28px;
  font-family: 'Space Mono', monospace;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 14px;
  transition: color .25s;
}
.os-card-link::after {
  content: '→';
  display: flex;
  align-items: center;
  gap: 0;
  font-size: 16px;
  letter-spacing: 0;
  padding-left: 80px;
  position: relative;
  background: linear-gradient(currentColor, currentColor) no-repeat left center / calc(100% - 18px) 1px;
  transition: padding-left .3s ease;
}
.os-card:hover .os-card-link { color: var(--white); }
.os-card:hover .os-card-link::after { padding-left: 110px; }
.os-card:hover .os-card-link::after { width: 56px; }
.os-card-img {
  width: calc(100% - 40px);
  height: 240px;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
  margin: 20px auto 0;
}
.os-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.55) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}
.os-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(.7) grayscale(15%);
  transition: transform .6s cubic-bezier(.16,1,.3,1), filter .4s;
}
.os-card:hover .os-card-img img {
  transform: scale(1.04);
  filter: brightness(.85) grayscale(0%);
}
.sat-outer { display: flex; flex-direction: row; align-items: center; gap: 2.5rem; width: 100%; }
.sat-label-top { font-family: 'Space Mono', monospace; font-size: 10px; letter-spacing: 4px; color: var(--grey); text-transform: uppercase; }
.sat-inner-label { display: block; font-family: 'Space Mono', monospace; font-size: 10px; letter-spacing: 3px; color: var(--white); text-transform: uppercase; margin-bottom: 10px; opacity: 0.75; }
.sat-circle-wrap { position: relative; width: 320px; height: 320px; flex-shrink: 0; }
.sat-svg { width: 320px; height: 320px; transform: rotate(-90deg); overflow: visible; }
.sat-track { fill: none; stroke: rgba(255,255,255,.85); stroke-width: 48; }
.sat-arc { fill: none; stroke: var(--red); stroke-width: 48; stroke-linecap: butt; }
.sat-center { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); text-align: center; width: 200px; }
.sat-num { font-family: 'Bebas Neue', sans-serif; font-size: 86px; color: var(--white); line-height: 1; }
.sat-pct { font-family: 'Bebas Neue', sans-serif; font-size: 36px; color: var(--red); }
.sat-bullets { list-style: none; display: flex; flex-direction: column; gap: 0; flex: 1; }
.sat-bullets li { font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 400; letter-spacing: 0.02em; color: var(--white); padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.08); display: flex; align-items: flex-start; gap: 12px; line-height: 1.6; }
.sat-bullets li:first-child { border-top: 1px solid rgba(255,255,255,.08); }
.sat-bullets li::before { content: ''; display: block; width: 6px; height: 6px; border-radius: 50%; background: var(--red); flex-shrink: 0; margin-top: 7px; }

/* ── FEATURE ── */
#feature { background: rgba(0,0,0,0.38); }
.feature-title-wrap { text-align: center; padding: 80px 48px 60px; }
.feature-heading { font-family: 'Bebas Neue', sans-serif; font-size: clamp(64px, 10vw, 140px); letter-spacing: 12px; color: var(--white); display: inline-flex; align-items: center; gap: 24px; }
.feature-heading-icon { display: inline-flex; flex-direction: column; gap: 5px; margin-bottom: 6px; }
.feature-heading-icon span { display: block; background: var(--red); height: 4px; }
.feature-heading-icon span:nth-child(1) { width: 36px; }
.feature-heading-icon span:nth-child(2) { width: 26px; }
.feature-heading-icon span:nth-child(3) { width: 16px; }
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; background: transparent; }
.feat-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 36px;
  position: relative;
  overflow: hidden;
}
.feat-card::before { display: none; }
.feat-card-label { font-family: 'Space Mono', monospace; font-size: 9px; letter-spacing: 4px; text-transform: uppercase; color: var(--red); margin-bottom: 24px; display: flex; align-items: center; gap: 10px; }
.feat-card-label::before { content: ''; display: block; width: 20px; height: 1px; background: var(--red); }
.feat-big-num { font-family: 'Bebas Neue', sans-serif; font-size: clamp(72px,9vw,120px); color: var(--red); line-height: 1; display: flex; align-items: flex-start; }
.feat-big-plus { font-size: .55em; margin-top: .1em; }
.feat-sub { font-family: 'DM Sans', sans-serif; font-size: 15px; color: var(--light); line-height: 1.7; margin-top: 8px; }
.drone-grid { margin-top: 32px; display: flex; flex-direction: column; gap: 8px; }
.drone-row { display: flex; gap: 10px; }
.drone-icon { opacity: 1; color: rgba(255,255,255,0.85) !important; }
.drone-icon.lit { opacity: 1; color: rgba(255,255,255,0.85) !important; filter: none; }
.feat-rank-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.feat-rank-list li { font-family: 'Space Mono', monospace; font-size: 10px; letter-spacing: 1.5px; color: var(--light); text-transform: uppercase; padding-left: 16px; position: relative; }
.feat-rank-list li::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 6px; height: 6px; background: var(--red); border-radius: 50%; }
.feat-donut-row { display: flex; align-items: center; gap: 36px; }
.feat-donut-circle { position: relative; width: 200px; height: 200px; flex-shrink: 0; }
.feat-donut-svg { width: 200px; height: 200px; transform: rotate(-90deg); }
.feat-donut-track { fill: none; stroke: rgba(255,255,255,.08); stroke-width: 24; }
.feat-donut-arc { fill: none; stroke: var(--red); stroke-width: 24; stroke-linecap: butt; }
.feat-donut-center { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); text-align: center; line-height: 1.1; }
.feat-donut-sub { font-family: 'Space Mono', monospace; font-size: 8px; letter-spacing: 1.5px; color: var(--grey); text-transform: uppercase; line-height: 1.5; display: block; margin-bottom: 2px; }
.feat-donut-num { font-family: 'Bebas Neue', sans-serif; font-size: 54px; color: var(--white); line-height: 1; }
.feat-donut-pct { font-family: 'Bebas Neue', sans-serif; font-size: 24px; color: var(--red); }
.feat-footnotes { list-style: none; margin-top: 20px; display: flex; flex-direction: column; gap: 6px; }
.feat-footnotes li { font-family: 'Space Mono', monospace; font-size: 8px; letter-spacing: .5px; color: var(--grey); line-height: 1.7; }

/* ── SERVICES ── */
.services-list { display: flex; flex-direction: column; }
.svc-row { display: grid; grid-template-columns: 72px 1fr 1fr 260px; align-items: center; gap: 56px; padding: 44px 0; border-top: 1px solid rgba(255,255,255,.07); position: relative; transition: background .4s ease, padding .3s; }
.svc-row:hover { background: rgba(232,50,26,0.05); }
.svc-row:last-child { border-bottom: 1px solid rgba(255,255,255,.07); }
.svc-img { width: 260px; height: 150px; overflow: hidden; position: relative; flex-shrink: 0; }
.svc-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(120deg, rgba(232,50,26,.18) 0%, rgba(0,0,0,.45) 100%); transition: opacity .4s; }
.svc-row:hover .svc-img::after { opacity: 0.3; }
.svc-img img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(40%) brightness(0.75); transition: transform .6s cubic-bezier(.16,1,.3,1), filter .4s; }
.svc-row:hover .svc-img img { transform: scale(1.06); filter: grayscale(0%) brightness(0.9); }
.svc-row::before { content: ''; position: absolute; left: -48px; top: 0; bottom: 0; width: 2px; background: var(--red); transform: scaleY(0); transform-origin: top; transition: transform .5s cubic-bezier(.16,1,.3,1), width .4s ease; }
.svc-row:hover::before { transform: scaleY(1); width: 4px; }
.svc-row:hover .svc-title { color: var(--white); transform: translateX(12px); letter-spacing: 4px; }
.svc-row:hover .svc-num { opacity: 1; transform: translateY(-3px); }
.svc-row:hover .svc-desc { color: var(--light); }
.svc-num { font-family: 'Space Mono', monospace; font-size: 11px; letter-spacing: 2px; color: var(--red); opacity: .5; transition: opacity .35s, transform .5s cubic-bezier(.16,1,.3,1); }
.svc-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(28px,3.8vw,52px); letter-spacing: 1px; color: var(--white); transition: color .35s, transform .5s cubic-bezier(.16,1,.3,1), letter-spacing .4s ease; line-height: 1; }
.svc-tag { font-family: 'Space Mono', monospace; font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: var(--red); margin-bottom: 12px; opacity: .8; }
.svc-desc { font-size: 14px; line-height: 1.9; color: var(--grey); max-width: 400px; transition: color .4s ease; }

/* ── STATS ── */
#stats { background: var(--red); padding: 0 48px; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; }
.stat-item { text-align: center; padding: 14px 24px; display: flex; align-items: center; justify-content: center; gap: 10px; }
.stat-num { font-family: 'Bebas Neue', sans-serif; font-size: 28px; line-height: 1; color: var(--white); display: flex; align-items: flex-start; justify-content: center; }
.stat-plus { font-family: 'Bebas Neue', sans-serif; font-size: 16px; color: rgba(255,255,255,.6); margin-top: 3px; }
.stat-label { font-family: 'Space Mono', monospace; font-size: 10px; letter-spacing: 2px; color: rgba(255,255,255,.7); text-transform: uppercase; margin-top: 0; }

/* ── NEWS ── */
#news { background: transparent; }
.news-list { display: flex; flex-direction: column; }
.news-item { display: grid; grid-template-columns: 160px 80px 1fr auto; align-items: center; gap: 32px; padding: 28px 0; border-bottom: 1px solid rgba(255,255,255,.06); text-decoration: none; }
.news-item:first-child { border-top: 1px solid rgba(255,255,255,.06); }
.news-item:hover .news-title-text { color: var(--red); }
.news-date { font-family: 'Space Mono', monospace; font-size: 11px; color: var(--grey); letter-spacing: 1px; }
.news-tag { font-family: 'Space Mono', monospace; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--red); background: rgba(232,50,26,.1); padding: 4px 10px; text-align: center; }
.news-title-text { font-size: 14px; color: var(--light); line-height: 1.5; transition: color .2s; }
.news-arrow { color: var(--grey); font-size: 14px; }

/* ── WORKS ── */
#works { background: transparent; position: relative; overflow: hidden; }
#works::after { content: ''; position: absolute; inset: auto -8% -12% auto; width: 320px; height: 320px; border-radius: 50%; background: radial-gradient(circle, rgba(232,50,26,.26), transparent 64%); filter: blur(20px); pointer-events: none; }
.works-shell { margin: 0 48px 48px; position: relative; z-index: 1; }
.works-showcase { display: flex; flex-direction: column; gap: 3px; }
.works-spotlight { position: relative; overflow: hidden; min-height: 520px; background: rgba(0,0,0,.3); display: flex; align-items: flex-end; }
.spotlight-bg-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(.28) saturate(.65) contrast(1.15); transition: transform 10s ease, filter 1.2s; transform-origin: center; will-change: transform; }
.works-spotlight:hover .spotlight-bg-img { transform: scale(1.06); filter: brightness(.22) saturate(.55) contrast(1.2); }
.works-spotlight::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to right, rgba(0,0,0,.9) 0%, rgba(0,0,0,.5) 55%, transparent 100%), linear-gradient(to top, rgba(0,0,0,.65) 0%, transparent 45%); z-index: 1; pointer-events: none; }
.spotlight-reg-mark { position: absolute; width: 22px; height: 22px; border-color: rgba(232,50,26,.4); border-style: solid; z-index: 3; }
.spotlight-reg-mark.tl { top: 22px; left: 22px; border-width: 1px 0 0 1px; }
.spotlight-reg-mark.tr { top: 22px; right: 22px; border-width: 1px 1px 0 0; }
.spotlight-reg-mark.bl { bottom: 22px; left: 22px; border-width: 0 0 1px 1px; }
.spotlight-reg-mark.br { bottom: 22px; right: 22px; border-width: 0 1px 1px 0; }
.spotlight-num { position: absolute; top: -0.08em; right: 32px; font-family: 'Bebas Neue', sans-serif; font-size: clamp(160px, 22vw, 280px); color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.05); line-height: 1; pointer-events: none; z-index: 2; user-select: none; letter-spacing: -6px; }
.spotlight-content { position: relative; z-index: 3; padding: 56px 64px; width: 100%; display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 48px; }
.spotlight-eyebrow { font-family: 'Space Mono', monospace; font-size: 9px; letter-spacing: 5px; text-transform: uppercase; color: var(--red); margin-bottom: 22px; display: flex; align-items: center; gap: 14px; }
.spotlight-eyebrow::before { content: ''; display: block; width: 28px; height: 1px; background: var(--red); flex-shrink: 0; }
.spotlight-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(60px, 7.5vw, 110px); line-height: 0.92; letter-spacing: 2px; color: var(--white); margin-bottom: 22px; }
.spotlight-copy { color: rgba(184,176,168,.7); font-size: 14px; line-height: 1.9; max-width: 460px; }
.spotlight-stats { display: flex; flex-direction: column; border: 1px solid rgba(255,255,255,.08); flex-shrink: 0; min-width: 168px; }
.spotlight-stat { padding: 18px 26px; border-bottom: 1px solid rgba(255,255,255,.06); }
.spotlight-stat:last-child { border-bottom: none; }
.spotlight-stat-num { font-family: 'Bebas Neue', sans-serif; font-size: 38px; color: var(--white); line-height: 1; }
.spotlight-stat-label { font-family: 'Space Mono', monospace; font-size: 8px; letter-spacing: 2px; color: rgba(255,255,255,.32); text-transform: uppercase; margin-top: 4px; }
.works-equal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; }
.featured-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; grid-template-rows: 230px 230px; gap: 3px; background: rgba(255,255,255,.04); }
.featured-item-tall { grid-row: 1 / -1; }
.featured-item-wide { grid-column: 2 / -1; }
.featured-grid-item { overflow: hidden; position: relative; background: rgba(0,0,0,.25); cursor: pointer; }
.featured-grid-item::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 20%, rgba(0,0,0,.88) 100%); z-index: 1; transition: opacity .4s; }
.featured-grid-item::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: var(--red); transform: scaleX(0); transform-origin: left; transition: transform .5s cubic-bezier(.16,1,.3,1); z-index: 3; }
.featured-grid-item:hover::after { transform: scaleX(1); }
.featured-item-num { position: absolute; bottom: -0.1em; right: 10px; font-family: 'Bebas Neue', sans-serif; font-size: clamp(72px, 9vw, 110px); color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.11); line-height: 1; z-index: 2; pointer-events: none; user-select: none; transition: opacity .35s; }
.featured-grid-item:hover .featured-item-num { opacity: .04; }
.featured-card-label { position: absolute; left: 18px; bottom: 18px; top: auto; z-index: 2; font-family: 'Space Mono', monospace; font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,.8); padding: 0; background: none; border: none; border-radius: 0; }
.featured-grid-item img { width: 100%; height: 100%; object-fit: cover; display: block; filter: brightness(.68) contrast(1.12) saturate(.75) grayscale(.15); transition: transform .7s cubic-bezier(.16,1,.3,1), filter .5s; }
.featured-grid-item:hover img { transform: scale(1.1); filter: brightness(.88) contrast(1.1) saturate(1.0) grayscale(0); }
#works::before { display: none; }
#works .section-pad { padding: 100px 64px 0; position: relative; z-index: 1; }
#works .section-title { font-size: clamp(60px, 8vw, 108px); }
#works .section-header { margin-bottom: 48px; }
#works .works-shell { margin: 0 64px 64px; position: relative; z-index: 1; }

/* ── FAQ ── */
.faq-layout { display: grid; grid-template-columns: 2.2fr 1.6fr; gap: 80px; align-items: start; max-width: 1440px; margin: 0 auto; }
.faq-sticky { position: sticky; top: 120px; display: flex; flex-direction: column; gap: 20px; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-top: 1px solid rgba(255,255,255,.10); }
.faq-item:last-child { border-bottom: 1px solid rgba(255,255,255,.10); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 38px 0;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 26px;
  font-weight: 400;
  color: rgba(255,255,255,.6);
  text-align: left;
  transition: color .3s;
}
.faq-item.open .faq-question { color: var(--white); }
.faq-chevron { flex-shrink: 0; transition: transform .4s cubic-bezier(.16,1,.3,1), color .3s; color: rgba(255,255,255,.35); }
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--red); }
.faq-drop { max-height: 0; overflow: hidden; transition: max-height .6s cubic-bezier(.16,1,.3,1); }
.faq-drop.open { max-height: 500px; }
.faq-answer { font-size: 18px; line-height: 2; color: var(--light); padding-bottom: 40px; }

/* ── HOME SERVICES PREVIEW ── */
.home-svc-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 517px)); gap: 12px; background: transparent; }
.home-svc-card { width: 100%; max-width: 517px; min-height: 280px; height: auto; background: rgba(255,255,255,0.03); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,.08); box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 8px 32px rgba(0,0,0,.12); padding: 40px 36px; display: flex; flex-direction: column; gap: 16px; position: relative; overflow: hidden; transition: background .3s, border-color .3s, box-shadow .3s; will-change: opacity, transform; box-sizing: border-box; }
.home-svc-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: var(--red); transform: scaleX(0); transform-origin: left; transition: transform .4s cubic-bezier(.16,1,.3,1); }
.home-svc-card:hover { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.22); box-shadow: inset 0 1px 0 rgba(255,255,255,.12), 0 12px 40px rgba(0,0,0,.18); }
.home-svc-card:hover::after { transform: scaleX(1); }
.home-svc-num { font-family: 'Space Mono', monospace; font-size: 9px; letter-spacing: 2px; color: var(--red); opacity: .6; }
.home-svc-name { font-family: 'Bebas Neue', sans-serif; font-size: clamp(14px, 1.2vw, 20px); letter-spacing: 1px; color: var(--white); line-height: 1; }
.home-svc-tag { font-family: 'Space Mono', monospace; font-size: 8px; letter-spacing: 3px; text-transform: uppercase; color: var(--red); opacity: .7; }
.home-svc-desc { font-size: 12px; line-height: 1.85; color: var(--grey); flex: 1; }
.home-svc-arrow { font-family: 'Space Mono', monospace; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--light); text-decoration: none; display: flex; align-items: center; gap: 8px; transition: color .2s; margin-top: 8px; }
.home-svc-arrow::after { content: '→'; transition: transform .2s; }
.home-svc-card:hover .home-svc-arrow { color: var(--red); }
.home-svc-card:hover .home-svc-arrow::after { transform: translateX(4px); }

/* ── HOME WORKS CAROUSEL ── */
.wt-outer { padding: 0; }
.wt-viewport { position: relative; overflow: hidden; padding: 64px 0; }
.wt-viewport::before, .wt-viewport::after { content: ''; position: absolute; top: 0; bottom: 0; width: 14%; z-index: 10; pointer-events: none; }
.wt-viewport::before { left: 0; background: linear-gradient(to right, #000 10%, transparent); }
.wt-viewport::after  { right: 0; background: linear-gradient(to left,  #000 10%, transparent); }
.wt-track { display: flex; gap: 22px; transition: transform .9s cubic-bezier(.16,1,.3,1); will-change: transform; align-items: center; touch-action: pan-y; }
.wt-card { flex: 0 0 44vw; max-width: 700px; aspect-ratio: 16/10; position: relative; overflow: hidden; background: rgba(0,0,0,.25); cursor: pointer; transform: scale(0.78); transition: transform .9s cubic-bezier(.16,1,.3,1), box-shadow .9s cubic-bezier(.16,1,.3,1); }
.wt-card::after { content: ''; position: absolute; inset: 0; background: rgba(8,4,2,.22); z-index: 1; pointer-events: none; transition: opacity .9s cubic-bezier(.16,1,.3,1); }
.wt-card img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.58) saturate(.6) blur(1px); transform: scale(1.08); transition: filter .9s cubic-bezier(.16,1,.3,1), transform .9s cubic-bezier(.16,1,.3,1); }
.wt-card.active { transform: scale(1.05); box-shadow: 0 32px 100px rgba(0,0,0,.95), 0 0 160px rgba(232,50,26,.09); }
.wt-card.active::after { opacity: 0; }
.wt-card.active img { filter: brightness(.98) saturate(1) blur(0px); transform: scale(1); }
.wt-card-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.92) 100%); z-index: 2; opacity: 0; transition: opacity .9s cubic-bezier(.16,1,.3,1); }
.wt-card.active .wt-card-overlay { opacity: 1; }
.wt-card-label { position: absolute; bottom: 28px; left: 28px; z-index: 3; opacity: 0; transform: translateY(12px); transition: opacity .9s cubic-bezier(.16,1,.3,1), transform .9s cubic-bezier(.16,1,.3,1); }
.wt-card.active .wt-card-label { opacity: 1; transform: translateY(0); }
.wt-card-cat { font-family: 'Space Mono', monospace; font-size: 8px; letter-spacing: 3px; text-transform: uppercase; color: var(--red); margin-bottom: 6px; }
.wt-card-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(22px, 2.6vw, 42px); color: var(--white); letter-spacing: 1px; line-height: 1; }
.wt-fade { display: none; }
.wt-controls { display: flex; align-items: center; justify-content: space-between; padding: 24px 48px 56px; }
.wt-dots { display: flex; gap: 8px; align-items: center; }
.wt-dot { width: 24px; height: 2px; background: rgba(255,255,255,.16); cursor: pointer; transition: background .25s, width .3s cubic-bezier(.16,1,.3,1); }
.wt-dot.active { background: var(--red); width: 38px; }
.wt-arrows { display: flex; gap: 6px; }
.wt-arrow { width: 40px; height: 40px; border: 1px solid rgba(255,255,255,.14); background: transparent; color: var(--light); font-size: 14px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: border-color .2s, background .2s, color .2s; }
.wt-arrow:hover { border-color: var(--red); color: var(--white); background: rgba(232,50,26,.1); }
@media (max-width: 900px) {
  /* Native scroll-snap carousel on mobile — no JS transform needed */
  .wt-viewport { overflow-x: auto; overflow-y: visible; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; padding: 24px 0; }
  .wt-viewport::-webkit-scrollbar { display: none; }
  .wt-viewport::before, .wt-viewport::after { display: none; }
  .wt-track { transform: none !important; transition: none !important; padding: 0 9vw; touch-action: pan-x; }
  .wt-card { flex: 0 0 82vw; max-width: none; scroll-snap-align: center; transform: scale(1) !important; box-shadow: none !important; }
  .wt-card::after { opacity: 0 !important; }
  .wt-card-overlay { opacity: 1 !important; }
  .wt-card-label { opacity: 1 !important; transform: none !important; }
  .wt-card img { filter: brightness(.88) saturate(1) blur(0) !important; transform: none !important; }
  .wt-card-title { font-size: clamp(18px, 5vw, 28px); }
  .wt-controls { padding: 20px 24px 48px; }
}

/* ─────────────────────────────────────────────
   WORKS — LN-STYLE CINEMATIC SCROLL (DESKTOP)
───────────────────────────────────────────── */
#hw-desktop { background: transparent; }

/* Tall outer div — height calculated by JS */
#hw-outer { position: relative; height: 100vh; }

/* Sticky viewport container — sticks during entire scroll phase */
#hw-sticky {
  position: sticky;
  top: 70px;
  height: calc(100vh - 70px);
  overflow: hidden;
  background: transparent;
}

/* ── Chapter card — full-viewport break between Services and Works ── */
#hw-intro {
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 80px 10vw 155px;
  box-sizing: border-box;
  overflow: hidden;
}
#hw-chapter-label {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 24px;
  opacity: 0.8;
}
#hw-intro-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 8vw, 110px);
  letter-spacing: 4px;
  line-height: 0.9;
  color: var(--white);
  margin: 0;
  display: block;
}
#hw-chapter-line {
  width: 80px;
  height: 2px;
  background: var(--red);
  margin: 36px 0 28px;
}
#hw-chapter-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(16px, 1.8vw, 22px);
  color: var(--grey);
  margin: 0;
  max-width: 420px;
  line-height: 1.6;
}
#hw-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(17px, 2vw, 26px);
  color: var(--grey);
  margin-top: 22px; line-height: 1.7;
  max-width: 600px; letter-spacing: 0.2px;
}
#hw-sub2 {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(14px, 1.55vw, 20px);
  color: rgba(154,146,144,0.72);
  margin-top: 16px; line-height: 1.8;
  max-width: 640px; letter-spacing: 0.15px;
}
@media (max-width: 600px) {
  #hw-intro { padding: 1vh 24px 2vh; }
  #hw-intro-heading { font-size: clamp(32px, 8vw, 56px); letter-spacing: 3px; }
  #hw-sub { font-size: 13px; max-width: 100%; }
  .hw-card-title { font-size: clamp(14px, 5.5vw, 24px); }
  .hw-card-label { font-size: 7px; }
  #hw-scroll-hint { right: 20px; bottom: 20px; }

  /* Tighter canvas — JS will extend outer height for slower scroll speed */
  #hw-track { width: 280vw; }

  /* Tighter card positions, vw heights = landscape aspect on portrait screens */
  #hw-track .hw-card-wrap:nth-child(1) { left: 4vw   !important; top: 8vh  !important; width: 72vw !important; height: 50vw !important; }
  #hw-track .hw-card-wrap:nth-child(2) { left: 82vw  !important; top: 5vh  !important; width: 62vw !important; height: 44vw !important; }
  #hw-track .hw-card-wrap:nth-child(3) { left: 82vw  !important; top: 52vh !important; width: 40vw !important; height: 28vw !important; }
  #hw-track .hw-card-wrap:nth-child(4) { left: 130vw !important; top: 58vh !important; width: 34vw !important; height: 24vw !important; }
  #hw-track .hw-card-wrap:nth-child(5) { left: 170vw !important; top: 7vh  !important; width: 46vw !important; height: 33vw !important; }
  #hw-track .hw-card-wrap:nth-child(6) { left: 200vw !important; top: 54vh !important; width: 38vw !important; height: 28vw !important; }
}

/* ── Scattered mosaic gallery — images at fixed X/Y, viewport pans past them ── */
#hw-gallery { position: absolute; inset: 0; }

/* Wide canvas — cards absolutely positioned within it, GSAP translates this */
#hw-track {
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  width: 210vw;       /* explicit canvas width; JS reads offsetWidth for horizDist */
  will-change: transform;
}

/* Card wrapper — carries the above-card label; overflow: visible so label shows */
.hw-card-wrap {
  position: absolute;
  overflow: visible;
}

/* The actual image box — clips the image */
.hw-card {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: rgba(0,0,0,.2);
}

/* Category label — sits inside the top of the image */
.hw-card-label {
  position: absolute;
  top: 14px; left: 14px;
  font-family: 'Space Mono', monospace;
  font-size: 9px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--grey); white-space: nowrap;
  z-index: 10;
}

.hw-card img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transform: scale(1.06);
  transition: transform 1.2s cubic-bezier(.16,1,.3,1);
  will-change: transform;
}
.hw-card-wrap:hover .hw-card img { transform: scale(1.0); }

.hw-card-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,.80) 100%);
}

/* Title at bottom-left of image */
.hw-card-title {
  position: absolute; bottom: 22px; left: 22px; z-index: 2;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(22px, 2.6vw, 44px);
  color: var(--white); line-height: 1;
}

/* Title placed below the image */
.hw-card-caption {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(14px, 1.7vw, 24px);
  color: var(--white);
  letter-spacing: 0.08em;
  line-height: 1.2;
  pointer-events: none;
  z-index: 2;
  white-space: nowrap;
  perspective: 500px;
  text-shadow: 0 0 28px rgba(232,50,26,0.28), 0 2px 6px rgba(0,0,0,0.7);
}
.hw-char { display: inline-block; }

/* Red sweep line above each caption */
.hw-cap-line {
  display: block;
  height: 1px;
  width: 100%;
  background: linear-gradient(to right, var(--red), transparent);
  margin-bottom: 6px;
  transform-origin: left center;
}

/* Scroll hint (bottom-right, appears once gallery is in position) */
#hw-scroll-hint {
  position: absolute; bottom: 32px; right: 80px; z-index: 20;
  font-family: 'Space Mono', monospace; font-size: 9px;
  letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,.4);
  display: flex; align-items: center; gap: 8px;
  opacity: 0;
}
#hw-scroll-hint span { display: inline-block; animation: hwArrow 1.4s ease-in-out infinite; }
@keyframes hwArrow { 0%,100%{transform:translateX(0)} 50%{transform:translateX(7px)} }

/* individual characters — GSAP animates opacity + translateY */
.hw-char {
  display: inline-block;
  white-space: pre;
  opacity: 0;
}


/* Progress bar */
#hw-progress-wrap {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: rgba(255,255,255,.08); z-index: 20;
}
#hw-progress-bar { height: 100%; width: 0%; background: var(--red); }

/* ── CTA ── */
/* ── CTA ── */
#cta { padding: 48px; background: var(--red); }
.cta-card {
  display: flex; align-items: center; justify-content: space-between;
  border: 1px solid rgba(255,255,255,0.5); padding: 22px 36px;
  text-decoration: none; color: var(--white); transition: background .3s, border-color .3s, color .3s;
  max-width: 1450px; margin: 0 auto;
}
.cta-card:hover { background: #fff; border-color: #fff; }
.cta-card:hover .cta-card-title { color: #000; }
.cta-card:hover .cta-card-sub { color: rgba(0,0,0,0.6); }
.cta-card:hover .cta-card-icon { color: #000; }
.cta-card:hover .cta-card-arrow { color: #000; }
.cta-card-left { display: flex; align-items: center; gap: 28px; flex: 1; justify-content: center; }
.cta-card-icon { flex-shrink: 0; color: var(--white); }
.cta-card-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(22px,2.5vw,36px); letter-spacing: 4px; margin: 0 0 6px; }
.cta-card-sub { font-family: 'DM Sans', sans-serif; font-size: 13px; color: rgba(255,255,255,0.75); margin: 0; line-height: 1.6; max-width: 480px; }
.cta-card-arrow { font-size: 28px; flex-shrink: 0; }

/* ── FOOTER ── */
footer { background: #000; padding: 72px 64px 40px; }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 20px; max-width: 1450px; margin-left: auto; margin-right: auto; }
.footer-logo { font-family: 'Bebas Neue', sans-serif; font-size: 32px; letter-spacing: 4px; color: var(--white); }
.footer-logo span { color: var(--white); }
.footer-right { display: flex; flex-direction: column; align-items: flex-end; gap: 20px; }
.footer-nav { display: flex; gap: 24px; flex-wrap: wrap; justify-content: flex-end; }
.footer-nav a { font-family: 'Space Mono', monospace; font-size: 13px; letter-spacing: 2px; text-transform: uppercase; color: var(--white); text-decoration: none; transition: color .2s; }
.footer-nav a:hover { color: var(--red); }
.footer-socials { display: flex; gap: 18px; align-items: center; }
.footer-socials a { color: var(--white); transition: color .2s; display: flex; align-items: center; }
.footer-socials svg { width: 24px; height: 24px; }
.footer-socials a:hover { color: var(--red); }
.footer-socials svg { width: 20px; height: 20px; }
.footer-bottom { display: flex; justify-content: flex-end; align-items: center; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.04); flex-wrap: wrap; gap: 16px; max-width: 1450px; margin-left: auto; margin-right: auto; }
.footer-copy { font-family: 'Space Mono', monospace; font-size: 10px; letter-spacing: 1px; color: var(--white); }
.social-links { display: flex; gap: 20px; }
.social-links a { font-family: 'Space Mono', monospace; font-size: 10px; letter-spacing: 1px; color: var(--grey); text-decoration: none; transition: color .2s; }
.social-links a:hover { color: var(--red); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 16px 20px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-cta { display: none; }
  .nav-right { margin-left: auto; }
  .section-pad { padding: 64px 20px; }
  .section-title { font-size: clamp(38px, 10vw, 64px) !important; }
  .section-label { font-size: 9px !important; }
  .page-banner { padding: 120px 20px 48px; }
  #heroText { padding: 0 20px 60px; }
  .hero-title { font-size: clamp(44px, 13vw, 80px) !important; }
  .hero-subtitle { font-size: 13px !important; max-width: 100%; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 12px; }
  .btn-primary, .btn-ghost { font-size: 11px !important; padding: 12px 24px !important; }
  #stats { padding: 0 16px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-num { font-size: clamp(40px, 11vw, 64px) !important; }
  .stat-label { font-size: 9px !important; }
  .sat-outer { flex-direction: column !important; align-items: center; gap: 1.5rem; }
  .sat-circle-wrap { width: min(240px, 72vw) !important; height: auto !important; }
  .sat-svg { width: 100% !important; height: auto !important; }
  .sat-bullets { width: 100%; font-size: 13px !important; }
  /* os mobile */
  #our-services { padding: 24px 16px; }
  .os-layout { gap: 12px; }
  .os-label-col { width: 40px; }
  .os-vertical-text { font-size: 16px; letter-spacing: 5px; }
  .os-grid { grid-template-columns: 1fr; gap: 8px; }
  .os-card { height: 130px; max-width: none; }
  .os-card-img { width: 40%; }
  .os-card-title { font-size: clamp(16px, 4.5vw, 24px) !important; }
  .os-card-body { padding: 16px 14px 14px; }
  .svc-row { grid-template-columns: 36px 1fr !important; gap: 16px; padding: 20px 16px; }
  .svc-row > div:nth-child(3) { grid-column: 2; }
  .svc-row > .svc-img { display: none; }
  .svc-row::before { left: 0; }
  .svc-title { font-size: clamp(20px, 5.5vw, 28px) !important; line-height: 1.1; }
  .svc-desc { font-size: 13px !important; }
  .feature-grid { grid-template-columns: 1fr !important; gap: 14px !important; }
  .feat-card { padding: 28px 20px; }
  .feat-big-num { font-size: clamp(80px, 20vw, 120px) !important; }
  .feat-sub { font-size: 13px !important; }
  .drone-grid { display: grid !important; }
  .feat-inner { flex-direction: column !important; align-items: flex-start !important; gap: 20px !important; }
  .feat-inner .sat-circle-wrap { width: min(220px, 68vw) !important; height: auto !important; }
  .feat-inner .sat-svg { width: 100% !important; height: auto !important; }
  .feat-inner .sat-bullets { font-size: 12px !important; }
  .faq-layout { grid-template-columns: 1fr !important; gap: 40px !important; }
  .faq-sticky { position: static !important; }
  .faq-question { font-size: 14px; padding: 18px 0; }
  .faq-answer { font-size: 13px; }
  .news-item { grid-template-columns: 1fr; gap: 6px; padding: 18px 0; }
  .news-arrow { display: none; }
  .news-date { font-size: 9px !important; }
  .news-title-text { font-size: 13px !important; }
  .cta-title { font-size: clamp(40px, 11vw, 72px) !important; }
  .cta-sub { font-size: 13px !important; }
  footer { padding: 40px 20px 24px; }
  .footer-top { flex-direction: column; gap: 24px; }
  .footer-logo { font-size: 26px !important; }
  .footer-right { align-items: flex-start; }
  .footer-nav { justify-content: flex-start; }
  .footer-socials { justify-content: flex-start; }
  .footer-bottom { justify-content: flex-start; }
  .works-shell { margin: 0 20px 20px; }
  .works-spotlight { min-height: 340px; }
  .spotlight-num { display: none; }
  .spotlight-content { grid-template-columns: 1fr; padding: 24px 20px; gap: 20px; }
  .spotlight-eyebrow { margin-bottom: 12px; }
  .spotlight-title { font-size: clamp(24px, 7vw, 42px) !important; margin-bottom: 10px; }
  .spotlight-copy { font-size: 13px; margin-bottom: 16px; }
  .spotlight-stats { flex-direction: row; min-width: 0; width: 100%; border-top: 1px solid rgba(255,255,255,.08); }
  .spotlight-stat { flex: 1; border-bottom: none; border-right: 1px solid rgba(255,255,255,.06); padding: 12px 10px; }
  .spotlight-stat:last-child { border-right: none; }
  .spotlight-stat-num { font-size: 24px; }
  .spotlight-stat-label { font-size: 7px; letter-spacing: 1px; }
  .works-equal-grid { grid-template-columns: 1fr 1fr !important; }
  .featured-grid { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(3, 120px); gap: 2px; }
  .featured-item-tall { grid-row: auto; grid-column: auto; }
  .featured-item-wide { grid-column: auto; }
  .featured-item-num { font-size: 40px !important; }
  #works .section-pad { padding: 60px 16px 0; }
  #works .works-shell { margin: 0 16px 16px; }
  #works .section-title { font-size: clamp(40px, 11vw, 72px) !important; line-height: 1 !important; }
  .home-svc-grid { grid-template-columns: 1fr 1fr; }
  .home-svc-card { padding: 28px 20px; max-width: none; min-height: 0; }
  .cta-card { flex-direction: column; gap: 16px; padding: 20px; text-align: left; }
  .cta-card-left { flex-direction: column; gap: 12px; justify-content: flex-start; }
  .cta-card-icon { display: none; }
  #cta { padding: 24px 16px; }
  .section-divider { padding: 8px 16px 0; }
  #home-works > div:last-child { padding: 0 20px 48px; }
  .home-works-grid { grid-template-columns: 1fr 1fr; }
  .home-works-grid .home-work-item:last-child { display: none; }
}
