/* ── Preisto AAA Landing — Design tokens ── */
:root {
  --bg-deep: #040810;
  --bg-mid: #0a1628;
  --bg-card: rgba(12, 24, 44, 0.72);
  --bg-card-hover: rgba(16, 32, 58, 0.85);
  --accent: #00d4aa;
  --accent-bright: #33f0c8;
  --accent-dim: #009e7a;
  --accent-glow: rgba(0, 212, 170, 0.35);
  --gold: #c9a84c;
  --gold-dim: rgba(201, 168, 76, 0.15);
  --text: #e8edf5;
  --text-muted: #8b9cb8;
  --text-dim: #5a6d8a;
  --border: rgba(0, 212, 170, 0.12);
  --border-strong: rgba(0, 212, 170, 0.28);
  --nav-h: 72px;
  --font-display: "Cinzel", "Times New Roman", serif;
  --font-body: "Exo 2", "Segoe UI", sans-serif;
  --font-tech: "Orbitron", monospace;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  background: var(--bg-deep);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: var(--accent-bright); text-decoration: none; transition: color 0.2s; }
a:hover { color: #fff; }

/* ── Ambient page background ── */
.page-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
.page-bg__gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(0, 80, 120, 0.35) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 60%, rgba(0, 212, 170, 0.06) 0%, transparent 50%),
    linear-gradient(180deg, #060d18 0%, var(--bg-deep) 40%, #020508 100%);
}
.page-bg__stars {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 10% 20%, rgba(255,255,255,0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 30% 65%, rgba(255,255,255,0.25) 0%, transparent 100%),
    radial-gradient(1px 1px at 55% 15%, rgba(255,255,255,0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 70% 45%, rgba(255,255,255,0.2) 0%, transparent 100%),
    radial-gradient(1px 1px at 85% 80%, rgba(255,255,255,0.35) 0%, transparent 100%),
    radial-gradient(1px 1px at 92% 10%, rgba(255,255,255,0.2) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 45% 90%, rgba(0,212,170,0.5) 0%, transparent 100%);
  animation: twinkle 8s ease-in-out infinite alternate;
}
.page-bg__planet {
  position: absolute;
  bottom: -30%;
  right: -15%;
  width: 55vw;
  height: 55vw;
  max-width: 700px;
  max-height: 700px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, rgba(0, 212, 170, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 60% 70%, rgba(10, 40, 80, 0.8) 0%, rgba(4, 8, 16, 0.95) 70%);
  opacity: 0.35;
  filter: blur(2px);
}
@keyframes twinkle {
  from { opacity: 0.7; }
  to { opacity: 1; }
}

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: linear-gradient(180deg, rgba(4, 8, 16, 0.95) 0%, rgba(4, 8, 16, 0.75) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s, box-shadow 0.3s;
}
.nav--scrolled {
  background: rgba(4, 8, 16, 0.97);
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.5);
}
.nav__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  text-decoration: none;
  flex-shrink: 0;
}
.nav__logo:hover { color: #fff; }
.nav__logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--bg-mid) 100%);
  box-shadow: 0 0 16px var(--accent-glow);
  position: relative;
}
.nav__logo-mark::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background: var(--bg-deep);
}
.nav__logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.06em;
}
.nav__links {
  display: flex;
  gap: 8px;
  flex: 1;
}
.nav__links a {
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}
.nav__links a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}
.nav__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  transition: transform 0.3s, opacity 0.3s;
}

/* ── Status badge ── */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  white-space: nowrap;
  transition: all 0.3s;
}
.status-badge__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--text-dim);
  flex-shrink: 0;
  transition: background 0.3s, box-shadow 0.3s;
}
.status-badge.online {
  border-color: rgba(0, 212, 170, 0.25);
  color: var(--accent-bright);
  background: rgba(0, 212, 170, 0.06);
}
.status-badge.online .status-badge__dot {
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent-glow);
  animation: pulse-dot 2s ease-in-out infinite;
}
.status-badge.offline {
  border-color: rgba(248, 81, 73, 0.25);
  color: #f85149;
  background: rgba(248, 81, 73, 0.06);
}
.status-badge.offline .status-badge__dot { background: #f85149; }
.status-badge.degraded {
  border-color: rgba(201, 168, 76, 0.3);
  color: var(--gold);
  background: var(--gold-dim);
}
.status-badge.degraded .status-badge__dot {
  background: var(--gold);
  animation: pulse-dot 1.5s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

.status-footer {
  margin-top: 8px;
  font-size: 0.75rem;
  color: var(--text-dim);
  font-family: var(--font-tech);
  letter-spacing: 0.03em;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  transition: transform 0.2s var(--ease-out), box-shadow 0.3s, background 0.3s;
}
.btn--nav {
  flex-direction: row;
  padding: 10px 28px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dim) 100%);
  color: var(--bg-deep);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 4px;
  box-shadow: 0 0 20px var(--accent-glow);
}
.btn--nav:hover {
  color: var(--bg-deep);
  transform: translateY(-1px);
  box-shadow: 0 0 32px var(--accent-glow), 0 4px 16px rgba(0,0,0,0.3);
}
.btn--primary {
  padding: 18px 48px;
  background: linear-gradient(135deg, var(--accent-bright) 0%, var(--accent) 50%, var(--accent-dim) 100%);
  color: var(--bg-deep);
  border-radius: 6px;
  text-align: center;
}
.btn--primary .btn__label {
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.btn--primary .btn__sub {
  font-size: 0.7rem;
  font-weight: 400;
  opacity: 0.75;
  margin-top: 2px;
  letter-spacing: 0.05em;
}
.btn--glow:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 40px var(--accent-glow),
    0 8px 32px rgba(0, 0, 0, 0.4);
  color: var(--bg-deep);
}
.btn--ghost {
  flex-direction: row;
  padding: 16px 32px;
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-strong);
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--accent);
  color: #fff;
}
.btn--large {
  padding: 20px 56px;
  font-size: 1rem;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-h) + 48px) 24px 80px;
  overflow: hidden;
}
.hero__atmosphere {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__layer {
  position: absolute;
  inset: 0;
}
.hero__layer--sky {
  background:
    linear-gradient(180deg,
      #020810 0%,
      #0a1a30 25%,
      #0d2840 45%,
      #122a35 65%,
      #0a1810 85%,
      #040810 100%
    );
}
.hero__layer--mist {
  background:
    radial-gradient(ellipse 100% 60% at 50% 80%, rgba(0, 212, 170, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 80% 40% at 20% 60%, rgba(0, 100, 140, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse 60% 50% at 80% 40%, rgba(201, 168, 76, 0.05) 0%, transparent 50%);
  animation: mist-drift 20s ease-in-out infinite alternate;
}
.hero__layer--ground {
  bottom: 0;
  top: auto;
  height: 35%;
  background:
    linear-gradient(0deg, rgba(4, 12, 8, 0.95) 0%, transparent 100%),
    repeating-linear-gradient(
      90deg,
      transparent 0px,
      transparent 80px,
      rgba(0, 212, 170, 0.02) 80px,
      rgba(0, 212, 170, 0.02) 81px
    );
}
.hero__layer--glow {
  background: radial-gradient(ellipse 50% 40% at 50% 60%, rgba(0, 212, 170, 0.12) 0%, transparent 70%);
  animation: glow-pulse 6s ease-in-out infinite alternate;
}
.hero__particles {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(2px 2px at 15% 30%, rgba(0, 212, 170, 0.4) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 75% 25%, rgba(201, 168, 76, 0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 50% 70%, rgba(255, 255, 255, 0.2) 0%, transparent 100%),
    radial-gradient(2px 2px at 90% 55%, rgba(0, 212, 170, 0.25) 0%, transparent 100%);
  animation: particles-float 15s linear infinite;
}
@keyframes mist-drift {
  from { transform: translateX(-2%) scale(1); }
  to { transform: translateX(2%) scale(1.02); }
}
@keyframes glow-pulse {
  from { opacity: 0.6; }
  to { opacity: 1; }
}
@keyframes particles-float {
  from { transform: translateY(0); }
  to { transform: translateY(-20px); }
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 820px;
  animation: hero-fade-in 1.2s var(--ease-out) both;
}
@keyframes hero-fade-in {
  from { opacity: 0; transform: translateY(32px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero__eyebrow {
  font-family: var(--font-tech);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 20px;
}
.hero__title { margin: 0 0 24px; }
.hero__title-main {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 5.5rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  background: linear-gradient(180deg, #fff 20%, var(--accent-bright) 60%, var(--accent-dim) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  filter: drop-shadow(0 0 40px rgba(0, 212, 170, 0.25));
}
.hero__title-sub {
  display: block;
  margin-top: 16px;
  font-family: var(--font-body);
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  -webkit-text-fill-color: var(--text-muted);
}
.hero__pitch {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
}
.hero__version {
  font-family: var(--font-tech);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin: 0;
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-dim);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: hero-fade-in 1.2s 0.6s var(--ease-out) both;
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--accent) 0%, transparent 100%);
  animation: scroll-line 2s ease-in-out infinite;
}
@keyframes scroll-line {
  0%, 100% { transform: scaleY(1); opacity: 0.5; }
  50% { transform: scaleY(0.6); opacity: 1; }
}

/* ── Sections ── */
.section {
  position: relative;
  padding: 100px 24px;
}
.section__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.section__inner--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.section__header {
  text-align: center;
  margin-bottom: 56px;
}
.section__tag {
  display: inline-block;
  font-family: var(--font-tech);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section__header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  margin: 0 0 16px;
  color: var(--text);
}
.section__lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ── Journey ── */
.section--journey {
  background: linear-gradient(180deg, transparent 0%, rgba(0, 212, 170, 0.02) 50%, transparent 100%);
}
.journey {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
}
.journey__step {
  flex: 1;
  max-width: 320px;
  padding: 32px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  text-align: center;
  backdrop-filter: blur(12px);
  transition: transform 0.3s var(--ease-out), border-color 0.3s, background 0.3s;
}
.journey__step:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  background: var(--bg-card-hover);
}
.journey__icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 12px var(--accent-glow));
}
.journey__step h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 0 0 12px;
  color: var(--text);
}
.journey__step p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}
.journey__arrow {
  width: 48px;
  flex-shrink: 0;
  align-self: center;
  position: relative;
}
.journey__arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 8px;
  right: 8px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.journey__arrow::after {
  content: "›";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
  font-size: 1.5rem;
}

/* ── Features ── */
.section--features {
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(0, 60, 100, 0.12) 0%, transparent 60%);
}
.features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.feature-card {
  position: relative;
  padding: 36px 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s var(--ease-out), border-color 0.3s;
}
.feature-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-strong);
}
.feature-card__glow {
  position: absolute;
  top: -50%;
  right: -30%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.feature-card:hover .feature-card__glow { opacity: 1; }
.feature-card__num {
  font-family: var(--font-tech);
  font-size: 0.7rem;
  color: var(--accent);
  letter-spacing: 0.1em;
}
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 12px 0 10px;
}
.feature-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.65;
}

/* ── Gallery ── */
.gallery {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}
.gallery__item {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.gallery__item--wide {
  grid-row: span 2;
}
.gallery__placeholder {
  aspect-ratio: 16/10;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  position: relative;
  overflow: hidden;
}
.gallery__item--wide .gallery__placeholder {
  aspect-ratio: auto;
  height: 100%;
  min-height: 320px;
}
.gallery__placeholder span {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.8);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}
.gallery__placeholder--forest {
  background:
    linear-gradient(0deg, rgba(4, 12, 8, 0.8) 0%, transparent 50%),
    linear-gradient(135deg, #0a2818 0%, #1a4030 40%, #0d2030 100%);
}
.gallery__placeholder--base {
  background:
    linear-gradient(0deg, rgba(4, 8, 16, 0.8) 0%, transparent 50%),
    linear-gradient(135deg, #1a2840 0%, #2a3850 50%, #102030 100%);
}
.gallery__placeholder--factory {
  background:
    linear-gradient(0deg, rgba(8, 8, 4, 0.8) 0%, transparent 50%),
    linear-gradient(135deg, #283020 0%, #404030 40%, #203028 100%);
}
.gallery__placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent 0px,
    transparent 3px,
    rgba(0, 212, 170, 0.03) 3px,
    rgba(0, 212, 170, 0.03) 4px
  );
}

/* ── Download ── */
.section--download {
  background:
    radial-gradient(ellipse 60% 50% at 50% 100%, rgba(0, 212, 170, 0.06) 0%, transparent 60%),
    linear-gradient(180deg, transparent 0%, rgba(10, 22, 40, 0.5) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.download__copy h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin: 0 0 16px;
}
.download__copy p {
  color: var(--text-muted);
  margin: 0 0 24px;
}
.download__checks {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}
.download__checks li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: var(--text-muted);
  font-size: 0.95rem;
}
.download__checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}
.download__fine {
  margin-top: 16px;
  font-size: 0.8rem;
  color: var(--text-dim);
}
.download__panel {
  padding: 36px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  backdrop-filter: blur(12px);
}
.download__panel h3 {
  font-family: var(--font-display);
  margin: 0 0 20px;
  color: var(--gold);
  font-size: 1.1rem;
}
.release-list {
  margin: 0;
  padding-left: 20px;
  color: var(--text-muted);
  font-size: 0.9rem;
}
.release-list li { margin-bottom: 10px; }

/* ── News ── */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.news-grid article {
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: border-color 0.3s, transform 0.3s;
}
.news-grid article:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
}
.news-grid article strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  margin-bottom: 10px;
  color: var(--text);
}
.news-grid article p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

/* ── Footer ── */
.footer {
  padding: 64px 24px 40px;
  background: rgba(2, 5, 10, 0.9);
  border-top: 1px solid var(--border);
}
.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}
.footer__logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  color: var(--text);
}
.footer__brand p {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin: 8px 0 0;
}
.footer__cols {
  display: flex;
  gap: 64px;
}
.footer__col h4 {
  font-family: var(--font-tech);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin: 0 0 16px;
}
.footer__col a {
  display: block;
  color: var(--text-muted);
  font-size: 0.875rem;
  padding: 4px 0;
  transition: color 0.2s;
}
.footer__col a:hover { color: var(--accent-bright); }
.footer__placeholder {
  opacity: 0.5;
  cursor: default;
  pointer-events: none;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .features { grid-template-columns: 1fr; }
  .section__inner--split { grid-template-columns: 1fr; gap: 40px; }
  .news-grid { grid-template-columns: 1fr; }
  .gallery {
    grid-template-columns: 1fr;
  }
  .gallery__item--wide { grid-row: auto; }
  .gallery__item--wide .gallery__placeholder {
    min-height: 200px;
    aspect-ratio: 16/9;
  }
}

@media (max-width: 768px) {
  .nav__toggle { display: flex; }
  .nav__links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(4, 8, 16, 0.98);
    padding: 16px 24px 24px;
    border-bottom: 1px solid var(--border);
    gap: 4px;
  }
  .nav__links.open { display: flex; }
  .nav__actions .status-badge { display: none; }
  .nav__inner { gap: 12px; }
  .journey {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .journey__arrow {
    width: auto;
    height: 32px;
    transform: rotate(90deg);
  }
  .hero__cta {
    flex-direction: column;
    width: 100%;
  }
  .hero__cta .btn { width: 100%; max-width: 320px; }
  .footer__cols { gap: 32px; flex-wrap: wrap; }
}

@media (max-width: 480px) {
  .section { padding: 64px 16px; }
  .btn--primary { padding: 16px 32px; }
}
