:root {
  --bg: #050b14;
  --bg-soft: #081322;
  --panel: rgba(14, 27, 46, 0.72);
  --panel-solid: #0d1a2c;
  --line: rgba(151, 183, 223, 0.16);
  --line-strong: rgba(151, 183, 223, 0.28);
  --text: #f4f8ff;
  --muted: #9aabc1;
  --muted-strong: #c5d0df;
  --cyan: #7ee7ff;
  --blue: #5f8dff;
  --violet: #8a63ff;
  --green: #67e6b3;
  --danger: #ff8f9f;
  --shadow: 0 30px 100px rgba(0, 0, 0, 0.35);
  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 34px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 0%, rgba(95, 141, 255, 0.15), transparent 30%),
    radial-gradient(circle at 90% 12%, rgba(126, 231, 255, 0.10), transparent 27%),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, #000, transparent 78%);
  z-index: -1;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  transform: translateY(-150%);
  padding: 10px 14px;
  color: #06111f;
  background: var(--cyan);
  border-radius: 10px;
  z-index: 999;
}
.skip-link:focus { transform: translateY(0); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), transparent);
}

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.08; letter-spacing: -0.04em; }
h1 { font-size: clamp(3.25rem, 8vw, 6.8rem); max-width: 970px; margin-bottom: 28px; }
h2 { font-size: clamp(2.4rem, 5vw, 4.6rem); margin-bottom: 20px; }
h3 { font-size: clamp(1.25rem, 2vw, 1.65rem); }
.lead { color: var(--muted-strong); font-size: clamp(1.05rem, 2vw, 1.3rem); max-width: 700px; }
.gradient-text {
  background: linear-gradient(100deg, #fff 10%, var(--cyan) 44%, #9aaeff 75%, #cfbdff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.announcement {
  padding: 9px 20px;
  color: #cbd8e8;
  background: rgba(5, 11, 20, 0.82);
  border-bottom: 1px solid var(--line);
  font-size: 0.78rem;
  text-align: center;
  letter-spacing: 0.04em;
}
.announcement strong { color: var(--cyan); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  background: rgba(5, 11, 20, 0.68);
  backdrop-filter: blur(20px);
  transition: border-color 180ms ease, background 180ms ease;
}
.site-header.scrolled { border-color: var(--line); background: rgba(5, 11, 20, 0.92); }
.navbar {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 780; letter-spacing: -0.025em; }
.brand img { width: 38px; height: 38px; }
.brand span small { display: block; margin-top: -3px; color: var(--muted); font-size: 0.62rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 30px; color: var(--muted-strong); font-size: 0.92rem; }
.nav-links a { transition: color 180ms ease; }
.nav-links a:hover, .nav-links a:focus-visible { color: #fff; }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.menu-toggle { display: none; padding: 10px; border: 0; background: none; cursor: pointer; }
.menu-toggle span { display: block; width: 23px; height: 2px; margin: 5px 0; background: #fff; border-radius: 10px; }

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border: 1px solid var(--line-strong);
  border-radius: 13px;
  color: #fff;
  background: rgba(255,255,255,0.035);
  font-size: 0.9rem;
  font-weight: 760;
  box-shadow: 0 0 0 rgba(95, 141, 255, 0);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}
.button:hover, .button:focus-visible { transform: translateY(-2px); border-color: rgba(126,231,255,0.45); background: rgba(255,255,255,0.07); }
.button-primary {
  color: #06111f;
  border-color: transparent;
  background: linear-gradient(120deg, var(--cyan), #a5b8ff 58%, #c4a8ff);
  box-shadow: 0 12px 38px rgba(95, 141, 255, 0.22);
}
.button-primary:hover, .button-primary:focus-visible { background: linear-gradient(120deg, #99edff, #bbcbff 58%, #d4c0ff); box-shadow: 0 16px 45px rgba(95, 141, 255, 0.32); }
.button-small { min-height: 42px; padding-inline: 17px; font-size: 0.84rem; }
.button-arrow::after { content: "↗"; font-size: 1rem; }

.hero { position: relative; padding: 112px 0 80px; overflow: clip; }
.hero::before {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  top: -120px;
  right: -180px;
  border-radius: 50%;
  border: 1px solid rgba(126,231,255,0.15);
  box-shadow: inset 0 0 120px rgba(95,141,255,0.08), 0 0 180px rgba(95,141,255,0.08);
}
.hero-copy { position: relative; z-index: 2; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 18px 30px; margin-top: 38px; color: var(--muted); font-size: 0.84rem; }
.hero-trust span { display: inline-flex; align-items: center; gap: 9px; }
.hero-trust span::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 16px rgba(103,230,179,0.7); }

.hero-stage { position: relative; min-height: 520px; margin-top: 72px; perspective: 1200px; }
.hero-stage::before {
  content: "";
  position: absolute;
  inset: 10% 12%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(95,141,255,0.22), transparent 70%);
  filter: blur(30px);
}
.dashboard-shell {
  position: relative;
  width: min(100%, 1030px);
  margin: auto;
  padding: 18px;
  border: 1px solid rgba(167, 197, 237, 0.23);
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(18,35,58,0.90), rgba(7,16,29,0.93));
  box-shadow: var(--shadow), 0 0 80px rgba(95,141,255,0.09);
  transform: rotateX(3deg);
}
.dashboard-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; padding: 0 4px; }
.window-dots { display: flex; gap: 7px; }
.window-dots i { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.18); }
.dashboard-label { color: var(--muted); font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; }
.dashboard-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 14px; }
.dashboard-card { border: 1px solid var(--line); border-radius: 18px; background: rgba(7,15,27,0.65); overflow: hidden; }
.dashboard-card-inner { padding: 23px; }
.dashboard-card h3 { margin-bottom: 8px; letter-spacing: -0.025em; }
.dashboard-card p { color: var(--muted); font-size: 0.87rem; }
.status-row {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 15px 0;
  border: 0;
  border-top: 1px solid var(--line);
  color: inherit;
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, padding 180ms ease;
}
.status-row:hover, .status-row:focus-visible { background: rgba(126,231,255,0.035); outline: none; }
.status-row.active {
  width: calc(100% + 20px);
  margin-inline: -10px;
  padding-inline: 10px;
  border-color: rgba(126,231,255,0.24);
  border-radius: 12px;
  background: rgba(126,231,255,0.055);
}
.status-main { min-width: 0; display: flex; align-items: center; gap: 12px; }
.status-main > span:last-child { min-width: 0; }
.status-icon { width: 37px; height: 37px; flex: 0 0 37px; display: grid; place-items: center; border: 1px solid rgba(126,231,255,0.2); border-radius: 12px; color: var(--cyan); background: rgba(126,231,255,0.07); font-size: 0.82rem; }
.status-title, .status-detail { display: block; }
.status-title { font-size: 0.86rem; font-weight: 760; }
.status-detail { color: var(--muted); font-size: 0.72rem; }
.status-pill { flex: 0 0 auto; padding: 6px 9px; border: 1px solid rgba(103,230,179,0.18); border-radius: 999px; color: var(--green); background: rgba(103,230,179,0.07); font-size: 0.68rem; font-weight: 800; }
.signal-card { min-height: 100%; background: radial-gradient(circle at top right, rgba(126,231,255,0.13), transparent 40%), rgba(7,15,27,0.65); }
.signal-ring { position: relative; width: 170px; height: 170px; display: grid; place-items: center; margin: 24px auto 17px; border-radius: 50%; background: conic-gradient(var(--cyan) 0 80%, rgba(255,255,255,0.06) 80% 100%); }
.signal-ring::before { content: ""; position: absolute; inset: 11px; border-radius: 50%; background: #091525; }
.signal-ring div { position: relative; z-index: 2; text-align: center; }
.signal-ring strong { display: block; font-size: 2.2rem; letter-spacing: -0.06em; }
.signal-ring span { color: var(--muted); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.12em; }
.mini-chart { height: 88px; display: flex; align-items: end; gap: 8px; margin-top: 22px; }
.mini-chart i { flex: 1; min-height: 18%; border-radius: 6px 6px 2px 2px; background: linear-gradient(to top, rgba(95,141,255,0.22), var(--cyan)); opacity: 0.82; transition: height 260ms ease; }
.dashboard-hint { margin: 14px 0 0; color: var(--cyan) !important; font-size: 0.7rem !important; font-weight: 750; letter-spacing: 0.04em; }

.proof-strip { padding: 24px 0; border-block: 1px solid var(--line); background: rgba(255,255,255,0.012); }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.proof-item { padding: 12px 28px; border-right: 1px solid var(--line); }
.proof-item:last-child { border-right: 0; }
.proof-item strong { display: block; margin-bottom: 2px; font-size: 0.95rem; }
.proof-item span { color: var(--muted); font-size: 0.76rem; }

.section { padding: 120px 0; }
.section-muted { border-block: 1px solid var(--line); background: linear-gradient(180deg, rgba(255,255,255,0.018), rgba(255,255,255,0)); }
.section-heading { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 70px; align-items: end; margin-bottom: 58px; }
.section-heading .lead { justify-self: end; }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.service-card {
  position: relative;
  min-height: 380px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(18,34,57,0.88), rgba(8,17,30,0.72));
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease;
}
.service-card:hover { transform: translateY(-5px); border-color: rgba(126,231,255,0.3); }
.service-card::after { content: ""; position: absolute; width: 220px; height: 220px; right: -100px; bottom: -120px; border-radius: 50%; background: radial-gradient(circle, rgba(95,141,255,0.22), transparent 70%); }
.card-number { color: var(--cyan); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.12em; }
.card-icon { width: 50px; height: 50px; display: grid; place-items: center; margin: 45px 0 24px; border: 1px solid var(--line-strong); border-radius: 15px; color: var(--cyan); background: rgba(126,231,255,0.05); }
.card-icon svg { width: 24px; }
.service-card p { color: var(--muted); }
.card-link { position: absolute; left: 28px; bottom: 26px; z-index: 2; display: inline-flex; align-items: center; gap: 8px; color: #d9e4f2; font-size: 0.84rem; font-weight: 760; }
.card-link::after { content: "→"; color: var(--cyan); }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center; }
.feature-stack { display: grid; gap: 14px; }
.feature-row { display: grid; grid-template-columns: auto 1fr; gap: 18px; padding: 22px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,0.018); }
.feature-row span { width: 35px; height: 35px; display: grid; place-items: center; border-radius: 11px; color: #07111f; background: linear-gradient(135deg, var(--cyan), #a7b5ff); font-size: 0.78rem; font-weight: 900; }
.feature-row h3 { margin: 1px 0 7px; font-size: 1rem; letter-spacing: -0.015em; }
.feature-row p { margin: 0; color: var(--muted); font-size: 0.84rem; }

.portal-panel { position: relative; padding: 20px; border: 1px solid var(--line-strong); border-radius: var(--radius-lg); background: linear-gradient(150deg, rgba(17,33,56,0.92), rgba(6,14,26,0.95)); box-shadow: var(--shadow); overflow: hidden; }
.portal-panel::before { content: ""; position: absolute; width: 320px; height: 320px; right: -120px; top: -160px; border-radius: 50%; background: radial-gradient(circle, rgba(126,231,255,0.16), transparent 67%); }
.portal-window { position: relative; min-height: 430px; padding: 25px; border: 1px solid var(--line); border-radius: 22px; background: rgba(4,12,22,0.68); }
.portal-nav { display: flex; align-items: center; justify-content: space-between; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.portal-brand { display: flex; align-items: center; gap: 10px; font-size: 0.82rem; font-weight: 800; }
.portal-brand img { width: 29px; }
.portal-avatar { width: 31px; height: 31px; display: grid; place-items: center; border-radius: 50%; color: var(--cyan); background: rgba(126,231,255,0.08); font-size: 0.69rem; }
.portal-content { padding-top: 29px; }
.portal-content small { color: var(--muted); text-transform: uppercase; letter-spacing: 0.12em; }
.portal-content h3 { margin: 7px 0 22px; font-size: 1.65rem; }
.portal-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.portal-kpi { min-height: 112px; padding: 15px; border: 1px solid var(--line); border-radius: 15px; background: rgba(255,255,255,0.02); }
.portal-kpi span { display: block; color: var(--muted); font-size: 0.67rem; }
.portal-kpi strong { display: block; margin-top: 18px; font-size: 1rem; }
.portal-ticket { display: grid; grid-template-columns: auto 1fr auto; gap: 13px; align-items: center; margin-top: 20px; padding: 15px; border: 1px solid var(--line); border-radius: 15px; }
.portal-ticket-icon { width: 37px; height: 37px; display: grid; place-items: center; border-radius: 10px; color: var(--cyan); background: rgba(126,231,255,0.08); font-size: 1rem; font-weight: 800; line-height: 1; }
.portal-ticket > div > strong, .portal-ticket > div > span { display: block; }
.portal-ticket > div > strong { font-size: 0.78rem; }
.portal-ticket > div > span { color: var(--muted); font-size: 0.68rem; }
.portal-ticket em { color: var(--green); font-size: 0.67rem; font-style: normal; font-weight: 800; }
.concept-label { position: absolute; right: 28px; bottom: 26px; padding: 7px 10px; border: 1px solid rgba(255,255,255,0.12); border-radius: 999px; color: var(--muted); background: rgba(4,12,22,0.85); font-size: 0.63rem; text-transform: uppercase; letter-spacing: 0.11em; }

.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 55px; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.process-step { min-height: 280px; padding: 30px; border-right: 1px solid var(--line); background: rgba(255,255,255,0.014); }
.process-step:last-child { border-right: 0; }
.process-step .step { color: var(--cyan); font-size: 0.72rem; font-weight: 900; letter-spacing: 0.12em; }
.process-step h3 { margin: 76px 0 13px; }
.process-step p { color: var(--muted); font-size: 0.88rem; }

.location-panel { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 28px; align-items: stretch; }
.location-copy, .location-visual { min-height: 420px; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.location-copy { padding: clamp(34px, 6vw, 65px); background: linear-gradient(150deg, rgba(18,35,58,0.9), rgba(8,17,30,0.78)); }
.location-copy p { color: var(--muted-strong); max-width: 580px; }
.location-visual { position: relative; display: grid; place-items: center; background: radial-gradient(circle at center, rgba(95,141,255,0.2), transparent 55%), rgba(255,255,255,0.012); }
.orbit { position: absolute; width: 78%; aspect-ratio: 1; border: 1px solid rgba(126,231,255,0.14); border-radius: 50%; }
.orbit.two { width: 52%; }
.orbit.three { width: 28%; }
.map-core { position: relative; z-index: 2; width: 96px; height: 96px; display: grid; place-items: center; border: 1px solid rgba(126,231,255,0.3); border-radius: 28px; background: #0b1a2d; box-shadow: 0 0 55px rgba(95,141,255,0.24); }
.map-core img { width: 52px; }
.map-dot { position: absolute; width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 16px rgba(126,231,255,0.8); }
.map-dot.d1 { top: 23%; left: 25%; }
.map-dot.d2 { top: 34%; right: 19%; }
.map-dot.d3 { bottom: 22%; left: 32%; }
.map-dot.d4 { bottom: 29%; right: 26%; }

.faq { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: 80px; align-items: start; }
.accordion { border-top: 1px solid var(--line); }
.accordion-item { border-bottom: 1px solid var(--line); }
.accordion-button { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 25px 0; border: 0; color: #fff; background: none; text-align: left; cursor: pointer; }
.accordion-button strong { font-size: 1rem; }
.accordion-button span { color: var(--cyan); font-size: 1.3rem; transition: transform 180ms ease; }
.accordion-content { max-height: 0; overflow: hidden; color: var(--muted); transition: max-height 240ms ease; }
.accordion-content p { padding: 0 40px 25px 0; }
.accordion-item.open .accordion-button span { transform: rotate(45deg); }
.accordion-item.open .accordion-content { max-height: 240px; }

.cta-panel { position: relative; padding: clamp(42px, 8vw, 88px); border: 1px solid rgba(126,231,255,0.22); border-radius: var(--radius-lg); background: radial-gradient(circle at 85% 20%, rgba(126,231,255,0.15), transparent 35%), linear-gradient(135deg, #0d1d31, #0a1424 60%, #10172b); overflow: hidden; }
.cta-panel h2 { max-width: 850px; }
.cta-panel p { max-width: 630px; color: var(--muted-strong); }
.cta-panel .hero-actions { margin-bottom: 0; }
.cta-orbit { position: absolute; right: -130px; bottom: -230px; width: 520px; height: 520px; border: 1px solid rgba(126,231,255,0.12); border-radius: 50%; }

.site-footer { padding: 65px 0 30px; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 0.7fr); gap: 40px; }
.footer-brand p { max-width: 390px; margin-top: 20px; color: var(--muted); font-size: 0.86rem; }
.footer-column h3 { margin-bottom: 18px; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; }
.footer-column a { display: block; margin: 10px 0; color: var(--muted); font-size: 0.84rem; }
.footer-column a:hover { color: #fff; }
.coming-soon { margin-left: 5px; color: var(--cyan); font-size: 0.63rem; text-transform: uppercase; letter-spacing: 0.08em; }
.placeholder-link { cursor: default; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 55px; padding-top: 24px; border-top: 1px solid var(--line); color: var(--muted); font-size: 0.75rem; }

.subpage-hero { padding: 95px 0 55px; text-align: center; }
.subpage-hero h1 { max-width: 900px; margin-inline: auto; font-size: clamp(3rem, 7vw, 5.8rem); }
.subpage-hero .lead { margin-inline: auto; }
.access-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; padding-bottom: 110px; }
.access-card { min-height: 290px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(155deg, rgba(18,35,58,0.88), rgba(8,17,30,0.8)); }
.access-card.featured { border-color: rgba(126,231,255,0.32); box-shadow: 0 0 60px rgba(95,141,255,0.08); }
.access-card p { color: var(--muted); }
.access-card .button { margin-top: 28px; width: 100%; }
.secure-note { display: flex; gap: 15px; align-items: flex-start; max-width: 800px; margin: 0 auto 100px; padding: 22px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,0.018); }
.secure-note strong { display: block; margin-bottom: 4px; }
.secure-note p { margin: 0; color: var(--muted); font-size: 0.86rem; }

.booking-shell { width: min(calc(100% - 30px), 1220px); min-height: 760px; margin: 0 auto 100px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; overflow: hidden; box-shadow: var(--shadow); }
.booking-shell .rs-widget-wrapper, .booking-shell .rs-widget-container { width: 100%; height: 100%; min-height: 760px; }
.booking-shell iframe { width: 100% !important; min-height: 760px !important; border: 0 !important; }
.booking-fallback { padding: 50px; color: #0c1728; text-align: center; }

.legal { width: min(calc(100% - 40px), 800px); margin: 0 auto; padding: 90px 0 120px; }
.legal h1 { font-size: clamp(2.8rem, 7vw, 4.8rem); }
.legal h2 { margin-top: 46px; font-size: 1.6rem; }
.legal p, .legal li { color: var(--muted-strong); }

.error-page { min-height: 100vh; display: grid; place-items: center; text-align: center; }
.error-page h1 { margin: 0; font-size: clamp(6rem, 25vw, 15rem); color: transparent; -webkit-text-stroke: 1px rgba(126,231,255,0.48); }
.error-page p { color: var(--muted); }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity 600ms ease, transform 600ms ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 980px) {
  .nav-links {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 20px;
    border-bottom: 1px solid var(--line);
    background: rgba(5,11,20,0.98);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 13px 6px; }
  .menu-toggle { display: block; }
  .nav-actions .button:first-child { display: none; }
  .dashboard-grid, .section-heading, .split, .faq, .location-panel { grid-template-columns: 1fr; }
  .section-heading { gap: 20px; }
  .section-heading .lead { justify-self: start; }
  .cards, .access-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 330px; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-item:nth-child(2) { border-right: 0; }
  .proof-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .process-grid { grid-template-columns: 1fr; }
  .process-step { min-height: auto; border-right: 0; border-bottom: 1px solid var(--line); }
  .process-step:last-child { border-bottom: 0; }
  .process-step h3 { margin-top: 36px; }
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-column:last-child { grid-column: 2; }
}

@media (max-width: 760px) {
  .status-row { grid-template-columns: 1fr; gap: 9px; }
  .status-pill { justify-self: start; margin-left: 49px; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .announcement { font-size: 0.7rem; }
  .navbar { min-height: 70px; }
  .brand span small { display: none; }
  .nav-actions .button { display: none; }
  .hero { padding-top: 75px; }
  h1 { font-size: clamp(3rem, 15vw, 4.45rem); }
  .hero-stage { min-height: 420px; margin-top: 55px; }
  .dashboard-shell { padding: 10px; border-radius: 20px; transform: none; }
  .dashboard-grid { gap: 9px; }
  .dashboard-card-inner { padding: 16px; }
  .status-detail, .signal-card p, .dashboard-label { display: none; }
  .signal-ring { width: 130px; height: 130px; }
  .floating-chip { display: none; }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .proof-item:last-child { border-bottom: 0; }
  .section { padding: 85px 0; }
  .portal-kpis { grid-template-columns: 1fr; }
  .portal-kpi { min-height: auto; }
  .portal-kpi strong { margin-top: 7px; }
  .portal-ticket { grid-template-columns: auto 1fr; }
  .portal-ticket em { grid-column: 2; }
  .concept-label { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-column:last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .booking-shell { border-radius: 20px; }
}
