/* ============================================================
   FIXIUS HOLDINGS — main.css
   Dark aerospace design system
   ============================================================ */

:root {
  --bg: #0a0e14;
  --bg-2: #0e141d;
  --surface: #131b26;
  --surface-2: #18222f;
  --line: rgba(255, 255, 255, 0.08);
  --line-2: rgba(255, 255, 255, 0.14);
  --text: #e8edf4;
  --text-2: #aab6c6;
  --muted: #7e8ca0;
  --accent: #2f83c2;
  --accent-2: #63b3e4;
  --accent-dim: rgba(47, 131, 194, 0.14);
  --ok: #37b678;
  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --radius: 14px;
  --radius-lg: 22px;
  --header-h: 76px;
  --wrap: 1200px;
  --wrap-wide: 1400px;
  /* === LOGO SIZE — change these two numbers to resize the logos === */
  --logo-height: 63px;        /* header logo height */
  --logo-height-footer: 68px; /* footer logo height */
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--accent-2); text-decoration: none; }
a:hover { color: #8ccbf0; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--text);
}

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 28px; }
.wrap-wide { max-width: var(--wrap-wide); margin: 0 auto; padding: 0 28px; }

/* ---------- utilities ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.lede { font-size: 19px; color: var(--text-2); max-width: 720px; }
.center { text-align: center; }
.center .lede { margin-inline: auto; }
.center .eyebrow::after { content: ""; width: 28px; height: 2px; background: var(--accent); border-radius: 2px; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }

section { padding: 104px 0; position: relative; }
section.tight { padding: 72px 0; }
.section-head { margin-bottom: 56px; }
.section-head h2 { font-size: clamp(30px, 4vw, 44px); margin-bottom: 16px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 15px 30px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: #3c95d8; color: #fff; transform: translateY(-2px); box-shadow: 0 12px 30px rgba(47, 131, 194, 0.35); }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--line-2); }
.btn-ghost:hover { border-color: var(--accent-2); color: var(--accent-2); transform: translateY(-2px); }
.btn .arr { transition: transform 0.25s ease; }
.btn:hover .arr { transform: translateX(4px); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
}
.text-link .arr { transition: transform 0.2s; }
.text-link:hover .arr { transform: translateX(4px); }

/* ---------- header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.3s ease, border 0.3s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(10, 14, 20, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom-color: var(--line);
}
.site-header .wrap-wide {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand img { height: var(--logo-height); width: auto; }
.brand { display: flex; align-items: center; flex-shrink: 0; }

.nav { display: flex; align-items: center; gap: 6px; }
.nav > a, .nav .dd > button {
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--text-2);
  padding: 10px 14px;
  border-radius: 8px;
  background: none;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}
.nav > a:hover, .nav > a.active, .nav .dd > button:hover, .nav .dd.open > button { color: var(--text); }
.nav > a.active { color: var(--accent-2); }

.dd { position: relative; }
.dd .caret { font-size: 10px; transition: transform 0.2s; opacity: 0.7; }
.dd.open .caret { transform: rotate(180deg); }
.dd-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 250px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.22s ease;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
}
.dd.open .dd-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dd-menu a {
  display: block;
  padding: 11px 14px;
  border-radius: 9px;
  color: var(--text-2);
  font-size: 14.5px;
  font-family: var(--font-display);
  font-weight: 500;
}
.dd-menu a:hover { background: var(--accent-dim); color: var(--text); }
.dd-menu a span { display: block; font-family: var(--font-body); font-weight: 400; font-size: 12.5px; color: var(--muted); margin-top: 1px; }

.nav-cta { margin-left: 10px; }
.nav-cta .btn { padding: 11px 22px; font-size: 14px; }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line-2);
  border-radius: 9px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: "";
  position: absolute;
  left: 11px;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.25s ease;
}
.nav-toggle span { top: 21px; }
.nav-toggle span::before { top: -6px; left: 0; }
.nav-toggle span::after { top: 6px; left: 0; }
body.nav-open .nav-toggle span { background: transparent; }
body.nav-open .nav-toggle span::before { top: 0; transform: rotate(45deg); }
body.nav-open .nav-toggle span::after { top: 0; transform: rotate(-45deg); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 60px) 0 80px;
  isolation: isolate;
}
.hero { text-align: center; }
.hero .wrap { max-width: 1160px; }
.hero-media, .hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -3;
}
/* clip the zoomed image so the ken-burns scale() can't spill past the hero
   bottom edge into the next section (that spill is the "seam") */
.hero-media { overflow: hidden; }
.hero-media img {
  animation: heroKen 12s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes heroKen {
  from { transform: scale(1.04); }
  to { transform: scale(1.19); }
}
/* centered vignette so text is legible over the symmetric aircraft */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(78% 78% at 50% 42%, rgba(8, 11, 16, 0.82) 0%, rgba(8, 11, 16, 0.46) 46%, rgba(8, 11, 16, 0.1) 80%),
    linear-gradient(0deg, var(--bg) 0, var(--bg) 130px, rgba(10, 14, 20, 0.5) 300px, transparent 480px),
    linear-gradient(180deg, rgba(8, 11, 16, 0.6) 0%, transparent 24%);
}
/* subtle drifting aurora glow */
.hero-fx {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}
.hero-fx::before, .hero-fx::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
}
.hero-fx::before {
  width: 44vw;
  height: 44vw;
  max-width: 620px;
  max-height: 620px;
  background: radial-gradient(circle, rgba(47, 131, 194, 0.5), transparent 68%);
  top: 2%;
  left: 6%;
  animation: heroDrift1 16s ease-in-out infinite alternate, glowPulse 8s ease-in-out infinite;
}
.hero-fx::after {
  width: 38vw;
  height: 38vw;
  max-width: 540px;
  max-height: 540px;
  background: radial-gradient(circle, rgba(99, 179, 228, 0.42), transparent 68%);
  bottom: 4%;
  right: 6%;
  animation: heroDrift2 21s ease-in-out infinite alternate, glowPulse 8s ease-in-out infinite 4s;
}
@keyframes heroDrift1 {
  from { transform: translate(-30px, -20px); }
  to { transform: translate(90px, 60px); }
}
@keyframes heroDrift2 {
  from { transform: translate(30px, 20px); }
  to { transform: translate(-80px, -50px); }
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.hero-inner { max-width: 860px; margin: 0 auto; }
.hero .eyebrow { justify-content: center; }
.hero .eyebrow::after { content: ""; width: 28px; height: 2px; background: var(--accent); border-radius: 2px; }
.hero h1 {
  font-size: clamp(42px, 6vw, 76px);
  margin-bottom: 30px;
  font-weight: 700;
}
.hero h1 em { font-style: normal; color: var(--accent-2); }
.hero .lede { font-size: 20px; max-width: 640px; margin: 0 auto 48px; line-height: 1.75; }
.hero-ctas { display: flex; gap: 18px; flex-wrap: wrap; justify-content: center; }

.hero-stats {
  display: inline-flex;
  gap: 0;
  margin-top: 84px;
  border-top: 1px solid var(--line);
}
.hero-stats div { padding: 30px 44px 0; text-align: center; border-left: 1px solid var(--line); }
.hero-stats div:first-child { border-left: none; }
.hero-stats b {
  display: block;
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 700;
  color: var(--text);
}
.hero-stats span { font-size: 13.5px; color: var(--muted); }

/* page hero (interior pages) */
.page-hero {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--header-h) + 80px) 0 64px;
  isolation: isolate;
}
.page-hero.tall { min-height: 80vh; }
.page-hero .hero-media img { object-position: center; }
/* animated glow (sits above image, below the scrim) */
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(46% 60% at 16% 34%, rgba(47, 131, 194, 0.4), transparent 62%),
    radial-gradient(42% 55% at 88% 72%, rgba(99, 179, 228, 0.32), transparent 62%);
  animation: glowPulse 9s ease-in-out infinite;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(0deg, var(--bg) 0%, var(--bg) 7%, rgba(10, 14, 20, 0.74) 32%, rgba(10, 14, 20, 0.42) 62%, transparent 92%),
    linear-gradient(180deg, rgba(10, 14, 20, 0.55) 0%, transparent 24%);
}
.page-hero h1 { font-size: clamp(36px, 5.5vw, 60px); margin-bottom: 16px; }
.page-hero .lede { font-size: 19px; }

/* ---------- cards ---------- */
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-6px); border-color: var(--line-2); box-shadow: 0 24px 50px rgba(0, 0, 0, 0.4); }
.card-media { aspect-ratio: 16 / 10; overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.card:hover .card-media img { transform: scale(1.05); }
.card-body { padding: 26px 28px 30px; flex: 1; display: flex; flex-direction: column; }
.card-body h3 { font-size: 21px; margin-bottom: 10px; }
.card-body p { color: var(--text-2); font-size: 15px; flex: 1; }
.card-tag {
  font-family: var(--font-display);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 10px;
}
.card-body .text-link { margin-top: 18px; }

/* feature tiles (icon cards) */
.tile {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  transition: transform 0.3s, border-color 0.3s;
}
.tile:hover { transform: translateY(-4px); border-color: var(--line-2); }
.tile .ico {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--accent-dim);
  color: var(--accent-2);
  display: grid;
  place-items: center;
  margin-bottom: 22px;
}
.tile .ico svg { width: 26px; height: 26px; }
.tile h3 { font-size: 19px; margin-bottom: 10px; }
.tile p { color: var(--text-2); font-size: 15px; }

/* ---------- stats band ---------- */
.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  text-align: center;
}
.stats-band .stat {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px 20px 34px;
}
.stat b {
  font-family: var(--font-display);
  font-size: clamp(34px, 3.6vw, 46px);
  font-weight: 700;
  color: var(--accent-2);
  display: block;
  line-height: 1;
  margin-bottom: 12px;
}
.stat span { color: var(--text-2); font-size: 14.5px; }

/* ---------- split feature ---------- */
.split-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  position: relative;
}
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.check-list { list-style: none; margin-top: 26px; display: grid; gap: 16px; }
.check-list li { display: flex; gap: 14px; color: var(--text-2); }
.check-list li::before {
  content: "";
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 3px;
  border-radius: 50%;
  background: var(--accent-dim) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2363b3e4' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center / 12px no-repeat;
}
.check-list b { color: var(--text); font-weight: 600; }

/* ---------- full-bleed band ---------- */
.band {
  position: relative;
  isolation: isolate;
  padding: 130px 0;
}
.band .hero-media img { object-fit: cover; animation: none; }
.band::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(10, 14, 20, 0.93) 8%, rgba(10, 14, 20, 0.55) 60%, rgba(10, 14, 20, 0.32) 100%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg) 6%, rgba(10, 14, 20, 0) 26%, rgba(10, 14, 20, 0) 74%, var(--bg) 94%, var(--bg) 100%);
}
.band-inner { max-width: 620px; }
.band h2 { font-size: clamp(30px, 4vw, 44px); margin-bottom: 18px; }
.band p { color: var(--text-2); font-size: 17.5px; margin-bottom: 30px; }

/* ---------- spec table ---------- */
.spec-table { width: 100%; border-collapse: collapse; font-size: 15.5px; }
.spec-table th, .spec-table td { padding: 15px 18px; text-align: left; border-bottom: 1px solid var(--line); }
.spec-table th {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--text);
  font-size: 14px;
  letter-spacing: 0.04em;
}
.spec-table thead th {
  color: var(--accent-2);
  text-transform: uppercase;
  font-size: 12.5px;
  letter-spacing: 0.14em;
  border-bottom: 2px solid var(--line-2);
}
.spec-table td { color: var(--text-2); }
.spec-table tbody tr:hover { background: rgba(255, 255, 255, 0.02); }
.table-scroll { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--surface); padding: 10px 6px; }

/* ---------- timeline ---------- */
.timeline { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; counter-reset: tl; }
.tl-step { position: relative; padding: 0 22px 0 0; }
.tl-step::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 26px;
  right: 6px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), rgba(47, 131, 194, 0.15));
}
.tl-step:last-child::before { display: none; }
.tl-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--bg);
  border: 3px solid var(--accent);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.tl-step .t {
  font-family: var(--font-display);
  color: var(--accent-2);
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 6px;
}
.tl-step h3 { font-size: 17px; margin-bottom: 8px; }
.tl-step p { font-size: 13.5px; color: var(--muted); }

/* ---------- gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery a {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 16 / 11;
  display: block;
  position: relative;
}
.gallery a.wide { grid-column: span 2; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s ease; }
.gallery a:hover img { transform: scale(1.06); }

/* lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(6, 8, 12, 0.94);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 5vh 5vw;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 100%; max-height: 100%; border-radius: 10px; }
.lightbox button {
  position: absolute;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line-2);
  color: var(--text);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s;
}
.lightbox button:hover { background: rgba(255, 255, 255, 0.18); }
.lb-close { top: 26px; right: 26px; }
.lb-prev { left: 26px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 26px; top: 50%; transform: translateY(-50%); }

/* ---------- partners strip ---------- */
.partners {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 56px;
  align-items: center;
}
.partners span {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--muted);
  transition: color 0.25s;
}
.partners span:hover { color: var(--text); }

/* ---------- insights ---------- */
.post-card .card-media { aspect-ratio: 16 / 9; }
.post-meta { display: flex; gap: 14px; font-size: 13px; color: var(--muted); margin-bottom: 12px; }
.post-meta b { color: var(--accent-2); font-weight: 600; }

.article {
  max-width: 780px;
  margin: 0 auto;
}
.article-hero { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); margin: 40px 0 56px; }
.article h1 { font-size: clamp(32px, 4.6vw, 50px); margin-bottom: 20px; }
.article h2 { font-size: 28px; margin: 52px 0 18px; }
.article h3 { font-size: 21px; margin: 40px 0 14px; }
.article p { color: var(--text-2); margin-bottom: 22px; font-size: 17px; }
.article ul, .article ol { color: var(--text-2); margin: 0 0 22px 24px; font-size: 17px; }
.article li { margin-bottom: 10px; }
.article blockquote {
  border-left: 3px solid var(--accent);
  background: var(--surface);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 24px 30px;
  margin: 32px 0;
  font-size: 18px;
  color: var(--text);
  font-family: var(--font-display);
}
.article strong { color: var(--text); }
.article .post-meta { margin-bottom: 24px; }

/* ---------- forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-grid .full { grid-column: 1 / -1; }
label { display: block; font-family: var(--font-display); font-size: 13.5px; font-weight: 600; letter-spacing: 0.04em; margin-bottom: 8px; color: var(--text-2); }
input, textarea, select {
  width: 100%;
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  border-radius: 11px;
  padding: 14px 16px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15.5px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-dim);
}
textarea { min-height: 150px; resize: vertical; }
.form-note { font-size: 13px; color: var(--muted); }
.form-success {
  background: rgba(55, 182, 120, 0.12);
  border: 1px solid rgba(55, 182, 120, 0.4);
  color: #7fd8ab;
  border-radius: var(--radius);
  padding: 18px 22px;
  margin-bottom: 28px;
  display: none;
}
.form-success.show { display: block; }
.form-error {
  background: rgba(224, 82, 82, 0.12);
  border: 1px solid rgba(224, 82, 82, 0.4);
  color: #f0a5a5;
  border-radius: var(--radius);
  padding: 18px 22px;
  margin-bottom: 28px;
  display: none;
}
.form-error.show { display: block; }

/* ---------- footer ---------- */
.site-footer {
  border-top: 1px solid var(--line);
  background: var(--bg-2);
  padding: 80px 0 0;
  margin-top: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 60px;
}
.footer-grid h4 {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}
.footer-grid ul { list-style: none; display: grid; gap: 12px; }
.footer-grid ul a { color: var(--text-2); font-size: 14.5px; }
.footer-grid ul a:hover { color: var(--accent-2); }
.footer-brand img { height: var(--logo-height-footer); width: auto; margin-bottom: 20px; }
.footer-brand p { color: var(--text-2); font-size: 14.5px; max-width: 340px; }
.footer-addr { font-style: normal; color: var(--text-2); font-size: 14px; line-height: 1.8; }
.footer-addr b { color: var(--text); font-family: var(--font-display); font-weight: 600; display: block; margin-bottom: 2px; }
.footer-addr + .footer-addr { margin-top: 20px; }
.footer-legal {
  border-top: 1px solid var(--line);
  padding: 26px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--muted);
}
.footer-legal a { color: var(--muted); }
.footer-legal a:hover { color: var(--accent-2); }
.footer-legal button.linklike {
  background: none; border: none; cursor: pointer;
  color: var(--muted); font-size: 13px; font-family: var(--font-body); padding: 0;
}
.footer-legal button.linklike:hover { color: var(--accent-2); }

/* ---------- cookie consent ---------- */
.cc-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 300;
  max-width: 560px;
  margin-inline: auto;
  background: var(--surface);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  padding: 26px 28px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6);
  transform: translateY(140%);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.cc-banner.show { transform: none; }
.cc-banner h4 { font-size: 17px; margin-bottom: 8px; }
.cc-banner p { font-size: 13.5px; color: var(--text-2); line-height: 1.6; margin-bottom: 18px; }
.cc-banner p a { color: var(--accent-2); }
.cc-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cc-actions .btn { padding: 11px 22px; font-size: 13.5px; }
.cc-actions .btn-ghost { border-color: var(--line-2); }
.cc-prefs { margin: 4px 0 18px; display: grid; gap: 12px; }
.cc-row {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 12px 14px; border: 1px solid var(--line); border-radius: 11px; background: var(--bg-2);
}
.cc-row label { margin: 0; flex: 1; font-family: var(--font-body); font-weight: 400; letter-spacing: 0; text-transform: none; }
.cc-row label b { display: block; font-family: var(--font-display); font-weight: 600; font-size: 14px; color: var(--text); margin-bottom: 2px; }
.cc-row label span { font-size: 12.5px; color: var(--muted); }
.cc-row input[type="checkbox"] { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--accent); flex-shrink: 0; }
.cc-row input:disabled { opacity: 0.5; }
.cc-hidden { display: none; }
@media (max-width: 560px) {
  .cc-banner { left: 12px; right: 12px; bottom: 12px; padding: 22px 20px; }
  .cc-actions .btn { flex: 1; justify-content: center; }
}

/* ---------- reveal animations ---------- */
.rv { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.rv.in { opacity: 1; transform: none; }
.rv-d1 { transition-delay: 0.1s; }
.rv-d2 { transition-delay: 0.2s; }
.rv-d3 { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  .rv { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  /* hero ambient animation intentionally kept on (client request) — it is slow and decorative */
}

/* ---------- breadcrumb-ish page label ---------- */
.division-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(10, 14, 20, 0.55);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line-2);
  border-radius: 999px;
  padding: 8px 20px;
  font-family: var(--font-display);
  font-size: 12.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: 26px;
}
.division-mark i { width: 7px; height: 7px; border-radius: 50%; background: var(--accent-2); }

/* ---------- responsive ---------- */
@media (max-width: 1080px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-band { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: repeat(2, 1fr); gap: 34px 20px; }
  .tl-step::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 14, 20, 0.98);
    flex-direction: column;
    align-items: stretch;
    padding: 30px 28px;
    gap: 4px;
    display: none;
    overflow-y: auto;
  }
  body.nav-open .nav { display: flex; }
  .nav > a, .nav .dd > button { font-size: 18px; padding: 15px 10px; width: 100%; justify-content: space-between; }
  .dd-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    display: none;
    box-shadow: none;
    background: var(--bg-2);
    margin: 4px 0 10px;
  }
  .dd.open .dd-menu { display: block; transform: none; }
  .nav-cta { margin: 18px 0 0; }
  .nav-cta .btn { width: 100%; justify-content: center; }
  .nav-toggle { display: block; }

  .grid-2 { grid-template-columns: 1fr; gap: 36px; }
  .grid-3 { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery a.wide { grid-column: span 2; }
  .hero { min-height: 78vh; }
  .hero-stats { flex-wrap: wrap; }
  .form-grid { grid-template-columns: 1fr; }
  section { padding: 72px 0; }
}

@media (max-width: 560px) {
  .grid-4 { grid-template-columns: 1fr; }
  .stats-band { grid-template-columns: 1fr 1fr; gap: 14px; }
  .gallery { grid-template-columns: 1fr; }
  .gallery a.wide { grid-column: span 1; }
  .timeline { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-stats { flex-wrap: wrap; justify-content: center; }
  .hero-stats div { padding: 20px 18px 0; border-left: none; }
  .brand img { height: calc(var(--logo-height) * 0.8); }
}
