/* ===========================================================
   TARLETON ENERGY — Industrial / Energy aesthetic
   Dark navy base · amber + electric blue accents
   =========================================================== */

:root {
  /* Surfaces */
  --bg:           #07090f;
  --bg-2:         #0c1118;
  --bg-3:         #11171f;
  --surface:      #141b25;
  --surface-2:    #1a212c;
  --line:         rgba(255,255,255,.07);
  --line-strong:  rgba(255,255,255,.14);

  /* Brand */
  --amber:        #f5a623;   /* power-grid warm */
  --amber-2:      #ffb955;
  --electric:     #5cc8ff;   /* electric blue */
  --electric-2:   #2da8f0;
  --signal:       #6dffb0;   /* live signal green */

  /* Text */
  --text:         #f0f3f8;
  --text-2:       #b6becc;
  --text-3:       #7a8294;
  --muted:        #555c6b;

  /* Type */
  --font-sans:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Space Grotesk', 'Inter', sans-serif;

  /* Rhythm */
  --maxw:         1280px;
  --pad-x:        clamp(20px, 4vw, 56px);
  --section-y:    clamp(72px, 9vw, 130px);
  --radius:       14px;
  --radius-lg:    22px;

  /* Motion */
  --ease:         cubic-bezier(.2,.7,.2,1);
  --ease-out:     cubic-bezier(.16,1,.3,1);
}

/* ---------- RESET ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; background: none; border: 0; color: inherit; cursor: pointer; }

::selection { background: var(--amber); color: #0a0d12; }

/* Custom scrollbar */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--surface-2); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: #2a3140; }

/* ---------- TYPOGRAPHY ---------- */
.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 22px;
  position: relative;
  padding-left: 28px;
}
.eyebrow::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 18px; height: 1px;
  background: var(--amber);
  transform: translateY(-50%);
}

.section__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(32px, 4.6vw, 60px);
  line-height: 1.05;
  letter-spacing: -.02em;
  color: var(--text);
  max-width: 22ch;
}
.section__title .muted { color: var(--text-3); font-weight: 400; }

.section__lede {
  margin-top: 22px;
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--text-2);
  max-width: 64ch;
  line-height: 1.65;
}

.section__head { margin-bottom: 56px; }
.section__head + .closed { margin-top: 72px; }
.section__head--centered {
  text-align: center;
  margin-bottom: 32px;
}
.section__head--centered .eyebrow { padding-left: 0; }
.section__head--centered .eyebrow::before { display: none; }
.section__head--centered .section__title {
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- LAYOUT ---------- */
section { padding: var(--section-y) var(--pad-x); position: relative; }

/* ---------- NAV ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px var(--pad-x);
  transition: background .35s var(--ease), backdrop-filter .35s var(--ease), padding .35s var(--ease), border-color .35s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(7,9,15,.78);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--line);
  padding: 12px var(--pad-x);
}
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
}
.nav__logo { width: 30px; height: 30px; color: var(--amber); }
.nav__wordmark { display: flex; flex-direction: column; line-height: 1; }
.nav__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .18em;
}
.nav__sub {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 10px;
  letter-spacing: .35em;
  color: var(--text-3);
  margin-top: 3px;
}
.nav__menu {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__menu a {
  font-size: 14px;
  color: var(--text-2);
  font-weight: 500;
  position: relative;
  transition: color .2s var(--ease);
}
.nav__menu a:hover { color: var(--text); }
.nav__menu a:not(.nav__cta)::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 1px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .35s var(--ease);
}
.nav__menu a:not(.nav__cta):hover::after { transform: scaleX(1); }

.nav__cta {
  padding: 10px 18px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--text) !important;
  font-weight: 500;
  transition: all .25s var(--ease);
}
.nav__cta:hover {
  background: var(--amber);
  border-color: var(--amber);
  color: #0a0d12 !important;
}
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav__burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  font-family: var(--font-sans);
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: .01em;
  border-radius: 999px;
  cursor: pointer;
  transition: all .3s var(--ease);
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn svg { width: 18px; height: 18px; transition: transform .3s var(--ease); }
.btn:hover svg { transform: translateX(3px); }

.btn--primary {
  background: var(--amber);
  color: #0a0d12;
  box-shadow:
    0 1px 0 rgba(255,255,255,.25) inset,
    0 10px 28px -8px rgba(245,166,35,.55);
}
.btn--primary:hover {
  background: var(--amber-2);
  transform: translateY(-1px);
  box-shadow:
    0 1px 0 rgba(255,255,255,.4) inset,
    0 16px 36px -8px rgba(245,166,35,.7);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line-strong);
}
.btn--ghost:hover {
  border-color: var(--text);
  background: rgba(255,255,255,.04);
}

/* ===========================================================
   HERO
   =========================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  padding: 140px var(--pad-x) 100px;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(1200px 800px at 80% -10%, rgba(245,166,35,.18), transparent 60%),
    radial-gradient(900px 700px at 10% 100%, rgba(45,168,240,.16), transparent 55%),
    linear-gradient(180deg, #06080d 0%, #0a0e16 60%, #0c1219 100%);
}

.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: .8;
}

.hero__grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black, transparent 80%);
}

.hero__vignette {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(0,0,0,.6), transparent),
    linear-gradient(180deg, transparent 60%, rgba(7,9,15,.9));
  pointer-events: none;
}

.hero__content {
  max-width: var(--maxw);
  margin: 0 auto;
  width: 100%;
  position: relative;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255,255,255,.03);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: .18em;
  color: var(--text-2);
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp .9s var(--ease-out) .1s forwards;
}
.hero__pulse {
  width: 8px; height: 8px;
  background: var(--signal);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--signal);
  animation: pulse 1.8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.85); }
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(56px, 11vw, 168px);
  line-height: .88;
  letter-spacing: -.045em;
  margin-bottom: 32px;
}
.hero__line {
  display: block;
  opacity: 0;
  transform: translateY(60px);
  animation: fadeUp 1.1s var(--ease-out) forwards;
}
.hero__line:nth-child(1) { animation-delay: .25s; }
.hero__line:nth-child(2) { animation-delay: .4s; }
.hero__line:nth-child(3) { animation-delay: .55s; }
.hero__line--accent {
  background: linear-gradient(110deg, var(--amber) 0%, var(--amber-2) 35%, var(--electric) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

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

.hero__lede {
  max-width: 56ch;
  font-size: clamp(17px, 1.5vw, 21px);
  color: var(--text-2);
  margin-bottom: 44px;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) .8s forwards;
}

.hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) .95s forwards;
}

.hero__scroll {
  position: absolute;
  bottom: -50px;
  left: 0;
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--text-3);
  opacity: 0;
  animation: fadeIn 1s ease 1.4s forwards;
}
.hero__scroll-line {
  display: inline-block;
  width: 60px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--text-3));
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, var(--amber));
  animation: scrollLine 2.4s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
@keyframes fadeIn { to { opacity: 1; } }

/* ===========================================================
   STATS STRIP
   =========================================================== */
.stats {
  padding: 68px var(--pad-x);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(800px 200px at 50% 0%, rgba(245,166,35,.05), transparent 70%),
    linear-gradient(180deg, #080b11, #0a0e16);
}
.stats__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
}
.stat {
  position: relative;
  padding-left: 28px;
}
.stat::before {
  content: "";
  position: absolute;
  left: 0; top: 6px; bottom: 14px;
  width: 1px;
  background: linear-gradient(180deg, var(--amber) 0%, var(--amber) 30%, transparent 100%);
}
.stat::after {
  content: "";
  position: absolute;
  left: -2px; top: 4px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 8px rgba(245,166,35,.6);
}
.stat__value {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(38px, 4.4vw, 62px);
  line-height: 1;
  color: var(--text);
  letter-spacing: -.025em;
  display: inline-flex;
  align-items: baseline;
}
.stat__symbol {
  font-size: .7em;
  color: var(--amber);
  margin-left: 2px;
}
.stat__unit {
  display: inline-block;
  margin-left: 6px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  color: var(--amber);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.stat__label {
  margin-top: 10px;
  font-size: 13px;
  color: var(--text-3);
  letter-spacing: .04em;
}

/* ===========================================================
   WHAT WE DO
   =========================================================== */
.what {
  max-width: var(--maxw);
  margin: 0 auto;
}
.what .section__head { max-width: 800px; }

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 64px;
}
.card {
  position: relative;
  padding: 38px 28px 32px;
  background: linear-gradient(180deg, var(--surface), var(--bg-2));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .5s var(--ease), border-color .35s var(--ease), background .35s var(--ease);
}
.card::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(135deg, var(--amber), transparent 55%);
  border-radius: inherit;
  opacity: 0;
  transition: opacity .4s var(--ease);
  z-index: 0;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  padding: 1px;
}
.card::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
  opacity: 0;
  transition: opacity .35s var(--ease);
}
.card:hover {
  transform: translateY(-8px);
  border-color: transparent;
  background: linear-gradient(180deg, var(--surface-2), var(--bg-2));
}
.card:hover::before { opacity: 1; }
.card:hover::after { opacity: 1; }

.card__num {
  font-family: var(--font-display);
  font-size: 11px;
  color: var(--amber);
  letter-spacing: .3em;
  margin-bottom: 26px;
  opacity: .8;
}
.card__icon {
  width: 44px; height: 44px;
  color: var(--amber);
  margin-bottom: 24px;
  transition: transform .5s var(--ease);
  filter: drop-shadow(0 0 8px rgba(245,166,35,.25));
}
.card:hover .card__icon {
  transform: scale(1.08) rotate(-3deg);
  filter: drop-shadow(0 0 14px rgba(245,166,35,.5));
}

.card h3 {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -.012em;
  margin-bottom: 12px;
  color: var(--text);
}
.card p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.7;
}

/* ===========================================================
   TRACK RECORD — Map + Closed Deals
   =========================================================== */
.track {
  max-width: 100%;
  margin: 0 auto;
  padding-left: 0;
  padding-right: 0;
}
.track .section__head,
.track .closed {
  max-width: var(--maxw);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}
.track .closed {
  margin-top: 56px;
}

/* --- MAP — full-bleed, no container --- */
.map {
  position: relative;
  margin: 40px 0 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
}
.map::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 18%;
  width: 70%;
  height: 70%;
  transform: translateX(-50%);
  pointer-events: none;
  background:
    radial-gradient(ellipse 45% 50% at 55% 60%, rgba(245,166,35,.09), transparent 65%),
    radial-gradient(ellipse 30% 35% at 50% 65%, rgba(109,255,176,.07), transparent 65%);
  filter: blur(20px);
  z-index: 0;
}
.map__svg {
  width: 100%;
  height: auto;
  max-width: 1200px;
  margin: 0 auto;
  display: block;
  font-family: var(--font-display);
  position: relative;
  z-index: 1;
}

/* All 50 contiguous states - inactive default */
.map__states path {
  fill: #14181f;
  stroke: rgba(255, 255, 255, .06);
  stroke-width: .5;
  transition: fill .35s var(--ease), stroke .35s var(--ease);
}
.map__states path:hover {
  fill: #1c222d;
}

/* Active — AR is LIVE + DELIVERED (green) */
.map__states .ar {
  fill: rgba(109, 255, 176, .22);
  stroke: rgba(109, 255, 176, .6);
  stroke-width: 1;
}
.map__states .ar:hover {
  fill: rgba(109, 255, 176, .32);
}

/* Active — ND is DELIVERED (amber solid) */
.map__states .nd {
  fill: rgba(245, 166, 35, .26);
  stroke: rgba(245, 166, 35, .65);
  stroke-width: 1;
}
.map__states .nd:hover {
  fill: rgba(245, 166, 35, .38);
}

/* Active — TN/OH/TX are PIPELINE (amber dashed outline) */
.map__states .tn,
.map__states .oh,
.map__states .tx {
  fill: rgba(245, 166, 35, .1);
  stroke: rgba(245, 166, 35, .45);
  stroke-width: 1;
  stroke-dasharray: 3 3;
}
.map__states .tn:hover,
.map__states .oh:hover,
.map__states .tx:hover {
  fill: rgba(245, 166, 35, .22);
  stroke: rgba(245, 166, 35, .8);
}

/* STATE LABELS — every state shows its abbreviation */
.map__labels text {
  font-family: var(--font-display);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .15em;
  fill: rgba(180, 195, 215, .42);
  pointer-events: none;
  text-anchor: middle;
  user-select: none;
}
.map__labels .label--active {
  fill: rgba(255, 230, 180, .92);
}
.map__labels .label--live {
  fill: var(--signal);
  filter: drop-shadow(0 0 4px rgba(109, 255, 176, .6));
}

.map-node {
  cursor: pointer;
  transition: transform .3s var(--ease);
  transform-origin: center;
  transform-box: fill-box;
  pointer-events: none;
}
.map-node circle { pointer-events: auto; }
.map-node:focus { outline: none; }

.map-node .map-node__glow {
  transition: r .35s var(--ease), opacity .35s var(--ease);
}
.map-node .map-node__ring {
  transition: r .35s var(--ease), stroke-width .35s var(--ease), opacity .35s var(--ease);
}
.map-node .map-node__dot {
  transition: r .35s var(--ease);
}

.map-node__label {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: .16em;
  fill: var(--text);
  pointer-events: none;
  paint-order: stroke;
  stroke: rgba(7,9,15,.6);
  stroke-width: 3;
  stroke-linejoin: round;
}
.map-node__label--live { fill: var(--signal); }

.map-node__sub {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: .2em;
  fill: var(--text-2);
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s var(--ease);
  paint-order: stroke;
  stroke: rgba(7,9,15,.6);
  stroke-width: 2.5;
}
.map-node:hover .map-node__sub,
.map-node:focus .map-node__sub {
  opacity: 1;
}
.map-node--live .map-node__sub {
  opacity: .92;
  fill: var(--signal);
}
.map-node--live:hover .map-node__sub { opacity: 1; }
.map-node__sub--live { fill: var(--signal); }

.map-node:hover .map-node__glow,
.map-node:focus .map-node__glow {
  opacity: 1;
}
.map-node:hover .map-node__ring,
.map-node:focus .map-node__ring {
  stroke-width: 2.5;
  opacity: 1;
}
.map-node:hover .map-node__dot,
.map-node:focus .map-node__dot {
  r: 8;
}

.map__legend {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
  padding-top: 16px;
  margin-top: 0;
  position: relative;
  z-index: 1;
}
.map__fade {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,.06) 50%, transparent 100%);
  pointer-events: none;
}
.map__legend-item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-size: 10.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--text-2);
  font-weight: 500;
}
.map__legend-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  position: relative;
}
.map__legend-dot--live {
  background: var(--signal);
  box-shadow: 0 0 10px var(--signal);
}
.map__legend-dot--live::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1px solid var(--signal);
  opacity: .5;
  animation: pulse 2s ease-in-out infinite;
}
.map__legend-dot--delivered {
  background: var(--amber);
  box-shadow: 0 0 10px rgba(245,166,35,.5);
}
.map__legend-dot--pipeline {
  background: transparent;
  border: 1.5px dashed var(--amber);
}

/* --- CLOSED DEALS --- */
.closed {
  max-width: 1040px;
  margin: 64px auto 0;
}

.closed__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.closed__card {
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg-2) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .5s var(--ease), border-color .3s var(--ease), box-shadow .35s var(--ease);
  box-shadow: 0 22px 50px -28px rgba(0,0,0,.55);
  min-height: 100%;
}
.closed__card:hover {
  transform: translateY(-5px);
  border-color: rgba(245,166,35,.35);
  box-shadow: 0 30px 70px -25px rgba(0,0,0,.7), 0 0 0 1px rgba(245,166,35,.1);
}
.closed__photo {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-2);
}
.closed__photo::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 30%;
  background: linear-gradient(180deg, transparent, rgba(20,27,37,.95));
  pointer-events: none;
  z-index: 1;
}
.closed__photo img,
.closed__video {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(.92);
  transition: transform 1.2s var(--ease);
  display: block;
}
.closed__card:hover .closed__photo img,
.closed__card:hover .closed__video {
  transform: scale(1.05);
}
.closed__photo-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 55%, rgba(20,27,37,.6));
  pointer-events: none;
}

.closed__body {
  padding: 28px 30px 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.closed__meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 2px;
}
.badge--delivered {
  background: transparent;
  border: 1px solid rgba(245,166,35,.4);
  color: var(--amber);
  margin-bottom: 0;
  padding: 6px 12px 6px 9px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 10.5px;
  letter-spacing: .22em;
  font-weight: 600;
  line-height: 1;
  border-radius: 999px;
  font-family: var(--font-display);
}
.badge__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 11px; height: 11px;
  background: var(--amber);
  color: #0a0d12;
  border-radius: 50%;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0;
  flex-shrink: 0;
}

.closed__name {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 600;
  letter-spacing: -.015em;
  line-height: 1.15;
  margin: 0;
}
.closed__status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .05em;
  color: var(--signal);
  margin: 0;
  padding: 8px 14px 8px 12px;
  align-self: flex-start;
  background: rgba(109, 255, 176, .06);
  border: 1px solid rgba(109, 255, 176, .2);
  border-radius: 999px;
}
.closed__status-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 10px var(--signal);
  animation: pulse 1.8s ease-in-out infinite;
}

/* ===========================================================
   AVAILABLE — AR
   =========================================================== */
.available {
  position: relative;
  overflow: hidden;
}
.available__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(1000px 600px at 15% 0%, rgba(245,166,35,.1), transparent 50%),
    radial-gradient(800px 500px at 100% 100%, rgba(92,200,255,.08), transparent 60%);
}
.available__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px 7px 11px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: .2em;
  font-weight: 600;
  margin-bottom: 22px;
}
.badge--live {
  background: rgba(109,255,176,.1);
  border: 1px solid rgba(109,255,176,.3);
  color: var(--signal);
}
.badge__dot {
  width: 7px; height: 7px;
  background: var(--signal);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--signal);
  animation: pulse 1.6s ease-in-out infinite;
}

.spec {
  margin-top: 38px;
  margin-bottom: 44px;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}
.spec li {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
  transition: padding-left .25s var(--ease);
}
.spec li:hover {
  padding-left: 8px;
}
.spec__k {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--text-3);
}
.spec__v {
  font-size: 16px;
  color: var(--text);
  font-weight: 500;
}

.available__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* visual side */
.available__visual {
  position: relative;
  aspect-ratio: 4 / 5;
}
.available__photo {
  position: relative;
  width: 100%; height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow:
    0 30px 80px -30px rgba(0,0,0,.7),
    0 0 0 1px rgba(255,255,255,.03);
}
.available__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
  filter: contrast(1.05) saturate(.85);
}
.available__visual:hover .available__photo img { transform: scale(1.05); }
.available__photo-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 40%, rgba(7,9,15,.85)),
    linear-gradient(135deg, rgba(245,166,35,.18), transparent 50%);
  pointer-events: none;
}
.available__photo-tag {
  position: absolute;
  bottom: 26px; left: 26px; right: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: .22em;
  color: var(--text-2);
}
.available__photo-tag span:first-child { color: var(--text); font-weight: 600; }

.available__chip {
  position: absolute;
  padding: 16px 22px;
  background: rgba(20,27,37,.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  box-shadow: 0 20px 40px -15px rgba(0,0,0,.6);
}
.available__chip--top { top: -18px; right: -18px; }
.available__chip--bot { bottom: -18px; left: -18px; }
.available__chip-k {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: .22em;
  color: var(--text-3);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.available__chip-v {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--amber);
}

/* ===========================================================
   PIPELINE — TN
   =========================================================== */
.pipeline {
  max-width: var(--maxw);
  margin: 0 auto;
}
.pipeline__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 56px;
}
.pipeline__card {
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg-2) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .5s var(--ease), border-color .3s var(--ease), box-shadow .35s var(--ease);
  box-shadow: 0 18px 40px -25px rgba(0,0,0,.55);
}
.pipeline__card:hover {
  transform: translateY(-5px);
  border-color: rgba(245,166,35,.25);
  box-shadow: 0 26px 60px -22px rgba(0,0,0,.7);
}
.pipeline__photo {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  position: relative;
}
.pipeline__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(20,27,37,.8));
}
.pipeline__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(.8) contrast(1.05);
  transition: transform 1s var(--ease);
}
.pipeline__card:hover .pipeline__photo img { transform: scale(1.05); }

.pipeline__body { padding: 28px 28px 32px; }
.pipeline__meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 10.5px;
  letter-spacing: .22em;
  font-weight: 500;
  color: var(--text-3);
  background: transparent;
  border: 1px solid var(--line);
  line-height: 1;
}
.pill--pending {
  color: var(--amber);
  background: rgba(245,166,35,.08);
  border-color: rgba(245,166,35,.3);
}
.pipeline__body h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -.01em;
  margin-bottom: 22px;
}
.pipeline__specs {
  display: grid;
  gap: 12px;
}
.pipeline__specs li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--line);
  gap: 16px;
}
.pipeline__specs li:last-child { border-bottom: 0; padding-bottom: 0; }
.pipeline__specs span {
  font-size: 12px;
  letter-spacing: .14em;
  color: var(--text-3);
  text-transform: uppercase;
  font-family: var(--font-display);
}
.pipeline__specs b {
  font-size: 15px;
  color: var(--text);
  font-weight: 500;
  text-align: right;
}

/* ===========================================================
   PROCESS — TIMELINE
   =========================================================== */
.process {
  max-width: var(--maxw);
  margin: 0 auto;
}
.timeline {
  position: relative;
  margin-top: 50px;
  display: grid;
  gap: 0;
}
.timeline__step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 28px 0;
}
.timeline__rail {
  position: relative;
  display: flex;
  justify-content: center;
}
.timeline__rail::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  background: linear-gradient(180deg, var(--amber), var(--line) 80%);
}
.timeline__step:last-child .timeline__rail::before {
  background: linear-gradient(180deg, var(--amber) 0%, transparent 50%);
}
.timeline__step:first-child .timeline__rail::before {
  background: linear-gradient(180deg, transparent 0%, var(--amber) 50%, var(--amber) 100%);
}
.timeline__dot {
  position: relative;
  z-index: 1;
  margin-top: 10px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 6px rgba(245,166,35,.15), 0 0 20px rgba(245,166,35,.6);
}
.timeline__card {
  padding: 26px 32px;
  background: linear-gradient(135deg, var(--surface) 0%, var(--bg-3) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform .35s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.timeline__step:hover .timeline__card {
  transform: translateX(8px);
  border-color: rgba(245,166,35,.3);
  box-shadow: -6px 12px 30px -15px rgba(245,166,35,.25);
}
.timeline__day {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: .22em;
  color: var(--amber);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.timeline__card h4 {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -.01em;
  margin-bottom: 10px;
}
.timeline__card p {
  font-size: 14.5px;
  color: var(--text-2);
  line-height: 1.65;
}

/* ===========================================================
   ABOUT
   =========================================================== */
.about {
  background: linear-gradient(180deg, var(--bg) 0%, #080b11 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.about__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about__copy p {
  font-size: 16.5px;
  color: var(--text-2);
  margin-top: 22px;
  line-height: 1.75;
  max-width: 52ch;
}
.about__cred {
  margin-top: 44px;
  display: grid;
  gap: 16px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.about__cred-item {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 20px;
  align-items: baseline;
}
.about__cred-k {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--text-3);
}
.about__cred-v {
  font-size: 15px;
  color: var(--text);
  font-weight: 500;
}

.about__visual {
  position: relative;
  aspect-ratio: 5 / 6;
}
.about__photo {
  width: 100%; height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  position: relative;
}
.about__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 50%, rgba(7,9,15,.7)),
    linear-gradient(135deg, rgba(45,168,240,.1), transparent 60%);
}
.about__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(.8) contrast(1.08);
}
.about__quote {
  position: absolute;
  left: -30px;
  bottom: 40px;
  max-width: 320px;
  padding: 26px 30px;
  background: rgba(20,27,37,.96);
  backdrop-filter: blur(20px);
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  box-shadow: 0 20px 50px -15px rgba(0,0,0,.6);
}
.about__quote svg {
  width: 24px; height: 24px;
  color: var(--amber);
  margin-bottom: 10px;
}
.about__quote p {
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 1.5;
  color: var(--text);
  font-weight: 500;
  letter-spacing: -.005em;
}

/* ===========================================================
   CONTACT
   =========================================================== */
.contact__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.contact__card {
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg-2) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 8px;
  overflow: hidden;
}
.contact__row {
  display: grid;
  grid-template-columns: 110px 1fr 24px;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  border-radius: var(--radius);
  transition: background .3s var(--ease);
  position: relative;
}
.contact__row + .contact__row { border-top: 1px solid var(--line); }
.contact__row:hover {
  background: rgba(245,166,35,.04);
}
.contact__row-k {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--text-3);
}
.contact__row-v {
  font-size: 17px;
  color: var(--text);
  font-weight: 500;
}
.contact__arrow {
  width: 18px; height: 18px;
  color: var(--text-3);
  transition: transform .35s var(--ease), color .3s var(--ease);
}
.contact__row:hover .contact__arrow {
  transform: translate(4px, -4px) rotate(-45deg);
  color: var(--amber);
}

/* ===========================================================
   FOOTER
   =========================================================== */
.footer {
  padding: 50px var(--pad-x);
  border-top: 1px solid var(--line);
  background: #06080d;
}
.footer__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer__logo { width: 28px; height: 28px; color: var(--amber); }
.footer__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .2em;
}
.footer__tagline {
  font-size: 12px;
  color: var(--text-3);
  margin-top: 3px;
}
.footer__meta {
  font-size: 12px;
  color: var(--text-3);
  line-height: 1.6;
  text-align: right;
  max-width: 540px;
}
.footer__sep { margin: 0 8px; }

/* ===========================================================
   REVEAL ANIMATIONS
   =========================================================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================================================
   RESPONSIVE
   =========================================================== */
@media (max-width: 1024px) {
  .stats__inner { grid-template-columns: repeat(2, 1fr); gap: 36px 30px; }
  .cards { grid-template-columns: 1fr 1fr; }
  .available__inner { grid-template-columns: 1fr; gap: 60px; }
  .pipeline__grid { grid-template-columns: 1fr; }
  .about__inner { grid-template-columns: 1fr; gap: 60px; }
  .contact__inner { grid-template-columns: 1fr; gap: 50px; }
  .about__quote { left: 20px; bottom: 20px; max-width: calc(100% - 40px); }
  .closed__grid { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .nav__menu {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(7,9,15,.97);
    backdrop-filter: blur(28px);
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    transform: translateX(100%);
    transition: transform .4s var(--ease);
  }
  .nav__menu.is-open { transform: translateX(0); }
  .nav__menu a { font-size: 22px; }
  .nav__burger { display: flex; z-index: 101; }

  .cards { grid-template-columns: 1fr; }
  .hero { padding-top: 120px; }
  .hero__title { font-size: clamp(54px, 16vw, 96px); }
  .spec li { grid-template-columns: 1fr; gap: 6px; }
  .timeline__step { grid-template-columns: 50px 1fr; gap: 16px; }
  .timeline__card { padding: 22px 20px; }
  .about__cred-item { grid-template-columns: 1fr; gap: 4px; }
  .available__chip--top { top: -10px; right: -10px; padding: 12px 16px; }
  .available__chip--bot { bottom: -10px; left: -10px; padding: 12px 16px; }
  .available__chip-v { font-size: 15px; }
  .available__photo-tag { display: none; }
  .map { padding: 16px 8px 16px; }
  .map-node__sub { font-size: 8px; }
  .map__legend { gap: 14px; }
  .closed__body { padding: 24px 22px 26px; }
  .footer__inner { flex-direction: column; text-align: center; }
  .footer__meta { text-align: center; }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
  .hero__line { opacity: 1; transform: none; }
  .hero__eyebrow, .hero__lede, .hero__ctas, .hero__scroll { opacity: 1; }
}
