@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=JetBrains+Mono:wght@400;500;700&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

:root {
  --indigo-deep: #0F172A;
  --indigo-mid: #1E293B;
  --indigo-soft: #334155;
  --slate-muted: #94A3B8;
  --white-pure: #FFFFFF;
  --purple-neon: #9333EA;
  --pink-neon: #EC4899;
  --green-neon: #10B981;
  --purple-light: #C084FC;
  --pink-pastel: #FBCFE8;
  --bg-rgba-purple: rgba(147, 51, 234, 0.4);
  --bg-rgba-purple-soft: rgba(147, 51, 234, 0.2);
  --bg-rgba-purple-thin: rgba(147, 51, 234, 0.15);
  --bg-rgba-pink: rgba(236, 72, 153, 0.4);
  --bg-rgba-indigo: rgba(15, 23, 42, 0.95);
  --shadow-card: 0 12px 40px rgba(0, 0, 0, 0.2);
  --shadow-card-hover: 0 24px 64px rgba(147, 51, 234, 0.35);
  --shadow-button: 0 8px 32px rgba(147, 51, 234, 0.5);
  --shadow-sticky: 0 -20px 60px rgba(0, 0, 0, 0.15);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-2xl: 24px;
  --radius-3xl: 32px;
}

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

strong, p, span, b {
  color: inherit;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Space Grotesk', sans-serif;
  background: var(--indigo-deep);
  color: var(--white-pure);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

button {
  font-family: inherit;
  border: none;
  background: transparent;
  color: inherit;
}

h1, h2, h3, h4 {
  font-family: 'Archivo Black', sans-serif;
  letter-spacing: 0.05em;
  color: var(--white-pure);
  line-height: 1.1;
  text-transform: uppercase;
}

.mono-tag {
  font-family: 'JetBrains Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.neon-ring-cursor {
  position: fixed;
  width: 24px;
  height: 24px;
  border: 2px solid var(--purple-neon);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transition: transform 0.08s ease-out, width 0.3s ease, height 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 8px var(--purple-neon);
  opacity: 0.85;
  mix-blend-mode: screen;
}

.neon-ring-cursor.hover-active {
  width: 36px;
  height: 36px;
  border-color: var(--pink-neon);
  box-shadow: 0 0 20px var(--pink-neon);
  animation: pulseRing 0.3s ease-in-out;
}

.neon-ring-cursor.click-active {
  width: 19px;
  height: 19px;
  opacity: 1;
}

@keyframes pulseRing {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.15); }
}

@keyframes floatSlow {
  0%, 100% { transform: translate(0, 0) rotate(-8deg); }
  50% { transform: translate(0, -20px) rotate(-8deg); }
}

@keyframes floatSlowCircle {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(15px, -15px); }
}

@keyframes gradientShift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(60px, -40px) scale(1.1); }
  66% { transform: translate(-40px, 50px) scale(0.95); }
}

@keyframes meshPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.5; }
}

@keyframes letterReveal {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes drawLine {
  to { stroke-dashoffset: 0; }
}

@keyframes staggerSlide {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes floatAppear {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.split-top-row {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg-rgba-indigo);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(147, 51, 234, 0.3);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.top-micro-row {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  border-bottom: 1px solid rgba(147, 51, 234, 0.15);
}

.logo-emblem {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brush-icon {
  width: 36px;
  height: 36px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--purple-neon), var(--pink-neon));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--white-pure);
  box-shadow: 0 0 20px var(--bg-rgba-purple);
  font-family: 'Archivo Black', sans-serif;
}

.domain-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--purple-neon);
  letter-spacing: 0.1em;
  text-transform: lowercase;
  font-weight: 500;
}

.top-right-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--slate-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.top-right-meta a:hover {
  color: var(--purple-neon);
}

.bottom-nav-row {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
}

.brand-name-block {
  display: flex;
  flex-direction: column;
  font-family: 'Archivo Black', sans-serif;
  font-size: 14px;
  letter-spacing: 0.2em;
  color: var(--white-pure);
  text-transform: uppercase;
  line-height: 1;
}

.brand-name-block .brand-sub {
  font-size: 9px;
  letter-spacing: 0.3em;
  color: var(--purple-light);
  margin-top: 4px;
}

.primary-nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.primary-nav-link {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: var(--white-pure);
  padding: 8px 16px;
  border-radius: var(--radius-md);
  letter-spacing: 0.05em;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  white-space: nowrap;
  display: inline-block;
}

.primary-nav-link:hover {
  background: var(--purple-neon);
  color: var(--white-pure);
  box-shadow: 0 4px 16px var(--bg-rgba-purple);
  transform: translateY(-2px);
}

.primary-nav-link.is-active {
  background: var(--purple-neon);
  color: var(--white-pure);
}

.cta-header-btn {
  font-family: 'Archivo Black', sans-serif;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--purple-neon), var(--pink-neon));
  color: var(--white-pure);
  padding: 12px 28px;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 4px 20px var(--bg-rgba-purple);
  white-space: nowrap;
  display: inline-block;
}

.cta-header-btn:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 32px var(--bg-rgba-purple);
  color: var(--white-pure);
}

.burger-trigger {
  display: none;
  width: 36px;
  height: 36px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: transparent;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  z-index: 9999;
}

.burger-trigger:hover {
  background: rgba(147, 51, 234, 0.2);
}

.burger-dot {
  display: block;
  width: 5px;
  height: 5px;
  background: var(--purple-neon);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--purple-neon);
  transition: all 0.3s ease;
}

.burger-trigger[aria-expanded="true"] .burger-dot {
  background: var(--pink-neon);
  box-shadow: 0 0 8px var(--pink-neon);
}

.mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--indigo-deep);
  z-index: 9000;
  padding: 100px 32px 32px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.mobile-drawer.is-open {
  transform: translateX(0);
}

.mobile-drawer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 30%, var(--bg-rgba-purple) 0%, transparent 50%),
              radial-gradient(circle at 80% 70%, var(--bg-rgba-pink) 0%, transparent 50%);
  opacity: 0.3;
  animation: meshPulse 6s infinite;
  pointer-events: none;
}

.mobile-drawer-close {
  position: absolute;
  top: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--purple-neon);
  color: var(--white-pure);
  font-family: 'Archivo Black', sans-serif;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px var(--bg-rgba-purple);
  z-index: 9100;
}

.mobile-drawer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-drawer-list li {
  opacity: 0;
  animation: staggerSlide 0.4s forwards;
}

.mobile-drawer-list li:nth-child(1) { animation-delay: 0.05s; }
.mobile-drawer-list li:nth-child(2) { animation-delay: 0.11s; }
.mobile-drawer-list li:nth-child(3) { animation-delay: 0.17s; }
.mobile-drawer-list li:nth-child(4) { animation-delay: 0.23s; }
.mobile-drawer-list li:nth-child(5) { animation-delay: 0.29s; }
.mobile-drawer-list li:nth-child(6) { animation-delay: 0.35s; }

.mobile-drawer-link {
  font-family: 'Archivo Black', sans-serif;
  font-size: 28px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white-pure);
  padding: 16px 0;
  display: flex;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid rgba(147, 51, 234, 0.15);
}

.mobile-drawer-link:hover {
  color: var(--pink-neon);
  padding-left: 12px;
}

.mobile-drawer-link .num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: var(--purple-neon);
  letter-spacing: 0.1em;
}

.hero-stage {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--indigo-deep);
  overflow: hidden;
  padding: 80px 24px;
}

.hero-stage.compact {
  min-height: 50vh;
  padding: 60px 24px;
}

.mesh-gradient-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.mesh-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  animation: gradientShift 30s ease-in-out infinite;
}

.mesh-blob.purple {
  width: 800px;
  height: 800px;
  background: var(--purple-neon);
  opacity: 0.3;
  top: -100px;
  right: -200px;
  animation-duration: 30s;
}

.mesh-blob.pink {
  width: 500px;
  height: 500px;
  background: var(--pink-neon);
  opacity: 0.2;
  bottom: -100px;
  left: -100px;
  animation-duration: 25s;
  animation-delay: -5s;
}

.mesh-blob.green {
  width: 300px;
  height: 300px;
  background: var(--green-neon);
  opacity: 0.15;
  top: 40%;
  left: 50%;
  animation-duration: 20s;
  animation-delay: -10s;
}

.mesh-stripes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(0deg, transparent, transparent 100px, rgba(255, 255, 255, 0.02) 100px, rgba(255, 255, 255, 0.02) 102px);
  pointer-events: none;
}

.hero-card-float {
  position: absolute;
  z-index: 2;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
  animation: floatSlow 8s ease-in-out infinite;
}

.hero-card-float.one {
  width: 120px;
  height: 80px;
  background: var(--purple-neon);
  border-radius: var(--radius-lg);
  top: 15%;
  left: 8%;
  transform: rotate(-8deg);
  opacity: 0.65;
}

.hero-card-float.two {
  width: 100px;
  height: 100px;
  background: var(--pink-neon);
  border-radius: 50%;
  bottom: 18%;
  right: 10%;
  animation: floatSlowCircle 10s ease-in-out infinite;
  animation-delay: -2s;
  opacity: 0.55;
}

.hero-card-float.three {
  width: 80px;
  height: 80px;
  background: var(--green-neon);
  border-radius: var(--radius-md);
  top: 22%;
  right: 15%;
  transform: rotate(12deg);
  animation: floatSlow 12s ease-in-out infinite;
  animation-delay: -4s;
  opacity: 0.5;
}

.hero-content {
  position: relative;
  z-index: 5;
  text-align: center;
  max-width: 1100px;
  width: 100%;
  color: var(--white-pure);
}

.killer-headline {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(40px, 8vw, 96px);
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.killer-headline .line-jp,
.killer-headline .line-en {
  display: block;
  opacity: 0;
  animation: letterReveal 0.7s forwards;
}

.killer-headline .line-jp {
  font-size: clamp(48px, 9vw, 110px);
  animation-delay: 0.1s;
  background: linear-gradient(135deg, var(--white-pure), var(--purple-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.08em;
}

.killer-headline .line-en {
  font-size: clamp(20px, 3vw, 42px);
  letter-spacing: 0.2em;
  color: var(--pink-neon);
  animation-delay: 0.4s;
  font-weight: 900;
  text-shadow: 0 0 30px var(--bg-rgba-pink);
}

.wireframe-divider {
  width: min(80%, 600px);
  height: 2px;
  margin: 0 auto 32px;
  background: linear-gradient(90deg, transparent, var(--purple-neon), var(--pink-neon), transparent);
  box-shadow: 0 0 12px var(--purple-neon);
}

.hero-subline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(13px, 1.5vw, 16px);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--slate-muted);
  margin-bottom: 48px;
  font-weight: 500;
}

.cta-pair {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.btn-neon-primary {
  font-family: 'Archivo Black', sans-serif;
  font-size: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--purple-neon), var(--pink-neon));
  color: var(--white-pure);
  padding: 20px 40px;
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: var(--shadow-button);
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  min-height: 56px;
}

.btn-neon-primary:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 12px 40px var(--bg-rgba-pink);
  color: var(--white-pure);
}

.btn-ghost-outline {
  font-family: 'Archivo Black', sans-serif;
  font-size: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: transparent;
  color: var(--white-pure);
  padding: 20px 40px;
  border-radius: var(--radius-lg);
  text-decoration: none;
  border: 2px solid var(--purple-neon);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  min-height: 56px;
}

.btn-ghost-outline:hover {
  background: var(--purple-neon);
  color: var(--white-pure);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px var(--bg-rgba-purple);
}

.section-frame {
  position: relative;
  padding: 120px 24px;
  background: var(--indigo-deep);
  overflow: hidden;
}

.section-frame.alt {
  background: var(--indigo-mid);
}

.section-frame .container-block {
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
  z-index: 5;
}

.section-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--purple-neon);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.section-eyebrow::before {
  content: "//";
  color: var(--pink-neon);
}

.section-eyebrow .num {
  color: var(--pink-neon);
}

.section-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(32px, 5vw, 64px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white-pure);
  margin: 0 0 16px;
  line-height: 1.05;
}

.section-lead {
  font-size: clamp(14px, 1.4vw, 16px);
  color: var(--slate-muted);
  line-height: 1.7;
  max-width: 760px;
  margin: 0 0 56px;
}

.horizontal-slider-shell {
  position: relative;
}

.slider-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 24px 0;
  scrollbar-width: thin;
  scrollbar-color: var(--purple-neon) transparent;
}

.slider-track::-webkit-scrollbar {
  height: 8px;
}

.slider-track::-webkit-scrollbar-track {
  background: transparent;
}

.slider-track::-webkit-scrollbar-thumb {
  background: var(--purple-neon);
  border-radius: 4px;
  box-shadow: 0 0 8px var(--purple-neon);
}

.article-floating-card {
  flex: 0 0 340px;
  scroll-snap-align: start;
  background: var(--white-pure);
  border: 1px solid var(--bg-rgba-purple-soft);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  color: var(--indigo-deep);
  display: flex;
  flex-direction: column;
}

.article-floating-card:hover {
  transform: scale(1.04);
  z-index: 15;
  box-shadow: var(--shadow-card-hover);
  border-color: var(--purple-neon);
  border-width: 2px;
}

.article-cover-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
  display: block;
}

.article-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--indigo-deep);
}

.article-num-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--purple-neon);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}

.article-cat-tag {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  color: var(--slate-muted);
  letter-spacing: 0.05em;
}

.article-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: 20px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--indigo-deep);
  line-height: 1.3;
  margin: 0;
}

.article-excerpt {
  font-size: 12px;
  color: var(--indigo-soft);
  line-height: 1.6;
}

.article-mini-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--purple-neon);
  color: var(--white-pure);
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  box-shadow: 0 4px 12px var(--bg-rgba-purple);
}

.slider-arrows {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 48px;
}

.slider-arrow-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white-pure);
  color: var(--purple-neon);
  border: none;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-card);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  font-family: 'Archivo Black', sans-serif;
}

.slider-arrow-btn:hover {
  transform: scale(1.1);
  background: var(--purple-neon);
  color: var(--white-pure);
  box-shadow: var(--shadow-card-hover);
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(147, 51, 234, 0.3);
  transition: all 0.3s ease;
  border: none;
}

.slider-dot.is-active {
  background: var(--purple-neon);
  width: 32px;
  border-radius: 5px;
  box-shadow: 0 0 8px var(--purple-neon);
}

.timeline-rail {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  position: relative;
  max-width: 980px;
  margin: 0 auto;
}

.timeline-rail::before {
  content: "";
  position: absolute;
  left: 40px;
  top: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--purple-neon), var(--pink-neon));
  box-shadow: 0 0 10px var(--purple-neon);
  border-radius: 2px;
}

.timeline-row {
  display: contents;
}

.timeline-node {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--purple-neon);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 16px;
  color: var(--white-pure);
  box-shadow: 0 0 20px var(--bg-rgba-purple);
  position: relative;
  z-index: 2;
  margin-top: 24px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.timeline-node:hover {
  transform: scale(1.18);
  box-shadow: 0 0 32px var(--purple-neon);
}

.timeline-node.final {
  background: var(--pink-neon);
  box-shadow: 0 0 20px var(--bg-rgba-pink);
}

.timeline-card {
  background: var(--white-pure);
  color: var(--indigo-deep);
  border-radius: var(--radius-xl);
  padding: 24px 28px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
  margin-bottom: 32px;
  margin-left: -32px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 1px solid transparent;
  position: relative;
  z-index: 1;
}

.timeline-card:hover {
  z-index: 10;
  border-color: var(--purple-neon);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

.timeline-card-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--purple-neon);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.timeline-card-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: 22px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: var(--indigo-deep);
}

.timeline-card-desc {
  font-size: 14px;
  color: var(--indigo-soft);
  line-height: 1.6;
  margin-bottom: 12px;
}

.masonry-shell {
  columns: 3 320px;
  column-gap: 24px;
  max-width: 1320px;
  margin: 0 auto;
}

.masonry-shell > * {
  break-inside: avoid;
  margin-bottom: 24px;
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--white-pure);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(147, 51, 234, 0.15);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.masonry-shell > *:hover {
  transform: scale(1.04);
  z-index: 15;
  border-color: var(--purple-neon);
  border-width: 2px;
  box-shadow: var(--shadow-card-hover);
}

.masonry-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.masonry-meta {
  padding: 20px;
  color: var(--indigo-deep);
}

.masonry-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--purple-neon);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.masonry-name {
  font-family: 'Archivo Black', sans-serif;
  font-size: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--indigo-deep);
  margin-top: 4px;
}

.masonry-type {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--purple-neon);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 8px;
}

.masonry.tall { height: 360px; }
.masonry.tall .masonry-img { height: 240px; object-fit: cover; }
.masonry.wide { height: 280px; }
.masonry.wide .masonry-img { height: 160px; object-fit: cover; }
.masonry.small { height: 220px; }
.masonry.small .masonry-img { height: 100px; object-fit: cover; }
.masonry.medium { height: 300px; }
.masonry.medium .masonry-img { height: 180px; object-fit: cover; }

.sticky-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  position: relative;
  max-width: 1320px;
  margin: 0 auto;
}

.sticky-split-img {
  position: sticky;
  top: 120px;
  height: fit-content;
  border-radius: var(--radius-3xl);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.3);
  border: 2px solid var(--bg-rgba-purple-soft);
}

.sticky-split-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-3xl);
}

.sticky-split-text {
  padding: 40px 0 40px 56px;
  color: var(--white-pure);
}

.sticky-split-text .section-eyebrow {
  color: var(--purple-neon);
}

.sticky-split-text p {
  font-size: 15px;
  color: var(--slate-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}

.fact-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.fact-card {
  background: var(--white-pure);
  color: var(--indigo-deep);
  border-radius: var(--radius-xl);
  padding: 20px;
  border: 1px solid rgba(147, 51, 234, 0.3);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.fact-card:hover {
  transform: translateY(-4px);
  z-index: 10;
  box-shadow: var(--shadow-card-hover);
  border-color: var(--purple-neon);
  border-width: 2px;
}

.fact-num {
  font-family: 'Archivo Black', sans-serif;
  font-size: 28px;
  color: var(--purple-neon);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.fact-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  color: var(--indigo-soft);
  margin-top: 4px;
}

.flex-grow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1320px;
  margin: 0 auto;
}

.flex-grow-card {
  background: var(--white-pure);
  color: var(--indigo-deep);
  border-radius: var(--radius-2xl);
  padding: 32px;
  border: 1px solid rgba(147, 51, 234, 0.2);
  box-shadow: var(--shadow-card);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.flex-grow-card:hover {
  transform: scale(1.04);
  z-index: 15;
  border-color: var(--purple-neon);
  border-width: 2px;
  box-shadow: var(--shadow-card-hover);
}

.flex-grow-num {
  font-family: 'Archivo Black', sans-serif;
  font-size: 48px;
  color: var(--purple-neon);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
}

.flex-grow-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: 16px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--indigo-deep);
  margin: 16px 0 8px;
}

.flex-grow-desc {
  font-size: 12px;
  color: var(--indigo-soft);
  line-height: 1.6;
}

.flex-grow-mini-deco {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--purple-neon);
  opacity: 0.3;
  animation: floatSlowCircle 6s ease-in-out infinite;
}

.team-reveal-shell {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 0;
  max-width: 1320px;
  margin: 0 auto;
  min-height: 600px;
}

.team-name-list {
  border-top: 1px solid rgba(147, 51, 234, 0.2);
}

.team-name-row {
  padding: 24px 16px;
  border-bottom: 1px solid rgba(147, 51, 234, 0.2);
  transition: all 0.3s ease;
  position: relative;
}

.team-name-row:hover {
  background: var(--bg-rgba-purple-thin);
  border-left: 4px solid var(--purple-neon);
  box-shadow: 0 0 16px var(--bg-rgba-purple);
  padding-left: 24px;
}

.team-name-row.is-active {
  background: var(--bg-rgba-purple-thin);
  border-left: 4px solid var(--purple-neon);
  box-shadow: 0 0 16px var(--bg-rgba-purple);
}

.team-name {
  font-family: 'Archivo Black', sans-serif;
  font-size: 22px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white-pure);
  line-height: 1.1;
}

.team-role {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--purple-neon);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 6px;
}

.team-preview-zone {
  position: relative;
  padding: 24px;
}

.team-preview-card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 320px;
  background: var(--white-pure);
  color: var(--indigo-deep);
  border-radius: var(--radius-2xl);
  padding: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(147, 51, 234, 0.3);
  opacity: 0;
  pointer-events: none;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 5;
}

.team-preview-card.is-visible {
  opacity: 1;
  transform: translate(-50%, -50%) translateX(0);
}

.team-preview-photo {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  margin-bottom: 16px;
}

.team-preview-name {
  font-family: 'Archivo Black', sans-serif;
  font-size: 22px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--indigo-deep);
  margin-bottom: 4px;
}

.team-preview-role {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--purple-neon);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.team-preview-bio {
  font-size: 13px;
  color: var(--indigo-soft);
  line-height: 1.6;
}

.coverflow-shell {
  perspective: 1200px;
  position: relative;
  height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.coverflow-track {
  position: relative;
  width: 100%;
  max-width: 1320px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.coverflow-card {
  position: absolute;
  width: 380px;
  background: var(--white-pure);
  color: var(--indigo-deep);
  border-radius: var(--radius-2xl);
  padding: 36px 32px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(147, 51, 234, 0.2);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  pointer-events: none;
  text-align: center;
}

.coverflow-card.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0) scale(1) rotateY(0);
  z-index: 10;
}

.coverflow-card.prev {
  opacity: 0.4;
  transform: translateX(-340px) scale(0.85) rotateY(15deg);
  z-index: 5;
}

.coverflow-card.next {
  opacity: 0.4;
  transform: translateX(340px) scale(0.85) rotateY(-15deg);
  z-index: 5;
}

.coverflow-card.far-prev {
  opacity: 0;
  transform: translateX(-580px) scale(0.7) rotateY(20deg);
}

.coverflow-card.far-next {
  opacity: 0;
  transform: translateX(580px) scale(0.7) rotateY(-20deg);
}

.coverflow-deco {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: var(--bg-rgba-purple-thin);
  border-radius: 50%;
  box-shadow: 0 0 24px var(--bg-rgba-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--purple-neon);
  font-family: 'Archivo Black', sans-serif;
}

.coverflow-quote {
  font-size: 14px;
  color: var(--indigo-soft);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}

.coverflow-author {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--purple-neon);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.coverflow-rating {
  margin-top: 12px;
  color: var(--pink-neon);
  letter-spacing: 4px;
  font-size: 14px;
  text-shadow: 0 0 8px var(--pink-neon);
}

.coverflow-controls {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.accordion-shell {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.accordion-item {
  background: var(--white-pure);
  color: var(--indigo-deep);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(147, 51, 234, 0.2);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.accordion-item:hover {
  border-color: var(--purple-neon);
  box-shadow: 0 12px 32px rgba(147, 51, 234, 0.2);
}

.accordion-trigger {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  border: none;
  font-family: 'Archivo Black', sans-serif;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: left;
  color: var(--indigo-deep);
}

.accordion-trigger:hover {
  background: var(--bg-rgba-purple-thin);
}

.accordion-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-rgba-purple-thin);
  color: var(--purple-neon);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Archivo Black', sans-serif;
  font-size: 18px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.accordion-item.is-open .accordion-icon {
  transform: rotate(45deg);
  background: var(--pink-neon);
  color: var(--white-pure);
  box-shadow: 0 0 12px var(--pink-neon);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-content-inner {
  padding: 0 24px 24px;
  font-size: 14px;
  color: var(--slate-muted);
  line-height: 1.7;
}

.accordion-item.is-open .accordion-content {
  max-height: 400px;
}

.contact-split-grid {
  display: grid;
  grid-template-columns: 55% 45%;
  max-width: 1320px;
  margin: 0 auto;
  border-radius: var(--radius-3xl);
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.contact-form-side {
  background: var(--white-pure);
  color: var(--indigo-deep);
  padding: 56px;
  border-right: 2px solid rgba(147, 51, 234, 0.2);
}

.contact-info-side {
  background: var(--indigo-mid);
  color: var(--white-pure);
  padding: 56px;
}

.contact-info-side .section-title {
  font-size: clamp(36px, 4vw, 44px);
  margin-bottom: 32px;
}

.form-field {
  margin-bottom: 28px;
}

.form-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--purple-neon);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  display: block;
  font-weight: 500;
}

.form-input,
.form-textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--indigo-soft);
  color: var(--indigo-deep);
  padding: 12px 4px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-bottom-color: var(--purple-neon);
  box-shadow: 0 2px 0 var(--purple-neon);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--slate-muted);
  font-size: 14px;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-success {
  background: var(--green-neon);
  color: var(--white-pure);
  padding: 20px;
  border-radius: var(--radius-md);
  text-align: center;
  font-weight: 600;
  display: none;
  margin-top: 16px;
}

.form-success.is-visible {
  display: block;
  animation: fadeSlideUp 0.4s forwards;
}

.contact-info-row {
  margin-bottom: 24px;
}

.contact-info-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--purple-neon);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}

.contact-info-value {
  font-size: 18px;
  color: var(--white-pure);
  font-family: 'Space Grotesk', sans-serif;
}

.contact-info-value a {
  color: var(--purple-neon);
  text-shadow: 0 0 10px var(--bg-rgba-purple);
}

.contact-info-value a:hover {
  color: var(--pink-neon);
}

.mini-map-pin {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
  padding: 16px;
  background: rgba(147, 51, 234, 0.1);
  border-radius: var(--radius-md);
  border: 1px solid rgba(147, 51, 234, 0.2);
}

.mini-map-pin-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--purple-neon);
  color: var(--white-pure);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 0 16px var(--bg-rgba-purple);
  flex-shrink: 0;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.sticky-stacking {
  position: relative;
  z-index: 1;
}

.footer-stage {
  background: var(--indigo-mid);
  color: var(--white-pure);
  padding: 80px 24px 24px;
  position: relative;
  overflow: hidden;
  border-top: 3px solid transparent;
  border-image: linear-gradient(90deg, var(--purple-neon), var(--pink-neon)) 1;
  box-shadow: 0 -10px 32px var(--bg-rgba-purple);
}

.footer-stage::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--purple-neon), var(--pink-neon), var(--purple-neon));
  box-shadow: 0 0 12px var(--purple-neon);
}

.footer-deco-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.2;
  animation: gradientShift 35s ease-in-out infinite;
}

.footer-deco-blob.one {
  width: 300px;
  height: 300px;
  background: var(--purple-neon);
  top: -100px;
  left: 10%;
}

.footer-deco-blob.two {
  width: 250px;
  height: 250px;
  background: var(--pink-neon);
  bottom: -100px;
  right: 15%;
  animation-delay: -10s;
}

.footer-inner {
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
  z-index: 5;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand-block .brand-block-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: 16px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-pure);
  margin-bottom: 16px;
}

.footer-brand-block .brand-block-desc {
  font-size: 13px;
  color: var(--slate-muted);
  line-height: 1.6;
}

.footer-col-title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--purple-neon);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-list a {
  font-size: 13px;
  color: var(--slate-muted);
  transition: color 0.3s ease;
}

.footer-links-list a:hover {
  color: var(--pink-neon);
}

.footer-contact-row {
  font-size: 13px;
  color: var(--slate-muted);
  margin-bottom: 8px;
  line-height: 1.5;
}

.footer-contact-row strong {
  color: var(--white-pure);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(147, 51, 234, 0.2);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copy {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--slate-muted);
  letter-spacing: 0.08em;
}

.footer-copy a {
  color: var(--purple-neon);
}

.cookie-banner-shell {
  position: fixed;
  bottom: 24px;
  left: 24px;
  max-width: 420px;
  background: var(--indigo-mid);
  color: var(--white-pure);
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(147, 51, 234, 0.3);
  z-index: 8000;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cookie-banner-shell.is-hidden {
  display: none;
}

.cookie-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white-pure);
}

.cookie-desc {
  font-size: 12px;
  color: var(--slate-muted);
  line-height: 1.6;
}

.cookie-desc a {
  color: var(--purple-neon);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.cookie-btn {
  font-family: 'Archivo Black', sans-serif;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 16px;
  border-radius: var(--radius-md);
  border: none;
  transition: all 0.3s ease;
  flex: 1;
  min-height: 40px;
}

.cookie-btn.accept {
  background: linear-gradient(135deg, var(--purple-neon), var(--pink-neon));
  color: var(--white-pure);
}

.cookie-btn.decline {
  background: transparent;
  color: var(--white-pure);
  border: 1px solid var(--purple-neon);
}

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

.legal-content {
  max-width: 980px;
  margin: 0 auto;
  padding: 80px 24px 120px;
  color: var(--white-pure);
  background: var(--indigo-deep);
  min-height: 60vh;
}

.legal-content h1 {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(32px, 5vw, 56px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white-pure);
  margin-bottom: 24px;
  line-height: 1.1;
}

.legal-content h2 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 22px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--purple-neon);
  margin: 32px 0 12px;
}

.legal-content p {
  font-size: 15px;
  color: var(--slate-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-content ul {
  margin: 12px 0 24px 24px;
  color: var(--slate-muted);
}

.legal-content li {
  margin-bottom: 8px;
  font-size: 15px;
  line-height: 1.7;
}

.thanks-stage {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  background: var(--indigo-deep);
  position: relative;
  overflow: hidden;
}

.thanks-card {
  background: var(--white-pure);
  color: var(--indigo-deep);
  border-radius: var(--radius-3xl);
  padding: 64px 56px;
  max-width: 720px;
  width: 100%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(147, 51, 234, 0.2);
  position: relative;
  z-index: 5;
}

.thanks-icon {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-neon), var(--pink-neon));
  color: var(--white-pure);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin: 0 auto 24px;
  box-shadow: 0 12px 32px var(--bg-rgba-purple);
}

.thanks-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: 36px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--indigo-deep);
  margin-bottom: 16px;
  line-height: 1.1;
}

.thanks-text {
  font-size: 16px;
  color: var(--slate-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.gallery-masonry-shell {
  columns: 3 300px;
  column-gap: 24px;
}

.gallery-tile {
  break-inside: avoid;
  display: block;
  margin-bottom: 24px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  background: var(--white-pure);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(147, 51, 234, 0.15);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.gallery-tile:hover {
  transform: scale(1.04);
  z-index: 15;
  border-color: var(--purple-neon);
  box-shadow: var(--shadow-card-hover);
}

.gallery-tile img {
  width: 100%;
  height: auto;
  display: block;
}

.gallery-tile .label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  background: rgba(15, 23, 42, 0.9);
  color: var(--white-pure);
  padding: 12px 16px;
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(147, 51, 234, 0.3);
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.gallery-tile:hover .label {
  opacity: 1;
  transform: translateY(0);
}

.gallery-tile .label-name {
  font-family: 'Archivo Black', sans-serif;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.gallery-tile .label-type {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--purple-neon);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1320px;
  margin: 0 auto;
}

.article-shell-card {
  background: var(--white-pure);
  color: var(--indigo-deep);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(147, 51, 234, 0.2);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  flex-direction: column;
}

.article-shell-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--purple-neon);
}

.article-shell-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.article-shell-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.article-shell-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--purple-neon);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.article-shell-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: 20px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--indigo-deep);
  line-height: 1.3;
  margin-bottom: 12px;
}

.article-shell-excerpt {
  font-size: 14px;
  color: var(--indigo-soft);
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

.read-more-btn {
  font-family: 'Archivo Black', sans-serif;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--purple-neon);
  padding: 12px 0;
  border: none;
  background: transparent;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s ease;
}

.read-more-btn:hover {
  gap: 14px;
  color: var(--pink-neon);
}

.article-expanded {
  display: none;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px dashed rgba(147, 51, 234, 0.3);
  color: var(--indigo-soft);
  font-size: 13px;
  line-height: 1.7;
}

.article-expanded.is-open {
  display: block;
  animation: fadeSlideUp 0.4s forwards;
}

.team-grid-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1320px;
  margin: 0 auto;
}

.team-grid-card {
  background: var(--white-pure);
  color: var(--indigo-deep);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(147, 51, 234, 0.15);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.team-grid-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--purple-neon);
}

.team-grid-photo {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.team-grid-body {
  padding: 24px;
}

.team-grid-name {
  font-family: 'Archivo Black', sans-serif;
  font-size: 22px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--indigo-deep);
  margin-bottom: 6px;
  line-height: 1.2;
}

.team-grid-role {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--purple-neon);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.team-grid-bio {
  font-size: 13px;
  color: var(--indigo-soft);
  line-height: 1.6;
}

::selection {
  background: var(--purple-neon);
  color: var(--white-pure);
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--indigo-deep);
}

::-webkit-scrollbar-thumb {
  background: var(--purple-neon);
  border-radius: 4px;
  box-shadow: 0 0 8px var(--bg-rgba-purple);
  opacity: 0.4;
}

::-webkit-scrollbar-thumb:hover {
  opacity: 0.7;
}

@media (max-width: 1024px) {
  .top-micro-row,
  .bottom-nav-row {
    padding: 0 20px;
  }
  .primary-nav-list,
  .cta-header-btn {
    display: none;
  }
  .burger-trigger {
    display: flex;
  }
  .sticky-split-grid,
  .team-reveal-shell,
  .contact-split-grid {
    grid-template-columns: 1fr;
  }
  .sticky-split-img,
  .sticky-split-text,
  .team-preview-zone,
  .contact-form-side,
  .contact-info-side {
    padding: 24px;
    border-right: none;
    border-bottom: 2px solid rgba(147, 51, 234, 0.2);
    position: relative;
    top: auto;
  }
  .flex-grow-grid,
  .articles-grid,
  .team-grid-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .article-floating-card {
    flex: 0 0 300px;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 15px;
  }
  .section-frame {
    padding: 60px 16px;
  }
  .hero-stage {
    padding: 80px 16px;
  }
  .hero-stage.compact {
    padding: 50px 16px;
    min-height: 40vh;
  }
  .mesh-blob.purple {
    width: 400px;
    height: 400px;
    right: -100px;
  }
  .mesh-blob.pink {
    width: 250px;
    height: 250px;
  }
  .mesh-blob.green {
    width: 150px;
    height: 150px;
  }
  .hero-card-float {
    display: none;
  }
  .cta-pair {
    flex-direction: column;
  }
  .btn-neon-primary,
  .btn-ghost-outline {
    width: 100%;
    justify-content: center;
  }
  .cta-header-btn,
  .top-right-meta {
    display: none;
  }
  .flex-grow-grid,
  .articles-grid,
  .team-grid-cards,
  .footer-top,
  .fact-row {
    grid-template-columns: 1fr;
  }
  .article-floating-card {
    flex: 0 0 280px;
  }
  .masonry-shell,
  .gallery-masonry-shell {
    columns: 1;
  }
  .coverflow-card {
    width: 90%;
    padding: 24px;
  }
  .coverflow-card.prev,
  .coverflow-card.next {
    display: none;
  }
  .timeline-rail {
    grid-template-columns: 60px 1fr;
  }
  .timeline-card {
    margin-left: -24px;
    padding: 20px;
  }
  .timeline-node {
    width: 60px;
    height: 60px;
    font-size: 13px;
  }
  .timeline-rail::before {
    left: 30px;
  }
  .contact-form-side,
  .contact-info-side {
    padding: 32px 24px;
  }
  .cookie-banner-shell {
    left: 12px;
    right: 12px;
    bottom: 12px;
    max-width: none;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .thanks-card {
    padding: 40px 24px;
  }
  .thanks-title {
    font-size: 26px;
  }
  .sticky-split-text {
    padding: 24px 0 0;
  }
  body {
    font-size: 15px;
  }
  .section-frame {
    padding: 60px 16px;
  }
  .hero-stage {
    padding: 80px 16px;
  }
  .hero-stage.compact {
    padding: 50px 16px;
    min-height: 40vh;
  }
  .mesh-blob.purple {
    width: 400px;
    height: 400px;
    right: -100px;
  }
  .mesh-blob.pink {
    width: 250px;
    height: 250px;
  }
  .mesh-blob.green {
    width: 150px;
    height: 150px;
  }
  .hero-card-float {
    display: none;
  }
  .cta-pair {
    flex-direction: column;
  }
  .btn-neon-primary,
  .btn-ghost-outline {
    width: 100%;
    justify-content: center;
  }
  .cta-header-btn,
  .top-right-meta {
    display: none;
  }
  .flex-grow-grid,
  .articles-grid,
  .team-grid-cards,
  .footer-top,
  .fact-row {
    grid-template-columns: 1fr;
  }
  .article-floating-card {
    flex: 0 0 280px;
  }
  .masonry-shell,
  .gallery-masonry-shell {
    columns: 1;
  }
  .coverflow-card {
    width: 90%;
    padding: 24px;
  }
  .coverflow-card.prev,
  .coverflow-card.next {
    display: none;
  }
  .timeline-rail {
    grid-template-columns: 60px 1fr;
  }
  .timeline-card {
    margin-left: -24px;
    padding: 20px;
  }
  .timeline-node {
    width: 60px;
    height: 60px;
    font-size: 13px;
  }
  .timeline-rail::before {
    left: 30px;
  }
  .contact-form-side,
  .contact-info-side {
    padding: 32px 24px;
  }
  .cookie-banner-shell {
    left: 12px;
    right: 12px;
    bottom: 12px;
    max-width: none;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .thanks-card {
    padding: 40px 24px;
  }
  .thanks-title {
    font-size: 26px;
  }
  .sticky-split-text {
    padding: 24px 0 0;
  }
}

@media (max-width: 480px) {
  .top-micro-row {
    padding: 0 12px;
  }
  .bottom-nav-row {
    padding: 0 12px;
  }
  .section-title {
    font-size: 28px;
  }
  .kicker {
    font-size: 12px;
  }
  .coverflow-card {
    padding: 20px;
    max-width: 100%;
  }
  .team-preview-card {
    max-width: calc(100% - 32px);
    left: 16px;
    right: 16px;
    transform: translateY(-50%);
  }
}
