:root {
  --bg: #07111d;
  --panel: #101b29;
  --panel-2: #162437;
  --line: rgba(175, 209, 235, 0.16);
  --text: #edf6ff;
  --muted: #a8bed3;
  --soft: #6f879e;
  --pink: #ec0b83;
  --pink-2: #ff4ca9;
  --cyan: #55d7ff;
  --blue: #1998e9;
  --green: #73e6a1;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

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

.page-shell {
  min-height: 100vh;
  overflow: hidden;
}

.topbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 17, 29, 0.74);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(1160px, calc(100% - 40px));
  height: 68px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
}

.nav-links a:hover {
  color: var(--text);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  color: var(--text);
  font-weight: 750;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
  border-color: rgba(85, 215, 255, 0.42);
}

.button.primary {
  border: 0;
  background: linear-gradient(135deg, var(--pink), #ff0f72 46%, var(--cyan));
}

.button.ghost {
  background: rgba(255, 255, 255, 0.06);
}

.hero {
  min-height: 92vh;
  display: grid;
  align-items: center;
  position: relative;
  padding: 132px 0 88px;
  background:
    linear-gradient(90deg, rgba(7, 17, 29, 0.96) 0%, rgba(7, 17, 29, 0.80) 44%, rgba(7, 17, 29, 0.25) 100%),
    url("assets/pixelpilot-brand-banner.png") center right / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 180px;
  background: linear-gradient(180deg, rgba(7, 17, 29, 0), var(--bg));
  pointer-events: none;
}

.hero-inner {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 12px;
  border: 1px solid rgba(85, 215, 255, 0.22);
  border-radius: 999px;
  background: rgba(16, 27, 41, 0.72);
  color: #bfeeff;
  font-size: 13px;
  font-weight: 750;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px rgba(115, 230, 161, 0.8);
}

.hero h1 {
  max-width: 760px;
  margin: 22px 0 18px;
  font-size: clamp(48px, 7vw, 92px);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 660px;
  color: #c8d8e8;
  font-size: clamp(17px, 2vw, 21px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 760px;
  margin-top: 44px;
}

.stat {
  border: 1px solid var(--line);
  background: rgba(16, 27, 41, 0.70);
  border-radius: 14px;
  padding: 16px;
  backdrop-filter: blur(14px);
}

.stat strong {
  display: block;
  color: var(--text);
  font-size: 22px;
  margin-bottom: 3px;
}

.stat span {
  color: var(--muted);
  font-size: 13px;
}

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

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

.section-heading h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
}

.section-heading p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
}

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

.feature {
  min-height: 228px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(22, 36, 55, 0.88), rgba(16, 27, 41, 0.88));
  box-shadow: var(--shadow);
}

.feature-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 13px;
  background: rgba(85, 215, 255, 0.10);
  color: var(--cyan);
  font-weight: 900;
}

.feature h3,
.steps h3,
.pricing h3,
.faq h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

.feature p,
.steps p,
.pricing p,
.faq p {
  margin: 0;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: stretch;
}

.steps,
.pricing {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--panel);
}

.steps ol {
  margin: 24px 0 0;
  padding: 0;
  counter-reset: step;
  list-style: none;
}

.steps li {
  counter-increment: step;
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  padding: 15px 0;
  border-top: 1px solid var(--line);
}

.steps li::before {
  content: counter(step);
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--text);
  font-weight: 800;
  background: linear-gradient(135deg, var(--pink), var(--blue));
}

.steps strong {
  display: block;
  margin-bottom: 3px;
}

.steps span {
  color: var(--muted);
}

.pricing {
  position: relative;
  overflow: hidden;
}

.pricing::before {
  content: "";
  position: absolute;
  inset: -120px -90px auto auto;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(236, 11, 131, 0.42), rgba(236, 11, 131, 0));
}

.price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 22px 0 14px;
}

.price strong {
  font-size: 56px;
  line-height: 1;
}

.price span {
  color: var(--muted);
}

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

.check-list li {
  display: flex;
  gap: 10px;
  color: #d8e7f7;
}

.check-list li::before {
  content: "";
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 14px rgba(115, 230, 161, 0.5);
}

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

.faq {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px;
  background: rgba(16, 27, 41, 0.72);
}

.footer {
  padding: 32px 0 46px;
  border-top: 1px solid var(--line);
  color: var(--soft);
}

.footer-inner {
  width: min(1160px, calc(100% - 40px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 0 auto;
}

@media (max-width: 880px) {
  .nav {
    height: 62px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 112px;
    background:
      linear-gradient(180deg, rgba(7, 17, 29, 0.90), rgba(7, 17, 29, 0.80)),
      url("assets/pixelpilot-brand-banner.png") center / cover no-repeat;
  }

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

  .section-heading {
    display: block;
  }

  .section-heading p {
    margin-top: 12px;
  }
}

@media (max-width: 560px) {
  .nav,
  .hero-inner,
  .section,
  .footer-inner {
    width: min(100% - 26px, 1160px);
  }

  .hero h1 {
    font-size: 46px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .stat,
  .feature,
  .steps,
  .pricing,
  .faq {
    border-radius: 14px;
  }

  .footer-inner {
    display: block;
  }
}
