:root {
  --orange:    #eb5f35;
  --orange-d:  #d14619;
  --navy:      #19304e;
  --navy-deep: #0f1f33;
  --navy-2:    #213e60;
  --white:     #ffffff;
  --cream:     #f4f0e8;
  --cyan:      #45bedb;
  --cyan-l:    #9ed6e5;
  --ink:       #0a1828;

  --font-display: 'Oswald', 'Bebas Neue', Impact, sans-serif;
  --font-condensed: 'Bebas Neue', Impact, sans-serif;
  --font-body: 'Montserrat', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --container: 1440px;
  --gutter: clamp(20px, 4vw, 56px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  cursor: none;
}
@media (max-width: 900px) { body { cursor: auto; } }

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

.cursor {
  position: fixed; top: 0; left: 0;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--orange);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .25s var(--ease), height .25s var(--ease), background .25s var(--ease);
  mix-blend-mode: normal;
}
.cursor.is-hover { width: 48px; height: 48px; background: rgba(235,95,53,.35); }
@media (max-width: 900px) { .cursor { display: none; } }

.grain {
  position: fixed; inset: 0;
  pointer-events: none;
  opacity: .07;
  mix-blend-mode: overlay;
  z-index: 1;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='300' height='300'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/></svg>");
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 500;
}
.eyebrow::before {
  content: ""; width: 28px; height: 1px; background: var(--orange);
}

/* ─── Section shared ─────────────────────────────────── */
.section-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: end;
  margin-bottom: 56px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(46px, 7vw, 100px);
  line-height: .95;
  letter-spacing: -.01em;
  text-transform: uppercase;
}
.section-title-offset { margin-top: 16px; }
.section-title-tight { line-height: 1.05; }
.section-title .accent { color: var(--orange); }
.text-orange { color: var(--orange); }
.eyebrow-cyan { color: var(--cyan); }
.section-head .meta {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  text-align: right;
  line-height: 1.8;
}
@media (max-width: 700px) {
  .section-head { grid-template-columns: 1fr; align-items: start; }
  .section-head .meta { text-align: left; }
}

/* ─── Reveal animations ───────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.in { opacity: 1; transform: translateY(0); }

.split {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.split.in { opacity: 1; transform: translateY(0); }
