@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Montserrat:wght@300;400;500;600;700;800&display=swap');

:root {
  color-scheme: dark;
  --bg: #05050a;
  --bg-soft: #0b0b12;
  --bg-panel: #12121a;
  --bg-panel-2: #171721;
  --cream: #f3efe7;
  --cream-soft: #d8d0c2;
  --cream-dim: rgba(243, 239, 231, 0.62);
  --muted: rgba(243, 239, 231, 0.42);
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(214, 178, 94, 0.28);
  --amber: #d6b25e;
  --amber-soft: #f3e6b0;
  --amber-dim: rgba(214, 178, 94, 0.14);
  --radius: 14px;
  --nav-h: 72px;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
  --ease-out: cubic-bezier(.22, .68, 0, 1.2);
  --ease-soft: cubic-bezier(.4, 0, .2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: 'Montserrat', sans-serif;
  color: var(--cream);
  background:
    radial-gradient(ellipse 75% 55% at 50% 115%, rgba(214, 178, 94, 0.12) 0%, transparent 65%),
    radial-gradient(ellipse 55% 38% at 18% 24%, rgba(124, 58, 237, 0.16) 0%, transparent 72%),
    linear-gradient(180deg, #07070b 0%, #0d0c13 32%, #05050a 100%);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  z-index: -1;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  letter-spacing: -0.02em;
}

p {
  margin: 0;
}

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

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

.progress-bar {
  background: linear-gradient(90deg, var(--amber), var(--amber-soft));
  box-shadow: 0 0 18px rgba(214, 178, 94, 0.55);
}

nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(5, 5, 10, 0.72);
  backdrop-filter: blur(20px) saturate(1.25);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

nav .max-w-7xl {
  height: 100%;
}

nav .h-16 {
  height: 100%;
}

nav .text-white.font-semibold {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

nav .text-\[11px\] {
  color: var(--amber);
  letter-spacing: 0.2em;
}

.nav-link {
  position: relative;
  color: var(--cream-soft) !important;
  font-size: 0.78rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color .25s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, var(--amber), transparent);
  transition: transform .25s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--amber) !important;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

#mobileMenu {
  top: var(--nav-h) !important;
  background: rgba(5, 5, 10, 0.96) !important;
  backdrop-filter: blur(18px) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

#mobileMenu a {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--cream);
}

#home {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  padding-top: 5.2rem;
  padding-bottom: 5.5rem;
  overflow: hidden;
}

.hero-watermark {
  position: absolute;
  inset: 43% auto auto 50%;
  width: min(56vw, 560px);
  transform: translate(-50%, -58%);
  z-index: 0;
  pointer-events: none;
  opacity: 0.18;
}

.hero-watermark-glow {
  position: absolute;
  inset: 50% auto auto 50%;
  width: min(50vw, 460px);
  height: min(50vw, 460px);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(214, 178, 94, 0.14) 0%, rgba(214, 178, 94, 0.05) 38%, transparent 72%);
  filter: blur(26px);
}

.hero-watermark-logo {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: saturate(0) brightness(1.02) contrast(1);
}

.hero-bg {
  background:
    radial-gradient(ellipse 85% 62% at 50% 110%, rgba(214, 178, 94, 0.14) 0%, transparent 68%),
    radial-gradient(ellipse 50% 36% at 18% 34%, rgba(124, 58, 237, 0.15) 0%, transparent 72%),
    linear-gradient(175deg, #07070b 0%, #121019 35%, #05050a 74%);
}

.hero-grid {
  opacity: 0.18 !important;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(circle at center, black 24%, transparent 85%);
}

.hero-orb {
  background: radial-gradient(circle at 30% 30%, rgba(214, 178, 94, 0.25), rgba(214, 178, 94, 0.08) 45%, transparent 72%);
  filter: blur(12px);
  animation: floatOrb 12s ease-in-out infinite;
}

.hero-orb-two {
  animation-delay: -4s;
}

.hero-layout {
  position: relative;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 1120px;
  margin-inline: auto;
}

.hero-copy > .reveal:first-child {
  background: none !important;
  border: none !important;
  padding: 0 !important;
  color: var(--amber) !important;
}

.hero-copy > .reveal:first-child span:last-child {
  color: var(--amber);
}

.hero-title {
  display: block;
  max-width: none;
  margin-inline: auto;
  font-size: clamp(2.45rem, 4.65vw, 5.25rem) !important;
  line-height: .98 !important;
  color: var(--cream) !important;
  letter-spacing: -0.038em;
}

.hero-title-line {
  display: block;
  white-space: nowrap;
}

.hero-copy.text-center .hero-title {
  margin-inline: auto;
  width: max-content;
  max-width: 100%;
}

.hero-title.ready {
  opacity: 1;
}

.hero-title .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .68s var(--ease-out), transform .68s var(--ease-out);
  margin-right: .04em;
}

.hero-title .word.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-title::after,
.section-title::after {
  content: '';
  display: block;
  width: 88px;
  height: 1px;
  margin-top: 1.3rem;
  background: linear-gradient(90deg, var(--amber), transparent);
}

.hero-copy.text-center .hero-title::after {
  margin-inline: auto;
}

.hero-subtitle {
  max-width: 38rem;
  font-size: clamp(1rem, 1.45vw, 1.1rem) !important;
  line-height: 1.8 !important;
  color: var(--cream-soft) !important;
}

.hero-scene {
  position: relative;
  width: min(100%, 1180px);
  min-height: 430px;
  margin-inline: auto;
  padding: 1.25rem;
  border-radius: 28px !important;
  overflow: hidden;
}

.hero-scene::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 24%, rgba(214, 178, 94, 0.11), transparent 26%),
    radial-gradient(circle at 84% 78%, rgba(214, 178, 94, 0.09), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,0.035), transparent);
  pointer-events: none;
}

.hero-scene-grid {
  position: absolute;
  inset: 0;
  opacity: .14;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at center, black 35%, transparent 100%);
}

.hero-scene-glow {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  filter: blur(36px);
  opacity: .3;
}

.hero-scene-glow-one {
  top: -110px;
  left: 7%;
  background: radial-gradient(circle, rgba(214,178,94,0.22), transparent 68%);
}

.hero-scene-glow-two {
  right: 6%;
  bottom: -130px;
  background: radial-gradient(circle, rgba(120,82,255,0.16), transparent 70%);
}

.hero-scene-board {
  position: absolute;
  z-index: 1;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.09);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.02)),
    rgba(10, 10, 16, 0.86);
  box-shadow: 0 24px 60px rgba(0,0,0,0.32);
  backdrop-filter: blur(16px);
  animation: boardFloat 8s ease-in-out infinite;
}

.hero-scene-board-primary {
  --board-rotate: -4deg;
  left: 6%;
  top: 54px;
  width: min(42%, 430px);
  min-height: 250px;
  padding: 1.5rem;
  transform: rotate(-4deg);
  animation-delay: -1s;
}

.hero-scene-board-note {
  --board-rotate: 5deg;
  right: 7%;
  top: 44px;
  width: min(28%, 280px);
  padding: 1.2rem 1.25rem;
  transform: rotate(5deg);
  animation-delay: -2.8s;
}

.hero-scene-board-network {
  --board-rotate: -2.5deg;
  right: 16%;
  bottom: 52px;
  width: min(34%, 340px);
  min-height: 170px;
  padding: 1.2rem;
  transform: rotate(-2.5deg);
  animation-delay: -4.2s;
}

.hero-scene-kicker {
  display: inline-flex;
  color: var(--amber);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.hero-scene-logo {
  width: min(76%, 250px);
  margin-top: 1rem;
  margin-bottom: 1.1rem;
  object-fit: contain;
  filter: drop-shadow(0 18px 36px rgba(0,0,0,0.28));
}

.hero-scene-board-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.02;
  color: var(--cream);
  margin-bottom: .85rem;
}

.hero-scene-board p {
  color: var(--cream-soft);
  line-height: 1.75;
}

.hero-scene-list {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: .7rem;
}

.hero-scene-list li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--cream-soft);
  line-height: 1.5;
}

.hero-scene-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .58rem;
  width: .42rem;
  height: .42rem;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 14px rgba(214,178,94,0.38);
}

.hero-network-lines {
  position: absolute;
  inset: 48px 28px 28px 28px;
}

.hero-network-lines span {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, rgba(214,178,94,0.05), rgba(214,178,94,0.8), rgba(214,178,94,0.05));
  transform-origin: left center;
  animation: networkPulse 3.8s ease-in-out infinite;
}

.hero-network-lines span:nth-child(1) {
  top: 22%;
  left: 16%;
  width: 58%;
  transform: rotate(18deg);
}

.hero-network-lines span:nth-child(2) {
  top: 54%;
  left: 8%;
  width: 68%;
  transform: rotate(-9deg);
}

.hero-network-lines span:nth-child(3) {
  top: 28%;
  right: 12%;
  width: 34%;
  transform: rotate(86deg);
}

.hero-network-lines span:nth-child(4) {
  bottom: 18%;
  left: 28%;
  width: 42%;
  transform: rotate(39deg);
}

.hero-network-nodes {
  position: absolute;
  inset: 48px 28px 28px 28px;
}

.hero-network-nodes span {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow:
    0 0 0 5px rgba(214,178,94,0.12),
    0 0 18px rgba(214,178,94,0.35);
  animation: nodePulse 2.8s ease-in-out infinite;
}

.hero-network-nodes span:nth-child(1) {
  top: 16%;
  left: 14%;
}

.hero-network-nodes span:nth-child(2) {
  top: 42%;
  left: 52%;
}

.hero-network-nodes span:nth-child(3) {
  top: 70%;
  left: 28%;
}

.hero-network-nodes span:nth-child(4) {
  top: 22%;
  right: 12%;
}

.hero-scene-caption {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  z-index: 1;
  padding: .72rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  color: var(--cream-soft);
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero-microproof {
  gap: .75rem;
}

.microproof-chip,
.metric-chip {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  padding: .78rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--cream-soft);
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.microproof-dot,
.section-kicker-dot {
  width: .45rem;
  height: .45rem;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 16px rgba(214, 178, 94, 0.58);
}

.btn-gold,
.btn-outline {
  min-height: 56px;
  padding: 16px 28px !important;
  border-radius: 4px !important;
  font-size: .82rem !important;
  font-weight: 600 !important;
  letter-spacing: .15em;
  text-transform: uppercase;
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .25s ease;
}

.btn-gold {
  color: var(--bg) !important;
  background: var(--amber) !important;
  border: 1px solid var(--amber) !important;
  box-shadow: none;
}

.btn-gold:hover {
  transform: translateY(-2px);
  background: var(--amber-soft) !important;
}

.btn-outline {
  background: transparent !important;
  color: var(--amber) !important;
  border: 1px solid var(--amber) !important;
}

.btn-outline:hover {
  transform: translateY(-2px);
  background: var(--amber) !important;
  color: var(--bg) !important;
}

.glass-panel {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.015)),
    var(--bg-panel) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.hero-stat {
  position: relative;
  min-height: 100%;
  padding: 1.25rem !important;
  border-radius: 12px !important;
  overflow: hidden;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
  animation: heroCardFloat 7s ease-in-out infinite;
}

.hero-stat::before {
  content: '';
  position: absolute;
  inset: -40% auto auto -20%;
  width: 120px;
  height: 220%;
  background: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,0.08), rgba(255,255,255,0));
  transform: rotate(24deg);
  opacity: .45;
  animation: statSweep 8.5s linear infinite;
  pointer-events: none;
}

.hero-stat::after {
  content: '';
  position: absolute;
  inset: auto -16% -44% auto;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214,178,94,.18), transparent 64%);
  pointer-events: none;
}

.hero-stat:nth-child(2) {
  animation-delay: -1.8s;
}

.hero-stat:nth-child(3) {
  animation-delay: -3.6s;
}

.hero-stat:hover,
.gold-hover:hover {
  transform: translateY(-6px);
  border-color: rgba(214,178,94,.34) !important;
  box-shadow:
    0 18px 38px rgba(0,0,0,.3),
    0 0 0 1px rgba(214,178,94,.18) inset,
    0 0 30px rgba(214,178,94,.08);
}

.icon-badge {
  width: 2.9rem;
  height: 2.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(214,178,94,.2);
  background: rgba(214,178,94,.08);
  color: var(--amber);
  animation: badgePulse 4.2s ease-in-out infinite;
}

.section-icon {
  width: 1rem;
  height: 1rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.spotlight-card {
  position: relative;
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  animation: cardAmbient 8s ease-in-out infinite;
}

.spotlight-card::after,
.gold-hover::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  border: 1px solid rgba(214,178,94,.12);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.015);
  opacity: .9;
}

.spotlight-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: .38;
  pointer-events: none;
  background:
    radial-gradient(240px circle at var(--spotlight-x, 50%) var(--spotlight-y, 50%), rgba(255,255,255,.11), transparent 58%),
    radial-gradient(140px circle at 82% 16%, rgba(214,178,94,.12), transparent 65%);
  transition: opacity .22s ease, background .22s ease;
}

.spotlight-card:hover::before {
  opacity: 1;
}

.card-noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .1;
  background-image: radial-gradient(rgba(255,255,255,.06) .7px, transparent .7px);
  background-size: 14px 14px;
  mask-image: linear-gradient(to bottom, black, transparent 84%);
}

.scroll-cue {
  color: var(--muted) !important;
}

.scroll-cue-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--amber), transparent);
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  margin-bottom: 1.25rem;
  color: var(--amber);
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.section-title {
  display: block;
  font-size: clamp(2.1rem, 4.4vw, 4rem) !important;
  line-height: 1.08 !important;
  color: var(--cream);
}

.section-title::after {
  background-size: 200% 100%;
  animation: titleBeam 7s linear infinite;
}

.manifesto-section {
  padding-top: 1rem;
}

.manifesto-inner {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.manifesto-inner .section-kicker {
  justify-content: center;
}

.manifesto-line {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5.2vw, 4.6rem);
  line-height: 1.12;
  color: var(--cream);
}

.manifesto-line + .manifesto-line {
  margin-top: .12em;
}

.manifesto-line-accent {
  color: var(--amber-soft);
  font-style: italic;
}

.manifesto-sep {
  width: 42px;
  height: 1px;
  margin: 2rem auto;
  background: linear-gradient(90deg, var(--amber), transparent);
}

.manifesto-body {
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.02rem;
  line-height: 1.85;
  color: var(--cream-soft);
}

.section-title::after {
  margin-inline: auto;
}

#vision .section-title::after {
  margin-inline: 0;
}

main > section,
#cta {
  position: relative;
}

main > section:not(:first-child) {
  margin-top: 0;
}

.marquee-shell {
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.07) !important;
  background: rgba(255,255,255,.025) !important;
}

.marquee-shell::before,
.marquee-shell::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 64px;
  pointer-events: none;
  z-index: 1;
}

.marquee-shell::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg), transparent);
}

.marquee-shell::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg), transparent);
}

.marquee-track {
  display: flex;
  gap: .8rem;
  width: max-content;
  padding: .9rem;
  animation: marquee 28s linear infinite;
}

.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .65rem .95rem;
  border-radius: 999px;
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.06);
  color: var(--cream-soft);
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.marquee-track span::before {
  content: '';
  width: .45rem;
  height: .45rem;
  border-radius: 50%;
  background: var(--amber);
}

.vision-pill,
.method-step,
#cible .gold-hover,
#confiance .gold-hover {
  border-radius: 12px !important;
}

.vision-pill {
  padding: 1rem;
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.06);
}

.vision-pill-label {
  color: var(--amber);
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.method-grid::before,
.method-step::after {
  display: none;
}

.gold-hover {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.012)) !important;
  border: 1px solid rgba(255,255,255,.08) !important;
  box-shadow:
    0 16px 36px rgba(0,0,0,.16),
    inset 0 1px 0 rgba(255,255,255,.03);
  animation: cardAmbient 8s ease-in-out infinite;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.gold-text {
  background: none;
  color: var(--cream);
  -webkit-text-fill-color: initial;
}

.partner-logo {
  max-width: 140px;
  max-height: 48px;
  object-fit: contain;
}

.partner-head {
  align-items: center;
}

#cta {
  background:
    radial-gradient(ellipse 55% 45% at 50% 120%, rgba(214,178,94,.13), transparent 68%),
    linear-gradient(180deg, rgba(255,255,255,.015), transparent 18%),
    var(--bg-soft);
}

#cta .hero-bg,
#cta .hero-grid {
  opacity: 0.2 !important;
}

footer {
  margin-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.07) !important;
  background: linear-gradient(180deg, rgba(255,255,255,.01), rgba(255,255,255,0));
}

footer .font-semibold.text-gray-300.text-lg {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--cream) !important;
}

footer h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: .75rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--amber) !important;
}

footer,
footer p,
footer a,
footer .text-gray-400,
footer .text-gray-500 {
  color: var(--cream-dim) !important;
}

footer a:hover {
  color: var(--amber) !important;
}

#contactModal {
  background: rgba(5,5,5,.82) !important;
  backdrop-filter: blur(14px);
}

#contactModal > div {
  background: linear-gradient(180deg, rgba(255,255,255,.025), rgba(255,255,255,.015)), #121212 !important;
  border: 1px solid rgba(255,255,255,.08) !important;
  border-radius: 14px !important;
}

#contactModal .btn-outline {
  min-height: auto;
  padding: .7rem 1rem !important;
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .9s var(--ease-soft), transform .9s var(--ease-soft);
}

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

@keyframes floatOrb {
  0%, 100% { transform: translate3d(var(--hero-shift-x, 0), var(--hero-shift-y, 0), 0) scale(1); }
  50% { transform: translate3d(var(--hero-shift-x, 0), calc(var(--hero-shift-y, 0) - 12px), 0) scale(1.04); }
}

@keyframes heroCardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes boardFloat {
  0%, 100% { transform: translateY(0) rotate(var(--board-rotate, 0deg)); }
  50% { transform: translateY(-8px) rotate(var(--board-rotate, 0deg)); }
}

@keyframes cardAmbient {
  0%, 100% {
    box-shadow: 0 20px 46px rgba(0,0,0,.22);
  }
  50% {
    box-shadow: 0 24px 54px rgba(0,0,0,.3), 0 0 24px rgba(214,178,94,.08);
  }
}

@keyframes badgePulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(214,178,94,.16);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(214,178,94,0), 0 0 18px rgba(214,178,94,.16);
  }
}

@keyframes statSweep {
  0% { transform: translateX(-34%) rotate(24deg); }
  100% { transform: translateX(320%) rotate(24deg); }
}

@keyframes nodePulse {
  0%, 100% {
    transform: scale(1);
    box-shadow:
      0 0 0 5px rgba(214,178,94,0.12),
      0 0 18px rgba(214,178,94,0.35);
  }
  50% {
    transform: scale(1.16);
    box-shadow:
      0 0 0 9px rgba(214,178,94,0.04),
      0 0 24px rgba(214,178,94,0.48);
  }
}

@keyframes networkPulse {
  0%, 100% { opacity: .46; }
  50% { opacity: .95; }
}

@keyframes titleBeam {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

@keyframes orbitSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes orbitSpinReverse {
  from { transform: rotate(0deg); }
  to { transform: rotate(-360deg); }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal,
  .hero-title .word,
  .hero-orb,
  .marquee-track {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

@media (max-width: 1023px) {
  .hero-layout {
    gap: 2rem;
  }

  .hero-title,
  .hero-copy.lg\:text-left .hero-title,
  .hero-copy.text-center .hero-title {
    margin-inline: auto;
    max-width: 13ch;
  }

  .hero-title::after {
    margin-inline: auto !important;
  }

  .hero-subtitle {
    margin-inline: auto !important;
  }

  .hero-copy,
  #vision .space-y-6 {
    text-align: center;
  }

  #vision .section-title::after {
    margin-inline: auto;
  }

  .hero-scene {
    min-height: 500px;
    padding: 1rem;
    border-radius: 24px !important;
  }

  .hero-scene-board {
    transform: none !important;
  }

  .hero-scene-board-primary {
    left: 1.25rem;
    right: 28%;
    top: 1.25rem;
    width: auto;
    min-height: 220px;
    padding: 1.25rem;
  }

  .hero-scene-board-note {
    right: 1.25rem;
    top: 1.4rem;
    width: calc(28% - .2rem);
    min-width: 210px;
    padding: 1rem 1.05rem;
  }

  .hero-scene-board-network {
    left: 1.25rem;
    right: 1.25rem;
    bottom: 4.2rem;
    width: auto;
    min-height: 150px;
    padding: 1rem;
  }

  .hero-scene-caption {
    bottom: 1rem;
    width: calc(100% - 2rem);
    text-align: center;
  }

  .hero-stat {
    min-height: 100%;
  }
}

@media (max-width: 767px) {
  html {
    scroll-padding-top: 84px;
  }

  body {
    background-attachment: scroll;
  }

  nav {
    height: 66px;
  }

  #home {
    min-height: auto;
    padding-top: 3.9rem;
    padding-bottom: 4rem;
  }

  .hero-title {
    max-width: 12ch;
    font-size: clamp(2.5rem, 12vw, 4rem) !important;
  }

  .hero-title-line {
    white-space: normal;
  }

  .hero-watermark {
    inset: 39% auto auto 50%;
    width: min(84vw, 360px);
    opacity: 0.15;
  }

  .hero-watermark-glow {
    width: min(76vw, 300px);
    height: min(76vw, 300px);
  }

  .hero-subtitle {
    font-size: .98rem !important;
    line-height: 1.75 !important;
  }

  .hero-layout {
    gap: 1.4rem;
  }

  .hero-scene {
    display: flex;
    flex-direction: column;
    gap: .85rem;
    min-height: auto;
    padding: .85rem;
    border-radius: 22px !important;
  }

  .hero-scene-board {
    position: relative;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    width: 100% !important;
    min-width: 0 !important;
    min-height: auto;
    padding: 1rem !important;
    transform: none !important;
    animation: none;
  }

  .hero-scene-board-primary {
    order: 1;
  }

  .hero-scene-board-note {
    order: 2;
  }

  .hero-scene-board-network {
    order: 3;
    min-height: 155px;
  }

  .hero-scene-caption {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    order: 4;
    width: 100%;
    margin-top: .1rem;
    text-align: center;
    font-size: .64rem;
    letter-spacing: .1em;
  }

  .hero-scene-grid,
  .hero-scene-glow {
    display: none;
  }

  .hero-scene-logo {
    width: min(72%, 210px);
    margin-inline: auto;
  }

  .hero-scene-board-title {
    font-size: clamp(1.65rem, 7vw, 2.15rem);
    text-align: center;
  }

  .hero-scene-board p,
  .hero-scene-list {
    text-align: center;
  }

  .hero-scene-list li {
    padding-left: 0;
  }

  .hero-scene-list li::before {
    position: static;
    display: inline-block;
    margin-right: .45rem;
    vertical-align: middle;
  }

  .hero-network-lines,
  .hero-network-nodes {
    inset: 40px 18px 18px 18px;
  }

  .hero-stat {
    text-align: center;
    padding: 1rem .95rem !important;
  }

  .hero-stat .icon-badge {
    margin-inline: auto;
  }

  .hero-stat::before {
    width: 90px;
  }

  .hero-stat,
  .gold-hover,
  .vision-pill,
  .method-step {
    padding: 1rem !important;
  }

  .btn-gold,
  .btn-outline {
    width: 100%;
  }

  .microproof-chip,
  .metric-chip {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .section-kicker {
    justify-content: center;
  }

  .section-title {
    font-size: clamp(2rem, 10vw, 3rem) !important;
  }

  .manifesto-line {
    font-size: clamp(2rem, 10vw, 3.2rem);
  }

  .manifesto-body {
    font-size: .98rem;
    line-height: 1.78;
  }

  .marquee-track {
    gap: .6rem;
    padding: .75rem;
    animation-duration: 22s;
  }

  .marquee-track span {
    font-size: .66rem;
    padding: .55rem .75rem;
  }

  .partner-head {
    flex-direction: column;
    align-items: flex-start;
    gap: .9rem;
  }

  .partner-logo {
    max-width: 118px;
  }

  #confiance .grid.sm\:grid-cols-2 {
    grid-template-columns: 1fr;
  }

  section[id] {
    scroll-margin-top: 90px;
  }
}

@media (hover: none), (pointer: coarse) {
  .gold-hover:hover,
  .hero-stat:hover {
    transform: none;
  }

  .spotlight-card::before {
    opacity: .8;
    background:
      radial-gradient(220px circle at 50% 35%, rgba(255,255,255,.09), transparent 58%),
      radial-gradient(140px circle at 82% 16%, rgba(214,178,94,.12), transparent 65%);
  }

  .hero-stat {
    animation-duration: 6s;
  }

  .gold-hover,
  .spotlight-card {
    border-color: rgba(214,178,94,.16) !important;
    box-shadow:
      0 18px 34px rgba(0,0,0,.18),
      0 0 0 1px rgba(214,178,94,.08) inset;
  }
}

@media (max-width: 430px) {
  .hero-title {
    font-size: clamp(2.15rem, 11vw, 3rem) !important;
  }

  .hero-subtitle {
    font-size: .92rem !important;
  }

  .hero-scene {
    padding: .75rem;
  }

  .hero-scene-board {
    padding: .9rem !important;
    border-radius: 18px;
  }

  .hero-scene-board-title {
    font-size: 1.45rem;
  }

  .hero-scene-caption {
    font-size: .58rem;
    line-height: 1.45;
  }

  .hero-stat {
    padding: .95rem .85rem !important;
  }

  .icon-badge {
    width: 2.7rem;
    height: 2.7rem;
  }
}
