:root {
  color-scheme: dark;
  --bg: #090a0f;
  --panel: #11131a;
  --panel-2: #171923;
  --text: #f6f8fb;
  --muted: #aeb6c6;
  --cyan: #29d9ff;
  --red: #ff3d57;
  --green: #6df2a6;
  --amber: #ffbc55;
  --line: rgba(255, 255, 255, .12);
  --shadow: 0 24px 80px rgba(0, 0, 0, .42);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 8% 12%, rgba(41, 217, 255, .14), transparent 28rem),
    radial-gradient(circle at 90% 34%, rgba(255, 61, 87, .13), transparent 24rem),
    var(--bg);
  color: var(--text);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .9), transparent 75%);
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 20;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--text);
  color: var(--bg);
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-140%);
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: min(1180px, calc(100% - 32px));
  min-height: 64px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(9, 10, 15, .74);
  box-shadow: 0 14px 50px rgba(0, 0, 0, .28);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
  transition: background .25s ease, border-color .25s ease;
}

.site-header.scrolled {
  border-color: rgba(41, 217, 255, .24);
  background: rgba(9, 10, 15, .93);
}

.brand {
  display: inline-flex;
  align-items: center;
  font-weight: 800;
  text-decoration: none;
}

.brand img {
  width: 180px;
  height: auto;
  filter: drop-shadow(0 0 18px rgba(41, 217, 255, .14));
}

.site-nav {
  display: flex;
  gap: 4px;
  justify-content: center;
}

.site-nav a {
  padding: 10px 10px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: color .2s ease, background .2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(255, 255, 255, .08);
  color: var(--text);
  outline: none;
}

.btn:focus-visible,
.header-cta:focus-visible,
.nav-toggle:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.header-cta {
  background: rgba(255, 255, 255, .08);
}

.btn:hover,
.header-cta:hover {
  transform: translateY(-2px);
}

.primary {
  border-color: transparent;
  background: linear-gradient(135deg, var(--cyan), var(--green) 54%, var(--amber));
  color: #071015;
  box-shadow: 0 18px 50px rgba(41, 217, 255, .18);
}

.secondary,
.card-btn {
  background: rgba(255, 255, 255, .08);
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 92vh;
  padding: 144px max(24px, calc((100vw - 1180px) / 2)) 56px;
  overflow: hidden;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  filter: saturate(1.2) contrast(1.08) brightness(1.16);
  animation: slowZoom 18s ease-in-out infinite alternate;
}

.hero-overlay {
  background:
    radial-gradient(circle at 84% 38%, rgba(41, 217, 255, .2), transparent 30rem),
    linear-gradient(90deg, rgba(9, 10, 15, .93) 0%, rgba(9, 10, 15, .74) 34%, rgba(9, 10, 15, .25) 58%, rgba(9, 10, 15, .02) 100%),
    linear-gradient(180deg, rgba(9, 10, 15, .08), rgba(9, 10, 15, .28) 62%, #090a0f 96%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(780px, 100%);
}

.hero-content::before {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  margin-bottom: 16px;
  border: 1px solid rgba(109, 242, 166, .34);
  border-radius: 8px;
  background: rgba(109, 242, 166, .09);
  color: var(--green);
  content: "FiveM RP • txAdmin • ESX/QBCore • MySQL";
  font-size: 12px;
  font-weight: 800;
}

.eyebrow,
.section-kicker,
.badge {
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(42px, 7vw, 84px);
  line-height: .94;
  letter-spacing: 0;
}

h2 {
  max-width: 900px;
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  font-size: 22px;
  line-height: 1.1;
}

.hero-lead,
.section-head p,
.seo-text p,
.split p,
.final-cta p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

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

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(720px, 100%);
  margin: 0;
}

.hero-stats div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .07);
  backdrop-filter: blur(12px);
}

.hero-stats dt {
  font-size: 26px;
  font-weight: 800;
}

.hero-stats dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  padding: 18px 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #0c0d12;
}

.trust-strip span {
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #dbe4ef;
  font-size: 13px;
  font-weight: 800;
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 92px 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, .7fr);
  gap: 36px;
  align-items: center;
}

.split a {
  color: var(--cyan);
  font-weight: 800;
}

.defense-panel {
  position: relative;
  min-height: 360px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid rgba(41, 217, 255, .24);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(41, 217, 255, .15), rgba(255, 61, 87, .1)),
    var(--panel);
  box-shadow: var(--shadow);
}

.defense-panel strong {
  display: block;
  margin-top: 212px;
  font-size: 24px;
}

.defense-panel span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.6;
}

.shield {
  position: absolute;
  top: 44px;
  left: 50%;
  width: 158px;
  height: 178px;
  border: 2px solid rgba(41, 217, 255, .8);
  clip-path: polygon(50% 0, 92% 18%, 82% 76%, 50% 100%, 18% 76%, 8% 18%);
  background:
    linear-gradient(145deg, rgba(41, 217, 255, .22), rgba(109, 242, 166, .08)),
    repeating-linear-gradient(90deg, transparent, transparent 13px, rgba(255, 255, 255, .08) 14px);
  box-shadow: 0 0 70px rgba(41, 217, 255, .32);
  transform: translateX(-50%);
  animation: pulseShield 2.8s ease-in-out infinite;
}

.performance-band {
  width: 100%;
  padding-right: max(24px, calc((100vw - 1180px) / 2));
  padding-left: max(24px, calc((100vw - 1180px) / 2));
  background: linear-gradient(180deg, rgba(255, 255, 255, .03), rgba(255, 255, 255, .015));
}

.feature-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.feature,
.price-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(17, 19, 26, .82);
  box-shadow: 0 20px 70px rgba(0, 0, 0, .18);
}

.feature {
  min-height: 236px;
  padding: 22px;
}

.feature p,
.price-card li,
.price-card .plan-copy,
.terminal-card li span,
details p {
  color: var(--muted);
  line-height: 1.6;
}

.feature-icon {
  display: block;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--cyan), var(--green));
  box-shadow: 0 12px 32px rgba(41, 217, 255, .18);
}

.feature-icon.cpu {
  background: conic-gradient(from 90deg, var(--cyan), var(--red), var(--green), var(--cyan));
}

.feature-icon.nvme {
  background: linear-gradient(135deg, var(--amber), var(--green));
}

.feature-icon.network {
  background: linear-gradient(135deg, var(--cyan), #ffffff);
}

.feature-icon.support {
  background: linear-gradient(135deg, var(--red), var(--amber));
}

.panel-section {
  width: 100%;
  padding-right: max(24px, calc((100vw - 1180px) / 2));
  padding-left: max(24px, calc((100vw - 1180px) / 2));
  background:
    linear-gradient(90deg, rgba(255, 61, 87, .08), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, .015), rgba(255, 255, 255, .035));
}

.panel-layout {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(360px, 1fr);
  gap: 34px;
  align-items: center;
}

.panel-layout p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.terminal-card {
  overflow: hidden;
  border: 1px solid rgba(41, 217, 255, .28);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(41, 217, 255, .08), transparent 42%),
    #080a0f;
  box-shadow: var(--shadow);
}

.terminal-top {
  display: flex;
  gap: 8px;
  padding: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  background: rgba(255, 255, 255, .05);
}

.terminal-top span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--red);
}

.terminal-top span:nth-child(2) {
  background: var(--amber);
}

.terminal-top span:nth-child(3) {
  background: var(--green);
}

.terminal-card ul {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
}

.terminal-card li {
  display: grid;
  grid-template-columns: minmax(120px, .4fr) minmax(0, 1fr);
  gap: 16px;
  padding: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.terminal-card li:last-child {
  border-bottom: 0;
}

.terminal-card strong {
  color: #f7fbff;
}

.section-head {
  display: flex;
  gap: 28px;
  align-items: end;
  justify-content: space-between;
}

.section-head h2,
.section-head p {
  flex: 1;
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.price-card {
  position: relative;
  display: flex;
  min-height: 500px;
  flex-direction: column;
  padding: 28px;
}

.price-card.highlighted {
  border-color: rgba(109, 242, 166, .55);
  background:
    linear-gradient(180deg, rgba(109, 242, 166, .11), transparent 34%),
    rgba(17, 19, 26, .94);
  box-shadow: 0 26px 90px rgba(109, 242, 166, .13);
  transform: translateY(-14px);
}

.badge {
  width: fit-content;
  padding: 7px 10px;
  border-radius: 8px;
  background: rgba(109, 242, 166, .14);
}

.plan {
  margin-bottom: 14px;
  color: #dce4ef;
  font-weight: 800;
}

.price-card h3 {
  margin-bottom: 12px;
  font-size: 42px;
}

.price-card h3 span {
  color: var(--muted);
  font-size: 16px;
  font-weight: 600;
}

.price-card ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 22px 0 28px;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 22px;
}

.price-card li::before {
  position: absolute;
  top: 10px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  content: "";
}

.card-btn {
  margin-top: auto;
}

.seo-text {
  max-width: 960px;
}

.ops-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.ops-step {
  min-height: 260px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(41, 217, 255, .08), transparent 44%),
    rgba(17, 19, 26, .82);
}

.ops-step span {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 26px;
  border: 1px solid rgba(109, 242, 166, .32);
  border-radius: 8px;
  color: var(--green);
  font-weight: 800;
}

.ops-step p {
  color: var(--muted);
  line-height: 1.6;
}

.faq {
  max-width: 900px;
}

details {
  border-top: 1px solid var(--line);
}

details:last-child {
  border-bottom: 1px solid var(--line);
}

summary {
  cursor: pointer;
  padding: 24px 0;
  font-size: 19px;
  font-weight: 800;
}

summary::marker {
  color: var(--cyan);
}

details p {
  padding-bottom: 22px;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 36px;
  align-items: center;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 70px;
  padding: 58px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(41, 217, 255, .16), rgba(255, 61, 87, .12)),
    #11131a;
  box-shadow: var(--shadow);
}

.contact-panel {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  background: rgba(9, 10, 15, .45);
}

.contact-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0 0 22px;
  list-style: none;
}

.contact-list li {
  position: relative;
  padding-left: 24px;
  color: #dbe4ef;
  font-weight: 700;
}

.contact-list li::before {
  position: absolute;
  top: 8px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--amber);
  content: "";
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  padding: 26px max(24px, calc((100vw - 1180px) / 2));
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer a {
  color: var(--cyan);
  font-weight: 800;
  text-decoration: none;
}

.revealed {
  animation: fadeLift .55s ease both;
}

@keyframes slowZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.06);
  }
}

@keyframes pulseShield {
  0%,
  100% {
    filter: drop-shadow(0 0 18px rgba(41, 217, 255, .32));
    transform: translateX(-50%) scale(1);
  }
  50% {
    filter: drop-shadow(0 0 34px rgba(109, 242, 166, .42));
    transform: translateX(-50%) scale(1.04);
  }
}

@keyframes fadeLift {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .brand img {
    width: 164px;
  }

  .nav-toggle {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    justify-self: end;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, .08);
  }

  .nav-toggle span {
    width: 20px;
    height: 2px;
    border-radius: 4px;
    background: var(--text);
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .site-header.open .site-nav {
    display: grid;
    grid-column: 1 / -1;
    justify-content: stretch;
    margin-top: 10px;
  }

  .site-header.open .site-nav a {
    background: rgba(255, 255, 255, .06);
  }

  .hero {
    min-height: auto;
    padding-top: 126px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(9, 10, 15, .72), #090a0f 88%),
      linear-gradient(90deg, rgba(9, 10, 15, .88), rgba(9, 10, 15, .48));
  }

  .hero-stats,
  .split,
  .feature-grid,
  .pricing-grid,
  .ops-grid,
  .panel-layout,
  .section-head {
    grid-template-columns: 1fr;
  }

  .section-head {
    display: grid;
  }

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

  .price-card.highlighted {
    transform: none;
  }

  .final-cta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
  }

  .brand {
    font-size: 15px;
  }

  .hero {
    padding-right: 20px;
    padding-left: 20px;
  }

  h1 {
    font-size: 42px;
  }

  .hero-lead,
  .section-head p,
  .seo-text p,
  .split p,
  .final-cta p {
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
  }

  .hero-stats,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .section,
  .final-cta {
    width: calc(100% - 28px);
  }

  .section {
    padding: 66px 0;
  }

  .performance-band {
    width: 100%;
    padding-right: 14px;
    padding-left: 14px;
  }

  .panel-section {
    padding-right: 14px;
    padding-left: 14px;
  }

  .terminal-card li {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .defense-panel {
    min-height: 330px;
    padding: 22px;
  }

  .final-cta {
    padding: 34px 22px;
  }
}
