:root {
  --bg: #050608;
  --panel: #0b0f14;
  --panel-2: #101720;
  --line: rgba(255, 255, 255, 0.11);
  --line-strong: rgba(255, 255, 255, 0.18);
  --text: #f3f7fb;
  --muted: #9aa8b6;
  --soft: #d2dbe4;
  --red: #ff304f;
  --cyan: #2ee9ff;
  --green: #46f0a7;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

.loading {
  display: grid;
  min-height: 100vh;
  place-items: center;
  color: var(--muted);
}

.site-shell {
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 48, 79, 0.14), transparent 30%),
    radial-gradient(circle at 82% 12%, rgba(46, 233, 255, 0.12), transparent 31%),
    linear-gradient(180deg, #050608 0%, #071018 46%, #050608 100%);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 6, 8, 0.82);
  backdrop-filter: blur(16px);
}

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

.topbar-inner {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.home-link {
  width: 40px;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(255, 48, 79, 0.5);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 48, 79, 0.22), rgba(46, 233, 255, 0.08));
  box-shadow: 0 0 26px rgba(255, 48, 79, 0.22);
}

.brand-mark svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

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

.nav a {
  border-radius: 8px;
  color: var(--soft);
  padding: 10px 12px;
  font-size: 14px;
}

.nav a:hover,
.nav a.active {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.hero {
  position: relative;
  min-height: calc(100vh - 74px);
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(5, 6, 8, 0.98) 0%, rgba(5, 6, 8, 0.78) 38%, rgba(5, 6, 8, 0.28) 68%, rgba(5, 6, 8, 0.82) 100%),
    var(--hero-image);
  background-size: cover;
  background-position: center;
  opacity: 0.95;
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 110px;
  content: "";
  background: linear-gradient(180deg, transparent, var(--bg));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 64px 0 118px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 30px;
  height: 1px;
  content: "";
  background: var(--cyan);
}

.hero h1 {
  max-width: 720px;
  margin: 18px 0 20px;
  font-size: clamp(42px, 5.8vw, 72px);
  line-height: 1.04;
  letter-spacing: 0;
}

.hero p {
  max-width: 680px;
  margin: 0;
  color: #c9d3dc;
  font-size: 18px;
  line-height: 1.7;
}

.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 8px;
  padding: 0 18px;
  font-weight: 800;
}

.btn.primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 14px 35px rgba(255, 48, 79, 0.24);
}

.btn.secondary {
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
}

.stats-strip {
  position: absolute;
  right: 0;
  bottom: 22px;
  left: 0;
  z-index: 2;
}

.stats-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(9, 12, 16, 0.78);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.stat {
  padding: 22px;
  border-right: 1px solid var(--line);
}

.stat:last-child {
  border-right: 0;
}

.stat strong {
  display: block;
  color: var(--text);
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.1;
}

.stat span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.section {
  padding: 88px 0;
}

.section.alt {
  background: #070b10;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}

.section-head h2,
.page-title h1 {
  margin: 0;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1;
}

.section-head h2.compact-heading {
  max-width: 780px;
  font-size: clamp(24px, 2.8vw, 36px);
  line-height: 1.16;
}

.section-head p,
.page-title p {
  max-width: 620px;
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

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

.card {
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.025));
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
}

.service-card {
  display: flex;
  flex-direction: column;
  padding: 22px;
}

.card-kicker {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.card h3 {
  margin: 12px 0 10px;
  font-size: 22px;
}

.card p {
  color: var(--muted);
  line-height: 1.65;
}

.price {
  margin-top: auto;
  padding-top: 16px;
  color: var(--green);
  font-weight: 800;
}

.service-card .price {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cyan);
}

.service-card .price::after {
  content: ">";
  color: var(--red);
}

.feature-list,
.content-body ul {
  padding-left: 18px;
  color: var(--soft);
  line-height: 1.8;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.content-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  padding: 28px;
}

.content-body {
  color: var(--soft);
  font-size: 17px;
  line-height: 1.85;
  white-space: pre-line;
}

.footer {
  border-top: 1px solid var(--line);
  background: #050608;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 30px 0;
  color: var(--muted);
  flex-wrap: wrap;
}

.footer-contact {
  display: block;
  margin-top: 8px;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--soft);
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--cyan);
}

.payment-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.payment-panel h2,
.contact-card strong {
  display: block;
  margin: 10px 0;
}

.payment-grid,
.contact-grid {
  display: grid;
  gap: 14px;
}

.payment-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 20px;
}

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

.payment-card {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  padding: 14px;
}

.method-icon,
.contact-icon {
  display: grid;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
}

.method-icon svg,
.contact-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.method-icon.paypal {
  color: #7bd8ff;
}

.method-icon.stripe {
  color: #bca7ff;
}

.method-icon.crypto {
  color: #46f0a7;
}

.contact-card {
  color: inherit;
}

.contact-card p,
.payment-panel p {
  color: var(--muted);
  line-height: 1.65;
}

.product-hero {
  padding: 56px 0 28px;
  background: linear-gradient(180deg, rgba(255, 48, 79, 0.08), transparent);
}

.product-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.42fr);
  gap: 28px;
  align-items: end;
}

.price-panel {
  position: sticky;
  top: 96px;
  margin-top: 24px;
  margin-bottom: 0;
}

.price-panel strong {
  display: block;
  margin: 12px 0 2px;
  color: var(--text);
  font-size: 44px;
  line-height: 1;
}

.price-panel > span:not(.card-kicker) {
  color: var(--muted);
}

.price-lines {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.price-lines p {
  margin: 0;
  border-top: 1px solid var(--line);
  padding-top: 10px;
  color: var(--soft);
}

.product-slideshow {
  position: relative;
  overflow: hidden;
  margin-top: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #050608;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
  max-width: 760px;
}

.product-actions {
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 22px;
}

.product-actions .btn {
  width: 100%;
}

.product-actions .btn.secondary {
  border-color: rgba(46, 233, 255, 0.32);
}

.implementation-highlight {
  position: relative;
  overflow: hidden;
  margin-top: 24px;
  max-width: 760px;
  border: 1px solid rgba(46, 233, 255, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(46, 233, 255, 0.11), rgba(255, 48, 79, 0.08)),
    rgba(255, 255, 255, 0.045);
  padding: 20px;
  box-shadow: 0 18px 50px rgba(0, 229, 255, 0.08);
}

.implementation-highlight::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--red), transparent 78%);
}

.implementation-highlight h2 {
  margin: 8px 0 12px;
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1.12;
}

.implementation-highlight .feature-list {
  margin: 0;
  padding-left: 18px;
}

.slide-track {
  display: flex;
  width: 300%;
  transition: transform 520ms ease;
  will-change: transform;
}

.slide-track figure {
  position: relative;
  width: 33.333%;
  margin: 0;
  aspect-ratio: 16 / 8.4;
  background: #050608;
}

.slide-track img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
}

.slide-track img.align-bottom {
  object-position: bottom left;
}

.slide-track figcaption {
  position: absolute;
  right: 10px;
  bottom: 22px;
  left: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(5, 6, 8, 0.78);
  color: var(--text);
  padding: 8px 10px;
  font-size: 13px;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.slide-dots {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  gap: 6px;
}

.slide-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.36);
  transition: background 180ms ease, transform 180ms ease;
}

.slide-dots span.active {
  background: rgba(255, 255, 255, 0.9);
  transform: scale(1.22);
}

.slide-controls {
  pointer-events: none;
  position: absolute;
  inset: 0;
}

.slide-control {
  pointer-events: auto;
  position: absolute;
  top: 50%;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(5, 6, 8, 0.72);
  color: var(--text);
  font-size: 30px;
  line-height: 1;
  transform: translateY(-50%);
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.slide-control:hover {
  border-color: rgba(46, 233, 255, 0.55);
  background: rgba(18, 28, 34, 0.86);
  transform: translateY(-50%) scale(1.04);
}

.slide-control.prev {
  left: 12px;
}

.slide-control.next {
  right: 12px;
}

.product-content .section-inner {
  display: grid;
  gap: 18px;
}

.product-content {
  padding-top: 22px;
}

.product-section {
  position: relative;
  overflow: hidden;
}

.product-section::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, rgba(0, 229, 255, 0.8), rgba(255, 48, 79, 0.55), transparent 72%);
}

.product-section::after {
  content: "";
  position: absolute;
  right: -90px;
  top: -90px;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(0, 229, 255, 0.1);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.1), transparent 62%);
  pointer-events: none;
}

.product-section-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.product-section h2 {
  margin: 0;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.12;
}

.product-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(0, 229, 255, 0.28);
  border-radius: 8px;
  color: var(--cyan);
  background:
    linear-gradient(145deg, rgba(0, 229, 255, 0.14), rgba(255, 48, 79, 0.08)),
    rgba(255, 255, 255, 0.04);
  box-shadow: 0 14px 36px rgba(0, 229, 255, 0.08);
}

.product-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-icon-alert,
.product-icon-firewall,
.product-icon-companion {
  border-color: rgba(255, 48, 79, 0.35);
  color: var(--red);
  background:
    linear-gradient(145deg, rgba(255, 48, 79, 0.16), rgba(0, 229, 255, 0.07)),
    rgba(255, 255, 255, 0.04);
}

.product-icon-server,
.product-icon-refresh,
.product-icon-whitelist,
.product-icon-rocket,
.product-icon-process,
.product-icon-hash {
  border-color: rgba(43, 255, 171, 0.28);
  color: var(--green);
  background:
    linear-gradient(145deg, rgba(43, 255, 171, 0.14), rgba(0, 229, 255, 0.07)),
    rgba(255, 255, 255, 0.04);
}

.product-section p {
  position: relative;
  z-index: 1;
  color: var(--soft);
  line-height: 1.75;
}

.product-section .feature-list {
  position: relative;
  z-index: 1;
  columns: 2;
  column-gap: 34px;
  padding-left: 0;
  list-style: none;
}

.product-section .feature-list li {
  position: relative;
  break-inside: avoid;
  padding-left: 25px;
  margin-bottom: 6px;
}

.product-section .feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: linear-gradient(135deg, var(--cyan), var(--red));
  box-shadow: 0 0 14px rgba(0, 229, 255, 0.28);
}

.product-final {
  border-color: rgba(255, 48, 79, 0.34);
  background: linear-gradient(180deg, rgba(255, 48, 79, 0.095), rgba(255, 255, 255, 0.035));
}

@media (max-width: 860px) {
  .topbar-inner,
  .section-head,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    min-height: auto;
    overflow: visible;
    padding-bottom: 28px;
  }

  .hero-content {
    padding: 58px 0 20px;
  }

  .stats-strip {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    margin-top: 0;
  }

  .stats-inner,
  .grid,
  .split,
  .product-hero-grid,
  .payment-layout,
  .payment-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .price-panel {
    position: static;
  }

  .product-section .feature-list {
    columns: 1;
  }

  .stats-inner {
    display: grid;
  }

  .stat {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stat:last-child {
    border-bottom: 0;
  }
}
