* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: #060816;
  color: #eef2ff;
  overflow-x: hidden;
}

:root {
  --bg: #060816;
  --card: rgba(255, 255, 255, 0.05);
  --card-strong: rgba(255, 255, 255, 0.08);
  --line: rgba(255, 255, 255, 0.08);
  --muted: #9fb0d0;
  --white: #ffffff;
  --blue: #2563eb;
  --violet: #7c3aed;
  --green: #10b981;
  --gradient: linear-gradient(135deg, #0f172a 0%, #1d4ed8 55%, #7c3aed 100%);
}

.container {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.bg {
  position: fixed;
  border-radius: 999px;
  filter: blur(110px);
  opacity: 0.22;
  pointer-events: none;
  z-index: 0;
}

.bg-1 {
  width: 360px;
  height: 360px;
  background: #2563eb;
  top: -80px;
  left: -80px;
}

.bg-2 {
  width: 420px;
  height: 420px;
  background: #7c3aed;
  right: -120px;
  top: 180px;
}

.bg-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.028) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at center, black 30%, transparent 85%);
  pointer-events: none;
  z-index: 0;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(6, 8, 22, 0.68);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--gradient);
  color: #fff;
  font-size: 14px;
  box-shadow: 0 12px 30px rgba(37,99,235,0.28);
}

.nav-links,
.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
}

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

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  padding: 12px 18px;
  border-radius: 14px;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

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

.btn-primary {
  color: #fff;
  background: var(--gradient);
  box-shadow: 0 18px 40px rgba(37,99,235,0.28);
}

.btn-secondary {
  color: #fff;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
}

.btn-lg {
  padding: 15px 22px;
  border-radius: 16px;
}

.full {
  width: 100%;
}

.hero {
  padding: 76px 0 60px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 42px;
  align-items: center;
}

.pill,
.mini-pill {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #dbe7ff;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

.hero h1 {
  margin: 20px 0 18px;
  font-size: clamp(46px, 6vw, 78px);
  line-height: 0.95;
  letter-spacing: -0.06em;
  max-width: 760px;
}

.hero p {
  margin: 0;
  max-width: 680px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

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

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-points span {
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  color: #d7e2ff;
  font-size: 13px;
}

.hero-panel {
  position: relative;
  min-height: 620px;
}

.hero-panel-card {
  position: absolute;
  inset: 40px 0 90px 40px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.34);
}

.window-top {
  display: flex;
  gap: 8px;
  padding: 18px 18px 0;
}

.window-top span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.35);
}

.hero-mock {
  padding: 20px;
}

.mock-row {
  height: 18px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04));
}

.mock-row-lg {
  height: 56px;
  margin-bottom: 18px;
}

.mock-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 18px;
}

.mock-box {
  height: 120px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(37,99,235,0.18), rgba(124,58,237,0.12));
  border: 1px solid rgba(255,255,255,0.08);
}

.floating-card {
  position: absolute;
  max-width: 280px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(10,15,31,0.92);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 22px 50px rgba(0,0,0,0.34);
}

.floating-card-left {
  left: -10px;
  bottom: 30px;
  animation: float 8s ease-in-out infinite;
}

.floating-card-right {
  right: -8px;
  top: 24px;
  animation: float 6s ease-in-out infinite;
}

.floating-label {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  background: rgba(124,58,237,0.18);
  border: 1px solid rgba(124,58,237,0.28);
  color: #dcb8ff;
}

.floating-label.success {
  background: rgba(16,185,129,0.16);
  border-color: rgba(16,185,129,0.28);
  color: #a6f4d2;
}

.floating-card p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
}

.features,
.screenshots,
.pricing,
.final-cta {
  padding: 110px 0;
}

.section-head {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-head h2 {
  margin: 16px 0 12px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

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

.feature-card,
.gallery-block,
.price-card,
.cta-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
}

.feature-card {
  padding: 26px;
  border-radius: 24px;
  min-height: 220px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover,
.price-card:hover,
.shot-frame:hover {
  transform: translateY(-6px);
  border-color: rgba(124,58,237,0.36);
  box-shadow: 0 24px 40px rgba(0,0,0,0.24);
}

.icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--gradient);
  box-shadow: 0 16px 30px rgba(37,99,235,0.25);
}

.feature-card h3 {
  margin: 18px 0 10px;
  font-size: 22px;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.gallery-block {
  padding: 28px;
  border-radius: 28px;
  margin-bottom: 26px;
}

.gallery-copy {
  margin-bottom: 18px;
}

.gallery-copy h3 {
  margin: 14px 0 10px;
  font-size: 34px;
  letter-spacing: -0.04em;
}

.gallery-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.image-strip {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x proximity;
}

.image-strip::-webkit-scrollbar {
  height: 10px;
}

.image-strip::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.14);
  border-radius: 999px;
}

.shot-frame {
  flex: 0 0 min(900px, 88vw);
  scroll-snap-align: start;
  margin: 0;
  padding: 18px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.shot-frame img {
  display: block;
  width: 100%;
  height: 820px;
  object-fit: contain;
  object-position: center;
  border-radius: 18px;
  background: #0b1020;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.price-card {
  position: relative;
  padding: 28px;
  border-radius: 28px;
}

.price-card h3 {
  margin: 18px 0 10px;
  font-size: 28px;
  letter-spacing: -0.04em;
}

.price-card p {
  color: var(--muted);
  line-height: 1.7;
}

.price-card ul {
  margin: 20px 0 26px;
  padding-left: 20px;
  display: grid;
  gap: 12px;
  color: #dde7ff;
}

.featured {
  background: linear-gradient(180deg, rgba(37,99,235,0.12), rgba(124,58,237,0.10));
  border-color: rgba(124,58,237,0.36);
  box-shadow: 0 30px 60px rgba(37,99,235,0.14);
}

.top-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(16,185,129,0.16);
  border: 1px solid rgba(16,185,129,0.28);
  color: #aaf4d4;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-line {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  margin-top: 8px;
}

.price-line span {
  font-size: 56px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.06em;
}

.price-line small {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 8px;
}

.cta-card {
  padding: 32px;
  border-radius: 32px;
  background: var(--gradient);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 28px 70px rgba(37,99,235,0.25);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: center;
}

.cta-card h2 {
  margin: 16px 0 12px;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.cta-card p {
  margin: 0;
  color: #e7ecff;
  font-size: 17px;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: none;
}

.delay-1 {
  transition-delay: 0.12s;
}

.delay-2 {
  transition-delay: 0.22s;
}

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

@media (max-width: 1100px) {
  .hero-grid,
  .cta-card {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    min-height: 540px;
  }

  .hero-panel-card {
    inset: 30px 0 110px 0;
  }

  .floating-card-left {
    left: 0;
  }

  .floating-card-right {
    right: 0;
  }
}

@media (max-width: 860px) {
  .nav-links {
    display: none;
  }

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

  .nav-inner {
    min-height: auto;
    padding: 16px 0;
    flex-wrap: wrap;
  }

  .hero {
    padding-top: 34px;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-points {
    gap: 10px;
  }

  .hero-panel {
    min-height: auto;
  }

  .hero-panel-card {
    position: relative;
    inset: auto;
    margin-bottom: 16px;
  }

  .floating-card {
    position: relative;
    max-width: none;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    margin-bottom: 14px;
  }

  .shot-frame {
    flex-basis: 94vw;
    padding: 14px;
  }

  .shot-frame img {
    height: 420px;
  }

  .gallery-copy h3 {
    font-size: 26px;
  }
}