﻿:root {
  color-scheme: dark;
  --bg: #0b0a16;
  --bg-soft: #161326;
  --card: #1c1834;
  --stroke: #2a2550;
  --text: #f0ebff;
  --muted: #b7afd6;
  --accent: #b07bff;
  --accent-2: #7a6bff;
  --accent-3: #ff8ad9;
  --shadow: 0 22px 55px rgba(8, 14, 30, 0.6);
  --radius: 20px;
  --max: 1120px;
}

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

body {
  font-family: "Spline Sans", "Segoe UI", sans-serif;
  background: radial-gradient(circle at top right, rgba(176, 123, 255, 0.16), transparent 55%),
    radial-gradient(circle at 12% 18%, rgba(255, 138, 217, 0.12), transparent 60%),
    var(--bg);
  color: var(--text);
  min-height: 100vh;
}

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

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

.container {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 0 24px;
}

.header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
  background: rgba(10, 9, 20, 0.75);
  border-bottom: 1px solid rgba(42, 37, 80, 0.7);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 18px;
  letter-spacing: 0.4px;
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  box-shadow: 0 12px 24px rgba(11, 16, 34, 0.45);
}

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

.nav a {
  padding: 8px 0;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-3));
  transition: width 0.3s ease;
}

.nav a:hover::after,
.nav a:focus-visible::after {
  width: 100%;
}

.hero {
  padding: 80px 0 120px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -60px 0 0;
  background: url("assets/hero-glow.svg") center/cover no-repeat;
  opacity: 0.9;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
  position: relative;
}

.hero-copy h1 {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.7rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.hero-logo {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 1rem;
  color: var(--muted);
}

.hero-logo img {
  width: 96px;
  height: 96px;
  border-radius: 24px;
  border: 1px solid rgba(42, 37, 80, 0.7);
  box-shadow: 0 20px 40px rgba(14, 10, 32, 0.55);
}

.hero-copy p {
  margin-top: 20px;
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 500px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button.primary {
  background: linear-gradient(120deg, var(--accent), var(--accent-3));
  color: #0b0a16;
  box-shadow: 0 14px 28px rgba(176, 123, 255, 0.35);
}

.button.secondary {
  border: 1px solid var(--stroke);
  color: var(--text);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(11, 20, 40, 0.5);
}

.hero-card {
  background: rgba(17, 14, 34, 0.82);
  border: 1px solid rgba(42, 37, 80, 0.8);
  border-radius: 28px;
  padding: 26px;
  box-shadow: var(--shadow);
  position: relative;
}

.hero-card img {
  border-radius: 16px;
  border: 1px solid rgba(42, 37, 80, 0.8);
}

.hero-shots {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.hero-shot {
  overflow: visible;
  border-radius: 16px;
}

.hero-shot img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-shot:first-child img {
  transform: rotate(-1.2deg);
}

.hero-shot:last-child img {
  transform: rotate(1.2deg);
}

.section {
  padding: 70px 0;
}

.section h2 {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 18px;
}

.section p {
  color: var(--muted);
  max-width: 680px;
}

.feature-grid {
  margin-top: 36px;
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.feature {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 22px;
  min-height: 160px;
  box-shadow: 0 18px 38px rgba(8, 12, 26, 0.35);
}

.feature h3 {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  margin-bottom: 10px;
}

.callout {
  background: linear-gradient(130deg, rgba(176, 123, 255, 0.16), rgba(255, 138, 217, 0.1));
  border: 1px solid rgba(176, 123, 255, 0.35);
  border-radius: 24px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.taglist {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tag {
  border: 1px solid rgba(176, 123, 255, 0.35);
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
}

.footer {
  padding: 40px 0 70px;
  border-top: 1px solid var(--stroke);
  color: var(--muted);
  background: rgba(11, 10, 22, 0.8);
}

.shots-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}

.shot-card {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 18px 38px rgba(12, 9, 28, 0.45);
}

.shot-card img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  border: 1px solid rgba(42, 37, 80, 0.7);
}

.shot-card p {
  margin-top: 12px;
  font-size: 0.95rem;
  color: var(--muted);
}

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

.footer a {
  color: var(--text);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.legal {
  padding: 80px 0 100px;
}

.legal h1 {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: clamp(2.2rem, 3.6vw, 3rem);
  margin-bottom: 16px;
}

.legal h2 {
  margin-top: 32px;
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.legal ul {
  list-style: disc;
  padding-left: 22px;
  color: var(--muted);
}

.legal p {
  color: var(--muted);
  margin-bottom: 14px;
}

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

  .hero {
    padding-top: 60px;
  }

  .hero-card {
    padding: 18px;
  }

  .hero-logo {
    margin-bottom: 16px;
  }

  .hero-logo img {
    width: 76px;
    height: 76px;
  }

  .hero-shots {
    grid-template-columns: 1fr;
  }

  .hero-shot {
    margin-bottom: 6px;
  }
}
