/* ============================================================
   Reptile Industries — site.css  |  Ouroboros Edition
   ============================================================ */

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

:root {
  --bg:        #030608;
  --panel:     #070e0b;
  --panel2:    #050b08;
  --text:      #ffffff;
  --muted:     rgba(255,255,255,0.84);
  --dim:       rgba(255,255,255,0.56);
  --green:     #3dffa0;
  --gold:      #c8a84c;
  --gold-dim:  #8a6e2a;
  --ember:     rgba(200,168,76,0.10);
  --line:      rgba(61,255,160,0.15);
  --line-md:   rgba(61,255,160,0.24);
  --line-gold: rgba(200,168,76,0.18);
  --shadow:    0 4px 32px rgba(0,0,0,0.55), 0 1px 6px rgba(0,0,0,0.35);
  --shadow-lg: 0 16px 64px rgba(0,0,0,0.65);
  --glow:      0 0 0 1px rgba(61,255,160,0.11);
  --glow-h:    0 0 0 1px rgba(61,255,160,0.22), 0 0 32px rgba(61,255,160,0.07);
  --cut:       13px;
  --max:       1060px;
  --accent:  var(--green);   /* alias — primary CTA accent */
  --mono:      'JetBrains Mono', 'Fira Code', ui-monospace, monospace;
  --sans:      'Outfit', ui-sans-serif, system-ui, sans-serif;
  --serif:     'Cinzel', Georgia, serif;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 400;
  color: var(--text);
  /* Solid base; scene layers sit above this via fixed pseudo-elements */
  background:
    radial-gradient(ellipse 100% 55% at 50% 100%, rgba(0,0,0,0.55) 0%, transparent 65%)
    var(--bg);
  line-height: 1.65;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ── LAYER 1: The landscape scene ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    /* Subtle top-corner luminance — prevents sky from feeling dead flat */
    radial-gradient(ellipse 70% 40% at 76% 0%,   rgba(200,168,76,0.055) 0%, transparent 55%),
    radial-gradient(ellipse 50% 30% at  8% 0%,   rgba(61,255,160,0.035) 0%, transparent 50%),
    /* The landscape SVG — anchors to viewport bottom, scales to cover */
    url('bg-scene.svg') center bottom / cover no-repeat;
}

/* ── LAYER 2: Drifting mist overlay ── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 110% 35% at 22% 60%, rgba(16,42,26,0.38) 0%, transparent 65%),
    radial-gradient(ellipse  80% 28% at 74% 66%, rgba(13,36,22,0.30) 0%, transparent 62%),
    radial-gradient(ellipse  90% 22% at 50% 73%, rgba(9,26,16,0.24)  0%, transparent 60%);
  animation: bgMistDrift 32s ease-in-out infinite;
  will-change: transform;
}

/* ── PARTICLE CANVAS (injected by JS) ── */
#bgParticles {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* ── SECONDARY MIST DIV (injected by JS) ── */
.bgMist2 {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 70% 30% at 60% 55%, rgba(14,38,24,0.32) 0%, transparent 65%),
    radial-gradient(ellipse 60% 25% at 30% 68%, rgba(10,28,18,0.26) 0%, transparent 60%);
  animation: bgMistDrift2 40s ease-in-out infinite;
  will-change: transform;
}

/* ── MIST DRIFT KEYFRAMES ── */
@keyframes bgMistDrift {
  0%   { transform: translate(0px,    0px);   }
  20%  { transform: translate(18px,  -9px);   }
  45%  { transform: translate(-12px,  6px);   }
  70%  { transform: translate(10px,  -4px);   }
  100% { transform: translate(0px,    0px);   }
}

@keyframes bgMistDrift2 {
  0%   { transform: translate(0px,   0px);    }
  25%  { transform: translate(-14px, 7px);    }
  55%  { transform: translate(20px,  -5px);   }
  80%  { transform: translate(-8px,  10px);   }
  100% { transform: translate(0px,   0px);    }
}

/* ── REDUCED MOTION: keep static scene, kill animation ── */
@media (prefers-reduced-motion: reduce) {
  body::after,
  .bgMist2 {
    animation: none;
  }
}

a { color: inherit; text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--green); }
img { max-width: 100%; display: block; }
ul { list-style: none; }
p { line-height: 1.72; text-shadow: 0 1px 8px rgba(0,0,0,0.38); }

h1, h2, h3, h4 {
  font-family: var(--serif);
  letter-spacing: 0.04em;
  line-height: 1.2;
  color: #fff;
  text-shadow: 0 2px 14px rgba(0,0,0,0.55);
}

/* ===== HEADER ===== */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(3,16,10,0.72);
  backdrop-filter: blur(24px) saturate(1.8);
  -webkit-backdrop-filter: blur(24px) saturate(1.8);
  border-bottom: 1px solid rgba(61,255,160,0.15);
}

header::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 30%, var(--green) 65%, transparent 100%);
  opacity: 0.35;
}

.nav {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--text);
}
.brand:hover { color: var(--text); }

.brandSub {
  display: inline-block;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-left: 7px;
  opacity: 0.75;
  vertical-align: middle;
  position: relative;
  top: -1px;
}


.brandLogo {
  width: auto;
  height: 44px;
  max-width: 48px;
  border-radius: 0;
  flex-shrink: 0;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(61,255,160,0.35));
}

.navlinks {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.07em;
  color: rgba(255,255,255,0.68);
}

.navlinks a {
  padding: 6px 11px;
  border-radius: 4px;
  text-transform: uppercase;
  transition: color 0.18s, background 0.18s;
}
.navlinks a:hover         { color: #fff; background: rgba(61,255,160,0.08); }
.navlinks a.active        { color: var(--green); background: rgba(61,255,160,0.07); }

/* ===== PAGE SHELL ===== */
.pageWrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 52px 24px 100px;
  position: relative;
  z-index: 1;
}

/* ===== PAGE HEADER ===== */
.pageHeader {
  margin-bottom: 44px;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.pageHeader::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0;
  width: 70px; height: 1px;
  background: var(--gold);
  opacity: 0.45;
}
.pageHeader h1 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--text);
}
.pageHeader .lead {
  font-family: var(--sans);
  color: var(--muted);
  text-shadow: 0 1px 8px rgba(0,0,0,0.38);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.78;
  max-width: 60ch;
  margin: 0;
}

/* ===== CARD ===== */
.card {
  background: rgba(4, 26, 15, 0.66);
  border: 1px solid rgba(61,255,160,0.22);
  border-radius: 16px;
  clip-path: none;
  backdrop-filter: blur(22px) saturate(1.9) brightness(1.04);
  -webkit-backdrop-filter: blur(22px) saturate(1.9) brightness(1.04);
  box-shadow:
    0 8px 38px rgba(0,0,0,0.52),
    0 2px 12px rgba(0,0,0,0.28),
    inset 0 1px 0 rgba(61,255,160,0.18),
    inset 0 -1px 0 rgba(61,255,160,0.06),
    var(--glow);
  overflow: hidden;
  transition: box-shadow 0.26s, border-color 0.26s, transform 0.22s;
  position: relative;
}
/* Green shimmer along the top rim */
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(61,255,160,0.40) 30%,
    rgba(200,168,76,0.25) 65%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 1;
}
.card:hover {
  box-shadow:
    0 14px 52px rgba(0,0,0,0.58),
    0 4px 16px rgba(0,0,0,0.30),
    inset 0 1px 0 rgba(61,255,160,0.26),
    inset 0 -1px 0 rgba(61,255,160,0.08),
    var(--glow-h);
  border-color: rgba(61,255,160,0.36);
}

/* ===== HERO ===== */
.hero {
  padding: 56px 0 28px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
  align-items: start;
}
@media (max-width: 900px) { .hero { grid-template-columns: 1fr; } }

.heroMain { padding: 34px 30px; }
.heroMain h1 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.14;
  margin-bottom: 20px;
  color: var(--text);
}
.heroMain h1 em {
  font-style: normal;
  color: var(--green);
  font-weight: 400;
}
@media (max-width: 640px) { .heroMain h1 { font-size: 28px; } }

.sub {
  font-family: var(--sans);
  color: var(--muted);
  text-shadow: 0 1px 8px rgba(0,0,0,0.40);
  font-size: 15px;
  font-weight: 300;
  max-width: 56ch;
  line-height: 1.78;
  margin-bottom: 24px;
}

.bullets {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 26px;
  padding: 0; border: none; background: none;
}

.pill {
  font-size: 10.5px;
  font-weight: 500;
  font-family: var(--mono);
  color: var(--dim);
  padding: 5px 14px 5px 12px;
  border: 1px solid var(--line-md);
  background: rgba(61,255,160,0.025);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  border-radius: 6px;
  transition: color 0.18s, border-color 0.18s;
}
.pill:hover { color: var(--muted); border-color: rgba(61,255,160,0.22); }

/* ===== BUTTONS ===== */
.ctaRow { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 26px;
  border: 1px solid rgba(61,255,160,0.22);
  background: rgba(4,26,15,0.52);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: rgba(255,255,255,0.80);
  font-family: var(--mono);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  user-select: none;
  border-radius: 8px;
  transition: background 0.18s, border-color 0.18s, color 0.18s, box-shadow 0.18s;
  white-space: nowrap;
}
.btn:hover {
  background: rgba(4,36,20,0.72);
  border-color: rgba(61,255,160,0.38);
  color: #fff;
}
.btnPrimary {
  border-color: rgba(61,255,160,0.3);
  background: rgba(61,255,160,0.07);
  color: var(--green);
}
.btnPrimary:hover {
  background: rgba(61,255,160,0.12);
  border-color: rgba(61,255,160,0.45);
  color: var(--green);
  box-shadow: 0 0 24px rgba(61,255,160,0.1);
}

/* ===== HERO SIDE ===== */
.heroSide { padding: 26px 22px; }

.kicker {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.kicker::before {
  content: '';
  display: block;
  width: 18px; height: 1px;
  background: var(--gold);
  opacity: 0.55;
  flex-shrink: 0;
}

.fact {
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid rgba(61,255,160,0.14);
  border-left: 2px solid rgba(200,168,76,0.35);
  background: rgba(4,26,15,0.38);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  margin-bottom: 10px;
  transition: border-left-color 0.22s, background 0.22s;
}
.fact:hover { border-left-color: rgba(200,168,76,0.65); background: rgba(200,168,76,0.06); }
.fact b {
  display: block;
  font-family: var(--serif);
  font-size: 12.5px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--text);
  letter-spacing: 0.06em;
}
.fact span {
  font-family: var(--sans);
  color: var(--muted);
  font-size: 13px;
  font-weight: 300;
  display: block;
  line-height: 1.6;
}

/* ===== SECTIONS ===== */
section { padding: 48px 0; }

.sectionPreview {
  padding: 48px 0;
  border-top: 1px solid var(--line);
  position: relative;
}
.sectionPreview::before {
  content: '';
  position: absolute;
  top: -1px; left: 0;
  width: 44px; height: 1px;
  background: var(--gold);
  opacity: 0.4;
}
.sectionPreview h2 { margin-bottom: 8px; }

h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 0.06em;
}
h3 { font-size: 14px; font-weight: 600; margin-bottom: 10px; letter-spacing: 0.07em; }
h4 { font-size: 13px; font-weight: 600; letter-spacing: 0.07em; }

.lead {
  font-family: var(--sans);
  color: var(--muted);
  text-shadow: 0 1px 8px rgba(0,0,0,0.38);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.78;
  max-width: 62ch;
  margin-bottom: 28px;
}

/* ===== GRIDS ===== */
.grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
@media (max-width: 860px) { .grid2, .grid3 { grid-template-columns: 1fr; } }

/* ===== BOX ===== */
.box { padding: 26px 24px; }
.box p { font-family: var(--sans); color: var(--muted); font-size: 14px; font-weight: 300; line-height: 1.72; margin-bottom: 12px; }
.box p:last-child { margin-bottom: 0; }
.box ul { padding-left: 0; font-size: 14px; font-weight: 300; line-height: 2.0; }
.box li { font-family: var(--sans); color: var(--muted); position: relative; padding-left: 15px; }
.box li::before { content: '›'; position: absolute; left: 0; color: var(--gold); }

/* ===== TILE ===== */
.tile { padding: 26px 22px; }
.tile:hover { transform: translateY(-2px); transition: transform 0.22s; }
.tile p { font-family: var(--sans); color: var(--muted); font-size: 13.5px; font-weight: 300; line-height: 1.72; margin-bottom: 14px; }
.tile ul { padding-left: 0; font-size: 13.5px; font-weight: 300; line-height: 1.95; }
.tile li { font-family: var(--sans); color: var(--muted); position: relative; padding-left: 15px; margin-bottom: 2px; }
.tile li::before { content: '›'; position: absolute; left: 0; color: var(--gold); }

.tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 14px;
  padding: 4px 12px;
  border: 1px solid var(--line-gold);
  background: var(--ember);
  border-radius: 4px;
}

/* ===== PRICING ===== */
.price { padding: 26px 24px; }
.price:hover { transform: translateY(-2px); transition: transform 0.22s; }
.price .tier { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 14px; }
.tier b { font-family: var(--serif); font-size: 14.5px; font-weight: 600; letter-spacing: 0.05em; }
.tier span { font-family: var(--mono); font-size: 10px; color: var(--dim); border: 1px solid var(--line); padding: 4px 12px; background: rgba(255,255,255,0.02); text-transform: uppercase; letter-spacing: 0.12em; }
.amount { font-family: var(--serif); font-size: 28px; font-weight: 700; letter-spacing: 0.02em; margin: 10px 0 12px; color: var(--text); }
.amount small { font-family: var(--sans); font-size: 12px; font-weight: 400; color: var(--dim); margin-left: 4px; }
.note { font-family: var(--sans); color: var(--muted); font-size: 13.5px; font-weight: 300; margin-bottom: 16px; line-height: 1.65; }
.price ul { padding-left: 0; font-size: 13.5px; font-weight: 300; line-height: 1.95; }
.price li { font-family: var(--sans); color: var(--muted); position: relative; padding-left: 15px; margin-bottom: 3px; }
.price li::before { content: '›'; position: absolute; left: 0; color: var(--gold); }
.mini { color: var(--dim); font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.06em; text-transform: uppercase; margin-top: 16px; border-top: 1px solid var(--line); padding-top: 14px; }

/* ===== PROCESS STEPS ===== */
.step { padding: 26px 24px; display: grid; grid-template-columns: 52px 1fr; gap: 20px; align-items: start; }
.stepNum {
  font-family: var(--mono); font-size: 12px; font-weight: 600; color: var(--gold);
  width: 42px; height: 42px;
  border: 1px solid var(--line-gold); background: var(--ember);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; letter-spacing: 0.08em;
  border-radius: 6px;
}
.stepBody h3 { margin-bottom: 8px; }
.stepBody p { font-family: var(--sans); color: var(--muted); font-size: 14px; font-weight: 300; line-height: 1.72; margin-bottom: 12px; }
.stepBody ul { padding-left: 0; font-size: 13.5px; font-weight: 300; line-height: 1.9; }
.stepBody li { font-family: var(--sans); color: var(--muted); position: relative; padding-left: 15px; margin-bottom: 3px; }
.stepBody li::before { content: '›'; position: absolute; left: 0; color: var(--gold); }

/* ===== PROCESS PREVIEW (homepage) ===== */
.grid3 { counter-reset: proc; }
.procStep { padding: 22px 20px; counter-increment: proc; }
.procStep::before { content: "0" counter(proc); font-family: var(--mono); font-size: 11px; color: var(--gold); display: block; margin-bottom: 10px; letter-spacing: 0.15em; font-weight: 600; }
.procStep h4 { font-size: 13px; margin-bottom: 8px; }
.procStep p { font-family: var(--sans); font-size: 13px; font-weight: 300; color: var(--muted); line-height: 1.65; }

/* ===== TRUST GRID ===== */
.trustGrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
@media (max-width: 900px) { .trustGrid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .trustGrid { grid-template-columns: 1fr; } }
.trustItem { padding: 20px 18px; }
.trustItem b { display: block; font-family: var(--serif); font-size: 13px; font-weight: 600; margin-bottom: 7px; color: var(--text); letter-spacing: 0.06em; }
.trustItem span { font-family: var(--sans); color: var(--dim); font-size: 13px; font-weight: 300; line-height: 1.55; }

/* ===== CTA BLOCK ===== */
.ctaBlock {
  padding: 50px 36px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.ctaBlock::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(61,255,160,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.ctaBlock h2 { margin-bottom: 12px; }
.ctaBlock p { font-family: var(--sans); color: var(--muted); font-size: 14.5px; font-weight: 300; max-width: 50ch; margin: 0 auto; }
.ctaBlock .ctaRow { justify-content: center; margin-top: 26px; }

/* ===== CONTACT FORM ===== */
.contactGrid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 600px) { .contactGrid { grid-template-columns: 1fr; } }
form { display: grid; gap: 18px; }
label { font-family: var(--mono); font-size: 10.5px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.15em; font-weight: 500; display: block; margin-bottom: 8px; }
input, textarea, select {
  width: 100%; padding: 12px 16px;
  border: 1px solid rgba(61,255,160,0.22); border-radius: 10px;
  background: rgba(4,26,15,0.52); color: #fff;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  outline: none; font-size: 14px; font-weight: 300; font-family: var(--sans);
  transition: border-color 0.2s, box-shadow 0.2s;
}
input::placeholder, textarea::placeholder { color: rgba(255,255,255,0.42); opacity: 1; }
input:focus, textarea:focus, select:focus { border-color: rgba(61,255,160,0.35); box-shadow: 0 0 0 3px rgba(61,255,160,0.06); }
select { cursor: pointer; }
select option { background: #061410; color: #fff; }
textarea { min-height: 138px; resize: vertical; }

/* ===== LEGAL ===== */
.legalContent h2 { font-size: 18px; font-weight: 700; margin-top: 40px; margin-bottom: 14px; letter-spacing: 0.06em; padding-bottom: 8px; border-bottom: 1px solid var(--line); }
.legalContent h2:first-child { margin-top: 0; }
.legalContent h3 { font-size: 13px; color: var(--text); margin-top: 24px; margin-bottom: 8px; letter-spacing: 0.08em; }
.legalContent p { font-family: var(--sans); color: var(--muted); font-size: 14px; font-weight: 300; line-height: 1.78; margin-bottom: 12px; max-width: 70ch; }
.legalContent ul { padding-left: 0; font-size: 14px; font-weight: 300; line-height: 1.9; margin-bottom: 14px; }
.legalContent li { font-family: var(--sans); color: var(--muted); position: relative; padding-left: 16px; margin-bottom: 4px; }
.legalContent li::before { content: '›'; position: absolute; left: 0; color: var(--gold); }
.legalContent a { color: var(--green); }
.legalContent a:hover { text-decoration: underline; }

/* ===== DEPLOYMENT STATUS ===== */
.deployWidget { padding: 0; overflow: hidden; }
.deployHeader { display: flex; align-items: center; justify-content: space-between; padding: 22px 26px; border-bottom: 1px solid var(--line); }
.deployOverall { display: flex; align-items: center; gap: 14px; }
.deployOverall b { font-family: var(--serif); font-size: 15px; display: block; font-weight: 600; letter-spacing: 0.05em; }
.deployCount { font-family: var(--sans); font-size: 12.5px; font-weight: 300; color: var(--muted); display: block; margin-top: 2px; }
.deployRefresh { font-family: var(--mono); font-size: 10px; color: var(--dim); letter-spacing: 0.07em; text-transform: uppercase; }
.statusDot { width: 8px; height: 8px; border-radius: 99px; flex-shrink: 0; }
.statusOnline   { background: var(--green);  box-shadow: 0 0 8px rgba(61,255,160,0.55); }
.statusDegraded { background: #e8a83a;        box-shadow: 0 0 8px rgba(232,168,58,0.55); }
.statusOffline  { background: #e85a5a;        box-shadow: 0 0 8px rgba(232,90,90,0.55); }
.deployRow { display: flex; align-items: center; gap: 16px; padding: 16px 26px; border-bottom: 1px solid var(--line); transition: background 0.18s; }
.deployRow:last-child { border-bottom: none; }
.deployRow:hover { background: rgba(200,168,76,0.022); }
.dsRowDot { flex-shrink: 0; }
.deployRowInfo { flex: 1; min-width: 0; }
.deployLabel { font-family: var(--serif); font-size: 13px; font-weight: 600; letter-spacing: 0.05em; display: block; }
.deployDesc { font-family: var(--sans); font-size: 12.5px; font-weight: 300; color: var(--muted); display: block; margin-top: 2px; }
.deployBadge { font-family: var(--mono); font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; padding: 5px 14px; flex-shrink: 0; border: 1px solid var(--line); background: rgba(255,255,255,0.02); color: var(--dim); border-radius: 4px; }
.deployBadge.statusOnline  { color: var(--green); border-color: rgba(61,255,160,0.22); background: rgba(61,255,160,0.06); }
.deployBadge.statusDegraded{ color: #e8a83a;       border-color: rgba(232,168,58,0.22); background: rgba(232,168,58,0.06); }
.deployBadge.statusOffline { color: #e85a5a;       border-color: rgba(232,90,90,0.22);  background: rgba(232,90,90,0.06); }
.deployFooter { padding: 14px 26px; border-top: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; }
.deployTimestamp, .deployNote { font-family: var(--mono); font-size: 10.5px; color: var(--dim); letter-spacing: 0.06em; }

/* ===== MISC ===== */
.fineprint { font-family: var(--sans); color: var(--dim); font-size: 12.5px; font-weight: 300; margin-top: 14px; line-height: 1.65; }
.mono { font-family: var(--mono); }
#year { display: inline; }

/* ===== FOOTER ===== */
footer { border-top: 1px solid rgba(61,255,160,0.15); position: relative; z-index: 1; background: rgba(3,16,10,0.55); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); }
footer::before {
  content: '';
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 35%, var(--green) 65%, transparent);
  opacity: 0.3;
}
.footMain {
  max-width: var(--max); margin: 0 auto; padding: 44px 24px 36px;
  display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 44px; align-items: start;
}
@media (max-width: 760px) { .footMain { grid-template-columns: 1fr 1fr; gap: 28px; } }
@media (max-width: 500px) { .footMain { grid-template-columns: 1fr; } }
.footBrandBlock .footBrandRow { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.footBrandRow b { font-family: var(--serif); font-size: 13px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text); }
.footLogo { width: auto; height: 36px; max-width: 40px; border-radius: 0; object-fit: contain; filter: drop-shadow(0 0 6px rgba(61,255,160,0.25)); }
.footDesc { font-family: var(--sans); color: var(--dim); font-size: 13px; font-weight: 300; line-height: 1.65; max-width: 32ch; }
.footColLabel { font-family: var(--mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.22em; color: var(--gold); display: block; margin-bottom: 16px; }
.footNav { display: flex; flex-direction: column; gap: 10px; }
.footNav a { font-family: var(--mono); font-size: 11.5px; font-weight: 500; color: var(--muted); letter-spacing: 0.07em; text-transform: uppercase; transition: color 0.18s; }
.footNav a:hover { color: var(--green); }
.footContactList { display: flex; flex-direction: column; gap: 10px; }
.footContactList a { font-family: var(--mono); font-size: 12px; color: var(--green); letter-spacing: 0.04em; }
.footContactList a:hover { text-decoration: underline; }
.footContactList span { font-family: var(--sans); font-size: 12.5px; font-weight: 300; color: var(--dim); display: block; }
.footCompliance { border-top: 1px solid rgba(61,255,160,0.10); background: rgba(0,0,0,0.28); }
.footCompInner { max-width: var(--max); margin: 0 auto; padding: 16px 24px; display: flex; flex-direction: column; gap: 5px; }
.footCompInner p { font-family: var(--mono); font-size: 10px; color: var(--dim); letter-spacing: 0.04em; line-height: 1.75; margin: 0; }
.footCompInner a { color: var(--muted); text-decoration: underline; text-decoration-color: transparent; transition: color 0.18s, text-decoration-color 0.18s; }
.footCompInner a:hover { color: var(--green); text-decoration-color: currentColor; }
