/* ============================================================
   EAGLE EYE — layout & components
   ============================================================ */

/* ----------------------------- NAV ----------------------------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: oklch(0.135 0.012 105 / 0.82);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  border-bottom: 1px solid var(--line-soft);
  transition: background .3s ease, border-color .3s ease;
}
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px var(--gutter);
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 1fr);
  align-items: center;
  gap: 32px;
}
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand-mark {
  width: 20px; height: 20px;
  position: relative;
  flex: none;
  border: 1.5px solid var(--accent);
  border-radius: 50%;
}
.brand-mark::before {
  content: "";
  position: absolute; inset: 4.5px;
  background: var(--accent);
  border-radius: 50%;
}
.brand-name {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.26em;
}
.nav-links {
  display: flex;
  gap: 28px;
  justify-content: center;
}
.nav-links a {
  font-size: 14.5px;
  color: var(--ink-dim);
  transition: color .2s ease;
}
.nav-links a:hover { color: var(--ink); }
.nav-actions { display: flex; align-items: center; justify-content: flex-end; gap: 20px; }
.nav-status {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--ink-faint);
  font-size: 11px;
}
.dot-live {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--rf);
  animation: pulseDot 2.6s ease-in-out infinite;
}
@keyframes pulseDot { 0%,100%{opacity:1} 50%{opacity:.35} }

@media (max-width: 880px) {
  .nav-links, .nav-status { display: none; }
}

/* ----------------------------- HERO ----------------------------- */
.hero {
  padding-top: clamp(130px, 18vh, 200px);
  padding-bottom: clamp(40px, 6vw, 72px);
  position: relative;
  z-index: 1;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.9fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: end;
}
.hero-title {
  font-size: clamp(38px, 5.35vw, 74px);
  font-weight: 700;
  margin-top: 26px;
  letter-spacing: 0;
  max-width: 900px;
}
.hero-sub {
  color: var(--ink-dim);
  font-size: clamp(17px, 1.55vw, 21px);
  max-width: 560px;
  margin-top: 26px;
}
.hero-sub b { color: var(--ink); font-weight: 600; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }

.modality-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 44px;
}
.ms-item {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ink);
  background: oklch(1 0 0 / 0.015);
}
.ms-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--c); }
.ms-tag { color: var(--ink-faint); letter-spacing: 0.1em; }

/* realistic hero image */
.hero-media {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--navy-900);
  box-shadow: 0 32px 90px -58px oklch(0 0 0 / .9);
}
.hero-image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 50%;
  filter: saturate(.84) contrast(1.04) brightness(.82);
}
.hero-caption {
  display: grid;
  gap: 7px;
  padding: 16px 18px 18px;
  border-top: 1px solid var(--line-soft);
  color: var(--ink-dim);
  font-size: 13px;
}
.hero-caption .mono {
  color: var(--accent);
  font-size: 10px;
  letter-spacing: .16em;
}
.hero-data {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  border-top: 1px solid var(--line-soft);
  background: var(--line-soft);
}
.hero-data span {
  padding: 12px 14px;
  background: color-mix(in oklab, var(--navy-900) 88%, black);
  color: var(--ink-faint);
  font-size: 12.5px;
}
.hero-data b {
  color: var(--ink);
  font-weight: 600;
  margin-right: 6px;
}

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-media { max-width: 520px; }
  .hero-image { aspect-ratio: 16 / 10; }
}

/* ----------------------- FUSION CONSOLE ----------------------- */
.console { padding-top: clamp(40px, 6vw, 80px); }
.console-frame {
  margin-top: 48px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--navy-900);
  overflow: hidden;
  box-shadow: 0 40px 120px -50px oklch(0 0 0 / 0.8);
}
.console-toolbar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  padding: 12px 18px;
  border-bottom: 1px solid var(--line);
  background: var(--navy-850);
}
.ct-left { color: var(--ink-dim); font-size: 11.5px; letter-spacing: 0.14em; }
.ct-id { color: var(--ink); }
.ct-run {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  display: inline-flex; align-items: center; gap: 9px;
  padding: 8px 14px;
  border-radius: 4px;
  border: 1px solid var(--accent);
  color: var(--accent);
  background: var(--accent-dim);
  cursor: pointer;
  transition: background .2s, color .2s;
}
.ct-run:hover { background: var(--accent); color: var(--navy-950); }
.ct-run-led { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.ct-run.running { background: var(--accent); color: var(--navy-950); }

.console-body {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  min-height: 0;
}
.scene-stack {
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--navy-950);
  border-right: 1px solid var(--line);
  overflow: hidden;
}
.scene-layer {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  opacity: 0;
  transition: opacity .55s ease;
}
.scene-layer.on { opacity: 1; }
.lyr-blend { mix-blend-mode: screen; }

/* scanning sweep */
.scene-sweep {
  position: absolute; inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, transparent 0%, color-mix(in oklab, var(--accent) 7%, transparent) 49%, color-mix(in oklab, var(--accent) 14%, transparent) 50%, transparent 58%);
  width: 36%;
  transform: translateX(-120%);
  animation: sweep 11s linear infinite;
  opacity: .4;
  mix-blend-mode: screen;
}
@keyframes sweep { to { transform: translateX(360%); } }

.scene-hud { position: absolute; inset: 0; pointer-events: none; font-size: 10.5px; color: var(--ink-dim); }
.scene-hud > span { position: absolute; letter-spacing: 0.12em; }
.hud-tl { top: 12px; left: 14px; }
.hud-tr { top: 12px; right: 14px; }
.hud-scale { bottom: 14px; right: 14px; display: inline-flex; align-items: center; gap: 8px; }
.hud-scale i { display: inline-block; width: 60px; height: 5px; border: 1px solid var(--ink-faint); border-top: 0; }
.hud-empty {
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  color: var(--ink-ghost); letter-spacing: 0.2em; font-size: 12px;
  transition: opacity .4s ease;
}

/* detection overlays */
.detections { position: absolute; inset: 0; pointer-events: none; }
.det {
  position: absolute;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.det-box {
  width: var(--w, 90px); height: var(--h, 58px);
  border: 1.5px solid var(--dc, var(--accent));
  border-radius: 3px;
  position: relative;
  box-shadow: 0 0 0 1px oklch(0 0 0 / 0.35);
  transition: border-color .35s, box-shadow .35s, opacity .35s;
  background: oklch(0.5 0.02 250 / 0.04);
}
/* corner ticks */
.det-box::before, .det-box::after {
  content: ""; position: absolute; width: 9px; height: 9px;
  border: 1.5px solid var(--dc, var(--accent));
}
.det-box::before { top: -2px; left: -2px; border-right: 0; border-bottom: 0; }
.det-box::after  { bottom: -2px; right: -2px; border-left: 0; border-top: 0; }
.det-label {
  position: absolute;
  bottom: calc(100% + 7px); left: -1px;
  white-space: nowrap;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  color: var(--navy-950);
  background: var(--dc, var(--accent));
  padding: 2px 7px;
  border-radius: 2px;
  font-weight: 600;
  transition: background .35s;
}
.det-conf {
  position: absolute;
  top: calc(100% + 6px); left: -1px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--dc, var(--accent));
}
.det.is-decoy .det-box { border-style: dashed; }
.det.weak { opacity: 0.5; }

/* RF pulse rings */
.rf-ring {
  position: absolute; left: 50%; top: 50%;
  width: 16px; height: 16px;
  border: 1.5px solid var(--rf);
  border-radius: 50%;
  transform: translate(-50%,-50%) scale(0.3);
  opacity: 0;
  animation: rfPulse 3s ease-out infinite;
}
.rf-ring:nth-child(2) { animation-delay: 1s; }
.rf-ring:nth-child(3) { animation-delay: 2s; }
@keyframes rfPulse {
  0% { transform: translate(-50%,-50%) scale(0.3); opacity: .9; }
  100% { transform: translate(-50%,-50%) scale(3.4); opacity: 0; }
}

/* console side panel */
.console-side {
  display: flex;
  flex-direction: column;
  background: var(--navy-900);
}
.side-block { padding: 18px 20px; }
.side-block + .side-block { border-top: 1px solid var(--line); }
.side-readout { flex: 1; min-height: 0; display: flex; flex-direction: column; }
.side-label {
  color: var(--ink-faint);
  font-size: 10.5px;
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px;
}
.rd-count {
  background: var(--accent-dim);
  color: var(--accent);
  border-radius: 3px;
  padding: 1px 8px;
  font-size: 11px;
}

.layer-toggles { display: flex; flex-direction: column; gap: 9px; }
.toggle {
  display: flex; align-items: center; gap: 13px;
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: 6px;
  cursor: pointer;
  background: oklch(1 0 0 / 0.012);
  transition: border-color .2s, background .2s;
  text-align: left;
  width: 100%;
  font-family: inherit;
  color: inherit;
}
.toggle:hover { border-color: var(--ink-ghost); }
.toggle.on { border-color: var(--c); background: oklch(from var(--c) l c h / 0.08); }
.tg-switch {
  width: 34px; height: 19px; border-radius: 20px; flex: none;
  background: var(--navy-750);
  border: 1px solid var(--line);
  position: relative;
  transition: background .2s;
}
.tg-switch::after {
  content: ""; position: absolute; top: 1.5px; left: 2px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--ink-faint);
  transition: transform .2s, background .2s;
}
.toggle.on .tg-switch { background: oklch(from var(--c) l c h / 0.3); border-color: var(--c); }
.toggle.on .tg-switch::after { transform: translateX(15px); background: var(--c); }
.tg-text { flex: 1; min-width: 0; }
.tg-name { font-size: 14px; font-weight: 600; display: flex; align-items: center; gap: 8px; }
.tg-name i { width: 7px; height: 7px; border-radius: 50%; background: var(--c); }
.tg-desc { font-family: var(--font-mono); font-size: 10.5px; color: var(--ink-faint); letter-spacing: 0.04em; margin-top: 3px; }

/* readout list */
.readout { display: flex; flex-direction: column; gap: 10px; overflow: auto; }
.rd-item {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px 13px;
  background: var(--navy-850);
  transition: border-color .3s;
}
.rd-item.confirmed { border-color: oklch(from var(--rc) l c h / 0.55); }
.rd-item.decoy { border-color: oklch(from var(--sar) l c h / 0.5); }
.rd-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.rd-name { font-size: 13.5px; font-weight: 600; }
.rd-class {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.08em;
  padding: 2px 7px; border-radius: 2px;
  color: var(--ink-dim);
  background: oklch(1 0 0 / 0.05);
}
.rd-item.confirmed .rd-class { color: var(--navy-950); background: var(--rc); }
.rd-item.decoy .rd-class { color: var(--navy-950); background: var(--sar); }
.rd-feeds { display: flex; gap: 6px; margin: 9px 0 10px; }
.rd-feed {
  font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 0.06em;
  width: 26px; text-align: center;
  padding: 3px 0; border-radius: 2px;
  border: 1px solid var(--line);
  color: var(--ink-ghost);
  transition: all .25s;
}
.rd-feed.active { color: var(--navy-950); background: var(--fc); border-color: var(--fc); font-weight: 600; }
.rd-feed.contradict { color: var(--sar); border-color: var(--sar); border-style: dashed; }
.rd-confbar {
  height: 5px; border-radius: 3px; background: var(--navy-750);
  overflow: hidden; position: relative;
}
.rd-confbar > i {
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 0%;
  background: var(--rc, var(--accent));
  transition: width .5s ease, background .4s;
  border-radius: 3px;
}
.rd-item.decoy .rd-confbar > i { background: var(--sar); }
.rd-confnum { display: flex; justify-content: space-between; margin-top: 7px; font-family: var(--font-mono); font-size: 10px; color: var(--ink-faint); letter-spacing: 0.06em; }
.rd-confnum b { color: var(--ink); font-weight: 600; }

.readout-empty {
  color: var(--ink-ghost);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-align: center;
  padding: 28px 10px;
  line-height: 1.7;
}

.console-footer {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
  padding: 13px 20px;
  border-top: 1px solid var(--line);
  background: var(--navy-850);
}
.legend { display: flex; gap: 18px; flex-wrap: wrap; }
.lg { display: inline-flex; align-items: center; gap: 7px; font-size: 12px; color: var(--ink-dim); }
.lg i { width: 9px; height: 9px; border-radius: 2px; background: var(--c); }
.console-note { color: var(--ink-ghost); font-size: 10.5px; }

@media (max-width: 920px) {
  .console-body { grid-template-columns: 1fr; }
  .scene-stack { border-right: 0; border-bottom: 1px solid var(--line); }
}

/* ----------------------- MODALITIES DETAIL ----------------------- */
.mod-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 54px;
}
.mod-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px 22px 26px;
  background: var(--navy-900);
  display: flex; flex-direction: column;
  transition: border-color .25s ease;
}
.mod-card:hover { border-color: var(--ink-ghost); }
.mod-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.mod-glyph {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--c);
  position: relative;
}
.mod-abbr { color: var(--ink-faint); font-size: 10px; }
.mod-card h3 { font-size: 23px; }
.mod-q { color: var(--ink); font-size: 14px; font-weight: 600; margin-top: 9px; }
.mod-desc { color: var(--ink-dim); font-size: 14.5px; margin-top: 12px; flex: 1; }
.mod-list { list-style: none; padding: 0; margin: 18px 0 0; display: flex; flex-direction: column; gap: 7px; }
.mod-list li {
  font-size: 11px; letter-spacing: 0.04em; color: var(--ink-faint);
  padding-left: 16px; position: relative;
}
.mod-list li::before {
  content: ""; position: absolute; left: 0; top: 6px;
  width: 6px; height: 6px; background: var(--c); border-radius: 1px;
}

.fusion-line {
  margin-top: 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px 26px;
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  background: var(--navy-900);
}
.fl-op { font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.12em; color: var(--c); font-weight: 600; }
.fl-plus, .fl-eq { color: var(--ink-ghost); font-family: var(--font-mono); }
.fl-eq { margin: 0 4px; }
.fl-result { color: var(--ink); font-size: clamp(15px, 1.6vw, 19px); font-weight: 500; }

@media (max-width: 900px) { .mod-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .mod-grid { grid-template-columns: 1fr; } }

/* ----------------------- MISSIONS ----------------------- */
.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 54px;
}
.mission-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--navy-900);
  display: flex; flex-direction: column;
  transition: border-color .25s ease;
}
.mission-card:hover { border-color: var(--ink-ghost); }
.mission-img { display: block; width: 100%; height: 200px; }
.mission-photo {
  height: 200px;
  border-bottom: 1px solid var(--line-soft);
  overflow: hidden;
  background: var(--navy-950);
}
.mission-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.82) contrast(1.04) brightness(.86);
}
.mission-photo-maritime { object-position: 50% 56%; }
.mission-photo-change { object-position: 52% 48%; }
.mission-photo-access { object-position: 50% 42%; }
.mission-body { padding: 20px 20px 22px; display: flex; flex-direction: column; flex: 1; }
.mission-tag { color: var(--ink-faint); font-size: 10px; }
.mission-card h3 { font-size: 19px; margin-top: 12px; }
.mission-body p { color: var(--ink-dim); font-size: 14px; margin-top: 11px; flex: 1; }
.mission-feeds { display: flex; gap: 7px; margin-top: 16px; }
.mission-feeds span {
  font-size: 10px; letter-spacing: 0.08em;
  padding: 3px 9px; border-radius: 2px;
  color: var(--c); border: 1px solid var(--c);
  background: oklch(from var(--c) l c h / 0.08);
}
@media (max-width: 860px) {
  .mission-grid { grid-template-columns: 1fr; }
  .mission-img, .mission-photo { height: 220px; }
}

/* ----------------------- TEAM / BACKERS ----------------------- */
.team-heading {
  margin-bottom: 28px;
}
.team-heading .section-index {
  display: block;
}
.team-layout {
  display: grid;
  grid-template-columns: minmax(360px, 1.05fr) minmax(320px, .95fr);
  gap: clamp(52px, 7vw, 112px);
  align-items: center;
}
.founders-photo {
  max-width: none;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--navy-900);
  box-shadow: 0 34px 90px -62px oklch(0 0 0 / .9);
}
.founders-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 1.08 / 1;
  object-fit: cover;
  object-position: 50% 64%;
  filter: saturate(.9) contrast(1.02) brightness(.88);
}
.team-copy { min-width: 0; }
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 30px;
  max-width: none;
}
.person {
  display: flex;
  flex-direction: column;
  padding: 0 0 36px;
  border-bottom: 1px solid var(--line-soft);
}
.person + .person { padding-top: 36px; }
.person:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.person-photo {
  display: grid; width: 100%; aspect-ratio: 4/5;
  border: 1px solid var(--line);
  overflow: hidden;
  place-items: center;
  background:
    linear-gradient(135deg, color-mix(in oklab, var(--navy-850) 78%, var(--accent)), var(--navy-950));
}
.person-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.86) contrast(1.02);
}
.person-initials {
  color: color-mix(in oklab, var(--ink) 72%, var(--accent));
  font-family: var(--font-mono);
  font-size: clamp(34px, 5vw, 58px);
  letter-spacing: .16em;
}
.person-meta { margin-top: 16px; }
.team .person-meta { margin-top: 0; }
.person-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.person h4 { font-size: clamp(30px, 3.6vw, 44px); }
.person-socials {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: none;
}
.social-link {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: oklch(1 0 0 / 0.018);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  transition: border-color .2s ease, background .2s ease, transform .15s ease;
}
.social-link:hover {
  border-color: var(--accent);
  background: var(--accent-dim);
  transform: translateY(-1px);
}
.social-linkedin {
  font-weight: 800;
  letter-spacing: -0.04em;
}
.social-x {
  font-size: 14px;
}
.person-role {
  display: block;
  color: var(--ink-faint);
  font-size: 13px;
  margin: 14px 0 22px;
  letter-spacing: .28em;
}
.person-meta p {
  color: var(--ink-dim);
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.5;
}

@media (max-width: 960px) {
  .team-layout { grid-template-columns: 1fr; }
  .founders-photo { max-width: 760px; }
  .team-copy { max-width: 760px; }
}
@media (max-width: 620px) {
  .founders-photo img { aspect-ratio: 4 / 5; }
  .person h4 { font-size: 28px; }
  .social-link { width: 34px; height: 34px; }
}

/* ----------------------- FOOTER ----------------------- */
.footer { border-top: 1px solid var(--line); padding: 56px 0 30px; position: relative; z-index: 1; }
.footer-inner { display: grid; grid-template-columns: 1.4fr 2fr; gap: 40px; }
.footer-brand { display: flex; flex-direction: column; gap: 4px; }
.footer-logo { display: inline-flex; align-items: center; gap: 11px; }
.footer-brand .brand-name { font-size: 16px; }
.footer-tag { color: var(--ink-faint); font-size: 14px; margin-top: 6px; }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.footer-col { display: flex; flex-direction: column; gap: 11px; }
.footer-h { color: var(--ink-faint); font-size: 10.5px; margin-bottom: 4px; }
.footer-col a { color: var(--ink-dim); font-size: 14px; transition: color .2s; }
.footer-col a:hover { color: var(--ink); }
.footer-base {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  margin-top: 48px; padding-top: 22px; border-top: 1px solid var(--line-soft);
  color: var(--ink-ghost); font-size: 10.5px; letter-spacing: 0.08em;
}
@media (max-width: 760px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) { .footer-cols { grid-template-columns: 1fr; gap: 28px; } }
