/* ==========================================================================
   GALACTICA CYBERSECURITY — Design System
   "Orbital Command" — dark mission-control aesthetic.
   Display: Teko · Body: Barlow · Accent: #01F1FF on near-black
   ========================================================================== */

:root {
  --bg: #07080a;
  --bg-2: #0c0e11;
  --bg-3: #111419;
  --panel: #14171d;
  --panel-2: #181c23;
  --line: rgba(255, 255, 255, 0.08);
  --line-cyan: rgba(1, 241, 255, 0.22);
  --cyan: #01f1ff;
  --cyan-deep: #01a1aa;
  --cyan-dim: rgba(1, 241, 255, 0.55);
  --cyan-glow: rgba(1, 241, 255, 0.12);
  --red: #f74040;
  --white: #f2f6f7;
  --gray: #a8b0b5;
  --gray-dim: #6d757b;
  --font-display: "Teko", "Oswald", sans-serif;
  --font-body: "Barlow", "Helvetica Neue", sans-serif;
  --font-mono: "IBM Plex Mono", "SF Mono", Menlo, monospace;
  --max: 1200px;
  --radius: 4px;
  --pad: clamp(1.25rem, 4vw, 2.5rem);
  --section: clamp(4.5rem, 9vw, 8rem);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--cyan); text-decoration: none; }
a:hover { color: #80f8ff; }
::selection { background: var(--cyan); color: #04161a; }

/* Ambient page texture: faint grid + vignette */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(rgba(1, 241, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(1, 241, 255, 0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, #000 0%, transparent 75%);
}

main { position: relative; z-index: 1; }

/* ---------- Type ---------- */
h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(3.2rem, 8.5vw, 6.5rem); }
h2 { font-size: clamp(2.4rem, 5.5vw, 4rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); letter-spacing: 0.03em; }
p { margin: 0 0 1.2em; color: var(--gray); }
strong { color: var(--white); }

.accent { color: var(--cyan); }

/* HUD eyebrow: // LABEL */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 1.4rem;
}
.eyebrow::before { content: "//"; opacity: 0.6; letter-spacing: 0; }
.eyebrow::after {
  content: "";
  width: 56px;
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), transparent);
}

.lead { font-size: 1.2rem; color: var(--gray); max-width: 46em; }

/* ---------- Layout ---------- */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }
section { padding: var(--section) 0; position: relative; }
.section-line { border-top: 1px solid var(--line); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
@media (max-width: 980px) {
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  padding: 0.9em 1.9em;
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  line-height: 1;
  border: 1px solid var(--cyan);
  color: #04161a;
  background: var(--cyan);
  border-radius: var(--radius);
  cursor: pointer;
  transition: box-shadow 0.25s, transform 0.25s, background 0.25s, color 0.25s;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}
.btn:hover {
  box-shadow: 0 0 28px rgba(1, 241, 255, 0.45);
  transform: translateY(-2px);
  color: #04161a;
}
.btn--ghost {
  background: transparent;
  color: var(--cyan);
  border-color: var(--line-cyan);
}
.btn--ghost:hover { background: var(--cyan-glow); color: var(--cyan); }
.btn--lg { font-size: 1.35rem; padding: 1em 2.4em; }

.text-link {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.text-link::after { content: " →"; }

/* ---------- Announcement bar ---------- */
.announce {
  position: relative;
  z-index: 60;
  background: linear-gradient(90deg, rgba(1, 241, 255, 0.12), rgba(1, 241, 255, 0.04) 60%);
  border-bottom: 1px solid var(--line-cyan);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}
.announce .wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding-top: 0.55rem;
  padding-bottom: 0.55rem;
  flex-wrap: wrap;
  text-align: center;
}
.announce a {
  color: var(--cyan);
  border: 1px solid var(--line-cyan);
  padding: 0.2em 0.9em;
  border-radius: 2px;
  white-space: nowrap;
  transition: background 0.2s;
}
.announce a:hover { background: var(--cyan-glow); }
.announce .blink {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
  animation: pulse 2s infinite;
  flex: none;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.25; } }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 8, 10, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: 76px;
}
.logo img { height: 38px; width: auto; }
.site-nav { display: flex; align-items: center; gap: 1.15rem; }
.site-nav a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.84rem;
  white-space: nowrap;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray);
  padding: 0.4em 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.site-nav a:hover { color: var(--white); }
.site-nav a.active { color: var(--cyan); border-bottom-color: var(--cyan); }
.site-nav .btn { font-size: 0.95rem; padding: 0.7em 1.1em; }
/* .site-nav a overrides .btn's bottom border (nav underline); restore it */
.site-nav a.btn { border-bottom: 1px solid var(--cyan); }
.site-nav a.btn--ghost { border-bottom-color: var(--line-cyan); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line-cyan);
  border-radius: var(--radius);
  color: var(--cyan);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  padding: 0.6em 1em;
  cursor: pointer;
}
@media (max-width: 1200px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: fixed;
    inset: 0;
    top: 0;
    flex-direction: column;
    justify-content: center;
    gap: 2.2rem;
    background: rgba(7, 8, 10, 0.97);
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.7, 0, 0.3, 1);
    z-index: 70;
  }
  .site-nav.open { transform: translateX(0); }
  .site-nav a { font-size: 1.4rem; }
  .nav-close {
    position: absolute;
    top: 1.5rem; right: 1.5rem;
    background: none;
    border: 1px solid var(--line-cyan);
    color: var(--cyan);
    font-family: var(--font-mono);
    padding: 0.5em 0.9em;
    border-radius: var(--radius);
    cursor: pointer;
  }
}
@media (min-width: 1201px) { .nav-close { display: none; } }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: var(--section) 0;
}
.hero--page { min-height: 48vh; }
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
  filter: saturate(0.8) brightness(0.7);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 70% 60% at 25% 40%, rgba(1, 241, 255, 0.10), transparent 65%),
    linear-gradient(180deg, rgba(7, 8, 10, 0.45) 0%, rgba(7, 8, 10, 0.2) 50%, var(--bg) 100%);
}
.hero h1 .line { display: block; }
.hero .lead { font-size: clamp(1.1rem, 2vw, 1.35rem); }

/* team cards */
.team-card img {
  width: 100%;
  border: 1px solid var(--line);
  margin-bottom: 1.1rem;
}

/* checkmark feature list */
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.check-list li {
  position: relative;
  padding: 0.65em 0 0.65em 1.9em;
  border-bottom: 1px solid var(--line);
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--cyan);
}

/* Rainbow matrix hero scene (animated WebGL background) */
.rainbow-matrix {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
}
.rainbow-matrix canvas {
  width: 100%;
  height: 100%;
  display: block;
}


/* HUD corner frame for hero content */
.hud-frame {
  position: relative;
  padding: clamp(1.5rem, 4vw, 3rem);
}
.hud-frame::before, .hud-frame::after,
.hud-frame > .corner::before, .hud-frame > .corner::after {
  content: "";
  position: absolute;
  width: 26px; height: 26px;
  border: 1px solid var(--cyan-dim);
}
.hud-frame::before { top: 0; left: 0; border-right: 0; border-bottom: 0; }
.hud-frame::after { top: 0; right: 0; border-left: 0; border-bottom: 0; }
.hud-frame > .corner::before { bottom: 0; left: 0; border-right: 0; border-top: 0; }
.hud-frame > .corner::after { bottom: 0; right: 0; border-left: 0; border-top: 0; }

/* ---------- Cards ---------- */
.card {
  position: relative;
  background: linear-gradient(160deg, var(--panel-2), var(--panel) 70%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 34px; height: 34px;
  border-top: 1px solid var(--line-cyan);
  border-left: 1px solid var(--line-cyan);
  transition: width 0.3s, height 0.3s, border-color 0.3s;
}
.card:hover {
  border-color: var(--line-cyan);
  transform: translateY(-4px);
  box-shadow: 0 18px 40px -18px rgba(1, 241, 255, 0.25);
}
.card:hover::before { width: 100%; height: 100%; border-color: rgba(1, 241, 255, 0.35); }
.card h3, .card h4 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 1.45rem;
  margin: 0 0 0.5rem;
  line-height: 1;
}
.card p { font-size: 0.97rem; margin-bottom: 0.8rem; }
.card .idx {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--cyan-dim);
  display: block;
  margin-bottom: 1rem;
}
.card .icon {
  width: 44px; height: 44px;
  margin-bottom: 1.1rem;
  color: var(--cyan);
}
.card .icon svg { width: 100%; height: 100%; }

/* ---------- Stats ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.stats--4 { grid-template-columns: repeat(4, 1fr); }
.stat {
  background: var(--bg-2);
  padding: 2.6rem 1.5rem;
  text-align: center;
}
.stat .num {
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 7vw, 5.4rem);
  line-height: 0.9;
  color: var(--cyan);
  text-shadow: 0 0 34px rgba(1, 241, 255, 0.45);
}
.stat .label {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 0.7rem;
}
@media (max-width: 800px) { .stats, .stats--4 { grid-template-columns: 1fr; } }

/* ---------- Marquee ---------- */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 0.9rem 0;
  background: var(--bg-2);
}
.marquee-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: marquee 36s linear infinite;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--white);
  white-space: nowrap;
}
.marquee-track span::before { content: "◆ "; color: var(--cyan-deep); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Partner logo marquee ---------- */
.partners { text-align: center; }
.logo-marquee {
  overflow: hidden;
  margin-top: 1.8rem;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.logo-marquee-track {
  display: flex;
  align-items: center;
  gap: 4.5rem;
  width: max-content;
  animation: marquee 45s linear infinite;
}
.logo-marquee:hover .logo-marquee-track { animation-play-state: paused; }
.logo-marquee-track img {
  height: 30px;
  width: auto;
  flex: 0 0 auto;
  filter: brightness(0) invert(1);
  opacity: 0.5;
  transition: opacity 0.25s ease;
}
.logo-marquee-track img:hover { opacity: 1; }
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Testimonial ---------- */
.testimonial {
  position: relative;
  border: 1px solid var(--line);
  border-left: 3px solid var(--cyan);
  background: linear-gradient(120deg, var(--panel) 0%, var(--bg-2) 100%);
  padding: clamp(2rem, 5vw, 3.5rem);
}
.testimonial blockquote {
  margin: 0;
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  line-height: 1.7;
  color: var(--white);
  font-weight: 300;
}
.testimonial .who {
  margin-top: 1.6rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
}
.testimonial .who small { display: block; color: var(--white); letter-spacing: 0.14em; margin-top: 0.3em; }
.testimonial::after {
  content: "“";
  position: absolute;
  top: -0.18em; right: 0.15em;
  font-family: var(--font-display);
  font-size: 9rem;
  color: rgba(1, 241, 255, 0.1);
  line-height: 1;
  pointer-events: none;
}

/* ---------- Testimonial rotator ---------- */
.t-rotator { position: relative; }
/* No-JS / pre-enhance fallback: stack all testimonials so content is always readable + crawlable. */
.t-rotator:not(.is-enhanced) .testimonial + .testimonial { margin-top: 1rem; }
.t-rotator .t-controls { display: none; }
.t-rotator.is-enhanced .t-viewport { position: relative; overflow: hidden; transition: height .45s ease; }
.t-rotator.is-enhanced .testimonial {
  position: absolute; top: 0; left: 0; width: 100%;
  opacity: 0; visibility: hidden; transition: opacity .5s ease;
}
.t-rotator.is-enhanced .testimonial.is-active { opacity: 1; visibility: visible; }
.t-rotator.is-enhanced .t-controls {
  display: flex; align-items: center; justify-content: center;
  gap: 1.25rem; margin-top: 1.75rem;
}
.t-controls .t-arrow {
  background: transparent; border: 1px solid var(--line); color: var(--cyan);
  width: 2.5rem; height: 2.5rem; border-radius: 50%; cursor: pointer;
  font-size: 1.35rem; line-height: 1; display: grid; place-items: center;
  transition: border-color .2s, color .2s, background .2s;
}
.t-controls .t-arrow:hover { border-color: var(--cyan); background: rgba(1, 241, 255, 0.1); }
.t-dots { display: flex; gap: 0.5rem; }
.t-dots button {
  width: 0.55rem; height: 0.55rem; padding: 0; border-radius: 50%; cursor: pointer;
  border: 1px solid var(--cyan); background: transparent;
  transition: background .2s, transform .2s;
}
.t-dots button:hover { background: rgba(1, 241, 255, 0.4); }
.t-dots button.is-active { background: var(--cyan); transform: scale(1.25); }
@media (prefers-reduced-motion: reduce) {
  .t-rotator.is-enhanced .t-viewport,
  .t-rotator.is-enhanced .testimonial { transition: none; }
}

/* ---------- FAQ accordion ---------- */
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 0.8rem;
  background: var(--panel);
  overflow: hidden;
  transition: border-color 0.25s;
}
.faq-item[open] { border-color: var(--line-cyan); }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.4rem;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--white);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--cyan);
  transition: transform 0.25s;
  flex: none;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-body { padding: 0 1.4rem 1.3rem; color: var(--gray); font-size: 0.98rem; }

/* ---------- Forms ---------- */
.form-panel {
  background: var(--panel);
  border: 1px solid var(--line-cyan);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 4vw, 2.4rem);
  box-shadow: 0 30px 80px -40px rgba(1, 241, 255, 0.3);
}
.field { margin-bottom: 1.1rem; }
.field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 0.45rem;
}
.field input, .field textarea, .field select {
  width: 100%;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 3px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.8em 1em;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(1, 241, 255, 0.15);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 600px) { .field-row { grid-template-columns: 1fr; } }
.consent {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  font-size: 0.78rem;
  color: var(--white);
  line-height: 1.5;
  margin: 1rem 0;
}
.consent input { margin-top: 0.25em; accent-color: var(--cyan); }

/* iframe embeds (CRM forms / schedulers) — fixed height, scroll inside */
.embed-frame {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  max-height: 540px;
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  scrollbar-color: var(--cyan-dim) var(--panel);
  scrollbar-width: thin;
}
.embed-frame iframe { display: block; width: 100%; border: 0; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  text-align: center;
  border-top: 1px solid var(--line-cyan);
  border-bottom: 1px solid var(--line-cyan);
  background:
    radial-gradient(ellipse 60% 100% at 50% 100%, rgba(1, 241, 255, 0.12), transparent 70%),
    var(--bg-2);
  overflow: hidden;
}
.cta-band h2 { font-size: clamp(2.6rem, 6vw, 4.6rem); }
.cta-band .sub {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 2rem;
}

/* ---------- Process steps ---------- */
.steps { counter-reset: step; }
.step {
  position: relative;
  padding: 1.8rem 1.6rem 1.8rem 0;
}
.step .step-num {
  font-family: var(--font-display);
  font-size: 3.4rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--cyan-dim);
  display: block;
  margin-bottom: 0.6rem;
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--line);
  background: var(--bg-2);
  padding: 4rem 0 2rem;
  position: relative;
  z-index: 1;
}
.site-footer .cols {
  display: grid;
  grid-template-columns: 1.8fr 1.1fr 1.1fr 1.1fr 1.2fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (max-width: 1024px) { .site-footer .cols { grid-template-columns: 1fr 1fr 1fr; } }
@media (max-width: 700px) { .site-footer .cols { grid-template-columns: 1fr 1fr; } }
@media (max-width: 460px) { .site-footer .cols { grid-template-columns: 1fr; } }
/* offset anchored section cards so they clear the top of the viewport */
.card[id] { scroll-margin-top: 90px; }
.site-footer h4 {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--white);
  margin: 0 0 1.1rem;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 0.55rem; }
.site-footer a { color: var(--gray); font-size: 0.95rem; }
.site-footer a:hover { color: var(--cyan); }
.site-footer .logo img { height: 34px; margin-bottom: 1rem; }
.site-footer .fineprint {
  border-top: 1px solid var(--line);
  padding-top: 1.4rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--white);
}
.status-dot {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
}
.status-dot::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #2cff8a;
  box-shadow: 0 0 8px #2cff8a;
  animation: pulse 3s infinite;
}

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s cubic-bezier(0.2, 0.6, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0.6, 0.2, 1);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s cubic-bezier(0.2, 0.6, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0.6, 0.2, 1);
}
.reveal-stagger.visible > * { opacity: 1; transform: none; }
.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.08s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.16s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.24s; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.32s; }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 0.4s; }
.reveal-stagger.visible > *:nth-child(7) { transition-delay: 0.48s; }
.reveal-stagger.visible > *:nth-child(8) { transition-delay: 0.56s; }
.reveal-stagger.visible > *:nth-child(9) { transition-delay: 0.64s; }
.reveal-stagger.visible > *:nth-child(10) { transition-delay: 0.72s; }
.reveal-stagger.visible > *:nth-child(11) { transition-delay: 0.8s; }
.reveal-stagger.visible > *:nth-child(12) { transition-delay: 0.88s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal, .reveal-stagger > * { opacity: 1; transform: none; }
}

/* ---------- Article / prose (blog, privacy) ---------- */
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { font-size: clamp(1.8rem, 3.5vw, 2.4rem); margin-top: 2.2em; }
.prose h3 { margin-top: 1.8em; }
.prose ul { color: var(--gray); padding-left: 1.3em; }
.prose li { margin-bottom: 0.6em; }
.prose .post-meta {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 2.2rem;
  display: flex;
  gap: 1.6rem;
  flex-wrap: wrap;
}

/* blog cards */
.post-card { display: flex; flex-direction: column; gap: 0.4rem; }
.post-card .post-date {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cyan-dim);
}
.post-card h3 a { color: var(--white); transition: color 0.2s; }
.post-card h3 a:hover { color: var(--cyan); }

/* ---------- Utility ---------- */
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.hidden { display: none; }
