:root {
  --bg: #05060a;
  --panel: rgba(10, 12, 20, 0.9);
  --border-soft: rgba(255,255,255,0.06);
  --border-strong: rgba(0, 180, 255, 0.7);
  --accent: #00eaff;
  --accent-2: #ff6bff;
  --text-main: #f9fafb;
  --text-muted: #9ca3af;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
  background: radial-gradient(circle at top, #111827 0, #020308 55%);
  color: var(--text-main);
  min-height: 100vh;
}

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

/* Sticky Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: linear-gradient(to bottom, rgba(5,6,10,0.95), rgba(5,6,10,0.75));
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo {
  height: 75px; /* or 30px if you want it slightly larger */
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 100%;
  width: auto;
  object-fit: contain;
}
.nav-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.nav-brand img {
  height: 28px; /* adjust if needed */
  width: auto;
  object-fit: contain;
}

.nav-title {
  font-weight: 600;
  letter-spacing: 0.04em;
  font-size: 0.45rem;
  text-transform: uppercase;
  color: #e5e7eb;
  line-height: 1.1;
}

.nav-title {
  font-weight: 600;
  letter-spacing: 0.04em;
  font-size: 0.95rem;
  text-transform: uppercase;
  color: #e5e7eb;
}
.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.nav-links a:hover { color: var(--accent); }
.nav-cta {
  padding: 8px 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, #007cf0, #00dfd8);
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 0 18px rgba(0, 191, 255, 0.6);
}

/* Layout container */
.page {
  max-width: 1120px;
  margin: 0 auto;
  padding: 32px 20px 60px;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  padding: 40px 26px 34px;
  background: radial-gradient(circle at 0 0, rgba(0,191,255,0.18), transparent 55%),
              radial-gradient(circle at 100% 0, rgba(255,107,255,0.18), transparent 55%),
              linear-gradient(135deg, #020617, #020617 40%, #020617 100%);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 0 40px rgba(0,0,0,0.8);
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.5fr);
  gap: 26px;
}

.hero::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  background: conic-gradient(from 180deg, #00eaff, #ff6bff, #007cf0, #00eaff);
  filter: blur(40px);
  opacity: 0.18;
  top: -120px;
  right: -140px;
  animation: spin 18s linear infinite;
  pointer-events: none;
}

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

.hero-main h1 {
  font-size: clamp(2.1rem, 3vw, 2.7rem);
  line-height: 1.1;
  margin-bottom: 14px;
}
.hero-gradient-text {
  background: linear-gradient(120deg, #00eaff, #ff6bff);
  -webkit-background-clip: text;
  color: transparent;
}
.hero-sub {
  color: var(--text-muted);
  font-size: 0.98rem;
  max-width: 460px;
  margin-bottom: 18px;
}
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.hero-tag {
  font-size: 0.78rem;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,0.5);
  color: #cbd5f5;
  background: rgba(15,23,42,0.7);
}
.hero-ctas {
  margin-top: 45px;
  gap: 12px;
}

.hero-cta-primary {
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, #007cf0, #00dfd8);
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 0 22px rgba(0,191,255,0.7);
}
.hero-cta-secondary {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,0.7);
  font-size: 0.9rem;
  color: var(--text-muted);
  background: rgba(15,23,42,0.8);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 10px;
  margin-top: 22px;
  max-width: 420px;
}
.metric {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.metric span {
  display: block;
  font-size: 1.1rem;
  color: var(--accent);
  font-weight: 600;
}

.hero-visual {
  position: relative;
  border-radius: 18px;
  padding: 18px;
  background: radial-gradient(circle at top, rgba(15,23,42,0.9), rgba(15,23,42,0.95));
  border: 1px solid rgba(148,163,184,0.4);
  box-shadow: 0 0 30px rgba(15,23,42,0.9);
  overflow: hidden;
}

.hero-orbit {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(0,191,255,0.7) 0, transparent 55%),
    radial-gradient(circle at 80% 80%, rgba(255,107,255,0.7) 0, transparent 55%);
  mix-blend-mode: screen;
}

.hero-grid {
  position: relative;
  border-radius: 14px;
  border: 1px solid rgba(148,163,184,0.4);
  padding: 14px;
  background: radial-gradient(circle at top, rgba(15,23,42,0.9), rgba(15,23,42,0.98));
}

.hero-grid-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--text-muted);
  padding: 6px 0;
}
.hero-grid-row span:first-child { color: #e5e7eb; }

.hero-pill {
  margin-top: 14px;
  font-size: 0.75rem;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,0.7);
  color: #cbd5f5;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hero-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 10px rgba(34,197,94,0.9);
}

/* Promo strip */
.promo-strip {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
}
.promo-card {
  background: rgba(15,23,42,0.9);
  border-radius: 14px;
  padding: 14px 16px;
  border: 1px solid rgba(148,163,184,0.4);
  font-size: 0.85rem;
}
.promo-title {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.promo-body {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* Section heading */
.section-heading {
  margin-top: 40px;
  margin-bottom: 16px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.section-heading h2 {
  font-size: 1.3rem;
}
.section-heading span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Product grid */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.server-card {
  position: relative;
  border-radius: 16px;
  padding: 18px 16px 16px;
  background: radial-gradient(circle at top left, rgba(0,191,255,0.12), transparent 55%),
              radial-gradient(circle at bottom right, rgba(255,107,255,0.12), transparent 55%),
              rgba(10,12,20,0.96);
  border: 1px solid rgba(148,163,184,0.45);
  box-shadow: 0 0 26px rgba(15,23,42,0.9);
  overflow: hidden;
  transition: 0.25s ease;
}

.server-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 32px rgba(0,191,255,0.55);
}

.server-top {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}
.server-name {
  font-size: 0.95rem;
  font-weight: 600;
}

.server-spec {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.server-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}
.badge {
  font-size: 0.75rem;
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,0.6);
  color: #cbd5f5;
  background: rgba(15,23,42,0.9);
}

.server-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 6px;
}
.price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent);
}
.price-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.order-btn {
  padding: 8px 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, #007cf0, #00dfd8);
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: 0 0 8px rgba(0,191,255,0.35);

}
.stock-pill {
  font-size: 0.75rem;
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,0.7);
  color: #cbd5f5;

  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1; /* optional but helps */
}

.stock-yes {
  border-color: rgba(34,197,94,0.9);
  color: #bbf7d0;
}
.stock-no {
  border-color: rgba(248,113,113,0.9);
  color: #fecaca;
}
/* Footer */
.footer {
  margin-top: 40px;
  padding-top: 18px;
  border-top: 1px solid rgba(31,41,55,0.9);
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer a {
  color: var(--accent);
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

@media (max-width: 840px) {
  .hero {
    grid-template-columns: minmax(0,1fr);
  }
  .hero-main { order: 1; }
  .hero-visual { order: 2; }
}
.ha-ribbon {
  position: absolute;
  top: 0;
  right: 0;
  background: linear-gradient(135deg, #00ffbf, #009f7a);
  color: #000;
  padding: 6px 12px;
  font-size: 0.7rem;
  font-weight: 700;
  border-bottom-left-radius: 8px;
  box-shadow: 0 0 12px rgba(0,255,180,0.6);
  z-index: 5;
}

.badge-ha {
  border-color: rgba(0, 255, 180, 0.8);
  color: #a7ffeb;
  background: rgba(0, 60, 40, 0.4);
}
.server-card.ha-ready {
  box-shadow: 0 0 22px rgba(0,255,180,0.35);
  border-color: rgba(0,255,180,0.5);
}
.ha-info-box {
  margin-top: 12px;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(0, 40, 30, 0.35);
  border: 1px solid rgba(0, 255, 180, 0.45);
  box-shadow: 0 0 18px rgba(0,255,180,0.25);
  font-size: 0.78rem;
  color: #a7ffeb;
  line-height: 1.45;
}

.ha-info-box ul {
  margin: 8px 0 0 18px;
  padding: 0;
}

.ha-info-box li {
  margin-bottom: 4px;
}
.ha-hero-box {
  margin-top: 22px;
  padding: 18px 20px;
  border-radius: 16px;
  background: rgba(0, 40, 30, 0.35);
  border: 1px solid rgba(0, 255, 180, 0.45);
  box-shadow: 0 0 22px rgba(0,255,180,0.25);
  color: #a7ffeb;
  font-size: 0.9rem;
  line-height: 1.55;
}

.ha-hero-box .ha-title {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 8px;
  color: #bafff0;
}

.ha-hero-box ul {
  margin: 8px 0 12px 20px;
  padding: 0;
}

.ha-hero-box li {
  margin-bottom: 4px;
}
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
  margin-top: 10px;
}

.filter-select, .filter-checkbox {
  background: rgba(20, 20, 30, 0.6);
  border: 1px solid rgba(0, 255, 180, 0.3);
  color: #a7ffeb;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.85rem;
}

.filter-select:hover {
  border-color: rgba(0, 255, 180, 0.6);
}

.filter-checkbox input {
  margin-right: 6px;
}
.hero-features {
  margin-top: 20px;
  max-width: 480px;
}

.hero-feature-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-main);
}

.hero-feature-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
  display: grid;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hero-feature-list li::before {
  content: "• ";
  color: var(--accent);
}
