:root {
  --bg: #07060f;
  --bg2: #0b0a16;
  --card: rgba(255, 255, 255, 0.07);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.72);
  --muted2: rgba(255, 255, 255, 0.55);
  --border: rgba(255, 255, 255, 0.12);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  --accent: #7c3aed;
  --accent2: #22d3ee;
  --radius: 18px;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  color: var(--text);
  background: radial-gradient(1000px 500px at 15% 0%, rgba(124, 58, 237, 0.22), transparent 60%),
    radial-gradient(900px 500px at 85% 15%, rgba(34, 211, 238, 0.18), transparent 55%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial,
    "Apple Color Emoji", "Segoe UI Emoji";
  line-height: 1.5;
}

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

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.8);
  border: 1px solid var(--border);
  color: var(--text);
}

.skip-link:focus {
  left: 12px;
  z-index: 50;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(7, 6, 15, 0.6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}

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

.brand:hover {
  text-decoration: none;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.45), rgba(34, 211, 238, 0.25));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 10px 25px rgba(124, 58, 237, 0.22);
}

.brand-name {
  font-weight: 720;
  letter-spacing: -0.02em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  color: var(--muted);
}

.nav a {
  padding: 8px 10px;
  border-radius: 12px;
}

.nav a:hover {
  background: rgba(255, 255, 255, 0.06);
  text-decoration: none;
  color: var(--text);
}

.nav-cta {
  color: var(--text) !important;
  background: rgba(124, 58, 237, 0.22);
  border: 1px solid rgba(124, 58, 237, 0.45);
}

.nav-cta:hover {
  background: rgba(124, 58, 237, 0.3) !important;
}

.hero {
  padding: 70px 0 40px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: center;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 13px;
  margin: 0 0 16px 0;
}

h1 {
  margin: 0 0 14px 0;
  line-height: 1.05;
  letter-spacing: -0.035em;
  font-size: clamp(38px, 4.2vw, 56px);
}

.lead {
  margin: 0 0 18px 0;
  color: var(--muted);
  font-size: 18px;
  max-width: 52ch;
}

.cta-row {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin: 22px 0 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 14px;
  padding: 12px 14px;
  font-weight: 650;
  letter-spacing: -0.01em;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.button:hover {
  text-decoration: none;
  transform: translateY(-1px);
  transition: transform 140ms ease, background 140ms ease;
}

.button.primary {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.9), rgba(34, 211, 238, 0.55));
  border-color: rgba(255, 255, 255, 0.18);
}

.button.ghost {
  background: rgba(255, 255, 255, 0.03);
}

.hero-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--muted2);
  display: grid;
  gap: 10px;
  font-size: 14px;
}

.hero-bullets li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.hero-bullets li::before {
  content: "✦";
  color: rgba(34, 211, 238, 0.9);
  margin-top: 1px;
}

.hero-art {
  position: relative;
  min-height: 470px;
}

.shot {
  position: absolute;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow);
  background: rgba(255, 255, 255, 0.04);
}

.shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shot-a {
  width: min(420px, 90%);
  height: 430px;
  left: 0;
  top: 24px;
  transform: rotate(-2deg);
}

.shot-b {
  width: 320px;
  height: 320px;
  right: 0;
  top: 110px;
  transform: rotate(4deg);
  border-radius: 26px;
}

.sparkles {
  position: absolute;
  inset: -20px;
  pointer-events: none;
  background: radial-gradient(400px 180px at 40% 15%, rgba(124, 58, 237, 0.22), transparent 70%),
    radial-gradient(320px 220px at 72% 55%, rgba(34, 211, 238, 0.22), transparent 65%);
  filter: blur(1px);
  animation: floaty 7s ease-in-out infinite;
}

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

.section {
  padding: 58px 0;
}

.section.alt {
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

h2 {
  margin: 0;
  font-size: 28px;
  letter-spacing: -0.02em;
}

.section-lead {
  margin: 10px 0 26px;
  color: var(--muted);
  max-width: 70ch;
}

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

.card {
  padding: 18px 18px 16px;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.26);
}

.card-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(124, 58, 237, 0.22);
  border: 1px solid rgba(124, 58, 237, 0.4);
  font-weight: 720;
  margin-bottom: 12px;
}

.card h3 {
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}

.tile {
  grid-column: span 4;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.25);
  position: relative;
}

.tile:hover {
  transform: translateY(-2px);
  transition: transform 160ms ease;
}

.tile img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.tile.tall {
  grid-column: span 6;
}

.tile.tall img {
  aspect-ratio: 9 / 16;
}

.faq {
  display: grid;
  gap: 10px;
  max-width: 820px;
}

details {
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  padding: 12px 14px;
}

summary {
  cursor: pointer;
  font-weight: 650;
}

details p {
  margin: 10px 0 0;
  color: var(--muted);
}

.site-footer {
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.18);
}

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

.footer-brand {
  font-weight: 720;
  letter-spacing: -0.02em;
}

.footer-note {
  font-size: 13px;
  color: var(--muted2);
  margin-top: 4px;
}

.footer-links {
  display: flex;
  gap: 14px;
  color: var(--muted);
  font-size: 14px;
}

.lightbox {
  width: min(920px, calc(100% - 24px));
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  padding: 0;
  background: rgba(10, 9, 18, 0.92);
  color: var(--text);
  box-shadow: var(--shadow);
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(3px);
}

.lightbox-img {
  width: 100%;
  height: auto;
  max-height: min(80vh, 760px);
  object-fit: contain;
  display: block;
}

.lightbox-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  cursor: pointer;
}

@media (prefers-reduced-motion: reduce) {
  .sparkles {
    animation: none;
  }
  .button:hover,
  .tile:hover {
    transform: none;
    transition: none;
  }
}

@media (max-width: 920px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-art {
    min-height: 420px;
  }
  .shot-a {
    width: min(520px, 92%);
    height: 420px;
    left: 50%;
    transform: translateX(-50%) rotate(-1deg);
  }
  .shot-b {
    width: 280px;
    height: 280px;
    right: 10px;
    top: 250px;
  }
  .steps {
    grid-template-columns: 1fr;
  }
  .tile {
    grid-column: span 6;
  }
  .tile.tall {
    grid-column: span 6;
  }
}

@media (max-width: 560px) {
  .nav {
    display: none;
  }
  .hero {
    padding-top: 48px;
  }
  .shot-b {
    display: none;
  }
  .gallery {
    grid-template-columns: 1fr;
  }
  .tile,
  .tile.tall {
    grid-column: auto;
  }
  .tile img,
  .tile.tall img {
    aspect-ratio: 4 / 3;
  }
}

