/* VelosNet Landing — Premium Dark / Cyan + Purple */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap");

:root {
  --bg: #080c14;
  --bg-deep: #050810;
  --bg-elevated: #0c1220;
  --surface: rgba(12, 18, 32, 0.72);
  --surface-strong: rgba(8, 12, 20, 0.92);
  --border: rgba(0, 212, 255, 0.14);
  --border-strong: rgba(107, 70, 193, 0.35);
  --text: #f0f6ff;
  --muted: #94a3b8;
  --accent: #00d4ff;
  --accent-purple: #6b46c1;
  --accent-purple-light: #a78bfa;
  --green: #34d399;
  --glow-cyan: rgba(0, 212, 255, 0.35);
  --glow-purple: rgba(107, 70, 193, 0.4);
  --radius: 16px;
  --radius-lg: 24px;
  --header-h: 72px;
  --max: 1140px;
  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg-deep);
  color-scheme: dark;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.container {
  width: min(var(--max), calc(100% - 2rem));
  margin-inline: auto;
}

/* ─── Header ─── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  border-bottom: 1px solid var(--border);
  background: rgba(8, 12, 20, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1rem;
  flex-wrap: nowrap;
  overflow: visible;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  min-width: auto;
  white-space: nowrap;
}

.brand-text {
  flex-shrink: 0;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
}

.brand-logo,
.brand img {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 20px var(--glow-cyan);
}

.nav {
  display: none;
  align-items: center;
  flex-shrink: 0;
  gap: 1.75rem;
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 500;
  white-space: nowrap;
}

.nav a:hover {
  color: var(--accent);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  background: linear-gradient(135deg, var(--accent-purple), var(--accent));
  color: #050810;
  box-shadow: 0 0 32px var(--glow-purple), 0 8px 24px rgba(0, 0, 0, 0.35);
}

.btn--primary:hover {
  box-shadow: 0 0 48px var(--glow-cyan), 0 12px 32px rgba(0, 0, 0, 0.4);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  color: var(--text);
}

.btn--ghost:hover {
  border-color: rgba(0, 212, 255, 0.45);
  background: rgba(0, 212, 255, 0.06);
}

.btn--sm {
  padding: 0.55rem 1.1rem;
  font-size: 0.85rem;
}

.btn--lg {
  padding: 0.85rem 1.75rem;
  font-size: 0.95rem;
  min-width: 11rem;
}

.btn--block {
  width: 100%;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

.mobile-nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  top: var(--header-h);
  background: rgba(0, 0, 0, 0.6);
  z-index: 998;
}

.mobile-nav-backdrop.is-open {
  display: block;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem 1.5rem 1.5rem;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: var(--surface-strong);
  border-top: 1px solid var(--border);
  z-index: 999;
}

.mobile-nav.is-open {
  display: flex;
}

@media (max-width: 768px) {
  .header-inner > .btn--sm {
    display: none;
  }

  .nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }
}

@media (min-width: 769px) {
  .nav {
    display: flex;
  }

  .menu-toggle {
    display: none !important;
  }

  .mobile-nav,
  .mobile-nav-backdrop {
    display: none !important;
  }
}

/* ─── Hero ─── */
.hero {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  padding-top: var(--header-h);
  box-sizing: border-box;
  background: var(--bg);
  overflow: hidden;
  isolation: isolate;
}

.hero-stage {
  position: relative;
  z-index: 2;
  flex: 0 0 50%;
  width: 50%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  min-height: calc(100vh - var(--header-h));
  min-height: calc(100dvh - var(--header-h));
  padding: 0 60px 0 80px;
  box-sizing: border-box;
  background: transparent;
  border: none;
  outline: none;
  overflow: visible;
}

.hero-content {
  width: 100%;
  max-width: none;
  min-width: 0;
  margin: 0;
  padding: 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: transparent;
  border: none;
  outline: none;
  box-shadow: none;
  overflow: visible;
}

.hero-media {
  position: relative;
  flex: 0 0 50%;
  width: 50%;
  min-height: calc(100vh - var(--header-h));
  min-height: calc(100dvh - var(--header-h));
  z-index: 1;
  background: rgba(5, 8, 16, 0.45);
  overflow: hidden;
}

#heroNetworkCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.55rem;
  margin: 0 0 1.25rem;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 212, 255, 0.22);
  background: rgba(8, 12, 20, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.hero-eyebrow-dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px var(--green);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

.hero h1 {
  margin: 0;
  width: 100%;
  max-width: 100%;
  font-size: clamp(2.8rem, 4vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-weight: 900;
  color: #fff;
  white-space: normal;
  word-break: normal;
  overflow-wrap: break-word;
  text-wrap: balance;
  text-shadow: 0 2px 24px rgba(8, 12, 20, 0.65);
}

.hero-lead {
  margin: 20px 0 0;
  max-width: 100%;
  font-size: 1.2rem;
  line-height: 1.55;
  color: #c5d4ea;
  text-wrap: balance;
  text-shadow: 0 2px 24px rgba(8, 12, 20, 0.85);
}

.hero-lead-tech {
  margin: 16px 0 0;
  max-width: 100%;
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.5);
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0.875rem;
  margin-top: 36px;
  margin-bottom: 0;
}

.hero-actions .btn {
  padding: 16px 36px;
  font-size: 1rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  margin-top: 28px;
  margin-bottom: 0;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(8, 12, 20, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero-trust-item {
  font-size: 0.9rem;
  font-weight: 600;
  color: #dbe7f8;
  white-space: nowrap;
}

.hero-trust-sep {
  color: rgba(148, 163, 184, 0.45);
  font-weight: 700;
  user-select: none;
}

.hero-locations {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0.625rem;
}

.hero-location {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.05rem;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text);
  border: 1px solid rgba(0, 212, 255, 0.22);
  background: rgba(8, 12, 20, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.hero-location:hover {
  border-color: rgba(0, 212, 255, 0.4);
  box-shadow:
    0 6px 28px rgba(0, 212, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.hero-location-flag {
  font-size: 1.15rem;
  line-height: 1;
}

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    min-height: auto;
    overflow-x: hidden;
  }

  .hero-media {
    order: -1;
    flex: 0 0 280px;
    width: 100%;
    height: 280px;
    min-height: 280px;
  }

  .hero-stage {
    order: 0;
    flex: 1 1 auto;
    width: 100%;
    min-height: auto;
    padding: 24px;
    justify-content: flex-start;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-lead {
    font-size: 1.05rem;
  }

  .hero-lead-tech {
    font-size: 0.85rem;
  }

  .hero-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: none;
  }

  .hero-trust {
    width: 100%;
    border-radius: var(--radius);
    padding: 0.75rem 1rem;
    gap: 12px;
  }

  .section {
    padding-block: 3rem;
  }

  .section-header h2 {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }

  .cards-4,
  .pricing-grid,
  .steps {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 480px) {
  .hero-stage {
    padding: 16px;
  }

  .hero h1 {
    font-size: 1.9rem;
  }

  .hero-lead {
    font-size: 0.95rem;
  }

  .hero-lead-tech {
    font-size: 0.8rem;
  }

  .hero-trust {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 12px;
    align-items: center;
  }

  .hero-trust-sep {
    display: none;
  }

  .container {
    width: calc(100% - 2rem);
  }

  .section {
    padding-block: 2.5rem;
  }
}

/* ─── Server status ─── */
.server-status {
  position: relative;
  z-index: 3;
  padding: 0 0 4rem;
  margin-top: 0;
}

.section-label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 1rem;
}

.status-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .status-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.status-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1.1rem 1.25rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  backdrop-filter: blur(16px);
  transition: border-color 0.25s, box-shadow 0.25s;
}

.status-card:hover {
  border-color: rgba(0, 212, 255, 0.35);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35), 0 0 24px rgba(0, 212, 255, 0.06);
}

.status-info {
  flex: 1;
  min-width: 0;
}

.status-name {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 700;
  font-size: 0.95rem;
}

.status-flag {
  width: 28px;
  height: 19px;
  border-radius: 3px;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
}

.status-name-text {
  font-family: var(--font);
}

.status-ping {
  display: block;
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.15rem;
}

.status-dot-wrap {
  position: relative;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #64748b;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.status-dot.online {
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
}

.status-dot.online::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(52, 211, 153, 0.45);
  animation: ping-ring 2s ease-out infinite;
}

@keyframes ping-ring {
  0% { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(1.8); opacity: 0; }
}

.status-dot.offline {
  background: #ef4444;
}

/* ─── Sections ─── */
.section {
  padding: 5rem 0;
  position: relative;
}

.section--glow {
  background:
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(107, 70, 193, 0.08), transparent),
    linear-gradient(180deg, transparent, rgba(8, 12, 20, 0.5));
}

.section-header {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 3rem;
}

.section-header h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.section-header p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.cards-4 {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .cards-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .cards-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.glass-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  backdrop-filter: blur(16px);
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
  opacity: 0;
  transform: translateY(20px);
}

.glass-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.glass-card:hover {
  border-color: rgba(0, 212, 255, 0.35);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(0, 212, 255, 0.06);
  transform: translateY(-4px);
}

.glass-card .icon {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.glass-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 700;
}

.glass-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

/* Protocols */
.protocols-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .protocols-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.protocol-card {
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  backdrop-filter: blur(16px);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s, transform 0.6s, border-color 0.25s;
}

.protocol-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.protocol-card:hover {
  border-color: var(--border-strong);
}

.protocol-head {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.protocol-icon {
  font-size: 1.75rem;
}

.protocol-title {
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0 0 0.35rem;
}

.protocol-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.protocol-tag--cyan {
  background: rgba(0, 212, 255, 0.15);
  color: var(--accent);
}

.protocol-tag--green {
  background: rgba(52, 211, 153, 0.15);
  color: var(--green);
}

.protocol-tag--purple {
  background: rgba(107, 70, 193, 0.2);
  color: var(--accent-purple-light);
}

.protocol-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

/* Pricing */
.pricing-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  align-items: stretch;
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.price-card {
  position: relative;
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  background: rgba(12, 18, 32, 0.55);
  border: 1px solid var(--border);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s, transform 0.6s, border-color 0.25s, box-shadow 0.25s;
}

.price-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.price-card--featured {
  border-color: rgba(0, 212, 255, 0.45);
  background: linear-gradient(165deg, rgba(107, 70, 193, 0.18) 0%, rgba(12, 18, 32, 0.75) 45%);
  box-shadow: 0 0 60px rgba(107, 70, 193, 0.15), 0 0 40px rgba(0, 212, 255, 0.08);
}

@media (min-width: 768px) {
  .price-card--featured {
    transform: scale(1.04);
  }
  .price-card--featured.is-visible {
    transform: scale(1.04);
  }
}

.price-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.35rem 1rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  background: linear-gradient(135deg, #ffd700, #f59e0b);
  color: #050810;
  white-space: nowrap;
  letter-spacing: 0.04em;
}

.price-name {
  font-size: 1.25rem;
  font-weight: 800;
  margin: 0 0 0.5rem;
}

.price-amount {
  font-size: 2.35rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin: 0 0 1rem;
}

.price-amount span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--muted);
}

.price-features {
  flex: 1;
  margin: 0 0 1.5rem;
  padding: 0;
}

.price-features li {
  padding: 0.45rem 0;
  font-size: 0.9rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", var(--font);
}

.price-features li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 800;
}

.discounts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.discount-pill {
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  color: var(--muted);
}

.discount-pill strong {
  color: var(--accent);
}

/* Steps */
.steps {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  position: relative;
}

@media (min-width: 768px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  .steps::before {
    content: "";
    position: absolute;
    top: 2.5rem;
    left: 12%;
    right: 12%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-purple), var(--accent), transparent);
    opacity: 0.5;
  }
}

.step {
  text-align: center;
  padding: 1.5rem 1rem;
  opacity: 0;
  transform: translateY(20px);
}

.step.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s, transform 0.5s;
}

.step-num {
  width: 3.25rem;
  height: 3.25rem;
  margin: 0 auto 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  background: linear-gradient(135deg, var(--accent-purple), var(--accent));
  color: #050810;
  box-shadow: 0 0 28px var(--glow-purple);
}

.step h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  font-weight: 700;
}

.step p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

/* Cabinet CTA */
.cabinet {
  display: grid;
  gap: 2.5rem;
  align-items: center;
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(107, 70, 193, 0.12), rgba(0, 212, 255, 0.06));
  border: 1px solid var(--border-strong);
  backdrop-filter: blur(20px);
  opacity: 0;
  transform: translateY(20px);
}

.cabinet.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s, transform 0.6s;
}

@media (min-width: 900px) {
  .cabinet {
    grid-template-columns: 1fr 1.1fr;
  }
}

.cabinet-copy h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.cabinet-copy p {
  color: var(--muted);
  margin: 0 0 1.5rem;
}

.mockup {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55);
}

.mockup-bar {
  display: flex;
  gap: 6px;
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid var(--border);
}

.mockup-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.mockup-body {
  padding: 1.25rem;
}

.mockup-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  margin-bottom: 0.5rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  font-size: 0.85rem;
}

.mockup-row strong {
  color: var(--accent);
}

.mockup-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
}

/* Footer */
.footer {
  padding: 3rem 0 2rem;
  border-top: 1px solid var(--border);
  background: var(--bg-deep);
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr auto;
    align-items: start;
  }
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
}

.footer-brand img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
}

.footer-copy {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.footer-links a {
  color: var(--muted);
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-legal {
  grid-column: 1 / -1;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center;
}

.footer-contacts {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
  font-size: 0.72rem;
  color: var(--muted);
  line-height: 1.6;
}

.footer-contacts a {
  color: var(--muted);
}

.footer-contacts a:hover {
  color: var(--accent);
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .btn:hover,
  .glass-card:hover,
  .status-card:hover {
    transform: none;
  }
  .hero-eyebrow-dot,
  .status-dot.online::before {
    animation: none;
  }
}

/* ─── Legal pages (privacy, offer) ─── */
.site-header,
main,
.site-footer {
  position: relative;
  z-index: 1;
}

.header-nav {
  display: none;
  gap: 1.25rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.header-nav a:hover {
  color: var(--accent);
}

.header-nav--legal {
  display: flex;
}

.legal-page {
  padding: 2.5rem 0 4rem;
}

.legal-content {
  max-width: 760px;
}

.legal-meta {
  margin: 0 0 0.75rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.legal-content h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
}

.legal-lead {
  margin: 0 0 2rem;
  color: #b8cce8;
  font-size: 1.05rem;
}

.legal-section {
  margin-bottom: 2rem;
  padding: 1.35rem 1.4rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.legal-section h2 {
  margin: 0 0 0.85rem;
  font-size: 1.15rem;
  color: var(--accent);
}

.legal-section p {
  margin: 0 0 0.85rem;
  color: var(--muted);
}

.legal-section p:last-child {
  margin-bottom: 0;
}

.legal-section ul,
.legal-section ol {
  margin: 0 0 0.85rem;
  padding-left: 1.25rem;
  color: var(--muted);
}

.legal-section li + li {
  margin-top: 0.35rem;
}

.legal-section a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-section strong {
  color: var(--text);
}

.site-footer {
  border-top: 1px solid var(--border);
  background: rgba(5, 8, 16, 0.95);
  padding: 2rem 0 2.5rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-nav a:hover {
  color: var(--accent);
}

.footer-requisites {
  margin: 0.75rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.footer-requisites a {
  color: var(--accent);
}

@media (min-width: 900px) {
  .header-nav {
    display: flex;
  }
  .footer-inner {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
}
