:root {
  --bg: #090f1f;
  --panel: #101b3b;
  --panel-2: #0e1834;
  --text: #e8efff;
  --muted: #afbbdf;
  --accent: #1ed3a3;
  --line: #2a3d73;
  --warn: #ffd873;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(1200px 700px at 88% -20%, #314ea84d, transparent),
    radial-gradient(900px 600px at -15% 10%, #1cd6a722, transparent),
    var(--bg);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 20px clamp(18px, 5vw, 64px);
}
.brand-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-logo {
  width: 28px;
  height: 28px;
  border-radius: 7px;
}
.brand {
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.nav-links { display: flex; gap: 16px; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: 0.93rem; }
.nav-links a:hover { color: var(--text); }

.hero-shell {
  padding: 24px clamp(18px, 6vw, 64px) 84px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 24px;
  align-items: center;
}
.hero-copy h1 {
  margin: 0 0 14px;
  line-height: 1.05;
  font-size: clamp(2rem, 5.3vw, 4rem);
}
.lead {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.62;
  max-width: 64ch;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}
.hero-stats span {
  border: 1px solid var(--line);
  color: var(--muted);
  padding: 6px 10px;
  border-radius: 999px;
  background: #101b39;
  font-size: 0.82rem;
}

.hero-note {
  margin-top: 10px;
  font-size: 0.9rem;
  color: var(--muted);
}

.hero-shot {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(180deg, #121f44 0%, #0d1632 100%);
  overflow: hidden;
  box-shadow: 0 22px 70px #00000052;
}
.hero-shot img {
  width: 100%;
  display: block;
}

.section { padding: 56px clamp(18px, 6vw, 64px); }
.section h2 {
  margin-top: 0;
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
}
.muted { color: var(--muted); }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.proof-strip {
  margin: -26px clamp(18px, 6vw, 64px) 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(180deg, #101a37 0%, #0d1731 100%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
}
.proof-item {
  padding: 14px 16px;
  border-right: 1px solid var(--line);
}
.proof-item:last-child { border-right: none; }
.proof-item strong { display: block; font-size: 0.95rem; }
.proof-item span { color: var(--muted); font-size: 0.87rem; }
.feature-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(180deg, #172550 0%, #101a36 100%);
  padding: 18px;
}
.feature-card h3 { margin-top: 0; }
.feature-card p { margin: 0; color: var(--muted); }

.gallery-wrap { padding-top: 34px; }
.gallery-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.shot-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: var(--panel-2);
}
.shot-card img {
  width: 100%;
  display: block;
}
.shot-card div { padding: 12px 14px 14px; }
.shot-card h3 { margin: 0 0 6px; font-size: 1.02rem; }
.shot-card p { margin: 0; color: var(--muted); font-size: 0.95rem; }
.shot-card.wide { grid-column: span 2; }

.band {
  background: linear-gradient(180deg, #111b38 0%, #0d1530 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.comparison {
  margin-bottom: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #0f1833;
  padding: 16px;
}
.comparison h3 {
  margin: 0 0 12px;
  font-size: 1.1rem;
}
.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.comparison-grid article {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px;
  background: #111d3d;
}
.comparison-grid h4 {
  margin: 0 0 8px;
  font-size: 0.96rem;
}
.comparison-grid ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}
.comparison-grid li { margin-bottom: 6px; }
.price-card {
  margin-top: 18px;
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: 16px;
  max-width: 430px;
  padding: 20px;
  box-shadow: 0 20px 60px #0000004d;
}
.plan { margin: 0; color: var(--muted); }
.price { margin: 8px 0 14px; font-size: 2.3rem; font-weight: 800; }
.price span { font-size: 1rem; font-weight: 700; color: var(--muted); }
.benefits {
  margin: 0 0 16px;
  padding-left: 18px;
  color: var(--muted);
}
.benefits li { margin: 0 0 7px; }
.small { color: var(--muted); font-size: 0.85rem; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 10px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
  color: #071017;
  background: var(--accent);
  transition: transform 120ms ease, background 120ms ease;
}
.button:hover { transform: translateY(-1px); background: #33e7b5; }
.button.ghost { background: transparent; color: var(--text); border-color: var(--line); }
.button.wide { width: 100%; }

.cta-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 20px; }

.faq-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px;
}
.faq-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel-2);
  padding: 16px;
}
.faq-item h3 { margin: 0 0 8px; font-size: 1rem; }
.faq-item p { margin: 0; color: var(--muted); }

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: 26px clamp(18px, 6vw, 64px) 42px;
  color: var(--muted);
  font-size: 0.95rem;
  border-top: 1px solid var(--line);
}
.footer a { color: var(--text); }
.footer-links {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 30;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--line);
  background: #0b1227f0;
  backdrop-filter: blur(8px);
  padding: 10px clamp(14px, 3vw, 24px);
}
.sticky-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.sticky-copy strong { font-size: 0.92rem; }
.sticky-copy span { color: var(--muted); font-size: 0.84rem; }
body { padding-bottom: 72px; }

@media (max-width: 980px) {
  .hero-shell {
    grid-template-columns: 1fr;
    padding-bottom: 62px;
  }
}

@media (max-width: 760px) {
  .nav-links { display: none; }
  .nav { padding: 16px 16px; }
  .hero-shell { padding: 18px 16px 52px; gap: 16px; }
  .hero-copy h1 { font-size: clamp(1.8rem, 10vw, 2.5rem); line-height: 1.07; }
  .lead { font-size: 1rem; }
  .section { padding: 42px 16px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .shot-card.wide { grid-column: auto; }
  .cta-row .button { width: 100%; }
  .footer-links { width: 100%; flex-wrap: wrap; }
  .proof-strip {
    margin: -18px 16px 14px;
    grid-template-columns: 1fr;
  }
  .proof-item {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }
  .proof-item:last-child { border-bottom: none; }
  .comparison-grid { grid-template-columns: 1fr; }
  .sticky-cta .button {
    min-width: 120px;
  }
}
