@charset "UTF-8";
html {
  font-size: 100%;
  box-sizing: border-box;
}

*, *::before, *::after {
  box-sizing: inherit;
}

* {
  margin: 0;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

#root, #__next {
  isolation: isolate;
}

@font-face {
  font-family: "Copernicus";
  src: url("/assets/fonts/copernicus-book.woff") format("woff"), url("/assets/fonts/copernicus-book.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
h1, h2, h3, h4, h5, h6 {
  font-family: "Copernicus", Garamond, Georgia, serif;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #0f172a;
}
html[data-theme=dark] h1, html[data-theme=dark] h2, html[data-theme=dark] h3, html[data-theme=dark] h4, html[data-theme=dark] h5, html[data-theme=dark] h6 {
  color: #e5e7eb;
}

h1 {
  font-size: 2.75rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

a {
  color: #2563eb;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

ul, ol {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

html {
  min-height: 100vh;
  scroll-behavior: smooth;
  background-color: #080d17;
}

body {
  font-family: "Poppins", Helvetica, sans-serif;
  font-size: 1rem;
  color: #0f172a;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
html[data-theme=dark] body {
  color: #e5e7eb;
}

.main {
  flex: 1;
}

@keyframes logo-breathe {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-4px) scale(1.07);
  }
}
.footer {
  background: #080d17;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.5rem 0;
  text-align: center;
  font-family: "Poppins", Helvetica, sans-serif;
  font-size: 1rem;
}
.footer .footer-lotus {
  display: block;
  width: 48px;
  margin: 0 auto 0.5rem;
  opacity: 0.7;
}
.footer a:has(.footer-lotus) {
  display: inline-block;
  animation: logo-breathe 7s ease-in-out infinite;
  transition: filter 0.2s ease, opacity 0.2s ease;
}
.footer a:has(.footer-lotus):hover {
  opacity: 1;
  animation-play-state: paused;
  filter: drop-shadow(0 0 7px rgba(180, 160, 255, 0.55));
}
.footer p {
  margin: 0 0 0.2rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.45);
}
.footer a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer:hover a {
  color: rgba(255, 255, 255, 0.75);
}
.footer a:hover {
  color: #fff;
  text-decoration: underline;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}

.container-narrow {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media (min-width: 768px) {
  .container-narrow {
    padding: 0 2rem;
  }
}

.w-100 {
  width: 100%;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.text-muted {
  color: #475569;
}
html[data-theme=dark] .text-muted {
  color: #9ca3af;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 640px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.gap-sm {
  gap: 0.5rem;
}

.gap-md {
  gap: 1rem;
}

.gap-lg {
  gap: 1.5rem;
}

.mt-md {
  margin-top: 1rem;
}

.mt-lg {
  margin-top: 1.5rem;
}

.mt-xl {
  margin-top: 2rem;
}

.mt-2xl {
  margin-top: 3rem;
}

.mb-md {
  margin-bottom: 1rem;
}

.mb-lg {
  margin-bottom: 1.5rem;
}

.mb-xl {
  margin-bottom: 2rem;
}

@keyframes ripple-expand {
  to {
    transform: scale(4);
    opacity: 0;
  }
}
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  font-family: "Poppins", Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn .ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: ripple-expand 0.9s linear;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.25);
}

.btn-ghost .ripple {
  background: rgba(0, 0, 0, 0.07);
}

.btn-primary {
  background-color: #7c3aed;
  color: white;
}
.btn-primary:hover {
  background-color: #6d28d9;
}

.btn-ghost {
  background: transparent;
  border: 1px solid #e2e8f0;
  color: #0f172a;
}
.btn-ghost:hover {
  background: #f8fafc;
  border-color: #2563eb;
}
html[data-theme=dark] .btn-ghost {
  border-color: #374151;
  color: #e5e7eb;
}
html[data-theme=dark] .btn-ghost:hover {
  background: #2a3547;
  border-color: #2563eb;
}

.btn-secondary {
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  color: #334155;
}
.btn-secondary:hover {
  background: #e2e8f0;
  border-color: #cbd5e1;
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: rgba(255, 255, 255, 0.85);
}
.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.theme-toggle {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  color: white;
  font-size: 1rem;
  width: 100%;
  justify-content: space-between;
}
.theme-toggle:hover {
  background: rgba(255, 255, 255, 0.18);
}
.theme-toggle .theme-icon {
  font-size: 1.5rem;
}

@keyframes sidemenu-logo-breathe {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-8px) scale(1.07);
  }
}
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 2rem 1.25rem;
  background-color: transparent;
  border-bottom: 1px solid transparent;
  box-shadow: none;
  transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out;
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 768px) {
  .navbar {
    padding: 2rem 2rem;
  }
}

.navbar.active {
  background-color: #ffffff;
  border-bottom-color: #e2e8f0;
}

.navbar-brand {
  font-family: "Poppins", Helvetica, sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: #111;
  text-decoration: none;
  letter-spacing: -0.01em;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.2s ease-in-out;
}
@media (min-width: 768px) {
  .navbar-brand {
    font-size: 1.8rem;
  }
}
.navbar-brand:hover {
  text-decoration: none;
}

.navbar-lotus {
  width: 24px;
  height: 24px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
  opacity: 0.85;
}
@media (min-width: 768px) {
  .navbar-lotus {
    width: 28px;
    height: 28px;
  }
}

.navbar-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  display: block;
  flex-shrink: 0;
}

.page-dark .navbar-brand,
html[data-theme=dark] .navbar-brand {
  color: rgba(255, 255, 255, 0.9);
}

.page-dark .sidemenu .toggle span,
html[data-theme=dark] .sidemenu .toggle span {
  background: rgba(255, 255, 255, 0.85);
}

.page-dark .navbar.active,
html[data-theme=dark] .navbar.active {
  background-color: #080d17;
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.sidemenu .toggle {
  width: 24px;
  height: 18px;
  position: relative;
  padding: 10px;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
  z-index: 2000;
}

.sidemenu .toggle span {
  display: block;
  position: absolute;
  height: 3px;
  width: 24px;
  background: #333;
  border-radius: 1px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}
html[data-theme=dark] .sidemenu .toggle span {
  background: #e5e7eb;
}

.sidemenu .toggle span:nth-child(1) {
  top: 0px;
  width: 85%;
}

.sidemenu .toggle span:nth-child(2) {
  top: 8px;
}

.sidemenu .toggle span:nth-child(3) {
  top: 16px;
  width: 65%;
}

.sidemenu .toggle.open span {
  background: #fff;
}

.sidemenu .toggle.open span:nth-child(1) {
  top: 8px;
  width: 28px;
  height: 4px;
  transform: rotate(135deg);
}

.sidemenu .toggle.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

.sidemenu .toggle.open span:nth-child(3) {
  top: 8px;
  width: 28px;
  height: 4px;
  transform: rotate(-135deg);
}

.sidemenu-main {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
}

.sidemenu-open {
  overflow-y: hidden;
}

.sidemenu-open .sidemenu-main {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.sidemenu-left {
  z-index: 1001;
  position: relative;
  height: 100vh;
  width: 100%;
  max-width: 600px;
  padding: 0 2.5rem 0 1.25rem;
  background: #080d17;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .sidemenu-left {
    padding: 0 2.5rem 0 2rem;
  }
}

.sidemenu-left ul {
  list-style: none;
  padding: 8vh 0 3vh 0;
  margin: 1rem 0 0 0;
  flex-grow: 1;
}

.sidemenu-left ul li {
  padding: 0.5rem 0;
  margin: 0;
}

.sidemenu-left ul li h3 {
  padding: 0;
  margin: 0;
  font-size: 2rem;
  font-family: "Copernicus", Garamond, Georgia, serif;
  font-weight: 400;
}
@media (min-width: 768px) {
  .sidemenu-left ul li h3 {
    font-size: 2.2rem;
  }
}

.sidemenu-left ul li h3 a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.9);
  transition: opacity 0.2s;
}
.sidemenu-left ul li h3 a:hover {
  opacity: 0.7;
  text-decoration: none;
}

.sidemenu-left footer {
  padding: 2rem 0;
}

.sidemenu-footer-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.sidemenu-footer-row .sidemenu-logo {
  margin-bottom: 0;
}

.sidemenu-copyright {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
  line-height: 1.4;
  user-select: none;
}

.sidemenu-logo-link {
  display: inline-block;
  animation: sidemenu-logo-breathe 6s ease-in-out 3.5s infinite;
  transition: filter 0.2s ease, opacity 0.2s ease;
}
.sidemenu-logo-link:hover {
  opacity: 1;
  animation-play-state: paused;
  filter: drop-shadow(0 0 7px rgba(180, 160, 255, 0.55));
}
.sidemenu-logo-link:active {
  filter: drop-shadow(0 0 12px rgba(180, 160, 255, 0.8));
}

.sidemenu-logo {
  display: block;
  width: 80px;
  opacity: 0.75;
  margin-bottom: 0.75rem;
}

.sidemenu-right {
  position: fixed;
  width: 100%;
  height: 100vh;
  right: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 900;
}

@media (max-width: 768px) {
  .sidemenu-left {
    max-width: 100%;
  }
  .sidemenu-right {
    display: none;
  }
}
@media (min-width: 769px) {
  .sidemenu-left {
    max-width: 38%;
    clip-path: url(#sidemenu-clip);
  }
}
.hero-headline {
  font-family: "Copernicus", Garamond, Georgia, serif;
  font-size: clamp(3.5rem, 10vw, 6.5rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  color: #0f172a;
  line-height: 1.15;
}
html[data-theme=dark] .hero-headline, .page-dark .hero-headline {
  color: #e5e7eb;
}

.cycle-word {
  display: inline-block;
  transition: opacity 0.7s ease, filter 0.7s ease, transform 0.7s ease;
}
.cycle-word.cycle-blur {
  opacity: 0;
  filter: blur(10px);
  transform: scale(0.93);
}

.hero {
  min-height: 100svh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: center;
  background: linear-gradient(to bottom, #f0f4ff 0%, #ffffff 80%);
  position: relative;
}
.page-dark .hero, html[data-theme=dark] .hero {
  background: linear-gradient(to bottom, #080d17 0%, #1a1030 80%);
}

.hero-bars {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 105px;
  display: flex;
  overflow: hidden;
  pointer-events: none;
}

.hero-bar {
  flex: none;
  width: 50px;
  height: 100%;
  animation: bar-pulse 4s ease-in-out infinite;
}

@keyframes bar-pulse {
  0%, 100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.75;
  }
}
.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 10rem 3rem 2rem;
  position: relative;
  z-index: 1;
}
@media (max-width: 640px) {
  .hero-content {
    padding-top: 5rem;
  }
}

.hero-petals {
  flex-shrink: 0;
  align-self: stretch;
  height: clamp(50px, 14dvw, 168px);
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 200'%3E%3Cpath d='M-100,200 Q0,100 100,200 Q200,100 300,200 Q400,100 500,200 Q600,100 700,200 Q800,100 900,200 Q1000,100 1100,200 Q1200,100 1300,200 Q1400,100 1500,200 Z' fill='rgba(162,125,248,0.32)'/%3E%3C/svg%3E"), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 200'%3E%3Cpath d='M-150,200 Q0,60 150,200 Q300,60 450,200 Q600,60 750,200 Q900,60 1050,200 Q1200,60 1350,200 Q1500,60 1650,200 Z' fill='rgba(138,108,225,0.22)'/%3E%3C/svg%3E"), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 200'%3E%3Cpath d='M0,200 Q200,20 400,200 Q600,20 800,200 Q1000,20 1200,200 Q1400,20 1600,200 Z' fill='rgba(115,88,200,0.15)'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
@media (max-width: 640px) {
  .hero-petals {
    height: clamp(50px, 10dvw, 168px);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 200'%3E%3Cpath d='M-240,200 Q0,100 240,200 Q480,100 720,200 Q960,100 1200,200 Q1440,100 1680,200 Z' fill='rgba(162,125,248,0.32)'/%3E%3C/svg%3E"), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 200'%3E%3Cpath d='M-360,200 Q0,60 360,200 Q720,60 1080,200 Q1440,60 1800,200 Z' fill='rgba(138,108,225,0.22)'/%3E%3C/svg%3E"), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 200'%3E%3Cpath d='M-480,200 Q0,20 480,200 Q960,20 1440,200 Q1920,20 2400,200 Z' fill='rgba(115,88,200,0.15)'/%3E%3C/svg%3E");
  }
}

.hero-mark-wrap {
  position: relative;
  display: block;
  width: 200px;
  max-width: 45vw;
  margin: 0 auto 0.25rem;
}
@media (max-width: 640px) {
  .hero-mark-wrap {
    width: 120px;
    max-width: 38vw;
    margin-top: 3rem;
    margin-bottom: 0.5rem;
  }
}

.hero-orb {
  width: 180px;
  height: 180px;
  margin: 0 auto 0.25rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.hero-orb:hover {
  transform: scale(1.25);
}

.hero-orb-core-wrap {
  position: absolute;
  z-index: 2;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.hero-orb:hover .hero-orb-core-wrap {
  transform: scale(1.3);
}

.hero-orb-core {
  width: 70px;
  height: 70px;
  display: block;
  overflow: visible;
  filter: blur(0.5px);
  opacity: 0.75;
  transition: opacity 0.4s ease;
}
.hero-orb:hover .hero-orb-core {
  opacity: 1;
}
html[data-theme=dark] .hero-orb-core, .page-dark .hero-orb-core {
  opacity: 0.92;
}
html[data-theme=dark] .hero-orb-core stop:first-child, .page-dark .hero-orb-core stop:first-child {
  stop-opacity: 0.95;
}
html[data-theme=dark] .hero-orb-core stop:last-child, .page-dark .hero-orb-core stop:last-child {
  stop-color: #080d17;
  stop-opacity: 1;
}

.hero-orb-beam {
  position: absolute;
  left: calc(50% - 1.5px);
  top: calc(50% - 75px);
  width: 3px;
  height: 75px;
  background: linear-gradient(to top, rgba(225, 210, 255, 0.92) 0%, rgba(196, 181, 253, 0.55) 40%, rgba(245, 248, 255, 0.65) 100%);
  filter: blur(0.5px);
  border-radius: 50%;
  transform-origin: center bottom;
  animation: beam-pulse var(--dur, 5s) ease-in-out infinite var(--delay, 0s);
}

@keyframes beam-pulse {
  0%, 100% {
    transform: rotate(var(--rot, 0deg)) scaleY(0.25);
    opacity: 0.1;
  }
  28% {
    transform: rotate(calc(var(--rot, 0deg) + 14deg)) scaleY(1.5);
    opacity: 0.85;
  }
  55% {
    transform: rotate(calc(var(--rot, 0deg) - 8deg)) scaleY(0.6);
    opacity: 0.25;
  }
  78% {
    transform: rotate(calc(var(--rot, 0deg) + 5deg)) scaleY(1.1);
    opacity: 0.55;
  }
}
.hero-lotus {
  width: 100%;
  height: auto;
  display: block;
  cursor: pointer;
  animation: lotus-float 5s ease-in-out infinite;
}

@keyframes lotus-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
@keyframes lotus-ripple-1 {
  0%, 100% {
    fill: rgba(162, 125, 248, 0.55);
  }
  15% {
    fill: rgba(162, 125, 248, 0.88);
  }
  35% {
    fill: rgba(162, 125, 248, 0.55);
  }
}
@keyframes lotus-ripple-2 {
  0%, 100% {
    fill: rgba(138, 108, 225, 0.4);
  }
  15% {
    fill: rgba(138, 108, 225, 0.75);
  }
  35% {
    fill: rgba(138, 108, 225, 0.4);
  }
}
@keyframes lotus-ripple-3 {
  0%, 100% {
    fill: rgba(115, 88, 200, 0.28);
  }
  15% {
    fill: rgba(115, 88, 200, 0.62);
  }
  35% {
    fill: rgba(115, 88, 200, 0.28);
  }
}
.lotus-petal {
  stroke: none;
}

.lotus-petal:nth-child(1) {
  animation: lotus-ripple-1 6s ease-in-out infinite 0s;
}

.lotus-petal:nth-child(2) {
  animation: lotus-ripple-2 6s ease-in-out infinite 1.2s;
}

.lotus-petal:nth-child(3) {
  animation: lotus-ripple-2 6s ease-in-out infinite 1.2s;
}

.lotus-petal:nth-child(4) {
  animation: lotus-ripple-3 6s ease-in-out infinite 2.4s;
}

.lotus-petal:nth-child(5) {
  animation: lotus-ripple-3 6s ease-in-out infinite 2.4s;
}

.lotus-stem,
.lotus-node {
  display: none;
}

.lotus-stem {
  stroke: rgba(138, 108, 225, 0.4);
  stroke-width: 1.5;
  stroke-linecap: round;
}

.lotus-node {
  fill: rgba(115, 88, 200, 0.4);
}

.hero-wave {
  width: 100%;
  max-width: 380px;
  height: 50px;
  overflow: hidden;
  margin: 0 auto 1.5rem;
}

.hero-wave-svg {
  width: 200%;
  height: 100%;
  animation: wave-scroll 6s linear infinite;
}

@keyframes wave-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.hero-monogram {
  font-family: "Copernicus", Garamond, Georgia, serif;
  font-size: 2rem;
  font-weight: 400;
  color: rgba(167, 139, 250, 0.5);
  letter-spacing: 0.15em;
  margin: 0 auto 1rem;
  text-align: center;
}

.hero-mark {
  width: 100%;
  height: auto;
  display: block;
  margin: 0;
  pointer-events: none;
}

.lotus-sparks-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-headshot {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  margin: 0 auto 1.5rem;
  display: block;
}

.hero-status {
  display: inline-block;
  padding: 0.3rem 0.85rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 100px;
  border: 1px solid rgba(37, 99, 235, 0.28);
  color: #2563eb;
  background: rgba(37, 99, 235, 0.06);
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}
html[data-theme=dark] .hero-status {
  border-color: rgba(96, 165, 250, 0.35);
  color: #93c5fd;
  background: rgba(37, 99, 235, 0.12);
}

.hero-name {
  font-family: "Copernicus", Garamond, Georgia, serif;
  font-size: clamp(3.5rem, 10vw, 6.5rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  color: #0f172a;
  line-height: 1;
}
html[data-theme=dark] .hero-name {
  color: #e5e7eb;
}

.hero-tagline {
  font-size: 1.25rem;
  color: #475569;
  max-width: 560px;
  margin: 0 auto 2rem;
  line-height: 1.65;
}
html[data-theme=dark] .hero-tagline, .page-dark .hero-tagline {
  color: #9ca3af;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 640px) {
  .hero-cta .btn {
    width: 260px;
    text-align: center;
  }
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  animation: hero-bounce 2.8s ease-in-out infinite;
  color: #475569;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  user-select: none;
}
html[data-theme=dark] .hero-scroll {
  color: #9ca3af;
}

.section {
  padding: 3.5rem 0 4rem;
  margin-top: 0;
  scroll-margin-top: 80px;
  background: #0f172a;
  color: #9ca3af;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.section a:not(.btn) {
  color: #c4b5fd;
}
.section a:not(.btn):hover {
  color: #c4b5fd;
  text-decoration: underline;
}
@media (min-width: 768px) {
  .section {
    padding: 4rem 0 5.5rem;
  }
}

.section:nth-child(odd) {
  background: #1e293b;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.section:nth-child(even) {
  background: #0f172a;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.section .section-title {
  color: #e5e7eb;
}
.section .section-intro {
  color: #9ca3af;
}
.section .section-label {
  color: #93c5fd;
}
.section .writing-row {
  color: #e5e7eb;
}
.section .writing-row:hover {
  color: #e5e7eb;
  text-decoration: none;
}
.section .principle {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}
.section .principle-number {
  color: #a78bfa;
}
.section .principle-title {
  color: #e5e7eb;
}
.section .principle-body {
  color: #9ca3af;
}
.section .arc-step {
  border-color: rgba(167, 139, 250, 0.15);
  background: transparent;
}
.section .arc-step:hover {
  background: rgba(167, 139, 250, 0.06);
  border-color: rgba(167, 139, 250, 0.3);
}
.section .arc-step.active {
  background: rgba(167, 139, 250, 0.1);
  border-color: rgba(167, 139, 250, 0.35);
}
.section .arc-step-num {
  color: #a78bfa;
}
.section .arc-step-title {
  color: #e5e7eb;
}
.section .arc-step-body {
  color: #9ca3af;
}
.section .arc-success-label {
  color: #a78bfa;
}
.section .arc-success-headline {
  color: #e5e7eb;
}
.section .arc-success-body {
  color: #9ca3af;
}
.section .stack-item {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}
.section .stack-item:hover {
  border-color: #a78bfa;
}
.section .stack-logo {
  filter: invert(1);
}
.section .stack-item-name {
  color: #e5e7eb;
}
.section .stack-item-desc {
  color: #9ca3af;
}
.section .featured-project {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}
.section .featured-project-name {
  color: #e5e7eb;
}
.section .featured-project-tagline {
  color: #9ca3af;
}
.section .featured-project-desc {
  color: #9ca3af;
}
.section .featured-project-stats {
  border-color: rgba(255, 255, 255, 0.08);
}
.section .featured-stat-num {
  color: #e5e7eb;
}
.section .featured-stat-label {
  color: #9ca3af;
}
.section .work-card {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}
.section .work-name {
  color: #e5e7eb;
}
.section .work-role {
  color: #9ca3af;
}
.section .work-description p {
  color: #9ca3af;
}
.section .work-card-link {
  color: #93c5fd;
}
.section .work-details h4 {
  color: #9ca3af;
}
.section .work-details li {
  color: #9ca3af;
  border-bottom-color: rgba(255, 255, 255, 0.08);
}
.section .work-details li::before {
  color: #93c5fd;
}
.section .screenshot-main {
  border-color: rgba(255, 255, 255, 0.1);
}
.section .screenshot-thumb.active {
  outline-color: #a78bfa;
}
.section .podcast-callout {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}
.section .podcast-callout:hover {
  border-color: #a78bfa;
}
.section .podcast-callout-eyebrow {
  color: #93c5fd;
}
.section .podcast-callout-title {
  color: #e5e7eb;
}
.section .podcast-callout-desc {
  color: #9ca3af;
}
.section .writing-item {
  border-bottom-color: rgba(255, 255, 255, 0.08);
}
.section .writing-item a {
  color: #e5e7eb;
}
.section .writing-meta {
  color: #9ca3af;
}
.section .elsewhere-label {
  color: #9ca3af;
}
.section .elsewhere-link {
  color: #e5e7eb;
}

.section-label {
  font-family: "Poppins", Helvetica, sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #2563eb;
  margin-bottom: 0.5rem;
}
html[data-theme=dark] .section-label {
  color: #93c5fd;
}

.section-title {
  font-family: "Poppins", Helvetica, sans-serif;
  font-size: 2.25rem;
  font-weight: 500;
  margin-bottom: 1rem;
  line-height: 1.2;
  color: #0f172a;
}
html[data-theme=dark] .section-title {
  color: #e5e7eb;
}

.section-intro {
  font-size: 1.125rem;
  color: #475569;
  max-width: 600px;
  margin-bottom: 2rem;
  line-height: 1.7;
}
html[data-theme=dark] .section-intro {
  color: #9ca3af;
}

.arc-prose p {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: #475569;
}
html[data-theme=dark] .arc-prose p {
  color: #e5e7eb;
}
.arc-prose p:last-child {
  margin-bottom: 0;
}

.work-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 3px;
  padding: 2rem;
  margin-bottom: 1.5rem;
}
.work-card:last-child {
  margin-bottom: 0;
}
html[data-theme=dark] .work-card {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}

.work-card-header {
  margin-bottom: 1rem;
}

.work-name {
  font-family: "Poppins", Helvetica, sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: #0f172a;
}
html[data-theme=dark] .work-name {
  color: #e5e7eb;
}

.work-role {
  font-size: 1.125rem;
  color: #475569;
  font-weight: 400;
  margin-bottom: 0;
}
html[data-theme=dark] .work-role {
  color: #9ca3af;
}

.work-body {
  display: grid;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .work-body {
    grid-template-columns: 1.2fr 1fr;
  }
}

.work-description p {
  line-height: 1.75;
  color: #475569;
}
html[data-theme=dark] .work-description p {
  color: #e5e7eb;
}

.work-details h4 {
  font-family: "Poppins", Helvetica, sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}
.work-details ul {
  list-style: none;
  margin-left: 0;
  margin-bottom: 1rem;
  padding: 0;
}
.work-details li {
  padding: 0.25rem 0 0.25rem 1rem;
  position: relative;
  font-size: 0.875rem;
  color: #475569;
  border-bottom: 1px solid #e2e8f0;
}
.work-details li:last-child {
  border-bottom: none;
}
.work-details li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #2563eb;
}
html[data-theme=dark] .work-details li {
  color: #9ca3af;
  border-bottom-color: rgba(255, 255, 255, 0.08);
}
html[data-theme=dark] .work-details li::before {
  color: #93c5fd;
}

.screenshot-gallery {
  width: 100%;
}

.screenshot-main {
  width: 100%;
  max-height: 320px;
  object-fit: cover;
  object-position: top;
  border-radius: 2px;
  display: block;
  border: 1px solid #e2e8f0;
  margin-bottom: 0.5rem;
  cursor: zoom-in;
}
html[data-theme=dark] .screenshot-main {
  border-color: rgba(255, 255, 255, 0.1);
}

.screenshot-thumbs {
  display: flex;
  gap: 0.5rem;
  padding: 6px;
}

.screenshot-thumb {
  width: 64px;
  height: 48px;
  object-fit: cover;
  object-position: top;
  border-radius: 4px;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s, outline-color 0.2s;
}
.screenshot-thumb:hover {
  opacity: 1;
}
.screenshot-thumb.active {
  opacity: 1;
  outline: 3px solid #9d6bda;
  outline-offset: 2px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
  cursor: zoom-out;
}
.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  cursor: default;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.6;
  padding: 0;
}
.lightbox-close:hover {
  opacity: 1;
}

.work-card-media {
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  .work-card-media {
    margin-bottom: 0;
  }
}

.work-card-screenshot {
  width: 100%;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  display: block;
  object-fit: cover;
  object-position: top;
  max-height: 280px;
}
html[data-theme=dark] .work-card-screenshot {
  border-color: rgba(255, 255, 255, 0.1);
}

@media (min-width: 1024px) {
  .work-card.has-screenshot .work-body {
    grid-template-columns: 2fr 3fr;
    align-items: start;
  }
}

.work-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35em;
  font-size: 0.875rem;
  font-weight: 500;
  color: #2563eb;
  text-decoration: none;
  margin-top: 1rem;
}
.work-card-link::after {
  content: " ↗";
}
.work-card-link:hover {
  text-decoration: underline;
}
html[data-theme=dark] .work-card-link {
  color: #93c5fd;
}

.who-quote {
  margin: 1rem 0 2rem;
  max-width: 680px;
  border: none;
  padding: 0.5rem 0 0.5rem 2rem;
  border-left: 2px solid rgba(167, 139, 250, 0.5);
}
.who-quote p {
  font-family: "Copernicus", Garamond, Georgia, serif;
  font-size: 1.4rem;
  font-weight: 400;
  font-style: italic;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.55;
  margin: 0 0 0.5rem;
}
@media (min-width: 768px) {
  .who-quote p {
    font-size: 1.65rem;
  }
}
.who-quote cite {
  font-family: "Poppins", Helvetica, sans-serif;
  font-size: 0.875rem;
  font-style: normal;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.02em;
}

#who.section {
  padding: 4rem 0 4.5rem;
}
@media (min-width: 768px) {
  #who.section {
    padding: 5rem 0 6rem;
  }
}

.who-layout {
  display: grid;
  gap: 3rem;
  margin-top: 0;
}
@media (min-width: 768px) {
  .who-layout {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.who-svg-wrap {
  width: 100%;
}

.who-svg {
  width: 100%;
  height: auto;
  overflow: visible;
}

.who-circle-group {
  cursor: pointer;
  user-select: none;
}
.who-circle-group:focus {
  outline: none;
}

.who-circle {
  fill: rgba(167, 139, 250, 0.07);
  stroke: rgba(255, 255, 255, 0.18);
  stroke-width: 1;
  transition: none;
}

.who-circle-group[data-domain=science] .who-circle {
  fill: rgba(167, 139, 250, 0.07);
}

.who-circle-group[data-domain=science]:hover .who-circle {
  fill: rgba(124, 92, 191, 0.35);
  stroke: rgba(167, 139, 250, 0.5);
  stroke-width: 1.5;
}

.who-circle-group[data-domain=science].active .who-circle {
  fill: #7c5cbf;
  stroke: #a78bfa;
  stroke-width: 1.5;
  transition: fill 0.25s ease-out, stroke 0.25s ease-out;
}

.who-circle-group[data-domain=product] .who-circle {
  fill: rgba(99, 102, 241, 0.07);
}

.who-circle-group[data-domain=product]:hover .who-circle {
  fill: rgba(67, 70, 168, 0.35);
  stroke: rgba(99, 102, 241, 0.5);
  stroke-width: 1.5;
}

.who-circle-group[data-domain=product].active .who-circle {
  fill: #4346a8;
  stroke: #6366f1;
  stroke-width: 1.5;
  transition: fill 0.25s ease-out, stroke 0.25s ease-out;
}

.who-circle-group[data-domain=ai] .who-circle {
  fill: rgba(139, 92, 246, 0.07);
}

.who-circle-group[data-domain=ai]:hover .who-circle {
  fill: rgba(91, 33, 182, 0.35);
  stroke: rgba(139, 92, 246, 0.5);
  stroke-width: 1.5;
}

.who-circle-group[data-domain=ai].active .who-circle {
  fill: #5b21b6;
  stroke: #8b5cf6;
  stroke-width: 1.5;
  transition: fill 0.25s ease-out, stroke 0.25s ease-out;
}

.who-circle-label {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 500;
  fill: rgba(255, 255, 255, 0.5);
  transition: fill 0.25s ease;
  pointer-events: none;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.who-circle-group:hover .who-circle-label {
  fill: rgba(255, 255, 255, 0.65);
}
.who-circle-group.active .who-circle-label {
  fill: rgba(167, 139, 250, 0.9);
}

.who-callout {
  fill: none;
  stroke: rgba(255, 255, 255, 0.2);
  stroke-width: 1;
  stroke-dasharray: 3 4;
  pointer-events: none;
  transition: stroke 0.25s ease;
}
.who-circle-group:hover .who-callout {
  stroke: rgba(255, 255, 255, 0.45);
}
.who-circle-group.active .who-callout {
  stroke: rgba(167, 139, 250, 0.6);
}

.who-callout-label {
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: 600;
  fill: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  pointer-events: none;
  transition: fill 0.25s ease;
}
.who-circle-group:hover .who-callout-label {
  fill: rgba(255, 255, 255, 0.7);
}

.who-circle-group[data-domain=science].active .who-callout-label {
  fill: #a78bfa;
}

.who-circle-group[data-domain=product].active .who-callout-label {
  fill: #6366f1;
}

.who-circle-group[data-domain=ai].active .who-callout-label {
  fill: #8b5cf6;
}

.who-desc-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.who-desc {
  display: none;
  min-height: 160px;
  flex-direction: column;
  gap: 1rem;
}
.who-desc.active {
  display: flex;
}

.who-desc-name {
  font-family: "Poppins", Helvetica, sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

.who-desc-body {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin: 0;
}

.who-desc-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.who-desc-points li {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
  padding-left: 1rem;
  position: relative;
}
.who-desc-points li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: rgba(167, 139, 250, 0.5);
}

.stack-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .stack-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .stack-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.stack-item {
  display: block;
  text-decoration: none;
  outline: none;
  color: inherit;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 3px;
  padding: 1rem;
  transition: border-color 0.2s, transform 0.2s;
}
.stack-item, .stack-item * {
  text-decoration: none !important;
}
.stack-item:focus, .stack-item:focus-visible {
  outline: none;
}
.stack-item:hover {
  border-color: #a78bfa;
  transform: translateY(-2px);
}
html[data-theme=dark] .stack-item {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}
html[data-theme=dark] .stack-item:hover {
  border-color: #a78bfa;
}

.stack-item-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.stack-item-icon--text {
  font-size: 1.75rem;
  line-height: 1;
}

.stack-logo {
  width: 32px;
  height: 32px;
  object-fit: contain;
}
html[data-theme=dark] .stack-logo {
  filter: invert(1);
}

.stack-item-name {
  font-family: "Poppins", Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #0f172a;
  margin-bottom: 0.25rem;
}
html[data-theme=dark] .stack-item-name {
  color: #e5e7eb;
}

.stack-item-desc {
  font-size: 0.875rem;
  color: #475569;
  line-height: 1.55;
  margin: 0;
}
html[data-theme=dark] .stack-item-desc {
  color: #9ca3af;
}

.principles-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .principles-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.principle {
  padding: 1.5rem;
  border: 1px solid #e2e8f0;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.85);
}
html[data-theme=dark] .principle {
  border-color: #374151;
  background: rgba(255, 255, 255, 0.05);
}

.principle-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='8 8 28 28'%3E%3Cpath d='M 44 0 C 44 22 22 44 0 44 C 0 22 22 0 44 0' fill='none' stroke='%237c3aed' stroke-width='1.5' stroke-opacity='0.5'/%3E%3C/svg%3E") center/contain no-repeat;
  color: #7c3aed;
  font-family: "Poppins", Helvetica, sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  flex-shrink: 0;
}
html[data-theme=dark] .principle-number {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='8 8 28 28'%3E%3Cpath d='M 44 0 C 44 22 22 44 0 44 C 0 22 22 0 44 0' fill='none' stroke='%23a78bfa' stroke-width='1.5' stroke-opacity='0.55'/%3E%3C/svg%3E");
  color: #a78bfa;
}

.principle-title {
  font-family: "Poppins", Helvetica, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.5rem;
}
html[data-theme=dark] .principle-title {
  color: #e5e7eb;
}

.principle-body {
  font-size: 1rem;
  line-height: 1.7;
  color: #475569;
  margin: 0;
}
html[data-theme=dark] .principle-body {
  color: #9ca3af;
}

.writing-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.writing-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.writing-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.writing-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 0;
  text-decoration: none !important;
  cursor: pointer;
}
.writing-row:hover {
  text-decoration: none !important;
}

.writing-title {
  display: block;
  font-family: "Poppins", Helvetica, sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  color: #e5e7eb;
  transition: color 0.2s ease;
}
.writing-row:hover .writing-title {
  color: #fff;
}

.writing-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  margin-top: 2px;
  fill: #a78bfa;
  transition: fill 0.2s ease;
}
.writing-row:hover .writing-icon {
  fill: #c4b5fd;
}

.writing-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.25rem;
  margin-bottom: 0;
  line-height: 1.5;
  transition: color 0.2s ease;
}
.writing-row:hover .writing-subtitle {
  color: rgba(255, 255, 255, 0.75);
}

.writing-date {
  font-size: 0.875rem;
  color: #9ca3af;
  margin-top: 0.25rem;
  margin-bottom: 0;
}

.elsewhere-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.elsewhere-item {
  display: flex;
  align-items: baseline;
  gap: 1rem;
}

.elsewhere-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  min-width: 100px;
}
html[data-theme=dark] .elsewhere-label {
  color: #9ca3af;
}

.elsewhere-link {
  font-size: 1.125rem;
}

.hero-proof {
  position: absolute;
  bottom: 118px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  font-family: "Poppins", Helvetica, sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  color: #475569;
  letter-spacing: 0.01em;
  z-index: 2;
}
.hero-proof .sep {
  padding: 0 0.4rem;
  opacity: 0.4;
}
html[data-theme=dark] .hero-proof {
  color: #9ca3af;
}

.arc-interactive {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .arc-interactive {
    grid-template-columns: 1fr 1.8fr;
    gap: 3rem;
    align-items: start;
  }
}

.arc-steps {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.arc-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 0.85rem 1rem;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  border: 1px solid rgba(124, 58, 237, 0.15);
  background: rgba(255, 255, 255, 0.5);
  user-select: none;
}
.arc-step:hover {
  background: rgba(124, 58, 237, 0.04);
  border-color: rgba(124, 58, 237, 0.3);
}
.arc-step.active {
  background: rgba(124, 58, 237, 0.12);
  border-color: rgba(124, 58, 237, 0.55);
}
html[data-theme=dark] .arc-step {
  border-color: rgba(167, 139, 250, 0.15);
}
html[data-theme=dark] .arc-step:hover {
  background: rgba(167, 139, 250, 0.06);
  border-color: rgba(167, 139, 250, 0.3);
}
html[data-theme=dark] .arc-step.active {
  background: rgba(167, 139, 250, 0.1);
  border-color: rgba(167, 139, 250, 0.35);
}

.arc-step-num {
  font-family: "SF Mono", "Fira Code", ui-monospace, monospace;
  font-size: 0.875rem;
  font-weight: 600;
  color: #7c3aed;
  min-width: 22px;
  padding-top: 2px;
  flex-shrink: 0;
}
html[data-theme=dark] .arc-step-num {
  color: #a78bfa;
}

.arc-step-info {
  flex: 1;
}

.arc-step-title {
  font-family: "Poppins", Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #0f172a;
  margin-bottom: 0.2rem;
}
html[data-theme=dark] .arc-step-title {
  color: #e5e7eb;
}

.arc-step-body {
  font-size: 0.875rem;
  color: #475569;
  line-height: 1.5;
}
html[data-theme=dark] .arc-step-body {
  color: #9ca3af;
}

.arc-success-pane {
  position: relative;
  min-height: 280px;
}

.arc-success-panel {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.arc-success-panel.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.arc-success-label {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #7c3aed;
  margin-bottom: 0.5rem;
}
html[data-theme=dark] .arc-success-label {
  color: #a78bfa;
}

.arc-success-headline {
  font-family: "Copernicus", Garamond, Georgia, serif;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 400;
  color: #0f172a;
  line-height: 1.35;
  margin-bottom: 1rem;
}
html[data-theme=dark] .arc-success-headline {
  color: #e5e7eb;
}

.arc-success-body {
  font-size: 1rem;
  color: #475569;
  line-height: 1.75;
  margin: 0;
}
html[data-theme=dark] .arc-success-body {
  color: #9ca3af;
}

.featured-project {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 3px;
  padding: 2rem;
  max-width: 720px;
}
html[data-theme=dark] .featured-project {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}

.featured-project-meta {
  margin-bottom: 1.5rem;
}

.featured-project-name {
  font-family: "Poppins", Helvetica, sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.25rem;
}
html[data-theme=dark] .featured-project-name {
  color: #e5e7eb;
}

.featured-project-tagline {
  font-size: 1rem;
  color: #475569;
  margin: 0;
}
html[data-theme=dark] .featured-project-tagline {
  color: #9ca3af;
}

.featured-project-desc {
  font-size: 1.125rem;
  line-height: 1.75;
  color: #475569;
  margin-bottom: 2rem;
}
html[data-theme=dark] .featured-project-desc {
  color: #9ca3af;
}

.featured-project-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  padding: 1.5rem 0;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}
html[data-theme=dark] .featured-project-stats {
  border-color: rgba(255, 255, 255, 0.08);
}

.featured-stat {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.featured-stat-num {
  font-family: "SF Mono", "Fira Code", ui-monospace, monospace;
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1;
}
html[data-theme=dark] .featured-stat-num {
  color: #e5e7eb;
}

.featured-stat-label {
  font-size: 0.875rem;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}
html[data-theme=dark] .featured-stat-label {
  color: #9ca3af;
}

.habitual-apps-list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-top: 2rem;
}

.habitual-app {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.habitual-app:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.habitual-app-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.habitual-app-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  flex-shrink: 0;
  object-fit: contain;
}
.habitual-app-icon--svg {
  background: rgba(52, 211, 153, 0.12);
  padding: 8px;
}

.habitual-app-name {
  font-family: "Copernicus", Garamond, Georgia, serif;
  font-size: 1.5rem;
  color: #e5e7eb;
  margin: 0 0 0.2rem;
}

.habitual-app-role {
  font-family: "Poppins", Helvetica, sans-serif;
  font-size: 0.875rem;
  color: rgba(167, 139, 250, 0.75);
  font-weight: 500;
  margin: 0;
}

.habitual-app-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.case-study-hero {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 0 4rem;
  background: linear-gradient(#EBEDFD, #FDFCF3 70%, #B5DAFF);
}
html[data-theme=dark] .case-study-hero {
  background: linear-gradient(to bottom, #1a1030, #0d0d18);
}
.page-dark .case-study-hero {
  background: linear-gradient(to bottom, #080d17, #1a1030);
  min-height: 80dvh;
  padding: 9rem 0 4rem;
}
.case-study-hero .case-study-lotus {
  display: block;
  width: clamp(312px, 47vw, 468px);
  margin: 4rem auto 2rem;
}
@media (min-width: 768px) {
  .case-study-hero .case-study-lotus {
    margin-top: 0;
  }
}
.case-study-hero .case-study-logo {
  display: block;
  max-height: 72px;
  max-width: 260px;
  width: auto;
  object-fit: contain;
  margin: 2rem 0 2rem;
}

.case-study-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #475569;
  text-decoration: none;
  margin-bottom: 2rem;
  transition: color 0.2s;
}
.case-study-back:hover {
  color: #2563eb;
  text-decoration: none;
}
html[data-theme=dark] .case-study-back, .page-dark .case-study-back {
  color: #9ca3af;
}
html[data-theme=dark] .case-study-back:hover, .page-dark .case-study-back:hover {
  color: #a78bfa;
}

.case-study-title {
  font-family: "Copernicus", Garamond, Georgia, serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 400;
  color: #0f172a;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 1rem;
}
html[data-theme=dark] .case-study-title, .page-dark .case-study-title {
  color: #e5e7eb;
}

.case-study-subtitle {
  font-size: 1.25rem;
  color: #475569;
  line-height: 1.65;
  max-width: 600px;
  margin-bottom: 2rem;
}
html[data-theme=dark] .case-study-subtitle, .page-dark .case-study-subtitle {
  color: #9ca3af;
}

.case-study-stats {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  padding: 2rem 0;
  border-top: 1px solid #e2e8f0;
}
html[data-theme=dark] .case-study-stats {
  border-color: #374151;
}

.case-study-body {
  max-width: 680px;
}
.case-study-body h2 {
  font-family: "Poppins", Helvetica, sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #0f172a;
  margin-top: 5rem;
  margin-bottom: 1rem;
}
html[data-theme=dark] .case-study-body h2 {
  color: #e5e7eb;
}
.case-study-body h3 {
  font-family: "Poppins", Helvetica, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #0f172a;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}
html[data-theme=dark] .case-study-body h3 {
  color: #e5e7eb;
}
.case-study-body p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 1.5rem;
}
html[data-theme=dark] .case-study-body p {
  color: #9ca3af;
}
.case-study-body ul {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}
.case-study-body ul li {
  font-size: 1.125rem;
  line-height: 1.75;
  color: #475569;
  margin-bottom: 0.5rem;
}
html[data-theme=dark] .case-study-body ul li {
  color: #9ca3af;
}

.case-study-prose {
  max-width: 680px;
}
.case-study-prose p {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.case-study-prose ul {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}
.case-study-prose ul li {
  font-size: 1.125rem;
  line-height: 1.75;
  margin-bottom: 0.5rem;
}
.case-study-prose strong {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
}

.case-study-callout {
  background: rgba(124, 58, 237, 0.06);
  border-left: 3px solid #7c3aed;
  border-radius: 0 8px 8px 0;
  padding: 1.5rem 2rem;
  margin: 2rem 0;
}
.case-study-callout p {
  margin: 0;
  font-style: italic;
}
html[data-theme=dark] .case-study-callout {
  background: rgba(124, 58, 237, 0.1);
  border-left-color: #a78bfa;
}
.section .case-study-callout {
  background: rgba(124, 58, 237, 0.12);
  border-left-color: #a78bfa;
}
.section .case-study-callout p {
  color: rgba(255, 255, 255, 0.8);
}

.case-study-footer {
  padding: 5rem 0;
  border-top: 1px solid #e2e8f0;
  margin-top: 5rem;
}
html[data-theme=dark] .case-study-footer {
  border-color: #374151;
}

.podcast-callout {
  display: block;
  text-decoration: none;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 3px;
  padding: 2rem;
  margin-bottom: 2rem;
  transition: border-color 0.2s;
}
.podcast-callout:hover {
  border-color: #2563eb;
  text-decoration: none;
}
html[data-theme=dark] .podcast-callout {
  background: rgba(255, 255, 255, 0.04);
  border-color: #374151;
}
html[data-theme=dark] .podcast-callout:hover {
  border-color: #93c5fd;
}

.podcast-callout-eyebrow {
  font-size: 0.875rem;
  font-weight: 600;
  color: #2563eb;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}
html[data-theme=dark] .podcast-callout-eyebrow {
  color: #93c5fd;
}

.podcast-callout-title {
  font-family: "Poppins", Helvetica, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #0f172a;
  display: block;
  margin-bottom: 0.5rem;
}
html[data-theme=dark] .podcast-callout-title {
  color: #e5e7eb;
}

.podcast-callout-desc {
  font-size: 1rem;
  color: #475569;
  line-height: 1.65;
  margin: 0;
}
html[data-theme=dark] .podcast-callout-desc {
  color: #9ca3af;
}

.agents-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .agents-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.agent-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  text-decoration: none !important;
  transition: border-color 0.2s, transform 0.2s, background 0.2s;
}
.agent-card:hover, .agent-card:active, .agent-card:focus {
  text-decoration: none !important;
  border-color: rgba(167, 139, 250, 0.45);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
}

.agent-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.agent-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  flex-shrink: 0;
  object-fit: contain;
}
.agent-card-icon--svg {
  background: rgba(52, 211, 153, 0.12);
  padding: 6px;
}

.agent-card-name {
  font-family: "Copernicus", Garamond, Georgia, serif;
  font-size: 1.25rem;
  color: #e5e7eb;
  margin: 0 0 0.1rem;
  line-height: 1.2;
}

.agent-card-tagline {
  font-family: "Poppins", Helvetica, sans-serif;
  font-size: 0.875rem;
  color: rgba(167, 139, 250, 0.75);
  margin: 0;
  font-weight: 500;
}

.agent-card-desc {
  font-size: 0.875rem;
  color: #9ca3af;
  line-height: 1.65;
  margin: 0;
  flex: 1;
}

.agent-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: auto;
}

.agent-tag {
  font-family: "Poppins", Helvetica, sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  color: rgba(196, 181, 253, 0.75);
  background: rgba(167, 139, 250, 0.08);
  border: 1px solid rgba(167, 139, 250, 0.18);
  border-radius: 100px;
  padding: 0.2rem 0.65rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.cs-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 2rem;
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.cs-nav a {
  font-family: "Poppins", Helvetica, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.2s;
}
.cs-nav a:hover {
  color: #e5e7eb;
  text-decoration: none;
}

.cs-nav-prev:hover,
.cs-nav-next:hover {
  color: rgba(167, 139, 250, 0.9) !important;
}

.cs-nav-home {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.4;
}
.cs-nav-home:hover {
  opacity: 1;
}

.case-cards-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.case-card {
  display: grid;
  grid-template-columns: 1fr;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.2s, background 0.2s;
  text-decoration: none;
  cursor: pointer;
}
@media (min-width: 768px) {
  .case-card {
    grid-template-columns: 2fr 3fr;
  }
}
.case-card, .case-card:hover, .case-card:focus, .case-card:hover * {
  text-decoration: none !important;
}
.case-card:hover {
  border-color: rgba(167, 139, 250, 0.3);
  background: rgba(255, 255, 255, 0.05);
}

.case-card-media {
  background: rgba(0, 0, 0, 0.25);
  height: 220px;
}
@media (min-width: 768px) {
  .case-card-media {
    height: 100%;
  }
}
.case-card-media .case-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}

.case-card-pattern {
  background-color: #080d17;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 22px 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
}

.case-card-wordmark {
  font-family: "Poppins", Helvetica, sans-serif;
  font-size: 2.2rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: -0.01em;
}

.case-card-logo {
  max-width: 75%;
  max-height: 64px;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}
.case-card-logo--sm {
  max-width: 55%;
  max-height: 44px;
}

.case-card-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.case-card-company {
  font-family: "Copernicus", Garamond, Georgia, serif;
  font-size: 1.5rem;
  color: #e5e7eb;
  margin: 0 0 0.15rem;
  line-height: 1.2;
  text-decoration: none;
}
.case-card:hover .case-card-company {
  text-decoration: none;
}

.case-card-role {
  font-family: "Poppins", Helvetica, sans-serif;
  font-size: 0.875rem;
  color: rgba(167, 139, 250, 0.75);
  margin: 0;
  font-weight: 500;
}

.case-card-stats {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.case-card-stat {
  display: flex;
  flex-direction: column;
}

.case-card-stat-num {
  font-family: "Copernicus", Garamond, Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: #e5e7eb;
  line-height: 1.1;
}

.case-card-stat-label {
  font-size: 0.65rem;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 600;
}

.case-card-desc {
  font-size: 0.875rem;
  color: #9ca3af;
  line-height: 1.65;
  margin: 0;
  flex: 1;
}

.case-card-cta {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(167, 139, 250, 0.85);
  margin-top: auto;
}

.signal-widget {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .signal-widget {
    grid-template-columns: 260px 1fr;
    align-items: start;
  }
}

.signal-panel--left {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.signal-panel--right {
  display: flex;
  flex-direction: column;
}

.signal-prompt {
  font-family: "Poppins", Helvetica, sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 1rem;
}
html[data-theme=dark] .signal-prompt {
  color: #e5e7eb;
}

.signal-personas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 1rem 0.25rem;
  margin: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.09) 0%, rgba(255, 255, 255, 0.025) 35%, rgba(255, 255, 255, 0.025) 65%, rgba(255, 255, 255, 0.09) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.signal-persona-btn {
  flex-shrink: 0;
  font-family: "Poppins", Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #0f172a;
  background: transparent;
  border: 1.5px solid #e2e8f0;
  border-radius: 100px;
  padding: 0.7rem 1.6rem;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}
.signal-persona-btn:hover, .signal-persona-btn.is-active {
  border-color: #2563eb;
  background: rgba(37, 99, 235, 0.06);
  color: #2563eb;
}
.signal-persona-btn.is-active {
  font-weight: 600;
}
html[data-theme=dark] .signal-persona-btn {
  color: #e5e7eb;
  border-color: rgba(255, 255, 255, 0.15);
}
html[data-theme=dark] .signal-persona-btn:hover, html[data-theme=dark] .signal-persona-btn.is-active {
  border-color: #a78bfa;
  background: rgba(167, 139, 250, 0.1);
  color: #a78bfa;
}

.signal-messages {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 280px;
  max-height: 480px;
  overflow-y: auto;
}

.signal-empty {
  font-size: 0.875rem;
  color: rgba(71, 85, 105, 0.5);
  font-style: italic;
  margin: auto;
  text-align: center;
}
html[data-theme=dark] .signal-empty {
  color: rgba(156, 163, 175, 0.4);
}

.signal-message {
  max-width: 88%;
  font-size: 1rem;
  line-height: 1.6;
}
.signal-message--user {
  align-self: flex-end;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  padding: 0.6rem 1rem;
  border-radius: 18px 18px 4px 18px;
}
.signal-message--assistant {
  align-self: flex-start;
  color: rgba(255, 255, 255, 0.82);
  padding: 0 0 0 1rem;
  border-left: 2px solid rgba(167, 139, 250, 0.5);
}
.signal-message--thinking {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0.25rem 0 0.25rem 1rem;
  border-left: 2px solid rgba(167, 139, 250, 0.5);
}
.signal-message--thinking span {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(167, 139, 250, 0.6);
  animation: signal-dot 1.2s infinite ease-in-out;
}
.signal-message--thinking span:nth-child(2) {
  animation-delay: 0.2s;
}
.signal-message--thinking span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes signal-dot {
  0%, 80%, 100% {
    transform: scale(0.7);
    opacity: 0.4;
  }
  40% {
    transform: scale(1);
    opacity: 1;
  }
}
.signal-overlap {
  align-self: flex-start;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(37, 99, 235, 0.06);
  border: 1.5px solid rgba(37, 99, 235, 0.2);
  border-radius: 10px;
  padding: 1rem;
  max-width: 85%;
}
html[data-theme=dark] .signal-overlap {
  background: rgba(167, 139, 250, 0.08);
  border-color: rgba(167, 139, 250, 0.25);
}

.signal-overlap-score {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.signal-overlap-label {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #2563eb;
}
html[data-theme=dark] .signal-overlap-label {
  color: #a78bfa;
}

.signal-overlap-value {
  font-family: "Copernicus", Garamond, Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: #2563eb;
  line-height: 1;
}
html[data-theme=dark] .signal-overlap-value {
  color: #a78bfa;
}

.signal-overlap-denom {
  font-size: 0.9rem;
  font-weight: 400;
  opacity: 0.6;
}

.signal-overlap-reason {
  font-size: 0.875rem;
  color: #475569;
  line-height: 1.55;
  margin: 0;
}
html[data-theme=dark] .signal-overlap-reason {
  color: #9ca3af;
}

.signal-form {
  display: flex;
  gap: 0.5rem;
}

.signal-input {
  flex: 1;
  font-family: "Poppins", Helvetica, sans-serif;
  font-size: 1rem;
  color: #475569;
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  padding: 0.65rem 1rem;
  outline: none;
  transition: border-color 0.15s;
}
.signal-input:focus {
  border-color: #2563eb;
}
.signal-input::placeholder {
  color: rgba(71, 85, 105, 0.5);
}
.signal-input:disabled {
  opacity: 0.5;
}
html[data-theme=dark] .signal-input {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
  color: #9ca3af;
}
html[data-theme=dark] .signal-input:focus {
  border-color: #a78bfa;
}

.signal-send {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  background: #2563eb;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: opacity 0.15s;
}
.signal-send:hover {
  opacity: 0.85;
}
.signal-send:disabled {
  opacity: 0.4;
  cursor: default;
}

.signal-footer-icon {
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
  object-fit: contain;
  display: block;
}

a:has(.signal-footer-icon) {
  display: block;
  flex-shrink: 0;
  transition: filter 0.2s ease;
}
a:has(.signal-footer-icon):hover {
  filter: drop-shadow(0 0 7px rgba(180, 160, 255, 0.55));
}

.signal-rule {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin: 0;
}

.signal-footer {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #475569;
  margin: 1rem 0 0;
  padding-right: 2rem;
}
.signal-footer a {
  color: #2563eb;
}
html[data-theme=dark] .signal-footer {
  color: #9ca3af;
}
html[data-theme=dark] .signal-footer a {
  color: #a78bfa;
}

.signal-layout {
  display: grid;
  gap: 0rem 2rem;
}
@media (min-width: 768px) {
  .signal-layout {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
  }
}

.signal-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.signal-left .section-intro {
  margin-bottom: 1.5rem;
}

.signal-card-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
@media (min-width: 768px) {
  .signal-card-top {
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
  }
}

.signal-orb-col {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background: transparent;
  border-top: 1px solid rgba(196, 181, 253, 0.2);
  border-bottom: 1px solid rgba(196, 181, 253, 0.2);
  border-radius: 0;
  padding: 2rem 2rem 2rem;
  cursor: pointer;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .signal-orb-col {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(196, 181, 253, 0.2);
    border-radius: 16px;
    margin-bottom: 0rem;
  }
}
.signal-orb-col:hover .signal-ring circle {
  stroke: #b794f4;
}

.signal-cta-btn {
  align-self: flex-start;
}

.signal-cta-desktop {
  display: none;
}
@media (min-width: 768px) {
  .signal-cta-desktop {
    display: inline-flex;
  }
}

@media (min-width: 768px) {
  .signal-cta-mobile {
    display: none;
  }
}

.signal-cta-label {
  font-family: "Poppins", Helvetica, sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 0.5rem;
  align-self: flex-start;
}

.signal-col-title {
  font-family: "Poppins", Helvetica, sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

.signal-preview {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(167, 139, 250, 0.2);
  border-radius: 12px;
  padding: 2rem;
}

.signal-preview-intro {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
  margin-bottom: 0;
}

@keyframes orb-float {
  0%, 100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -7px;
  }
}
@keyframes orb-enter {
  0% {
    scale: 0.75;
    opacity: 0;
  }
  65% {
    scale: 1.08;
    opacity: 1;
  }
  100% {
    scale: 1;
    opacity: 1;
  }
}
@keyframes orb-pulse {
  0% {
    scale: 1;
  }
  40% {
    scale: 1.08;
  }
  100% {
    scale: 1;
  }
}
.signal-orb-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  opacity: 1;
}
@media (min-width: 768px) {
  .signal-orb-wrap {
    margin-top: -0.75rem;
    margin-bottom: 0;
  }
}
.signal-orb-wrap.is-visible {
  animation: orb-float 3.5s ease-in-out 0.6s infinite;
}

.signal-orb-col:hover .signal-orb-wrap.is-visible {
  animation-play-state: paused;
}

.signal-ring-wrap {
  position: relative;
  width: 150px;
  height: 150px;
  flex-shrink: 0;
}
.signal-orb-wrap:not(.is-visible) .signal-ring-wrap {
  scale: 0;
  opacity: 0;
}
.signal-orb-wrap.is-visible .signal-ring-wrap {
  animation: orb-enter 0.5s ease-out forwards;
}
.signal-orb-col:hover .signal-orb-wrap.is-visible .signal-ring-wrap {
  animation: orb-pulse 0.4s ease-out 1 forwards;
}

.signal-beam {
  position: absolute;
  left: calc(50% - 1px);
  top: calc(50% - 95px);
  width: 2px;
  height: 95px;
  background: linear-gradient(to top, rgba(196, 181, 253, 0.72) 0%, rgba(196, 181, 253, 0.28) 55%, rgba(245, 248, 255, 0) 100%);
  transform-origin: center bottom;
  transform: rotate(var(--rot));
  animation: beam-pulse var(--dur, 5s) ease-in-out infinite var(--delay, 0s);
  filter: blur(0.5px);
}

.signal-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 150px;
  z-index: 1;
}
.signal-ring circle {
  transition: stroke 0.5s ease;
}

.signal-orb-label {
  font-size: 0.7rem;
  color: rgba(196, 181, 253, 0.45);
  letter-spacing: 0.18em;
  margin-top: 0.5rem;
  margin-bottom: 0;
  font-family: "Poppins", Helvetica, sans-serif;
  width: 9em;
  text-align: left;
  align-self: flex-start;
}

.signal-ring-question {
  font-family: "Copernicus", Garamond, Georgia, serif;
  font-size: 52px;
  font-weight: 400;
  fill: rgba(255, 255, 255, 0.92);
}

.signal-score-label {
  display: inline-block;
  font-family: "Poppins", Helvetica, sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(196, 181, 253, 0.55);
  border: 1px solid rgba(196, 181, 253, 0.25);
  border-radius: 100px;
  padding: 0.2rem 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: #0f172a;
  margin-top: -52px;
  position: relative;
  z-index: 2;
}

.signal-preview-eyebrow {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #a78bfa;
  margin: 0;
  text-align: center;
}

.signal-preview-score-wrap {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
  margin-bottom: 1.5rem;
}

.signal-preview-num {
  font-family: "Copernicus", Garamond, Georgia, serif;
  font-size: 4.5rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1;
}

.signal-preview-denom {
  font-family: "Poppins", Helvetica, sans-serif;
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.35);
}

.signal-preview-certainty {
  margin-bottom: 1.5rem;
}
@media (max-width: 767px) {
  .signal-preview-certainty {
    display: none;
  }
}

.signal-preview-certainty-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 0.25rem;
}

.signal-preview-bar {
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  overflow: hidden;
}

.signal-preview-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(to right, #7c3aed, #a78bfa);
  border-radius: 2px;
  transition: width 0.6s ease;
}

.signal-preview-lines {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.signal-preview-line {
  height: 10px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 3px;
}
.signal-preview-line--short {
  width: 60%;
}

.signal-preview-hint {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.25);
  font-style: italic;
  text-align: center;
  margin: 0;
}

.signal-preview-comment {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  font-style: italic;
  border-left: 2px solid rgba(167, 139, 250, 0.4);
  padding-left: 1rem;
  margin: 0;
}
@media (max-width: 767px) {
  .signal-preview-comment {
    display: none;
  }
}

.signal-sample {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
}

.signal-sample-circle {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(124, 58, 237, 0.15);
  border: 2px solid rgba(196, 181, 253, 0.45);
}

.signal-sample-number {
  font-family: "Copernicus", Garamond, Georgia, serif;
  font-size: 2rem;
  font-weight: 400;
  color: #c4b5fd;
  line-height: 1;
}

.signal-sample-denom {
  font-family: "Poppins", Helvetica, sans-serif;
  font-size: 0.65rem;
  color: rgba(196, 181, 253, 0.5);
  padding-bottom: 4px;
}

.signal-sample-bars {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.signal-sample-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.signal-sample-dim {
  font-family: "Poppins", Helvetica, sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.45);
  width: 76px;
  flex-shrink: 0;
  text-align: right;
}

.signal-sample-score {
  width: 32px;
  flex-shrink: 0;
  font-family: "Poppins", Helvetica, sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  text-align: left;
}

.signal-sample-track {
  flex: 1;
  height: 10px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 5px;
  overflow: hidden;
}

.signal-sample-fill {
  height: 100%;
  width: 0;
  border-radius: 5px;
  transition: width 0.8s ease;
}

.signal-sample-row:nth-child(1) .signal-sample-fill {
  background: rgba(5, 150, 105, 0.6);
}

.signal-sample-row:nth-child(2) .signal-sample-fill {
  background: #059669;
}

.signal-sample-row:nth-child(3) .signal-sample-fill {
  background: rgba(5, 150, 105, 0.3);
}

.signal-orb-wrap.is-visible ~ .signal-sample-bars .signal-sample-row:nth-child(1) .signal-sample-fill {
  width: 82%;
  transition-delay: 0.1s;
}
.signal-orb-wrap.is-visible ~ .signal-sample-bars .signal-sample-row:nth-child(2) .signal-sample-fill {
  width: 88%;
  transition-delay: 0.3s;
}
.signal-orb-wrap.is-visible ~ .signal-sample-bars .signal-sample-row:nth-child(3) .signal-sample-fill {
  width: 74%;
  transition-delay: 0.5s;
}

.signal-sample-label {
  font-family: "Poppins", Helvetica, sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 1rem;
  text-align: center;
}

.signal-card-rule {
  width: 100%;
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin: 0.5rem 0;
}

#signal.section {
  padding: 6rem 0 7rem;
  box-shadow: inset 0 24px 48px -8px rgba(0, 0, 0, 0.8), inset 0 -24px 48px -8px rgba(0, 0, 0, 0.8);
}
@media (min-width: 768px) {
  #signal.section {
    padding: 8rem 0 9rem;
  }
}

.section .signal-prompt {
  color: #e5e7eb;
}
.section .signal-message--assistant {
  color: #9ca3af;
}
.section .signal-overlap-reason {
  color: #9ca3af;
}
.section .signal-footer {
  color: #9ca3af;
}
.section .signal-footer a {
  color: #a78bfa;
}
.section .signal-empty {
  color: rgba(255, 255, 255, 0.3);
}
.section .signal-persona-btn {
  color: rgba(255, 255, 255, 0.85);
  border-color: rgba(255, 255, 255, 0.2);
}
.section .signal-persona-btn:hover, .section .signal-persona-btn.is-active {
  border-color: #a78bfa;
  background: rgba(167, 139, 250, 0.15);
  color: #a78bfa;
}
.section .signal-input {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.85);
}
.section .signal-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.section .signal-input:focus {
  border-color: #a78bfa;
}

.bg-hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 768px) {
  .bg-hero-split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .bg-hero-content {
    order: 2;
  }
}

.bg-hero-photo {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .bg-hero-photo {
    order: 1;
  }
}

.bg-headshot {
  display: block;
  width: 100%;
  max-width: 480px;
  height: auto;
  aspect-ratio: 2/3;
  object-fit: cover;
  object-position: top center;
  mask-image: radial-gradient(ellipse 88% 82% at 52% 42%, black 38%, transparent 76%);
  -webkit-mask-image: radial-gradient(ellipse 88% 82% at 52% 42%, black 38%, transparent 76%);
}
@media (max-width: 768px) {
  .bg-headshot {
    max-width: clamp(200px, 60vw, 320px);
    aspect-ratio: 1/1;
    object-position: top center;
    mask-image: radial-gradient(ellipse 90% 90% at 50% 40%, black 50%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 90% 90% at 50% 40%, black 50%, transparent 80%);
  }
}

.bg-hero-fullbg {
  position: relative;
  overflow: hidden;
}

.bg-fullbg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  pointer-events: none;
}

.page-dark .case-study-hero.bg-hero--conf {
  background-image: linear-gradient(to right, rgba(8, 13, 23, 0.92) 0%, rgba(8, 13, 23, 0.75) 40%, rgba(8, 13, 23, 0) 65%), url("/assets/img/erik-wwl-merging-flip.jpg");
  background-size: cover;
  background-position: center top;
}
.page-dark .case-study-hero.bg-hero--conf .case-study-title,
.page-dark .case-study-hero.bg-hero--conf .case-study-subtitle {
  text-shadow: 0 0 20px #080d17, 0 0 20px #080d17, 0 0 40px rgba(8, 13, 23, 0.8);
}

.agentic-app-label {
  font-family: "Poppins", Helvetica, sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(167, 139, 250, 0.85);
  margin-bottom: 0.25rem;
}

.agentic-app-link {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: rgba(167, 139, 250, 0.75);
  text-decoration: none;
  transition: color 0.2s;
}
.agentic-app-link:hover {
  color: rgb(167, 139, 250);
  text-decoration: none;
}

.page-dark .case-study-hero.bg-hero--agentic {
  background-image: linear-gradient(to bottom, rgba(8, 13, 23, 0.55) 0%, rgba(8, 13, 23, 0) 40%, rgba(8, 13, 23, 0.75) 100%), url("/assets/img/habitual-space-flight.png");
  background-size: cover;
  background-position: center center;
}
.page-dark .case-study-hero.bg-hero--agentic .case-study-title,
.page-dark .case-study-hero.bg-hero--agentic .case-study-subtitle {
  text-shadow: 0 0 20px #080d17, 0 0 20px #080d17, 0 0 40px rgba(8, 13, 23, 0.8);
}

.process-flow {
  display: flex;
  align-items: center;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .process-flow {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
  }
}

.process-connector {
  width: 2rem;
  flex-shrink: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
}
@media (max-width: 768px) {
  .process-connector {
    display: none;
  }
}

.process-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1rem 0.5rem;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.03);
  transition: background 0.2s, border-color 0.2s;
}
.process-step:hover {
  background: rgba(167, 139, 250, 0.08);
  border-color: rgba(167, 139, 250, 0.2);
}
.process-step.active {
  background: rgba(167, 139, 250, 0.12);
  border-color: rgba(167, 139, 250, 0.4);
}
@media (max-width: 768px) {
  .process-step {
    flex-direction: row;
    text-align: left;
    gap: 1rem;
  }
}

.process-step-num {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #a78bfa;
  margin-bottom: 0.5rem;
}
.active .process-step-num {
  color: #c4b5fd;
}
@media (max-width: 768px) {
  .process-step-num {
    margin-bottom: 0;
    min-width: 2rem;
  }
}

.process-step-name {
  font-size: 0.875rem;
  font-weight: 500;
  color: #9ca3af;
  line-height: 1.3;
}
.active .process-step-name {
  color: #e5e7eb;
}

.process-panels {
  min-height: 140px;
}

.process-panel {
  display: none;
}
.process-panel.active {
  display: block;
}

.process-panel-title {
  font-family: "Poppins", Helvetica, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #e5e7eb;
  margin-bottom: 1rem;
}

.process-panel-body {
  font-size: 1.125rem;
  color: #9ca3af;
  line-height: 1.7;
  max-width: 680px;
  margin-bottom: 2rem;
}

.process-testimonial {
  max-width: 680px;
  border-left: 2px solid rgba(167, 139, 250, 0.4);
  padding-left: 1rem;
  margin: 0;
}

.process-testimonial-quote {
  font-size: 1rem;
  color: #9ca3af;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.process-testimonial-cite {
  font-size: 0.875rem;
  color: rgba(167, 139, 250, 0.7);
  font-style: normal;
}
.process-testimonial-cite a {
  color: rgba(167, 139, 250, 0.7);
  text-decoration: none;
}
.process-testimonial-cite a:hover {
  color: #a78bfa;
  text-decoration: underline;
}