﻿:root {
  --bg: #070912;
  --ink: #f7f8ff;
  --muted: #a7adc5;
  --brand: #ff4d9d;
  --brand-2: #635bff;
  --card: rgba(15, 18, 34, 0.78);
  --line: rgba(255, 255, 255, 0.11);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Space Grotesk", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(900px 380px at 85% -5%, rgba(99, 91, 255, 0.34) 0%, transparent 62%),
    radial-gradient(760px 340px at 0% 35%, rgba(255, 77, 157, 0.24) 0%, transparent 64%),
    linear-gradient(180deg, #0b1020 0%, #070912 44%, #05060c 100%),
    var(--bg);
}

.container { width: min(1140px, 92vw); margin: 0 auto; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(7, 9, 18, 0.82);
  border-bottom: 1px solid var(--line);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); }
.brand-mark {
  width: 34px; height: 34px; border-radius: 11px; display: grid; place-items: center;
  color: #fff; font-weight: 800; font-family: "Sora", sans-serif;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
}
.brand-logo {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: #fff;
  font-family: "Sora", sans-serif;
  font-weight: 800;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 8px 16px rgba(83, 65, 210, 0.24);
}
.brand-text { font-family: "Sora", sans-serif; font-weight: 700; letter-spacing: 0.2px; }
.nav-links { display: flex; gap: 24px; }
.nav-links a { color: #d9def3; text-decoration: none; font-size: 15px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 18px; border-radius: 14px; text-decoration: none; font-weight: 600;
  border: 1px solid transparent; transition: .25s ease;
}
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #ff4d9d 0%, #8b5cff 55%, #2d8cff 100%);
  box-shadow: 0 12px 22px rgba(99, 91, 255, .25);
}
.btn-primary:hover { transform: translateY(-1px); }
.btn-secondary { color: #f7f8ff; background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.16); }
.btn-ghost { color: #f7f8ff; border-color: rgba(255,255,255,.16); background: rgba(255,255,255,.07); }

.hero { padding: 72px 0 40px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 30px; align-items: stretch; }
.hero-logo-wrap {
  width: 180px;
  height: 180px;
  border-radius: 34px;
  padding: 12px;
  background: linear-gradient(145deg, rgba(255,255,255,.14), rgba(255,255,255,.05));
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.35);
  margin-bottom: 16px;
}
.hero-logo {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  border-radius: 24px;
  color: #fff;
  font-family: "Sora", sans-serif;
  font-size: 30px;
  font-weight: 800;
  background:
    radial-gradient(circle at 28% 25%, rgba(255,255,255,.34), transparent 22%),
    linear-gradient(135deg, #ff4d9d 0%, #8b5cff 55%, #2d8cff 100%);
  box-shadow: inset 0 0 28px rgba(255,255,255,.18);
}
.eyebrow {
  font-family: "Sora", sans-serif;
  font-size: 12px; letter-spacing: .16em; color: #b7b1ca; margin: 0 0 16px;
}
.hero h1 {
  margin: 0; font-family: "Sora", sans-serif; font-size: clamp(34px, 4.4vw, 58px); line-height: 1.04;
}
.lead { color: var(--muted); font-size: 18px; line-height: 1.65; max-width: 58ch; margin: 18px 0 24px; }
.hero-actions { display: flex; gap: 12px; }
.hero-metrics { display: flex; gap: 28px; margin-top: 28px; }
.hero-metrics div { display: grid; gap: 2px; }
.hero-metrics strong { font-family: "Sora", sans-serif; font-size: 24px; }
.hero-metrics span { color: #a7adc5; font-size: 14px; }

.slider {
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  background: var(--card);
  backdrop-filter: blur(8px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .34);
}
.slides { position: relative; min-height: 380px; }
.slide {
  position: absolute; inset: 0;
  padding: 34px; opacity: 0; transform: translateX(20px);
  transition: .45s ease;
  display: grid; align-content: end; gap: 12px;
}
.slide.active { opacity: 1; transform: translateX(0); }
.slide h3 { margin: 0; font-family: "Sora", sans-serif; font-size: 30px; }
.slide p { margin: 12px 0 0; font-size: 16px; color: rgba(255,255,255,.88); max-width: 34ch; line-height: 1.6; }
.slide-shot {
  width: 132px;
  height: 238px;
  border-radius: 20px;
  border: 4px solid rgba(255, 255, 255, 0.75);
  object-fit: cover;
  box-shadow: 0 18px 30px rgba(17, 20, 34, 0.22);
}
.s1 { background: linear-gradient(160deg, #ffb2d1 0%, #ff6aa8 45%, #7b61ff 100%); color: #fff; }
.s1 p { color: rgba(255,255,255,.9); }
.s2 { background: linear-gradient(160deg, #8bc8ff 0%, #4ea0ff 45%, #3f66ff 100%); color: #fff; }
.s2 p { color: rgba(255,255,255,.9); }
.s3 { background: linear-gradient(160deg, #d8b4ff 0%, #a27dff 45%, #6c55ff 100%); color: #fff; }
.s3 p { color: rgba(255,255,255,.9); }
.slider-controls { display: flex; justify-content: center; gap: 10px; padding: 14px; background: rgba(8,10,20,.72); }
.dot { width: 10px; height: 10px; border-radius: 99px; border: 0; background: #596176; cursor: pointer; }
.dot.active { width: 28px; background: #f7f8ff; }

.features, .showcase { padding: 76px 0; }
.section-head h2 { margin: 6px 0 0; font-family: "Sora", sans-serif; font-size: clamp(28px, 3.2vw, 42px); }
.feature-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.feature-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
  background: rgba(255,255,255,.065);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .18);
}
.feature-card h3 { margin: 0 0 8px; font-family: "Sora", sans-serif; font-size: 19px; }
.feature-card p { margin: 0; color: #a7adc5; line-height: 1.65; }

.gallery {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 12px;
}
.shot {
  position: relative;
  border-radius: 18px;
  border: 1px solid var(--line);
  padding: 0;
  display: flex;
  align-items: end;
  overflow: hidden;
  box-shadow: 0 18px 38px rgba(0, 0, 0, .26);
}
.shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.shot::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 50%;
  background: linear-gradient(to top, rgba(10, 12, 22, 0.42), transparent);
}
.shot span {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 2;
  font-family: "Sora", sans-serif;
  font-size: 14px;
  color: #fff;
  background: rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(4px);
  padding: 7px 10px;
  border-radius: 10px;
}
.shot.tall { grid-row: span 2; }

.cta { padding: 24px 0 76px; }
.cta-box {
  border-radius: 24px;
  padding: 34px;
  background:
    linear-gradient(120deg, rgba(255,77,157,.22) 0%, rgba(99,91,255,.22) 100%),
    linear-gradient(120deg, #11162a 0%, #19132b 55%, #23172b 100%);
  color: #fff;
  display: grid;
  gap: 12px;
}
.cta-box h2 { margin: 0; font-family: "Sora", sans-serif; font-size: clamp(26px, 3vw, 38px); }
.cta-box p { margin: 0; color: rgba(255,255,255,.85); }

.footer { border-top: 1px solid var(--line); padding: 40px 0 24px; background: rgba(255,255,255,.035); }
.footer-grid { display: grid; grid-template-columns: 1.2fr repeat(3, 1fr); gap: 14px; }
.footer h4 { margin: 0 0 10px; font-family: "Sora", sans-serif; }
.footer p { color: #a7adc5; margin: 10px 0 0; }
.footer a { color: #d9def3; text-decoration: none; display: block; margin: 6px 0; }
.footer-bottom { margin-top: 18px; padding-top: 14px; border-top: 1px solid var(--line); color: #8f96ad; font-size: 14px; }

@media (max-width: 980px) {
  .nav-links { display: none; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-logo-wrap { width: 150px; height: 150px; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .topbar .btn-ghost { display: none; }
  .hero { padding-top: 48px; }
  .hero-logo-wrap { width: 128px; height: 128px; border-radius: 24px; padding: 8px; }
  .hero-actions { flex-direction: column; }
  .hero-metrics { flex-direction: column; gap: 10px; }
  .feature-grid, .gallery, .footer-grid { grid-template-columns: 1fr; }
  .shot.tall { grid-row: span 1; }
  .slide { min-height: 300px; }
}
