:root {
  --primary: #2E86FF;
  --secondary: #16213E;
  --accent: #4EA8FF;
  --bg: #0D1321;
  --text: #E8EDF5;
  --muted: #9BAECD;
  --card: rgba(11, 22, 40, 0.72);
  --line: rgba(255, 255, 255, 0.14);
  --glow: rgba(46, 134, 255, 0.32);
  --radius: 18px;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 10% 10%, #12325f 0%, transparent 40%),
              radial-gradient(circle at 90% 20%, #15325c 0%, transparent 34%),
              linear-gradient(140deg, #090f1a 0%, #101b31 45%, #0e1a2f 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

h1, h2, h3 {
  font-family: "Sora", "Segoe UI", sans-serif;
  line-height: 1.2;
  margin: 0;
}

p {
  margin: 0;
}

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

a,
button {
  -webkit-tap-highlight-color: transparent;
}

.bg-grid {
  position: fixed;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at center, black 30%, transparent 86%);
  z-index: -3;
}

.aurora {
  position: fixed;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  filter: blur(70px);
  z-index: -2;
  opacity: 0.32;
  animation: float 16s ease-in-out infinite;
}

.aurora-one {
  left: -120px;
  top: -140px;
  background: var(--primary);
}

.aurora-two {
  right: -130px;
  bottom: -150px;
  background: #1f5aa6;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-25px) translateX(18px); }
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(7, 12, 22, 0.64);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

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

.brand-logo {
  width: 38px;
  height: 38px;
  object-fit: contain;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  padding: 5px;
  box-shadow: 0 12px 26px var(--glow);
}

.brand-text {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.menu-toggle {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border-radius: 999px;
  min-height: 44px;
  padding: 10px 14px;
  font-weight: 700;
}

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

.mobile-menu {
  display: none;
}

.nav-links a:hover {
  color: #fff;
}

.hero {
  padding: 84px 0 54px;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 22px;
}

.hero-media {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(8, 16, 30, 0.84);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-media img {
  display: block;
  width: 100%;
  height: auto;
}

.eyebrow {
  color: #b8d4ff;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.hero-title {
  margin-top: 14px;
  font-size: clamp(2rem, 4vw, 3.8rem);
  max-width: 16ch;
}

.hero-copy {
  margin-top: 18px;
  max-width: 64ch;
  color: var(--muted);
  font-size: 1.08rem;
}

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

.btn {
  border-radius: 999px;
  padding: 12px 20px;
  min-height: 44px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  box-shadow: 0 14px 34px var(--glow);
}

.btn-secondary,
.btn-ghost {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.03);
}

.btn-secondary:hover,
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

.hero-stats {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.hero-stats article {
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}

.hero-stats h2 {
  font-size: 1.35rem;
}

.hero-stats p {
  color: var(--muted);
  margin-top: 6px;
}

.section {
  padding: 66px 0;
}

.section-head {
  margin-bottom: 28px;
}

.section-head h2 {
  margin-top: 12px;
  font-size: clamp(1.5rem, 2.5vw, 2.4rem);
}

.section-copy {
  margin-top: 12px;
  max-width: 62ch;
  color: var(--muted);
}

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

.feature-card,
.price-card,
.faq details {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.feature-card {
  padding: 22px;
}

.feature-card h3 {
  font-size: 1.15rem;
}

.feature-card p {
  margin-top: 8px;
  color: var(--muted);
}

.shot-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.shot {
  margin: 0;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.shot-featured {
  grid-column: 1 / -1;
}

.shot-frame {
  padding: 18px 18px 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
}

.shot img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(4, 10, 18, 0.72);
}

.shot figcaption {
  padding: 14px 16px 18px;
  color: var(--muted);
  font-size: 0.96rem;
  display: grid;
  gap: 6px;
}

.shot figcaption strong {
  color: #f5f9ff;
  font-family: "Sora", sans-serif;
  font-size: 1.03rem;
}

.shot-kicker {
  color: #b8d4ff;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.shot-copy {
  color: var(--muted);
}

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

.price-card {
  position: relative;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transform-style: preserve-3d;
}

.price-card:hover {
  border-color: rgba(78, 168, 255, 0.56);
}

.price-card.featured {
  background: linear-gradient(180deg, rgba(46, 134, 255, 0.24), rgba(11, 22, 40, 0.82));
  border-color: rgba(78, 168, 255, 0.62);
}

.badge {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
}

.plan-name {
  font-weight: 700;
  color: #cbe1ff;
}

.plan-price {
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: 2.05rem;
}

.plan-price span {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--muted);
  margin-left: 8px;
}

.price-card ul {
  margin: 2px 0 2px 20px;
  padding: 0;
  color: var(--muted);
}

.contact-note {
  margin-top: 22px;
  color: var(--muted);
}

.contact-note a {
  color: #d9ebff;
  text-decoration: underline;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq details {
  padding: 16px 18px;
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
}

.faq p {
  margin-top: 10px;
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 26px 0 38px;
  color: var(--muted);
}

.mobile-cta {
  display: none;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-wrap a {
  color: #d9ebff;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.show {
  opacity: 1;
  transform: none;
}

.delay-1 { transition-delay: 100ms; }
.delay-2 { transition-delay: 180ms; }
.delay-3 { transition-delay: 260ms; }
.delay-4 { transition-delay: 340ms; }

@media (max-width: 980px) {
  .site-header {
    position: sticky;
  }

  .nav-wrap {
    min-height: 70px;
    gap: 10px;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links {
    display: none;
  }

  .btn-ghost {
    display: none;
  }

  .mobile-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    z-index: 30;
    padding: 12px;
    border-top: 1px solid var(--line);
    background: rgba(7, 12, 22, 0.98);
    backdrop-filter: blur(14px);
  }

  .mobile-menu[hidden] {
    display: none;
  }

  .mobile-menu:not([hidden]) {
    display: grid;
    gap: 10px;
  }

  .mobile-menu a {
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.03);
  }

  .mobile-menu .btn {
    width: 100%;
    text-align: center;
  }

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

  .hero {
    padding-top: 52px;
  }

  .hero-title {
    max-width: 100%;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-media {
    border-radius: 16px;
  }

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

  .shot-featured {
    grid-column: auto;
  }

  .shot-frame {
    padding: 14px 14px 0;
  }

  .mobile-cta {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    z-index: 35;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(7, 12, 22, 0.94);
    backdrop-filter: blur(10px);
  }

  .site-footer {
    padding-bottom: 104px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(1120px, 94vw);
  }

  .section {
    padding: 52px 0;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  .reveal,
  .aurora {
    animation: none !important;
    transition: none !important;
  }

  html {
    scroll-behavior: auto;
  }
}
