:root {
  --bg: #fdfcff;
  --bg-2: rgba(246, 242, 255, 0.55);
  --bg-3: rgba(239, 234, 253, 0.55);
  --surface: #ffffff;
  --surface-2: #faf8ff;
  --ink: #211d33;
  --ink-2: #46405c;
  --muted: #6b6580;
  --muted-2: #9d96b3;
  --heading: #1d1535;
  --navy: #4c1d95;
  --navy-2: #3b1278;
  --navy-soft: #6d28d9;
  --gold: #8b5cf6;
  --gold-deep: #6d28d9;
  --gold-soft: #c084fc;
  --teal: #7c3aed;
  --teal-soft: rgba(124, 58, 237, 0.1);
  --fuchsia: #d946ef;
  --indigo: #6366f1;
  --pink: #ec4899;
  --peach: #fda4af;
  --cyan: #0891b2;
  --cyan-deep: #0e7490;
  --cyan-soft: rgba(8, 145, 178, 0.1);
  --amber: #d97706;
  --amber-deep: #b45309;
  --amber-soft: rgba(217, 119, 6, 0.1);
  --line: rgba(63, 56, 92, 0.1);
  --line-strong: rgba(63, 56, 92, 0.18);
  --on-dark: #fdfaff;
  --on-dark-muted: #d3c6f0;
  --grad-main: linear-gradient(120deg, #4c1d95, #6d28d9 55%, #a21caf);
  --grad-gold: linear-gradient(120deg, #c084fc 0%, #8b5cf6 38%, #d946ef 72%, #ec4899 100%);
  --grad-cool: linear-gradient(120deg, #06b6d4 0%, #6366f1 50%, #8b5cf6 100%);
  --shadow-sm: 0 4px 18px -8px rgba(63, 56, 92, 0.14);
  --shadow-md: 0 24px 50px -30px rgba(63, 56, 92, 0.28);
  --shadow-gold: 0 18px 44px -22px rgba(139, 92, 246, 0.55);
  --glow: rgba(139, 92, 246, 0.45);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", monospace;
  --radius: 18px;
  --radius-sm: 12px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-pop: cubic-bezier(0.34, 1.56, 0.64, 1);
  --glow: rgba(139, 92, 246, 0.45);
  --maxw: 1180px;
}

@keyframes gradShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
@keyframes orbDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, 30px) scale(1.12); }
}
@keyframes glowPulse {
  0%, 100% { box-shadow: 0 12px 30px -14px rgba(124, 58, 237, 0.7), 0 0 0 0 rgba(139, 92, 246, 0.35); }
  50% { box-shadow: 0 12px 34px -12px rgba(124, 58, 237, 0.85), 0 0 26px 4px rgba(139, 92, 246, 0.28); }
}

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

html { scroll-behavior: smooth; scroll-padding-top: 88px; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.72;
  font-size: 16.5px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ---------- Animated aurora background ---------- */
body::before, body::after {
  content: "";
  position: fixed;
  inset: -20%;
  z-index: -1;
  pointer-events: none;
  will-change: transform;
}
body::before {
  background:
    radial-gradient(38% 42% at 14% 18%, rgba(139, 92, 246, 0.18), transparent 70%),
    radial-gradient(34% 36% at 86% 10%, rgba(217, 70, 239, 0.14), transparent 70%),
    radial-gradient(42% 44% at 80% 82%, rgba(8, 145, 178, 0.12), transparent 70%),
    radial-gradient(30% 32% at 18% 86%, rgba(236, 72, 153, 0.1), transparent 70%);
  filter: blur(30px);
  animation: auroraA 30s ease-in-out infinite alternate;
}
body::after {
  background:
    radial-gradient(40% 40% at 72% 30%, rgba(217, 119, 6, 0.1), transparent 70%),
    radial-gradient(36% 38% at 28% 62%, rgba(244, 114, 182, 0.08), transparent 70%);
  filter: blur(36px);
  animation: auroraB 38s ease-in-out infinite alternate;
}
@keyframes auroraA {
  0% { transform: translate3d(-3%, -2%, 0) rotate(-4deg) scale(1); }
  50% { transform: translate3d(3%, 2%, 0) rotate(3deg) scale(1.08); }
  100% { transform: translate3d(-2%, 3%, 0) rotate(-2deg) scale(1.03); }
}
@keyframes auroraB {
  0% { transform: translate3d(2%, 3%, 0) rotate(3deg) scale(1.04); }
  50% { transform: translate3d(-3%, -2%, 0) rotate(-3deg) scale(1); }
  100% { transform: translate3d(3%, -3%, 0) rotate(2deg) scale(1.06); }
}
@keyframes spinRing {
  to { --ang: 360deg; }
}
@property --ang {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

.skip-link { position: absolute; left: -999px; top: 12px; z-index: 400; background: var(--navy); color: #fff; padding: 10px 18px; border-radius: 8px; font-weight: 700; }
.skip-link:focus { left: 12px; }

.container { width: min(100% - 48px, var(--maxw)); margin-inline: auto; }
.container--narrow { max-width: 860px; }

.section { position: relative; padding: clamp(80px, 9vw, 130px) 0; overflow: hidden; }
.section--alt { background: var(--bg-2); }
.section--dark { background: var(--bg); color: var(--ink); }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #d97706;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}
.eyebrow::before { content: ""; width: 34px; height: 2px; background: linear-gradient(90deg, #d97706, #fbbf24); border-radius: 2px; animation: gradShift 6s ease-in-out infinite; }
.eyebrow--dark { color: #d97706; }
.eyebrow--center { justify-content: center; }

.section__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(30px, 4.4vw, 52px);
  line-height: 1.14;
  letter-spacing: -0.01em;
  color: var(--heading);
  margin-bottom: 18px;
}
.section__title em { font-style: italic; font-weight: 400; background: linear-gradient(120deg, #6d28d9, #d97706 60%, #fbbf24); background-size: 220% auto; -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; animation: gradShift 7s ease-in-out infinite; }
.section--dark .section__title { color: var(--heading); }
.section--dark .section__title em { background: linear-gradient(120deg, #6d28d9, #d97706 60%, #fbbf24); background-size: 220% auto; -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; animation: gradShift 7s ease-in-out infinite; }
.section__sub { color: var(--muted); max-width: 640px; margin-bottom: 48px; }
.section__sub--center { margin-inline: auto; text-align: center; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), color 0.35s ease, background 0.35s ease, border-color 0.35s ease;
  will-change: transform;
}
.btn--primary { color: #fff; background: linear-gradient(120deg, #6d28d9, #8b5cf6 35%, #d97706 75%, #fbbf24); background-size: 180% auto; box-shadow: 0 14px 36px -12px rgba(217, 119, 6, 0.55); animation: glowPulse 3.2s ease-in-out infinite; }
.btn--primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 50%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s var(--ease);
}
.btn--primary:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 22px 50px -14px rgba(217, 119, 6, 0.7); animation-play-state: paused; }
.btn--primary:hover::after { left: 130%; }
.btn--ghost { color: var(--heading); border: 1.5px solid var(--line-strong); background: var(--surface); }
.btn--ghost:hover { transform: translateY(-3px) scale(1.02); border-color: var(--gold); color: var(--gold-deep); box-shadow: var(--shadow-sm); }
.btn--gold { color: #fff; background: linear-gradient(120deg, #6d28d9, #8b5cf6 30%, #d97706 70%, #fbbf24); background-size: 180% auto; box-shadow: 0 14px 36px -12px rgba(217, 119, 6, 0.5); animation: gradShift 6s ease-in-out infinite; }
.btn--gold:hover { transform: translateY(-3px) scale(1.03); }
.btn--dark { color: var(--on-dark); border: 1px solid rgba(253, 250, 255, 0.28); background: rgba(255, 255, 255, 0.04); }
.btn--dark:hover { transform: translateY(-3px) scale(1.02); border-color: var(--gold-soft); color: var(--gold-soft); }
.btn--small { padding: 11px 20px; font-size: 14px; }
.nav__cta { background: #fff; color: #4c1d95; font-weight: 700; border: none; border-radius: 999px; box-shadow: 0 0 16px rgba(255, 255, 255, 0.4), 0 0 4px rgba(255, 255, 255, 0.6); transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s ease; }
.nav__cta:hover { transform: translateY(-2px); box-shadow: 0 0 28px rgba(255, 255, 255, 0.6), 0 0 8px rgba(255, 255, 255, 0.8); background: #f0eaff; }

.text-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 14.5px; color: #d97706; transition: gap 0.3s var(--ease), color 0.3s ease, text-shadow 0.3s ease; }
.text-link:hover { gap: 14px; color: #b45309; text-shadow: 0 0 10px rgba(251, 191, 36, 0.3); }

/* ---------- Progress bar ---------- */
.progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; background: linear-gradient(90deg, #6d28d9, #d97706, #fbbf24); box-shadow: 0 0 12px rgba(217, 119, 6, 0.7); z-index: 220; }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px max(24px, calc((100vw - var(--maxw)) / 2));
  background: linear-gradient(135deg, #4c1d95, #6d28d9);
  border-bottom: 1px solid rgba(251, 191, 36, 0.3);
  transition: padding 0.35s ease, background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  animation: navIn 0.9s var(--ease) both;
}
.nav.is-scrolled { padding-block: 11px; background: linear-gradient(135deg, #3b1278, #5b21b6); box-shadow: 0 10px 30px -10px rgba(76, 29, 149, 0.5); }
@keyframes navIn { from { opacity: 0; transform: translateY(-18px); } to { opacity: 1; transform: none; } }

.nav__brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark { display: inline-flex; }
.brand-mark svg { animation: markIn 0.9s var(--ease) both; }
@keyframes markIn { from { opacity: 0; transform: rotate(-14deg) scale(0.7); } to { opacity: 1; transform: none; } }
.nav__word { font-family: var(--font-display); font-weight: 600; font-size: 18px; color: #fff; letter-spacing: 0.01em; animation: fadeSlide 0.9s var(--ease) both; }
@keyframes fadeSlide { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: none; } }

.nav__links { display: flex; align-items: center; gap: 26px; }
.nav__links a { font-size: 14px; font-weight: 600; color: rgba(255, 255, 255, 0.7); position: relative; padding: 4px 0; transition: color 0.3s ease, text-shadow 0.3s ease; }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 2px; border-radius: 2px; background: linear-gradient(90deg, #fbbf24, #d97706); transform: scaleX(0); transform-origin: left; transition: transform 0.35s var(--ease); }
.nav__links a:hover { color: #fbbf24; text-shadow: 0 0 12px rgba(251, 191, 36, 0.4); }
.nav__links a:hover::after, .nav__links a.is-current::after { transform: scaleX(1); }
.nav__links a.is-current { color: #fff; }

.nav__toggle { display: none; flex-direction: column; gap: 5px; padding: 10px; z-index: 240; }
.nav__toggle span { width: 26px; height: 2px; background: #fff; border-radius: 2px; transition: transform 0.35s var(--ease), opacity 0.3s ease; }
.nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 230;
  background: linear-gradient(135deg, #3b1278, #4c1d95, #6d28d9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
  padding: 110px 36px 40px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), visibility 0.4s;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; transform: none; }
.mobile-menu__links { display: flex; flex-direction: column; gap: 6px; }
.mobile-menu__links a { font-family: var(--font-display); font-size: clamp(28px, 7vw, 40px); font-weight: 500; color: rgba(255, 255, 255, 0.85); line-height: 1.2; border-bottom: 1px solid rgba(255, 255, 255, 0.12); padding: 8px 0; transition: color 0.3s ease, padding-left 0.3s var(--ease), text-shadow 0.3s ease; }
.mobile-menu__links a:hover { color: #fbbf24; padding-left: 12px; text-shadow: 0 0 20px rgba(251, 191, 36, 0.5); }
.mobile-menu__social { display: flex; gap: 22px; font-family: var(--font-mono); font-size: 12.5px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255, 255, 255, 0.5); }
.mobile-menu__social a:hover { color: #fbbf24; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(40px) scale(0.96); filter: blur(6px); transition: opacity 0.75s var(--ease-pop), transform 0.75s var(--ease-pop), filter 0.75s var(--ease-pop); transition-delay: var(--d, 0s); will-change: opacity, transform, filter; }
.reveal.is-visible { opacity: 1; transform: none; filter: none; }
.reveal-img { clip-path: inset(12% 8% 12% 8% round 18px); transform: scale(1.06); transition: clip-path 1.1s var(--ease), transform 1.1s var(--ease); transition-delay: var(--d, 0s); }
.reveal-img.is-visible { clip-path: inset(0 0 0 0 round 18px); transform: scale(1); }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  position: relative;
  padding: clamp(140px, 18vw, 190px) 0 clamp(56px, 6vw, 84px);
  overflow: hidden;
  background:
    radial-gradient(700px 340px at 88% -10%, rgba(192, 132, 252, 0.22), transparent 60%),
    radial-gradient(600px 320px at -8% 110%, rgba(124, 58, 237, 0.08), transparent 60%);
}
.page-hero::after { content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 1px; background: var(--line); }
.page-hero__breadcrumb { display: flex; align-items: center; gap: 10px; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 26px; }
.page-hero__breadcrumb a { color: #d97706; transition: color 0.3s ease; }
.page-hero__breadcrumb a:hover { color: #b45309; }
.page-hero__title { font-family: var(--font-display); font-weight: 500; font-size: clamp(38px, 6.5vw, 72px); line-height: 1.06; letter-spacing: -0.01em; color: var(--heading); margin-bottom: 22px; }
.page-hero__title em { font-style: italic; font-weight: 400; background: linear-gradient(120deg, #6d28d9, #d97706 55%, #fbbf24); background-size: 220% auto; -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; animation: gradShift 7s ease-in-out infinite; }
.page-hero__lede { color: var(--muted); max-width: 700px; font-size: 17px; }

/* ---------- Hero (home) ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 150px 0 96px;
  overflow: hidden;
  background:
    radial-gradient(820px 460px at 88% -8%, rgba(192, 132, 252, 0.22), transparent 60%),
    radial-gradient(720px 420px at -8% 112%, rgba(124, 58, 237, 0.1), transparent 60%);
}
.hero::before, .hero::after { content: ""; position: absolute; border-radius: 50%; filter: blur(70px); z-index: 0; pointer-events: none; will-change: transform; }
.hero::before { width: 500px; height: 500px; top: -90px; right: -70px; background: radial-gradient(circle, rgba(217, 70, 239, 0.3), transparent 65%); animation: orbDrift 16s ease-in-out infinite; }
.hero::after { width: 440px; height: 440px; bottom: -110px; left: -80px; background: radial-gradient(circle, rgba(8, 145, 178, 0.22), transparent 65%); animation: orbDrift 20s ease-in-out infinite reverse; }
.hero__particles { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
.hero__inner { position: relative; z-index: 2; width: min(100% - 48px, 1200px); margin-inline: auto; display: grid; grid-template-columns: 1.12fr 0.88fr; align-items: center; gap: clamp(28px, 5vw, 64px); }

.hero__eyebrow { display: inline-flex; align-items: center; gap: 12px; font-family: var(--font-mono); font-size: 12.5px; letter-spacing: 0.24em; text-transform: uppercase; color: #d97706; margin-bottom: 26px; }
.hero__eyebrow::before { content: ""; width: 40px; height: 2px; background: linear-gradient(90deg, #d97706, #fbbf24); border-radius: 2px; animation: gradShift 6s ease-in-out infinite; }

.hero__title { font-family: var(--font-display); font-weight: 500; font-size: clamp(54px, 9vw, 108px); line-height: 0.98; letter-spacing: -0.02em; color: var(--heading); margin-bottom: 24px; }
.hero__title__line { display: block; overflow: hidden; padding: 0.06em 0.04em; }
.hero__title__word { display: inline-block; transform: translateY(112%); animation: lineUp 0.95s var(--ease) forwards; }
.hero__title__line:nth-child(2) .hero__title__word { animation-delay: 0.2s; background: linear-gradient(120deg, #6d28d9, #d97706 55%, #fbbf24); background-size: 220% auto; -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; animation: lineUp 0.95s var(--ease) forwards, gradShift 7s ease-in-out 1.2s infinite; }
@keyframes lineUp { to { transform: translateY(0); } }

.hero__role { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; margin-bottom: 22px; }
.role-chip { font-size: 13px; font-weight: 600; letter-spacing: 0.03em; padding: 8px 16px; border-radius: 999px; color: var(--ink-2); background: var(--surface); border: 1px solid var(--line-strong); box-shadow: var(--shadow-sm); }

.typewriter { font-family: var(--font-mono); font-size: clamp(13.5px, 1.5vw, 15px); color: var(--gold-deep); min-height: 1.6em; display: inline-flex; align-items: center; margin-bottom: 22px; }
.typewriter::before { content: "▍"; color: #d97706; margin-right: 8px; animation: blink 1s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }

.hero__identity { display: flex; flex-direction: column; gap: 8px; margin-bottom: 34px; }
.hero__identity .handle { font-family: var(--font-mono); font-size: clamp(12.5px, 1.4vw, 14px); color: var(--muted); }
.hero__identity .handle a { color: var(--ink); background: linear-gradient(currentColor, currentColor) no-repeat 0 100% / 0 1px; transition: color 0.3s ease, background-size 0.4s var(--ease); }
.hero__identity .handle a:hover { color: var(--gold-deep); background-size: 100% 1px; }

.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 36px; }

.hero__socials { display: flex; gap: 12px; }
.soc { width: 46px; height: 46px; display: inline-flex; align-items: center; justify-content: center; border-radius: 13px; border: 1px solid var(--line-strong); background: var(--surface); color: var(--muted); box-shadow: var(--shadow-sm); transition: transform 0.35s var(--ease), color 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease; }
.soc:hover { transform: translateY(-4px) rotate(-4deg); color: var(--gold-deep); border-color: var(--gold); box-shadow: var(--shadow-gold); }

.hero__portrait { position: relative; }
.hero__portrait::before {
  content: "";
  position: absolute;
  inset: -16px;
  z-index: 1;
  border-radius: 10px;
  padding: 3px;
  background: conic-gradient(from var(--ang), #8b5cf6, #d946ef, #6366f1, #ec4899, #8b5cf6);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  animation: spinRing 9s linear infinite;
  pointer-events: none;
}
.hero__frame { position: relative; padding: 12px; border-radius: 4px; background: var(--surface); border: 1px solid var(--line-strong); box-shadow: var(--shadow-md); }
.hero__frame::before { content: ""; position: absolute; inset: 6px; border: 1px solid rgba(251, 191, 36, 0.45); border-radius: 2px; pointer-events: none; z-index: 2; }
.hero__frame img { border-radius: 2px; width: 100%; aspect-ratio: 16 / 11; object-fit: cover; transform: scale(1.08); animation: imgSettle 1.6s var(--ease) forwards; }
@keyframes imgSettle { to { transform: scale(1); } }
.hero__caption { display: flex; align-items: center; gap: 9px; margin-top: 16px; font-family: var(--font-mono); font-size: 12px; color: var(--muted); }
.caption-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--grad-gold); box-shadow: 0 0 12px rgba(139, 92, 246, 0.8); animation: pulse 2.4s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.5); opacity: 0.55; } }

.float-card { position: absolute; display: flex; align-items: center; gap: 12px; padding: 12px 18px; border-radius: 12px; background: var(--surface); border: 1px solid var(--line-strong); box-shadow: var(--shadow-md); animation: floaty 6s ease-in-out infinite; z-index: 3; }
.float-card strong { display: block; font-size: 13.5px; line-height: 1.3; color: var(--heading); }
.float-card small { font-size: 11px; color: var(--muted); font-family: var(--font-mono); }
.float-card__icon { width: 38px; height: 38px; display: inline-flex; align-items: center; justify-content: center; border-radius: 11px; background: linear-gradient(135deg, #d97706, #fbbf24); background-size: 220% auto; color: #fff; box-shadow: 0 8px 22px -8px rgba(217, 119, 6, 0.6); animation: gradShift 6s ease-in-out infinite; }
.float-card--top { top: 30px; left: -36px; animation-delay: 0.4s; }
.float-card--bottom { bottom: 66px; right: -32px; animation-delay: 1.2s; }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.hero__scroll { position: absolute; left: 50%; bottom: 24px; transform: translateX(-50%); z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 10px; color: var(--muted); }
.hero__scroll-label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; }
.hero__scroll-line { width: 1px; height: 44px; background: var(--line-strong); display: block; position: relative; overflow: hidden; }
.hero__scroll-line::after { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent, var(--gold), transparent); animation: scrollLine 2.2s var(--ease) infinite; }
@keyframes scrollLine { 0% { transform: translateY(-100%); } 100% { transform: translateY(100%); } }

/* ---------- Marquee ---------- */
.marquee { background: linear-gradient(90deg, #4c1d95, #6d28d9, #9333ea, #0891b2, #d946ef, #d97706, #a855f7, #6d28d9, #4c1d95); background-size: 300% 100%; color: var(--on-dark); padding: 18px 0; overflow: hidden; position: relative; animation: gradShift 18s linear infinite; }
.marquee::after { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, transparent, rgba(192, 132, 252, 0.28), transparent); background-size: 220% 100%; animation: marqueeShine 7s linear infinite; pointer-events: none; z-index: 1; }
.marquee__track { display: flex; gap: 0; width: max-content; animation: marquee 32s linear infinite; position: relative; z-index: 0; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track span { display: inline-flex; align-items: center; gap: 30px; padding-right: 30px; font-family: var(--font-mono); font-size: 14px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(253, 250, 255, 0.85); white-space: nowrap; }
.marquee__track span i { font-style: normal; color: var(--gold-soft); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes marqueeShine { from { background-position: -220% 0; } to { background-position: 220% 0; } }

/* ---------- Explore grid (home) ---------- */
.explore { position: relative; }
.explore__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.explore-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 34px 28px 30px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 10px -6px rgba(63, 56, 92, 0.08);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.45s ease;
}
.explore-card::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: linear-gradient(90deg, #6d28d9, #d97706 50%, #fbbf24); background-size: 220% auto; transform: scaleX(0); transform-origin: left; transition: transform 0.5s var(--ease); animation: gradShift 7s ease-in-out infinite; z-index: 1; }
.explore-card::after { content: ""; position: absolute; right: -50px; top: -50px; width: 190px; height: 190px; border-radius: 50%; background: radial-gradient(circle, rgba(139, 92, 246, 0.16), transparent 70%); opacity: 0; transition: opacity 0.5s var(--ease); pointer-events: none; }
.explore-card:hover { transform: translateY(-8px); border-color: rgba(34, 211, 238, 0.4); box-shadow: 0 24px 50px -30px rgba(34, 211, 238, 0.25); }
.explore-card:hover::before { transform: scaleX(1); }
.explore-card:hover::after { opacity: 1; }
.explore-card__num { font-family: var(--font-mono); font-size: 12.5px; color: var(--muted-2); letter-spacing: 0.1em; }
.explore-card__icon { width: 50px; height: 50px; display: inline-flex; align-items: center; justify-content: center; border-radius: 14px; background: rgba(217, 119, 6, 0.1); color: #d97706; margin-bottom: 6px; transition: transform 0.5s var(--ease), background 0.4s ease, color 0.4s ease; }
.explore-card:hover .explore-card__icon { transform: translateY(-4px) rotate(-6deg); background: linear-gradient(135deg, #d97706, #fbbf24); background-size: 220% auto; color: #fff; animation: gradShift 5s ease-in-out infinite; box-shadow: 0 12px 26px -12px rgba(217, 119, 6, 0.6); }
.explore-card h3 { font-family: var(--font-display); font-weight: 500; font-size: 21px; color: var(--heading); line-height: 1.3; }
.explore-card p { font-size: 14px; color: var(--muted); flex: 1; }
.explore-card__arrow { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 13.5px; color: #d97706; margin-top: 8px; transition: gap 0.35s var(--ease), color 0.3s ease; }
.explore-card:hover .explore-card__arrow { color: #b45309; }
.explore-card__arrow span { transition: transform 0.35s var(--ease); }
.explore-card:hover .explore-card__arrow span { transform: translateX(6px); }

/* ---------- Home story preview ---------- */
.home-story { position: relative; }
.home-story__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(30px, 5vw, 70px); align-items: center; }
.home-story__media { position: relative; }
.home-story__media img { width: 100%; aspect-ratio: 16 / 11; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-md); border: 1px solid var(--line-strong); }
.home-story__media::after { content: ""; position: absolute; inset: 16px -16px -16px 16px; border: 1px solid rgba(34, 211, 238, 0.4); border-radius: var(--radius); z-index: -1; }
.home-story__text h2 { font-family: var(--font-display); font-weight: 500; font-size: clamp(30px, 4vw, 46px); line-height: 1.15; color: var(--heading); margin-bottom: 18px; }
.home-story__text h2 em { font-style: italic; font-weight: 400; background: linear-gradient(120deg, #6d28d9, #d97706 60%, #fbbf24); background-size: 220% auto; -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; animation: gradShift 7s ease-in-out infinite; }
.home-story__text p { color: var(--muted); margin-bottom: 16px; }
.home-story__text .quote { font-family: var(--font-display); font-size: 21px; line-height: 1.5; color: var(--heading); border-left: 3px solid var(--gold); padding-left: 20px; margin: 24px 0; font-style: italic; }

/* ---------- Media strip (home) ---------- */
.media-strip { background: var(--bg-2); }
.media-strip__row { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.media-strip__item { font-family: var(--font-display); font-size: 19px; color: var(--muted-2); padding: 10px 20px; border: 1px solid var(--line); border-radius: 999px; background: var(--surface); transition: color 0.35s ease, border-color 0.35s ease, transform 0.35s var(--ease); }
.media-strip__item:hover { color: var(--gold-deep); border-color: var(--gold); transform: translateY(-3px); }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat { position: relative; padding: 36px 24px 32px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); text-align: center; overflow: hidden; box-shadow: 0 2px 12px -8px rgba(63, 56, 92, 0.1); transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease); }
.stat::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: linear-gradient(90deg, #6d28d9, #d97706, #fbbf24); background-size: 220% auto; animation: gradShift 7s ease-in-out infinite; }
.stat:hover { transform: translateY(-6px); box-shadow: 0 24px 50px -30px rgba(251, 191, 36, 0.2); }
.stat__value { display: block; font-family: var(--font-display); font-size: clamp(36px, 4.4vw, 54px); font-weight: 600; line-height: 1; margin-bottom: 12px; background: linear-gradient(120deg, #6d28d9, #d97706 60%, #fbbf24); background-size: 220% auto; -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; animation: gradShift 7s ease-in-out infinite; }
.stat__label { font-size: 13.5px; color: var(--muted); line-height: 1.5; display: block; }
.stats--dark .stat { background: var(--surface); border-color: var(--line); }
.stats--dark .stat__label { color: var(--muted); }

/* ---------- Story page ---------- */
.story__lede { font-family: var(--font-display); font-weight: 400; font-size: clamp(20px, 2.6vw, 30px); line-height: 1.5; max-width: 880px; margin-bottom: 54px; color: var(--ink); }
.story__lede strong { background: linear-gradient(transparent 62%, rgba(217, 119, 6, 0.2) 62%); font-weight: 600; }
.story__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 64px; }
.story__col { padding: 32px 28px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); box-shadow: 0 2px 12px -8px rgba(63, 56, 92, 0.08); transition: transform 0.45s var(--ease), border-color 0.45s ease, box-shadow 0.45s ease; }
.story__col:hover { transform: translateY(-6px); border-color: rgba(34, 211, 238, 0.4); box-shadow: 0 24px 50px -30px rgba(34, 211, 238, 0.2); }
.story__col h3 { font-family: var(--font-display); font-weight: 500; font-size: 21px; color: var(--heading); margin-bottom: 12px; }
.story__col h3::before { content: ""; display: block; width: 30px; height: 3px; border-radius: 3px; background: linear-gradient(90deg, #d97706, #fbbf24); margin-bottom: 14px; }
.story__col p { color: var(--muted); font-size: 15px; }
.story__quote { position: relative; max-width: 880px; margin: 0 auto 30px; padding: 48px 46px 44px 58px; border-radius: var(--radius); background: linear-gradient(150deg, rgba(167, 139, 250, 0.18), rgba(76, 29, 149, 0.1)); border: 1px solid rgba(139, 92, 246, 0.4); }
.story__quote-mark { position: absolute; top: 4px; left: 22px; font-family: var(--font-display); font-size: 74px; line-height: 1; background: linear-gradient(120deg, #6d28d9, #d97706); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.story__quote p { font-family: var(--font-display); font-size: clamp(21px, 3vw, 32px); line-height: 1.45; font-weight: 400; color: var(--heading); }
.story__quote cite { display: block; margin-top: 18px; font-style: normal; font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.1em; color: var(--muted); }
.story__quote--dark { background: linear-gradient(150deg, rgba(124, 58, 237, 0.14), rgba(76, 29, 149, 0.06)); border-color: rgba(124, 58, 237, 0.35); }
.story__flow { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-bottom: 60px; }
.story__flow article { padding: 34px 30px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); box-shadow: 0 2px 12px -8px rgba(63, 56, 92, 0.08); transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease); }
.story__flow article:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.story__flow h3 { font-family: var(--font-display); font-weight: 500; font-size: 23px; color: var(--heading); margin-bottom: 12px; }
.story__flow p { color: var(--muted); font-size: 15.5px; margin-bottom: 10px; }
.story__flow .flow-date { font-family: var(--font-mono); font-size: 12px; color: var(--gold-deep); letter-spacing: 0.08em; text-transform: uppercase; }

/* ---------- Timeline ---------- */
.timeline { position: relative; max-width: 840px; margin-inline: auto; }
.timeline::before { content: ""; position: absolute; left: 50%; top: 8px; bottom: 8px; width: 2px; transform: translateX(-50%); background: linear-gradient(180deg, rgba(139, 92, 246, 0.55), rgba(76, 29, 149, 0.55)); border-radius: 2px; }
.timeline::after { content: ""; position: absolute; left: 50%; top: 8px; width: 2px; height: var(--line-h, 0%); transform: translateX(-50%); background: linear-gradient(180deg, #6d28d9, #d97706); border-radius: 2px; }
.tl { position: relative; width: 50%; padding: 0 44px 46px; }
.tl:nth-child(odd) { left: 0; text-align: right; }
.tl:nth-child(even) { left: 50%; text-align: left; }
.tl__dot { position: absolute; top: 8px; width: 16px; height: 16px; border-radius: 50%; background: var(--surface); border: 3px solid #d97706; box-shadow: 0 0 0 5px rgba(217, 119, 6, 0.18); z-index: 2; transition: background 0.4s ease, box-shadow 0.4s ease; }
.tl:nth-child(odd) .tl__dot { right: -8px; }
.tl:nth-child(even) .tl__dot { left: -8px; }
.tl.is-live .tl__dot { background: var(--grad-gold); box-shadow: 0 0 0 6px rgba(34, 211, 238, 0.25), 0 0 20px rgba(34, 211, 238, 0.6); }
.tl__card { padding: 26px 26px 24px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); box-shadow: 0 2px 12px -8px rgba(63, 56, 92, 0.08); transition: transform 0.45s var(--ease), border-color 0.45s ease, box-shadow 0.45s ease; }
.tl__card:hover { transform: translateY(-5px); border-color: rgba(251, 191, 36, 0.4); box-shadow: 0 24px 50px -30px rgba(251, 191, 36, 0.2); }
.tl__tag { display: inline-block; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--amber); background: var(--amber-soft); border: 1px solid rgba(251, 191, 36, 0.3); padding: 5px 11px; border-radius: 999px; margin-bottom: 13px; }
.tl__card h3 { font-family: var(--font-display); font-weight: 500; font-size: 21px; color: var(--heading); margin-bottom: 9px; }
.tl__card p { font-size: 14.8px; color: var(--muted); }

/* ---------- About ---------- */
.about__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(30px, 5vw, 64px); align-items: center; margin-bottom: 64px; }
.about__media { position: relative; }
.about__frame { border-radius: var(--radius); padding: 10px; background: var(--surface); border: 1px solid var(--line-strong); box-shadow: var(--shadow-md); overflow: hidden; }
.about__frame::before { content: ""; position: absolute; inset: 5px; border: 1px solid rgba(251, 191, 36, 0.4); border-radius: calc(var(--radius) - 6px); pointer-events: none; z-index: 2; }
.about__frame img { border-radius: calc(var(--radius) - 6px); width: 100%; aspect-ratio: 16 / 11; object-fit: cover; transition: transform 0.8s var(--ease); }
.about__media:hover .about__frame img { transform: scale(1.045); }
.about__media figcaption { margin-top: 14px; font-family: var(--font-mono); font-size: 12px; color: var(--muted-2); letter-spacing: 0.06em; }
.about__body > p { color: var(--muted); font-size: 16.5px; margin-bottom: 30px; }
.about__body > p strong { color: var(--heading); font-weight: 700; }
.about__roles { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.role-card { display: flex; flex-direction: column; gap: 3px; padding: 22px 20px; border-radius: var(--radius-sm); background: var(--surface); border: 1px solid var(--line); position: relative; overflow: hidden; box-shadow: 0 2px 10px -8px rgba(63, 56, 92, 0.1); transition: transform 0.4s var(--ease), border-color 0.4s ease, box-shadow 0.4s ease; }
.role-card::before { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, #6d28d9, #d97706 65%, #fbbf24); opacity: 0; transition: opacity 0.4s ease; z-index: 0; }
.role-card:hover { transform: translateY(-4px); border-color: transparent; box-shadow: var(--shadow-md); }
.role-card:hover::before { opacity: 0.92; }
.role-card > * { position: relative; z-index: 1; }
.role-card__label { font-size: 13px; font-weight: 700; letter-spacing: 0.02em; color: var(--ink); }
.role-card:hover .role-card__label { color: #fff; }
.role-card__handle { font-family: var(--font-mono); font-size: 12.5px; color: var(--muted); transition: color 0.3s ease; }
.role-card:hover .role-card__handle { color: rgba(255, 255, 255, 0.85); }
.role-card__arrow { position: absolute; right: 16px; top: 50%; transform: translateY(-50%); opacity: 0; transition: opacity 0.3s ease, transform 0.3s var(--ease); font-size: 18px; color: #fff; }
.role-card:hover .role-card__arrow { opacity: 1; transform: translate(2px, -50%); }
.about__facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.fact { display: flex; align-items: flex-start; gap: 14px; padding: 22px 20px; border-radius: var(--radius-sm); background: var(--surface); border: 1px solid var(--line); box-shadow: 0 2px 10px -8px rgba(63, 56, 92, 0.08); transition: transform 0.4s var(--ease), border-color 0.4s ease; }
.fact:hover { transform: translateY(-4px); border-color: rgba(251, 191, 36, 0.5); }
.fact__icon { flex: 0 0 auto; width: 42px; height: 42px; display: inline-flex; align-items: center; justify-content: center; border-radius: 12px; background: var(--amber-soft); color: var(--amber); }
.fact h3 { font-size: 13.5px; font-weight: 700; color: var(--ink); margin-bottom: 3px; }
.fact p { font-size: 13px; color: var(--muted); line-height: 1.5; }

/* ---------- Skills ---------- */
.skills__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.skill { position: relative; padding: 36px 28px 32px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); overflow: hidden; box-shadow: 0 2px 12px -8px rgba(63, 56, 92, 0.08); transition: transform 0.45s var(--ease), border-color 0.45s ease, box-shadow 0.45s ease; }
.skill:hover { transform: translateY(-7px); border-color: rgba(217, 119, 6, 0.45); box-shadow: 0 24px 50px -30px rgba(217, 119, 6, 0.3); }
.skill::after { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: linear-gradient(90deg, #6d28d9, #d97706, #fbbf24); background-size: 220% auto; transform: scaleX(0); transform-origin: left; transition: transform 0.5s var(--ease); animation: gradShift 7s ease-in-out infinite; }
.skill:hover::after { transform: scaleX(1); }
.skill__num { position: absolute; top: 20px; right: 22px; font-family: var(--font-mono); font-size: 13px; color: var(--muted-2); }
.skill__icon { display: inline-flex; width: 54px; height: 54px; align-items: center; justify-content: center; border-radius: 15px; background: linear-gradient(135deg, #d97706, #6d28d9 50%, #8b5cf6); color: #fff; margin-bottom: 22px; box-shadow: 0 14px 28px -16px rgba(217, 119, 6, 0.5); transition: transform 0.45s var(--ease); }
.skill:hover .skill__icon { transform: translateY(-5px) rotate(-6deg); }
.skill h3 { font-family: var(--font-display); font-weight: 500; font-size: 21px; color: var(--heading); margin-bottom: 10px; }
.skill p { font-size: 14.8px; color: var(--muted); }

/* ---------- Initiatives ---------- */
.init__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; perspective: 1600px; }
.init { position: relative; padding: 36px 30px 32px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); overflow: hidden; box-shadow: 0 2px 12px -8px rgba(63, 56, 92, 0.08); transition: transform 0.5s var(--ease), border-color 0.5s ease, box-shadow 0.5s ease; transform-style: preserve-3d; will-change: transform; }
.init:hover { border-color: rgba(251, 191, 36, 0.4); box-shadow: 0 24px 50px -30px rgba(251, 191, 36, 0.2); }
.init__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.init__logo { width: 56px; height: 56px; display: inline-flex; align-items: center; justify-content: center; border-radius: 16px; background: linear-gradient(140deg, rgba(251, 191, 36, 0.25), rgba(217, 119, 6, 0.12), rgba(251, 191, 36, 0.06)); border: 1px solid rgba(217, 119, 6, 0.35); color: #d97706; }
.init__platform { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted-2); }
.init h3 { font-family: var(--font-mono); font-size: 15.5px; margin-bottom: 6px; color: var(--heading); }
.init__role { display: inline-block; font-size: 12.5px; font-weight: 700; color: #d97706; background: rgba(217, 119, 6, 0.1); border: 1px solid rgba(217, 119, 6, 0.35); padding: 5px 12px; border-radius: 999px; margin-bottom: 16px; }
.init__desc { font-size: 14.8px; color: var(--muted); margin-bottom: 20px; }

/* ---------- Media / press ---------- */
.media__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.press { padding: 28px 26px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); display: flex; flex-direction: column; box-shadow: 0 2px 12px -8px rgba(63, 56, 92, 0.08); transition: transform 0.45s var(--ease), border-color 0.45s ease, box-shadow 0.45s ease; }
.press:hover { transform: translateY(-6px); border-color: rgba(217, 119, 6, 0.45); box-shadow: 0 24px 50px -30px rgba(217, 119, 6, 0.3); }
.press__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 16px; }
.press__badge { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: #fcd34d; background: rgba(217, 119, 6, 0.14); border: 1px solid rgba(217, 119, 6, 0.35); padding: 6px 12px; border-radius: 999px; }
.press--ig .press__badge { color: #ffd1ec; background: rgba(244, 114, 182, 0.16); border-color: rgba(244, 114, 182, 0.4); }
.press--x .press__badge { color: #cfe3ff; background: rgba(129, 140, 248, 0.16); border-color: rgba(129, 140, 248, 0.4); }
.press__date { font-family: var(--font-mono); font-size: 11.5px; color: var(--muted-2); white-space: nowrap; }
.press h3 { font-family: var(--font-display); font-weight: 500; font-size: 19.5px; line-height: 1.35; color: var(--heading); margin-bottom: 10px; }
.press p { font-size: 14.5px; color: var(--muted); margin-bottom: 20px; }
.press__link { margin-top: auto; display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 14px; color: var(--amber); transition: gap 0.3s var(--ease), color 0.3s ease; }
.press__link:hover { gap: 14px; color: #b45309; }

/* ---------- Videos ---------- */
.videos__featured { margin-bottom: 26px; }
.video-tile { position: relative; display: block; width: 100%; border-radius: var(--radius); overflow: hidden; text-align: left; isolation: isolate; border: 1px solid var(--line-strong); box-shadow: 0 2px 12px -8px rgba(63, 56, 92, 0.1); }
.video-tile img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; transition: transform 0.8s var(--ease); }
.video-tile:hover img { transform: scale(1.06); }
.video-tile__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 30%, rgba(59, 18, 104, 0.94)); z-index: 1; }
.video-tile__play { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(1); z-index: 2; width: 72px; height: 72px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; color: #fff; background: linear-gradient(120deg, #6d28d9, #d97706 65%, #fbbf24); background-size: 220% auto; border: 2px solid rgba(255, 255, 255, 0.85); box-shadow: 0 12px 30px -10px rgba(217, 119, 6, 0.55); transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease); animation: gradShift 6s ease-in-out infinite; }
.video-tile__play::after { content: ""; position: absolute; inset: -12px; border-radius: 50%; border: 1.5px solid rgba(255, 255, 255, 0.5); animation: playPulse 2.4s ease-out infinite; }
@keyframes playPulse { 0% { transform: scale(0.85); opacity: 1; } 100% { transform: scale(1.5); opacity: 0; } }
.video-tile:hover .video-tile__play { transform: translate(-50%, -50%) scale(1.12); }
.video-tile__meta { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 26px 24px 22px; color: var(--on-dark); }
.video-tile__chan { display: block; font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 7px; }
.video-tile__meta strong { font-family: var(--font-display); font-weight: 500; font-size: 18px; line-height: 1.35; display: block; max-width: 640px; }
.video-tile--featured .video-tile__meta strong { font-size: clamp(18px, 2.6vw, 27px); }
.video-tile--featured .video-tile__play { width: 88px; height: 88px; }
.videos__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.videos__grid .video-tile__meta strong { font-size: 15px; }
.videos__grid .video-tile__play { width: 56px; height: 56px; }
.videos__note { margin-top: 28px; font-family: var(--font-mono); font-size: 12px; color: var(--muted-2); text-align: center; }

/* ---------- Social ---------- */
.social__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.soc-card { position: relative; display: flex; flex-direction: column; align-items: flex-start; gap: 6px; padding: 34px 28px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); overflow: hidden; box-shadow: 0 2px 12px -8px rgba(63, 56, 92, 0.08); transition: transform 0.45s var(--ease), border-color 0.45s ease, box-shadow 0.45s ease; }
.soc-card:hover { transform: translateY(-7px); border-color: rgba(34, 211, 238, 0.35); box-shadow: 0 24px 50px -30px rgba(34, 211, 238, 0.25); }
.soc-card__icon { width: 58px; height: 58px; display: inline-flex; align-items: center; justify-content: center; border-radius: 16px; margin-bottom: 14px; color: #fff; transition: transform 0.5s var(--ease); }
.soc-card:hover .soc-card__icon { transform: translateY(-5px) rotate(-8deg) scale(1.06); }
.soc-card__icon--ig { background: radial-gradient(circle at 30% 110%, #feda75, #fa7e1e 50%, #d62976 60%, #962fbf 100%); }
.soc-card__icon--in { background: linear-gradient(135deg, #0a66c2, #1d9bf0); }
.soc-card__icon--yt { background: linear-gradient(135deg, #ff0000, #ff4d4d); }
.soc-card__label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted-2); }
.soc-card__handle { font-family: var(--font-mono); font-size: 16px; color: var(--heading); }
.soc-card__sub { font-size: 13.5px; color: var(--muted); }

/* ---------- Achievements ---------- */
.achieve { display: flex; flex-direction: column; gap: 18px; }
.achieve__item { display: flex; gap: 20px; align-items: flex-start; padding: 26px 28px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); box-shadow: 0 2px 12px -8px rgba(63, 56, 92, 0.08); transition: transform 0.4s var(--ease), border-color 0.4s ease, box-shadow 0.4s ease; }
.achieve__item:hover { transform: translateX(8px); border-color: rgba(251, 191, 36, 0.5); box-shadow: 0 24px 50px -30px rgba(251, 191, 36, 0.25); }
.achieve__icon { flex: 0 0 auto; width: 52px; height: 52px; display: inline-flex; align-items: center; justify-content: center; border-radius: 14px; background: linear-gradient(135deg, #6d28d9, #d97706 60%, #fbbf24); color: #fff; }
.achieve__item h3 { font-family: var(--font-display); font-weight: 500; font-size: 20px; color: var(--heading); margin-bottom: 6px; }
.achieve__item p { font-size: 15px; color: var(--muted); }

/* ---------- Inspiration ---------- */
.inspire { min-height: 80vh; display: flex; align-items: center; overflow: hidden; position: relative; padding: 120px 0; background: var(--bg); color: var(--ink); }
.inspire__bg { position: absolute; inset: -10%; z-index: 0; opacity: 0.15; }
.inspire__bg img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.4) sepia(0.18); animation: slowZoom 26s ease-in-out infinite alternate; }
@keyframes slowZoom { from { transform: scale(1.05); } to { transform: scale(1.18); } }
.inspire__veil { position: absolute; inset: 0; z-index: 1; background: linear-gradient(110deg, rgba(253, 252, 255, 0.96) 0%, rgba(253, 252, 255, 0.92) 45%, rgba(253, 252, 255, 0.7) 100%); }
.inspire__inner { position: relative; z-index: 2; max-width: 880px; }
.inspire__title { font-family: var(--font-display); font-weight: 500; font-size: clamp(36px, 6vw, 66px); line-height: 1.08; color: var(--heading); margin-bottom: 34px; }
.inspire__title em { font-style: italic; font-weight: 400; background: linear-gradient(120deg, #6d28d9, #d97706 60%, #fbbf24); background-size: 220% auto; -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; animation: gradShift 7s ease-in-out infinite; }
.inspire__quote { margin-bottom: 26px; }
.inspire__quote p { font-family: var(--font-display); font-size: clamp(21px, 3vw, 30px); font-style: italic; font-weight: 400; line-height: 1.5; color: var(--heading); border-left: 3px solid #d97706; padding-left: 24px; }
.inspire__quote cite { display: block; margin-top: 12px; font-style: normal; font-family: var(--font-mono); font-size: 12.5px; letter-spacing: 0.1em; color: var(--muted); }
.inspire__copy { font-size: 16.5px; color: var(--muted); max-width: 640px; }

/* ---------- Voice ---------- */
.voice__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(30px, 5vw, 70px); align-items: center; }
.voice__copy > p { color: var(--muted); margin-bottom: 26px; font-size: 16.5px; }
.voice__copy > p strong { color: var(--heading); }
.voice__topics { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.voice__topics li { font-family: var(--font-mono); font-size: 12.5px; letter-spacing: 0.05em; color: #d97706; padding: 8px 14px; border-radius: 999px; background: rgba(217, 119, 6, 0.08); border: 1px solid rgba(217, 119, 6, 0.3); }
.voice__actions { display: flex; flex-wrap: wrap; gap: 16px; }
.voice__media { position: relative; }
.voice__frame { position: relative; border-radius: var(--radius); padding: 10px; background: var(--surface); border: 1px solid var(--line-strong); box-shadow: var(--shadow-md); overflow: hidden; }
.voice__frame::before { content: ""; position: absolute; inset: 5px; border: 1px solid rgba(34, 211, 238, 0.4); border-radius: calc(var(--radius) - 6px); pointer-events: none; z-index: 2; }
.voice__frame img { border-radius: calc(var(--radius) - 6px); width: 100%; aspect-ratio: 16 / 11; object-fit: cover; }
.voice__badge { position: absolute; left: 26px; bottom: 26px; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em; color: var(--heading); background: var(--surface); border: 1px solid var(--line-strong); padding: 9px 16px; border-radius: 999px; box-shadow: var(--shadow-sm); }
.voice__media figcaption { margin-top: 16px; font-size: 13px; color: var(--muted-2); font-family: var(--font-mono); }

/* ---------- CTA band ---------- */
.cta-band { position: relative; text-align: center; padding: clamp(90px, 12vw, 150px) 0; background: transparent; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; inset: auto 0 -240px 0; height: 480px; background: radial-gradient(ellipse at 50% 100%, rgba(251, 191, 36, 0.12), rgba(109, 40, 217, 0.08) 40%, rgba(251, 191, 36, 0.04) 65%, transparent 80%); pointer-events: none; }
.cta-band__title { font-family: var(--font-display); font-weight: 500; font-size: clamp(38px, 6.5vw, 72px); line-height: 1.05; letter-spacing: -0.01em; color: var(--heading); margin-bottom: 20px; }
.cta-band__title em { font-style: italic; font-weight: 400; background: linear-gradient(120deg, #6d28d9, #d97706 55%, #fbbf24); background-size: 220% auto; -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; animation: gradShift 7s ease-in-out infinite; }
.cta-band__sub { color: var(--muted); max-width: 720px; margin: 0 auto 38px; font-size: 16.5px; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; position: relative; z-index: 2; }

/* ---------- Footer ---------- */
.footer { background: linear-gradient(180deg, #2d1066, #1a0640); color: var(--on-dark); padding: 68px 0 34px; border-top: 1px solid var(--line); }
.footer__grid { display: grid; grid-template-columns: 1fr 1.6fr 1fr; gap: 40px; align-items: start; padding-bottom: 44px; border-bottom: 1px solid rgba(253, 250, 255, 0.12); }
.footer__name { font-family: var(--font-display); font-weight: 500; font-size: 27px; margin-bottom: 6px; }
.footer__role { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--on-dark-muted); }
.footer__roles p { font-size: 14.5px; color: var(--on-dark-muted); margin-bottom: 8px; line-height: 1.6; }
.footer__roles a { color: var(--gold-soft); font-family: var(--font-mono); font-size: 13.5px; transition: color 0.3s ease; }
.footer__roles a:hover { color: var(--on-dark); }
.footer__social { display: flex; flex-direction: column; gap: 10px; }
.footer__social a { width: fit-content; font-size: 14px; font-weight: 600; color: var(--on-dark-muted); display: inline-flex; align-items: center; gap: 10px; transition: color 0.3s ease, transform 0.3s var(--ease); }
.footer__social a::before { content: ""; width: 0; height: 1px; background: var(--gold-soft); transition: width 0.35s var(--ease); }
.footer__social a:hover { color: var(--gold-soft); transform: translateX(4px); }
.footer__social a:hover::before { width: 20px; }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 26px; font-size: 13px; color: var(--on-dark-muted); }
.footer__tag { font-family: var(--font-mono); font-size: 12px; }
.footer__nav { display: flex; flex-wrap: wrap; gap: 18px; margin-bottom: 22px; }
.footer__nav a { font-size: 13.5px; color: var(--on-dark-muted); transition: color 0.3s ease; }
.footer__nav a:hover { color: var(--gold-soft); }

/* ---------- Photo manager ---------- */
.photo-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 260;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 20px;
  border-radius: 999px;
  background: linear-gradient(120deg, #6d28d9, #8b5cf6 35%, #d97706 75%, #fbbf24);
  color: #fff;
  font-weight: 700;
  font-size: 13.5px;
  box-shadow: 0 16px 40px -14px rgba(217, 119, 6, 0.45);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.photo-fab:hover { transform: translateY(-3px); box-shadow: 0 22px 50px -14px rgba(217, 119, 6, 0.6); }
.photo-fab svg { transition: transform 0.5s var(--ease); }
.photo-fab:hover svg { transform: rotate(-12deg); }

.photo-panel {
  position: fixed;
  right: 22px;
  bottom: 84px;
  width: min(360px, calc(100vw - 32px));
  max-height: min(560px, calc(100vh - 110px));
  overflow: auto;
  z-index: 270;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  box-shadow: var(--shadow-md);
  padding: 22px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px) scale(0.97);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), visibility 0.35s;
}
.photo-panel.is-open { opacity: 1; visibility: visible; transform: none; }
.photo-panel h3 { font-family: var(--font-display); font-weight: 500; font-size: 19px; color: var(--heading); margin-bottom: 4px; }
.photo-panel > p { font-size: 12.5px; color: var(--muted); margin-bottom: 18px; }
.photo-slot { display: grid; grid-template-columns: 74px 1fr; gap: 14px; align-items: center; padding: 12px 0; border-top: 1px solid var(--line); }
.photo-slot img { width: 74px; height: 54px; object-fit: cover; border-radius: 8px; border: 1px solid var(--line-strong); }
.photo-slot__name { font-weight: 700; font-size: 13.5px; color: var(--ink); margin-bottom: 2px; }
.photo-slot__actions { display: flex; gap: 8px; margin-top: 8px; }
.photo-slot button { font-size: 12px; font-weight: 700; padding: 6px 12px; border-radius: 999px; border: 1px solid var(--line-strong); color: var(--ink-2); transition: all 0.3s ease; }
.photo-slot button:hover { border-color: var(--gold); color: var(--gold-deep); }
.photo-slot button.is-replace { background: var(--navy); color: #fff; border-color: transparent; }
.photo-slot button.is-replace:hover { background: var(--navy-2); }
.photo-slot__input { width: 100%; margin-top: 8px; padding: 9px 12px; font: inherit; font-size: 12.5px; color: var(--ink); background: var(--surface-2); border: 1px solid var(--line-strong); border-radius: 8px; }
.photo-slot__input:focus { outline: 2px solid #fbbf24; outline-offset: 1px; border-color: transparent; }
.photo-slot__save { display: flex; gap: 8px; margin-top: 8px; }
.photo-slot__save button.is-save { background: linear-gradient(120deg, #6d28d9, #d97706); color: #fff; border-color: transparent; }
.photo-slot__save button.is-save:hover { background: linear-gradient(120deg, #4c1d95, #b45309); color: #fff; }
.photo-toast { position: fixed; left: 50%; bottom: 26px; transform: translateX(-50%) translateY(20px); z-index: 400; background: var(--navy); color: var(--gold-soft); font-size: 13.5px; font-weight: 600; padding: 12px 22px; border-radius: 999px; opacity: 0; transition: opacity 0.35s ease, transform 0.35s var(--ease); pointer-events: none; border: 1px solid rgba(192, 132, 252, 0.4); }
.photo-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ---------- Modal ---------- */
.modal { position: fixed; inset: 0; z-index: 500; display: flex; align-items: center; justify-content: center; padding: 24px; }
.modal[hidden] { display: none; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(59, 18, 104, 0.85); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); animation: fadeIn 0.4s ease both; }
.modal__panel { position: relative; width: min(960px, 100%); animation: modalIn 0.45s var(--ease) both; }
.modal__frame { position: relative; width: 100%; aspect-ratio: 16 / 9; border-radius: 16px; overflow: hidden; background: #000; box-shadow: 0 50px 120px -40px rgba(0, 0, 0, 0.8); border: 1px solid rgba(255, 255, 255, 0.2); }
.modal__frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.modal__close { position: absolute; top: -52px; right: 0; z-index: 5; width: 44px; height: 44px; border-radius: 12px; font-size: 18px; color: #fff; background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.3); transition: background 0.3s ease, transform 0.3s var(--ease); }
.modal__close:hover { background: rgba(255, 255, 255, 0.22); transform: rotate(90deg); }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes modalIn { from { opacity: 0; transform: translateY(30px) scale(0.96); } to { opacity: 1; transform: none; } }

/* ---------- Utility ---------- */
.center { text-align: center; }
.mt-16 { margin-top: 16px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }

/* ---------- Card hover lift + gold glow ---------- */
.skill, .press, .soc-card, .init, .achieve__item, .tl__card, .story__col, .fact, .role-card, .explore-card, .stat { transition: transform 0.45s var(--ease), border-color 0.45s ease, box-shadow 0.45s var(--ease); }
.skill:hover, .press:hover, .soc-card:hover, .init:hover, .achieve__item:hover, .tl__card:hover, .story__col:hover, .fact:hover, .role-card:hover, .explore-card:hover, .stat:hover { transform: translateY(-6px); border-color: rgba(251, 191, 36, 0.5); box-shadow: 0 24px 54px -26px rgba(217, 119, 6, 0.35), 0 0 0 1px rgba(251, 191, 36, 0.15); }
.float-card { box-shadow: 0 24px 50px -30px rgba(124, 58, 237, 0.4); }
.init__logo, .float-card__icon, .explore-card__icon { transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), background 0.4s ease, color 0.4s ease; }
.role-card:hover { box-shadow: 0 26px 54px -26px rgba(217, 119, 6, 0.4); }

/* Selection & focus animation */
::selection { background: rgba(217, 119, 6, 0.28); color: var(--heading); }
a:focus-visible, button:focus-visible, input:focus-visible, [tabindex]:focus-visible {
  outline: 3px solid #fbbf24;
  outline-offset: 3px;
  border-radius: 6px;
  box-shadow: 0 0 0 6px rgba(251, 191, 36, 0.2);
  transition: outline-offset 0.2s ease, box-shadow 0.2s ease;
}

/* Button press animation */
.btn:active { transform: scale(0.97); transition-duration: 0.1s; }
.btn--primary:active { box-shadow: 0 4px 14px -4px rgba(217, 119, 6, 0.6); }
.btn--gold:active { box-shadow: 0 4px 14px -4px rgba(217, 119, 6, 0.6); }
.btn--ghost:active { border-color: #fbbf24; color: #d97706; }

/* Nav link selection glow */
.nav__links a:active { color: #fbbf24; }

/* Gold accent borders on key elements */
.hero__frame { border-color: rgba(251, 191, 36, 0.35); }
.about__frame { border-color: rgba(251, 191, 36, 0.3); }
.voice__frame { border-color: rgba(251, 191, 36, 0.3); }
.home-story__media img { border-color: rgba(251, 191, 36, 0.25); }
.video-tile { border-color: rgba(251, 191, 36, 0.3); }

/* Gold accent dot on timeline */
.tl__dot { border-color: #fbbf24; box-shadow: 0 0 0 5px rgba(251, 191, 36, 0.18); }
.tl.is-live .tl__dot { box-shadow: 0 0 0 6px rgba(251, 191, 36, 0.25), 0 0 20px rgba(251, 191, 36, 0.5); }

/* Gold accent on quote block */
.story__quote { border-color: rgba(217, 119, 6, 0.35); }
.inspire__quote p { border-left-color: #fbbf24; }

/* Footer gold accent */
.footer { border-top-color: rgba(251, 191, 36, 0.3); }

/* Photo fab pulse glow */
.photo-fab { animation: fabPulse 3s ease-in-out infinite; }
@keyframes fabPulse {
  0%, 100% { box-shadow: 0 16px 40px -14px rgba(217, 119, 6, 0.45); }
  50% { box-shadow: 0 16px 40px -14px rgba(217, 119, 6, 0.65), 0 0 0 6px rgba(251, 191, 36, 0.15); }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001s !important; animation-iteration-count: 1 !important; transition-duration: 0.001s !important; }
  body::before, body::after { display: none; }
  .reveal { opacity: 1; transform: none; filter: none; }
  .reveal-img { clip-path: none; transform: none; }
  .hero__title__word { transform: none; animation: none; }
  .hero__frame img { transform: none; animation: none; }
  .inspire__bg img { animation: none; }
  .marquee__track { animation: none; width: 100%; flex-wrap: wrap; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .hero__inner { grid-template-columns: 1fr; gap: 46px; }
  .hero__portrait { max-width: 620px; }
  .float-card--top { left: 12px; }
  .float-card--bottom { right: 12px; }
  .explore__grid { grid-template-columns: repeat(2, 1fr); }
  .skills__grid { grid-template-columns: repeat(2, 1fr); }
  .social__grid { grid-template-columns: repeat(2, 1fr); }
  .about__facts { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .story__grid { grid-template-columns: 1fr; }
  .story__flow { grid-template-columns: 1fr; }
  .home-story__grid { grid-template-columns: 1fr; }
  .about__grid { grid-template-columns: 1fr; }
  .about__roles { grid-template-columns: 1fr 1fr; }
  .init__grid { grid-template-columns: 1fr; }
  .media__grid { grid-template-columns: 1fr; }
  .videos__grid { grid-template-columns: repeat(2, 1fr); }
  .voice__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 30px; }
  .timeline::before, .timeline::after { left: 18px; transform: none; }
  .tl { width: 100%; left: 0 !important; padding: 0 0 40px 54px; text-align: left !important; }
  .tl:nth-child(odd) .tl__dot, .tl:nth-child(even) .tl__dot { left: 10px; right: auto; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 36px, var(--maxw)); }
  .hero { padding-top: 128px; }
  .hero__title { font-size: clamp(44px, 14vw, 60px); }
  .explore__grid { grid-template-columns: 1fr; }
  .skills__grid { grid-template-columns: 1fr; }
  .social__grid { grid-template-columns: 1fr; }
  .about__roles { grid-template-columns: 1fr; }
  .about__facts { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .videos__grid { grid-template-columns: 1fr; }
  .float-card { display: none; }
  .hero__actions .btn { width: 100%; }
  .story__quote { padding: 38px 26px 34px 30px; }
  .story__quote-mark { left: 12px; font-size: 58px; }
  .cta-band__actions .btn { width: 100%; }
  .modal { padding: 14px; }
  .modal__close { top: -46px; }
  .photo-panel { right: 16px; bottom: 80px; }
}
