/* =====================
   RESET & BASE
   ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  color-scheme: dark;
  --bg:          #000000;
  --surface:     rgba(255,255,255,0.04);
  --border:      rgba(255,255,255,0.10);
  --text:        #ffffff;
  --heading:     #ffffff;
  --copy:        #b7c1cc;
  --muted:       #8992a0;
  --accent:      #a9bff0;
  --gold:        #fec84b;
  --pill-bg:     rgba(12,12,14,0.78);
  --card-bg:     rgba(255,255,255,0.045);
  --card-border: rgba(255,255,255,0.09);
  --footer-bg:   #0a0a0c;

  --radius:      24px;
  --radius-sm:   14px;
  --radius-pill: 100px;
  --max-w:       1380px;
  --pad:         clamp(20px, 2.1vw, 30px);
  --divider:     #222225;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html { background: var(--bg); scroll-behavior: smooth; }
main { display: block; padding-top: 136px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 18px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 { color: var(--heading); font-weight: 600; line-height: 1.15; letter-spacing: -0.02em; }
p { color: var(--copy); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; background: none; border: none; color: inherit; cursor: pointer; }
ul { list-style: none; }
iframe { border: 0; display: block; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  html { scroll-behavior: auto; }
}

/* =====================
   BUTTONS
   ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 16px;
  font-size: 17px;
  font-weight: 500;
  white-space: nowrap;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.btn:hover { transform: translateY(-1px); opacity: 0.92; }
.btn-primary { background: #ffffff; color: #000000; }
.btn-ghost { background: #0f0f0f; color: var(--text); border: 1px solid var(--border); }
.btn-sm { padding: 8px 18px; font-size: 14px; }

/* =====================
   NAV
   Full-width transparent bar at the top of the page; morphs into the
   floating capsule once the user scrolls (.is-scrolled, set by JS).
   Mobile always shows the capsule + hamburger.
   ===================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  padding: 14px 16px 0;
  pointer-events: none;
}
.nav-inner {
  pointer-events: auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
  max-width: 1660px;
  background: rgba(12,12,14,0);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  padding: 28px 40px;
  transition: max-width 0.5s cubic-bezier(0.4, 0, 0.2, 1),
              padding 0.5s cubic-bezier(0.4, 0, 0.2, 1),
              background 0.35s ease,
              border-color 0.35s ease,
              backdrop-filter 0.35s ease,
              -webkit-backdrop-filter 0.35s ease;
}
.nav.is-scrolled .nav-inner {
  max-width: 680px;
  padding: 17px 28px;
  background: var(--pill-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-color: rgba(255,255,255,0.08);
}
.nav-logo { display: block; width: 134px; height: 25px; fill: #ffffff; flex-shrink: 0; }
.nav-logo svg { display: block; }

.nav-links { display: flex; align-items: center; gap: 38px; }
.nav-links a {
  font-size: 17px;
  font-weight: 600;
  color: rgba(255,255,255,0.92);
  transition: color 0.2s ease;
  white-space: nowrap;
}
.nav-links a:hover { color: #ffffff; }
.nav-links a[aria-current="page"] { color: var(--accent); }

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: -10px -16px -10px 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: var(--text);
  flex-shrink: 0;
  transition: background 0.2s ease;
}
.nav-toggle:hover { background: rgba(255,255,255,0.15); }

.nav-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 16px;
  min-width: 230px;
  background: var(--pill-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  transform: translateY(-8px) scale(0.98);
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.nav-menu.is-open { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.nav-menu a {
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 17px;
  font-weight: 500;
  color: var(--text);
  transition: background 0.15s ease;
}
.nav-menu a:hover { background: rgba(255,255,255,0.08); }
.nav-menu a[aria-current="page"] { color: var(--accent); }

@media (max-width: 820px) {
  .nav { padding-top: 16px; }
  .nav-logo { width: 120px; height: 22px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; width: 44px; height: 44px; }
  /* Mobile: always the capsule, no morphing */
  .nav-inner,
  .nav.is-scrolled .nav-inner {
    width: max-content;
    max-width: calc(100vw - 32px);
    gap: 56px;
    padding: 21px 28px;
    background: var(--pill-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-color: rgba(255,255,255,0.08);
  }
}

/* =====================
   SECTIONS
   ===================== */
section { position: relative; padding: 110px var(--pad); }
.section-inner { max-width: var(--max-w); margin: 0 auto; }
.section-head {
  display: flex;
  align-items: flex-start;
  border-top: 1px solid var(--divider);
  padding-top: 34px;
  margin-bottom: 64px;
}
.section-head h2 { font-size: 36px; font-weight: 500; width: 250px; flex-shrink: 0; letter-spacing: -0.01em; }
.section-head p { font-size: 26px; font-weight: 400; color: var(--text); line-height: 1.4; margin-top: 5px; }
@media (max-width: 700px) {
  .section-head { flex-direction: column; gap: 10px; }
  .section-head h2 { width: auto; }
  .section-head p { font-size: 21px; }
}

/* Reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}

/* =====================
   HERO + AURORA
   ===================== */
.hero {
  position: relative;
  min-height: 92vh;
  margin-top: -136px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 136px var(--pad) 60px;
}
.aurora { position: absolute; inset: 0; z-index: 0; background: #06060a; }
.aurora-blob { position: absolute; border-radius: 50%; filter: blur(90px); }
.aurora-blob-1 {
  width: 70vw; height: 60vw; max-width: 980px; max-height: 840px;
  top: -22%; left: -14%;
  background: radial-gradient(circle, #d99cae 0%, rgba(217,156,174,0.4) 45%, transparent 70%);
  opacity: 0.75;
  animation: drift-a 26s ease-in-out infinite alternate;
}
.aurora-blob-2 {
  width: 64vw; height: 56vw; max-width: 900px; max-height: 780px;
  top: -8%; right: -16%;
  background: radial-gradient(circle, #92a1d6 0%, rgba(146,161,214,0.45) 45%, transparent 70%);
  opacity: 0.8;
  animation: drift-b 30s ease-in-out infinite alternate;
}
.aurora-blob-3 {
  width: 56vw; height: 48vw; max-width: 800px; max-height: 680px;
  top: 26%; left: 18%;
  background: radial-gradient(circle, #9a8cc9 0%, rgba(154,140,201,0.4) 45%, transparent 70%);
  opacity: 0.65;
  animation: drift-c 22s ease-in-out infinite alternate;
}
.aurora-blob-4 {
  width: 52vw; height: 44vw; max-width: 720px; max-height: 600px;
  bottom: -14%; right: 6%;
  background: radial-gradient(circle, #7e96ba 0%, rgba(126,150,186,0.35) 45%, transparent 70%);
  opacity: 0.55;
  animation: drift-a 34s ease-in-out infinite alternate-reverse;
}
/* Fade the aurora into black toward the showreel below */
.aurora::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 34%;
  background: linear-gradient(to bottom, transparent, #000000);
}
@media (max-width: 700px) {
  .aurora-blob { filter: blur(60px); }
  .aurora-blob-1 { width: 130vw; height: 110vw; top: -10%; left: -30%; }
  .aurora-blob-2 { width: 120vw; height: 105vw; top: 4%; right: -35%; }
  .aurora-blob-3 { width: 110vw; height: 95vw; top: 30%; left: -5%; }
  .aurora-blob-4 { width: 100vw; height: 85vw; bottom: -5%; right: -20%; }
}
@keyframes drift-a { from { transform: translate(0,0) scale(1); } to { transform: translate(5%,9%) scale(1.1); } }
@keyframes drift-b { from { transform: translate(0,0) scale(1); } to { transform: translate(-7%,-5%) scale(1.14); } }
@keyframes drift-c { from { transform: translate(0,0) scale(1); } to { transform: translate(-5%,7%) scale(0.94); } }

.hero-icon {
  position: relative; z-index: 1;
  width: 88px; height: 50px;
  margin-bottom: 30px;
  fill: #ffffff;
}
.hero-title {
  position: relative; z-index: 1;
  font-size: clamp(40px, 4.2vw, 62px);
  font-weight: 500;
  line-height: 1.08;
  max-width: 17ch;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 24px rgba(0,0,0,0.25);
}
.hero-title .accent { color: var(--accent); }

/* =====================
   SHOWREEL VIDEO
   ===================== */
.showreel { padding-top: 0; padding-bottom: 40px; }
.showreel-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  background: #0a0a0c;
  border: 1px solid rgba(255,255,255,0.06);
}
.showreel-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; }
@media (max-width: 700px) {
  .showreel { display: none; }
}

/* =====================
   BADGES
   ===================== */
.badges { padding-top: 30px; padding-bottom: 40px; }
.badges .section-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
}
/* All badges share one height so their text reads at a uniform size;
   each keeps its own intrinsic aspect ratio so nothing stretches. */
.badge { color: #ffffff; fill: #ffffff; height: 69px; }
.badge svg { display: block; width: 100%; height: 100%; }
.badge-wide { aspect-ratio: 2380 / 435; }
.badge-row { display: flex; align-items: center; justify-content: center; gap: 34px; flex-wrap: wrap; }
.badge-row .badge:nth-child(1) { aspect-ratio: 1588 / 489; }
.badge-row .badge:nth-child(2) { aspect-ratio: 21199 / 6899; }
@media (max-width: 700px) {
  .badge { height: 48px; }
  .badge-row { gap: 22px; }
}

/* =====================
   EXPERIENCES SHOWCASE
   ===================== */
.showcase { display: flex; flex-direction: column; gap: 84px; }
.showcase-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
}
@media (max-width: 900px) {
  .showcase-pair { grid-template-columns: 1fr; gap: 84px; }
}
.showcase-item { display: flex; flex-direction: column; gap: 22px; }
.showcase-head { display: flex; align-items: center; gap: 18px; width: max-content; }
.showcase-icon { width: 80px; height: 80px; border-radius: 50%; }
.showcase-head h3 { font-size: 28px; font-weight: 600; }
.showcase-head p { font-size: 20px; color: rgba(255,255,255,0.7); margin-top: 4px; }
.showcase-head:hover h3 { color: var(--accent); }
.showcase-media {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
}
.showcase-media img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.showcase-meta { display: flex; justify-content: flex-end; gap: 10px; }
.meta-pill {
  padding: 7px 14px;
  border-radius: 11px;
  background: #1a1a1a;
  font-size: 15px;
  font-weight: 400;
  color: var(--text);
}
.meta-link { transition: background 0.2s ease; }
.meta-link:hover { background: rgba(255,255,255,0.18); }

/* =====================
   NUMBERS / STATS
   ===================== */
#numbers { text-align: left; }
.stats-band {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 980px;
  margin: 0 auto;
}
.stat { min-width: 180px; text-align: center; flex: 1; }
.stat-num { font-size: clamp(54px, 5.2vw, 78px); font-weight: 500; letter-spacing: -0.02em; }
.stat-1 .stat-num { color: #0e4dff; }
.stat-2 .stat-num { color: #01a9fc; }
.stat-3 .stat-num { color: #02f1fc; }
.stat-plus { margin-left: 2px; }
.stat-label { font-size: 23px; font-weight: 600; color: #dedede; margin-top: 10px; }
.stats-note { text-align: center; font-size: 18px; color: rgba(255,255,255,0.4); margin: 32px 0 72px; }

.quote-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.quote-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  padding: 34px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.quote-card p { color: #dedede; font-size: 19px; line-height: 1.45; font-weight: 400; }
.quote-stars { flex-shrink: 0; width: 156px; height: 26px; }
.quote-source { font-size: 15.5px; color: var(--muted); }
.quote-source strong { color: var(--copy); font-weight: 600; }

/* =====================
   EXPERTISE
   ===================== */
.expertise-frameworks { width: min(400px, 70vw); height: auto; margin: 0 auto 40px; }
.tag-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-bottom: 90px; max-width: 860px; margin-left: auto; margin-right: auto; }
.tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  font-size: 17.5px;
  font-weight: 500;
  color: #dedede;
}
.tag-pill svg { flex-shrink: 0; fill: currentColor; }

.expertise-rows { display: flex; flex-direction: column; gap: 32px; }
.expertise-row {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(28px, 4.5vw, 72px);
  align-items: center;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 44px);
}
.expertise-media { border-radius: var(--radius-sm); overflow: hidden; }
.expertise-media img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.expertise-copy-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.expertise-title { display: flex; align-items: baseline; gap: 18px; }
.expertise-num { font-size: 32px; color: #8f8f8f; font-weight: 400; }
.expertise-glyph { width: 38px; height: auto; opacity: 0.9; }
.expertise-copy h3 { font-size: 32px; font-weight: 400; }
.expertise-copy p { font-size: 19px; line-height: 1.62; color: rgba(255,255,255,0.6); }
@media (max-width: 860px) {
  .expertise-row { grid-template-columns: 1fr; }
  .expertise-copy { order: -1; }
}

/* =====================
   PRESS BAND
   ===================== */
.press-band {
  position: relative;
  overflow: hidden;
  padding: 0;
  margin: 70px 0;
}
.press-band-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}
.press-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, #000 0%, transparent 25%, transparent 75%, #000 100%);
  z-index: 1;
}
.press-band-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: clamp(90px, 14vw, 190px) var(--pad);
}
.press-band blockquote {
  font-size: clamp(26px, 2.6vw, 38px);
  font-weight: 400;
  letter-spacing: -0.01em;
  color: #ffffff;
  max-width: 24ch;
  line-height: 1.22;
  text-shadow: 0 2px 30px rgba(0,0,0,0.6);
}
.press-band-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 30px;
  font-size: 17.5px;
  color: var(--copy);
}
.press-band-meta span { font-weight: 400; }
.press-logo { width: 38px; height: 38px; border-radius: 9px; }

/* =====================
   ABOUT CARD
   ===================== */
.about-card {
  display: flex;
  align-items: center;
  gap: clamp(24px, 4vw, 48px);
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 44px);
  flex-wrap: wrap;
}
.about-photo { width: 132px; height: 132px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.about-card-text { display: flex; flex-direction: column; gap: 7px; flex: 1; min-width: 240px; }
.about-card-text strong { font-size: 26px; font-weight: 500; color: #dedede; }
.about-role { font-size: 18px; color: rgba(255,255,255,0.7); line-height: 1.45; }
.about-card-text p { font-size: 19px; color: rgba(255,255,255,0.7); margin-top: 10px; max-width: 44ch; }
.about-card-actions { display: flex; gap: 12px; }

/* =====================
   APP DETAIL PAGE
   ===================== */
.app-detail-hero { display: flex; align-items: center; gap: 24px; margin-bottom: 28px; }
.app-detail-icon { width: 88px; height: 88px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.app-detail-icon img { width: 100%; height: 100%; object-fit: cover; }
.app-detail-hero h1 { font-size: clamp(32px, 4vw, 44px); }
.app-detail-hero .app-tagline { font-size: 20px; color: var(--muted); margin-top: 6px; }
.app-detail-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.app-detail-media {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 36px;
}
.app-detail-media img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.app-detail-body { max-width: 66ch; display: flex; flex-direction: column; gap: 18px; margin-bottom: 44px; }
.app-detail-body p { font-size: 19px; line-height: 1.62; }
.app-detail-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* =====================
   ABOUT / PRESS LIST
   ===================== */
/* About page: full-bleed statue hero with the headline overlaid
   bottom-left, mirroring the live site. Sits under the transparent
   initial nav like the homepage hero. */
.abt-hero {
  position: relative;
  margin-top: -136px;
  height: 100svh;
  min-height: 560px;
  overflow: hidden;
  padding: 0;
}
.abt-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 30% center;
}
.abt-hero-title {
  position: absolute;
  left: var(--pad);
  right: var(--pad);
  bottom: clamp(40px, 6vh, 72px);
  max-width: 1380px;
  margin: 0 auto;
  font-size: clamp(32px, 3.6vw, 52px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: #ffffff;
  text-shadow: 0 2px 28px rgba(0,0,0,0.65);
}
@media (min-width: 1441px) {
  .abt-hero-title { left: 50%; right: auto; transform: translateX(-50%); width: 1380px; }
}

.abt-person-section { padding-top: 90px; padding-bottom: 40px; }
.abt-person {
  display: grid;
  grid-template-columns: 124px minmax(220px, 300px) 1fr;
  gap: clamp(24px, 3vw, 56px);
  align-items: start;
}
.abt-photo { width: 124px; height: 124px; border-radius: 50%; object-fit: cover; }
.abt-identity { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.abt-identity strong { font-size: 24px; font-weight: 500; color: #dedede; line-height: 1.25; }
.abt-identity span { font-size: 18px; color: rgba(255,255,255,0.7); line-height: 1.45; }
.abt-email { margin-top: 14px; }
.abt-bio { font-size: 19px; line-height: 1.62; color: #ffffff; max-width: 62ch; }
@media (max-width: 900px) {
  .abt-person { grid-template-columns: 1fr; gap: 20px; }
}

.abt-press-section { padding-top: 40px; padding-bottom: 40px; }
.abt-press-section .section-head h2 { width: auto; white-space: nowrap; }
.abt-press { display: flex; flex-direction: column; }
.abt-press-row {
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding: 12px 0;
}
.abt-press-source { font-size: 18px; color: var(--text); width: 250px; flex-shrink: 0; }
.abt-press-title { font-size: 18px; color: var(--copy); }
/* Dotted leader running from each title to its year, ToC-style */
.abt-press-leader {
  flex: 1;
  min-width: 40px;
  border-bottom: 1.5px dotted rgba(255,255,255,0.22);
  transform: translateY(-5px);
}
.abt-press-year { font-size: 18px; color: var(--muted); flex-shrink: 0; }
@media (max-width: 700px) {
  .abt-press-row { flex-wrap: wrap; gap: 4px 12px; padding: 14px 0; }
  .abt-press-source { width: auto; font-weight: 600; }
  .abt-press-leader { display: none; }
  .abt-press-year { margin-left: auto; order: 2; }
  .abt-press-title { flex-basis: 100%; order: 3; }
}

.contact-actions { display: flex; gap: 12px; margin-top: 40px; }

.link-list { display: flex; flex-direction: column; }
.link-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
  font-size: 20px;
  color: var(--text);
  transition: color 0.2s ease, padding-left 0.2s ease;
}
.link-list a:hover { color: var(--accent); padding-left: 6px; }
.link-list a::after { content: '\2197'; color: var(--muted); }

.event-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 32px;
  max-width: 560px;
}
.event-card .event-eyebrow { font-size: 15px; color: var(--accent); font-weight: 600; letter-spacing: 0.03em; text-transform: uppercase; }
.event-card h3 { font-size: 27px; margin-top: 12px; }
.event-card .event-meta { font-size: 18px; color: var(--muted); margin-top: 8px; }
.event-card .event-venue { font-size: 18px; color: var(--copy); margin-top: 20px; line-height: 1.6; }

/* =====================
   LEGAL CONTENT
   ===================== */
.legal-content { max-width: 72ch; }
.legal-content .legal-updated { font-size: 19px; font-weight: 700; color: rgba(255,255,255,0.7); margin-bottom: 44px; }
.legal-content p { font-size: 19px; line-height: 1.6; color: rgba(255,255,255,0.7); margin-bottom: 20px; }
.legal-content h2 { font-size: 21px; font-weight: 700; color: rgba(255,255,255,0.85); margin: 44px 0 16px; }
.legal-content ul { margin: 0 0 20px; padding-left: 24px; list-style: disc; }
.legal-content li { font-size: 19px; line-height: 1.6; color: rgba(255,255,255,0.7); margin-bottom: 9px; }
.legal-content address { font-style: normal; font-size: 19px; line-height: 1.6; color: rgba(255,255,255,0.7); margin-top: 8px; }
.legal-content strong { color: var(--text); }

/* =====================
   QUOTE GRID (accolades)
   ===================== */
.quote-grid + h2 { margin-top: 64px; }

/* =====================
   ACCOLADES V2
   ===================== */
.acc2-top {
  position: relative;
  overflow: hidden;
  margin-top: -136px;
  padding-top: 136px;
  min-height: 460px;
  display: flex;
  align-items: center;
}
.acc2-top-inner { position: relative; z-index: 1; width: 100%; }
/* Same aurora system as the homepage hero, retinted gold/amber to read
   as stars rather than the site's usual pink/blue mood. The homepage
   blobs are sized/positioned as percentages of a ~92vh box; re-using
   those as-is in this much shorter box crowds them into a solid wash,
   so this instance gets its own fixed sizing tuned for distinct,
   separated glows instead. */
.acc2-aurora-gold .aurora-blob-1 {
  width: 460px; height: 460px; max-width: none; max-height: none;
  top: -170px; left: -40px; bottom: auto; right: auto;
  background: radial-gradient(circle, #ffd76a 0%, rgba(255,215,106,0.4) 45%, transparent 70%);
  opacity: 0.7;
}
.acc2-aurora-gold .aurora-blob-2 {
  width: 400px; height: 400px; max-width: none; max-height: none;
  top: -150px; right: -30px; bottom: auto; left: auto;
  background: radial-gradient(circle, #fec84b 0%, rgba(254,200,75,0.42) 45%, transparent 70%);
  opacity: 0.75;
}
.acc2-aurora-gold .aurora-blob-3 {
  width: 360px; height: 360px; max-width: none; max-height: none;
  bottom: -190px; left: 30%; top: auto; right: auto;
  background: radial-gradient(circle, #f5b642 0%, rgba(245,182,66,0.38) 45%, transparent 70%);
  opacity: 0.55;
}
.acc2-aurora-gold .aurora-blob-4 {
  width: 340px; height: 340px; max-width: none; max-height: none;
  bottom: -170px; right: 14%; top: auto; left: auto;
  background: radial-gradient(circle, #e0982f 0%, rgba(224,152,47,0.32) 45%, transparent 70%);
  opacity: 0.45;
}
@media (max-width: 700px) {
  .acc2-aurora-gold .aurora-blob-1 { width: 320px; height: 320px; top: -110px; left: -60px; }
  .acc2-aurora-gold .aurora-blob-2 { width: 280px; height: 280px; top: -100px; right: -50px; }
  .acc2-aurora-gold .aurora-blob-3 { width: 240px; height: 240px; bottom: -110px; left: 10%; }
  .acc2-aurora-gold .aurora-blob-4 { width: 220px; height: 220px; bottom: -100px; right: -20px; }
}

.acc2-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 28px;
}

@media (max-width: 700px) {
  .acc2-top { min-height: 360px; margin-top: -112px; padding-top: 112px; }
}

.acc2-section { padding-top: 70px; padding-bottom: 70px; }

.acc2-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.acc2-feature {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border: 1px solid rgba(255,255,255,0.07);
}
.acc2-feature-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.acc2-feature:hover .acc2-feature-bg { transform: scale(1.04); }
.acc2-feature-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.25) 55%, rgba(0,0,0,0.15) 100%);
}
.acc2-feature-body {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: clamp(24px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.acc2-feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: rgba(255,255,255,0.75);
}
.acc2-feature-tag img { border-radius: 7px; }
.acc2-feature-body h3 {
  font-size: clamp(24px, 2.2vw, 33px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.acc2-feature-link { font-size: 16.5px; font-weight: 500; color: var(--accent); }

.acc2-pullquote-section { padding-top: 40px; padding-bottom: 40px; }
.acc2-pullquote {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 0;
}
.acc2-pullquote p {
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 500;
  line-height: 1.22;
  letter-spacing: -0.015em;
  color: #ffffff;
}
.acc2-pullquote footer { margin-top: 26px; font-size: 17.5px; color: var(--muted); }
.acc2-pullquote footer strong { color: var(--copy); }
.acc2-stars { width: 156px; height: 26px; display: inline-block; }
.acc2-pullquote .acc2-stars { margin-bottom: 30px; }

.acc2-wall { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.acc2-review {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.acc2-review .acc2-stars { width: 120px; height: 20px; }
.acc2-review blockquote { font-size: 19px; line-height: 1.45; color: #eaeaea; }
.acc2-review figcaption {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15.5px;
  color: var(--muted);
}
.acc2-review figcaption img { border-radius: 50%; }

.acc2-timeline { display: flex; flex-direction: column; }
.acc2-year {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: clamp(24px, 4vw, 64px);
  padding: 44px 0;
  border-bottom: 1px solid var(--divider);
}
.acc2-year:last-child { border-bottom: none; }
.acc2-year-num {
  font-size: clamp(56px, 6vw, 96px);
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.28);
}
.acc2-year ul { display: flex; flex-direction: column; gap: 20px; }
.acc2-year li { display: flex; align-items: baseline; gap: 18px; }
.acc2-year li strong { font-size: 18px; font-weight: 600; color: var(--text); min-width: 150px; flex-shrink: 0; }
.acc2-year li span { font-size: 18px; color: var(--copy); }

.acc2-cta { text-align: center; padding-top: 60px; }
.acc2-cta h2 {
  font-size: clamp(32px, 3.4vw, 50px);
  font-weight: 500;
  letter-spacing: -0.015em;
  max-width: 20ch;
  margin: 0 auto 40px;
}
.acc2-cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

@media (max-width: 980px) {
  .acc2-wall { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .acc2-features { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .acc2-title-row .badge { height: 40px; }
  /* Only 3 of the 6 reviews on small screens — the rest stay in the
     DOM (ordered for app variety) so no content needs duplicating. */
  .acc2-wall { grid-template-columns: 1fr; }
  .acc2-review:nth-child(n+4) { display: none; }
  .acc2-year { grid-template-columns: 1fr; gap: 20px; padding: 36px 0; }
  .acc2-year li { flex-direction: column; gap: 4px; }
}

/* =====================
   FOOTER
   ===================== */
.footer { background: var(--footer-bg); border-top: 1px solid var(--border); padding: 96px var(--pad) 44px; margin-top: 120px; }
.footer-inner { max-width: var(--max-w); margin: 0 auto; }
.footer-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 44px;
}
.footer-col { display: flex; flex-direction: column; gap: 16px; }
.footer-col h4 { font-size: 17px; font-weight: 400; color: rgba(245,245,245,0.4); text-transform: none; margin-bottom: 8px; }
.footer-col a { font-size: 17.5px; color: #ffffff; transition: color 0.2s ease; }
.footer-col a:hover { color: var(--accent); }

.footer-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-top: 64px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.footer-logo { display: block; width: 160px; height: 30px; fill: #ffffff; }
.footer-logo svg { display: block; }
.footer-bottom p { font-size: 15.5px; color: rgba(255,255,255,0.7); }

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 700px) {
  main { padding-top: 112px; }
  .hero { margin-top: -112px; padding-top: 112px; min-height: 86vh; }
  section { padding: 54px var(--pad); }
  .stats-band { flex-direction: column; gap: 32px; }
  .press-item { flex-direction: column; gap: 4px; }
  .press-item-source { min-width: 0; }
  .about-card { flex-direction: column; align-items: flex-start; }
  .showcase-meta { justify-content: flex-start; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
