
:root {
  --bg: #07080a;
  --bg-soft: #101215;
  --panel: rgba(18, 20, 24, 0.82);
  --panel-strong: rgba(20, 23, 28, 0.96);
  --line: rgba(255, 255, 255, 0.10);
  --line-strong: rgba(255, 255, 255, 0.18);
  --text: #f2f4f7;
  --muted: #9fa6b1;
  --teal: #1ef2c6;
  --teal-2: #13cfa8;
  --teal-glow: rgba(30, 242, 198, 0.22);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(30, 242, 198, 0.07), transparent 28%),
    radial-gradient(circle at top right, rgba(0, 110, 255, 0.06), transparent 24%),
    linear-gradient(180deg, #07080a 0%, #090b0e 40%, #050608 100%);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.page-glow {
  position: fixed;
  width: 440px;
  height: 440px;
  border-radius: 999px;
  filter: blur(90px);
  z-index: -1;
  opacity: 0.65;
}
.page-glow-left {
  top: 20px;
  left: -120px;
  background: rgba(30, 242, 198, 0.11);
}
.page-glow-right {
  top: 120px;
  right: -120px;
  background: rgba(19, 207, 168, 0.08);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(7, 8, 10, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  gap: 18px;
}
.brand {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
}
.brand-title { font-size: 1.8rem; font-weight: 800; letter-spacing: -0.03em; }
.brand-subtitle { margin-top: 6px; color: #3ea2ff; font-size: 0.95rem; font-weight: 600; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.02);
}
.site-nav a {
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 600;
  padding: 12px 16px;
  border-radius: 999px;
  transition: transform .22s ease, color .22s ease, background .22s ease, box-shadow .22s ease;
}
.site-nav a:hover {
  color: var(--text);
  background: rgba(255,255,255,0.05);
  transform: translateY(-1px);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06);
}

.section { padding: 96px 0; }
.hero { padding-top: 72px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 42px;
  align-items: center;
}
.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 700;
}
.eyebrow::before,
.section-kicker::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--teal);
  box-shadow: 0 0 18px var(--teal-glow);
}
.hero h1 {
  margin: 18px 0 18px;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}
.hero h1 span {
  color: var(--teal);
  text-shadow: 0 0 24px var(--teal-glow);
}
.hero-text,
.section-heading p,
.pricing-copy p,
.contact-card p,
.faq-card p,
.feature-card p,
.price-note,
.price-list li,
.site-footer p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.04rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 14px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease, background .24s ease, color .24s ease;
}
.button:hover {
  transform: translateY(-2px) scale(1.01);
}
.button-primary {
  background: linear-gradient(180deg, #28f1ca 0%, #15cfa6 100%);
  color: #05110e;
  box-shadow: 0 14px 36px rgba(20, 207, 168, 0.25);
}
.button-primary:hover {
  box-shadow: 0 18px 44px rgba(20, 207, 168, 0.34);
}
.button-ghost,
.button-outline {
  background: rgba(255,255,255,0.02);
  color: var(--text);
  border-color: var(--line-strong);
}
.button-ghost:hover,
.button-outline:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(30,242,198,0.42);
  box-shadow: 0 0 0 6px rgba(30,242,198,0.07);
}
.button-small {
  min-height: 46px;
  padding: 0 18px;
}
.button-full { width: 100%; }

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}
.meta-card,
.feature-card,
.faq-card,
.price-card,
.contact-card,
.shot-card {
  background: linear-gradient(180deg, rgba(23, 26, 31, 0.9) 0%, rgba(16, 18, 22, 0.92) 100%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.meta-card {
  padding: 18px;
  border-radius: var(--radius-md);
}
.meta-card strong {
  display: block;
  font-size: 0.98rem;
  margin-bottom: 8px;
}
.meta-card span {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.5;
}

.plugin-window {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,0.12);
  background: linear-gradient(180deg, rgba(18, 20, 24, 0.94) 0%, rgba(12, 14, 17, 0.98) 100%);
  box-shadow: 0 34px 80px rgba(0,0,0,0.54), 0 0 0 1px rgba(30,242,198,0.08);
  transition: transform .35s ease, box-shadow .35s ease;
}
.plugin-window:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 44px 96px rgba(0,0,0,0.62), 0 0 0 1px rgba(30,242,198,0.14);
}
.plugin-window-top {
  display: flex;
  gap: 8px;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.plugin-window-top span {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: rgba(255,255,255,0.16);
}
.plugin-window img {
  width: 100%;
  height: auto;
}

.section-heading { max-width: 760px; margin-bottom: 34px; }
.section-heading h2,
.pricing-copy h2,
.contact-card h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 14px 0 14px;
}
.feature-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.feature-card,
.faq-card {
  padding: 28px;
  border-radius: 22px;
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}
.feature-card:hover,
.faq-card:hover,
.shot-card:hover,
.price-card:hover,
.contact-card:hover {
  transform: translateY(-6px);
  border-color: rgba(30,242,198,0.28);
  box-shadow: 0 30px 70px rgba(0,0,0,0.48), 0 0 0 1px rgba(30,242,198,0.12);
}
.feature-card h3,
.faq-card h3 {
  margin: 0 0 12px;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}
.shots-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.shot-card {
  border-radius: 24px;
  overflow: hidden;
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}
.shot-card img { aspect-ratio: 16/9; object-fit: cover; width: 100%; }
.shot-card figcaption {
  padding: 16px 18px 18px;
  color: var(--text);
  font-weight: 700;
}

.pricing-wrap {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 420px);
  gap: 26px;
  align-items: start;
}
.price-card {
  padding: 30px;
  border-radius: 24px;
}
.price-label {
  color: var(--muted);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
}
.price-value {
  margin-top: 12px;
  font-size: clamp(3rem, 6vw, 4.6rem);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.05em;
}
.price-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 24px;
}
.price-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 14px;
}
.price-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--teal);
  font-weight: 800;
}

.contact-card {
  padding: 34px;
  border-radius: 26px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}
.contact-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.site-footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 32px 0 48px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
}
.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-links a {
  color: var(--muted);
  transition: color .2s ease, transform .2s ease;
}
.footer-links a:hover {
  color: var(--teal);
  transform: translateY(-1px);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .75s ease, transform .75s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .12s; }
.reveal-delay-2 { transition-delay: .22s; }

@media (max-width: 1080px) {
  .hero-grid,
  .pricing-wrap,
  .feature-grid,
  .faq-grid,
  .shots-grid {
    grid-template-columns: 1fr;
  }
  .hero-meta { grid-template-columns: 1fr; }
}

@media (max-width: 920px) {
  .header-inner {
    flex-wrap: wrap;
    justify-content: center;
    padding: 14px 0;
  }
  .site-nav {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    border-radius: 20px;
  }
  .contact-card,
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .container { width: min(var(--container), calc(100% - 24px)); }
  .section { padding: 72px 0; }
  .hero { padding-top: 52px; }
  .site-nav a { padding: 10px 12px; font-size: 0.92rem; }
  .button { width: 100%; }
  .hero-actions { flex-direction: column; }
  .brand-title { font-size: 1.55rem; }
}
