/* ============================================================
   JezaHost · Stylesheet
   Aesthetic: Refined enterprise technical
   - Deep midnight base with subtle warm cyan accent
   - Fraunces (serif display) + Inter Tight (body) + JetBrains Mono (data)
   - Dense grid, sharp dividers, deliberate whitespace
   ============================================================ */

:root {
  /* Palette */
  --bg:           #0a0d12;
  --bg-2:         #0f1319;
  --bg-3:         #141a22;
  --surface:      #161c25;
  --line:         rgba(255, 255, 255, 0.08);
  --line-strong:  rgba(255, 255, 255, 0.16);

  --text:         #e7ebf0;
  --text-dim:     #a3adbb;
  --text-muted:   #6b7585;

  --accent:       #6ee7c7;          /* mint signal */
  --accent-2:     #5b9dff;          /* electric blue */
  --accent-warm:  #f4c77a;          /* warm amber for highlights */
  --danger:       #ff6b6b;

  /* Type */
  --ff-display: "Fraunces", "Times New Roman", serif;
  --ff-body:    "Inter Tight", -apple-system, BlinkMacSystemFont, sans-serif;
  --ff-mono:    "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* Layout */
  --container: 1240px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --radius: 4px;
}

/* Reset & base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img, svg { display: block; max-width: 100%; }

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

input, select, textarea {
  font-family: inherit;
  color: inherit;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.muted { color: var(--text-muted); }

/* ============================================================
   Status Bar
   ============================================================ */
.status-bar {
  background: #06080c;
  border-bottom: 1px solid var(--line);
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  padding: 0.55rem 0;
}
.status-bar__inner {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.status-bar__item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--text-muted);
  display: inline-block;
}
.status-dot--green {
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(110, 231, 199, 0.6);
  animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(110, 231, 199, 0.55); }
  70%  { box-shadow: 0 0 0 8px rgba(110, 231, 199, 0); }
  100% { box-shadow: 0 0 0 0 rgba(110, 231, 199, 0); }
}

@media (max-width: 720px) {
  .status-bar__item--hide-mobile { display: none; }
}

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 13, 18, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 2rem;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--ff-mono);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  color: var(--text);
}
.logo__mark {
  color: var(--accent);
  font-size: 1.05rem;
  transform: translateY(-1px);
}
.logo__accent {
  color: var(--accent);
  font-weight: 500;
}
.nav {
  display: flex;
  gap: 2.25rem;
}
.nav a {
  font-size: 0.88rem;
  color: var(--text-dim);
  position: relative;
  transition: color 0.2s ease;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -6px;
  height: 1px;
  background: var(--accent);
  transition: right 0.3s ease;
}
.nav a:hover {
  color: var(--text);
}
.nav a:hover::after {
  right: 0;
}
@media (max-width: 880px) {
  .nav { display: none; }
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.6rem;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn--sm {
  padding: 0.6rem 1.1rem;
  font-size: 0.82rem;
}
.btn--full { width: 100%; }
.btn--primary {
  background: var(--accent);
  color: #08110d;
  font-weight: 600;
}
.btn--primary:hover {
  background: #8ff0d4;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px -8px rgba(110, 231, 199, 0.4);
}
.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line-strong);
}
.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  padding: clamp(5rem, 11vw, 9rem) 0 clamp(4rem, 7vw, 6rem);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at 50% 35%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 35%, #000 30%, transparent 75%);
  opacity: 0.6;
}
.hero__glow {
  position: absolute;
  top: -10%;
  left: 50%;
  width: 900px;
  height: 900px;
  transform: translateX(-50%);
  background: radial-gradient(circle at center, rgba(110, 231, 199, 0.13) 0%, transparent 55%);
  filter: blur(40px);
}
.hero__inner {
  position: relative;
  z-index: 1;
}
.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2rem;
  animation: fade-up 0.7s ease both;
}
.tag {
  font-family: var(--ff-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(110, 231, 199, 0.08);
  color: var(--accent);
  border: 1px solid rgba(110, 231, 199, 0.22);
}
.tag--outline {
  background: transparent;
  color: var(--text-dim);
  border-color: var(--line-strong);
}

.hero__title {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: clamp(2.3rem, 6vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  max-width: 18ch;
  margin-bottom: 2rem;
  animation: fade-up 0.7s ease 0.1s both;
}
.hero__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  font-variation-settings: "opsz" 144;
}

.hero__lead {
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  color: var(--text-dim);
  max-width: 58ch;
  margin-bottom: 2.5rem;
  animation: fade-up 0.7s ease 0.2s both;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 5rem;
  animation: fade-up 0.7s ease 0.3s both;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  animation: fade-up 0.7s ease 0.4s both;
}
.stat {
  padding: 1.6rem 1.5rem;
  border-right: 1px solid var(--line);
}
.stat:last-child { border-right: none; }
.stat__value {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
}
.stat__unit {
  font-family: var(--ff-mono);
  font-size: 0.45em;
  color: var(--text-muted);
  margin-left: 0.15em;
  font-weight: 400;
  letter-spacing: 0.05em;
  vertical-align: 0.5em;
}
.stat__label {
  font-family: var(--ff-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
@media (max-width: 720px) {
  .hero__stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line); }
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   Trust Strip
   ============================================================ */
.trust-strip {
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
  overflow: hidden;
}
.trust-strip__label {
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 1.4rem;
}
.trust-strip__marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.trust-strip__track {
  display: flex;
  gap: 2rem;
  white-space: nowrap;
  font-family: var(--ff-mono);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  color: var(--text-dim);
  animation: scroll 32s linear infinite;
  width: max-content;
}
.trust-strip__track .dot { color: var(--accent); }
@keyframes scroll {
  to { transform: translateX(-50%); }
}

/* ============================================================
   Generic Section
   ============================================================ */
.section {
  padding: clamp(4.5rem, 9vw, 7rem) 0;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.section--dark {
  background: var(--bg-2);
}
.section__head {
  max-width: 780px;
  margin-bottom: 3.5rem;
}
.eyebrow {
  display: inline-block;
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 1.2rem;
}
.section__title {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 1.2rem;
}
.section__lead {
  font-size: 1.05rem;
  color: var(--text-dim);
  max-width: 60ch;
}

/* ============================================================
   Services Grid
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.service-card {
  background: var(--bg);
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  transition: background 0.25s ease;
  position: relative;
}
.service-card:hover {
  background: var(--bg-3);
}
.service-card--featured {
  background: linear-gradient(180deg, var(--bg-3) 0%, var(--bg) 100%);
}
.service-card--featured::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(110, 231, 199, 0.25);
  pointer-events: none;
}
.service-card__header {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.service-card__num {
  font-family: var(--ff-mono);
  font-size: 0.78rem;
  color: var(--accent);
  letter-spacing: 0.1em;
}
.service-card h3 {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 1.45rem;
  letter-spacing: -0.01em;
}
.service-card p {
  color: var(--text-dim);
  font-size: 0.94rem;
  margin-bottom: 1.4rem;
}
.service-card__specs {
  list-style: none;
  padding: 0;
  margin: 0 0 1.6rem 0;
  border-top: 1px dashed var(--line);
}
.service-card__specs li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  font-family: var(--ff-mono);
  font-size: 0.78rem;
  padding: 0.65rem 0;
  border-bottom: 1px dashed var(--line);
}
.service-card__specs li span:first-child {
  color: var(--text-muted);
  letter-spacing: 0.05em;
}
.service-card__specs li span:last-child {
  color: var(--text);
  text-align: right;
}
.service-card__link {
  margin-top: auto;
  font-family: var(--ff-mono);
  font-size: 0.82rem;
  color: var(--accent);
  letter-spacing: 0.02em;
  transition: gap 0.2s ease;
}
.service-card__link:hover {
  letter-spacing: 0.06em;
}

@media (max-width: 1000px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Infrastructure
   ============================================================ */
.infra-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}
.infra-card {
  padding: 1.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.infra-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}
.infra-card__icon {
  width: 40px;
  height: 40px;
  color: var(--accent);
  margin-bottom: 1.2rem;
}
.infra-card h4 {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 0.55rem;
  letter-spacing: -0.01em;
}
.infra-card p {
  color: var(--text-dim);
  font-size: 0.9rem;
}

@media (max-width: 880px) {
  .infra-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .infra-grid { grid-template-columns: 1fr; }
}

/* Network panel */
.network-panel {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
  margin-top: 4rem;
}
.network-panel__col {
  padding: 2rem;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.network-panel__col--terminal {
  padding: 0;
  background: #07090d;
  border-color: var(--line-strong);
}
.network-panel__title {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 1.35rem;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}
.kv {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem 1rem;
}
.kv dt {
  font-family: var(--ff-mono);
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  padding: 0.5rem 0;
  border-bottom: 1px dashed var(--line);
}
.kv dd {
  font-family: var(--ff-mono);
  font-size: 0.85rem;
  color: var(--text);
  padding: 0.5rem 0;
  border-bottom: 1px dashed var(--line);
  text-align: right;
}
.kv--compact dt, .kv--compact dd { font-size: 0.78rem; padding: 0.4rem 0; }

.terminal {
  font-family: var(--ff-mono);
  font-size: 0.78rem;
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
}
.terminal__head {
  background: #10141a;
  padding: 0.7rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  border-bottom: 1px solid var(--line);
}
.terminal__dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: #2a2f38;
}
.terminal__dot:nth-child(1) { background: #ff6058; }
.terminal__dot:nth-child(2) { background: #ffbd2e; }
.terminal__dot:nth-child(3) { background: #28c941; }
.terminal__title {
  margin-left: 0.7rem;
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}
.terminal__body {
  padding: 1.2rem 1.4rem;
  color: var(--text-dim);
  line-height: 1.6;
  white-space: pre-wrap;
  word-break: break-word;
  margin: 0;
  font-family: var(--ff-mono);
}
.t-muted { color: var(--text-muted); }
.t-green { color: var(--accent); }
.t-accent { color: var(--accent-warm); }
.t-cursor {
  display: inline-block;
  width: 0.5em;
  color: var(--accent);
  animation: blink 1s steps(2) infinite;
}
@keyframes blink { 50% { opacity: 0; } }

@media (max-width: 880px) {
  .network-panel { grid-template-columns: 1fr; }
  .kv { grid-template-columns: 1fr; }
  .kv dt, .kv dd { text-align: left; padding: 0.3rem 0; }
  .kv dd { padding-bottom: 0.6rem; }
}

/* ============================================================
   About
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  align-items: start;
}
.about-grid__text .lead-paragraph {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.4;
  color: var(--text);
  margin: 1.5rem 0 1.4rem;
  letter-spacing: -0.01em;
}
.about-grid__text .lead-paragraph em {
  font-style: italic;
  color: var(--accent);
}
.about-grid__text p {
  color: var(--text-dim);
  max-width: 60ch;
  margin-bottom: 1rem;
}

.values {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.value {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}
.value__num {
  font-family: var(--ff-mono);
  font-size: 0.82rem;
  color: var(--accent);
  letter-spacing: 0.1em;
}
.value h5 {
  font-family: var(--ff-display);
  font-size: 1.08rem;
  font-weight: 500;
  margin-bottom: 0.3rem;
}
.value p {
  color: var(--text-dim);
  font-size: 0.92rem;
  margin: 0;
}

.about-grid__panel {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: sticky;
  top: 110px;
}
.credentials {
  padding: 1.6rem 1.6rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-2);
}
.credentials--alt {
  background: var(--bg-3);
}
.credentials__title {
  font-family: var(--ff-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}
.credentials ul {
  list-style: none;
  padding: 0;
}
.credentials ul li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.55rem 0;
  font-size: 0.88rem;
  color: var(--text);
  border-bottom: 1px dashed var(--line);
}
.credentials ul li:last-child { border-bottom: none; }
.credentials ul li span {
  color: var(--accent);
  font-size: 0.85rem;
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-grid__panel { position: static; }
}

/* ============================================================
   Contact
   ============================================================ */
.section--contact {
  background:
    radial-gradient(ellipse at top right, rgba(91, 157, 255, 0.08), transparent 50%),
    radial-gradient(ellipse at bottom left, rgba(110, 231, 199, 0.05), transparent 50%),
    var(--bg);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 4rem;
  align-items: start;
}
.contact-grid__intro .section__title { margin-top: 1.2rem; }

.contact-channels {
  display: flex;
  flex-direction: column;
  margin: 2.5rem 0 1.5rem;
  border-top: 1px solid var(--line);
}
.contact-channel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
  transition: padding 0.25s ease, color 0.2s ease;
}
.contact-channel:hover {
  padding-left: 0.4rem;
  color: var(--accent);
}
.contact-channel__label {
  font-family: var(--ff-mono);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}
.contact-channel__value {
  font-family: var(--ff-mono);
  font-size: 0.95rem;
  color: var(--text);
}
.contact-channel:hover .contact-channel__value { color: var(--accent); }

.response-note {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--text-dim);
}
.response-note strong { color: var(--text); }

.contact-form {
  padding: 2.4rem 2.2rem;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.contact-form__title {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 1.5rem;
  margin-bottom: 1.8rem;
  letter-spacing: -0.01em;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.field {
  margin-bottom: 1rem;
}
.field label {
  display: block;
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.45rem;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.95rem;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--bg-3);
}
.field textarea { resize: vertical; min-height: 100px; }
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%23a3adbb' d='M5 6L0 0h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}

.form-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 1rem;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .field-row { grid-template-columns: 1fr; }
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: #06080c;
  padding: 4rem 0 0;
  color: var(--text-dim);
}
.site-footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--line);
}
.site-footer__brand p {
  margin-top: 1.2rem;
  max-width: 36ch;
  font-size: 0.92rem;
}
.logo--footer { margin-bottom: 0.6rem; }

.site-footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.site-footer__cols h6 {
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: var(--text);
  margin-bottom: 1.2rem;
}
.site-footer__cols ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.site-footer__cols a {
  font-size: 0.9rem;
  color: var(--text-dim);
  transition: color 0.2s ease;
}
.site-footer__cols a:hover { color: var(--accent); }

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  font-family: var(--ff-mono);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

@media (max-width: 800px) {
  .site-footer__inner { grid-template-columns: 1fr; }
  .site-footer__cols { grid-template-columns: repeat(2, 1fr); }
  .site-footer__bottom { flex-direction: column; gap: 0.6rem; text-align: center; }
}

/* ============================================================
   Reveal animation utility (added via JS)
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
