:root {
  --bg: #050b16;
  --bg-soft: rgba(12, 20, 36, 0.7);
  --panel: rgba(10, 18, 31, 0.76);
  --panel-strong: rgba(8, 14, 24, 0.92);
  --border: rgba(116, 184, 255, 0.15);
  --text: #eaf4ff;
  --muted: #ffffff;
  --primary: #0f6fff;
  --primary-2: #0f6fff;
  --primary-3: #0f6fff;
  --success: #73ffd7;
  --shadow: 0 24px 80px rgba(0, 92, 255, 0.18);
  --radius: 24px;
  --radius-sm: 18px;
  --container: 1200px;
}

* { 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;
  background:
    radial-gradient(circle at top left, rgba(62, 166, 255, 0.1), transparent 32%),
    radial-gradient(circle at 85% 20%, rgba(15, 111, 255, 0.12), transparent 28%),
    linear-gradient(180deg, #040811 0%, #07111f 42%, #04070f 100%);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

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

.animated-bg {
  position: fixed;
  inset: 0;
  z-index: -3;
  overflow: hidden;
  pointer-events: none;
}

#particleCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.7;
}

.grid-overlay,
.glow-orb,
.noise {
  position: absolute;
  inset: 0;
}

.grid-overlay {
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, transparent 0%, black 16%, black 84%, transparent 100%);
}

.noise {
  background-image: radial-gradient(rgba(255,255,255,0.08) 0.7px, transparent 0.7px);
  background-size: 12px 12px;
  opacity: 0.05;
}

.glow-orb {
  filter: blur(90px);
  opacity: 0.45;
}

.glow-orb.one {
  inset: auto auto 10% -10%;
  width: 340px;
  height: 340px;
  background: rgba(62, 166, 255, 0.28);
  animation: drift 16s ease-in-out infinite alternate;
}

.glow-orb.two {
  inset: 10% -8% auto auto;
  width: 320px;
  height: 320px;
  background: rgba(15, 111, 255, 0.22);
  animation: drift 18s ease-in-out infinite alternate-reverse;
}

.glow-orb.three {
  inset: 45% auto auto 35%;
  width: 260px;
  height: 260px;
  background: rgba(115, 255, 215, 0.12);
  animation: pulse 10s ease-in-out infinite;
}

@keyframes drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(60px, -40px, 0) scale(1.15); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.28; }
  50% { transform: scale(1.2); opacity: 0.5; }
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(4, 8, 17, 0.65);
  border-bottom: 1px solid rgba(116, 184, 255, 0.1);
}

.navbar {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  filter: drop-shadow(0 0 24px rgba(62,166,255,0.28));
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-text strong {
  font-size: 1.1rem;
}

.brand-text span {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  padding: 11px 15px;
  border-radius: 999px;
  color: var(--muted);
  transition: 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  background: rgba(62, 166, 255, 0.1);
}

.btn,
.btn-secondary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  border: 1px solid transparent;
  min-height: 48px;
  padding: 0 22px;
  font-weight: 700;
  transition: transform 0.22s ease, background 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.btn:hover,
.btn-secondary:hover,
.btn-ghost:hover {
  transform: translateY(-2px);
}

.btn {
  background: linear-gradient(135deg, var(--primary), var(--primary-3));
  color: white;
  box-shadow: 0 12px 30px rgba(15, 111, 255, 0.28);
}

.btn-secondary {
  color: var(--text);
  border-color: rgba(116, 184, 255, 0.22);
  background: rgba(255, 255, 255, 0.02);
}

.btn-ghost {
  color: var(--muted);
  background: transparent;
  border-color: rgba(116, 184, 255, 0.16);
}

section {
  position: relative;
}

.hero {
  padding: 86px 0 58px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 34px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--primary-2);
  border: 1px solid rgba(116, 184, 255, 0.18);
  background: rgba(10, 24, 46, 0.55);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
  font-size: 0.92rem;
}

.hero h1,
.page-hero h1 {
  margin: 18px 0 18px;
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.gradient-text {
  background: linear-gradient(135deg, #cfe8ff 0%, var(--primary-2) 40%, #7dd8ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead,
.page-hero p {
  color: var(--muted);
  font-size: 1.06rem;
  max-width: 64ch;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 28px 0 34px;
}

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

.stat {
  padding: 18px 18px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.stat strong {
  display: block;
  font-size: 1.6rem;
  color: var(--primary-2);
}

.stat span {
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-card,
.glass-card,
.feature-card,
.plan-card,
.info-card,
.team-card,
.contact-card,
.partner-card,
.spec-card,
.comparison-card {
  background: linear-gradient(180deg, rgba(11, 19, 34, 0.84) 0%, rgba(8, 14, 25, 0.96) 100%);
  border: 1px solid rgba(116, 184, 255, 0.15);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-card {
  position: relative;
  padding: 26px;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(62,166,255,0.12), transparent 30%);
  pointer-events: none;
}

.server-visual {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.server-shell {
  width: min(100%, 420px);
  aspect-ratio: 1;
  border-radius: 28px;
  border: 1px solid rgba(116,184,255,0.16);
  background:
    radial-gradient(circle at 50% 30%, rgba(62,166,255,0.15), transparent 32%),
    linear-gradient(180deg, rgba(4, 10, 20, 0.9), rgba(10, 18, 31, 0.92));
  display: grid;
  place-items: center;
  position: relative;
}

.server-shell::after {
  content: "";
  position: absolute;
  inset: 20px;
  border-radius: 22px;
  border: 1px solid rgba(116,184,255,0.08);
}

.rings,
.orbit,
.orbit-two {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(116,184,255,0.16);
}

.rings {
  width: 92%;
  height: 92%;
  animation: spin 18s linear infinite;
}

.orbit {
  width: 72%;
  height: 72%;
  animation: spin 12s linear infinite reverse;
}

.orbit-two {
  width: 54%;
  height: 54%;
  animation: spin 9s linear infinite;
}

.logo-core {
  width: min(42vw, 240px);
  aspect-ratio: 1;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(14, 25, 44, 0.82), rgba(5, 10, 18, 0.9));
  border: 1px solid rgba(116,184,255,0.22);
  box-shadow: inset 0 1px 24px rgba(62,166,255,0.12), 0 0 60px rgba(62,166,255,0.12);
  display: grid;
  place-items: center;
}

.logo-core img {
  width: 82%;
  height: 82%;
  object-fit: contain;
}

.floating-pill {
  position: absolute;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(7, 16, 29, 0.8);
  border: 1px solid rgba(116,184,255,0.16);
  color: var(--text);
  font-size: 0.9rem;
  backdrop-filter: blur(8px);
  animation: bob 4s ease-in-out infinite;
}

.floating-pill.one { top: 8%; left: -2%; }
.floating-pill.two { top: 20%; right: 0; animation-delay: 0.8s; }
.floating-pill.three { bottom: 18%; left: 2%; animation-delay: 1.2s; }
.floating-pill.four { bottom: 8%; right: 8%; animation-delay: 0.4s; }

@keyframes spin {
  from { transform: rotate(0); }
  to { transform: rotate(360deg); }
}

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

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

.section-head h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  margin: 0 0 10px;
  letter-spacing: -0.04em;
}

.section-head p {
  color: var(--muted);
  max-width: 62ch;
}

.grid-3,
.grid-4,
.grid-2,
.plan-grid,
.team-grid,
.contact-grid,
.partner-grid,
.spec-grid,
.compare-grid {
  display: grid;
  gap: 18px;
}

.grid-3,
.plan-grid,
.team-grid,
.contact-grid,
.partner-grid,
.spec-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

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

.feature-card,
.info-card,
.contact-card,
.partner-card,
.spec-card,
.comparison-card {
  padding: 24px;
}

.icon-box {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(62,166,255,0.18), rgba(15,111,255,0.08));
  color: var(--primary-2);
  margin-bottom: 16px;
  font-size: 1.2rem;
}

.feature-card h3,
.plan-card h3,
.info-card h3,
.team-card h3,
.contact-card h3,
.partner-card h3,
.spec-card h3,
.comparison-card h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
}

.feature-card p,
.info-card p,
.team-card p,
.contact-card p,
.partner-card p,
.spec-card p,
.comparison-card p,
.plan-card li {
  color: var(--muted);
}

.content-section {
  padding: 40px 0;
}

.plan-card {
  position: relative;
  padding: 28px;
}

.plan-card.highlight {
  outline: 1px solid rgba(116,184,255,0.24);
  transform: translateY(-6px);
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(62,166,255,0.16);
  color: var(--primary-2);
  border: 1px solid rgba(116,184,255,0.18);
  font-size: 0.85rem;
  font-weight: 700;
}

.plan-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.price {
  margin: 18px 0 16px;
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.price small {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
}

.plan-list,
.check-list,
.spec-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.plan-list li,
.check-list li,
.spec-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
}

.plan-list li::before,
.check-list li::before,
.spec-list li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #94d4ff);
  box-shadow: 0 0 12px rgba(62,166,255,0.48);
}

.plan-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.page-hero {
  padding: 84px 0 26px;
}

.hero-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 32px;
}

.hero-panel img {
  width: 160px;
  opacity: 0.9;
  filter: drop-shadow(0 0 24px rgba(62,166,255,0.24));
}

.note-box {
  padding: 20px 22px;
  border-radius: 20px;
  border: 1px solid rgba(115,255,215,0.16);
  background: rgba(8, 20, 24, 0.55);
  color: #caf8eb;
}

.partner-card img {
  width: 100%;
  max-width: 180px;
  height: 56px;
  object-fit: contain;
  filter: grayscale(0.1) brightness(1.1);
  margin-bottom: 16px;
}

.partner-placeholder {
  width: 180px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  background: rgba(255,255,255,0.03);
  color: var(--muted);
  border: 1px dashed rgba(116,184,255,0.18);
  font-weight: 700;
}

.team-card img,
.contact-card img {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  object-fit: cover;
  margin-bottom: 16px;
  border: 1px solid rgba(116,184,255,0.18);
  background: rgba(255,255,255,0.04);
}

.team-card,
.contact-card {
  padding: 24px;
}

.team-card a,
.contact-card a,
.footer a {
  color: var(--primary-2);
}

.cta-banner {
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 30px;
}

.footer {
  margin-top: 50px;
  border-top: 1px solid rgba(116,184,255,0.1);
  background: rgba(4, 8, 17, 0.75);
}

.footer-inner {
  padding: 30px 0 44px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: start;
}

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

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-links a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  border: 1px solid rgba(116,184,255,0.12);
}

.footer-links a:hover {
  color: var(--text);
  background: rgba(62,166,255,0.1);
}

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

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

@media (max-width: 1040px) {
  .hero-grid,
  .grid-4,
  .grid-3,
  .plan-grid,
  .team-grid,
  .contact-grid,
  .partner-grid,
  .spec-grid,
  .grid-2,
  .compare-grid,
  .footer-inner,
  .hero-panel {
    grid-template-columns: 1fr 1fr;
  }

  .hero-grid,
  .footer-inner,
  .hero-panel {
    grid-template-columns: 1fr;
  }

  .hero-card { order: -1; }
}

@media (max-width: 760px) {
  .navbar {
    padding: 14px 0;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    width: 100%;
    justify-content: flex-start;
  }

  .quick-stats,
  .grid-3,
  .plan-grid,
  .team-grid,
  .contact-grid,
  .partner-grid,
  .spec-grid,
  .grid-2,
  .compare-grid,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .hero,
  .page-hero {
    padding-top: 54px;
  }

  .server-visual {
    min-height: 360px;
  }

  .hero-panel img {
    width: 120px;
  }

  .cta-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}
