* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #171321;
  --muted: #74717a;
  --purple: #7759c2;
  --canvas: #ffffff;
  --soft: #f6f3fe;
  --dark: #1f1c2e;
  --orange: #ff7a2f;
  --peach: #ffc2a0;
  --line: #d1d0d3;
}

body {
  font-family: Inter, system-ui, sans-serif;
  background: var(--canvas);
  color: var(--ink);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.navbar {
  height: 72px;
  padding: 0 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  z-index: 10;
}

.logo {
  font-weight: 800;
  font-size: 22px;
}

nav {
  display: flex;
  gap: 28px;
  color: var(--muted);
}

.nav-btn,
.btn,
button {
  border-radius: 6px;
  padding: 12px 18px;
  font-weight: 700;
  border: 1px solid var(--ink);
  cursor: pointer;
}

.nav-btn,
.btn.primary,
button {
  background: var(--ink);
  color: white;
}

.btn.secondary {
  background: white;
  color: var(--ink);
}

.hero {
  min-height: calc(100vh - 72px);
  padding: 80px 6%;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 48px;
  overflow: hidden;
}

.eyebrow {
  color: var(--purple);
  font-weight: 800;
  margin-bottom: 12px;
}

h1 {
  font-size: clamp(48px, 8vw, 96px);
  line-height: 0.98;
  letter-spacing: -3px;
  margin-bottom: 24px;
}

.subtitle {
  max-width: 660px;
  color: var(--muted);
  font-size: 20px;
}

.hero-actions {
  margin-top: 32px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-card {
  min-height: 520px;
  border-radius: 28px;
  background: radial-gradient(
    circle at 40% 20%,
    var(--peach),
    var(--orange) 38%,
    #c65a2e 70%
  );
  display: grid;
  place-items: center;
  position: relative;
}

.booth {
  width: 240px;
  height: 340px;
  background: var(--dark);
  border-radius: 28px;
  padding: 24px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.screen {
  height: 190px;
  background: white;
  border-radius: 18px;
  display: grid;
  place-items: center;
  text-align: center;
  font-weight: 900;
  color: var(--ink);
}

.face {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f6f3fe, #ffd4d8);
  margin-bottom: 8px;
}

.flash,
.slot {
  margin: 24px auto 0;
  border-radius: 999px;
  background: white;
}

.flash {
  width: 56px;
  height: 16px;
}

.slot {
  width: 130px;
  height: 10px;
  opacity: 0.5;
}

.photo-strip {
  position: absolute;
  right: 8%;
  bottom: 8%;
  background: white;
  padding: 10px;
  display: grid;
  gap: 8px;
  transform: rotate(8deg);
}

.photo-strip div {
  width: 96px;
  height: 78px;
  background: var(--soft);
}

.stats {
  margin: 0 6%;
  padding: 32px;
  border: 1px solid var(--purple);
  border-radius: 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.stats div {
  display: grid;
}

.stats strong {
  font-size: 36px;
}

.stats span {
  color: var(--muted);
}

.section {
  padding: 96px 6%;
}

.section h2,
.gallery h2,
.cta h2 {
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -1.5px;
  max-width: 860px;
  margin-bottom: 40px;
}

.grid,
.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card,
.price-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 32px;
  background: white;
}

.card.dark {
  background: var(--dark);
  color: white;
  border: none;
}

.card h3,
.price-card h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.card p,
.price-card li {
  color: var(--muted);
}

.card.dark p {
  color: #ddd;
}

.price {
  font-size: 36px;
  font-weight: 900;
  margin: 18px 0;
}

.price-card ul {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
}

.price-card li::before {
  content: "✓ ";
  color: var(--purple);
  font-weight: 900;
}

.popular {
  background: var(--dark);
  color: white;
  transform: translateY(-12px);
}

.popular li {
  color: #ddd;
}

.badge {
  display: inline-block;
  background: var(--peach);
  color: var(--ink);
  border-radius: 999px;
  padding: 6px 12px;
  font-weight: 800;
  margin-bottom: 14px;
}

.gallery {
  margin: 0 6% 96px;
  padding: 56px;
  border-radius: 28px;
  background: var(--soft);
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 32px;
  align-items: center;
}

.gallery-text p:last-child {
  color: var(--muted);
  max-width: 520px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.gallery-grid div {
  min-height: 180px;
  border-radius: 18px;
  background: linear-gradient(135deg, white, #ffd4d8);
}

.cta {
  margin: 0 6% 72px;
  padding: 64px;
  border-radius: 28px;
  background: var(--ink);
  color: white;
  text-align: center;
}

.cta p {
  color: #d8d8d8;
  margin-bottom: 28px;
}

form {
  max-width: 820px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

input,
select {
  width: 100%;
  padding: 14px;
  border-radius: 6px;
  border: 1px solid #444;
  background: white;
}

footer {
  padding: 36px 6%;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  color: var(--muted);
}

footer strong {
  color: var(--ink);
}

@media (max-width: 900px) {
  nav {
    display: none;
  }

  .hero,
  .gallery {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 48px;
  }

  .stats,
  .grid,
  .pricing,
  form {
    grid-template-columns: 1fr;
  }

  .popular {
    transform: none;
  }

  .gallery,
  .cta {
    padding: 36px 24px;
  }

  footer {
    flex-direction: column;
    gap: 8px;
  }
}
