/* Taxi Lukáš — čitelné rozložení */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Plus+Jakarta+Sans:wght@500;600;700;800&display=swap');

:root {
  --void: #050505;
  --deep: #0c0c0c;
  --panel: #121212;
  --ink: #f0eee8;
  --ink-dim: #b0ada4;
  --ink-faint: #6e6b64;
  --gold: #e8b80f;
  --gold-hot: #f5c842;
  --gold-glow: rgba(232, 184, 15, 0.35);
  --gold-dim: rgba(232, 184, 15, 0.1);
  --line: rgba(255, 255, 255, 0.08);
  --line-gold: rgba(232, 184, 15, 0.3);
  --font-display: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --nav-h: 68px;
  --rail-w: 0px;
  --content: 1080px;
  --pad: clamp(1.25rem, 4vw, 2rem);
  --site-pad: var(--pad);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-snap: cubic-bezier(0.34, 1.2, 0.64, 1);
  --checkers: repeating-conic-gradient(rgba(232,184,15,0.04) 0% 25%, transparent 0% 50%) 0 0 / 14px 14px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--void);
  color: var(--ink);
  line-height: 1.65;
  font-size: 1.0625rem;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}
body::selection { background: var(--gold); color: var(--void); }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

.site-main { margin-left: 0; }
.site-wrap {
  width: 100%;
  max-width: var(--content);
  margin-inline: auto;
  padding-inline: var(--pad);
}
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

/* Ambient */
.ambient {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(600px circle at var(--mx, 50%) var(--my, 30%), rgba(245,184,0,0.07), transparent 55%),
    radial-gradient(800px circle at 80% 80%, rgba(245,184,0,0.04), transparent 50%);
}
.grain {
  position: fixed; inset: 0; z-index: 9998; pointer-events: none; opacity: 0.02;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Typography */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; letter-spacing: -0.02em; line-height: 1.2; }
h1 { font-size: clamp(2.1rem, 4.8vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.65rem, 3vw, 2.35rem); }
h3 { font-size: clamp(1.1rem, 1.8vw, 1.25rem); font-weight: 600; }
.lead { font-size: 1.0625rem; color: var(--ink-dim); max-width: 50ch; line-height: 1.75; }
.eyebrow {
  font-family: var(--font-display); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.85rem;
}

/* Shell nav */
.shell-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: var(--nav-h);
  transition: background 0.4s var(--ease), backdrop-filter 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.shell-nav.is-scrolled,
body:not([data-page="home"]) .shell-nav {
  background: rgba(3,3,3,0.9); backdrop-filter: blur(20px) saturate(160%);
  border-bottom-color: var(--line);
}
.shell-nav__inner {
  max-width: calc(var(--content) + var(--pad) * 2);
  margin-inline: auto;
  padding-inline: var(--pad);
  height: 100%;
  display: flex; align-items: center; gap: 1.5rem;
}
.shell-nav__brand {
  display: flex; align-items: center; gap: 0.75rem;
  font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; margin-right: auto;
}
.shell-nav__brand img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; }
.shell-nav__brand em { font-style: normal; color: var(--gold-hot); }
.shell-nav__menu { display: flex; gap: 1.75rem; }
.shell-nav__menu a {
  font-size: 0.88rem; font-weight: 500; color: var(--ink-dim);
  position: relative; padding-block: 0.25rem; transition: color 0.25s;
}
.shell-nav__menu a::after {
  content: ''; position: absolute; left: 0; bottom: -3px; width: 0; height: 2px;
  background: var(--gold); transition: width 0.35s var(--ease);
}
.shell-nav__menu a:hover, .shell-nav__menu a.is-active { color: var(--ink); }
.shell-nav__menu a.is-active::after, .shell-nav__menu a:hover::after { width: 100%; }
.shell-nav__pulse { flex-shrink: 0; }
.shell-nav__burger {
  display: none; width: 44px; height: 44px; position: relative; margin-left: auto;
}
.shell-nav__burger span, .shell-nav__burger::before, .shell-nav__burger::after {
  content: ''; position: absolute; left: 10px; right: 10px; height: 2px; background: var(--ink);
  transition: transform 0.3s, opacity 0.3s;
}
.shell-nav__burger span { top: 50%; transform: translateY(-50%); }
.shell-nav__burger::before { top: 14px; }
.shell-nav__burger::after { bottom: 14px; }
.shell-nav__burger.is-open span { opacity: 0; }
.shell-nav__burger.is-open::before { top: 50%; transform: translateY(-50%) rotate(45deg); }
.shell-nav__burger.is-open::after { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

/* Rail nav — skryto, navigace je v horní liště */
.rail-nav { display: none !important; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.82rem 1.5rem; font-family: var(--font-display); font-size: 0.88rem; font-weight: 700;
  transition: transform 0.3s var(--ease-snap), box-shadow 0.3s, background 0.25s;
}
.btn--gold { background: var(--gold); color: var(--void); }
.btn--gold:hover { background: var(--gold-hot); box-shadow: 0 8px 32px var(--gold-glow); transform: translateY(-2px); }
.btn--ghost { color: var(--ink); box-shadow: inset 0 0 0 1px var(--line); }
.btn--ghost:hover { box-shadow: inset 0 0 0 1px var(--gold); color: var(--gold-hot); }
.btn--lg { padding: 0.95rem 1.85rem; }
.btn--magnetic { will-change: transform; }

.live-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.4rem 0.85rem; font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  background: rgba(245,184,0,0.08); border: 1px solid var(--line-gold);
  color: var(--gold-hot); margin-bottom: 1.25rem;
}
.live-badge::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold); box-shadow: 0 0 10px var(--gold-glow);
  animation: pulse-dot 2s ease infinite;
}
@keyframes pulse-dot { 0%, 100% { opacity: 1; } 50% { opacity: 0.45; } }

/* Horizon hero */
.horizon {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 100svh; padding-top: var(--nav-h);
  border-bottom: 1px solid var(--line);
}
.horizon__copy {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(2.5rem, 5vw, 4rem) var(--pad);
  max-width: calc(var(--content) / 2 + var(--pad));
  margin-left: auto; width: 100%;
}
.horizon__copy h1 { margin-bottom: 1rem; max-width: 14ch; }
.horizon__copy h1 em { font-style: normal; color: var(--gold-hot); display: block; margin-top: 0.15em; }
.horizon__greet { font-size: 0.95rem; color: var(--ink-dim); margin-bottom: 0.75rem; }
.horizon__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin: 1.75rem 0 2rem; }
.horizon__visual { position: relative; min-height: 320px; }
.horizon__frame {
  position: absolute; inset: 0;
  border-left: 1px solid var(--line);
  overflow: hidden;
}
.horizon__frame img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.horizon__frame::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--void) 0%, transparent 28%, transparent 70%, rgba(3,3,3,0.35) 100%);
}
.horizon__stats {
  display: grid; grid-template-columns: repeat(3, auto); gap: 2rem 2.5rem;
  padding-top: 1.5rem; border-top: 1px solid var(--line);
}
.horizon__stats dt {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 800;
  color: var(--gold-hot); line-height: 1;
}
.horizon__stats dd { font-size: 0.8rem; color: var(--ink-faint); margin-top: 0.3rem; }

/* HUD — přehledné výhody */
.hud {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  border-bottom: 1px solid var(--line); background: var(--line);
}
.hud__cell {
  padding: 1.5rem 1.25rem; background: var(--deep);
}
.hud__cell strong {
  display: block; font-family: var(--font-display); font-size: 0.95rem;
  font-weight: 700; margin-bottom: 0.35rem; color: var(--ink);
}
.hud__cell span { font-size: 0.875rem; color: var(--ink-dim); line-height: 1.5; }

/* Přehledná mřížka služeb */
.services-section { padding-block: clamp(3.5rem, 6vw, 5rem); border-bottom: 1px solid var(--line); }
.services-section .section-head { margin-bottom: 2rem; }
.card-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
}
.service-card {
  display: flex; flex-direction: column;
  background: var(--panel); border: 1px solid var(--line);
  transition: border-color 0.25s, transform 0.25s var(--ease);
}
.service-card:hover { border-color: var(--line-gold); transform: translateY(-3px); }
.service-card__img {
  height: 180px; overflow: hidden; background: var(--void);
  display: flex; align-items: center; justify-content: center;
}
.service-card__img img { width: 100%; height: 100%; object-fit: contain; padding: 0.5rem; }
.service-card__body { padding: 1.35rem; flex: 1; display: flex; flex-direction: column; }
.service-card__body h3 { margin-bottom: 0.5rem; }
.service-card__body p { font-size: 0.9rem; color: var(--ink-dim); line-height: 1.55; flex: 1; }
.service-card__link {
  display: inline-block; margin-top: 1rem; font-size: 0.85rem; font-weight: 600;
  color: var(--gold-hot); transition: color 0.2s;
}
.service-card__link:hover { color: var(--ink); }
.section-cta { text-align: center; margin-top: 2.5rem; }

/* Route corridor — volitelné, skryté na homepage */
.route-corridor { height: 280vh; border-bottom: 1px solid var(--line); }
.route-corridor__pin {
  position: sticky; top: var(--nav-h); height: calc(100vh - var(--nav-h));
  display: grid; grid-template-rows: auto 1fr auto;
  overflow: hidden; padding-block: 2rem;
}
.route-corridor__head { padding-inline: var(--site-pad); max-width: 520px; margin-bottom: 1.5rem; }
.route-corridor__track {
  display: flex; align-items: stretch; gap: 1.25rem;
  padding-left: var(--site-pad); padding-right: var(--pad);
  will-change: transform; align-self: center;
}
.route-corridor__progress {
  padding-inline: var(--site-pad); height: 2px; background: var(--line); margin-top: 1.5rem;
}
.route-corridor__progress span {
  display: block; height: 100%; width: 0%; background: var(--gold);
  box-shadow: 0 0 10px var(--gold-glow);
}
.route-stop {
  flex: 0 0 min(340px, 72vw); display: flex; flex-direction: column;
  background: var(--panel); border: 1px solid var(--line);
  transition: border-color 0.3s, transform 0.3s var(--ease);
}
.route-stop:hover { border-color: var(--line-gold); transform: translateY(-4px); }
.route-stop__img { height: 200px; overflow: hidden; position: relative; background: var(--void); }
.route-stop__img img { width: 100%; height: 100%; object-fit: contain; }
.route-stop__num {
  position: absolute; top: 0.85rem; left: 0.85rem;
  font-family: var(--font-display); font-size: 0.62rem; font-weight: 800;
  letter-spacing: 0.12em; color: var(--gold); background: rgba(3,3,3,0.85);
  padding: 0.28rem 0.5rem; border: 1px solid var(--line-gold);
}
.route-stop__body { padding: 1.35rem; flex: 1; }
.route-stop__body h3 { margin-bottom: 0.45rem; }
.route-stop__body p { font-size: 0.86rem; color: var(--ink-dim); line-height: 1.55; }

/* Split panel */
.split-panel {
  padding-block: clamp(4rem, 7vw, 6rem);
  border-bottom: 1px solid var(--line);
}
.split-panel__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}
.split-panel__media {
  aspect-ratio: 1; overflow: hidden; border: 1px solid var(--line);
  background: var(--void);
}
.split-panel__media img { width: 100%; height: 100%; object-fit: contain; }
.split-panel__copy .list-check { margin: 1.25rem 0 0; }
.split-panel__copy .list-check li {
  padding: 0.5rem 0 0.5rem 1.5rem; position: relative;
  font-size: 0.94rem; color: var(--ink-dim); border-bottom: 1px solid var(--line);
}
.split-panel__copy .list-check li::before {
  content: ''; position: absolute; left: 0; top: 0.8rem;
  width: 7px; height: 7px; background: var(--gold); transform: rotate(45deg);
}

/* Signal CTA */
.signal-cta {
  padding-block: clamp(4rem, 8vw, 6rem);
  text-align: center;
  background: var(--checkers), radial-gradient(ellipse 70% 50% at 50% 100%, var(--gold-dim), transparent 65%);
  border-bottom: 1px solid var(--line);
}
.signal-cta__phone {
  display: block; font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2rem, 6vw, 3.25rem); color: var(--gold-hot);
  margin: 1rem 0; letter-spacing: -0.01em;
  transition: transform 0.3s var(--ease-snap);
}
.signal-cta__phone:hover { transform: scale(1.02); }
.signal-cta__actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 0.75rem; }

/* Portal */
.portal {
  position: relative; min-height: 48vh; padding-top: var(--nav-h);
  display: flex; align-items: flex-end;
  border-bottom: 1px solid var(--line); overflow: hidden;
}
.portal__bg { position: absolute; inset: 0; }
.portal__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.portal__shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(3,3,3,0.92) 0%, rgba(3,3,3,0.55) 55%, rgba(3,3,3,0.25) 100%),
    linear-gradient(to top, var(--void) 0%, transparent 45%);
}
.portal__body {
  position: relative; z-index: 1;
  padding-block: clamp(2.5rem, 5vw, 3.5rem);
}
.portal__body h1 { margin-bottom: 0.85rem; }
.breadcrumb { font-size: 0.78rem; color: var(--ink-faint); margin-bottom: 1rem; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { margin-inline: 0.45rem; opacity: 0.35; }
.chips { display: flex; flex-wrap: wrap; gap: 0.45rem; margin-top: 1.25rem; }
.chip {
  padding: 0.4rem 0.85rem; font-size: 0.76rem; font-weight: 600;
  border: 1px solid var(--line); color: var(--ink-dim); transition: all 0.25s;
}
.chip:hover { border-color: var(--gold); color: var(--gold-hot); background: var(--gold-dim); }

/* Service stream — přehledné karty na podstránce */
.service-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem;
  padding-block: clamp(2.5rem, 5vw, 4rem);
}
.service-node {
  display: flex; flex-direction: column;
  background: var(--panel); border: 1px solid var(--line);
  scroll-margin-top: calc(var(--nav-h) + 1rem);
}
.service-node:nth-child(even) .service-node__visual { order: unset; }
.service-node__visual {
  position: relative; background: var(--void);
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem; min-height: 200px;
  border-right: none; border-bottom: 1px solid var(--line);
}
.service-node__visual img { max-height: 160px; width: auto; object-fit: contain; }
.service-node__idx { display: none; }
.service-node__copy {
  display: flex; flex-direction: column; justify-content: flex-start;
  padding: 1.5rem; background: transparent; max-width: none;
}
.service-node__copy p { font-size: 0.9rem; color: var(--ink-dim); line-height: 1.6; margin-top: 0.5rem; }
.service-node__tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 1rem; }
.tag {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.3rem 0.6rem; border: 1px solid var(--line); color: var(--ink-faint);
}

/* Bento, timeline, gallery */
.bento {
  display: grid; grid-template-columns: repeat(12, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line);
}
.bento__cell { background: var(--panel); padding: 1.75rem; }
.bento__cell--6 { grid-column: span 6; }
.bento__cell--4 { grid-column: span 4; }
.bento__cell--gold { background: var(--gold-dim); }
.bento__cell h3 { margin-bottom: 0.45rem; }
.bento__cell p { font-size: 0.86rem; color: var(--ink-dim); }

.timeline {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
}
.timeline__step {
  padding: 1.75rem 1.25rem; text-align: center;
  border-right: 1px solid var(--line);
}
.timeline__step:last-child { border-right: none; }
.timeline__dot {
  width: 44px; height: 44px; margin: 0 auto 0.85rem;
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 800; font-size: 0.85rem;
  border: 2px solid var(--gold); color: var(--gold-hot); background: var(--void);
}
.timeline__step strong { display: block; font-family: var(--font-display); font-size: 0.95rem; margin-bottom: 0.3rem; }
.timeline__step span { font-size: 0.8rem; color: var(--ink-dim); }

.gallery-mosaic {
  display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 160px; gap: 3px;
}
.gallery-mosaic__item { position: relative; overflow: hidden; grid-column: span 4; background: var(--void); }
.gallery-mosaic__item--hero { grid-column: span 8; grid-row: span 2; }
.gallery-mosaic__item--tall { grid-row: span 2; }
.gallery-mosaic__item img { width: 100%; height: 100%; object-fit: contain; }
.gallery-mosaic__label {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 0.85rem;
  background: linear-gradient(to top, rgba(3,3,3,0.92), transparent);
  font-family: var(--font-display); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold-hot);
}

/* Contact */
.contact-matrix {
  display: grid; grid-template-columns: 1fr 1.15fr;
  border-bottom: 1px solid var(--line); min-height: 480px;
}
.contact-matrix__channels { border-right: 1px solid var(--line); }
.contact-channel {
  padding: 2rem var(--pad); border-bottom: 1px solid var(--line);
  transition: background 0.3s;
}
.contact-channel:hover { background: var(--gold-dim); }
.contact-channel h3 {
  font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.4rem;
}
.contact-channel .value {
  font-family: var(--font-display); font-size: 1.35rem; font-weight: 800;
  transition: color 0.25s;
}
.contact-channel:hover .value { color: var(--gold-hot); }
.contact-channel p { font-size: 0.84rem; color: var(--ink-dim); margin-top: 0.3rem; }
.contact-matrix__map { min-height: 100%; }
.contact-matrix__map iframe { width: 100%; height: 100%; min-height: 480px; border: 0; filter: grayscale(0.5) contrast(1.05); }

/* Price, FAQ, section */
.price-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line);
}
.price-card { background: var(--panel); padding: 2rem 1.75rem; }
.price-card--focus { background: var(--gold-dim); }
.price-card h3 { margin-bottom: 0.85rem; }
.price-card .amount {
  font-family: var(--font-display); font-size: 2.25rem; font-weight: 800;
  color: var(--gold-hot); margin-bottom: 1.25rem;
}
.price-card .amount small { font-size: 0.85rem; color: var(--ink-dim); font-weight: 500; }
.price-card ul li { font-size: 0.86rem; color: var(--ink-dim); padding: 0.35rem 0; border-bottom: 1px solid var(--line); }

.faq-item { border-bottom: 1px solid var(--line); }
.faq-item button {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 1.15rem 0; text-align: left; font-family: var(--font-display);
  font-weight: 600; font-size: 0.98rem; color: var(--ink);
}
.faq-item button:hover { color: var(--gold-hot); }
.faq-item button svg { transition: transform 0.35s var(--ease); }
.faq-item.open button svg { transform: rotate(180deg); }
.faq-item__body { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-item.open .faq-item__body { max-height: 180px; }
.faq-item__body p { padding-bottom: 1.15rem; font-size: 0.9rem; color: var(--ink-dim); }

.section { padding-block: clamp(3rem, 5vw, 4.5rem); }
.section--panel { background: var(--deep); border-block: 1px solid var(--line); }
.section-head { margin-bottom: 2.5rem; max-width: 520px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .lead { margin-inline: auto; }

.stats-band {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line); background: var(--panel);
}
.stats-band__item { padding: 1.75rem 1rem; text-align: center; border-right: 1px solid var(--line); }
.stats-band__item:last-child { border-right: none; }
.stats-band__num {
  font-family: var(--font-display); font-size: 1.85rem; font-weight: 800;
  color: var(--gold-hot); margin-bottom: 0.3rem;
}
.stats-band__label { font-size: 0.76rem; color: var(--ink-dim); }

/* Pulse hub */
.pulse-hub { position: fixed; bottom: 1.75rem; right: 1.75rem; z-index: 300; width: 60px; height: 60px; }
.pulse-hub__core {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--gold); color: var(--void);
  display: grid; place-items: center; position: relative; z-index: 2;
  animation: hub-pulse 3s ease infinite;
  transition: transform 0.3s var(--ease-snap);
}
.pulse-hub__core:hover { transform: scale(1.06); }
.pulse-hub__core svg { width: 24px; height: 24px; }
.pulse-hub__ring {
  position: absolute; inset: -5px; border-radius: 50%;
  border: 2px solid var(--gold); opacity: 0.35; animation: hub-ring 2s ease infinite;
}
@keyframes hub-pulse { 0%, 100% { box-shadow: 0 0 0 0 var(--gold-glow); } 50% { box-shadow: 0 0 0 14px transparent; } }
@keyframes hub-ring { 0%, 100% { transform: scale(1); opacity: 0.35; } 50% { transform: scale(1.12); opacity: 0; } }
.pulse-hub__satellite {
  position: absolute; width: 46px; height: 46px; border-radius: 50%;
  background: var(--panel); border: 1px solid var(--line-gold);
  display: grid; place-items: center; color: var(--gold-hot);
  opacity: 0; transform: scale(0.5); pointer-events: none;
  transition: opacity 0.3s, transform 0.3s var(--ease-snap); z-index: 1;
}
.pulse-hub__satellite svg { width: 18px; height: 18px; }
.pulse-hub.is-open .pulse-hub__satellite { opacity: 1; pointer-events: auto; transform: scale(1); }
.pulse-hub.is-open .pulse-hub__satellite--call { bottom: 74px; right: 7px; }
.pulse-hub.is-open .pulse-hub__satellite--wa { bottom: 50px; right: 62px; }
.pulse-hub.is-open .pulse-hub__satellite--sms { bottom: 7px; right: 74px; }

/* Footer */
.terminal {
  padding: 2.5rem var(--pad) 1.25rem;
  border-top: 1px solid var(--line); background: var(--deep);
}
.terminal__grid {
  max-width: var(--content); margin-inline: auto;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2rem;
  padding-bottom: 2rem; border-bottom: 1px solid var(--line);
}
.terminal__brand p { font-size: 0.86rem; color: var(--ink-dim); margin-top: 0.65rem; max-width: 26ch; }
.terminal h4 {
  font-size: 0.65rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.85rem;
}
.terminal ul li { margin-bottom: 0.4rem; }
.terminal ul a { font-size: 0.86rem; color: var(--ink-dim); transition: color 0.25s; }
.terminal ul a:hover { color: var(--gold-hot); }
.terminal__social { display: flex; gap: 0.45rem; }
.terminal__social a {
  width: 38px; height: 38px; display: grid; place-items: center;
  border: 1px solid var(--line); font-family: var(--font-display); font-weight: 800;
  font-size: 0.82rem; transition: border-color 0.25s, background 0.25s;
}
.terminal__social a:hover { border-color: var(--gold); background: var(--gold-dim); }
.terminal__bar {
  max-width: var(--content); margin-inline: auto;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem;
  padding-top: 1.15rem; font-size: 0.74rem; color: var(--ink-faint);
}

/* Reveal */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }

/* Responsive */
@media (max-width: 1024px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .service-grid { grid-template-columns: 1fr; }
  .horizon { grid-template-columns: 1fr; }
  .horizon__copy { max-width: none; margin-left: 0; padding-block: 2rem; }
  .horizon__visual { min-height: 260px; order: -1; }
  .horizon__frame::after { background: linear-gradient(to top, var(--void) 0%, transparent 50%); }
  .horizon__frame { border-left: none; border-bottom: 1px solid var(--line); }
  .split-panel__grid { grid-template-columns: 1fr; }
  .contact-matrix { grid-template-columns: 1fr; }
  .contact-matrix__channels { border-right: none; }
  .terminal__grid { grid-template-columns: 1fr 1fr; }
  .bento__cell--6, .bento__cell--4 { grid-column: span 12; }
  .timeline { grid-template-columns: 1fr 1fr; }
  .price-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .card-grid { grid-template-columns: 1fr; }
  .shell-nav__menu {
    display: none; position: fixed; top: var(--nav-h); left: 0; right: 0;
    flex-direction: column; gap: 1rem; padding: 1.5rem var(--pad);
    background: rgba(3,3,3,0.97); backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--line);
  }
  .shell-nav__menu.is-open { display: flex; }
  .shell-nav__pulse { display: none; }
  .shell-nav__burger { display: block; }
  .hud { grid-template-columns: 1fr 1fr; }
  .hud__cell:nth-child(2) { border-right: none; }
  .hud__cell { padding: 1.25rem var(--pad); }
  .stats-band { grid-template-columns: 1fr 1fr; }
  .stats-band__item:nth-child(2) { border-right: none; }
  .route-corridor { height: auto; }
  .route-corridor__pin { position: relative; height: auto; padding: 2.5rem 0; display: block; }
  .route-corridor__track { flex-direction: column; transform: none !important; padding-inline: var(--pad); }
  .route-stop { flex: none; width: 100%; }
  .route-corridor__progress { display: none; }
  .horizon__stats { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .gallery-mosaic__item, .gallery-mosaic__item--hero { grid-column: span 12; grid-row: span 1; }
  .terminal__grid { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
