/* ==========================================================================
   Pulse Tweaks — main stylesheet
   ========================================================================== */

:root {
  --bg: #05060c;
  --bg-alt: #0a0d19;
  --panel: rgba(255, 255, 255, 0.035);
  --panel-alt: rgba(255, 255, 255, 0.05);
  --border: rgba(255, 255, 255, 0.09);
  --text: #eef1fb;
  --text-dim: #97a0ba;
  --blue: #2f8dff;
  --blue-dim: #1f6fe0;
  --pink: #ef4bc7;
  --purple: #8b5cf6;
  --green: #22c55e;
  --orange: #f59e0b;
  --discord: #5865f2;
  --radius: 18px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  --font-heading: "Space Grotesk", "Inter", sans-serif;
  --font-body: "Inter", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  margin: 0 0 0.5em;
  line-height: 1.2;
}

p { margin: 0 0 1em; color: var(--text-dim); }

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

ul { list-style: none; margin: 0; padding: 0; }

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.text-gradient {
  background: linear-gradient(90deg, var(--blue), var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- background glow ---------- */
.bg-grid {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 0%, #000 40%, transparent 85%);
}
.bg-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.32;
  z-index: 0;
  pointer-events: none;
  animation: float 14s ease-in-out infinite alternate;
}
.bg-glow--one {
  width: 560px; height: 560px;
  background: var(--blue-dim);
  top: -180px; left: -120px;
}
.bg-glow--two {
  width: 480px; height: 480px;
  background: var(--pink);
  bottom: -160px; right: -100px;
  animation-delay: -6s;
}
@keyframes float {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(40px, 30px) scale(1.08); }
}

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 16px 0 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 22px;
  background: rgba(11, 14, 25, 0.72);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.5px;
}

.logo-mark {
  display: inline-block;
  height: 30px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(47, 141, 255, 0.55));
}
.logo-mark.small { height: 22px; }

.icon-discord { width: 18px; height: 18px; flex-shrink: 0; }

.logo-text strong { color: var(--blue); }

.nav { display: flex; align-items: center; gap: 28px; }
.nav a {
  font-size: 0.92rem;
  color: var(--text-dim);
  font-weight: 500;
  position: relative;
  transition: color 0.2s ease;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--pink));
  transition: width 0.25s ease;
}
.nav a:hover,
.nav a.active { color: var(--text); }
.nav a:hover::after,
.nav a.active::after { width: 100%; }
.nav-discord { color: #b9c0ff !important; }

.header-actions { display: flex; align-items: center; gap: 14px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  font-family: var(--font-body);
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.btn--primary {
  background: linear-gradient(90deg, var(--blue-dim), var(--pink));
  color: #fff;
}
.btn--primary:hover { box-shadow: 0 10px 30px rgba(47, 141, 255, 0.4); }

.btn--glow { animation: pulseGlow 2.4s ease-in-out infinite; }
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(47, 141, 255, 0.45); }
  50% { box-shadow: 0 0 0 12px rgba(47, 141, 255, 0); }
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn--ghost:hover { border-color: var(--blue); color: var(--blue); }

.btn--discord {
  background: var(--discord);
  color: #fff;
  border-radius: 12px;
}
.btn--discord:hover { box-shadow: 0 10px 30px rgba(88, 101, 242, 0.45); }

.btn--small { padding: 9px 18px; font-size: 0.85rem; border-radius: 10px; }
.btn--large { padding: 16px 30px; font-size: 1.05rem; }
.btn--full { width: 100%; }

/* ---------- hero ---------- */
.hero { padding: 90px 0 60px; position: relative; z-index: 1; }
.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 40px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px 7px 12px;
  border-radius: 999px;
  background: rgba(47, 141, 255, 0.1);
  border: 1px solid rgba(47, 141, 255, 0.35);
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.4px;
  margin-bottom: 20px;
}
.badge::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 8px var(--pink);
  flex-shrink: 0;
}

.hero-copy h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  color: #fff;
}
.hero-sub { font-size: 1.08rem; max-width: 540px; }
.hero-cta { display: flex; gap: 16px; margin: 28px 0 24px; flex-wrap: wrap; }
.hero-trust { display: flex; gap: 22px; flex-wrap: wrap; font-size: 0.85rem; color: var(--text-dim); }

.hero-art { position: relative; display: flex; align-items: center; justify-content: center; height: 340px; }
.hero-logo {
  width: 220px;
  height: auto;
  z-index: 2;
  filter: drop-shadow(0 0 50px rgba(47, 141, 255, 0.55)) drop-shadow(0 20px 40px rgba(0, 0, 0, 0.45));
  animation: logoFloat 5s ease-in-out infinite;
}
@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.hero-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 12px;
  background: rgba(10, 13, 25, 0.85);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.4);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text);
  animation: chipFloat 5s ease-in-out infinite;
}
.hero-chip strong { color: var(--green); font-family: var(--font-heading); }
.hero-chip--gpu { top: 8%; right: -4%; animation-delay: -1.2s; }
.hero-chip--net { bottom: 10%; left: -6%; animation-delay: -3s; }
.hero-chip--net strong { color: var(--blue); }
@keyframes chipFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ---------- section head ---------- */
.section-head { text-align: center; max-width: 620px; margin: 0 auto 46px; }
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--pink);
  margin-bottom: 10px;
}
.section-head h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); color: #fff; }

/* ---------- features ---------- */
.features { padding: 70px 0; position: relative; z-index: 1; }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.feature-card {
  position: relative;
  background: linear-gradient(180deg, var(--panel), var(--panel-alt));
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.feature-card::before,
.feature-card::after {
  content: "";
  position: absolute;
  width: 14px; height: 14px;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.feature-card::before { top: 10px; left: 10px; border-top: 2px solid var(--blue); border-left: 2px solid var(--blue); }
.feature-card::after { bottom: 10px; right: 10px; border-bottom: 2px solid var(--pink); border-right: 2px solid var(--pink); }
.feature-card:hover::before,
.feature-card:hover::after { opacity: 0.8; }
.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(47, 141, 255, 0.4);
  box-shadow: var(--shadow);
}
.feature-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}
.feature-icon--blue { background: rgba(47, 141, 255, 0.15); }
.feature-icon--purple { background: rgba(139, 92, 246, 0.15); }
.feature-icon--green { background: rgba(34, 197, 94, 0.15); }
.feature-icon--orange { background: rgba(245, 158, 11, 0.15); }
.feature-card h3 { color: #fff; font-size: 1.1rem; }
.feature-card p { font-size: 0.92rem; margin: 0; }

/* ---------- dashboard mock ---------- */
.dashboard { padding: 70px 0 90px; position: relative; z-index: 1; }
.dash-mock {
  position: relative;
  display: grid;
  grid-template-columns: 220px 1fr;
  background: var(--panel);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.dash-mock::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--pink));
}
.dash-sidebar {
  background: var(--bg-alt);
  border-right: 1px solid var(--border);
  padding: 22px 16px;
}
.dash-brand { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 0.9rem; margin-bottom: 22px; }
.dash-menu { display: flex; flex-direction: column; gap: 4px; margin-bottom: 18px; }
.dash-menu li {
  padding: 9px 12px;
  border-radius: 9px;
  font-size: 0.85rem;
  color: var(--text-dim);
  cursor: default;
  transition: background 0.2s ease, color 0.2s ease;
}
.dash-menu li:hover { background: rgba(255,255,255,0.04); color: var(--text); }
.dash-menu li.active {
  background: rgba(47, 141, 255, 0.15);
  color: var(--blue);
  font-weight: 600;
}
.dash-menu-label { font-size: 0.7rem; letter-spacing: 1px; color: #5b6480; margin: 10px 4px 8px; }

.dash-main { padding: 26px 30px; }
.dash-topbar { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 6px; }
.dash-topbar h4 { color: #fff; margin-bottom: 2px; }
.dash-topbar p { margin: 0; font-size: 0.85rem; }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
}
.pill--online { background: rgba(34, 197, 94, 0.15); color: var(--green); }
.pill--live { background: rgba(47, 141, 255, 0.15); color: var(--blue); animation: livePulse 1.6s ease-in-out infinite; }
@keyframes livePulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

.dash-greeting { color: var(--text); margin: 14px 0 20px; }

.dash-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 22px; }
.stat-card {
  background: var(--panel-alt);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px 18px;
}
.stat-top { display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem; color: var(--text-dim); margin-bottom: 6px; }
.stat-range { font-size: 0.7rem; }
.stat-value { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.stat-bar { height: 6px; background: rgba(255,255,255,0.06); border-radius: 4px; overflow: hidden; }
.stat-bar-fill {
  display: block;
  height: 100%;
  width: 0%;
  border-radius: 4px;
  transition: width 1.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.stat-bar-fill--blue { background: linear-gradient(90deg, var(--blue-dim), var(--blue)); }
.stat-bar-fill--purple { background: linear-gradient(90deg, #6d28d9, var(--purple)); }
.stat-bar-fill--green { background: linear-gradient(90deg, #15803d, var(--green)); }

.dash-chart-card {
  background: var(--panel-alt);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 20px;
  margin-bottom: 22px;
}
.dash-chart-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 10px; }
.dash-chart-head h5 { color: #fff; margin: 0; font-size: 0.95rem; }
.dash-chart-head span { font-size: 0.75rem; color: var(--text-dim); }
.dash-chart { width: 100%; height: 110px; }
.chart-line {
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: draw 2.4s ease-out forwards, wave 4s ease-in-out infinite 2.4s;
}
.chart-line--cpu { stroke: var(--blue); animation-delay: 0s, 2.4s; }
.chart-line--gpu { stroke: var(--purple); animation-delay: 0.2s, 2.6s; }
.chart-line--ram { stroke: var(--green); animation-delay: 0.4s, 2.8s; }
@keyframes draw { to { stroke-dashoffset: 0; } }
@keyframes wave {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}
.chart-legend { display: flex; gap: 18px; margin-top: 10px; font-size: 0.78rem; color: var(--text-dim); }
.dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; margin-right: 5px; }
.dot--blue { background: var(--blue); }
.dot--purple { background: var(--purple); }
.dot--green { background: var(--green); }

.dash-bottom { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.dash-panel {
  background: var(--panel-alt);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 20px;
}
.dash-panel h5 { color: #fff; font-size: 0.9rem; }
.dash-panel p { font-size: 0.82rem; margin: 0 0 8px; }
.panel-link {
  padding: 8px 10px;
  border-radius: 9px;
  background: rgba(47, 141, 255, 0.08);
  color: var(--blue);
  font-weight: 600;
  font-size: 0.85rem !important;
  cursor: default;
  transition: background 0.2s ease;
}
.panel-link:hover { background: rgba(47, 141, 255, 0.16); }
.panel-link small { color: var(--text-dim); font-weight: 400; }

/* ---------- highlights banner ---------- */
.highlights { padding: 20px 0 70px; position: relative; z-index: 1; }
.highlights-inner {
  background: linear-gradient(90deg, rgba(47,141,255,0.12), rgba(239,75,199,0.12));
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 30px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.highlights-title { display: flex; align-items: center; gap: 12px; }
.pulse-icon { font-size: 1.6rem; animation: heartbeat 1.4s ease-in-out infinite; }
@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  25% { transform: scale(1.2); }
  40% { transform: scale(1); }
}
.highlights-title h3 { margin: 0; font-size: 1.15rem; color: #fff; }
.highlights-list { display: flex; gap: 26px; flex-wrap: wrap; font-size: 0.9rem; color: var(--text-dim); }

/* ---------- final cta ---------- */
.final-cta { padding: 40px 0 80px; position: relative; z-index: 1; }
.final-cta-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  background: var(--panel);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px 44px;
  margin-bottom: 30px;
  overflow: hidden;
}
.final-cta-inner::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--pink));
}
.final-cta-eyebrow { font-size: 1.6rem; font-weight: 800; font-family: var(--font-heading); color: #fff; margin-bottom: 4px; }
.final-cta-sub { margin: 0; }

.trust-row { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.trust-item {
  flex: 1;
  min-width: 220px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 1.3rem;
  background: var(--panel-alt);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 20px;
}
.trust-item strong { color: #fff; font-size: 0.95rem; }
.trust-item small { color: var(--text-dim); font-size: 0.8rem; }

/* ---------- discord ---------- */
.discord { padding: 20px 0 90px; position: relative; z-index: 1; }
.discord-card {
  display: flex;
  align-items: center;
  gap: 22px;
  background: linear-gradient(90deg, rgba(88,101,242,0.18), rgba(139,92,246,0.1));
  border: 1px solid rgba(88, 101, 242, 0.35);
  border-radius: 20px;
  padding: 28px 36px;
  flex-wrap: wrap;
}
.discord-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--discord);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  animation: bob 3s ease-in-out infinite;
}
.discord-icon svg { width: 28px; height: 28px; }
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.discord-copy { flex: 1; min-width: 180px; }
.discord-copy h3 { color: #fff; margin-bottom: 2px; letter-spacing: 1px; }
.discord-copy p { margin: 0; }

/* ---------- footer ---------- */
.site-footer { border-top: 1px solid var(--border); padding: 50px 0 24px; position: relative; z-index: 1; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}
.footer-brand p { max-width: 320px; font-size: 0.88rem; margin-top: 12px; }
.footer-links h4 { color: #fff; font-size: 0.9rem; margin-bottom: 14px; }
.footer-links a { display: block; color: var(--text-dim); font-size: 0.88rem; margin-bottom: 10px; transition: color 0.2s ease; }
.footer-links a:hover { color: var(--blue); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  font-size: 0.8rem;
  color: var(--text-dim);
  text-align: center;
}

/* ---------- page hero (pricing/faq/tos) ---------- */
.page-hero { padding: 80px 0 40px; text-align: center; position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(2rem, 4vw, 2.8rem); color: #fff; margin-top: 6px; }
.page-hero .hero-sub { max-width: 560px; margin: 0 auto; }

/* ---------- pricing ---------- */
.pricing { padding: 30px 0 70px; position: relative; z-index: 1; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}
.price-card {
  position: relative;
  background: linear-gradient(180deg, var(--panel), var(--panel-alt));
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.price-card::before,
.price-card::after {
  content: "";
  position: absolute;
  width: 14px; height: 14px;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.price-card::before { top: 10px; left: 10px; border-top: 2px solid var(--blue); border-left: 2px solid var(--blue); }
.price-card::after { bottom: 10px; right: 10px; border-bottom: 2px solid var(--pink); border-right: 2px solid var(--pink); }
.price-card:hover::before,
.price-card:hover::after { opacity: 0.8; }
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(47,141,255,0.35); }
.price-card--popular {
  border-color: rgba(239, 75, 199, 0.5);
  background: linear-gradient(180deg, rgba(239,75,199,0.1), var(--panel-alt));
}
.popular-badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--blue-dim), var(--pink));
  color: #fff;
  padding: 5px 16px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
}
.price-card h3 { color: #fff; font-size: 1.25rem; }
.price-desc { font-size: 0.88rem; min-height: 42px; }
.price-tag { display: flex; align-items: baseline; gap: 6px; margin-bottom: 22px; }
.price-amount { font-family: var(--font-heading); font-size: 2.3rem; font-weight: 800; color: #fff; }
.price-period { color: var(--text-dim); font-size: 0.85rem; }
.price-features { display: flex; flex-direction: column; gap: 11px; margin-bottom: 26px; flex: 1; }
.price-features li { font-size: 0.9rem; }
.price-features li.disabled { color: #5b6480; }

.pricing-note { text-align: center; margin-top: 40px; font-size: 0.9rem; }
.pricing-note a { color: var(--blue); font-weight: 600; }

/* ---------- compare table ---------- */
.compare { padding: 20px 0 80px; position: relative; z-index: 1; }
.compare-table {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.compare-row {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  padding: 14px 24px;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.compare-row span:first-child { text-align: left; color: var(--text); }
.compare-row:last-child { border-bottom: none; }
.compare-row--head {
  background: rgba(255,255,255,0.03);
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.6px;
}
.compare-row--head span:first-child { color: #fff; }

/* ---------- FAQ ---------- */
.faq-section { padding: 20px 0 80px; position: relative; z-index: 1; }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.faq-item.open { border-color: rgba(47, 141, 255, 0.4); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  padding: 20px 22px;
  cursor: pointer;
  text-align: left;
}
.faq-icon {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(47, 141, 255, 0.12);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: transform 0.3s ease, background 0.3s ease;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: rgba(139, 92, 246, 0.2); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 22px;
}
.faq-answer p { margin: 0 0 20px; font-size: 0.92rem; }
.faq-item.open .faq-answer { max-height: 240px; }
.faq-answer a { color: var(--blue); font-weight: 600; }

/* ---------- legal ---------- */
.legal { padding: 10px 0 80px; position: relative; z-index: 1; }
.legal-inner {
  max-width: 780px;
  margin: 0 auto;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 44px 48px;
}
.legal-block { margin-bottom: 30px; }
.legal-block:last-child { margin-bottom: 0; }
.legal-block h2 { color: #fff; font-size: 1.15rem; }
.legal-block p { font-size: 0.94rem; margin: 0; }
.legal-block p + p { margin-top: 10px; }
.legal-block a { color: var(--blue); font-weight: 600; }
.legal-list { font-size: 0.94rem; margin: 10px 0 0; padding-left: 20px; display: flex; flex-direction: column; gap: 8px; }
.legal-list li { color: var(--text-dim, inherit); }
.legal-list strong { color: #fff; }

/* ---------- scroll animations ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.in-view { opacity: 1; transform: translateY(0); }
.delay-1.in-view { transition-delay: 0.12s; }
.delay-2.in-view { transition-delay: 0.24s; }

/* ---------- auth / contact forms ---------- */
.auth-section, .contact-section { padding: 20px 0 90px; position: relative; z-index: 1; }
.auth-card {
  max-width: 440px;
  margin: 0 auto;
  background: linear-gradient(180deg, var(--panel), var(--panel-alt));
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 30px;
}
.contact-card { max-width: 560px; }
.form-field { margin-bottom: 18px; display: flex; flex-direction: column; gap: 7px; }
.form-field label { font-size: 0.85rem; color: var(--text-dim); font-weight: 600; }
.form-field input,
.form-field textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 11px 14px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  resize: vertical;
}
.form-field input:focus, .form-field textarea:focus { outline: none; border-color: var(--blue); }
.form-hint { font-size: 0.78rem; color: var(--text-dim); }
.form-error { color: #f87171; font-size: 0.85rem; margin: -6px 0 16px; min-height: 1.2em; }
.form-success { color: var(--green); font-size: 0.9rem; margin: -6px 0 16px; }
.auth-switch { text-align: center; font-size: 0.88rem; margin-top: 18px; color: var(--text-dim); }
.auth-switch a { color: var(--blue); font-weight: 600; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

/* ---------- account page ---------- */
.account-card { max-width: 640px; margin: 0 auto; }
.license-list { display: flex; flex-direction: column; gap: 12px; margin: 18px 0; }
.license-row {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  background: rgba(255, 255, 255, 0.03); border: 1px solid var(--border);
  border-radius: 12px; padding: 14px 16px; font-size: 0.88rem;
}
.license-row code { color: #fff; font-family: monospace; letter-spacing: 0.5px; }
.license-row-actions { display: flex; align-items: center; gap: 10px; }

/* ---------- status badges ---------- */
.badge-status { padding: 3px 10px; border-radius: 999px; font-size: 0.72rem; font-weight: 700; white-space: nowrap; }
.badge-status--active, .badge-status--paid, .badge-status--new { background: rgba(34, 197, 94, 0.15); color: var(--green); }
.badge-status--revoked, .badge-status--failed { background: rgba(239, 68, 68, 0.15); color: #f87171; }
.badge-status--pending, .badge-status--read { background: rgba(245, 158, 11, 0.15); color: var(--orange); }
.badge-status--archived { background: rgba(255, 255, 255, 0.08); color: var(--text-dim); }

/* ---------- admin dashboard ---------- */
.admin-shell { display: grid; grid-template-columns: 220px 1fr; gap: 24px; padding: 30px 0 90px; align-items: start; position: relative; z-index: 1; }
.admin-nav {
  background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 16px; display: flex; flex-direction: column; gap: 4px;
}
.admin-nav button {
  display: block; width: 100%; text-align: left; background: none; border: none;
  color: var(--text-dim); padding: 10px 12px; border-radius: 10px; cursor: pointer;
  font-size: 0.92rem; font-family: var(--font-body); transition: background 0.15s ease, color 0.15s ease;
}
.admin-nav button.active, .admin-nav button:hover { background: rgba(47, 141, 255, 0.12); color: #fff; }
.admin-panel {
  background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 26px; display: none;
}
.admin-panel.active { display: block; }
.admin-panel h3 { color: #fff; }
.admin-table { width: 100%; border-collapse: collapse; font-size: 0.86rem; }
.admin-table th, .admin-table td { text-align: left; padding: 10px 8px; border-bottom: 1px solid var(--border); vertical-align: top; }
.admin-table th { color: var(--text-dim); font-weight: 600; font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.5px; }
.admin-table td.actions { white-space: nowrap; }
.content-edit-row {
  display: grid; grid-template-columns: 140px 140px 1fr auto; gap: 10px; align-items: start;
  margin-bottom: 14px; padding-bottom: 14px; border-bottom: 1px solid var(--border);
}
.content-edit-row input, .content-edit-row textarea {
  background: rgba(255, 255, 255, 0.04); border: 1px solid var(--border); border-radius: 8px;
  padding: 8px 10px; color: var(--text); font-family: var(--font-body); font-size: 0.85rem;
}
.btn--tiny { padding: 7px 14px; font-size: 0.78rem; border-radius: 8px; }
.btn--danger { background: rgba(239, 68, 68, 0.15); color: #f87171; border: 1px solid rgba(239, 68, 68, 0.3); }
.btn--danger:hover { border-color: #f87171; }
.admin-loading, .admin-empty { color: var(--text-dim); font-size: 0.9rem; }

/* ---------- responsive ---------- */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-art { height: 260px; order: -1; }
  .hero-chip { font-size: 0.7rem; padding: 7px 11px; }
  .hero-chip--gpu { right: 2%; }
  .hero-chip--net { left: 2%; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .dash-mock { grid-template-columns: 1fr; }
  .dash-sidebar { display: none; }
  .dash-stats { grid-template-columns: 1fr; }
  .dash-bottom { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .compare-row { grid-template-columns: 1.4fr repeat(3, 1fr); font-size: 0.8rem; padding: 12px 14px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .admin-shell { grid-template-columns: 1fr; }
  .admin-nav { flex-direction: row; overflow-x: auto; }
}

@media (max-width: 720px) {
  .nav {
    position: absolute;
    top: 74px;
    left: 50%;
    width: min(1180px, 92%);
    transform: translateX(-50%) translateY(-16px);
    background: rgba(11, 14, 25, 0.95);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px;
    gap: 16px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }
  .nav.open { opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0); }
  .nav-toggle { display: flex; }
  .header-actions .btn--small { display: none; }
  .feature-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .final-cta-inner { flex-direction: column; align-items: flex-start; }
  .legal-inner { padding: 30px 24px; }
  .compare-row { grid-template-columns: 1.2fr repeat(3, 0.8fr); font-size: 0.72rem; padding: 10px; }
}
