/* THE SELECTION — Compact & Clean */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap');

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

:root {
  --bg: #0a0a0a;
  --bg2: #0f0f0f;
  --white: #ededed;
  --muted: #888;
  --dim: #444;
  --border: rgba(255,255,255,0.08);
  --font: 'Inter', -apple-system, sans-serif;
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

/* Animations */
.anim-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.anim-up.visible { opacity: 1; transform: translateY(0); }
.d2 { transition-delay: 0.1s; }
.d3 { transition-delay: 0.2s; }

/* NAV */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 14px 0;
  transition: background 0.3s, padding 0.3s, backdrop-filter 0.3s;
}
.nav.scrolled {
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(14px);
  padding: 10px 0;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}
.nav-links { display: flex; gap: 24px; }
.nav-links a {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.02em;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--white); }

.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 24px; height: 16px; position: relative; z-index: 110;
}
.nav-toggle span {
  display: block; width: 100%; height: 1px; background: var(--white);
  position: absolute; left: 0; transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle span:first-child { top: 2px; }
.nav-toggle span:last-child { bottom: 2px; }
.nav-toggle.active span:first-child { top: 50%; transform: translateY(-50%) rotate(45deg); }
.nav-toggle.active span:last-child { bottom: auto; top: 50%; transform: translateY(-50%) rotate(-45deg); }

/* HERO */
.hero {
  position: relative;
  height: 100vh;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { filter: brightness(0.25) saturate(0.5); object-position: center 60%; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(10,10,10,0.15) 0%,
    rgba(10,10,10,0.05) 30%,
    rgba(10,10,10,0.65) 70%,
    var(--bg) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px) clamp(60px, 10vw, 100px);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}
.hero-left { flex: 1; }
.hero-tag {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 14px;
}
.hero-title {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
  white-space: nowrap;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}
.btn-ghost {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.01em;
  transition: color 0.3s;
}
.btn-ghost:hover { color: var(--white); }

.hero-right { flex-shrink: 0; }
.hero-features {
  display: flex;
  gap: 28px;
}
.hero-feat {
  text-align: center;
}
.feat-num {
  display: block;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
}
.feat-txt {
  display: block;
  font-size: 0.65rem;
  color: var(--dim);
  letter-spacing: 0.02em;
  margin-top: 4px;
}

/* Buttons */
.btn-primary {
  display: inline-block;
  padding: 12px 32px;
  border: 1px solid var(--white);
  border-radius: 50px;
  font-family: var(--font);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--white);
  transition: background 0.3s, color 0.3s;
}
.btn-primary:hover { background: var(--white); color: var(--bg); }
.btn-outline {
  display: inline-block;
  padding: 12px 32px;
  border: 1px solid var(--dim);
  border-radius: 50px;
  font-family: var(--font);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--muted);
  transition: border-color 0.3s, color 0.3s;
}
.btn-outline:hover { border-color: var(--white); color: var(--white); }

/* SECTIONS */
.section { padding: clamp(60px, 8vw, 100px) 0; }
.section-dark { background: var(--bg2); }

.label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 20px;
}

.title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.015em;
  margin-bottom: 16px;
}

.text {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 500px;
}
.text-center { text-align: center; margin-left: auto; margin-right: auto; }

/* ABOUT */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
}
.about-text .title { margin-bottom: 14px; }

.stats {
  display: flex;
  gap: 32px;
  padding-top: 8px;
}
.stat { text-align: center; }
.stat-num {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  display: block;
}
.stat-plus {
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--muted);
}
.stat-label {
  display: block;
  font-size: 0.68rem;
  color: var(--dim);
  letter-spacing: 0.04em;
  margin-top: 2px;
}

/* CINEMATIC DIVIDER */
.divider-section {
  position: relative;
  height: clamp(200px, 35vw, 360px);
  overflow: hidden;
}
.divider-img {
  position: absolute;
  inset: 0;
}
.divider-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: brightness(0.35) saturate(0.6);
}
.divider-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    var(--bg) 0%,
    transparent 20%,
    transparent 80%,
    var(--bg2) 100%
  );
}

/* STEPS */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 24px;
}
.step {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 8px;
}
.step-n {
  display: block;
  font-size: 0.68rem;
  color: var(--dim);
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}
.step h3 {
  font-size: 0.88rem;
  font-weight: 500;
  margin-bottom: 6px;
}
.step p {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.6;
}

/* CTA */
.section-cta {
  padding: clamp(60px, 10vw, 120px) 0;
  text-align: center;
}
.cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 24px;
  flex-wrap: wrap;
}

/* FOOTER */
.footer {
  padding: 32px 0;
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-links {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  color: var(--muted);
}
.footer-links a { transition: color 0.3s; }
.footer-links a:hover { color: var(--white); }
.footer-links span { color: var(--dim); }
.footer-copy {
  font-size: 0.68rem;
  color: var(--dim);
}

/* NAV LOGO IMG */
.nav-logo-img {
  height: 36px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* NAV BY */
.nav-by {
  font-weight: 300;
  font-size: 0.65rem;
  color: var(--dim);
  letter-spacing: 0.15em;
  margin-left: 4px;
}

/* SHOWROOM */
.showroom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.showroom-logo {
  width: 140px;
  height: auto;
  object-fit: contain;
  margin-bottom: 16px;
}
.showroom-text .title { margin-bottom: 12px; }
.showroom-text .text { margin-bottom: 24px; }
.showroom-btn { margin-top: 0; }
.showroom-img {
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.showroom-img img {
  object-position: center center;
  transition: transform 0.6s var(--ease);
}
.showroom-img:hover img {
  transform: scale(1.03);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; inset: 0; background: var(--bg);
    justify-content: center; align-items: center; gap: 20px; z-index: 105;
  }
  .nav-links.open a { font-size: 1rem; color: var(--white); }
  .hero-title { white-space: normal; }
  .hero-content { flex-direction: column; align-items: flex-start; gap: 28px; }
  .hero-features { gap: 20px; }
  .about-grid { grid-template-columns: 1fr; gap: 20px; }
  .showroom-grid { grid-template-columns: 1fr; gap: 28px; }
  .steps { grid-template-columns: 1fr 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
  .cta-btns { flex-direction: column; align-items: center; }
}
@media (max-width: 480px) {
  .steps { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 14px; }
}
