
:root {
  --bg: #0B0B0C;
  --bg-2: #131416;
  --bg-3: #1A1B1D;
  --surface-light: #F6F4EE;
  --surface-light-2: #FAF9F5;
  --text: #EEEAE0;
  --text-dim: #A6A29A;
  --text-muted: #6F6C66;
  --ink: #000000;
  --ink-dim: #4A4843;
  --gold: #C9A24B;
  --gold-2: #D9B866;
  --gold-soft: rgba(201, 162, 75, 0.14);
  --gold-line: rgba(201, 162, 75, 0.35);
  --hairline: rgba(255,255,255,0.08);
  --hairline-ink: rgba(17,16,18,0.10);
  --radius-sm: 8px;
  --radius: 8px;
  --radius-lg: 8px;
  --radius-pill: 8px;
  --shadow-card: 0 20px 60px -20px rgba(0,0,0,0.5);
  --ease: cubic-bezier(.22,.61,.36,1);
  --font-display: 'Inter', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --container: 1600px;
  --container-wide: 1600px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0;
  line-height: 1.1;
  text-wrap: balance;
}

.container { max-width: var(--container); margin: 0 auto; padding: 0 clamp(20px, 4vw, 80px); }
.container-wide { max-width: var(--container-wide); margin: 0 auto; padding: 0 clamp(20px, 4vw, 80px); }


.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  font-weight: 600;
}
.eyebrow::before {
  content: '';
  width: 40px;
  height: 2px;
  background: var(--gold);
  display: block;
}
.eyebrow--center { justify-content: center; }
.eyebrow--stack::before {
  width: 56px;
  height: 3px;
}
.eyebrow-line {
  width: 56px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin-bottom: 18px;
}
.eyebrow-line--center { margin-left: auto; margin-right: auto; }


.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 26px 14px 28px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: all .25s var(--ease);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn .arrow {
  width: 18px; height: 18px;
  transition: transform .3s var(--ease);
}
.btn:hover .arrow { transform: translateX(4px); }

.btn-primary {
  background: var(--gold);
  color: #1C1608;
  border: 1px solid var(--gold);
}
.btn-primary:hover {
  background: var(--gold-2);
  border-color: var(--gold-2);
  transform: translateY(-1px);
  box-shadow: 0 10px 30px -10px rgba(201,162,75,0.05);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.25);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-ghost-ink {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(17,16,18,0.25);
}
.btn-ghost-ink:hover {
  border-color: var(--gold);
  color: #8A6D20;
}


section { position: relative; }
.section-dark {
  background:
    radial-gradient(ellipse 80% 60% at 15% 0%, rgba(201,162,75,0.08), transparent 60%),
    radial-gradient(ellipse 70% 60% at 100% 100%, rgba(90,140,220,0.06), transparent 55%),
    linear-gradient(180deg, #0a0a0c 0%, #0e0e11 100%);
  color: var(--text);
  padding: 120px 0;
  position: relative;
}
.section-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(201,162,75,0.05) 1px, transparent 1px) 0 0 / 100px 100px,
    linear-gradient(to bottom, rgba(201,162,75,0.05) 1px, transparent 1px) 0 0 / 100px 100px;
  mask: radial-gradient(ellipse 90% 100% at 50% 50%, #000 20%, transparent 95%);
  -webkit-mask: radial-gradient(ellipse 90% 100% at 50% 50%, #000 20%, transparent 95%);
  pointer-events: none;
  opacity: 1;
}
.section-dark > * { position: relative; }
.section-light { background: var(--surface-light); color: var(--ink); padding: 96px 0; }

.section-title {
  font-size: 48px;
  font-weight: 700;
}
.section-title--center { text-align: center; }


html.js-reveal-ready .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
html.js-reveal-ready .reveal.is-in {
  opacity: 1;
  transform: none;
}
.reveal.delay-1 { transition-delay: .08s; }
.reveal.delay-2 { transition-delay: .16s; }
.reveal.delay-3 { transition-delay: .24s; }
.reveal.delay-4 { transition-delay: .32s; }


html.js-reveal-ready .drop-in {
  opacity: 0;
  transform: translateY(-36px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
html.js-reveal-ready .drop-in.is-in {
  opacity: 1;
  transform: none;
}
html.js-reveal-ready .drop-in .drop-line,
html.js-reveal-ready .hero__line {
  display: block;
}

.hero__line.is-split { display: flex; flex-wrap: wrap; }
.hero__line .frag {
  display: inline-flex;
  overflow: hidden;
  vertical-align: top;
  padding: 0.08em 0;
  margin: -0.08em 0;
}
.hero__line .frag > span {
  display: inline-block;
  white-space: pre;
  will-change: transform;
  transform: translate3d(var(--x, 100%), 0, 0);
}
html.js-reveal-ready .hero__line.is-split .frag > span {
  animation: heroFragIn 1.1s cubic-bezier(.52,0,.48,1) both;
  animation-delay: var(--d, 0s);
}
@keyframes heroFragIn {
  from { transform: translate3d(var(--x, 100%), 0, 0); }
  to   { transform: translate3d(0, 0, 0); }
}

.hero__sub.is-split { display: block; }
.hero__sub .frag {
  display: inline-flex;
  overflow: hidden;
  vertical-align: top;
  padding: 0.08em 0;
  margin: -0.08em 0;
}
.hero__sub .frag > span {
  display: inline-block;
  white-space: pre;
  will-change: transform;
  transform: translate3d(0, 110%, 0);
}
html.js-reveal-ready .hero__sub.is-split .frag > span {
  animation: heroSubIn .8s cubic-bezier(.22,.61,.36,1) both;
  animation-delay: var(--d, 0s);
}
@keyframes heroSubIn {
  from { transform: translate3d(0, 110%, 0); }
  to   { transform: translate3d(0, 0, 0); }
}


.wave-divider {
  position: absolute;
  pointer-events: none;
  opacity: .5;
}


:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}


::selection { background: var(--gold); color: #1C1608; }


.cursor-glow {
  position: fixed;
  top: 0; left: 0;
  width: 640px;
  height: 640px;
  pointer-events: none;
  z-index: 1;
  transform: translate3d(-50%, -50%, 0);
  opacity: 0;
  background: radial-gradient(circle at center,
    rgba(255,255,255,0.08) 0%,
    rgba(255,255,255,0.04) 30%,
    rgba(255,255,255,0.015) 55%,
    transparent 72%);
  filter: blur(36px);
  transition: opacity .7s var(--ease);
  mix-blend-mode: screen;
  will-change: transform, opacity;
}
.cursor-glow.is-on { opacity: 1; }

.hero > *:not(.hero__bg),
.section-dark > .container,
.section-dark > .container-wide,
.cta__content,
.footer__band-content {
  position: relative;
  z-index: 4;
}

.team-card { position: relative; z-index: 5; }


.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg);
  display: grid;
  place-items: center;
  transition: opacity .6s var(--ease), visibility 0s .6s;
}
.page-loader__logo {
  width: 180px;
  height: auto;
  filter: brightness(0) invert(1);
  animation: loaderPulse 1.4s ease-in-out infinite;
}
@keyframes loaderPulse {
  0%, 100% { opacity: .35; transform: scale(0.96); }
  50%      { opacity: 1;   transform: scale(1.04); }
}
.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}


html.js-reveal-ready .reveal-stagger > * {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
html.js-reveal-ready .reveal-stagger.is-in > *:nth-child(1) { transition-delay: .00s; }
html.js-reveal-ready .reveal-stagger.is-in > *:nth-child(2) { transition-delay: .08s; }
html.js-reveal-ready .reveal-stagger.is-in > *:nth-child(3) { transition-delay: .16s; }
html.js-reveal-ready .reveal-stagger.is-in > *:nth-child(4) { transition-delay: .24s; }
html.js-reveal-ready .reveal-stagger.is-in > *:nth-child(5) { transition-delay: .32s; }
html.js-reveal-ready .reveal-stagger.is-in > *:nth-child(6) { transition-delay: .40s; }
html.js-reveal-ready .reveal-stagger.is-in > *:nth-child(7) { transition-delay: .48s; }
html.js-reveal-ready .reveal-stagger.is-in > *:nth-child(n+8) { transition-delay: .56s; }
html.js-reveal-ready .reveal-stagger.is-in > * { opacity: 1; transform: none; }


html.js-reveal-ready .slide-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
html.js-reveal-ready .slide-left.is-in { opacity: 1; transform: none; }
html.js-reveal-ready .slide-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
html.js-reveal-ready .slide-right.is-in { opacity: 1; transform: none; }
