:root {
  --bg: #0c0b0a;
  --ink: #f4efe8;
  --ink-muted: rgba(244, 239, 232, 0.68);
  --ink-faint: rgba(244, 239, 232, 0.42);
  --line: rgba(244, 239, 232, 0.12);
  --accent: #c4b5fd;
  --font-brand: 'Instrument Serif', Georgia, serif;
  --font-body: 'Outfit', 'Noto Sans SC', system-ui, sans-serif;
  --font-mono: 'SF Mono', ui-monospace, Menlo, monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --max: 1080px;
  --gutter: clamp(20px, 4.5vw, 48px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background: var(--bg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--accent);
}

code {
  font-family: var(--font-mono);
  font-size: 0.9em;
  color: var(--accent);
}

.brand-name {
  font-family: var(--font-brand);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1;
}

.brand-name.sm {
  font-size: 1.35rem;
}

.top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5;
  display: flex;
  justify-content: flex-end;
  max-width: var(--max);
  margin: 0 auto;
  padding: 22px var(--gutter);
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink-muted);
}

.nav a {
  text-decoration: none;
}

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

.lang {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 2px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(12, 11, 10, 0.35);
}

.lang-btn {
  margin: 0;
  padding: 4px 8px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--ink-faint);
  font: inherit;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: default;
}

.lang-btn:hover {
  color: var(--ink);
}

.lang-btn.is-active {
  background: rgba(244, 239, 232, 0.1);
  color: var(--ink);
}

/* One composition: brand + copy over full-bleed product shot */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-stage {
  position: absolute;
  inset: 0;
  background: #080807;
}

.hero-shot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  opacity: 0.55;
  transform: scale(1.04);
  animation: shot-in 1.4s var(--ease) both;
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12, 11, 10, 0.35) 0%, rgba(12, 11, 10, 0.15) 28%, rgba(12, 11, 10, 0.72) 62%, rgba(12, 11, 10, 0.96) 100%),
    radial-gradient(70% 50% at 20% 80%, rgba(196, 181, 253, 0.12), transparent 55%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter) clamp(48px, 10vh, 88px);
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 18px;
}

.brand-glyph {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.45));
}

.brand-lockup .brand-name {
  font-size: clamp(3.4rem, 9vw, 5.5rem);
}

.hero-title {
  margin: 0 0 12px;
  max-width: 12em;
  font-family: var(--font-body);
  font-size: clamp(1.35rem, 2.8vw, 1.75rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.hero-lead {
  margin: 0;
  max-width: 32em;
  color: var(--ink-muted);
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition:
    transform 140ms var(--ease),
    background 160ms ease,
    color 160ms ease,
    border-color 160ms ease;
}

.btn:active {
  transform: scale(0.97);
}

.btn.primary {
  background: var(--ink);
  color: var(--bg);
}

.btn.primary:hover {
  background: var(--accent);
  color: #1a1428;
}

.btn.ghost {
  border: 1px solid var(--line);
  color: var(--ink);
  background: rgba(12, 11, 10, 0.35);
  backdrop-filter: blur(8px);
}

.btn.ghost:hover {
  border-color: color-mix(in srgb, var(--accent) 50%, var(--line));
  color: var(--accent);
}

.band {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(72px, 14vh, 128px) var(--gutter);
}

.band-title {
  margin: 0 0 12px;
  font-family: var(--font-brand);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.02em;
}

.band-lead {
  margin: 0 0 40px;
  max-width: 34em;
  color: var(--ink-muted);
  font-size: 1.05rem;
}

.pillars {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.pillar {
  display: grid;
  grid-template-columns: minmax(72px, 110px) 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.pillar-label {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--accent);
}

.pillar p {
  margin: 0;
  color: var(--ink-muted);
}

.gallery-stack {
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 8vh, 72px);
}

.gallery-shot {
  margin: 0;
}

.gallery-shot img {
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #080807;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

.gallery-shot:last-child img {
  width: min(100%, 360px);
  margin-inline: auto;
}

.gallery-shot figcaption {
  display: grid;
  grid-template-columns: minmax(72px, 110px) 1fr;
  gap: 20px;
  margin-top: 16px;
  color: var(--ink-muted);
  font-size: 0.98rem;
}

.gallery-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent);
}

.download-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.download-version {
  color: var(--ink-faint);
}

.tiny {
  margin: 0;
  color: var(--ink-faint);
  font-size: 13px;
}

.foot {
  max-width: var(--max);
  margin: 0 auto;
  padding: 28px var(--gutter) 48px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.foot-brand {
  display: flex;
  align-items: baseline;
  gap: 12px;
  color: var(--ink-faint);
  font-size: 13px;
}

.foot-note {
  margin: 0;
  color: var(--ink-faint);
  font-size: 12.5px;
}

.foot-note a {
  color: var(--ink-muted);
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 800ms var(--ease),
    transform 800ms var(--ease);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

.reveal.delay-1 {
  transition-delay: 90ms;
}

.reveal.delay-2 {
  transition-delay: 170ms;
}

.reveal.delay-3 {
  transition-delay: 250ms;
}

@keyframes shot-in {
  from {
    opacity: 0.2;
    transform: scale(1.08);
  }
  to {
    opacity: 0.55;
    transform: scale(1.04);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .reveal.delay-1,
  .reveal.delay-2,
  .reveal.delay-3 {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-shot {
    animation: none;
    transform: none;
  }
}

@media (max-width: 720px) {
  .pillar,
  .gallery-shot figcaption {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .brand-glyph {
    width: 36px;
    height: 36px;
  }
}
