:root {
  --bg: #090916;
  --bg-soft: #121225;
  --card: rgba(255, 255, 255, 0.06);
  --text: #f6f4ff;
  --muted: #c7c0e9;
  --primary: #9c7dff;
  --primary-2: #d9a8ff;
  --line: rgba(255, 255, 255, 0.14);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background:
    radial-gradient(900px 400px at 10% -10%, rgba(156, 125, 255, 0.22), transparent 60%),
    radial-gradient(900px 400px at 90% -20%, rgba(217, 168, 255, 0.18), transparent 60%),
    var(--bg);
  color: var(--text);
  line-height: 1.55;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px min(4vw, 28px);
  backdrop-filter: blur(10px);
  background: rgba(9, 9, 22, 0.65);
  border-bottom: 1px solid var(--line);
}

.brand {
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
}

nav a {
  color: var(--muted);
  text-decoration: none;
  margin-left: 16px;
  font-size: 0.95rem;
}

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

.hero {
  position: relative;
  padding: 88px 0 54px;
}

.hero-glow {
  position: absolute;
  inset: 14% 0 auto 0;
  height: 220px;
  background: radial-gradient(circle at center, rgba(156, 125, 255, 0.28), transparent 65%);
  pointer-events: none;
}

.eyebrow {
  color: var(--primary-2);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  margin-bottom: 10px;
}

h1, h2, h3 {
  line-height: 1.2;
  margin: 0 0 10px;
}

h1 {
  font-size: clamp(2rem, 4.8vw, 3.6rem);
  max-width: 16ch;
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.lead {
  color: var(--muted);
  max-width: 66ch;
  font-size: 1.08rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.btn {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
}

.btn.primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #1a102f;
}

.btn.ghost {
  border: 1px solid var(--line);
  color: var(--text);
}

.section {
  padding: 34px 0;
}

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

.grid.one-col {
  grid-template-columns: 1fr;
  max-width: 740px;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
}

.timeline {
  margin: 12px 0 0;
  padding-left: 22px;
  color: var(--muted);
}

.timeline li {
  margin: 8px 0;
}

.timeline strong {
  color: var(--text);
}

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

.shot {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

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

.final-cta {
  margin: 24px auto 50px;
  text-align: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 34px min(6vw, 40px);
}

.site-footer {
  border-top: 1px solid var(--line);
  text-align: center;
  color: var(--muted);
  padding: 20px 10px 32px;
}

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

.legal h2 {
  margin-top: 22px;
  font-size: 1.1rem;
}

.muted {
  color: var(--muted);
}

a {
  color: #cdb7ff;
}
