@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;600;700&display=swap");

:root {
  --bg: #050505;
  --surface: #0d0d0d;
  --surface-soft: #121212;
  --line: #262626;
  --line-strong: #3a3a3a;
  --text: #f2f2f2;
  --text-muted: #adadad;
  --accent: #ffffff;
  --max-width: 1180px;
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 12px;
  --shadow-soft: 0 16px 42px rgba(0, 0, 0, 0.45);
  --transition: 220ms ease;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body.landing-page {
  font-family: "Manrope", sans-serif;
  background: radial-gradient(circle at 20% -10%, #1a1a1a 0%, #050505 55%);
  color: var(--text);
  line-height: 1.65;
}

.background-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 255, 255, 0.14), transparent 34%),
    radial-gradient(circle at 14% 68%, rgba(255, 255, 255, 0.08), transparent 30%);
  opacity: 0.55;
}

.section-wrap {
  width: min(var(--max-width), calc(100vw - 3rem));
  margin: 0 auto;
}

.site-header {
  width: min(var(--max-width), calc(100vw - 3rem));
  margin: 1.1rem auto 0;
  padding: 0.9rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(9, 9, 9, 0.75);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: sticky;
  top: 1rem;
  z-index: 15;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.58rem;
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.03em;
  font-size: 1.1rem;
  text-decoration: none;
  font-weight: 700;
}

.brand-mark {
  width: 1.45rem;
  height: 1.45rem;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(142, 199, 255, 0.32));
}

.brand-label {
  line-height: 1;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.site-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.92rem;
  transition: color var(--transition);
}

.site-nav a:hover {
  color: var(--text);
}

main {
  padding: 3.4rem 0 4.5rem;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.2rem;
  align-items: center;
  margin-bottom: 4rem;
}

.eyebrow {
  margin: 0;
  color: var(--text-muted);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 700;
}

.hero h1 {
  margin: 0.9rem 0 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 5vw, 3.85rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  max-width: 18ch;
}

.hero h1 span {
  color: var(--text-muted);
  display: block;
}

.hero-desc {
  margin: 1.2rem 0 0;
  max-width: 58ch;
  color: #d0d0d0;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.45rem;
}

.btn {
  border-radius: 999px;
  padding: 0.72rem 1.2rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.92rem;
  font-weight: 600;
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
}

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

.btn.primary {
  color: #0b0b0b;
  background: #f5f5f5;
  border: 1px solid #f5f5f5;
}

.btn.primary:hover {
  background: #ffffff;
}

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

.btn.secondary:hover {
  border-color: #636363;
}

.btn.disabled-link {
  opacity: 0.5;
  pointer-events: none;
  cursor: not-allowed;
}

.btn.disabled-link:hover {
  transform: none;
}

.stat-grid {
  margin-top: 1.55rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  max-width: 520px;
}

.stat-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 0.8rem 0.9rem;
  background: rgba(255, 255, 255, 0.02);
}

.stat-grid strong {
  display: block;
  font-size: 1rem;
  color: var(--text);
}

.stat-grid span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.hero-media {
  min-height: 460px;
  position: relative;
}

.shot {
  position: absolute;
  margin: 0;
  border: 1px solid var(--line-strong);
  background: #0f0f0f;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  animation: drift 8s ease-in-out infinite;
}

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

.shot-main {
  inset: 2.5rem 1.4rem 1.5rem 0;
  z-index: 2;
}

.shot-top {
  width: 52%;
  right: -0.5rem;
  top: 0;
  z-index: 3;
  animation-delay: -2s;
}

.shot-bottom {
  width: 44%;
  left: -1.2rem;
  bottom: 0.5rem;
  z-index: 3;
  animation-delay: -4s;
}

.shot-brand {
  inset: 0.8rem 1.2rem 0.8rem 0.4rem;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.34;
}

.shot-brand img {
  object-fit: cover;
  filter: saturate(0.96) contrast(1.02);
}

.products {
  display: grid;
  gap: 1.25rem;
}

.product-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.01));
  overflow: hidden;
}

.card-head {
  padding: 1.65rem 1.65rem 0;
}

.product-name {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.83rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
}

.card-head h2 {
  margin: 0.65rem 0 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.3rem, 3.4vw, 2rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.card-head p {
  margin: 0.95rem 0 0;
  color: #c7c7c7;
  max-width: 72ch;
}

.text-link {
  margin-top: 1.05rem;
  display: inline-flex;
  text-decoration: none;
  color: var(--text);
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  font-size: 0.9rem;
  transition: opacity var(--transition);
}

.text-link:hover {
  opacity: 0.78;
}

.gallery {
  padding: 1.3rem 1.3rem 1.4rem;
  display: grid;
  gap: 0.8rem;
}

.gallery figure {
  margin: 0;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #050505;
}

.gallery img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 420ms ease;
}

.gallery figure:hover img {
  transform: scale(1.03);
}

.gallery.snap {
  grid-template-columns: 1.3fr 1fr;
}

.gallery.snap figure:first-child {
  grid-row: span 2;
  min-height: 286px;
}

.gallery.snap figure:nth-child(2),
.gallery.snap figure:nth-child(3) {
  min-height: 138px;
}

.gallery.modi {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery.modi figure {
  min-height: 178px;
}

.cta {
  margin-top: 3.7rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 1.45rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.cta h2 {
  margin: 0.4rem 0 0;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.03em;
  font-size: clamp(1.3rem, 3.4vw, 1.9rem);
}

.cta-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.site-footer {
  padding: 1.2rem 0 2.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: #d4d4d4;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.95rem;
}

.footer-mark {
  width: 1.65rem;
  height: 1.65rem;
  object-fit: contain;
  opacity: 0.92;
}

.footer-links {
  display: inline-flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: #9f9f9f;
  text-decoration: none;
  font-size: 0.84rem;
}

.footer-links a:hover {
  color: #d6d6d6;
}

.site-footer p {
  margin: 0;
  color: #8f8f8f;
  font-size: 0.86rem;
}

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

@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }

  .hero-media {
    min-height: 410px;
  }

  .shot-brand {
    inset: 0.7rem 1rem 0.8rem 0.2rem;
  }

  .shot-main {
    inset: 2rem 1.3rem 1rem 0;
  }

  .shot-top {
    width: 47%;
  }

  .shot-bottom {
    width: 40%;
  }

  .gallery.modi {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .section-wrap,
  .site-header {
    width: min(var(--max-width), calc(100vw - 1.8rem));
  }

  .site-header {
    border-radius: var(--radius-md);
    flex-direction: column;
    align-items: flex-start;
    position: static;
    margin-top: 0.9rem;
    padding: 0.85rem;
  }

  .site-nav {
    width: 100%;
    justify-content: space-between;
    gap: 0.7rem;
  }

  .site-nav a {
    font-size: 0.82rem;
  }

  main {
    padding-top: 2.35rem;
  }

  .hero-media {
    min-height: 305px;
  }

  .shot-brand {
    inset: 0.5rem 0.6rem 0.4rem 0;
    opacity: 0.3;
  }

  .shot-main {
    inset: 1.15rem 0.5rem 0.7rem 0;
  }

  .shot-top {
    width: 55%;
    right: 0;
  }

  .shot-bottom {
    width: 50%;
    left: 0;
    bottom: 0;
  }

  .hero h1 span {
    display: inline;
  }

  .hero h1 {
    max-width: none;
  }

  .hero-desc {
    font-size: 0.96rem;
  }

  .stat-grid {
    grid-template-columns: 1fr;
    max-width: none;
  }

  .card-head {
    padding: 1.2rem 1.1rem 0;
  }

  .gallery {
    padding: 1.1rem;
  }

  .gallery.snap {
    grid-template-columns: 1fr;
  }

  .gallery.snap figure:first-child,
  .gallery.snap figure:nth-child(2),
  .gallery.snap figure:nth-child(3) {
    min-height: 175px;
  }

  .gallery.modi {
    grid-template-columns: 1fr;
  }

  .gallery.modi figure {
    min-height: 165px;
  }

  .cta {
    margin-top: 2.6rem;
    padding: 1.15rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.55rem;
  }
}
