* { box-sizing: border-box; }

:root {
  --bg: #01040a;
  --bg-2: #030816;
  --panel: rgba(4, 8, 15, 0.70);
  --panel-strong: rgba(4, 8, 15, 0.84);
  --line: rgba(204, 225, 255, 0.18);
  --line-strong: rgba(147, 205, 255, 0.48);
  --text: #f5f8ff;
  --muted: #a8b2c7;
  --blue: #88ccff;
  --blue-2: #7b92ff;
  --gold: #f1c67b;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
}

html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #01040a;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
.page { min-height: 100vh; position: relative; background: #01040a; }
.page::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100vh - 210px);
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(180deg,
      rgba(1,4,10,0.00) 0%,
      rgba(1,4,10,0.16) 8%,
      rgba(1,4,10,0.42) 18%,
      rgba(1,4,10,0.68) 30%,
      rgba(1,4,10,0.82) 45%,
      rgba(1,4,10,0.92) 68%,
      rgba(1,4,10,0.98) 100%),
    radial-gradient(ellipse at 20% 12%, rgba(76, 129, 255, 0.10), transparent 30%),
    radial-gradient(ellipse at 82% 28%, rgba(80, 165, 255, 0.08), transparent 30%),
    url("../img/deep-space-clean-sharp.jpg");
  background-repeat: no-repeat, no-repeat, no-repeat, repeat-y;
  background-size: auto, auto, auto, 100% auto;
  background-position: top center, 0 0, 100% 240px, center top;
  opacity: 1;
}

.hero,
.space-section { position: relative; overflow: hidden; isolation: isolate; }

.hero {
  min-height: 100vh;
  padding: 16px;
  position: relative;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -5;
  background-image: url("../img/repn-space-bg-1920.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transform: scale(1.01);
}
.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: -4;
  background:
    linear-gradient(90deg, rgba(1,4,10,0.48) 0%, rgba(1,4,10,0.10) 38%, rgba(1,4,10,0.14) 100%),
    linear-gradient(180deg,
      rgba(1,4,10,0.26) 0%,
      rgba(1,4,10,0.05) 28%,
      rgba(1,4,10,0.10) 68%,
      rgba(1,4,10,0.36) 82%,
      rgba(1,4,10,0.78) 100%);
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border: 1px solid rgba(220,240,255,0.12);
}
.hero::before { inset: 16px; z-index: -1; }
.hero::after { inset: 104px 16px 16px; z-index: -1; border-color: rgba(220,240,255,0.06); }

.stars, .nebula { display: none !important; }
.topbar {
  position: relative;
  z-index: 5;
  height: 82px;
  display: grid;
  grid-template-columns: 290px minmax(420px, 1fr) 360px 82px;
  align-items: center;
  border: 1px solid rgba(220,240,255,0.10);
  background: rgba(1,4,10,0.48);
  backdrop-filter: blur(14px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding-left: 36px;
  font-size: 29px;
  font-weight: 700;
  letter-spacing: -0.04em;
}
.brand-icon {
  color: var(--blue);
  text-shadow: 0 0 20px rgba(136,204,255,.8);
  font-size: 32px;
  line-height: 1;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.4vw, 44px);
  font-size: 14px;
  font-weight: 700;
}
.nav a {
  color: rgba(245,248,255,.88);
  transition: color .2s ease, text-shadow .2s ease;
}
.nav a:hover { color: #fff; text-shadow: 0 0 16px rgba(136,204,255,.5); }
.status-panel {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-right: 18px;
  color: rgba(245,248,255,.8);
  font-size: 14px;
  white-space: nowrap;
}
.status-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 20px rgba(136,204,255,.9);
}
.status-panel strong { color: var(--text); font-weight: 600; }
.ping-pill {
  height: 38px;
  min-width: 102px;
  margin-left: 8px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(4,8,15,.76);
  color: var(--text);
  cursor: pointer;
  font: inherit;
  transition: .22s ease;
}
.ping-pill:hover { border-color: var(--line-strong); box-shadow: 0 0 18px rgba(136,204,255,.14); }
.menu-dots {
  height: 82px;
  border: 0;
  border-left: 1px solid rgba(220,240,255,0.08);
  background: rgba(1,4,10,.15);
  display: grid;
  grid-template-columns: repeat(3, 5px);
  grid-auto-rows: 5px;
  gap: 8px;
  justify-content: center;
  align-content: center;
  cursor: pointer;
}
.menu-dots span {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--text); box-shadow: 0 0 10px rgba(255,255,255,.4);
}

.hero-frame {
  position: relative;
  min-height: calc(100vh - 114px);
  display: flex;
  align-items: center;
  padding-bottom: 88px;
}
.hero-content {
  width: min(940px, 63vw);
  margin-left: clamp(36px, 6vw, 108px);
  margin-top: 34px;
}
.eyebrow {
  margin-bottom: 16px;
  color: rgba(245,248,255,.92);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 15px;
  font-weight: 600;
}
h1 {
  margin: 0;
  font-family: Rajdhani, Inter, sans-serif;
  font-size: clamp(58px, 5.4vw, 100px);
  line-height: .96;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-shadow: 0 0 18px rgba(136,204,255,.22), 0 6px 24px rgba(0,0,0,.72);
}
.lead {
  margin: 20px 0 28px;
  color: rgba(245,248,255,.82);
  font-size: clamp(16px, 1.25vw, 22px);
  line-height: 1.5;
  text-shadow: 0 3px 12px rgba(0,0,0,.65);
}
.hero-actions {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  width: min(980px, 100%);
  margin-bottom: 24px;
}
.cyber-btn {
  min-width: 0;
  height: 60px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid rgba(220,240,255,.28);
  border-radius: 8px;
  background: rgba(3,8,16,.56);
  backdrop-filter: blur(10px);
  color: var(--text);
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  transition: .22s ease;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.02);
}
.cyber-btn.primary,
.cyber-btn:hover {
  border-color: rgba(136,204,255,.82);
  box-shadow: 0 0 24px rgba(136,204,255,.18), inset 0 0 20px rgba(136,204,255,.06);
  transform: translateY(-2px);
}
.btn-icon { color: var(--blue); font-size: 21px; }

.live-strip {
  width: min(1240px, 100%);
  min-height: 122px;
  display: grid;
  grid-template-columns: 1.2fr 1fr .7fr;
  border: 1px solid rgba(220,240,255,.18);
  border-radius: 10px;
  background: rgba(3,8,16,.54);
  backdrop-filter: blur(12px);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.live-cell {
  padding: 22px 28px;
  border-right: 1px solid rgba(220,240,255,.10);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.live-cell:last-child { border-right: 0; }
.live-cell small {
  color: var(--muted);
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 14px;
}
.live-cell strong {
  font-family: Rajdhani, Inter, sans-serif;
  font-size: clamp(24px, 1.7vw, 34px);
  line-height: 1.04;
  font-weight: 700;
}
.scroll-link {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(245,248,255,.78);
  text-transform: uppercase;
  letter-spacing: .24em;
  font-size: 13px;
}
.scroll-link span {
  width: 22px; height: 22px;
  border-right: 2px solid #fff; border-bottom: 2px solid #fff;
  transform: rotate(45deg);
  animation: arrowBounce 1.8s ease-in-out infinite;
}

.space-section {
  padding: 92px 24px;
  background: transparent;
}
.space-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(180deg,
      rgba(1,4,10,0.32) 0%,
      rgba(1,4,10,0.24) 14%,
      rgba(1,4,10,0.30) 44%,
      rgba(1,4,10,0.46) 100%),
    radial-gradient(ellipse at 15% 25%, rgba(60, 112, 234, 0.030), transparent 34%),
    radial-gradient(ellipse at 75% 18%, rgba(82, 161, 255, 0.028), transparent 34%);
}
.section-shell {
  position: relative;
  z-index: 1;
  width: min(1480px, 100%);
  margin: 0 auto;
  padding: 46px;
  border: 1px solid rgba(220,240,255,.10);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(2,6,13,.84), rgba(2,6,13,.76));
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}
.section-head { margin-bottom: 28px; }
.section-head span {
  display: inline-block; margin-bottom: 12px; color: var(--blue);
  text-transform: uppercase; letter-spacing: .22em; font-size: 14px; font-weight: 800;
}
h2 {
  margin: 0 0 14px;
  font-family: Rajdhani, Inter, sans-serif;
  font-size: clamp(38px, 4vw, 66px);
  line-height: .98;
  text-transform: uppercase;
  letter-spacing: .06em;
}
p { color: var(--muted); line-height: 1.7; font-size: 17px; }
.tariff-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.tariff-card, .feature-box, .location-box, .faq-list details {
  border: 1px solid rgba(220,240,255,.14);
  border-radius: 10px;
  background: rgba(255,255,255,.018);
  padding: 24px;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.tariff-card:hover, .feature-box:hover, .location-box:hover, .faq-list details:hover {
  transform: translateY(-4px);
  border-color: rgba(136,204,255,.28);
  box-shadow: 0 16px 44px rgba(0,0,0,.22), 0 0 24px rgba(136,204,255,.06);
}
.tariff-card { min-height: 286px; display: flex; flex-direction: column; gap: 14px; }
.tariff-card.hit { border-color: rgba(241,198,123,.5); box-shadow: 0 0 44px rgba(241,198,123,.08); }
.tag { color: var(--blue); text-transform: uppercase; letter-spacing: .18em; font-size: 12px; font-weight: 800; }
.hit .tag { color: var(--gold); }
.tariff-card h3 { margin: 0; font-family: Rajdhani, Inter, sans-serif; font-size: 38px; text-transform: uppercase; }
.price { font-family: Rajdhani, Inter, sans-serif; font-size: 46px; line-height: 1; }
.tariff-card a, .footer a {
  margin-top: auto; min-height: 48px; padding: 0 18px; border: 1px solid rgba(220,240,255,.18); border-radius: 6px;
  display: inline-flex; align-items: center; justify-content: center; background: rgba(255,255,255,.03); font-weight: 800;
  transition: .2s ease;
}
.tariff-card a:hover, .footer a:hover {
  border-color: var(--line-strong); box-shadow: 0 0 22px rgba(136,204,255,.12); transform: translateY(-2px);
}
.split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 32px; }
.compact { margin-bottom: 0; }
.feature-grid, .location-grid, .faq-list { display: grid; gap: 16px; }
.feature-grid, .location-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.location-box strong { display: block; margin-bottom: 8px; font-size: 24px; }
details summary { cursor: pointer; font-weight: 800; }
details p { margin-bottom: 0; }
.footer {
  position: relative;
  z-index: 1;
  padding: 30px 24px 70px;
  display: flex; justify-content: center; gap: 28px; flex-wrap: wrap;
  color: var(--muted);
  background: transparent;
}

@keyframes driftSlow {
  from { transform: translate3d(0,0,0) scale(1); }
  to { transform: translate3d(-6%, -4%, 0) scale(1.06); }
}
@keyframes driftReverse {
  from { transform: translate3d(0,0,0) scale(1); }
  to { transform: translate3d(6%, 4%, 0) scale(1.05); }
}
@keyframes pulseFloat {
  from { transform: translateY(0) scale(1); opacity: .18; }
  to { transform: translateY(-1.2%) scale(1.03); opacity: .3; }
}

@keyframes arrowBounce {
  0%, 100% { transform: rotate(45deg) translate(0, 0); }
  50% { transform: rotate(45deg) translate(4px, 4px); }
}

@media (max-width: 1480px) {
  .topbar { grid-template-columns: 270px minmax(380px,1fr) 320px 72px; }
  .hero-content { width: min(860px, 66vw); }
  .hero-actions { width: min(860px, 100%); }
}
@media (max-width: 1180px) {
  .topbar { grid-template-columns: 240px 1fr 280px 72px; }
  .brand { padding-left: 24px; font-size: 26px; }
  .nav { gap: 22px; font-size: 13px; }
  .hero-frame { padding-bottom: 78px; }
  .hero-content { width: min(760px, 70vw); margin-left: 44px; margin-top: 42px; }
  .hero-actions { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tariff-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .split { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .hero { padding: 0; min-height: 100svh; }
  .hero-bg { background-position: 66% center; }
  .hero::before, .hero::after { display: none; }
  .topbar {
    height: auto; min-height: 72px; grid-template-columns: 1fr 68px;
    border-left: 0; border-right: 0;
  }
  .brand { padding: 18px; font-size: 24px; }
  .nav, .status-panel { display: none; }
  .menu-dots { height: 72px; }
  .hero-frame {
    min-height: calc(100svh - 72px);
    align-items: flex-end;
    padding: 0 14px 80px;
  }
  .hero-content {
    width: 100%; margin: 0;
    padding: 18px;
    border: 1px solid rgba(220,240,255,.12);
    border-radius: 10px;
    background: linear-gradient(90deg, rgba(1,4,10,.78), rgba(1,4,10,.42));
    backdrop-filter: blur(8px);
  }
  .eyebrow { margin-bottom: 12px; font-size: 12px; }
  h1 { font-size: clamp(42px, 12.4vw, 64px); letter-spacing: .05em; }
  .lead { margin: 16px 0 18px; font-size: 15px; }
  .hero-actions { grid-template-columns: 1fr; gap: 10px; margin-bottom: 14px; }
  .cyber-btn { width: 100%; height: 54px; font-size: 15px; }
  .live-strip { grid-template-columns: 1fr; min-height: auto; }
  .live-cell {
    min-height: 72px;
    border-right: 0; border-bottom: 1px solid rgba(220,240,255,.12);
    padding: 18px 20px;
  }
  .live-cell:last-child { border-bottom: 0; }
  .scroll-link { bottom: 16px; font-size: 12px; }
  .space-section { padding: 50px 12px; }
  .section-shell { padding: 24px; }
  .tariff-grid, .feature-grid, .location-grid { grid-template-columns: 1fr; }
}


.hero-fade-bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 340px;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(180deg,
    rgba(1,4,10,0.00) 0%,
    rgba(1,4,10,0.18) 24%,
    rgba(1,4,10,0.48) 46%,
    rgba(1,4,10,0.82) 72%,
    rgba(1,4,10,0.98) 100%);
}


.hero-bottom-shadow {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: -38px;
  height: 112px;
  z-index: 3;
  pointer-events: none;
}
.hero-bottom-shadow::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 0 0 28px 28px;
  background:
    linear-gradient(180deg,
      rgba(0,0,0,0.00) 0%,
      rgba(1,4,10,0.16) 16%,
      rgba(1,4,10,0.44) 38%,
      rgba(1,4,10,0.78) 68%,
      rgba(1,4,10,0.96) 100%);
  box-shadow:
    0 12px 24px rgba(0,0,0,0.34),
    0 28px 60px rgba(1,4,10,0.88),
    0 42px 96px rgba(1,4,10,0.58);
  filter: blur(3px);
}
.hero-bottom-shadow::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg,
    rgba(220,240,255,0.00) 0%,
    rgba(220,240,255,0.10) 12%,
    rgba(220,240,255,0.14) 50%,
    rgba(220,240,255,0.10) 88%,
    rgba(220,240,255,0.00) 100%);
}
