:root {
  color-scheme: dark;
  --bg: #050b12;
  --bg-2: #08111c;
  --panel: rgba(10, 18, 30, 0.82);
  --panel-2: rgba(12, 24, 40, 0.9);
  --line: rgba(85, 127, 168, 0.18);
  --line-strong: rgba(97, 155, 214, 0.28);
  --text: #eef4ff;
  --muted: #93a6bd;
  --soft: #c8d7ea;
  --accent: #28d7ff;
  --accent-2: #17f1c7;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  --radius: 24px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 15% 15%, rgba(40, 215, 255, 0.12), transparent 0 28%),
    radial-gradient(circle at 82% 18%, rgba(23, 241, 199, 0.08), transparent 0 26%),
    linear-gradient(180deg, #06101a 0%, #040910 42%, #03070d 100%);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, black 40%, transparent 90%);
  pointer-events: none;
  opacity: 0.22;
  z-index: 0;
}

.noise-overlay {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

.ambient-orbs {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.orb-layer {
  position: absolute;
  inset: 0;
  transform: translate3d(0, var(--parallax-y, 0px), 0);
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.orb-1 {
  width: 500px;
  height: 500px;
  top: -8%;
  left: 8%;
  background: radial-gradient(circle, rgba(40, 215, 255, 0.14), transparent 70%);
  animation: orbDrift1 22s ease-in-out infinite;
}

.orb-2 {
  width: 420px;
  height: 420px;
  top: 35%;
  right: -6%;
  background: radial-gradient(circle, rgba(23, 241, 199, 0.1), transparent 70%);
  animation: orbDrift2 28s ease-in-out infinite;
}

.orb-3 {
  width: 360px;
  height: 360px;
  bottom: 5%;
  left: 25%;
  background: radial-gradient(circle, rgba(40, 215, 255, 0.08), transparent 70%);
  animation: orbDrift3 25s ease-in-out infinite;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  appearance: none;
  border: 0;
  cursor: pointer;
  font: inherit;
}

h1,
h2,
h3,
p,
blockquote {
  margin: 0;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 50;
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(7, 13, 22, 0.96);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(20px);
  background: rgba(4, 10, 17, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  overflow: clip;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(40, 215, 255, 0.3), transparent);
  pointer-events: none;
}

.site-header::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 13, 22, 0.28), rgba(7, 13, 22, 0.08));
  pointer-events: none;
}

.nav {
  position: relative;
  z-index: 1;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.brand-mark {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  filter: drop-shadow(0 4px 16px rgba(40, 215, 255, 0.35));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.96rem;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 14px;
  transition: 180ms ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  color: #041019;
  font-weight: 700;
  box-shadow: 0 16px 40px rgba(29, 214, 235, 0.22);
}

.btn-glow {
  position: relative;
}

.btn-glow::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  opacity: 0;
  filter: blur(16px);
  transition: opacity 300ms ease;
  z-index: -1;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 20px 44px rgba(29, 214, 235, 0.26);
}

.btn-glow:hover::after,
.btn-glow:focus-visible::after {
  opacity: 0.52;
}

.btn-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.13);
}

.hero {
  min-height: clamp(560px, 78vh, 760px);
  padding: 118px 0 44px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 14% 18%, rgba(23, 241, 199, 0.08), transparent 0 24%),
    radial-gradient(circle at 84% 18%, rgba(40, 215, 255, 0.1), transparent 0 28%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: -16% -8% auto;
  height: 70%;
  background:
    radial-gradient(circle at 24% 60%, rgba(23, 241, 199, 0.12), transparent 0 28%),
    radial-gradient(circle at 76% 40%, rgba(40, 215, 255, 0.12), transparent 0 34%);
  filter: blur(28px);
  opacity: 0.95;
  pointer-events: none;
  animation: heroMistDrift 20s ease-in-out infinite alternate;
}

.hero::after {
  content: "";
  position: absolute;
  right: -10%;
  top: 10%;
  width: min(46vw, 640px);
  height: 420px;
  background: radial-gradient(circle, rgba(126, 235, 255, 0.12), transparent 70%);
  filter: blur(44px);
  opacity: 0.42;
  pointer-events: none;
  animation: heroMistSweep 24s ease-in-out infinite alternate;
}

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

.hero-aurora-band {
  position: absolute;
  border-radius: 999px;
  filter: blur(56px);
  mix-blend-mode: screen;
  opacity: 0.15;
}

.hero-aurora-band-a {
  left: -16%;
  top: 6%;
  width: 72%;
  height: 280px;
  background: linear-gradient(90deg, rgba(23, 241, 199, 0), rgba(23, 241, 199, 0.28), rgba(40, 215, 255, 0.2), rgba(40, 215, 255, 0));
  animation: heroAuroraBandA 18s ease-in-out infinite alternate;
}

.hero-aurora-band-b {
  right: -18%;
  top: 22%;
  width: 68%;
  height: 320px;
  background: linear-gradient(90deg, rgba(40, 215, 255, 0), rgba(40, 215, 255, 0.26), rgba(160, 245, 255, 0.16), rgba(23, 241, 199, 0));
  animation: heroAuroraBandB 24s ease-in-out infinite alternate;
}

.hero-aurora-band-c {
  left: 16%;
  bottom: -4%;
  width: 64%;
  height: 240px;
  background: linear-gradient(90deg, rgba(23, 241, 199, 0), rgba(23, 241, 199, 0.2), rgba(40, 215, 255, 0.14), rgba(23, 241, 199, 0));
  opacity: 0.12;
  animation: heroAuroraBandC 22s ease-in-out infinite alternate;
}

.hero-dots {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.54;
  mix-blend-mode: screen;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 38px;
  align-items: center;
}

.hero-copy-block {
  max-width: 680px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(8, 16, 28, 0.56);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--soft);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
}

.hero-kicker-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  box-shadow: 0 0 20px rgba(40, 215, 255, 0.55);
  animation: heroKickerPulse 3.6s ease-in-out infinite;
}

.hero h1 {
  font-size: clamp(3.2rem, 6vw, 6rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
  max-width: 10ch;
  margin-top: 24px;
}

.gradient {
  background-image: repeating-linear-gradient(
    135deg,
    var(--accent-2) 0%,
    #28e7d4 14%,
    var(--accent) 28%,
    #16cfff 42%,
    var(--accent-2) 56%
  );
  background-size: 220% 220%;
  background-position: 0% 50%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: gradientTextDrift 9s ease-in-out infinite alternate;
}

.hero-copy {
  font-size: 1.07rem;
  line-height: 1.85;
  color: var(--soft);
  max-width: 58ch;
  margin-top: 22px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.hero-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
  padding: 14px;
  border-radius: 22px;
  background: rgba(7, 14, 24, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
}

.hero-strip-item {
  padding: 14px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-strip-item strong {
  display: block;
  color: var(--text);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.hero-strip-item span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.5;
}

.glass {
  position: relative;
  background: linear-gradient(180deg, rgba(12, 22, 36, 0.86), rgba(7, 14, 24, 0.88));
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.glass::before {
  content: "";
  position: absolute;
  inset: auto -20% 60% auto;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(40, 215, 255, 0.18), transparent 68%);
  pointer-events: none;
}

.hero-panel {
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
}

.hero-panel-shell {
  display: grid;
  gap: 18px;
  padding: 30px;
}

.panel-label {
  color: var(--muted);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-panel-copy {
  color: var(--soft);
  line-height: 1.72;
  max-width: 40ch;
}

.hero-panel-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-panel-flow span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--soft);
  font-size: 0.84rem;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.metric-card {
  position: relative;
  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.025));
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  overflow: hidden;
  isolation: isolate;
  transition: transform 280ms ease, border-color 280ms ease, box-shadow 280ms ease;
}

.metric-card:hover,
.metric-card:focus-within {
  transform: translateY(-3px);
  border-color: rgba(40, 215, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03), 0 18px 38px rgba(0, 0, 0, 0.22);
}

.metric-value {
  font-size: 1.92rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.metric-title {
  color: var(--soft);
  font-size: 0.98rem;
  margin-top: 8px;
}

.metric-sub {
  color: var(--muted);
  font-size: 0.85rem;
  margin-top: 6px;
  line-height: 1.5;
}

@keyframes heroKickerPulse {
  0%,
  100% {
    transform: scale(0.92);
    opacity: 0.75;
  }

  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

@keyframes gradientTextDrift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 48% 46%;
  }

  100% {
    background-position: 100% 54%;
  }
}

@keyframes heroMistDrift {
  0% {
    transform: translate3d(-2%, 0, 0) scale(0.98);
  }

  100% {
    transform: translate3d(3%, 4%, 0) scale(1.06);
  }
}

@keyframes heroMistSweep {
  0% {
    transform: translate3d(0, -2%, 0) scale(0.94);
  }

  100% {
    transform: translate3d(-6%, 6%, 0) scale(1.08);
  }
}

@keyframes heroAuroraBandA {
  0% {
    transform: translate3d(-4%, -4%, 0) rotate(-7deg) scaleX(0.96);
  }

  100% {
    transform: translate3d(5%, 6%, 0) rotate(-2deg) scaleX(1.08);
  }
}

@keyframes heroAuroraBandB {
  0% {
    transform: translate3d(0, -2%, 0) rotate(6deg) scaleX(0.98);
  }

  100% {
    transform: translate3d(-6%, 5%, 0) rotate(1deg) scaleX(1.1);
  }
}

@keyframes heroAuroraBandC {
  0% {
    transform: translate3d(-3%, 0, 0) rotate(-3deg) scaleX(1);
  }

  100% {
    transform: translate3d(6%, -4%, 0) rotate(2deg) scaleX(1.08);
  }
}

@keyframes orbDrift1 {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  33% {
    transform: translate3d(60px, 40px, 0) scale(1.08);
  }

  66% {
    transform: translate3d(-30px, 70px, 0) scale(0.95);
  }
}

@keyframes orbDrift2 {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  40% {
    transform: translate3d(-50px, -30px, 0) scale(1.06);
  }

  70% {
    transform: translate3d(30px, 50px, 0) scale(0.92);
  }
}

@keyframes orbDrift3 {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(70px, -40px, 0) scale(1.1);
  }
}

@keyframes pulseDot {
  0%,
  100% {
    box-shadow: 0 0 14px rgba(40, 215, 255, 0.55);
    transform: scale(1);
  }

  50% {
    box-shadow: 0 0 22px rgba(40, 215, 255, 0.85);
    transform: scale(1.2);
  }
}

section {
  padding: 20px 0;
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.section-header h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  letter-spacing: -0.04em;
  line-height: 1;
}

.section-header p {
  color: var(--muted);
  line-height: 1.8;
  max-width: 64ch;
}

.founder-card {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  padding: 28px;
}

.portrait {
  min-height: 360px;
  border-radius: 22px;
  padding: 28px;
  position: relative;
  background:
    radial-gradient(circle at 30% 20%, rgba(23, 241, 199, 0.18), transparent 0 34%),
    radial-gradient(circle at 75% 30%, rgba(40, 215, 255, 0.22), transparent 0 28%),
    linear-gradient(180deg, rgba(8, 15, 25, 0.92), rgba(7, 12, 20, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.portrait-headshot {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 65%;
  width: auto;
  object-fit: contain;
  object-position: right bottom;
  opacity: 0.06;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to bottom, white 80%, transparent 100%);
  mask-image: linear-gradient(to bottom, white 80%, transparent 100%);
}

.portrait-badge {
  display: inline-flex;
  margin-top: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--soft);
  font-size: 0.88rem;
}

.portrait-name {
  margin-top: 24px;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.portrait-role {
  margin-top: 10px;
  color: var(--soft);
  font-size: 1.02rem;
  line-height: 1.6;
  max-width: 34ch;
}

.role-highlight {
  position: relative;
  margin-bottom: 6px;
  padding-right: 8px;
}

.role-logo {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 100%;
  max-height: 72px;
  width: auto;
  object-fit: contain;
  opacity: 0.18;
  pointer-events: none;
}

.role-company {
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.role-title {
  margin-top: 12px;
  color: var(--accent-2);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.chip {
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--soft);
  font-size: 0.92rem;
  transition: transform 220ms ease, border-color 220ms ease, background-color 220ms ease, box-shadow 220ms ease;
}

.chip:hover,
.chip:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(40, 215, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.14);
}

.founder-copy {
  padding: 6px 4px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.subtle {
  color: var(--muted);
  line-height: 1.8;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.stat {
  --stat-logo: none;
  --stat-logo-width: 136px;
  --stat-logo-height: 84px;
  --stat-logo-top: 18px;
  --stat-logo-right: 18px;
  --stat-logo-opacity: 0.12;
  position: relative;
  min-height: 240px;
  padding: 24px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.08), transparent 0 22%),
    linear-gradient(180deg, rgba(11, 19, 31, 0.96), rgba(7, 13, 22, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.07);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
  isolation: isolate;
}

.stat::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 34%),
    radial-gradient(circle at 16% 16%, rgba(23, 241, 199, 0.1), transparent 0 28%),
    radial-gradient(circle at 88% 22%, rgba(40, 215, 255, 0.12), transparent 0 26%);
  pointer-events: none;
}

.stat::after {
  content: "";
  position: absolute;
  right: var(--stat-logo-right);
  top: var(--stat-logo-top);
  width: var(--stat-logo-width);
  height: var(--stat-logo-height);
  z-index: 0;
  background-image: var(--stat-logo);
  background-repeat: no-repeat;
  background-position: top right;
  background-size: contain;
  opacity: var(--stat-logo-opacity);
  pointer-events: none;
}

.stat:hover,
.stat:focus-within {
  transform: translateY(-6px) scale(1.01);
  border-color: rgba(40, 215, 255, 0.18);
  box-shadow: 0 28px 56px rgba(0, 0, 0, 0.24);
}

.hover-glow {
  --glow-x: 50%;
  --glow-y: 50%;
  --glow-opacity: 0;
}

.hover-glow::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    320px circle at var(--glow-x) var(--glow-y),
    rgba(40, 215, 255, 0.1),
    transparent 60%
  );
  opacity: var(--glow-opacity);
  transition: opacity 300ms ease;
  pointer-events: none;
  z-index: 0;
}

.hover-glow > * {
  position: relative;
  z-index: 1;
}

.stat-number {
  position: relative;
  z-index: 1;
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  max-width: 11ch;
}

.stat-label {
  position: relative;
  z-index: 1;
  color: var(--soft);
  margin-top: 10px;
  font-size: 0.96rem;
  line-height: 1.65;
  max-width: 28ch;
}

.stat-label em {
  display: inline-block;
  font-style: normal;
  color: var(--accent-2);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 18px;
}

.cap-card,
.process-card,
.fit-card {
  padding: 24px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(12, 22, 36, 0.85), rgba(7, 14, 24, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform 280ms ease, border-color 280ms ease, box-shadow 280ms ease, background-color 280ms ease;
}

.cap-card:hover,
.cap-card:focus-within,
.process-card:hover,
.process-card:focus-within,
.fit-card:hover,
.fit-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(40, 215, 255, 0.14);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.2);
}

.cap-card::before,
.process-card::before,
.fit-card::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(40, 215, 255, 0.12), transparent 68%);
  pointer-events: none;
}

.card-num {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--accent-2);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cap-card h3,
.process-card h3,
.fit-card h3,
.case-card h3 {
  font-size: 1.3rem;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.cap-card p,
.process-card p,
.fit-card p,
.case-card p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 0.98rem;
}

.list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.list span {
  display: flex;
  align-items: start;
  gap: 10px;
  color: var(--soft);
  line-height: 1.55;
  font-size: 0.95rem;
}

.list span::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 8px;
  border-radius: 50%;
  flex: 0 0 auto;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  box-shadow: 0 0 16px rgba(40, 215, 255, 0.45);
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 18px;
}

.case-card {
  display: flex;
  flex-direction: column;
  padding: 22px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(11, 19, 31, 0.94), rgba(8, 14, 23, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  position: relative;
  isolation: isolate;
  transition: transform 280ms ease, border-color 280ms ease, box-shadow 280ms ease;
}

.case-card:hover,
.case-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(40, 215, 255, 0.12);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.22);
}

.case-visual {
  height: 240px;
  border-radius: 18px;
  margin-bottom: 18px;
  padding: 16px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(9, 17, 28, 0.9), rgba(6, 11, 18, 0.96)),
    radial-gradient(circle at 18% 20%, rgba(23, 241, 199, 0.18), transparent 0 28%),
    radial-gradient(circle at 80% 25%, rgba(40, 215, 255, 0.22), transparent 0 30%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 320ms ease, border-color 320ms ease, box-shadow 320ms ease;
}

.case-card:hover .case-visual,
.case-card:focus-within .case-visual {
  transform: translateY(-2px) scale(1.01);
  border-color: rgba(40, 215, 255, 0.12);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.dashboard-shell {
  position: absolute;
  inset: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 16px;
  display: grid;
  gap: 12px;
  grid-template-rows: auto minmax(0, 1fr);
}

.dash-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--soft);
  font-size: 0.92rem;
}

.live-indicator {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent-2);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 8px var(--accent-2);
  animation: pulseDot 2s ease-in-out infinite;
}

.dash-main {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 12px;
}

.chart,
.side-stack > div {
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.chart {
  position: relative;
  overflow: hidden;
  min-height: 100px;
}

.chart svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.chart-line {
  stroke-dasharray: 800;
  stroke-dashoffset: 800;
  transition: stroke-dashoffset 1.6s ease-out;
}

.chart-area {
  opacity: 0;
  transition: opacity 1s ease-out 0.35s;
}

.bar {
  transform-origin: bottom;
  transform: scaleY(0);
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.bar:nth-of-type(1) {
  transition-delay: 0.04s;
}

.bar:nth-of-type(2) {
  transition-delay: 0.12s;
}

.bar:nth-of-type(3) {
  transition-delay: 0.2s;
}

.bar:nth-of-type(4) {
  transition-delay: 0.28s;
}

.bar:nth-of-type(5) {
  transition-delay: 0.36s;
}

.bar:nth-of-type(6) {
  transition-delay: 0.44s;
}

.case-visual.is-animated .chart-line,
.chart-line.animated {
  stroke-dashoffset: 0;
}

.case-visual.is-animated .chart-area,
.chart-area.animated {
  opacity: 1;
}

.case-visual.is-animated .bar,
.bar.animated {
  transform: scaleY(1);
}

.side-stack {
  display: grid;
  gap: 12px;
}

.side-stack > div {
  padding: 10px;
  color: var(--soft);
  font-size: 0.85rem;
}

.case-cta {
  margin-top: auto;
  padding-top: 18px;
}

/* CinemaCraft card */
.cinema-badge {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(40, 215, 255, 0.1);
  border: 1px solid rgba(40, 215, 255, 0.2);
  border-radius: 6px;
  padding: 2px 8px;
}

.cinema-stats-row {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 24px;
  height: 100%;
}

.cinema-stat {
  text-align: center;
}

.cinema-stat-num {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.cinema-stat-label {
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 500;
  margin-top: 2px;
}

.quote-section {
  padding-top: 18px;
}

.quote-card {
  padding: 30px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 10% 10%, rgba(23, 241, 199, 0.12), transparent 0 26%),
    radial-gradient(circle at 90% 20%, rgba(40, 215, 255, 0.14), transparent 0 24%),
    linear-gradient(180deg, rgba(10, 18, 30, 0.95), rgba(6, 12, 20, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: var(--shadow);
}

.quote-card blockquote {
  font-size: clamp(1.6rem, 3vw, 2.7rem);
  letter-spacing: -0.04em;
  line-height: 1.12;
  max-width: 66ch;
}

.quote-foot {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: end;
  margin-top: 18px;
}

.quote-foot p {
  color: var(--muted);
  line-height: 1.8;
  max-width: 66ch;
}

.process-grid,
.fit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 18px;
}

.final-cta {
  position: relative;
  padding-bottom: 84px;
}

.cta-dots {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
  z-index: 0;
}

.final-cta > .container {
  position: relative;
  z-index: 1;
}

.cta-card {
  padding: 36px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 18% 20%, rgba(23, 241, 199, 0.14), transparent 0 28%),
    radial-gradient(circle at 82% 30%, rgba(40, 215, 255, 0.14), transparent 0 32%),
    linear-gradient(180deg, rgba(10, 18, 30, 0.96), rgba(6, 11, 18, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  align-items: center;
}

.cta-card h2 {
  font-size: clamp(2rem, 3.4vw, 3.6rem);
  letter-spacing: -0.05em;
  line-height: 0.98;
  margin-bottom: 14px;
}

.cta-card p {
  color: var(--muted);
  line-height: 1.8;
  max-width: 54ch;
}

.contact-panel {
  padding: 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: grid;
  gap: 16px;
}

.contact-item {
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.contact-label {
  color: var(--muted);
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
}

.contact-value {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.65;
}

.site-footer {
  position: relative;
  z-index: 1;
  padding: 26px 0 50px;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 24px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 700ms ease var(--delay, 0ms),
    transform 700ms ease var(--delay, 0ms);
}

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

.menu-btn {
  display: none;
  min-width: 48px;
  min-height: 48px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text);
}

:focus-visible {
  outline: 2px solid rgba(23, 241, 199, 0.8);
  outline-offset: 3px;
}

html.reduced-effects .orb-layer {
  transform: none;
}

html.reduced-effects .orb,
html.reduced-effects .hero-kicker-dot,
html.reduced-effects .live-dot,
html.reduced-effects .gradient {
  animation: none;
}

html.reduced-effects .hero::before,
html.reduced-effects .hero::after,
html.reduced-effects .hero-aurora,
html.reduced-effects .hero-dots,
html.reduced-effects .cta-dots {
  display: none;
}

@media (max-width: 1080px) {
  .hero::before {
    filter: blur(24px);
  }

  .hero::after {
    filter: blur(36px);
  }

  .hero-aurora-band {
    filter: blur(48px);
    opacity: 0.13;
  }

  .hero-dots {
    opacity: 0.46;
  }

  .hero-grid,
  .founder-card,
  .cta-card,
  .dash-main {
    grid-template-columns: 1fr;
  }

  .hero-copy-block {
    max-width: none;
  }

  .stats-row,
  .process-grid,
  .fit-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .card-grid,
  .case-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .hero::before {
    filter: blur(18px);
    opacity: 0.7;
  }

  .hero::after {
    width: 72vw;
    height: 280px;
    filter: blur(28px);
    opacity: 0.24;
  }

  .hero-aurora-band {
    filter: blur(40px);
    opacity: 0.1;
  }

  .hero-aurora-band-c {
    display: none;
  }

  .hero-dots {
    opacity: 0.36;
  }

  .container {
    width: min(calc(100% - 28px), var(--max));
  }

  .nav {
    min-height: 70px;
  }

  .menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    left: 14px;
    right: 14px;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 14px;
    border-radius: 18px;
    background: rgba(7, 13, 22, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: var(--shadow);
    display: none;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a,
  .nav-links .btn {
    width: 100%;
  }

  .hero {
    min-height: auto;
    padding: 92px 0 36px;
  }

  .hero h1 {
    max-width: 10.5ch;
  }

  .hero-kicker {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .hero-strip {
    grid-template-columns: 1fr;
    padding: 12px;
  }

  .metric-grid,
  .stats-row,
  .process-grid,
  .fit-grid {
    grid-template-columns: 1fr;
  }

  .founder-card,
  .cta-card,
  .quote-card,
  .case-card {
    padding: 20px;
  }

  .hero-panel {
    padding: 0;
  }

  .hero-panel-shell {
    padding: 22px;
  }

  .portrait {
    min-height: 300px;
  }

  .quote-foot,
  .section-header,
  .footer-row {
    grid-template-columns: 1fr;
    display: grid;
    align-items: start;
  }
}

/* Pet Simulator page */
.pet-sim-hero {
  padding: 118px 0 44px;
  position: relative;
  overflow: hidden;
}

/* Floating pet GIFs behind hero */
.pet-float-strip {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  mask-image: linear-gradient(to bottom, transparent 0%, black 25%, black 65%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 25%, black 65%, transparent 100%);
}

.pet-float {
  position: absolute;
  width: clamp(64px, 8vw, 110px);
  height: auto;
  opacity: 0.12;
  filter: grayscale(0.3) brightness(1.2);
  animation: petDrift 18s ease-in-out infinite alternate;
  animation-delay: calc(var(--i) * -3.2s);
}

.pet-float:nth-child(1)  { top: 8%;  left: 2%; }
.pet-float:nth-child(2)  { top: 18%; left: 22%; }
.pet-float:nth-child(3)  { top: 6%;  left: 44%; }
.pet-float:nth-child(4)  { top: 22%; left: 64%; }
.pet-float:nth-child(5)  { top: 10%; left: 84%; }
.pet-float:nth-child(6)  { top: 52%; left: 6%; }
.pet-float:nth-child(7)  { top: 60%; left: 30%; }
.pet-float:nth-child(8)  { top: 48%; left: 52%; }
.pet-float:nth-child(9)  { top: 58%; left: 74%; }
.pet-float:nth-child(10) { top: 50%; left: 90%; }

@keyframes petDrift {
  0%   { transform: translateY(0) scale(1); }
  50%  { transform: translateY(-12px) scale(1.04); }
  100% { transform: translateY(4px) scale(0.97); }
}

.pet-sim-hero > .container {
  position: relative;
  z-index: 1;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.92rem;
  transition: color 180ms ease;
}

.back-link:hover,
.back-link:focus-visible {
  color: var(--text);
}

.pet-sim-hero-content {
  margin-top: 28px;
  max-width: 72ch;
}

.pet-sim-hero-content h1 {
  font-size: clamp(2.2rem, 4.5vw, 4.2rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.pet-sim-metrics {
  margin-top: 32px;
  grid-template-columns: repeat(4, 1fr);
}

.milestones-section {
  padding: 20px 0;
}

.milestone-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 18px;
}

.milestone-card {
  display: flex;
  flex-direction: column;
}

.milestone-logo {
  display: block;
  max-width: 80px;
  max-height: 36px;
  width: auto;
  height: auto;
  object-fit: contain;
  margin-bottom: 12px;
  opacity: 0.45;
  filter: brightness(0) invert(1);
  transition: opacity 260ms ease;
}

.milestone-card:hover .milestone-logo {
  opacity: 0.7;
}

.milestone-logo-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.milestone-logo-row .milestone-logo {
  margin-bottom: 0;
}

.milestone-meta {
  margin-top: auto;
  padding-top: 14px;
  color: var(--accent-2);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.timeline-section {
  padding: 20px 0 40px;
}

.timeline-group {
  margin-top: 28px;
}

.timeline-group + .timeline-group {
  margin-top: 36px;
}

.timeline-group-title {
  font-size: 1.4rem;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.timeline-years {
  display: grid;
  gap: 12px;
}

.timeline-year {
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(8, 14, 24, 0.5);
}

.timeline-year-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: background 180ms ease;
}

.timeline-year-header::-webkit-details-marker { display: none; }
.timeline-year-header::marker { display: none; content: ""; }

.timeline-year-header:hover {
  background: rgba(40, 215, 255, 0.04);
}

.timeline-year-header::after {
  content: "";
  margin-left: auto;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: rotate(45deg);
  transition: transform 220ms ease;
  flex-shrink: 0;
}

.timeline-year[open] > .timeline-year-header::after {
  transform: rotate(-135deg);
}

.timeline-year-label {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}

.timeline-year-count {
  font-size: 0.82rem;
  color: var(--accent-2);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.timeline-year-body {
  display: grid;
  gap: 8px;
  padding: 0 12px 12px;
}

.timeline-list {
  display: grid;
  gap: 8px;
  max-height: 520px;
  overflow-y: auto;
  padding-right: 8px;
  scrollbar-width: thin;
  scrollbar-color: rgba(40, 215, 255, 0.2) transparent;
}

.timeline-list::-webkit-scrollbar {
  width: 6px;
}

.timeline-list::-webkit-scrollbar-track {
  background: transparent;
}

.timeline-list::-webkit-scrollbar-thumb {
  background: rgba(40, 215, 255, 0.2);
  border-radius: 3px;
}

.timeline-entry {
  display: grid;
  grid-template-columns: 56px 1fr 1.2fr;
  gap: 14px;
  align-items: center;
  padding: 12px 16px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(12, 22, 36, 0.7), rgba(7, 14, 24, 0.8));
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform 220ms ease, border-color 220ms ease, background-color 220ms ease;
}

.timeline-entry:hover,
.timeline-entry:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(40, 215, 255, 0.12);
  background: linear-gradient(180deg, rgba(14, 26, 42, 0.8), rgba(9, 17, 28, 0.9));
}

.timeline-thumb {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
}

.timeline-thumb-text {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(23, 241, 199, 0.12), rgba(40, 215, 255, 0.12));
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--accent-2);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-align: center;
  line-height: 1.2;
  padding: 4px;
}

.timeline-info {
  min-width: 0;
}

.timeline-name {
  font-weight: 700;
  font-size: 0.96rem;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.timeline-date {
  color: var(--muted);
  font-size: 0.82rem;
  margin-top: 3px;
}

.timeline-desc {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Pet Simulator case card visual */
.update-grid-visual {
  position: absolute;
  inset: 14px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 6px;
  padding: 8px;
  opacity: 0.7;
}

.update-grid-cell {
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(23, 241, 199, 0.08), rgba(40, 215, 255, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: opacity 400ms ease, transform 400ms ease;
}

.update-grid-cell:nth-child(odd) {
  background: linear-gradient(135deg, rgba(40, 215, 255, 0.1), rgba(23, 241, 199, 0.05));
}

.update-grid-cell.cell-accent {
  background: linear-gradient(135deg, rgba(23, 241, 199, 0.16), rgba(40, 215, 255, 0.12));
  border-color: rgba(40, 215, 255, 0.1);
}

@media (max-width: 1080px) {
  .pet-sim-metrics {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .timeline-entry {
    grid-template-columns: 48px 1fr 1fr;
  }

  .timeline-thumb,
  .timeline-thumb-text {
    width: 48px;
    height: 48px;
  }
}

@media (max-width: 760px) {
  .pet-sim-hero {
    padding: 92px 0 32px;
  }

  .pet-float-strip {
    opacity: 0.6;
  }

  .pet-float {
    width: clamp(44px, 12vw, 72px);
  }

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

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

  .timeline-entry {
    grid-template-columns: 44px 1fr;
    gap: 10px;
  }

  .timeline-desc {
    display: none;
  }

  .timeline-thumb,
  .timeline-thumb-text {
    width: 44px;
    height: 44px;
    border-radius: 10px;
  }

  .timeline-year-header {
    padding: 12px 16px;
  }

  .timeline-year-label {
    font-size: 1.1rem;
  }

  .timeline-year-body {
    padding: 0 8px 8px;
  }
}

/* ---------- Marketplace Case Study Page ---------- */

.mp-breadcrumb {
  padding: 28px 0 0;
  font-size: 0.84rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.mp-breadcrumb a {
  color: var(--muted);
  transition: color 200ms ease;
}

.mp-breadcrumb a:hover { color: var(--accent); }

.mp-breadcrumb-sep { opacity: 0.4; }

.mp-breadcrumb [aria-current] { color: var(--soft); }

.mp-hero {
  padding: 48px 0 40px;
}

.mp-hero-content {
  max-width: 780px;
}

.mp-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(40, 215, 255, 0.08);
  border: 1px solid rgba(40, 215, 255, 0.15);
  border-radius: 8px;
  padding: 5px 14px;
  margin-bottom: 24px;
}

.mp-hero h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}

.mp-hero-sub {
  font-size: 1.08rem;
  color: var(--soft);
  line-height: 1.8;
  max-width: 640px;
}

.mp-hero-sub strong { color: var(--text); font-weight: 600; }

.mp-hero-links {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.mp-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 36px;
}

.mp-section {
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

/* Featured video */
.mp-video-hero {
  max-width: 860px;
}

.mp-video-wrapper {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.mp-video-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 400ms ease, opacity 300ms ease;
}

.mp-video-wrapper:hover img { transform: scale(1.02); }

.mp-video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.mp-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 2;
  transition: transform 200ms ease, opacity 200ms ease;
}

.mp-play-btn svg {
  width: 68px;
  height: 48px;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
}

.mp-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.mp-play-btn-sm svg {
  width: 52px;
  height: 36px;
}

.mp-video-caption {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 640px;
}

/* Project grid */
.mp-project-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 18px;
}

.mp-project-card {
  padding: 0;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(12, 22, 36, 0.85), rgba(7, 14, 24, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  position: relative;
  isolation: isolate;
  transition: transform 280ms ease, border-color 280ms ease, box-shadow 280ms ease;
}

.mp-project-card:hover,
.mp-project-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(40, 215, 255, 0.14);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.22);
}

.mp-project-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  cursor: pointer;
}

.mp-project-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 400ms ease;
}

.mp-project-card:hover .mp-project-thumb img { transform: scale(1.03); }

.mp-project-info {
  padding: 18px 20px 22px;
}

.mp-project-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.mp-project-header h3 {
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0;
}

.mp-creator-badge {
  flex-shrink: 0;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-2);
  background: rgba(23, 241, 199, 0.08);
  border: 1px solid rgba(23, 241, 199, 0.18);
  border-radius: 6px;
  padding: 2px 8px;
}

.mp-project-info > p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
  margin: 0;
}

.mp-feature-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.mp-chip {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--soft);
}

/* Production story */
.mp-story-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: start;
  margin-top: 18px;
}

.mp-story-narrative p {
  color: var(--soft);
  line-height: 1.85;
  margin: 0 0 18px;
}

.mp-story-narrative strong { color: var(--text); font-weight: 600; }

.mp-story-proof {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mp-proof-card {
  padding: 16px 18px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(12, 22, 36, 0.7), rgba(7, 14, 24, 0.85));
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: border-color 300ms ease;
}

.mp-proof-card:hover { border-color: rgba(40, 215, 255, 0.12); }

.mp-proof-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent-2);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.mp-proof-text {
  font-size: 0.9rem;
  color: var(--soft);
  line-height: 1.5;
}

.mp-story-cta {
  margin-top: 28px;
}

.mp-story-cta p {
  color: var(--muted);
  font-size: 0.92rem;
}

.mp-story-cta a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 200ms ease;
}

.mp-story-cta a:hover { color: var(--accent-2); }

/* CTA */
.mp-cta-section {
  border-top: none;
  padding-bottom: 60px;
}

.mp-cta-block {
  padding: 48px 40px;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 18% 20%, rgba(23, 241, 199, 0.1), transparent 28%),
    radial-gradient(circle at 82% 30%, rgba(40, 215, 255, 0.1), transparent 32%),
    linear-gradient(180deg, rgba(10, 18, 30, 0.96), rgba(6, 11, 18, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.07);
  text-align: center;
}

.mp-cta-block h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}

.mp-cta-block p {
  color: var(--muted);
  line-height: 1.8;
  max-width: 56ch;
  margin: 0 auto 28px;
}

.mp-cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Marketplace responsive */
@media (max-width: 1080px) {
  .mp-metrics {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .mp-hero { padding: 32px 0 28px; }

  .mp-hero h1 { font-size: clamp(1.8rem, 7vw, 2.6rem); }

  .mp-metrics {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

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

  .mp-story-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .mp-cta-block { padding: 36px 24px; }

  .mp-cta-actions { flex-direction: column; align-items: center; }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero::before,
  .hero::after,
  .hero-aurora,
  .hero-dots {
    display: none;
  }

  .orb {
    animation: none;
  }

  .chart-line {
    stroke-dashoffset: 0;
  }

  .chart-area {
    opacity: 1;
  }

  .bar {
    transform: scaleY(1);
  }
}
