:root {
  /* Palette — dark theme inspired by fastpanel.direct */
  --bg: #0a0a0f;
  --bg-soft: #0e0e16;
  --surface: #14141e;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);
  --text: #f5f5fa;
  --text-muted: #a2a2b5;
  --text-dim: #6d6d82;
  --primary: #60a5fa;
  --primary-strong: #3b82f6;
  --primary-soft: rgba(96, 165, 250, 0.14);
  --accent: #818cf8;
  --warning: #fbbf24;

  --radius: 14px;
  --shadow-2: 0 12px 40px rgba(0,0,0,.55), 0 2px 8px rgba(0,0,0,.4);

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;

  --nav-h: 72px;
  --container: 1200px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow { max-width: 820px; }

/* ========= BUTTONS ========= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .01em;
  border: 1px solid transparent;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease, box-shadow .18s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-strong) 100%);
  color: #062018;
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.28);
}
.btn--primary:hover { box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4); transform: translateY(-1px); }
.btn--ghost {
  background: rgba(255,255,255,.04);
  color: var(--text);
  border-color: var(--border-strong);
}
.btn--ghost:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.24); }
.btn--lg { padding: 14px 28px; font-size: 15px; border-radius: 14px; }

/* ========= NAV ========= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 14px 0;
  transition: background .25s ease, padding .25s ease, border-color .25s ease;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  padding: 10px 0;
  background: rgba(10,10,15,.75);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--border);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__brand { display: inline-flex; align-items: center; gap: 10px; }
.nav__logo {
  width: 34px; height: 34px;
  display: grid; place-items: center;
  color: var(--primary);
  background: var(--primary-soft);
  border: 1px solid var(--border);
  border-radius: 10px;
}
.nav__logo svg { width: 20px; height: 20px; }
.nav__name { font-weight: 700; letter-spacing: .02em; font-size: 15px; }
.nav__dot { color: var(--primary); margin: 0 1px; }

.nav__menu { display: flex; align-items: center; gap: 28px; }
.nav__menu a {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  transition: color .18s ease;
}
.nav__menu a:hover { color: var(--text); }

.nav__actions { display: flex; align-items: center; gap: 10px; }

.nav__burger {
  display: none;
  width: 40px; height: 40px;
  border: 1px solid var(--border-strong);
  background: rgba(255,255,255,.04);
  border-radius: 10px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.nav__burger span {
  width: 16px; height: 1.6px; background: var(--text);
  transition: transform .25s ease, opacity .25s ease;
}
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(5.6px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5.6px) rotate(-45deg); }

.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 12px 24px 24px;
  border-top: 1px solid var(--border);
  background: rgba(10,10,15,.95);
  backdrop-filter: blur(14px);
}
.nav__mobile a:not(.btn) { padding: 10px 4px; color: var(--text-muted); }
.nav__mobile a:not(.btn):hover { color: var(--text); }
.nav__mobile .btn { width: 100%; margin-top: 4px; }
.nav__mobile.is-open { display: flex; }
/* ========= HERO ========= */
.hero {
  position: relative;
  padding: calc(var(--nav-h) + 64px) 0 80px;
  overflow: hidden;
}
.hero__glow {
  position: absolute;
  width: 560px; height: 560px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .55;
  pointer-events: none;
}
.hero__glow--1 {
  top: -220px; left: -140px;
  background: radial-gradient(circle, rgba(59,130,246,.55), transparent 65%);
}
.hero__glow--2 {
  bottom: -260px; right: -180px;
  background: radial-gradient(circle, rgba(129,140,248,.4), transparent 65%);
}
.hero .container { position: relative; text-align: center; z-index: 2; }

.hero__eyebrow {
  font-family: var(--mono);
  color: var(--text-dim);
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: lowercase;
  margin: 0 0 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.hero__eyebrow::before,
.hero__eyebrow::after {
  content: "";
  width: 32px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-strong));
}
.hero__eyebrow::after { background: linear-gradient(90deg, var(--border-strong), transparent); }

.hero__title {
  font-size: clamp(48px, 9vw, 112px);
  line-height: 1.02;
  margin: 0 0 22px;
  font-weight: 700;
  letter-spacing: -.02em;
}
.hero__word {
  display: inline-block;
  color: var(--primary);
  transition: opacity .3s ease;
}
.hero__accent { color: var(--text); }
.hero__subtitle {
  font-size: clamp(17px, 2.4vw, 22px);
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 36px;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 70px;
}

/* Mock UI */
.hero__mock {
  max-width: 880px;
  margin: 0 auto;
  background: linear-gradient(180deg, rgba(20,20,30,.9), rgba(12,12,20,.9));
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow-2);
  overflow: hidden;
  text-align: left;
  backdrop-filter: blur(8px);
}
.mock__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(255,255,255,.03);
  border-bottom: 1px solid var(--border);
}
.mock__dot { width: 11px; height: 11px; border-radius: 50%; }
.mock__dot--r { background: #ff5f57; }
.mock__dot--y { background: #febc2e; }
.mock__dot--g { background: #28c840; }
.mock__url {
  margin-left: 14px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--text-dim);
  background: rgba(255,255,255,.04);
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid var(--border);
}
.mock__body {
  display: grid;
  grid-template-columns: 190px 1fr;
  min-height: 280px;
}
.mock__side {
  border-right: 1px solid var(--border);
  padding: 14px 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: rgba(255,255,255,.02);
}
.mock__side-item {
  height: 12px;
  border-radius: 6px;
  background: rgba(255,255,255,.06);
}
.mock__side-item:nth-child(1) { width: 70%; }
.mock__side-item:nth-child(2) { width: 55%; }
.mock__side-item:nth-child(3) { width: 80%; }
.mock__side-item:nth-child(4) { width: 60%; }
.mock__side-item--active {
  background: linear-gradient(90deg, var(--primary-soft), transparent);
  border: 1px solid rgba(96,165,250,.22);
}
.mock__main { padding: 20px; display: grid; gap: 16px; }
.mock__card {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 16px;
}
.mock__label { font-size: 12px; color: var(--text-dim); margin-bottom: 6px; }
.mock__value {
  font-family: var(--mono);
  font-size: 22px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 10px;
}
.mock__bar-fill {
  height: 6px;
  background: linear-gradient(90deg, var(--primary), var(--primary-strong));
  border-radius: 4px;
  transition: width .6s ease;
}
.mock__list { display: grid; gap: 6px; }
.mock__row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 13px;
  color: var(--text-muted);
}
.mock__row em { font-style: normal; margin-left: auto; color: var(--text-dim); font-size: 12px; }
.mock__row-dot { width: 8px; height: 8px; border-radius: 50%; }
.mock__row-dot--ok { background: var(--primary); box-shadow: 0 0 10px rgba(59,130,246,.75); }

/* ========= SECTION ========= */
.section { padding: 96px 0; position: relative; }
.section--stats { background: linear-gradient(180deg, transparent, rgba(20,20,30,.5) 30%, transparent); }
.section__head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section__title {
  font-size: clamp(28px, 4.5vw, 44px);
  font-weight: 700;
  letter-spacing: -.015em;
  margin: 0 0 14px;
  line-height: 1.15;
}
.section__title--light { color: var(--text); }
.section__sub { color: var(--text-muted); font-size: 17px; margin: 0; }

/* ========= FEATURES ========= */
.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.feature {
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 20px;
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
  position: relative;
  overflow: hidden;
}
.feature::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(500px 200px at 50% -10%, rgba(96,165,250,.16), transparent 60%);
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}
.feature:hover {
  transform: translateY(-4px);
  border-color: rgba(96,165,250,.4);
}
.feature:hover::before { opacity: 1; }
.feature__icon {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 12px;
  color: var(--primary);
  background: var(--primary-soft);
  border: 1px solid rgba(96,165,250,.2);
  margin-bottom: 16px;
}
.feature__icon svg { width: 22px; height: 22px; }
.feature h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 8px;
  letter-spacing: -.005em;
}
.feature p { margin: 0; color: var(--text-muted); font-size: 14px; line-height: 1.6; }

/* ========= STATS ========= */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 60px;
}
.stat {
  text-align: center;
  padding: 32px 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.015));
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.stat__num {
  font-size: clamp(32px, 5vw, 50px);
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -.02em;
  font-family: var(--mono);
  line-height: 1;
}
.stat__label {
  color: var(--text-muted);
  font-size: 13px;
  margin-top: 12px;
}

/* ========= REVIEWS ========= */
.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.review {
  margin: 0;
  padding: 26px 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015));
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.review__stars { color: var(--warning); letter-spacing: 4px; margin-bottom: 14px; font-size: 14px; }
.review blockquote {
  margin: 0 0 16px;
  color: var(--text);
  font-size: 15px;
  line-height: 1.65;
}
.review figcaption { color: var(--text-dim); font-size: 13px; }

/* ========= PROVIDERS ========= */
.section--dark {
  background:
    radial-gradient(600px 300px at 10% 50%, rgba(59,130,246,.16), transparent 60%),
    radial-gradient(600px 300px at 90% 50%, rgba(129,140,248,.16), transparent 60%),
    var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.provider {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 36px 40px;
  border-radius: 22px;
  background: rgba(10,10,15,.4);
  border: 1px solid var(--border);
}
.provider__text p { color: var(--text-muted); margin: 0 0 10px; font-size: 15px; }
.provider__text p:last-child { margin-bottom: 0; }
.provider__cta { display: flex; justify-content: flex-end; }

/* ========= CTA ========= */
.cta {
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  inset: -30% 10% auto 10%;
  height: 320px;
  background: radial-gradient(500px 200px at 50% 50%, rgba(59,130,246,.26), transparent 65%);
  pointer-events: none;
}
.cta .container { position: relative; }
.cta__title { font-size: clamp(30px, 5vw, 52px); margin: 0 0 16px; letter-spacing: -.02em; }
.cta__sub { color: var(--text-muted); font-size: 17px; max-width: 560px; margin: 0 auto 32px; }
.cta__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ========= FAQ ========= */
.faq { display: grid; gap: 12px; }
.faq__item {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s ease, background .2s ease;
}
.faq__item[open] { border-color: rgba(96,165,250,.35); background: rgba(255,255,255,.04); }
.faq__item summary {
  padding: 20px 22px;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-weight: 600;
  font-size: 15.5px;
  letter-spacing: -.005em;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  width: 28px; height: 28px;
  display: grid; place-items: center;
  border-radius: 8px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 18px;
  transition: transform .25s ease, background .2s ease, color .2s ease;
  flex: none;
}
.faq__item[open] summary::after {
  transform: rotate(45deg);
  background: var(--primary-soft);
  color: var(--primary);
  border-color: rgba(96,165,250,.35);
}
.faq__answer {
  padding: 0 22px 22px;
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.7;
}
.faq__answer ul { padding-left: 18px; margin: 0; }
.faq__answer li { margin-bottom: 6px; }
.faq__answer li::marker { color: var(--primary); }

/* ========= FOOTER ========= */
.footer {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  padding: 64px 0 28px;
  margin-top: 20px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--border);
}
.footer__brand p { color: var(--text-dim); margin: 14px 0 0; font-size: 14px; max-width: 260px; }
.footer__col h4 {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.footer__col a {
  display: block;
  padding: 6px 0;
  color: var(--text-muted);
  font-size: 14px;
  transition: color .18s ease;
}
.footer__col a:hover { color: var(--primary); }
.footer__bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--text-dim);
  font-size: 13px;
}

/* ========= RESPONSIVE ========= */
@media (max-width: 1080px) {
  .features { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .nav__menu { display: none; }
  .nav__burger { display: flex; }
  .nav__actions .btn--ghost, .nav__actions .btn--primary { display: none; }
  .nav__actions { gap: 8px; }

  .features { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .reviews { grid-template-columns: 1fr; }
  .provider { grid-template-columns: 1fr; padding: 28px 24px; }
  .provider__cta { justify-content: flex-start; }
  .mock__body { grid-template-columns: 1fr; }
  .mock__side { flex-direction: row; border-right: none; border-bottom: 1px solid var(--border); }
  .mock__side-item { height: 10px; flex: 1; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer__brand { grid-column: span 2; }
}
@media (max-width: 560px) {
  .section { padding: 72px 0; }
  .features { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .hero { padding: calc(var(--nav-h) + 40px) 0 56px; }
  .hero__cta .btn { width: 100%; }
  .cta__actions .btn { width: 100%; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__brand { grid-column: span 1; }
}

/* ========= ANIMATIONS ========= */
@keyframes heroFade {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero__eyebrow, .hero__title, .hero__subtitle, .hero__cta, .hero__mock {
  animation: heroFade .8s ease both;
}
.hero__title { animation-delay: .05s; }
.hero__subtitle { animation-delay: .12s; }
.hero__cta { animation-delay: .2s; }
.hero__mock { animation-delay: .3s; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
