:root {
  --desvy-red: #e10600;
  --desvy-red-soft: rgba(225, 6, 0, 0.18);
  --desvy-white: #ffffff;
  --desvy-navy: #08111f;
  --desvy-blue: #2f80ff;
  --desvy-gold: #f5c542;
  --desvy-card: rgba(255, 255, 255, 0.08);
  --desvy-card-strong: rgba(255, 255, 255, 0.14);
  --desvy-border: rgba(255, 255, 255, 0.18);
  --desvy-muted: #b8c2d6;
  --desvy-text: #f7f9ff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--desvy-text);
  background:
    radial-gradient(circle at 15% 15%, rgba(225, 6, 0, 0.30), transparent 28%),
    radial-gradient(circle at 80% 10%, rgba(47, 128, 255, 0.25), transparent 24%),
    radial-gradient(circle at 50% 90%, rgba(245, 197, 66, 0.12), transparent 28%),
    linear-gradient(135deg, #02040a 0%, #07111f 45%, #0a1022 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(#ffffff 0.7px, transparent 0.7px),
    radial-gradient(#ffffff 0.6px, transparent 0.6px);
  background-size: 80px 80px, 140px 140px;
  background-position: 0 0, 30px 60px;
  opacity: 0.22;
  pointer-events: none;
  z-index: -3;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.06) 50%, transparent 100%);
  transform: translateX(-100%);
  animation: cosmic-sweep 12s infinite linear;
  pointer-events: none;
  z-index: -2;
}

@keyframes cosmic-sweep {
  from { transform: translateX(-120%); }
  to { transform: translateX(120%); }
}

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

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(2, 5, 12, 0.68);
  border-bottom: 1px solid var(--desvy-border);
}

.nav-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background:
    radial-gradient(circle at 35% 25%, #fff, transparent 18%),
    linear-gradient(135deg, var(--desvy-red), #800000);
  box-shadow: 0 0 28px rgba(225, 6, 0, 0.45);
}

.brand small {
  display: block;
  color: var(--desvy-muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #dfe7ff;
  font-size: 14px;
}

.nav-links a {
  opacity: 0.88;
}

.nav-links a:hover {
  opacity: 1;
}

.btn {
  border: 1px solid var(--desvy-border);
  border-radius: 999px;
  padding: 12px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 800;
  min-height: 44px;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--desvy-red), #ff4b45);
  color: white;
  border-color: rgba(255,255,255,0.25);
  box-shadow: 0 12px 32px rgba(225, 6, 0, 0.28);
}

.btn-secondary {
  background: rgba(255,255,255,0.08);
  color: white;
}

.hero {
  padding: 88px 0 56px;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 36px;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(245, 197, 66, 0.38);
  background: rgba(245, 197, 66, 0.10);
  color: #ffe9a3;
  padding: 9px 13px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.hero h1 {
  font-size: clamp(42px, 7vw, 82px);
  line-height: 0.94;
  margin: 22px 0;
  letter-spacing: -0.07em;
}

.hero h1 span {
  display: block;
  background: linear-gradient(90deg, #fff, #c9d7ff, #ffcfcc);
  -webkit-background-clip: text;
  color: transparent;
}

.hero p {
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.58;
  color: var(--desvy-muted);
  max-width: 760px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.search-panel {
  margin-top: 30px;
  display: flex;
  gap: 10px;
  padding: 10px;
  border: 1px solid var(--desvy-border);
  background: rgba(255,255,255,0.08);
  border-radius: 22px;
  backdrop-filter: blur(18px);
  max-width: 760px;
}

.search-panel input {
  flex: 1;
  min-width: 180px;
  border: 0;
  outline: 0;
  padding: 15px 16px;
  background: transparent;
  color: white;
  font-size: 16px;
}

.search-panel input::placeholder {
  color: #aeb9cf;
}

.orbit-card {
  position: relative;
  min-height: 520px;
  border: 1px solid var(--desvy-border);
  background:
    radial-gradient(circle at 50% 35%, rgba(47, 128, 255, 0.22), transparent 24%),
    rgba(255,255,255,0.06);
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.32);
}

.planet {
  position: absolute;
  width: 210px;
  height: 210px;
  left: 50%;
  top: 42%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 25%, #fff, transparent 12%),
    radial-gradient(circle at 35% 35%, #ff5e57, #8b0c15 38%, #111f3d 76%);
  box-shadow:
    0 0 55px rgba(225, 6, 0, 0.45),
    inset -30px -25px 55px rgba(0,0,0,0.38);
}

.ring {
  position: absolute;
  left: 50%;
  top: 42%;
  width: 360px;
  height: 112px;
  border: 1px solid rgba(255,255,255,0.32);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-16deg);
}

.floating-card {
  position: absolute;
  border: 1px solid var(--desvy-border);
  background: rgba(5, 12, 24, 0.74);
  backdrop-filter: blur(16px);
  border-radius: 18px;
  padding: 15px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.26);
}

.floating-card strong {
  display: block;
  margin-bottom: 5px;
}

.floating-card small {
  color: var(--desvy-muted);
  line-height: 1.35;
}

.float-1 { top: 36px; left: 28px; width: 190px; }
.float-2 { top: 126px; right: 26px; width: 180px; }
.float-3 { bottom: 42px; left: 36px; width: 205px; }
.float-4 { bottom: 88px; right: 34px; width: 190px; }

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 30px 0 0;
}

.stat {
  border: 1px solid var(--desvy-border);
  background: rgba(255,255,255,0.07);
  border-radius: 18px;
  padding: 18px;
}

.stat strong {
  display: block;
  font-size: 28px;
}

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

.section {
  padding: 54px 0;
}

.section-title {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
  margin-bottom: 20px;
}

.section-title h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  letter-spacing: -0.05em;
}

.section-title p {
  color: var(--desvy-muted);
  max-width: 570px;
  line-height: 1.55;
}

.grid {
  display: grid;
  gap: 16px;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  border: 1px solid var(--desvy-border);
  background: var(--desvy-card);
  border-radius: 24px;
  padding: 22px;
  backdrop-filter: blur(18px);
  min-height: 160px;
}

.card:hover {
  background: var(--desvy-card-strong);
  transform: translateY(-2px);
  transition: 180ms ease;
}

.card-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(225,6,0,0.18);
  border: 1px solid rgba(225,6,0,0.28);
  margin-bottom: 16px;
}

.card h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

.card p {
  color: var(--desvy-muted);
  margin: 0;
  line-height: 1.5;
}

.trust-band {
  border: 1px solid rgba(245,197,66,0.34);
  background:
    radial-gradient(circle at 20% 10%, rgba(245,197,66,0.20), transparent 24%),
    rgba(255,255,255,0.07);
  border-radius: 30px;
  padding: 30px;
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.trust-item {
  padding: 14px;
  border-radius: 16px;
  background: rgba(0,0,0,0.18);
  border: 1px solid rgba(255,255,255,0.12);
}

.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.price-card {
  border: 1px solid var(--desvy-border);
  background: rgba(255,255,255,0.08);
  border-radius: 26px;
  padding: 24px;
}

.price-card.featured {
  border-color: rgba(245,197,66,0.55);
  box-shadow: 0 0 45px rgba(245,197,66,0.10);
}

.price {
  font-size: 38px;
  font-weight: 950;
  letter-spacing: -0.05em;
}

.price small {
  font-size: 14px;
  color: var(--desvy-muted);
  font-weight: 700;
}

.footer {
  border-top: 1px solid var(--desvy-border);
  padding: 30px 0;
  color: var(--desvy-muted);
  background: rgba(0,0,0,0.18);
}

@media (max-width: 920px) {
  .hero-grid,
  .grid-3,
  .grid-4,
  .pricing {
    grid-template-columns: 1fr;
  }

  .orbit-card {
    min-height: 420px;
  }

  .nav-links {
    display: none;
  }

  .stats,
  .trust-list {
    grid-template-columns: 1fr 1fr;
  }

  .search-panel {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 22px, 1180px);
  }

  .hero {
    padding-top: 48px;
  }

  .stats,
  .trust-list {
    grid-template-columns: 1fr;
  }

  .floating-card {
    position: relative;
    inset: auto;
    width: auto;
    margin: 10px;
  }

  .planet,
  .ring {
    display: none;
  }

  .orbit-card {
    min-height: auto;
    padding: 10px 0;
  }
}
