:root {
  color-scheme: dark;
  --bg: #07050f;
  --bg-2: #11091f;
  --surface: rgba(22, 16, 39, .86);
  --surface-2: rgba(255, 255, 255, .055);
  --line: rgba(180, 142, 255, .20);
  --text: #fbf8ff;
  --muted: #bfb4d8;
  --purple: #7c3cff;
  --pink: #d946ef;
  --blue: #38bdf8;
  --green: #36f5ad;
  --shadow: 0 28px 80px rgba(0, 0, 0, .42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    linear-gradient(135deg, rgba(124, 60, 255, .28), rgba(217, 70, 239, .12) 34%, transparent 62%),
    linear-gradient(180deg, var(--bg-2), var(--bg) 48%, #05040a);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Tahoma, sans-serif;
  line-height: 1.8;
  overflow-x: hidden;
}

a {
  color: inherit;
}

.site-bg,
.bg-grid,
.signal-line {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.site-bg {
  z-index: 0;
  overflow: hidden;
}

.bg-grid {
  opacity: .24;
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(180deg, #000, transparent 78%);
  animation: gridMove 20s linear infinite;
}

.signal-line {
  width: 46vw;
  height: 1px;
  top: 22vh;
  right: -14vw;
  background: linear-gradient(90deg, transparent, rgba(56, 189, 248, .52), transparent);
  transform: rotate(-18deg);
  animation: signalSweep 6s ease-in-out infinite;
}

.signal-two {
  top: 74vh;
  right: auto;
  left: -18vw;
  background: linear-gradient(90deg, transparent, rgba(217, 70, 239, .42), transparent);
  transform: rotate(16deg);
  animation-delay: -2.5s;
}

.topbar {
  width: min(1180px, calc(100% - 28px));
  margin: 18px auto 0;
  padding: 10px 12px;
  position: sticky;
  top: 12px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid var(--line);
  background: rgba(9, 6, 22, .74);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 55px rgba(0, 0, 0, .26);
  border-radius: 8px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 900;
  direction: ltr;
}

.brand img,
.footer img {
  width: 38px;
  height: 38px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.18);
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-size: 14px;
}

.nav a,
.nav-cta,
.primary-action,
.secondary-action,
.plan a {
  text-decoration: none;
}

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

.nav-cta,
.primary-action,
.secondary-action,
.plan a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  border-radius: 8px;
  padding: 9px 15px;
  border: 1px solid rgba(255,255,255,.16);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.nav-cta,
.primary-action,
.plan a {
  color: #fff;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  box-shadow: 0 16px 34px rgba(124, 60, 255, .28);
}

.secondary-action {
  color: #f2eaff;
  background: rgba(255,255,255,.07);
}

.primary-action:hover,
.secondary-action:hover,
.nav-cta:hover,
.plan a:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 48px rgba(124, 60, 255, .38);
  border-color: rgba(255,255,255,.30);
}

.primary-action svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

main {
  width: min(1180px, calc(100% - 28px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero {
  min-height: calc(100vh - 76px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, .92fr);
  align-items: center;
  gap: 22px;
  padding: 54px 0 44px;
}

.hero-copy {
  max-width: 690px;
}

.eyebrow,
.section-kicker,
.section-head span {
  display: inline-flex;
  color: #ddceff;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 13px;
}

h1,
h2 {
  letter-spacing: 0;
  line-height: 1.24;
  margin: 0;
}

h1 {
  font-size: clamp(46px, 7vw, 88px);
  max-width: 760px;
  margin-top: 18px;
}

h2 {
  font-size: clamp(30px, 4vw, 52px);
}

.hero-copy p,
.split p,
.feature-card p,
details p,
.footer p {
  color: var(--muted);
}

.hero-copy p {
  margin: 18px 0 0;
  font-size: 19px;
  max-width: 650px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 32px;
}

.hero-stats div,
.plan,
.feature-card,
.free-box,
details {
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
  border-radius: 8px;
  backdrop-filter: blur(18px);
}

.hero-stats div {
  padding: 16px;
}

.hero-stats strong {
  display: block;
  font-size: 22px;
}

.hero-stats span {
  color: var(--muted);
  font-size: 13px;
}

.hero-visual {
  min-height: 520px;
  display: grid;
  place-items: center;
}

.globe-card {
  width: min(620px, 100%);
  aspect-ratio: 1.16;
  position: relative;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.10);
  background:
    linear-gradient(145deg, rgba(124, 60, 255, .16), rgba(255, 255, 255, .04)),
    rgba(255,255,255,.035);
  box-shadow: 0 34px 95px rgba(0,0,0,.38);
  border-radius: 8px;
  overflow: hidden;
}

.orbital {
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  transform: rotate(-18deg);
  animation: orbit 9s linear infinite;
}

.orbital-two {
  inset: 20%;
  animation-duration: 13s;
  animation-direction: reverse;
}

.earth {
  width: 112%;
  max-width: none;
  filter: drop-shadow(0 24px 80px rgba(124, 60, 255, .25));
  animation: globeFloat 5s ease-in-out infinite;
}

.earth pattern circle {
  fill: rgba(236, 227, 255, .48);
}

.earth-core {
  fill: rgba(19, 13, 36, .40);
  stroke: rgba(217, 70, 239, .28);
  stroke-width: 1.5;
}

.dot-field {
  opacity: .72;
  animation: globeDrift 10s ease-in-out infinite;
  transform-origin: 380px 205px;
}

.land {
  fill: rgba(124, 60, 255, .16);
  stroke: rgba(255,255,255,.08);
  stroke-width: 1;
}

.route-bg,
.route-main {
  fill: none;
  stroke-linecap: round;
}

.route-bg {
  stroke: rgba(255,255,255,.20);
  stroke-width: 16;
}

.route-main {
  stroke: #b794ff;
  stroke-width: 4.5;
  stroke-dasharray: 14 10;
  animation: routeFlow 1.2s linear infinite;
  filter: drop-shadow(0 0 11px rgba(124, 60, 255, .95));
}

.node {
  fill: var(--green);
  stroke: rgba(255,255,255,.82);
  stroke-width: 3.5;
  animation: nodePulse 2.1s ease-in-out infinite;
}

.germany {
  animation-delay: .5s;
}

.ring {
  fill: none;
  stroke: var(--green);
  stroke-width: 3;
  transform-origin: center;
  animation: ringPulse 2.1s ease-in-out infinite;
}

.germany-ring {
  animation-delay: .5s;
}

.packet {
  fill: #fff;
  filter: drop-shadow(0 0 12px rgba(255,255,255,.95));
}

.packet-two {
  fill: var(--blue);
}

.map-label {
  fill: #fff7ff;
  font: 800 18px -apple-system, BlinkMacSystemFont, "Segoe UI", Tahoma, sans-serif;
  paint-order: stroke;
  stroke: rgba(7, 5, 15, .76);
  stroke-width: 4;
}

.connection-note {
  position: absolute;
  bottom: 22px;
  color: rgba(251,248,255,.82);
  background: rgba(8, 6, 18, .48);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  padding: 7px 14px;
  backdrop-filter: blur(14px);
}

.section {
  padding: 78px 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 24px;
}

.section-head h2 {
  margin-top: 14px;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.plan {
  min-height: 186px;
  padding: 22px;
  display: grid;
  align-content: space-between;
  gap: 18px;
}

.plan span {
  color: #e7ddff;
  font-size: 20px;
  font-weight: 850;
}

.plan strong {
  font-size: 26px;
}

.plan.featured {
  background:
    linear-gradient(145deg, rgba(124, 60, 255, .32), rgba(217, 70, 239, .12)),
    var(--surface);
}

.split {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 22px;
  align-items: center;
}

.split h2 {
  margin-top: 12px;
}

.free-box {
  padding: 24px;
  display: grid;
  gap: 12px;
}

.gift-icon {
  font-size: 44px;
}

.free-box strong {
  font-size: 31px;
}

.compact {
  width: fit-content;
}

.feature-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.feature-card {
  padding: 22px;
}

.feature-card span {
  font-size: 22px;
  font-weight: 850;
}

.faq {
  max-width: 860px;
  margin: 0 auto;
}

details {
  padding: 18px 20px;
  margin-top: 12px;
}

summary {
  cursor: pointer;
  font-size: 19px;
  font-weight: 850;
}

.footer {
  width: min(1180px, calc(100% - 28px));
  margin: 0 auto 26px;
  padding: 24px;
  position: relative;
  z-index: 1;
  border: 1px solid var(--line);
  background: rgba(9, 6, 22, .72);
  border-radius: 8px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px 24px;
  align-items: center;
}

.footer div,
.footer nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer p {
  margin: 0;
}

.footer nav {
  grid-row: span 2;
}

.footer nav a {
  color: #e7ddff;
  text-decoration: none;
}

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

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

@keyframes gridMove {
  to { background-position: 54px 54px, 54px 54px; }
}

@keyframes signalSweep {
  0%, 100% { opacity: .12; transform: translateX(-18px) rotate(-18deg); }
  50% { opacity: .55; transform: translateX(28px) rotate(-18deg); }
}

@keyframes globeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

@keyframes globeDrift {
  0%, 100% { transform: translateX(-8px) rotate(-1deg); }
  50% { transform: translateX(10px) rotate(1deg); }
}

@keyframes routeFlow {
  to { stroke-dashoffset: -24; }
}

@keyframes nodePulse {
  0%, 100% { opacity: .92; }
  50% { opacity: 1; }
}

@keyframes ringPulse {
  0% { opacity: .78; transform: scale(.72); }
  72%, 100% { opacity: 0; transform: scale(1.58); }
}

@keyframes orbit {
  to { transform: rotate(342deg); }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}

@media (max-width: 920px) {
  .nav {
    display: none;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 42px;
  }

  .hero-visual {
    min-height: 420px;
  }

  .plans-grid,
  .feature-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .topbar {
    width: calc(100% - 20px);
    top: 8px;
  }

  .brand span {
    display: none;
  }

  main,
  .footer {
    width: calc(100% - 20px);
  }

  h1 {
    font-size: 42px;
  }

  .hero-copy p {
    font-size: 16px;
  }

  .hero-actions,
  .primary-action,
  .secondary-action {
    width: 100%;
  }

  .hero-stats,
  .plans-grid,
  .feature-band {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 330px;
  }

  .globe-card {
    width: 100%;
  }

  .section {
    padding: 54px 0;
  }

  .footer {
    grid-template-columns: 1fr;
  }

  .footer nav {
    grid-row: auto;
    flex-wrap: wrap;
  }
}
