:root {
  --bg: #0a0f14;
  --bg-alt: #111923;
  --surface: #172231;
  --text: #f4f6f8;
  --muted: #b7c3cf;
  --accent: #ff3f8e;
  --accent-soft: #ff9ac8;
  --line: #2a3748;
  --success: #71f2c6;
  --max-width: 1100px;
  --radius: 16px;
  --shadow: 0 20px 40px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  color: var(--text);
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  line-height: 1.6;
  background:
    radial-gradient(circle at 10% 10%, rgba(255, 63, 142, 0.15), transparent 36%),
    radial-gradient(circle at 85% 0%, rgba(113, 242, 198, 0.18), transparent 28%),
    linear-gradient(145deg, var(--bg) 0%, var(--bg-alt) 60%, #0f1c2d 100%);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  pointer-events: none;
  z-index: -1;
  filter: blur(50px);
  opacity: 0.33;
}

body::before {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 63, 142, 0.45), transparent 65%);
  top: 8%;
  left: 4%;
  animation: driftA 16s ease-in-out infinite;
}

body::after {
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(113, 242, 198, 0.38), transparent 65%);
  right: 1%;
  top: 12%;
  animation: driftB 20s ease-in-out infinite;
}

@keyframes driftA {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(36px, 26px) scale(1.1);
  }
}

@keyframes driftB {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(-30px, 30px) scale(1.08);
  }
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  z-index: 50;
  background: rgba(255, 255, 255, 0.06);
}

.scroll-progress span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--accent), var(--success));
  box-shadow: 0 0 18px rgba(113, 242, 198, 0.45);
}

a {
  color: var(--accent-soft);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--text);
}

.site-header {
  width: min(var(--max-width), calc(100% - 2.5rem));
  margin: 1.25rem auto;
  padding: 0.95rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(10, 15, 20, 0.72);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0.75rem;
  z-index: 10;
}

.brand {
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.brand-dot {
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--success));
}

.site-nav {
  display: flex;
  gap: 1rem;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 10px;
  width: 42px;
  height: 38px;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
}

.site-nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
}

.site-nav a:hover {
  color: var(--text);
}

.site-nav a.is-current,
.footer-nav a.is-current {
  color: var(--text);
}

.site-nav a.is-current {
  text-decoration: underline;
  text-decoration-color: rgba(113, 242, 198, 0.75);
  text-underline-offset: 6px;
}

.footer-nav a.is-current {
  text-decoration: underline;
  text-decoration-color: rgba(255, 154, 200, 0.7);
  text-underline-offset: 4px;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid rgba(113, 242, 198, 0.88);
  outline-offset: 3px;
}

main {
  width: min(var(--max-width), calc(100% - 2.5rem));
  margin: 2rem auto 4rem;
}

.hero {
  margin-bottom: 2.2rem;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  padding: 1.5rem 1.3rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
}

.hero-motion {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(18px);
  opacity: 0.5;
}

.hero-orb-a {
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(255, 63, 142, 0.32), transparent 70%);
  top: -20px;
  left: -40px;
  animation: heroFloatA 14s ease-in-out infinite;
}

.hero-orb-b {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(113, 242, 198, 0.28), transparent 70%);
  top: -40px;
  right: -70px;
  animation: heroFloatB 18s ease-in-out infinite;
}

.hero-orb-c {
  width: 170px;
  height: 170px;
  background: radial-gradient(circle, rgba(138, 198, 255, 0.22), transparent 70%);
  bottom: -40px;
  left: 36%;
  animation: heroFloatC 16s ease-in-out infinite;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.08;
  transform: perspective(500px) rotateX(24deg) translateY(20%);
}

@keyframes heroFloatA {
  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(50px, 22px);
  }
}

@keyframes heroFloatB {
  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(-40px, 28px);
  }
}

@keyframes heroFloatC {
  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(24px, -18px);
  }
}

.eyebrow {
  color: var(--accent-soft);
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

h1,
h2,
h3 {
  font-family: "Fraunces", Georgia, serif;
  line-height: 1.15;
  margin-top: 0;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  max-width: 16ch;
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 0.8rem;
}

h3 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.hero-copy {
  max-width: 68ch;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.2rem;
}

.hero-quote-strip {
  margin-top: 0.55rem;
  padding: 0.95rem 1.1rem;
  border-radius: 12px;
  border: 1px solid rgba(113, 242, 198, 0.25);
  background:
    linear-gradient(120deg, rgba(113, 242, 198, 0.12), rgba(255, 63, 142, 0.08)),
    rgba(14, 23, 34, 0.9);
}

.hero-quote-line {
  margin: 0;
  color: #e7f4ff;
  font-size: 0.97rem;
  line-height: 1.5;
}

.hero-quote-source {
  margin: 0.4rem 0 0;
  color: #afc2d5;
  font-size: 0.86rem;
}

.hero-quote-source a {
  color: #8be8cf;
}

.proof-strip {
  margin-top: 0.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.proof-ticker {
  margin-top: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  background: rgba(7, 14, 22, 0.68);
  overflow: hidden;
}

.proof-ticker-mask {
  display: flex;
  width: max-content;
  min-width: 100%;
  animation: tickerScroll 28s linear infinite;
}

.proof-ticker-track {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  padding: 0.6rem 1.2rem;
  white-space: nowrap;
}

.proof-ticker-track span {
  color: #d6e8f8;
  font-size: 0.84rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.proof-ticker-track span::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 0.55rem;
  border-radius: 999px;
  background: var(--success);
}

@keyframes tickerScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.featured-talk {
  margin-top: 1rem;
  border-color: rgba(113, 242, 198, 0.28);
  background:
    radial-gradient(circle at 8% 18%, rgba(113, 242, 198, 0.16), transparent 42%),
    radial-gradient(circle at 90% 84%, rgba(255, 63, 142, 0.13), transparent 40%),
    rgba(10, 18, 28, 0.9);
}

.featured-talk-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1.8fr 1fr;
  align-items: center;
}

.featured-talk-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.75rem;
}

.featured-talk-meta span {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 0.2rem 0.6rem;
  color: #d5e4f2;
  font-size: 0.78rem;
}

.scene-cut {
  margin: 1.4rem 0 0.4rem;
  height: 66px;
  border-radius: 16px;
  position: relative;
  background:
    linear-gradient(160deg, rgba(255, 63, 142, 0.16), rgba(138, 198, 255, 0.08), rgba(113, 242, 198, 0.14));
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.95), transparent);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.95), transparent);
  opacity: 0.65;
}

.scene-cut::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  opacity: 0.5;
}

.proof-pill {
  border: 1px solid rgba(113, 242, 198, 0.32);
  color: #d2fce9;
  background: rgba(113, 242, 198, 0.1);
  border-radius: 999px;
  padding: 0.38rem 0.75rem;
  font-size: 0.82rem;
  text-decoration: none;
}

.proof-pill:hover {
  background: rgba(113, 242, 198, 0.2);
  color: var(--text);
}

.cta-strip {
  border-color: rgba(255, 154, 200, 0.26);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)),
    radial-gradient(circle at 8% 15%, rgba(255, 63, 142, 0.12), transparent 38%);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.85rem;
}

.btn {
  display: inline-block;
  border-radius: 999px;
  padding: 0.78rem 1.2rem;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #0c0f13;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-soft) 100%);
}

.btn-secondary {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.panel,
.metrics,
.grid {
  margin-top: 1.4rem;
}

.panel {
  padding: 1.45rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
  box-shadow: var(--shadow);
}

.panel p,
.panel li,
.grid li {
  color: var(--muted);
}

.metrics {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.metrics article {
  padding: 1.2rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(18, 28, 39, 0.88);
}

.metrics h3 {
  margin: 0 0 0.35rem;
  color: var(--success);
  font-size: clamp(1.4rem, 2.6vw, 2rem);
}

.metrics p {
  margin: 0;
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  padding: 1.2rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
  transform-style: preserve-3d;
}

.card ul {
  margin-bottom: 0;
  padding-left: 1.2rem;
}

.mini-cases {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 0.7rem;
}

.mini-case {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.95rem;
  background: rgba(18, 28, 39, 0.78);
}

.now-next {
  border-color: rgba(138, 198, 255, 0.34);
  background:
    radial-gradient(circle at 14% 20%, rgba(138, 198, 255, 0.18), transparent 44%),
    rgba(16, 25, 37, 0.9);
}

.now-next-grid {
  margin-top: 0.85rem;
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.status-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem;
  background: rgba(14, 22, 33, 0.74);
}

.status-label {
  margin: 0 0 0.35rem;
  color: var(--success);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.75rem;
  font-weight: 700;
}

.mini-case h3 {
  font-size: 1.04rem;
}

.mini-case p {
  margin: 0.42rem 0;
  font-size: 0.94rem;
}

.voice-block {
  border-color: rgba(255, 154, 200, 0.3);
  background:
    linear-gradient(130deg, rgba(255, 63, 142, 0.12), rgba(113, 242, 198, 0.08)),
    rgba(17, 25, 35, 0.9);
}

.voice-block p {
  font-size: 1.05rem;
  color: #dbe5ef;
  max-width: 70ch;
}

.press-quote {
  margin: 1.2rem 0 0;
  padding: 1rem 1rem 0.9rem;
  border-left: 3px solid rgba(113, 242, 198, 0.6);
  border-radius: 10px;
  background: rgba(8, 16, 24, 0.52);
}

.press-quote p {
  margin: 0;
  font-size: 1rem;
  color: #eaf4ff;
}

.press-quote.is-transitioning .press-quote-text,
.press-quote.is-transitioning .press-quote-attribution,
.press-quote.is-transitioning .press-quote-link {
  opacity: 0.24;
}

.press-quote-text,
.press-quote-attribution,
.press-quote-link {
  transition: opacity 220ms ease;
}

.press-quote cite {
  display: block;
  margin-top: 0.7rem;
  color: #a8bbce;
  font-size: 0.92rem;
  font-style: normal;
}

.press-quote a {
  color: #8ae5cc;
}

.press-quote a:hover {
  color: #b8f5e6;
}

.press-quote-dots {
  display: flex;
  gap: 0.34rem;
  margin-top: 0.68rem;
}

.press-quote-dot {
  appearance: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(168, 187, 206, 0.34);
  transition: transform 180ms ease, background 180ms ease;
}

.press-quote-dot.is-active {
  background: rgba(139, 232, 207, 0.9);
  transform: scale(1.15);
}

.press-quote-dot:focus-visible {
  outline: 2px solid rgba(139, 232, 207, 0.75);
  outline-offset: 3px;
}

.card:hover,
.media-card:hover {
  border-color: rgba(255, 154, 200, 0.35);
  box-shadow: 0 22px 32px rgba(0, 0, 0, 0.32);
}

.featured-shot {
  margin: 1rem 0 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(18, 28, 39, 0.88);
}

.featured-shot img {
  width: 100%;
  max-height: 620px;
  object-fit: cover;
  display: block;
}

.featured-shot figcaption {
  margin: 0;
  padding: 0.8rem 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.media-carousel {
  margin-top: 1rem;
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(18, 28, 39, 0.88);
  overflow: hidden;
}

.carousel-track {
  position: relative;
  min-height: 380px;
}

.carousel-slide {
  margin: 0;
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 420ms ease, transform 420ms ease;
  pointer-events: none;
}

.carousel-slide.is-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.carousel-slide img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  filter: saturate(1.06) contrast(1.03);
}

.carousel-slide figcaption {
  margin: 0;
  padding: 0.8rem 1rem;
  color: var(--muted);
  font-size: 0.95rem;
  border-top: 1px solid var(--line);
  background: rgba(10, 15, 20, 0.6);
}

.carousel-control {
  position: absolute;
  top: calc(50% - 24px);
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(10, 15, 20, 0.65);
  color: var(--text);
  cursor: pointer;
  z-index: 2;
}

.carousel-control.prev {
  left: 0.7rem;
}

.carousel-control.next {
  right: 0.7rem;
}

.carousel-control:hover {
  background: rgba(255, 63, 142, 0.25);
  border-color: rgba(255, 154, 200, 0.45);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.7rem 0.8rem 0.85rem;
}

.carousel-dot {
  appearance: none;
  width: 24px;
  height: 24px;
  padding: 0;
  border-radius: 999px;
  border: 0;
  background: transparent;
  cursor: pointer;
  touch-action: manipulation;
}

.carousel-dot::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  margin: 7px;
  border-radius: 999px;
  background: rgba(183, 195, 207, 0.5);
  transition: transform 160ms ease, background 160ms ease;
}

.carousel-dot.is-active {
  background: transparent;
}

.carousel-dot.is-active::before {
  background: var(--accent-soft);
  transform: scale(1.15);
}

.carousel-dot:focus-visible {
  outline: 2px solid rgba(113, 242, 198, 0.75);
  outline-offset: 2px;
}

.carousel-link {
  margin-top: 0.85rem;
  color: var(--muted);
}

.media-grid {
  margin-top: 1.4rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.media-card {
  margin: 0;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(18, 28, 39, 0.88);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
  transform-style: preserve-3d;
  cursor: pointer;
}

.media-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 63, 142, 0.05), transparent 30%, rgba(10, 15, 20, 0.22) 100%);
}

.media-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  filter: saturate(1.05) contrast(1.04);
}

.media-card figcaption {
  margin: 0;
  padding: 0.72rem 0.85rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.media-links {
  margin: 0.5rem 0 0;
  padding-left: 1.2rem;
}

.thought-insights {
  display: grid;
  gap: 1rem;
}

.thought-insights h2 {
  margin-bottom: 0;
}

.thought-insights .card {
  margin: 0;
}

.media-links li {
  margin: 0.45rem 0;
  color: var(--muted);
}

.media-card.is-hidden {
  opacity: 0;
  transform: translateY(12px);
  max-height: 0;
  overflow: hidden;
  border-width: 0;
  margin: 0;
  pointer-events: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(5, 9, 14, 0.92);
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 4.5rem;
}

.lightbox[hidden] {
  display: none;
}

.lightbox-figure {
  max-width: min(1100px, 100%);
  margin: 0;
}

.lightbox-image {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.lightbox-caption {
  margin-top: 0.7rem;
  color: #d4e1ee;
  text-align: center;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(12, 19, 29, 0.76);
  color: #f3f7fa;
  border-radius: 999px;
  width: 44px;
  height: 44px;
  cursor: pointer;
}

.lightbox-close {
  top: 1rem;
  right: 1rem;
  font-size: 1.45rem;
  line-height: 1;
}

.lightbox-prev {
  left: 1rem;
}

.lightbox-next {
  right: 1rem;
}

.ambient-card {
  position: relative;
  overflow: hidden;
}

.ambient-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: linear-gradient(120deg, transparent 44%, rgba(255, 255, 255, 0.06), transparent 58%);
  animation: ambientSweep 7.5s linear infinite;
  pointer-events: none;
}

@keyframes ambientSweep {
  0% {
    transform: translateX(-38%);
  }

  100% {
    transform: translateX(38%);
  }
}

.faq-item {
  margin: 0.7rem 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(18, 28, 39, 0.72);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  color: var(--text);
  padding: 0.9rem 1rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item[open] summary {
  border-bottom: 1px solid var(--line);
}

.faq-item p {
  margin: 0;
  padding: 0.9rem 1rem 1rem;
  color: var(--muted);
}

.timeline {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}

.timeline li {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 0.9rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(18, 28, 39, 0.72);
  padding: 0.85rem 0.95rem;
}

.evidence-timeline {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.8rem;
}

.timeline-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.75rem;
}

.filter-chip {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  color: var(--muted);
  border-radius: 999px;
  padding: 0.34rem 0.7rem;
  font: inherit;
  font-size: 0.86rem;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.filter-chip:hover {
  color: var(--text);
  border-color: rgba(255, 154, 200, 0.35);
}

.filter-chip.is-active {
  color: #0c0f13;
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
  border-color: transparent;
}

.evidence-timeline li {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 0.8rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(18, 28, 39, 0.72);
  padding: 0.8rem 0.9rem;
  max-height: 260px;
  overflow: hidden;
  transition: opacity 220ms ease, transform 220ms ease, max-height 260ms ease, padding 260ms ease, margin 260ms ease, border-width 260ms ease;
}

.evidence-timeline li.is-hidden {
  opacity: 0;
  transform: translateY(8px);
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 0;
  margin-bottom: 0;
  border-width: 0;
  pointer-events: none;
}

.evidence-timeline h3 {
  margin: 0 0 0.28rem;
  font-size: 1.02rem;
}

.evidence-timeline p {
  margin: 0;
  color: var(--muted);
}

.timeline-year {
  display: inline-flex;
  align-items: flex-start;
  justify-content: flex-start;
  font-weight: 700;
  color: var(--accent-soft);
  letter-spacing: 0.02em;
}

.timeline h3 {
  margin: 0 0 0.3rem;
  font-size: 1.08rem;
}

.timeline p {
  margin: 0;
  color: var(--muted);
}

.timeline-chips {
  margin: 0.65rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 154, 200, 0.32);
  color: var(--accent-soft);
  background: rgba(255, 63, 142, 0.08);
  border-radius: 999px;
  padding: 0.22rem 0.58rem;
  font-size: 0.78rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.chip-impact {
  color: #71f2c6;
  border-color: rgba(113, 242, 198, 0.35);
  background: rgba(113, 242, 198, 0.11);
}

.chip-award {
  color: #ffd66b;
  border-color: rgba(255, 214, 107, 0.34);
  background: rgba(255, 214, 107, 0.11);
}

.chip-leadership {
  color: #8ac6ff;
  border-color: rgba(138, 198, 255, 0.33);
  background: rgba(138, 198, 255, 0.1);
}

.chip-research {
  color: #c4afff;
  border-color: rgba(196, 175, 255, 0.33);
  background: rgba(196, 175, 255, 0.1);
}

.chip-community {
  color: #ffb4d8;
  border-color: rgba(255, 180, 216, 0.34);
  background: rgba(255, 180, 216, 0.1);
}

.chip-delivery {
  color: #ffb77f;
  border-color: rgba(255, 183, 127, 0.34);
  background: rgba(255, 183, 127, 0.1);
}

.site-footer {
  width: min(var(--max-width), calc(100% - 2.5rem));
  margin: 0 auto 2.5rem;
  padding: 1.25rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.small {
  font-size: 0.88rem;
}

.bio {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.bio-photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  flex-shrink: 0;
  border: 3px solid var(--line);
}

.bio-text {
  flex: 1;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--line);
}

.footer-nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 200ms;
}

.footer-nav a:hover {
  color: var(--text);
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 560ms ease, transform 560ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 940px) {
  .metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .featured-talk-grid {
    grid-template-columns: 1fr;
  }

  .now-next-grid {
    grid-template-columns: 1fr;
  }

  .mini-cases {
    grid-template-columns: 1fr;
  }

  .site-header {
    border-radius: 18px;
    padding: 0.9rem 1rem;
  }

  .media-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .carousel-track {
    min-height: 320px;
  }

  .carousel-slide img {
    height: 320px;
  }
}

@media (max-width: 680px) {
  .site-header {
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.6rem;
    border-radius: 14px;
    width: min(var(--max-width), calc(100% - 1rem));
    margin: 0.7rem auto;
    padding: 0.72rem 0.85rem;
    position: static;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    order: 3;
    width: 100%;
    flex-direction: column;
    gap: 0.15rem;
    padding: 0.25rem 0 0.1rem;
    border-top: 1px solid var(--line);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    display: block;
    width: 100%;
    padding: 0.5rem 0.1rem;
  }

  main {
    width: min(var(--max-width), calc(100% - 1rem));
    margin: 1.2rem auto 2.2rem;
  }

  .panel {
    padding: 1rem;
  }

  h1 {
    font-size: clamp(1.85rem, 7.8vw, 2.5rem);
  }

  h2 {
    font-size: clamp(1.38rem, 6.2vw, 1.95rem);
  }

  .hero-copy {
    font-size: 1rem;
  }

  .metrics {
    grid-template-columns: 1fr;
  }

  .media-grid {
    grid-template-columns: 1fr;
  }

  .carousel-track {
    min-height: 250px;
  }

  .carousel-slide img {
    height: 250px;
  }

  .carousel-control {
    width: 34px;
    height: 34px;
    top: calc(50% - 20px);
  }

  .hero-actions {
    width: 100%;
  }

  .proof-strip {
    gap: 0.45rem;
  }

  .proof-ticker-mask {
    animation-duration: 36s;
  }

  .proof-pill {
    width: 100%;
    text-align: center;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .cta-actions {
    width: 100%;
  }

  .cta-actions .btn {
    width: 100%;
  }

  .scroll-progress {
    height: 3px;
  }

  .timeline li {
    grid-template-columns: 1fr;
  }

  .evidence-timeline li {
    grid-template-columns: 1fr;
  }

  .bio {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .bio-photo {
    width: 120px;
    height: 120px;
  }

  .lightbox {
    padding: 1.4rem 0.7rem;
  }

  .lightbox-close,
  .lightbox-nav {
    width: 38px;
    height: 38px;
  }

  .lightbox-prev {
    left: 0.5rem;
  }

  .lightbox-next {
    right: 0.5rem;
  }
}

/* Framework & Deep Dive Page Styles */
.framework-section {
  margin: 2.5rem auto;
  max-width: 900px;
}

.mt-large {
  margin-top: 3rem;
}

.delay-1 {
  animation-delay: 0.1s;
}

.delay-2 {
  animation-delay: 0.2s;
}

.framework-link {
  font-weight: 500;
  color: var(--accent-soft);
  text-decoration: none;
  transition: color 0.3s ease;
}

.framework-link:hover {
  color: var(--accent);
}

.framework-section h2 {
  font-family: "Fraunces", serif;
  font-size: 1.8rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--text);
}

.framework-section h3 {
  font-size: 1.3rem;
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
  color: var(--text);
}

.framework-section p {
  margin-bottom: 1rem;
  line-height: 1.8;
}

.framework-section ul {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.framework-section li {
  margin-bottom: 0.6rem;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.comparison-table thead {
  background: linear-gradient(135deg, rgba(255, 63, 142, 0.1), rgba(113, 242, 198, 0.05));
}

.comparison-table th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  border-bottom: 2px solid var(--line);
  color: var(--accent-soft);
}

.comparison-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--line);
}

.comparison-table tbody tr:hover {
  background: rgba(255, 63, 142, 0.05);
}

.code-block {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem;
  overflow-x: auto;
  margin: 1.5rem 0;
  font-family: "Courier New", monospace;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--success);
}

.code-block code {
  color: var(--success);
}

.hero-framework {
  text-align: center;
  padding: 2rem 1rem;
}

.hero-framework h1 {
  font-size: 2.8rem;
  font-family: "Fraunces", serif;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.hero-tagline {
  font-size: 1.1rem;
  color: var(--accent-soft);
  font-style: italic;
}

/* Award Recognition */
.proof-pill-award {
  border-color: var(--accent);
  background: rgba(255, 63, 142, 0.12);
  font-weight: 600;
}

.recognition-highlight {
  padding: 1.6rem;
}

.recognition-grid {
  display: grid;
  grid-template-columns: minmax(0, 240px) 1fr;
  gap: 1.6rem;
  align-items: center;
}

.recognition-photo {
  width: 100%;
  max-height: 260px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.recognition-body .eyebrow {
  margin-top: 0;
}

.award-video-wrap {
  display: flex;
  justify-content: center;
  margin: 1.4rem 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #000;
}

.award-video {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 560px;
  background: #000;
}

.award-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1.4rem 0;
}

.award-gallery figure {
  margin: 0;
}

.award-gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.award-gallery figcaption {
  margin-top: 0.4rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.award-source {
  font-size: 0.9rem;
  color: var(--muted);
}

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

  .recognition-photo {
    max-height: 320px;
  }

  .award-gallery {
    grid-template-columns: 1fr;
  }

  .award-gallery img {
    height: 240px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body::before,
  body::after {
    animation: none;
  }

  .hero-orb,
  .proof-ticker-mask,
  .ambient-card::before {
    animation: none;
  }

  .card,
  .media-card,
  .btn,
  .reveal {
    transition: none;
  }
}
