:root {
  --bg: #07070b;
  --panel: rgba(255,255,255,0.06);
  --panel2: rgba(255,255,255,0.08);
  --stroke: rgba(255,255,255,0.12);
  --text: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.72);
  --muted2: rgba(255,255,255,0.55);
  --brand1: #667eea;
  --brand2: #764ba2;
  --accent: #2ecc71;
  --shadow: 0 20px 70px rgba(0,0,0,0.55);
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--text);
  background:
    radial-gradient(1200px 800px at 20% 15%, rgba(102, 126, 234, 0.20), transparent 60%),
    radial-gradient(1200px 800px at 80% 20%, rgba(118, 75, 162, 0.18), transparent 55%),
    radial-gradient(900px 900px at 50% 80%, rgba(46, 204, 113, 0.10), transparent 55%),
    var(--bg);
}

a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding-left: 40px;
  padding-right: 40px;
}

.muted { color: var(--muted); }
.fineprint { color: var(--muted2); font-size: 13px; margin-top: 14px; }
.divider { height: 1px; background: var(--stroke); margin: 16px 0; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7,7,11,0.55);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.topbar__inner {
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: 0.2px;
}

.brand__mark {
  width: 34px;
  height: 34px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--brand1), var(--brand2));
  box-shadow: 0 12px 30px rgba(102,126,234,0.22);
}

.brand__mark--img {
  background: transparent;
  border: none;
  box-shadow: none;
}

.brand__mark--img img {
  display: block;
  width: 30px;
  height: 30px;
  object-fit: contain;
  filter: drop-shadow(0 10px 22px rgba(0,0,0,0.45));
}

.brand--small .brand__mark { width: 30px; height: 30px; border-radius: 10px; }
.brand__name { font-size: 16px; }

.nav {
  display: flex;
  gap: 18px;
  align-items: center;
}

.nav a {
  color: rgba(255,255,255,0.78);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
}

.nav a:hover { color: rgba(255,255,255,0.95); text-decoration: none; }

.topbar__cta { display: flex; gap: 10px; }

.hamburger {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  cursor: pointer;
}

.hamburger span {
  display: block;
  height: 2px;
  width: 18px;
  background: rgba(255,255,255,0.86);
  margin: 4px auto;
  border-radius: 2px;
}

.mobile-nav {
  display: none;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.mobile-nav__inner {
  padding: 14px 0 18px;
  display: grid;
  gap: 12px;
}

.mobile-nav a { color: rgba(255,255,255,0.9); font-weight: 700; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.94);
  font-weight: 800;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}

.btn:hover { text-decoration: none; background: rgba(255,255,255,0.09); }

.btn--primary {
  border: none;
  background: linear-gradient(135deg, var(--brand1), var(--brand2));
  box-shadow: 0 18px 44px rgba(102,126,234,0.24);
}

.btn--primary:hover { filter: brightness(1.05); }

.btn--ghost { background: rgba(255,255,255,0.04); }

.btn--lg { padding: 14px 18px; font-size: 15px; border-radius: 14px; }

.hero {
  padding: 12px 0 10px;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 360px);
  gap: 16px;
  align-items: stretch;
}

.hero__copy { display: flex; flex-direction: column; justify-content: flex-start; padding-top: 2px; }

.eyebrow {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.85);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.3px;
}

.hero h1 {
  margin: 12px 0 10px;
  font-size: 44px;
  line-height: 1.02;
  letter-spacing: -1px;
}

.hero h1 {
  background: linear-gradient(135deg, rgba(255,255,255,0.98), rgba(255,255,255,0.74));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  color: rgba(255,255,255,0.78);
  font-size: 16px;
  line-height: 1.55;
  margin: 0 0 14px;
}

.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Glanceable value grid */
.valuegrid {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.valuecard {
  padding: 14px 14px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.12);
  background:
    radial-gradient(400px 160px at 20% 0%, rgba(102,126,234,0.14), transparent 60%),
    rgba(255,255,255,0.04);
}

.valuecard__title {
  margin-top: 2px;
  font-weight: 950;
  font-size: 18px;
  color: rgba(255,255,255,0.94);
}

.valuecard__text {
  margin-top: 6px;
  color: rgba(255,255,255,0.72);
  font-weight: 650;
  line-height: 1.45;
}

.hero__meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.pill {
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.84);
  font-weight: 700;
  font-size: 12px;
}

/* (credits-mini removed from layout; keep styles if you re-add later) */

.hero__panel {
  padding: 10px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  overflow: hidden;
}

/* Right panel: 16:9 previews + minimal carousel */
.media {
  display: grid;
  gap: 8px;
}

.shots {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.shot {
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02)),
    radial-gradient(500px 240px at 20% 0%, rgba(102,126,234,0.20), transparent 60%),
    rgba(0,0,0,0.35);
  position: relative;
}

.shot--alt {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02)),
    radial-gradient(500px 240px at 80% 0%, rgba(118,75,162,0.18), transparent 60%),
    rgba(0,0,0,0.35);
}

.shot__label {
  position: absolute;
  left: 10px;
  bottom: 10px;
  padding: 7px 9px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.45);
  color: rgba(255,255,255,0.88);
  font-weight: 850;
  font-size: 11px;
}

/* Legacy (kept, but no longer used) */
.showcase {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.35);
}

.showcase__top {
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
}

.showcase__title { color: rgba(255,255,255,0.82); font-size: 13px; font-weight: 800; }
.showcase__controls { display: inline-flex; gap: 8px; opacity: 0.8; }
.winbtn { width: 10px; height: 10px; border-radius: 2px; background: rgba(255,255,255,0.26); border: 1px solid rgba(0,0,0,0.35); }
.winbtn--x { background: rgba(255,255,255,0.18); }

.showcase__body { padding: 14px; }

.carousel__player {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(0,0,0,0.35);
  aspect-ratio: 16 / 9;
  display: grid;
  position: relative;
}

.carousel__video {
  width: 100%;
  height: 100%;
  display: block;
  background: #000;
}

.carousel__overlay {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  padding: 9px 11px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(10px);
}

.carousel__meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-top: 8px;
}

.carousel__title { font-weight: 950; font-size: 14px; color: rgba(255,255,255,0.92); }
.carousel__byline { margin-top: 4px; font-weight: 750; font-size: 12px; color: rgba(255,255,255,0.72); }
.carousel__nav { display: flex; gap: 10px; }

.carousel__dots {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 0;
}

.dotbtn {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.14);
  cursor: pointer;
}

.dotbtn[aria-current=\"true\"] {
  width: 18px;
  background: linear-gradient(135deg, var(--brand1), var(--brand2));
  border: none;
  box-shadow: 0 0 0 3px rgba(102,126,234,0.18), 0 16px 30px rgba(102,126,234,0.22);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 14px;
}

.stat {
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
}

.stat__k { color: rgba(255,255,255,0.78); font-weight: 800; font-size: 12px; }
.stat__v { margin-top: 6px; color: rgba(255,255,255,0.62); font-weight: 600; font-size: 12px; line-height: 1.35; }

.section { padding: 28px 0; }
.section--soft {
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.00));
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.section__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.section__head h2 { margin: 0; font-size: 28px; letter-spacing: -0.4px; }
.section__head p { margin: 0; color: rgba(255,255,255,0.72); }

.steps {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.step {
  padding: 16px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
}

.step__num {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 900;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
}

.step h3 { margin: 12px 0 6px; font-size: 16px; }
.step p { margin: 0; color: rgba(255,255,255,0.70); line-height: 1.5; font-size: 14px; }

.cards {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.card {
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
}

.card h3 { margin: 0 0 8px; font-size: 18px; }
.card p { margin: 0 0 12px; color: rgba(255,255,255,0.70); line-height: 1.55; }
.card ul { margin: 0; padding-left: 18px; color: rgba(255,255,255,0.72); }
.card li { margin: 6px 0; }

.pricing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 18px;
}

.pricing__box {
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
}

.pricing__line {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-weight: 800;
}

.pricing__line:last-child { border-bottom: none; }

.checklist { list-style: none; padding-left: 0; margin: 12px 0 0; }
.checklist li {
  padding-left: 26px;
  margin: 10px 0;
  position: relative;
  color: rgba(255,255,255,0.76);
  font-weight: 650;
}
.checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 900;
}

.download {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.12);
  background:
    radial-gradient(500px 240px at 20% 0%, rgba(102,126,234,0.20), transparent 60%),
    radial-gradient(500px 240px at 80% 0%, rgba(118,75,162,0.18), transparent 60%),
    rgba(255,255,255,0.04);
  box-shadow: var(--shadow);
}

.download__actions { display: flex; gap: 12px; flex-wrap: wrap; }

.faq { display: grid; gap: 10px; margin-top: 18px; }

details {
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  padding: 14px 16px;
}

summary {
  cursor: pointer;
  font-weight: 850;
}

details p { margin: 10px 0 0; color: rgba(255,255,255,0.72); line-height: 1.55; }

.footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 26px 0;
  color: rgba(255,255,255,0.72);
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}

/* Desktop: make it truly one-screen */
@media (min-width: 980px) {
  body { overflow: hidden; }
  .footer {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 10px 0;
    font-size: 12px;
    background: rgba(7,7,11,0.55);
    backdrop-filter: blur(14px);
    border-top: 1px solid rgba(255,255,255,0.08);
  }

  /* 68px header + ~44px footer */
  .hero { height: calc(100vh - 68px - 44px); display: flex; align-items: center; }
  .hero__grid { width: 100%; }
  .hero__panel { height: 100%; }
}

/* Responsive */
@media (max-width: 980px) {
  .container { padding-left: 24px; padding-right: 24px; }
  .hero__grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .cards { grid-template-columns: 1fr; }
  .pricing { grid-template-columns: 1fr; }
  .download { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 760px) {
  .container { padding-left: 16px; padding-right: 16px; }
  .nav { display: none; }
  .hamburger { display: inline-block; }
  .mobile-nav { display: block; }
  .mobile-nav[aria-hidden="true"] { display: none; }
  .hero h1 { font-size: 40px; }
}

