
:root {
  --bg: #07070b;
  --bg-soft: rgba(255,255,255,0.04);
  --panel: rgba(12, 12, 18, 0.78);
  --line: rgba(255,255,255,0.10);
  --text: #f5f1e8;
  --muted: #c9c3b8;
  --blue: #63d8ff;
  --violet: #c88cff;
  --gold: #ffd37a;
  --shadow: 0 18px 60px rgba(0,0,0,0.45);
  --radius: 22px;
  --max: 1220px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 20%, rgba(200,140,255,0.18), transparent 28%),
    radial-gradient(circle at 80% 18%, rgba(99,216,255,0.16), transparent 22%),
    radial-gradient(circle at 50% 90%, rgba(255,211,122,0.10), transparent 24%),
    linear-gradient(180deg, #090911 0%, #050507 100%);
  min-height: 100vh;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
.shell { width: min(calc(100% - 32px), var(--max)); margin: 0 auto; }

.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(7,7,11,0.65);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.08), 0 0 24px rgba(200,140,255,0.2);
  background: #000;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text strong {
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.brand-text span {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 5px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.nav-links a {
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  border: 1px solid transparent;
  transition: 180ms ease;
  font-size: 0.92rem;
}
.nav-links a:hover,
.nav-links a.active {
  color: #fff;
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.08);
  box-shadow: 0 0 24px rgba(99,216,255,0.12);
}
.nav-links a.cta {
  border-color: rgba(99,216,255,0.35);
  color: #fff;
  background: linear-gradient(180deg, rgba(99,216,255,0.16), rgba(200,140,255,0.10));
}

.hero {
  padding: 64px 0 34px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 34px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
h1, h2, h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -0.03em;
}
h1 {
  font-size: clamp(2.9rem, 6vw, 5.9rem);
  line-height: 0.95;
  margin-top: 18px;
  text-wrap: balance;
}
h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
}
.lead {
  margin-top: 20px;
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--muted);
  max-width: 62ch;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.10);
  color: #fff;
  transition: 180ms ease;
  background: rgba(255,255,255,0.04);
  box-shadow: var(--shadow);
}
.button:hover {
  transform: translateY(-1px);
  background: rgba(255,255,255,0.08);
}
.button.primary {
  border-color: rgba(99,216,255,0.38);
  background: linear-gradient(135deg, rgba(99,216,255,0.22), rgba(200,140,255,0.18));
}

.hero-card {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 560px;
}
.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.04);
}
.hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,7,11,0) 45%, rgba(7,7,11,0.66) 100%);
}
.hero-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  padding: 12px 14px;
  background: rgba(7,7,11,0.60);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px;
  backdrop-filter: blur(12px);
  max-width: 320px;
  font-size: 0.95rem;
  line-height: 1.5;
}
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 22px 0 0;
}
.stat {
  padding: 18px;
  background: var(--bg-soft);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.08);
  min-height: 120px;
}
.stat strong {
  display: block;
  font-size: 1.35rem;
  margin-bottom: 8px;
  color: #fff;
}
.stat span {
  display: block;
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.95rem;
}
.section { padding: 42px 0; }
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 22px;
}
.section-header p {
  max-width: 58ch;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.panel {
  background: var(--panel);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}
.panel p, .panel li { color: var(--muted); line-height: 1.8; }
.panel ul { margin: 14px 0 0 18px; padding: 0; }
.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  margin-top: 18px;
}
.shot {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.08);
  background: #0a0a0f;
  box-shadow: var(--shadow);
  min-height: 260px;
}
.shot.large { grid-column: span 7; min-height: 520px; }
.shot.medium { grid-column: span 5; min-height: 520px; }
.shot.small { grid-column: span 4; min-height: 310px; }
.shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease, filter 300ms ease;
  filter: brightness(0.93);
}
.shot:hover img {
  transform: scale(1.03);
  filter: brightness(1.02);
}
.caption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(7,7,11,0.55);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  font-size: 0.92rem;
}
.feature-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 18px;
}
.feature {
  padding: 20px;
  background: rgba(255,255,255,0.04);
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.08);
}
.feature p { color: var(--muted); line-height: 1.7; margin: 10px 0 0; }
.callout {
  margin-top: 32px;
  background: linear-gradient(135deg, rgba(99,216,255,0.14), rgba(200,140,255,0.12));
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
}
.callout p { color: var(--muted); line-height: 1.8; max-width: 70ch; }
footer {
  padding: 34px 0 46px;
  color: #9f998f;
  font-size: 0.92rem;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 18px;
  flex-wrap: wrap;
}
@media (max-width: 980px) {
  .hero, .content-grid { grid-template-columns: 1fr; }
  .hero-card { min-height: 420px; }
  .stats, .feature-list { grid-template-columns: 1fr; }
  .shot.large, .shot.medium, .shot.small { grid-column: span 12; min-height: 320px; }
}
@media (max-width: 720px) {
  nav { flex-direction: column; align-items: stretch; }
  .brand { justify-content: center; }
  .nav-links { justify-content: center; }
  .hero { padding-top: 32px; }
  .section-header { display: block; }
  .section-header p { margin-top: 12px; }
}
