/* ══════════════════════════════════════════════════════════════════
   COLLECT YOURSELF — Landing Site
   Dark luxury cinematic aesthetic · matched to the app
   ══════════════════════════════════════════════════════════════════ */

/* ─── Design tokens ─────────────────────────────────────────────── */
:root {
  /* Mirroring the app's "Солнечный Блик" palette (golden warmth on near-black) */
  --bg:           #06060d;
  --bg-soft:      #0a0a14;
  --bg-card:      rgba(255,255,255,0.026);
  --bg-card-h:    rgba(255,255,255,0.048);
  --bg-glass:     rgba(255,255,255,0.015);

  --border:       rgba(255,255,255,0.07);
  --border-soft:  rgba(255,255,255,0.04);
  --border-gold:  rgba(201,168,76,0.38);
  --border-gold-soft: rgba(201,168,76,0.18);

  --gold:         #c9a84c;
  --gold-light:   #f0d585;
  --gold-warm:    #e8c870;
  --gold-deep:    #8c6520;
  --gold-dim:     rgba(201,168,76,0.15);

  --text:         #ede5d5;
  --text-soft:    #b8af9d;
  --text-mute:    #8a7e68;
  --text-dim:     #5a5246;
  --text-deep:    #44403a;

  /* Typography */
  --font-display: 'Cormorant Garamond', 'EB Garamond', Georgia, serif;
  --font-body:    'Raleway', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing scale (8px base, slightly editorial) */
  --space-1:  4px;
  --space-2:  8px;
  --space-3:  12px;
  --space-4:  20px;
  --space-5:  32px;
  --space-6:  52px;
  --space-7:  84px;
  --space-8:  136px;

  /* Layout */
  --max-w:        1180px;
  --max-w-narrow: 720px;
  --nav-h:        72px;

  /* Easing */
  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

/* ─── Reset & base ──────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.005em;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

::selection {
  background: var(--gold-dim);
  color: var(--gold-light);
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
  background: rgba(201,168,76,0.18);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover { background: rgba(201,168,76,0.32); }

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

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

/* ══════════════════════════════════════════════════════════════════
   ATMOSPHERE — fixed background grain + vignette
   ══════════════════════════════════════════════════════════════════ */
.atmosphere {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.grain {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  mix-blend-mode: overlay;
}

.vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 30%, transparent 0%, rgba(0,0,0,0.5) 100%),
    radial-gradient(ellipse at 80% 10%, rgba(201,168,76,0.04) 0%, transparent 50%);
}

/* ══════════════════════════════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(to bottom, rgba(6,6,13,0.92) 0%, rgba(6,6,13,0.6) 70%, transparent 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: background 0.35s var(--ease-out), border-color 0.35s var(--ease-out);
}

.nav.scrolled {
  background: rgba(6,6,13,0.85);
  border-bottom-color: var(--border);
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--text);
  transition: opacity 0.25s var(--ease-out);
}

.nav__brand:hover { opacity: 0.78; }

.nav__mark {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  filter: drop-shadow(0 0 12px rgba(201, 168, 76, 0.18));
  transition: filter 0.35s var(--ease-out);
}

.nav__brand:hover .nav__mark {
  filter: drop-shadow(0 0 16px rgba(201, 168, 76, 0.32));
}

.nav__mark img {
  width: 38px;
  height: 38px;
  display: block;
}

.nav__wordmark {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  line-height: 1;
  gap: 3px;
}

.nav__wordmark-top,
.nav__wordmark-bottom {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  line-height: 1;
  /* Strip the right-side spacing baked into letter-spacing for clean left edge */
  margin-right: -0.32em;
}

.nav__wordmark-top    { color: var(--text); }
.nav__wordmark-bottom { color: var(--gold); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav__link {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--text-mute);
  transition: color 0.25s var(--ease-out);
  position: relative;
  padding: 4px 0;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease-out), left 0.3s var(--ease-out);
}

.nav__link:hover {
  color: var(--text);
}
.nav__link:hover::after {
  width: 100%;
  left: 0;
}

.nav__controls {
  display: flex;
  align-items: center;
  gap: 20px;
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--text-mute);
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  transition: all 0.25s var(--ease-out);
}

.lang-toggle:hover {
  color: var(--text);
  border-color: var(--border-gold-soft);
}

.lang-toggle__current { color: var(--gold); }
.lang-toggle__divider { color: var(--text-deep); }
.lang-toggle__other { color: var(--text-mute); }

.nav__menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
}

.nav__menu span {
  display: block;
  width: 20px;
  height: 1px;
  background: var(--text);
  transition: transform 0.3s var(--ease-out), opacity 0.3s var(--ease-out);
}

.nav__menu[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(3px) rotate(45deg);
}
.nav__menu[aria-expanded="true"] span:nth-child(2) {
  transform: translateY(-3px) rotate(-45deg);
}

/* ══════════════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--nav-h) 48px 0;
  overflow: hidden;
  z-index: 1;
}

.hero__core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100vmin;
  height: 100vmin;
  max-width: 900px;
  max-height: 900px;
  z-index: 0;
  opacity: 0.85;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  width: 100%;
}

/* ── Hero seal — the brand mark above the title ───────────────── */
.hero__seal {
  display: flex;
  justify-content: center;
  margin-bottom: 36px;
  opacity: 0;
  animation: sealEnter 1.6s var(--ease-out) 0.05s forwards;
}

.hero__seal img {
  width: 96px;
  height: 96px;
  filter: drop-shadow(0 0 32px rgba(201, 168, 76, 0.28));
  animation: sealBreath 7s ease-in-out infinite;
}

@keyframes sealEnter {
  from {
    opacity: 0;
    transform: translateY(-12px) scale(0.92);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes sealBreath {
  0%, 100% {
    transform: scale(1);
    filter: drop-shadow(0 0 28px rgba(201, 168, 76, 0.24));
  }
  50% {
    transform: scale(1.035);
    filter: drop-shadow(0 0 44px rgba(201, 168, 76, 0.38));
  }
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 0.2s forwards;
}

.hero__rule {
  width: 40px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold));
}

.hero__tag-text {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(64px, 12vw, 156px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.hero__title-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px);
  animation: heroReveal 1.4s var(--ease-out) forwards;
}

.hero__title-word--1 {
  animation-delay: 0.35s;
}

.hero__title-word--2 {
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold) 60%, var(--gold-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation-delay: 0.55s;
  /* Breathing room — italic glyphs need it when clipped to background */
  padding: 0.08em 0.06em;
  margin: -0.08em -0.06em;
  line-height: 1.05;
}

.hero__tagline {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 28px);
  font-style: italic;
  font-weight: 300;
  color: var(--text-soft);
  margin-bottom: 24px;
  letter-spacing: 0.005em;
  opacity: 0;
  animation: fadeUp 1.2s var(--ease-out) 0.85s forwards;
}

.hero__sub {
  max-width: 560px;
  margin: 0 auto 56px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-mute);
  font-weight: 300;
  letter-spacing: 0.01em;
  opacity: 0;
  animation: fadeUp 1.2s var(--ease-out) 1.05s forwards;
}

.hero__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  opacity: 0;
  animation: fadeUp 1.2s var(--ease-out) 1.25s forwards;
}

.hero__cta-meta {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-deep);
}

@keyframes heroReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ══════════════════════════════════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 14px 32px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold-deep) 0%, var(--gold) 50%, var(--gold-warm) 100%);
  color: #1a1206;
  font-weight: 600;
  border: 1px solid transparent;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.15) inset,
    0 12px 32px rgba(201,168,76,0.15);
}

.btn--gold:not(:disabled):hover {
  transform: translateY(-2px);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.2) inset,
    0 18px 48px rgba(201,168,76,0.28);
}

.btn--gold:disabled,
.btn--gold[aria-disabled="true"] {
  cursor: not-allowed;
  background: linear-gradient(135deg, #5a4520 0%, #7d6428 50%, #9a7530 100%);
  color: rgba(26, 18, 6, 0.92);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.08) inset,
    0 6px 18px rgba(0,0,0,0.3);
  position: relative;
}

.btn--gold:disabled::before,
.btn--gold[aria-disabled="true"]::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.06) 50%, transparent 70%);
  animation: shimmer 3.4s var(--ease-in-out) infinite;
}

@keyframes shimmer {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.btn--large {
  padding: 18px 44px;
  font-size: 15px;
}

.btn__icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ══════════════════════════════════════════════════════════════════
   SECTIONS — shared structure
   ══════════════════════════════════════════════════════════════════ */
.section {
  position: relative;
  z-index: 1;
  padding: var(--space-8) 48px;
}

.section__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.section__inner--narrow {
  max-width: var(--max-w-narrow);
}

.section__head {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-bottom: 48px;
}

.section__num {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.05em;
}

.section__kicker {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-mute);
}

.section__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--text);
  margin-bottom: 36px;
}

.section__title em {
  font-style: italic;
  background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold) 60%, var(--gold-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  /* Italic ascenders/descenders need vertical breathing room or they clip
     when -webkit-background-clip:text is applied. */
  padding: 0.12em 0.06em;
  margin: -0.12em -0.06em;
  display: inline-block;
  line-height: 1.15;
}

.section__lead {
  max-width: 620px;
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-soft);
  margin-bottom: 72px;
  font-weight: 300;
}

/* ── Reveal animation ─────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1.2s var(--ease-out), transform 1.2s var(--ease-out);
}

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

.reveal--delay-1 { transition-delay: 0.08s; }
.reveal--delay-2 { transition-delay: 0.16s; }
.reveal--delay-3 { transition-delay: 0.24s; }
.reveal--delay-4 { transition-delay: 0.32s; }
.reveal--delay-5 { transition-delay: 0.4s; }
.reveal--delay-6 { transition-delay: 0.48s; }

/* ══════════════════════════════════════════════════════════════════
   IDEA SECTION
   ══════════════════════════════════════════════════════════════════ */
.section--idea {
  padding-top: var(--space-7);
  padding-bottom: var(--space-7);
}

.section--idea::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--border-gold));
}

.idea__body {
  max-width: 720px;
  font-size: 18px;
  line-height: 1.75;
  color: var(--text-soft);
  font-weight: 300;
}

.idea__body p {
  margin-bottom: 24px;
}

.idea__signature {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 24px;
  color: var(--gold-light);
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  display: inline-block;
}

/* ══════════════════════════════════════════════════════════════════
   PILLARS SECTION
   ══════════════════════════════════════════════════════════════════ */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.pillar {
  padding: 40px 32px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  transition: background 0.4s var(--ease-out);
  cursor: default;
}

.pillar:hover {
  background: var(--bg-card);
}

.pillar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.6s var(--ease-out);
}

.pillar:hover::before { transform: scaleX(1); }

.pillar__glyph {
  font-size: 28px;
  color: var(--gold);
  margin-bottom: 32px;
  line-height: 1;
  opacity: 0.85;
  transition: opacity 0.3s var(--ease-out), color 0.3s var(--ease-out);
}

.pillar:hover .pillar__glyph {
  opacity: 1;
  color: var(--gold-light);
}

.pillar__num {
  position: absolute;
  top: 36px;
  right: 32px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 13px;
  color: var(--text-deep);
  letter-spacing: 0.05em;
}

.pillar__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -0.005em;
  color: var(--text);
  margin-bottom: 4px;
}

.pillar__sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15px;
  color: var(--gold);
  margin-bottom: 18px;
  letter-spacing: 0.005em;
}

.pillar__text {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-mute);
  font-weight: 300;
}

.pillars__footnote {
  margin-top: 48px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: var(--text-mute);
  text-align: center;
  font-weight: 300;
  line-height: 1.6;
}

/* ══════════════════════════════════════════════════════════════════
   PRINCIPLES SECTION
   ══════════════════════════════════════════════════════════════════ */
.section--principles {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(201,168,76,0.03) 0%, transparent 60%),
    var(--bg);
}

.principles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 56px;
}

.principle {
  position: relative;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.principle::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.principle__num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 13px;
  color: var(--gold);
  margin-bottom: 18px;
  letter-spacing: 0.05em;
}

.principle__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 14px;
}

.principle__text {
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-mute);
  font-weight: 300;
}

/* ══════════════════════════════════════════════════════════════════
   JOURNEY SECTION
   ══════════════════════════════════════════════════════════════════ */
.section--journey {
  padding-top: var(--space-7);
  padding-bottom: var(--space-7);
}

.journey {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 24px);
  line-height: 1.65;
  color: var(--text-soft);
  font-weight: 300;
  letter-spacing: 0.005em;
}

.journey p {
  margin-bottom: 28px;
}

.journey p:first-child {
  font-style: italic;
  font-size: 1.2em;
  color: var(--gold-light);
}

.journey__signoff {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  font-size: 16px !important;
  font-style: italic;
  color: var(--text-mute);
  font-family: var(--font-body) !important;
  letter-spacing: 0.05em;
}

/* ══════════════════════════════════════════════════════════════════
   DOWNLOAD CTA
   ══════════════════════════════════════════════════════════════════ */
.section--download {
  padding-top: var(--space-8);
  padding-bottom: var(--space-8);
  position: relative;
}

.section--download::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(201,168,76,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.download {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}

.download__rule {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  margin: 0 auto 32px;
}

.download__kicker {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}

.download__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--text);
  margin-bottom: 32px;
}

.download__title em {
  font-style: italic;
  background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold) 60%, var(--gold-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  padding: 0.12em 0.06em;
  margin: -0.12em -0.06em;
  display: inline-block;
  line-height: 1.15;
}

.download__lead {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-soft);
  margin-bottom: 48px;
  font-weight: 300;
}

.download__meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}

.download__meta-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 24px;
  border-right: 1px solid var(--border);
}

.download__meta-item:last-child { border-right: none; }

.download__meta-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-deep);
}

.download__meta-value {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 17px;
  color: var(--text-soft);
}

.download__status {
  margin-top: 48px;
  font-size: 12px;
  font-style: italic;
  font-family: var(--font-display);
  color: var(--text-deep);
  letter-spacing: 0.02em;
}

/* ══════════════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════════════ */
.footer {
  position: relative;
  z-index: 1;
  padding: 80px 48px 56px;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: center;
}

.footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer__mark {
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 0 14px rgba(201, 168, 76, 0.2));
}

.footer__mark img {
  width: 32px;
  height: 32px;
  display: block;
}

.footer__wordmark {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
  gap: 3px;
}

.footer__wordmark-top,
.footer__wordmark-bottom {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  line-height: 1;
  margin-right: -0.32em;
}

.footer__wordmark-top    { color: var(--text); }
.footer__wordmark-bottom { color: var(--gold); }

.footer__tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  color: var(--text-mute);
  margin-bottom: 36px;
}

/* ── Legal navigation ─────────────────────────────────────────── */
.footer__legal {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 32px;
  padding: 18px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  width: 100%;
  max-width: 700px;
}

.footer__legal-link {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-mute);
  letter-spacing: 0.04em;
  transition: color 0.25s var(--ease-out);
  position: relative;
}

.footer__legal-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease-out);
}

.footer__legal-link:hover {
  color: var(--text);
}

.footer__legal-link:hover::after {
  width: 100%;
}

.footer__legal-sep {
  color: var(--text-deep);
  font-size: 12px;
}

.footer__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--text-deep);
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

.footer__link {
  color: var(--text-mute);
  transition: color 0.25s var(--ease-out);
}

.footer__link:hover { color: var(--gold); }

.footer__sep { color: var(--text-deep); }

.footer__copy {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-deep);
}

/* ══════════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════════ */
@media (max-width: 960px) {
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .principles { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .section { padding-left: 28px; padding-right: 28px; }
  .nav { padding: 0 28px; }
  .hero { padding-left: 28px; padding-right: 28px; }
  .footer { padding-left: 28px; padding-right: 28px; }
}

@media (max-width: 720px) {
  :root {
    --space-7: 64px;
    --space-8: 96px;
    --nav-h: 64px;
  }

  .nav__links {
    position: fixed;
    top: var(--nav-h);
    right: 0;
    left: 0;
    background: rgba(6,6,13,0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    gap: 0;
    padding: 24px 28px 32px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-110%);
    transition: transform 0.4s var(--ease-out);
  }

  .nav__links.is-open {
    transform: translateY(0);
  }

  .nav__link {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid var(--border-soft);
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .nav__link:last-child { border-bottom: none; }

  .nav__menu { display: flex; }

  .nav__wordmark-top,
  .nav__wordmark-bottom {
    font-size: 11px;
    letter-spacing: 0.28em;
  }

  .nav__mark img {
    width: 32px;
    height: 32px;
  }

  .hero { padding-top: calc(var(--nav-h) + 40px); }

  .hero__core {
    width: 130vmin;
    height: 130vmin;
    opacity: 0.55;
  }

  .hero__seal img {
    width: 72px;
    height: 72px;
  }

  .hero__seal {
    margin-bottom: 28px;
  }

  .hero__title {
    margin-bottom: 28px;
  }

  .hero__sub {
    font-size: 14px;
    margin-bottom: 40px;
  }

  .pillars {
    grid-template-columns: 1fr;
  }

  .pillar { padding: 32px 24px; }
  .pillar__num { top: 28px; right: 24px; }

  .principles {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .download__meta {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 32px;
  }

  .download__meta-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding-bottom: 24px;
  }

  .download__meta-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .section__head { margin-bottom: 32px; }

  .journey {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .hero__title { font-size: 56px; }
  .hero__tagline { font-size: 18px; }
  .section__title { font-size: 38px; }
  .download__title { font-size: 44px; }

  .nav { padding: 0 20px; }
  .nav__mark img { width: 28px; height: 28px; }
  .nav__wordmark-top,
  .nav__wordmark-bottom {
    font-size: 10px;
    letter-spacing: 0.24em;
  }
  .nav__brand { gap: 10px; }

  .hero__seal img { width: 64px; height: 64px; }

  .footer__legal {
    flex-direction: column;
    gap: 12px;
  }
  .footer__legal-sep { display: none; }
}

/* ══════════════════════════════════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .hero__core { display: none; }
  .reveal { opacity: 1; transform: none; }
  .hero__seal img { animation: none; }
}
