/* =====================================================
   Team DSR Executorrs LLP — Awwwards-grade stylesheet
   ===================================================== */

:root {
  --red: #cc0000;
  --red-deep: #a00000;
  --red-glow: rgba(204, 0, 0, 0.55);
  --dark: #0d0d0d;
  --dark-2: #141414;
  --dark-3: #1a1a1a;
  --line: rgba(255, 255, 255, 0.08);
  --line-2: rgba(255, 255, 255, 0.16);
  --white: #ffffff;
  --muted: rgba(255, 255, 255, 0.55);
  --muted-2: rgba(255, 255, 255, 0.7);
  --ease: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --maxw: 1320px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body { background: var(--dark); color: var(--white); }

html { -webkit-font-smoothing: antialiased; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }
.lenis.lenis-scrolling iframe { pointer-events: none; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px; line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

@media (max-width: 900px) { body { cursor: auto; } }

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: none; }
@media (max-width: 900px) { button { cursor: pointer; } }
input, select, textarea { font: inherit; color: inherit; }

::selection { background: var(--red); color: #fff; }

/* =====================================================
   Loader / red curtain
   ===================================================== */
.loader {
  position: fixed; inset: 0; z-index: 9999;
  pointer-events: none;
}
.loader__panel {
  position: absolute; left: 0; right: 0; height: 50%;
  background: var(--red);
  z-index: 2;
}
.loader__panel--top    { top: 0; }
.loader__panel--bottom { bottom: 0; }

.loader__inner {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  z-index: 3; color: #fff;
}
.loader__inner > * { transition: opacity .4s ease; }
.loader__logo {
  width: 110px; height: auto;
  fill: none; stroke: #fff; stroke-width: 4; stroke-linejoin: round; stroke-linecap: round;
}
.loader__logo .logo-stroke {
  stroke-dasharray: 220; stroke-dashoffset: 220;
  animation: drawTD 1.6s var(--ease-out) forwards;
}
.loader__logo .logo-stroke:nth-child(2) { animation-delay: .2s; }
@keyframes drawTD { to { stroke-dashoffset: 0; } }

.loader__bar {
  width: 220px; height: 2px; background: rgba(255,255,255,.2); margin-top: 28px; overflow: hidden;
}
.loader__bar span {
  display: block; width: 0%; height: 100%; background: #fff;
  animation: loadBar 1.6s var(--ease-out) forwards;
}
@keyframes loadBar { to { width: 100%; } }

.loader__count {
  margin-top: 14px; font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.1em; font-size: 14px; opacity: .7;
}

body.is-loaded .loader { pointer-events: none; }

/* =====================================================
   Custom cursor
   ===================================================== */
.cursor {
  position: fixed; top: 0; left: 0; pointer-events: none;
  z-index: 9998; mix-blend-mode: difference;
}
.cursor__dot, .cursor__ring {
  position: fixed; top: 0; left: 0;
  border-radius: 50%; transform: translate(-50%, -50%);
  will-change: transform;
}
.cursor__dot {
  width: 6px; height: 6px; background: var(--red);
}
.cursor__ring {
  width: 36px; height: 36px;
  border: 1.5px solid #fff;
  transition: width .25s var(--ease-out), height .25s var(--ease-out), border-color .25s, background .25s;
}
.cursor.is-hover .cursor__ring {
  width: 64px; height: 64px;
  background: rgba(255,255,255,.06);
  border-color: var(--red);
}
.cursor.is-down .cursor__ring { width: 28px; height: 28px; }

@media (max-width: 900px) { .cursor { display: none; } }

/* =====================================================
   Navigation
   ===================================================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px clamp(20px, 4vw, 56px);
  transition: background .4s var(--ease), backdrop-filter .4s, padding .4s, border-color .4s;
  border-bottom: 1px solid transparent;
}
.nav.is-solid {
  background: rgba(13, 13, 13, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
  padding-top: 14px; padding-bottom: 14px;
}

.nav__brand {
  display: flex; align-items: center; gap: 12px;
}
.brand-mark {
  width: 46px; height: 24px;
  fill: none; stroke: var(--red);
  stroke-width: 4.5; stroke-linejoin: round; stroke-linecap: round;
}
.brand-text {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.18em; font-size: 16px;
  color: #fff;
}
.brand-text b { color: var(--red); margin-right: 2px; }

.nav__links {
  display: flex; gap: 34px;
}
.nav__links a {
  position: relative; padding: 6px 0;
  font-size: 13px; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.78);
  transition: color .25s;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 0; height: 2px; background: var(--red);
  transition: width .35s var(--ease-out);
}
.nav__links a:hover { color: #fff; }
.nav__links a:hover::after { width: 100%; }

.nav__cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 22px; border-radius: 999px;
  background: var(--red); color: #fff;
  font-size: 13px; letter-spacing: .12em; text-transform: uppercase;
  transition: transform .3s var(--ease-out), background .3s;
  position: relative; will-change: transform;
}
.nav__cta:hover { background: #ff1a1a; }
.nav__cta svg { width: 16px; height: 16px; }

.nav__burger {
  display: none;
  width: 40px; height: 40px;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 6px;
}
.nav__burger span {
  display: block; width: 22px; height: 2px; background: #fff;
  transition: transform .35s var(--ease), opacity .25s;
}
.nav__burger.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 1024px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: inline-flex; }
}

/* mobile overlay */
.overlay {
  position: fixed; inset: 0; z-index: 90;
  background: var(--dark); color: #fff;
  display: grid; place-items: center;
  clip-path: circle(0% at 100% 0%);
  transition: clip-path .65s var(--ease);
}
.overlay.is-open { clip-path: circle(150% at 100% 0%); }
.overlay ul { list-style: none; text-align: center; }
.overlay li {
  font-family: 'Bebas Neue', sans-serif; font-size: clamp(40px, 9vw, 80px);
  letter-spacing: .04em; line-height: 1.1; margin: 6px 0;
  opacity: 0; transform: translateY(30px);
  transition: opacity .5s var(--ease-out), transform .5s var(--ease-out);
}
.overlay.is-open li { opacity: 1; transform: none; }
.overlay.is-open li:nth-child(1) { transition-delay: .15s; }
.overlay.is-open li:nth-child(2) { transition-delay: .22s; }
.overlay.is-open li:nth-child(3) { transition-delay: .29s; }
.overlay.is-open li:nth-child(4) { transition-delay: .36s; }
.overlay.is-open li:nth-child(5) { transition-delay: .43s; }
.overlay.is-open li:nth-child(6) { transition-delay: .50s; }
.overlay__meta {
  position: absolute; bottom: 40px; left: 0; right: 0;
  display: flex; justify-content: center; gap: 28px;
  font-size: 13px; color: var(--muted);
}

/* =====================================================
   HERO
   ===================================================== */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 60%, #1a0606 0%, #0d0d0d 55%, #050505 100%);
}
.hero__canvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  display: block;
}
.hero__noise {
  position: absolute; inset: 0; pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.5'/></svg>");
  opacity: .07; mix-blend-mode: overlay;
}
.hero__copy {
  position: relative; z-index: 5;
  text-align: center; padding: 0 24px; max-width: var(--maxw);
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 18px; border: 1px solid var(--line-2);
  border-radius: 999px; background: rgba(255,255,255,.03);
  font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted-2); margin-bottom: 28px;
  backdrop-filter: blur(10px);
}
.hero__eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--red);
  box-shadow: 0 0 12px var(--red-glow);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.4); opacity: .6; }
}

.hero__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(54px, 11vw, 180px);
  line-height: .92; letter-spacing: .005em;
  text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center;
}
.hero__title .line { display: block; overflow: hidden; }
.hero__title .line span {
  display: inline-block; transform: translateY(110%);
  will-change: transform;
}
.hero__title .line--center em {
  font-style: normal; color: var(--red);
}
.hero__title .line--center {
  position: relative;
}

.hero__tag {
  position: relative; display: inline-block;
  margin-top: 28px;
  font-size: clamp(15px, 1.4vw, 18px);
  color: var(--muted-2);
  letter-spacing: .04em;
  opacity: 0;
}
.hero__tag em { color: #fff; font-style: normal; font-weight: 600; }
.hero__underline {
  position: absolute; left: 0; right: 0; bottom: -10px;
  width: 100%; height: 14px; pointer-events: none;
}
.hero__underline path {
  fill: none; stroke: var(--red); stroke-width: 2.4;
  stroke-linecap: round;
  stroke-dasharray: 600; stroke-dashoffset: 600;
}

.hero__ctas {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  margin-top: 44px;
  opacity: 0;
}

.btn {
  position: relative; display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px; border-radius: 999px;
  font-size: 13px; letter-spacing: .14em; text-transform: uppercase;
  overflow: hidden; will-change: transform;
  transition: transform .3s var(--ease-out);
}
.btn svg { width: 18px; height: 18px; }
.btn--primary {
  background: var(--red); color: #fff;
  box-shadow: 0 18px 40px -10px var(--red-glow);
}
.btn--primary:hover { background: #ff1a1a; }
.btn--ghost {
  border: 1px solid var(--line-2); color: #fff; background: transparent;
}
.btn--ghost:hover { background: rgba(255,255,255,.06); border-color: #fff; }

.btn--shimmer {
  background: var(--red); color: #fff;
  margin-top: 18px; padding: 18px 30px;
}
.btn--shimmer::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.45) 50%, transparent 70%);
  transform: translateX(-100%);
  animation: shimmer 2.6s infinite;
}
@keyframes shimmer { to { transform: translateX(100%); } }

.ripple {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,.4);
  transform: scale(0); pointer-events: none;
  animation: rippleAnim .7s var(--ease-out) forwards;
}
@keyframes rippleAnim { to { transform: scale(8); opacity: 0; } }

.hero__scroll {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  display: flex; align-items: center; gap: 12px;
  font-size: 11px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--muted); z-index: 4;
  opacity: 0;
}
.hero__scroll i {
  display: block; width: 1px; height: 50px; background: rgba(255,255,255,.2);
  position: relative; overflow: hidden;
}
.hero__scroll i::before {
  content: ""; position: absolute; left: 0; top: -50%;
  width: 100%; height: 50%; background: var(--red);
  animation: scrollLine 2s infinite var(--ease);
}
@keyframes scrollLine {
  0%   { top: -50%; }
  100% { top: 100%; }
}

.hero__corner {
  position: absolute; width: 40px; height: 40px;
  border: 1px solid var(--red);
  z-index: 3; pointer-events: none;
}
.hero__corner--tl { top: 80px; left: 28px; border-right: 0; border-bottom: 0; }
.hero__corner--tr { top: 80px; right: 28px; border-left: 0;  border-bottom: 0; }
.hero__corner--bl { bottom: 28px; left: 28px; border-right: 0; border-top: 0; }
.hero__corner--br { bottom: 28px; right: 28px; border-left: 0;  border-top: 0; }

@media (max-width: 720px) {
  .hero__corner { width: 24px; height: 24px; }
  .hero__corner--tl, .hero__corner--tr { top: 70px; }
}

/* =====================================================
   SECTION primitives
   ===================================================== */
section { position: relative; padding: clamp(80px, 10vw, 160px) clamp(20px, 4vw, 56px); }

.section-head { max-width: 980px; margin-bottom: clamp(50px, 6vw, 90px); }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }

.kicker {
  display: inline-block;
  font-size: 12px; letter-spacing: .25em; text-transform: uppercase;
  color: var(--red); margin-bottom: 18px;
}
.kicker::before {
  content: ""; display: inline-block;
  width: 22px; height: 1px; background: var(--red);
  vertical-align: middle; margin-right: 10px;
}

.display {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(38px, 5.5vw, 88px);
  line-height: 1.02; letter-spacing: .005em;
  text-transform: uppercase;
}
.display em { font-style: normal; color: var(--red); }

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

/* =====================================================
   ABOUT (dot globe)
   ===================================================== */
.about {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 100px);
  align-items: center;
  border-top: 1px solid var(--line);
}
.about__globe {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
}
.about__globe canvas { width: 100% !important; height: 100% !important; display: block; }
.about__globe::after {
  content: ""; position: absolute; inset: -10%;
  background: radial-gradient(circle, var(--red-glow) 0%, transparent 60%);
  filter: blur(40px); opacity: .35; pointer-events: none; z-index: -1;
}
.about__copy p {
  margin-top: 22px; color: var(--muted-2);
  max-width: 540px;
}
.about__pillars {
  margin-top: 40px; display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.pillar {
  padding: 18px; border: 1px solid var(--line);
  background: rgba(255,255,255,.02);
  border-left: 2px solid var(--red);
  display: flex; flex-direction: column; gap: 4px;
}
.pillar b {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px; letter-spacing: .06em;
}
.pillar span { font-size: 12px; color: var(--muted); letter-spacing: .08em; text-transform: uppercase; }

.about__sub {
  margin-top: 36px; display: flex; gap: 10px; flex-wrap: wrap; align-items: center;
  font-size: 13px; color: var(--muted);
}
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; border-radius: 999px;
  border: 1px solid var(--line-2); background: rgba(255,255,255,.02);
  font-size: 12px; letter-spacing: .06em;
  transition: background .25s, color .25s, border-color .25s;
}
.chip i {
  width: 6px; height: 6px; border-radius: 50%; background: var(--red);
}
.chip em { color: var(--muted); font-style: normal; }
.chip:hover { background: var(--red); border-color: var(--red); color: #fff; }
.chip:hover em { color: rgba(255,255,255,.85); }

@media (max-width: 900px) {
  .about { grid-template-columns: 1fr; }
  .about__globe { max-width: 420px; margin: 0 auto; }
  .about__pillars { grid-template-columns: 1fr; }
}

/* =====================================================
   SERVICES (cards with 3D flip)
   ===================================================== */
.services { background: linear-gradient(180deg, transparent, rgba(255,255,255,.02)); }

.cards {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 1024px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .cards { grid-template-columns: 1fr; } }

.card {
  perspective: 1400px;
  height: 360px;
  opacity: 0; transform: translateY(60px) rotateY(-30deg);
  will-change: transform, opacity;
}
.card.is-in {
  opacity: 1; transform: none;
  transition: opacity .9s var(--ease-out), transform 1s var(--ease-out);
}
.card__inner {
  position: relative; width: 100%; height: 100%;
  transform-style: preserve-3d;
  transition: transform .8s var(--ease), box-shadow .4s;
}
.card:hover .card__inner {
  transform: rotateY(180deg);
  box-shadow: 0 30px 60px -20px var(--red-glow);
}
.card__face {
  position: absolute; inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  padding: 28px;
  border: 1px solid var(--line);
  border-left: 2px solid var(--red);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex; flex-direction: column; gap: 18px;
  overflow: hidden;
}
.card__face::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 0% 0%, rgba(204,0,0,.18) 0%, transparent 60%);
  opacity: 0; transition: opacity .5s;
  pointer-events: none;
}
.card:hover .card__face::before { opacity: 1; }
.card__face--back {
  transform: rotateY(180deg);
  background: rgba(204, 0, 0, 0.06);
  border-left-color: #fff;
}
.card__icon {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border: 1px solid var(--line-2);
  color: var(--red);
}
.card__icon svg { width: 32px; height: 32px; }
.card h3 {
  font-family: 'Bebas Neue', sans-serif; letter-spacing: .04em;
  font-size: 30px; line-height: 1; max-width: 80%;
}
.card p { color: var(--muted-2); font-size: 14.5px; }
.card__index {
  position: absolute; right: 22px; bottom: 18px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 56px; line-height: 1;
  color: rgba(255,255,255,.06);
}
.card__face--back ul {
  list-style: none; display: flex; flex-direction: column; gap: 10px;
  margin-top: 8px;
}
.card__face--back li {
  position: relative; padding-left: 22px;
  font-size: 14px; color: rgba(255,255,255,.85);
  letter-spacing: .02em;
}
.card__face--back li::before {
  content: ""; position: absolute; left: 0; top: .65em;
  width: 12px; height: 1.5px; background: var(--red);
}

/* =====================================================
   STATS
   ===================================================== */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 0;
}
.stat {
  padding: clamp(40px, 5vw, 70px) 24px;
  text-align: center;
  border-right: 1px solid var(--line);
  position: relative; overflow: hidden;
}
.stat:last-child { border-right: 0; }
.stat::before {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px; background: var(--red); transform: scaleX(0);
  transform-origin: left; transition: transform .6s var(--ease-out);
}
.stat:hover::before { transform: scaleX(1); }
.stat__num {
  display: block; font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(54px, 6.5vw, 100px); line-height: .9;
  letter-spacing: .02em; color: #fff;
}
.stat__label {
  display: block; margin-top: 14px;
  font-size: 12px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--muted);
}
@media (max-width: 720px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line); }
}

/* =====================================================
   WORK / MARQUEE
   ===================================================== */
.work { background: var(--dark); }
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 22px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee + .marquee { border-top: 0; }
.marquee__track {
  display: flex; gap: 32px; align-items: center;
  width: max-content;
  animation: scrollX 50s linear infinite;
}
.marquee[data-direction="right"] .marquee__track {
  animation-direction: reverse;
  animation-duration: 60s;
}
@keyframes scrollX {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.logo-badge {
  flex: 0 0 auto;
  padding: 14px 26px;
  border: 1px solid var(--line-2);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px; letter-spacing: .12em;
  color: rgba(255,255,255,.75);
  white-space: nowrap;
  transition: transform .3s var(--ease-out), background .3s, color .3s, border-color .3s;
  cursor: none;
}
.logo-badge.alt { letter-spacing: .08em; font-size: 20px; }
.logo-badge:hover {
  background: var(--red); color: #fff; border-color: var(--red);
  transform: scale(1.08);
}

/* =====================================================
   TIMELINE
   ===================================================== */
.timeline { background: linear-gradient(180deg, transparent, rgba(204,0,0,.03), transparent); }
.tl {
  position: relative; max-width: 980px; margin: 0 auto;
  padding-left: 80px;
}
.tl__line {
  position: absolute; left: 32px; top: 0; bottom: 0;
  width: 2px; background: rgba(255,255,255,.06);
  overflow: hidden;
}
.tl__progress {
  position: absolute; left: 0; top: 0; width: 100%;
  height: 0%;
  background: linear-gradient(180deg, var(--red), transparent);
}

.tl__node {
  position: relative; padding: 22px 0 34px;
  opacity: 0; transform: translateX(40px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
.tl__node.is-in { opacity: 1; transform: none; }

.tl__orb {
  position: absolute; left: -64px; top: 32px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(204,0,0,.2), 0 0 24px var(--red-glow);
  transition: transform .35s var(--ease-out), box-shadow .35s;
}
.tl__node:hover .tl__orb {
  transform: scale(1.4);
  box-shadow: 0 0 0 6px rgba(204,0,0,.25), 0 0 36px var(--red);
}
.tl__year {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 6vw, 86px); line-height: 1;
  letter-spacing: .02em; color: #fff;
}
.tl__node:nth-child(odd) .tl__year { color: rgba(255,255,255,.95); }
.tl__card {
  margin-top: 14px; padding: 22px 24px;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--line);
  border-left: 2px solid var(--red);
  max-width: 620px;
  transition: transform .35s var(--ease-out), background .35s, border-color .35s;
}
.tl__node:hover .tl__card {
  transform: translateX(8px);
  background: rgba(255,255,255,.05);
}
.tl__card h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px; letter-spacing: .04em;
  margin-bottom: 8px;
}
.tl__card p { color: var(--muted-2); font-size: 14.5px; }
.tl__card ul {
  list-style: none; display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 14px;
}
.tl__card li {
  font-size: 11px; letter-spacing: .15em; text-transform: uppercase;
  padding: 6px 10px; border: 1px solid var(--line-2);
  color: var(--muted-2);
}

@media (max-width: 600px) {
  .tl { padding-left: 56px; }
  .tl__line { left: 18px; }
  .tl__orb { left: -48px; }
}

/* =====================================================
   DEEP DIVE TABS
   ===================================================== */
.tabs { max-width: 1180px; margin: 0 auto; }
.tabs__nav {
  position: relative;
  display: flex; gap: 6px; flex-wrap: wrap;
  border-bottom: 1px solid var(--line);
  margin-bottom: 32px;
}
.tab {
  position: relative;
  padding: 18px 24px;
  font-size: 13px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted);
  transition: color .25s;
}
.tab:hover { color: #fff; }
.tab.is-active { color: #fff; }
.tab__bar {
  position: absolute; bottom: -1px; left: 0;
  height: 2px; background: var(--red);
  transition: transform .45s var(--ease-out), width .45s var(--ease-out);
  width: 0;
}

.tabs__panels { position: relative; }
.panel {
  display: none;
  opacity: 0; transform: translateY(20px);
  transition: opacity .4s var(--ease-out), transform .5s var(--ease-out);
}
.panel.is-active { display: block; opacity: 1; transform: none; }
.panel__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.panel__grid > div {
  padding: 24px;
  background: rgba(255,255,255,.02);
  border: 1px solid var(--line);
  border-top: 2px solid var(--red);
}
.panel__grid h5 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px; letter-spacing: .06em; margin-bottom: 14px;
}
.panel__grid ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.panel__grid li {
  position: relative; padding-left: 18px;
  font-size: 14px; color: var(--muted-2);
}
.panel__grid li::before {
  content: ""; position: absolute; left: 0; top: .65em;
  width: 8px; height: 1.5px; background: var(--red);
}
@media (max-width: 900px) { .panel__grid { grid-template-columns: 1fr; } }

/* =====================================================
   CONTACT
   ===================================================== */
.contact {
  background: #0d0d0d;
  position: relative; overflow: hidden;
  padding-bottom: 0;
}
.contact__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 18% 30%, rgba(204,0,0,.18), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(204,0,0,.10), transparent 55%);
  pointer-events: none;
}
.contact__inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(40px, 5vw, 80px);
  max-width: var(--maxw); margin: 0 auto;
}
.contact__left p { color: var(--muted-2); margin-top: 18px; max-width: 480px; }
.contact__details {
  margin-top: 36px; display: grid; gap: 14px;
  max-width: 460px;
}
.contact__details a {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-left: 2px solid var(--red);
  background: rgba(255,255,255,.02);
  transition: background .3s, transform .3s var(--ease-out);
}
.contact__details a:hover { background: rgba(255,255,255,.05); transform: translateX(6px); }
.contact__details b {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px; letter-spacing: .14em; color: var(--red);
}
.contact__details span { font-size: 14.5px; color: var(--muted-2); }

.contact__envelope {
  margin-top: 36px; position: relative;
  width: 100%; max-width: 380px; aspect-ratio: 16/10;
}
.contact__envelope canvas { width: 100% !important; height: 100% !important; }
.contact__envelope-hint {
  position: absolute; left: 50%; bottom: -10px; transform: translateX(-50%);
  font-size: 11px; letter-spacing: .25em; text-transform: uppercase;
  color: var(--muted);
}

.contact__form {
  background: rgba(255,255,255,.02);
  border: 1px solid var(--line);
  padding: 36px; display: flex; flex-direction: column; gap: 18px;
  position: relative;
}
.contact__form::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0;
  width: 2px; background: var(--red);
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--muted);
}
.field input, .field select, .field textarea {
  background: transparent; color: #fff;
  border: 0; border-bottom: 1px solid var(--line-2);
  padding: 12px 0; font-size: 15px;
  outline: none; transition: border-color .3s;
  cursor: none;
}
@media (max-width: 900px) {
  .field input, .field select, .field textarea { cursor: auto; }
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-bottom-color: var(--red);
}
.field select option { background: var(--dark-3); color: #fff; }
.field textarea { resize: vertical; min-height: 100px; font-family: inherit; }

.contact__note { font-size: 13px; color: var(--red); min-height: 1em; }

@media (max-width: 900px) {
  .contact__inner { grid-template-columns: 1fr; }
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  margin-top: clamp(60px, 8vw, 100px);
  padding: 32px clamp(20px, 4vw, 56px);
  border-top: 1px solid var(--line);
  font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted);
}
.footer__row, .footer__sub {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 14px;
}
.footer__sub { margin-top: 16px; opacity: .7; }
.footer b { color: var(--red); }

.footer__legal {
  margin-top: 18px;
  display: flex; flex-wrap: wrap; gap: 10px 14px;
  font-size: 12px; letter-spacing: .14em;
}
.footer__legal a {
  color: rgba(255,255,255,.78);
  position: relative;
  transition: color .25s;
}
.footer__legal a::after {
  content: ""; position: absolute; left: 0; bottom: -3px;
  width: 0; height: 1px; background: var(--red);
  transition: width .35s var(--ease-out);
}
.footer__legal a:hover { color: #fff; }
.footer__legal a:hover::after { width: 100%; }
.footer__legal span { color: rgba(255,255,255,.25); }

/* =====================================================
   Legal pages (terms, privacy, refund) + sub-pages
   ===================================================== */
.subpage {
  padding-top: 130px;
}
.subpage__hero {
  max-width: 980px; margin: 0 auto;
  padding: 60px clamp(20px, 4vw, 56px) 40px;
  border-bottom: 1px solid var(--line);
}
.subpage__hero .kicker { color: var(--red); }
.subpage__hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(44px, 6vw, 92px); line-height: 1.02;
  letter-spacing: .005em; margin-top: 14px;
}
.subpage__hero p {
  margin-top: 18px; color: var(--muted-2); max-width: 660px; font-size: 15.5px;
}
.subpage__hero .updated {
  display: inline-block; margin-top: 18px;
  padding: 6px 12px; border: 1px solid var(--line-2);
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--muted);
}

.legal {
  max-width: 980px; margin: 0 auto;
  padding: 60px clamp(20px, 4vw, 56px) 100px;
  display: grid; grid-template-columns: 220px 1fr;
  gap: clamp(30px, 5vw, 70px);
}
.legal__toc {
  position: sticky; top: 100px; align-self: start;
  font-size: 13px;
}
.legal__toc b {
  display: block; font-family: 'Bebas Neue', sans-serif;
  font-size: 14px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--red); margin-bottom: 14px;
}
.legal__toc a {
  display: block; padding: 8px 0;
  color: var(--muted-2);
  border-left: 2px solid transparent;
  padding-left: 12px; margin-left: -12px;
  transition: color .25s, border-color .25s;
}
.legal__toc a:hover {
  color: #fff; border-left-color: var(--red);
}
.legal__body {
  font-size: 15.5px; color: rgba(255,255,255,.82);
  line-height: 1.75;
}
.legal__body section {
  padding: 0; margin-bottom: 48px;
  scroll-margin-top: 100px;
}
.legal__body h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(26px, 3vw, 36px);
  letter-spacing: .04em;
  margin-bottom: 14px;
  color: #fff;
  position: relative;
  padding-left: 22px;
}
.legal__body h2::before {
  content: ""; position: absolute; left: 0; top: .55em;
  width: 12px; height: 2px; background: var(--red);
}
.legal__body h3 {
  font-family: 'Inter', sans-serif;
  font-size: 16px; font-weight: 600;
  margin: 24px 0 8px;
  color: #fff;
  letter-spacing: .02em;
}
.legal__body p { margin-bottom: 14px; }
.legal__body ul { padding-left: 22px; margin-bottom: 14px; }
.legal__body li { margin-bottom: 6px; }
.legal__body strong { color: #fff; }
.legal__body a { color: var(--red); border-bottom: 1px solid rgba(204,0,0,.3); }
.legal__body a:hover { border-bottom-color: var(--red); }
.legal__body .callout {
  margin: 22px 0;
  padding: 18px 22px;
  background: rgba(204,0,0,.05);
  border-left: 2px solid var(--red);
  font-size: 14.5px; color: rgba(255,255,255,.9);
}
.legal__body table {
  width: 100%; border-collapse: collapse;
  margin: 18px 0; font-size: 14px;
}
.legal__body th, .legal__body td {
  padding: 12px 14px; text-align: left;
  border: 1px solid var(--line);
}
.legal__body th {
  background: rgba(255,255,255,.03);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px; letter-spacing: .12em; color: var(--red);
}

@media (max-width: 900px) {
  .legal { grid-template-columns: 1fr; }
  .legal__toc { position: static; }
}

/* =====================================================
   Reduced motion
   ===================================================== */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal, .card, .tl__node { opacity: 1 !important; transform: none !important; }
}
