:root {
  --bg: #050507;
  --panel: #111113;
  --text: #f5f5f7;
  --muted: #a1a1aa;
  --line: rgba(255, 255, 255, 0.12);
  --blue: #2997ff;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

img,
video {
  max-width: 100%;
  display: block;
}

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

.page-glow {
  position: fixed;
  inset: -20% auto auto 40%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(41, 151, 255, 0.18), transparent 70%);
  pointer-events: none;
  z-index: 0;
  animation: pulse 8s ease-in-out infinite;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 7%;
  backdrop-filter: blur(18px);
  background: rgba(5, 5, 7, 0.72);
  border-bottom: 1px solid var(--line);
}

.logo {
  font-weight: 700;
  letter-spacing: -0.04em;
  font-size: 22px;
}

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

.nav-actions,
.hero-buttons,
.footer-actions {
  display: flex;
  gap: 10px;
}

.btn {
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  transition: transform 0.25s ease, background 0.25s ease, opacity 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

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

.btn.solid {
  background: var(--text);
  color: #111;
}

.btn.ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
}

.hero,
.film {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: grid;
  place-items: center;
}

.bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  animation: drift 28s ease-in-out infinite alternate;
}

.bg-video.dim {
  filter: brightness(0.45) saturate(1.15);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 5, 7, 0.35), rgba(5, 5, 7, 0.88));
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: 12vh 7% 8vh;
}

.eyebrow {
  color: var(--blue);
  font-size: 15px;
  margin-bottom: 12px;
}

h1 {
  font-size: clamp(56px, 11vw, 108px);
  letter-spacing: -0.07em;
  line-height: 0.9;
  margin-bottom: 18px;
}

.lede,
.film p,
.card p,
.details p,
.section-lead,
.model-meta {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.hero-phone {
  position: absolute;
  right: 6%;
  bottom: 4%;
  width: min(34vw, 420px);
  filter: drop-shadow(0 40px 50px rgba(0, 0, 0, 0.55));
  z-index: 2;
}

.float {
  animation: float 5.5s ease-in-out infinite;
}

.film-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  text-align: center;
  padding: 0 24px;
}

.film h2,
.details h2,
.models h2 {
  font-size: clamp(36px, 6vw, 64px);
  letter-spacing: -0.05em;
  margin-bottom: 18px;
}

.features,
.gallery,
.details,
.models,
.color-band,
.footer {
  position: relative;
  z-index: 1;
  padding: 90px 7%;
}

.color-band {
  padding-top: 0;
  text-align: center;
}

.color-band img {
  width: 100%;
  border-radius: 28px;
  border: 1px solid var(--line);
  object-fit: cover;
  max-height: 420px;
}

.color-band p {
  margin-top: 18px;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 13px;
}

.card,
.gallery figure,
.detail-grid > div {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
}

.card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 28px;
}

.card img,
.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 340px;
}

.card div,
.detail-grid > div {
  padding: 42px;
}

.card h3,
.details h3 {
  font-size: 28px;
  letter-spacing: -0.04em;
  margin-bottom: 14px;
}

.card.reverse {
  direction: rtl;
}

.card.reverse > * {
  direction: ltr;
}

.gallery {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
  padding-top: 0;
}

.gallery figcaption {
  padding: 18px 22px 22px;
  color: var(--muted);
}

.models {
  padding-bottom: 40px;
}

.section-lead {
  margin-bottom: 36px;
}

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

.model-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  padding-bottom: 28px;
}

.model-card.featured {
  border-color: rgba(41, 151, 255, 0.45);
  box-shadow: 0 20px 50px rgba(41, 151, 255, 0.12);
}

.model-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  background: #000;
}

.model-card h3,
.model-card .model-meta,
.model-card .from-price,
.model-card .price-list {
  padding: 0 24px;
}

.model-card h3 {
  font-size: 26px;
  letter-spacing: -0.04em;
  margin: 22px 0 6px;
}

.model-card .model-meta {
  font-size: 14px;
  margin-bottom: 16px;
}

.from-price {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
}

.from-price span {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--blue);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.price-list {
  list-style: none;
  border-top: 1px solid var(--line);
  margin: 0 24px;
  padding: 8px 0 0;
}

.price-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  color: var(--muted);
  font-size: 15px;
}

.price-list s {
  color: #6b6b70;
  margin-right: 8px;
}

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

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 32px;
  padding-bottom: 48px;
}

.animate-in {
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 0.9s ease forwards;
}

.delay-1 {
  animation-delay: 0.15s;
}

.delay-2 {
  animation-delay: 0.3s;
}

.delay-3 {
  animation-delay: 0.45s;
}

.rise {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
  animation-timeline: view();
  animation-range: entry 10% cover 30%;
}

@supports not (animation-timeline: view()) {
  .rise {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes drift {
  from {
    transform: scale(1.08) translateY(0);
  }
  to {
    transform: scale(1.16) translateY(-3%);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.7;
    transform: translateX(0);
  }
  50% {
    opacity: 1;
    transform: translateX(-40px);
  }
}

@media (max-width: 1100px) {
  .model-grid {
    grid-template-columns: 1fr;
  }
}

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

  .hero-phone {
    position: relative;
    width: min(70vw, 280px);
    right: auto;
    bottom: auto;
    margin: 0 auto 48px;
  }

  .hero {
    min-height: auto;
    padding-top: 40px;
  }

  .card,
  .gallery,
  .detail-grid,
  .footer {
    grid-template-columns: 1fr;
    display: grid;
  }

  .card.reverse {
    direction: ltr;
  }

  .footer {
    gap: 18px;
    text-align: center;
    justify-items: center;
  }
}

body.price-locked {
  overflow: hidden;
}

.price-gate {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(5, 5, 7, 0.78);
  backdrop-filter: blur(10px);
}

.price-gate[hidden] {
  display: none;
}

.price-card {
  width: min(460px, 100%);
  background: rgba(17, 17, 19, 0.92);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 32px;
  text-align: center;
}

.price-card h2 {
  font-size: 28px;
  letter-spacing: -0.04em;
  margin: 0 0 14px;
}

.price-card p {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

.price-card .btn {
  min-width: 160px;
}
