


@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Nunito:wght@300;400;500;600;700&display=swap');


:root {
  
  --bg-primary: #0A0A0B;
  --bg-secondary: #0E0E10;
  --bg-card: #111114;
  --bg-card-hover: #16161A;
  --bg-elevated: rgba(17, 17, 20, 0.85);

  
  --cyan-electric: #00E5FF;
  --cyan-glow: rgba(0, 229, 255, 0.15);
  --cyan-glow-subtle: rgba(0, 229, 255, 0.06);
  --cyan-glow-strong: rgba(0, 229, 255, 0.25);
  --cyan-border: rgba(0, 229, 255, 0.12);

  
  --text-primary: #F0F0F2;
  --text-secondary: #A0A0A8;
  --text-tertiary: #6B6B75;
  --text-accent: var(--cyan-electric);

  
  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'Nunito', system-ui, sans-serif;

  
  --space-1: 0.25rem;
  
  --space-2: 0.5rem;
  
  --space-3: 0.75rem;
  
  --space-4: 1rem;
  
  --space-5: 1.5rem;
  
  --space-6: 2rem;
  
  --space-7: 2.5rem;
  
  --space-8: 3rem;
  
  --space-10: 4rem;
  
  --space-12: 5rem;
  
  --space-16: 6rem;
  
  --space-20: 8rem;
  

  
  --border-subtle: 1px solid rgba(255, 255, 255, 0.04);
  --border-card: 1px solid rgba(255, 255, 255, 0.06);
  --border-active: 1px solid var(--cyan-electric);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  
  --shadow-card: 0 1px 3px rgba(0, 0, 0, 0.4);
  --shadow-card-hover: 0 8px 32px rgba(0, 229, 255, 0.08),
    0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-cta: 0 0 20px rgba(0, 229, 255, 0.25),
    0 0 60px rgba(0, 229, 255, 0.1);
  --shadow-cta-hover: 0 0 30px rgba(0, 229, 255, 0.4),
    0 0 80px rgba(0, 229, 255, 0.15);

  
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 180ms var(--ease-out-expo);
  --transition-base: 320ms var(--ease-out-expo);
  --transition-slow: 600ms var(--ease-out-expo);

  
  --max-width: 1200px;
  --nav-height: 72px;
}


*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


.system-preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #030304;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 800ms ease-in-out, visibility 800ms ease-in-out;
  pointer-events: auto;
}

.system-preloader.is-dismissed {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.boot-text {
  font-family: 'Courier New', 'SF Mono', 'Fira Code', monospace;
  font-size: 12px;
  color: #00FFFF;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bootBlink 600ms steps(2, start) infinite;
}

@keyframes bootBlink {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}


::-webkit-scrollbar {
  width: 8px;
  background: #0a0a0c;
}

::-webkit-scrollbar-track {
  background: #030304;
  border-left: 1px solid rgba(255, 255, 255, 0.02);
}

::-webkit-scrollbar-thumb {
  background: rgba(0, 255, 255, 0.2);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 255, 255, 0.5);
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}


* {
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 255, 255, 0.2) #030304;
}


::selection {
  background: #00FFFF;
  color: #000000;
  text-shadow: none;
}

::-moz-selection {
  background: #00FFFF;
  color: #000000;
  text-shadow: none;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  background-color: var(--bg-primary);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}


h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  letter-spacing: -0.04em;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 3rem);
  letter-spacing: -0.03em;
}

h3 {
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  letter-spacing: -0.015em;
}

p {
  max-width: 60ch;
}

.text-accent {
  color: var(--cyan-electric);
}

.text-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cyan-electric);
}


.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--space-5);
}

.section-padding {
  padding-block: var(--space-16);
}


.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 1000;
  background: rgba(10, 10, 11, 0.6);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: var(--border-subtle);
  transition: background var(--transition-base),
    box-shadow var(--transition-base);
}

.nav--scrolled {
  background: rgba(10, 10, 11, 0.92);
  box-shadow: 0 1px 24px rgba(0, 0, 0, 0.5);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.nav__logo {
  width: 38px;
  height: 38px;
  object-fit: contain;
  filter: drop-shadow(0 0 6px rgba(0, 229, 255, 0.3));
  transition: filter 300ms ease;
}

.nav__brand:hover .nav__logo {
  filter: drop-shadow(0 0 8px rgba(0, 255, 255, 0.4)) drop-shadow(0 0 20px rgba(0, 229, 255, 0.2));
}

.nav__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.nav__name span {
  color: var(--cyan-electric);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-7);
}

.nav__link {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--cyan-electric);
  transition: width var(--transition-base);
}

.nav__link:hover {
  color: var(--text-primary);
}

.nav__link:hover::after {
  width: 100%;
}


.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-2);
}

.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform var(--transition-base),
    opacity var(--transition-fast);
}

.nav__toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav__toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


.scroll-stage {
  position: relative;
  height: 300vh;
}

.scroll-scene {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background: #000;
}


.hero {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: var(--nav-height);
  text-align: center;
  overflow: hidden;
  background: var(--bg-primary);
  
  transform-origin: 50% 92%;
  will-change: transform, filter, opacity;
}


.scene-blackout {
  position: absolute;
  inset: 0;
  z-index: 25;
  background: #000;
  opacity: 0;
  pointer-events: none;
  will-change: opacity;
  transition: opacity 0.6s ease;
}


.warp-overlay {
  position: absolute;
  inset: 0;
  z-index: 30;
  background: #000;
  pointer-events: none;
  opacity: 0;
  will-change: opacity;
}

.warp-lines {
  position: absolute;
  inset: -50%;
  background: repeating-conic-gradient(rgba(0, 229, 255, 0.15) 0deg,
      transparent 1deg,
      transparent 3.5deg);
  will-change: transform;
}

.warp-flash {
  position: absolute;
  inset: 0;
  background: white;
  opacity: 0;
  will-change: opacity;
}


.manifesto-overlay {
  position: absolute;
  inset: 0;
  z-index: 33;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  will-change: opacity;
}

.manifesto__phrase {
  position: absolute;
  max-width: 700px;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 3rem);
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0);
  text-shadow:
    0 0 8px rgba(0, 229, 255, 0.4),
    0 0 30px rgba(0, 229, 255, 0.15);
  
  transform: translateY(-20px);
  filter: blur(12px);
  transition:
    color 600ms ease-in,
    transform 600ms ease-in,
    filter 600ms ease-in;
}

.manifesto__phrase.active {
  color: rgba(255, 255, 255, 0.95);
  
  transform: translateY(0);
  filter: blur(0px);
  transition:
    color 800ms cubic-bezier(0.21, 1.11, 0.81, 0.99),
    transform 800ms cubic-bezier(0.21, 1.11, 0.81, 0.99),
    filter 800ms cubic-bezier(0.21, 1.11, 0.81, 0.99);
  animation: glitch 3s infinite 800ms;
}


.manifesto__phrase:not(.active):not(.exited) {
  transform: translateY(20px);
}


@keyframes glitch {

  0%,
  92%,
  100% {
    text-shadow:
      0 0 8px rgba(0, 229, 255, 0.4),
      0 0 30px rgba(0, 229, 255, 0.15);
  }

  93% {
    text-shadow:
      -2px 0 rgba(255, 0, 80, 0.7),
      2px 0 rgba(0, 229, 255, 0.7),
      0 0 8px rgba(0, 229, 255, 0.4);
  }

  94% {
    text-shadow:
      3px 0 rgba(0, 229, 255, 0.7),
      -3px 0 rgba(255, 0, 80, 0.7),
      0 0 12px rgba(0, 229, 255, 0.3);
  }

  95% {
    text-shadow:
      0 0 8px rgba(0, 229, 255, 0.4),
      0 0 30px rgba(0, 229, 255, 0.15);
  }

  96% {
    text-shadow:
      -1px 0 rgba(255, 0, 80, 0.5),
      1px 0 rgba(0, 229, 255, 0.5),
      0 0 8px rgba(0, 229, 255, 0.4);
  }

  97% {
    text-shadow:
      0 0 8px rgba(0, 229, 255, 0.4),
      0 0 30px rgba(0, 229, 255, 0.15);
  }
}


.scroll-philosophy {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  background: var(--bg-primary);
  z-index: 35;
  will-change: opacity;
  transition: opacity 0.6s ease, visibility 0.6s;
}


.philosophy__scroll {
  position: absolute;
  bottom: var(--space-6);
  left: 50%;
  transform: translate(-50%, 15px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-1);
  z-index: 45;
  pointer-events: none;
  opacity: 0;
  transition: opacity 1s var(--ease-out-expo), transform 1s var(--ease-out-expo);
}

.scroll-philosophy.is-active .philosophy__scroll {
  opacity: 0.7;
  transform: translate(-50%, 0);
  transition-delay: 2.2s; 
}

.philosophy__scroll-text {
  font-family: 'Courier New', 'SF Mono', 'Fira Code', monospace;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cyan-electric);
  text-shadow: 0 0 8px rgba(0, 229, 255, 0.4);
}

.philosophy__scroll-chevron {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: philosophy-chevron-pulse 2s infinite ease-in-out;
  filter: drop-shadow(0 0 4px var(--cyan-electric));
}

@keyframes philosophy-chevron-pulse {
  0% {
    transform: translateY(0);
    opacity: 0.3;
  }
  50% {
    transform: translateY(6px);
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    opacity: 0.3;
  }
}


.hero::before {
  content: '';
  position: absolute;
  bottom: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 70%;
  background: radial-gradient(ellipse at center bottom,
      rgba(0, 229, 255, 0.07) 0%,
      rgba(0, 229, 255, 0.02) 40%,
      transparent 70%);
  pointer-events: none;
  z-index: 0;
}


.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.12;
}


.code-rain {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  display: flex;
  justify-content: space-around;
  padding-inline: 2vw;
  
  mask-image: linear-gradient(to bottom,
      transparent 0%,
      rgba(0, 0, 0, 1) 15%,
      rgba(0, 0, 0, 1) 100%);
  -webkit-mask-image: linear-gradient(to bottom,
      transparent 0%,
      rgba(0, 0, 0, 1) 15%,
      rgba(0, 0, 0, 1) 100%);
}

.code-rain__column {
  flex: 1;
  max-width: 220px;
  overflow: hidden;
  position: relative;
  opacity: var(--col-opacity, 0.15);
}

.code-rain__code {
  font-family: 'Courier New', 'SF Mono', 'Fira Code', monospace;
  font-size: 11px;
  line-height: 1.6;
  white-space: pre;
  color: rgba(180, 190, 200, 1);
  animation: code-scroll var(--scroll-speed, 40s) linear infinite;
  animation-delay: var(--scroll-delay, 0s);
  will-change: transform;
}

@keyframes code-scroll {
  0% {
    transform: translateY(0%);
  }

  100% {
    transform: translateY(-50%);
  }
}


.cr-keyword {
  color: rgba(0, 229, 255, 0.8);
}

.cr-string {
  color: rgba(0, 229, 255, 0.4);
}

.cr-const {
  color: rgba(200, 160, 255, 0.5);
}

.cr-number {
  color: rgba(0, 229, 255, 0.5);
}

.cr-comment {
  color: rgba(100, 100, 110, 0.5);
  font-style: italic;
}

.cr-prop {
  color: rgba(160, 160, 168, 0.5);
}

.cr-bracket {
  color: rgba(160, 160, 168, 0.3);
}


@media (prefers-reduced-motion: reduce) {
  .code-rain__code {
    animation: none;
  }
}


.hero__emblema {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  width: 220%;
  max-width: 2480px;
  pointer-events: none;
  opacity: 0.06;
  display: flex;
  align-items: center;
  justify-content: center;
  will-change: transform, filter;
}

.hero__emblema img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 40px rgba(0, 229, 255, 0.15));
}


.lightning-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  mix-blend-mode: screen;
}

#lightning-back {
  z-index: 1;
}

#lightning-front {
  z-index: 10;
}


#lightning-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  mix-blend-mode: screen;
}


.hero__image-wrapper {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  width: 100%;
  max-width: 1100px;
  pointer-events: none;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  will-change: transform, filter;
}

.hero__image {
  width: 100%;
  height: auto;
  max-height: 75vh;
  object-fit: contain;
  object-position: center bottom;

  
  filter:
    brightness(0) drop-shadow(0 0 20px rgba(0, 229, 255, 0.1)) drop-shadow(0 5px 40px rgba(0, 229, 255, 0.05));

  
  transition: filter 0.1s ease-out;

  
  user-select: none;
  -webkit-user-drag: none;
}


.hero__image--lit {
  filter:
    brightness(0.35) contrast(1.2) drop-shadow(0 0 30px rgba(0, 229, 255, 0.25)) drop-shadow(0 0 80px rgba(0, 229, 255, 0.08));
}


.hero__content {
  position: relative;
  z-index: 15;
  max-width: 860px;
  padding-inline: var(--space-5);
}

.hero__label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-6);
  padding: var(--space-1) var(--space-4);
  border: 1px solid var(--cyan-border);
  border-radius: 100px;
  background: rgba(0, 229, 255, 0.04);
}

.hero__label-dot {
  width: 6px;
  height: 6px;
  background: var(--cyan-electric);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(0, 229, 255, 0.4);
  }

  50% {
    opacity: 0.7;
    box-shadow: 0 0 0 6px rgba(0, 229, 255, 0);
  }
}

.hero__title {
  margin-bottom: var(--space-5);
}

.hero__title em {
  font-style: normal;
  position: relative;
  display: inline-block;
}

.hero__title em::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--cyan-electric);
  border-radius: 2px;
  opacity: 0.5;
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: var(--space-8);
  line-height: 1.8;
}


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  padding: var(--space-3) var(--space-7);
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--cyan-electric);
  color: var(--bg-primary);
  box-shadow: var(--shadow-cta);
}

.btn--primary:hover {
  box-shadow: var(--shadow-cta-hover);
  transform: translateY(-2px);
  background: #33EBFF;
}

.btn--primary:active {
  transform: translateY(0);
}

.btn--ghost {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn--ghost:hover {
  border-color: var(--cyan-electric);
  color: var(--cyan-electric);
  box-shadow: 0 0 16px rgba(0, 229, 255, 0.08);
}

.hero__cta-group {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}


.hero__scroll {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  z-index: 20;
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--cyan-electric), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

.hero__scroll-text {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-tertiary);
}


.hero__fade-overlay {
  position: absolute;
  inset: 0;
  z-index: 25;
  background: var(--bg-primary);
  opacity: 0;
  pointer-events: none;
  will-change: opacity;
}


.philosophy {
  position: relative;
  overflow: hidden;
  z-index: 2;
  
  background: var(--bg-primary);
}

.philosophy::before {
  content: '';
  position: absolute;
  bottom: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 60%;
  background: radial-gradient(ellipse at center,
      rgba(0, 229, 255, 0.04) 0%,
      transparent 60%);
  pointer-events: none;
}

.philosophy .container {
  max-width: 900px;
  margin: 0 auto;
}

.philosophy__header {
  text-align: center;
  margin-bottom: var(--space-8);
}

.philosophy__header h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}


.crystal-core {
  position: absolute;
  top: 52.5%;
  left: 27.5%;
  width: 45%;
  height: 45%;
  z-index: 25;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  background: rgba(0, 255, 255, 0.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: inset 0px 20px 40px -20px rgba(0, 255, 255, 0.15);
  pointer-events: none;
  
  opacity: 0;
  transform: scale(0.6);
  filter: blur(10px);
  transition: opacity 1200ms cubic-bezier(0.16, 1, 0.3, 1) 700ms,
              transform 1200ms cubic-bezier(0.16, 1, 0.3, 1) 700ms,
              filter 1200ms cubic-bezier(0.16, 1, 0.3, 1) 700ms;
}


.crystal-core::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    rgba(0, 255, 255, 0) 0%,
    rgba(0, 255, 255, 0.5) 50%,
    rgba(0, 255, 255, 0) 100%);
  box-shadow: 0 0 8px rgba(0, 255, 255, 0.3);
}


.crystal-core.is-crystallized {
  opacity: 1;
  transform: scale(1);
  filter: blur(0px);
}


.crystal-core__text {
  padding: 12px 8px 0 8px;
  font-family: var(--font-body);
  font-size: clamp(9.5px, 1.3vw, 12px);
  line-height: 1.45;
  color: #A0A0A5;
  text-align: center;
  margin: 0;
  overflow: hidden;
  height: 100%;
  box-sizing: border-box;
  word-break: break-word;
}


.crystal-core__float-left,
.crystal-core__float-right {
  width: 50%;
  height: 100%;
}

.crystal-core__float-left {
  float: left;
  shape-outside: polygon(0 0, 100% 100%, 0 100%);
  shape-margin: 10px;
}

.crystal-core__float-right {
  float: right;
  shape-outside: polygon(100% 0, 0 100%, 100% 100%);
  shape-margin: 10px;
}

.cyber-accent {
  color: #00FFFF;
  font-weight: 500;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.25);
}


.triforce-container {
  position: relative;
  width: 100%;
  max-width: 700px;
  aspect-ratio: 800 / 693;
  margin: 0 auto;
  z-index: 1;
  overflow: visible;
}


.triforce-svg-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 40;
}

.triforce-connector {
  transition: opacity 400ms ease;
}


.triangle-tilt {
  position: absolute;
  perspective: 800px;
  transform-style: preserve-3d;

  
  opacity: 0;
  transform: translateY(-350px);
  transition: transform 0.9s cubic-bezier(0.18, 1.35, 0.32, 1.05), opacity 0.4s ease-out, filter 300ms ease;
  will-change: transform, opacity, filter;
}

.triforce--revealed .triangle-tilt {
  opacity: 1;
  transform: translateY(0);
}


.triforce--revealed .triangle-tilt--br {
  transition-delay: 150ms;
}

.triforce--revealed .triangle-tilt--bl {
  transition-delay: 450ms;
}

.triforce--revealed .triangle-tilt--top {
  transition-delay: 750ms;
}


.triangle-tilt--top:hover {
  filter: drop-shadow(0 0 16px rgba(0, 229, 255, 0.45));
}

.triangle-tilt--bl:hover {
  filter: drop-shadow(0 0 16px rgba(41, 121, 255, 0.45));
}

.triangle-tilt--br:hover {
  filter: drop-shadow(0 0 16px rgba(170, 0, 255, 0.45));
}


.triangle-tilt--top {
  top: 0;
  left: 25%;
  width: 50%;
  height: 50%;
}


.triangle-tilt--bl {
  top: 50%;
  left: 0;
  width: 50%;
  height: 50%;
}


.triangle-tilt--br {
  top: 50%;
  left: 50%;
  width: 50%;
  height: 50%;
}


.triangle-face {
  position: relative;
  width: 100%;
  height: 100%;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  cursor: pointer;
  transition: transform 0.1s ease-out, box-shadow 300ms ease;
  transform-style: preserve-3d;
  will-change: transform;
  overflow: hidden;
}


.triangle-face--1 {
  background: linear-gradient(180deg,
      rgba(0, 25, 30, 0.85) 0%,
      rgba(0, 50, 55, 0.5) 60%,
      rgba(0, 70, 75, 0.3) 100%);
  border: none;
}

.triangle-face--2 {
  background: linear-gradient(180deg,
      rgba(8, 12, 28, 0.85) 0%,
      rgba(15, 25, 55, 0.5) 60%,
      rgba(20, 35, 65, 0.3) 100%);
}

.triangle-face--3 {
  background: linear-gradient(180deg,
      rgba(12, 8, 22, 0.85) 0%,
      rgba(30, 15, 50, 0.5) 60%,
      rgba(40, 20, 60, 0.3) 100%);
}


.triangle-face::after {
  content: '';
  position: absolute;
  inset: 0;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  z-index: 1;
  transition: opacity 0.4s ease-in-out;
  pointer-events: none;
  opacity: 1;
}

.triangle-face--1::after {
  background: linear-gradient(180deg, #00363a 0%, #00acc1 100%);
}

.triangle-face--2::after {
  background: linear-gradient(180deg, #0a192f 0%, #2979ff 100%);
}

.triangle-face--3::after {
  background: linear-gradient(180deg, #1a0933 0%, #aa00ff 100%);
}


.triangle-face:hover::after {
  opacity: 0;
}


.triangle-face::before {
  content: '';
  position: absolute;
  inset: 0;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  pointer-events: none;
  z-index: 2;
  transition: border-color 300ms ease;
}


.triangle-face--1::before {
  border: 1.5px solid rgba(0, 255, 255, 0.35);
}

.triangle-face--2::before {
  border: 1.5px solid rgba(41, 121, 255, 0.45);
}

.triangle-face--3::before {
  border: 1.5px solid rgba(170, 0, 255, 0.45);
}


.triangle-face--1:hover::before {
  border-color: rgba(0, 255, 255, 0.95);
}

.triangle-face--2:hover::before {
  border-color: rgba(65, 140, 255, 0.95);
}

.triangle-face--3:hover::before {
  border-color: rgba(195, 65, 255, 0.95);
}


.triangle-face__glare {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 300ms ease;
  pointer-events: none;
  z-index: 3;
}


.triangle-face__content {
  position: absolute;
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 8px;
  z-index: 5;
  white-space: nowrap;
}


.triangle-label {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #ffffff;
  line-height: 1.4;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8), 0 0 4px rgba(0, 0, 0, 0.5);
  transition: color 300ms ease, text-shadow 300ms ease;
}


.triangle-expand {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(0, 255, 255, 0.5);
  background: rgba(0, 0, 0, 0.45);
  color: rgba(0, 255, 255, 0.85);
  font-size: 1.1rem;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
  transition: all 300ms ease;
  flex-shrink: 0;
}


.triangle-face:hover .triangle-label {
  color: #ffffff;
  text-shadow: 0 0 15px rgba(0, 255, 255, 0.85), 0 0 2px rgba(255, 255, 255, 0.9);
}

.triangle-face:hover .triangle-expand {
  border-color: rgba(0, 255, 255, 0.95);
  color: #00FFFF;
  box-shadow: 0 0 14px rgba(0, 255, 255, 0.4), 0 2px 6px rgba(0, 0, 0, 0.5);
}

.triangle-face:hover .triangle-face__glare {
  opacity: 1;
}


.triangle-face.is-glitching {
  animation: cyberGlitch 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes cyberGlitch {
  0% {
    transform: translate(0) skew(0deg);
    filter: hue-rotate(0deg);
  }

  20% {
    transform: translate(-4px, 2px) skew(-3deg);
    filter: hue-rotate(90deg) brightness(1.4);
  }

  40% {
    transform: translate(4px, -2px) skew(3deg);
    filter: hue-rotate(180deg) brightness(1.2);
  }

  60% {
    transform: translate(-2px, 1px) skew(0deg);
    filter: hue-rotate(0deg);
  }

  100% {
    transform: translate(0);
    filter: none;
  }
}


.pillar-panel {
  position: absolute;
  width: clamp(364px, 31vw, 532px);
  border: 1px solid rgba(0, 255, 255, 0.2);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(10, 10, 12, 0.95) 0%, rgba(0, 0, 0, 0.95) 100%);
  backdrop-filter: blur(14px);
  box-shadow: 0 0 24px rgba(0, 255, 255, 0.05),
    0 8px 32px rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.96);
  transition: opacity 400ms ease, transform 400ms ease, visibility 400ms ease;
  z-index: 50;
  pointer-events: none;
}

.pillar-panel.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}


.pillar-panel--left {
  left: 2vw;
  top: 18%;
}

.pillar-panel--top-right {
  right: 2vw;
  top: 10%;
}

.pillar-panel--bottom-right {
  right: 2vw;
  bottom: 12%;
}


.panel-connectors-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 49;
}

.panel-connector {
  stroke: rgba(0, 229, 255, 0.35);
  stroke-width: 1;
  stroke-dasharray: 6 4;
  fill: none;
  opacity: 0;
  transition: opacity 400ms ease;
}

.panel-connector.is-visible {
  opacity: 1;
}


.panel-connector-dot {
  fill: rgba(0, 229, 255, 0.6);
  r: 3;
  opacity: 0;
  transition: opacity 400ms ease;
}

.panel-connector-dot.is-visible {
  opacity: 1;
}

.pillar-panel__header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 25px;
  border-bottom: 1px solid rgba(0, 255, 255, 0.1);
}

.pillar-panel__num {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: #00FFFF;
  background: rgba(0, 255, 255, 0.08);
  padding: 3px 8px;
  border-radius: 3px;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.pillar-panel__title {
  flex: 1;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-primary);
}

.pillar-panel__close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(0, 255, 255, 0.15);
  background: transparent;
  color: rgba(0, 255, 255, 0.5);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 200ms ease;
  flex-shrink: 0;
}

.pillar-panel__close:hover {
  background: rgba(0, 255, 255, 0.08);
  border-color: rgba(0, 255, 255, 0.4);
  color: #00FFFF;
}

.pillar-panel__body {
  padding: 20px 25px 25px;
}


.panel-line {
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.panel-line--data {
  font-family: var(--font-mono);
  font-size: 1rem;
  color: rgba(0, 255, 255, 0.55);
  padding-left: 12px;
  border-left: 2px solid rgba(0, 255, 255, 0.15);
  margin-bottom: 4px;
}


.energy-separator {
  height: 2px;
  margin: 0 auto;
  width: 0%;
  opacity: 0;
  background: radial-gradient(circle,
      rgba(0, 255, 255, 1) 0%,
      rgba(0, 255, 255, 0.4) 40%,
      rgba(0, 0, 0, 0) 100%);
  box-shadow: 0px 0px 15px 2px rgba(0, 255, 255, 0.3);
  transition:
    width 1200ms cubic-bezier(0.175, 0.885, 0.32, 1.1),
    opacity 600ms ease-in;
}

.energy-separator.is-visible {
  width: 80%;
  opacity: 1;
}


.energy-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 800ms ease-out, transform 800ms ease-out;
}

.energy-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}


.ecosystem {
  position: relative;
  overflow: hidden;
  
  background: linear-gradient(180deg,
      #000000 0%,
      rgba(10, 10, 12, 0.9) 15%,
      rgba(10, 10, 12, 0) 100%);
}

.ecosystem::before {
  content: '';
  position: absolute;
  top: 10%;
  right: -20%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle,
      rgba(0, 229, 255, 0.03) 0%,
      transparent 60%);
  pointer-events: none;
}

.ecosystem__header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.ecosystem__header p {
  margin-inline: auto;
  margin-top: var(--space-4);
  max-width: 55ch;
}


.tilt-wrapper {
  perspective: 1200px;
  transform-style: preserve-3d;
  max-width: 940px;
  margin-inline: auto;
}


.showcase {
  position: relative;
  z-index: 1;
  background: var(--bg-card);
  border: var(--border-card);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transform-style: preserve-3d;
  
  transition: transform 600ms cubic-bezier(0.25, 1.2, 0.35, 1),
    border-color 300ms ease,
    box-shadow 300ms ease;
}

.showcase:hover {
  border-color: rgba(0, 229, 255, 0.15);
  box-shadow: 0 16px 64px rgba(0, 229, 255, 0.06),
    0 4px 16px rgba(0, 0, 0, 0.3);
}


.card-glare {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0;
  z-index: 10;
  mix-blend-mode: overlay;
  background: radial-gradient(circle at 50% 50%,
      rgba(255, 255, 255, 0.15) 0%,
      rgba(0, 255, 255, 0.08) 40%,
      transparent 80%);
  transition: opacity 300ms ease;
  border-radius: inherit;
}

.showcase__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
}

.showcase__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-secondary), var(--bg-primary));
}




.stealth-core {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #050505;
  z-index: 1;
}


.chest-asset {
  width: 440px;
  height: auto;
  object-fit: contain;
  filter:
    brightness(0) drop-shadow(0 0 30px rgba(0, 255, 255, 0.8)) drop-shadow(0 0 60px rgba(0, 255, 255, 0.3)) drop-shadow(0 0 100px rgba(0, 255, 255, 0.15));
  transition: filter 600ms ease;
  user-select: none;
  -webkit-user-drag: none;
}


.showcase:hover .chest-asset {
  filter:
    brightness(0.15) contrast(1.3) drop-shadow(0 0 40px rgba(0, 255, 255, 0.9)) drop-shadow(0 0 80px rgba(0, 255, 255, 0.4));
}


.stealth-core::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle,
      rgba(0, 229, 255, 0.12) 0%,
      rgba(0, 229, 255, 0.04) 40%,
      transparent 70%);
  animation: stealth-pulse 3s ease-in-out infinite;
  pointer-events: none;
}

@keyframes stealth-pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.6;
  }

  50% {
    transform: scale(1.3);
    opacity: 1;
  }
}


.encryption-glass {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  background: rgba(10, 10, 12, 0.4);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: inset 0 0 0 1px rgba(0, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: backdrop-filter 500ms ease, -webkit-backdrop-filter 500ms ease;
  overflow: hidden;
}


.showcase:hover .encryption-glass {
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  background: rgba(10, 10, 12, 0.25);
}


.encryption-glass::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: -2px;
  height: 2px;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(0, 229, 255, 0.2) 20%,
      rgba(0, 229, 255, 0.8) 50%,
      rgba(0, 229, 255, 0.2) 80%,
      transparent 100%);
  box-shadow:
    0 0 12px rgba(0, 229, 255, 0.6),
    0 0 30px rgba(0, 229, 255, 0.2);
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease;
}

.showcase:hover .encryption-glass::after {
  opacity: 1;
  animation: scanner-sweep 1.5s ease-in-out infinite;
}

@keyframes scanner-sweep {
  0% {
    top: -2px;
  }

  100% {
    top: 100%;
  }
}


.stealth-hud {
  font-family: 'Courier New', 'SF Mono', 'Fira Code', monospace;
  font-size: 11px;
  line-height: 2;
  color: rgba(0, 229, 255, 0.7);
  text-align: center;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-shadow: 0 0 8px rgba(0, 229, 255, 0.4);
  z-index: 3;
  user-select: none;
}


.stealth-blink {
  color: rgba(0, 229, 255, 0.9);
  animation: stealth-blink-anim 800ms step-end infinite;
}

@keyframes stealth-blink-anim {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

.showcase__content {
  padding: var(--space-10) var(--space-8);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.showcase__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
  padding: var(--space-1) var(--space-3);
  border-radius: 100px;
  background: rgba(0, 229, 255, 0.06);
  border: 1px solid var(--cyan-border);
  font-size: 0.7rem;
  color: var(--cyan-electric);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  width: fit-content;
}

.showcase__badge-dot {
  width: 5px;
  height: 5px;
  background: var(--cyan-electric);
  border-radius: 50%;
}

.showcase__title {
  margin-bottom: var(--space-4);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
}

.showcase__description {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: var(--space-6);
}

.showcase__stats {
  display: flex;
  gap: var(--space-6);
  margin-bottom: var(--space-6);
  padding-top: var(--space-5);
  border-top: var(--border-subtle);
}

.showcase__stat {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.showcase__stat-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
}

.showcase__stat-label {
  font-size: 0.75rem;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}


.divider {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  height: 1px;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.06),
      rgba(0, 229, 255, 0.1),
      rgba(255, 255, 255, 0.06),
      transparent);
}


.classified-accordion {
  margin-top: 40px;
}


.decrypt-trigger {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  padding: 16px;
  background: rgba(10, 10, 12, 0.6);
  border: 1px solid rgba(0, 255, 255, 0.2);
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  transition: border-color 300ms ease, background 300ms ease, box-shadow 300ms ease;
}

.decrypt-trigger:hover {
  border-color: rgba(0, 255, 255, 0.5);
  background: rgba(10, 10, 12, 0.9);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.08);
}

.decrypt-trigger__text {
  font-family: 'Courier New', 'SF Mono', 'Fira Code', monospace;
  font-size: 13px;
  letter-spacing: 1.5px;
  color: #00FFFF;
}

.decrypt-trigger__chevron {
  font-size: 16px;
  color: #00FFFF;
  transition: transform 400ms cubic-bezier(0.25, 1, 0.5, 1);
  display: inline-block;
}


.classified-accordion.is-open .decrypt-trigger__chevron {
  transform: rotate(180deg);
}


.classified-expanded-card {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 600ms cubic-bezier(0.25, 1, 0.5, 1),
              opacity 400ms ease 100ms,
              margin 400ms ease;
  background: rgba(3, 3, 4, 0.5);
  border: 1px dashed rgba(0, 255, 255, 0.15);
  border-radius: 16px;
  position: relative;
  margin-top: 0;
}

.classified-accordion.is-open .classified-expanded-card {
  max-height: 800px;
  opacity: 1;
  margin-top: 24px;
}


.classified-scanline {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(0, 255, 255, 0.015) 3px,
    rgba(0, 255, 255, 0.015) 4px
  );
  pointer-events: none;
  z-index: 0;
  border-radius: 16px;
}


.classified-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 360px;
  position: relative;
  z-index: 1;
}


.classified-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #050505;
  overflow: hidden;
  border-radius: 16px 0 0 16px;
}


.classified-noise {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px;
  pointer-events: none;
  animation: noiseShift 0.5s steps(3) infinite;
}

@keyframes noiseShift {
  0%   { transform: translate(0, 0); }
  33%  { transform: translate(-10px, 5px); }
  66%  { transform: translate(5px, -8px); }
  100% { transform: translate(0, 0); }
}

.classified-abort {
  font-family: 'Courier New', 'SF Mono', 'Fira Code', monospace;
  font-size: 13px;
  letter-spacing: 2px;
  color: #2a2a2a;
  position: relative;
  z-index: 1;
  user-select: none;
}


.classified-content {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}


.classified-badge {
  font-family: 'Courier New', 'SF Mono', 'Fira Code', monospace;
  font-size: 11px;
  color: #888888;
  border: 1px solid #333333;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 1px;
  align-self: flex-start;
  margin-bottom: 12px;
}


.classified-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: #444444;
  letter-spacing: 2px;
  margin: 0 0 8px 0;
}

.classified-title .redacted {
  color: #333333;
  letter-spacing: 0px;
}


.classified-desc {
  font-size: 14px;
  line-height: 1.7;
  color: #666666;
  margin: 0 0 20px 0;
  max-width: 40ch;
}


.classified-specs {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.classified-spec {
  font-family: 'Courier New', 'SF Mono', 'Fira Code', monospace;
  font-size: 11px;
  letter-spacing: 1px;
  color: #555555;
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.02);
}

.classified-spec--redacted {
  color: #333333;
  border-color: rgba(255, 255, 255, 0.04);
}


.classified-denied-btn {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 14px 32px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #555555;
  font-family: 'Courier New', 'SF Mono', 'Fira Code', monospace;
  font-size: 13px;
  letter-spacing: 1px;
  border-radius: 6px;
  cursor: not-allowed;
}


.classified-accordion.is-open .classified-expanded-card .classified-inner {
  animation: systemGlitch 200ms ease-out 1;
}

@keyframes systemGlitch {
  0%   { filter: contrast(1.8) hue-rotate(40deg) brightness(1.4); }
  30%  { filter: contrast(0.6) hue-rotate(-20deg) brightness(0.8); }
  60%  { filter: contrast(1.4) hue-rotate(15deg) brightness(1.2); }
  100% { filter: contrast(1) hue-rotate(0deg) brightness(1); }
}


.demo-vault-section {
  position: relative;
  overflow: hidden;
  
  background: radial-gradient(ellipse at center,
      rgba(0, 255, 255, 0.03) 0%,
      rgba(3, 3, 4, 1) 70%);
  
  opacity: 0;
  transform: scale(0.95) translateY(30px);
  transition:
    opacity 1000ms cubic-bezier(0.21, 1.11, 0.81, 0.99),
    transform 1000ms cubic-bezier(0.21, 1.11, 0.81, 0.99);
}


.demo-vault-section.is-visible {
  opacity: 1;
  transform: scale(1) translateY(0);
}


.demo-vault-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  height: 80%;
  transform: translate(-50%, -50%);
  background: rgba(0, 255, 255, 0.15);
  filter: blur(120px);
  z-index: -1;
  pointer-events: none;
}


.demo-vault {
  position: relative;
  width: 100%;
  max-width: 1200px;
  aspect-ratio: 21 / 9;
  margin-inline: auto;
  background: #0a0a0c;
  border: 1px solid rgba(0, 229, 255, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: filter 150ms ease;
}


.demo-vault:has(.vault-play-btn:hover) .vault-video {
  animation: systemAnomaly 350ms cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes systemAnomaly {
  0% {
    filter: grayscale(0.5) contrast(1.2) brightness(0.6) blur(4px) hue-rotate(0deg);
    transform: scale(1);
  }

  30% {
    filter: grayscale(0) contrast(2.4) brightness(1.5) blur(2px) hue-rotate(90deg);
    transform: scale(1.01);
  }

  70% {
    filter: grayscale(0.3) contrast(1.8) brightness(0.8) blur(3px) hue-rotate(-45deg);
    transform: scale(0.99);
  }

  100% {
    filter: grayscale(0.5) contrast(1.2) brightness(0.6) blur(4px) hue-rotate(0deg);
    transform: scale(1);
  }
}


.vault-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  
  filter: grayscale(0.5) contrast(1.2) brightness(0.6) blur(4px);
  pointer-events: none;
  
  transition: opacity 1.2s ease-in-out;
}


.vault-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background: radial-gradient(circle,
      rgba(10, 10, 12, 0.6) 0%,
      rgba(10, 10, 12, 0.95) 100%);
  pointer-events: none;
}


.vault-grid {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    linear-gradient(rgba(0, 229, 255, 0.4) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 255, 0.4) 1px, transparent 1px);
  background-size: 40px 40px;
  animation: grid-drift 60s linear infinite;
  pointer-events: none;
}

@keyframes grid-drift {
  0% {
    background-position: 0 0, 0 0;
  }

  100% {
    background-position: 40px 40px, 40px 40px;
  }
}


.vault-scanline {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      transparent 0%,
      transparent 49%,
      rgba(0, 229, 255, 0.03) 50%,
      transparent 51%,
      transparent 100%);
  background-size: 100% 4px;
  pointer-events: none;
  z-index: 1;
}


.vault-center {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}


.vault-play-btn {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(0, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(0, 255, 255, 0.3);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 300ms cubic-bezier(0.25, 1, 0.35, 1),
    border-color 300ms ease,
    box-shadow 300ms ease,
    background 300ms ease;
}

.vault-play-btn:hover {
  transform: scale(1.05);
  border-color: rgba(0, 255, 255, 0.8);
  box-shadow:
    0 0 20px rgba(0, 255, 255, 0.2),
    0 0 60px rgba(0, 255, 255, 0.06),
    inset 0 0 20px rgba(0, 255, 255, 0.05);
  background: rgba(0, 255, 255, 0.08);
}

.vault-play-btn:active {
  transform: scale(0.97);
}


.vault-play-icon {
  width: 28px;
  height: 28px;
  color: var(--cyan-electric);
  filter: drop-shadow(0 0 6px rgba(0, 229, 255, 0.5));
  margin-left: 3px;
  
}


.vault-play-btn::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(0, 229, 255, 0.1);
  animation: ring-pulse 3s ease-in-out infinite;
  pointer-events: none;
}

@keyframes ring-pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.4;
  }

  50% {
    transform: scale(1.12);
    opacity: 0;
  }
}


.vault-status-text {
  font-family: 'Courier New', 'SF Mono', 'Fira Code', monospace;
  font-size: 12px;
  letter-spacing: 2px;
  color: rgba(0, 229, 255, 0.5);
  text-transform: uppercase;
  text-align: center;
  margin: 0;
  user-select: none;
}


.vault-cursor {
  animation: vault-cursor-blink 1s step-end infinite;
  color: rgba(0, 229, 255, 0.8);
}

@keyframes vault-cursor-blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}


.vault-corner {
  position: absolute;
  width: 20px;
  height: 20px;
  pointer-events: none;
  z-index: 2;
}

.vault-corner::before,
.vault-corner::after {
  content: '';
  position: absolute;
  background: rgba(0, 229, 255, 0.2);
}


.vault-corner::before {
  width: 20px;
  height: 1px;
}


.vault-corner::after {
  width: 1px;
  height: 20px;
}

.vault-corner--tl {
  top: 16px;
  left: 16px;
}

.vault-corner--tl::before {
  top: 0;
  left: 0;
}

.vault-corner--tl::after {
  top: 0;
  left: 0;
}

.vault-corner--tr {
  top: 16px;
  right: 16px;
}

.vault-corner--tr::before {
  top: 0;
  right: 0;
}

.vault-corner--tr::after {
  top: 0;
  right: 0;
}

.vault-corner--bl {
  bottom: 16px;
  left: 16px;
}

.vault-corner--bl::before {
  bottom: 0;
  left: 0;
}

.vault-corner--bl::after {
  bottom: 0;
  left: 0;
}

.vault-corner--br {
  bottom: 16px;
  right: 16px;
}

.vault-corner--br::before {
  bottom: 0;
  right: 0;
}

.vault-corner--br::after {
  bottom: 0;
  right: 0;
}


.highbridge-footer {
  background: #030304;
  border-top: none;
  padding: 80px 5% 40px 5%;
  position: relative;
  overflow: hidden;
}


.highbridge-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 1px;
  width: 0%;
  background: linear-gradient(90deg, transparent 0%, #00FFFF 50%, transparent 100%);
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.4);
  transition: width 800ms cubic-bezier(0.16, 1, 0.3, 1);
}

.highbridge-footer.is-initialized::before {
  width: 100%;
}


.global-network-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Ccircle cx='10' cy='10' r='2' fill='%2300FFFF'/%3E%3Ccircle cx='100' cy='30' r='1.5' fill='%2300FFFF'/%3E%3Ccircle cx='190' cy='15' r='2' fill='%2300FFFF'/%3E%3Ccircle cx='50' cy='90' r='1.5' fill='%2300FFFF'/%3E%3Ccircle cx='150' cy='80' r='2' fill='%2300FFFF'/%3E%3Ccircle cx='30' cy='170' r='1.5' fill='%2300FFFF'/%3E%3Ccircle cx='120' cy='150' r='2' fill='%2300FFFF'/%3E%3Ccircle cx='180' cy='180' r='1.5' fill='%2300FFFF'/%3E%3Ccircle cx='70' cy='140' r='1.5' fill='%2300FFFF'/%3E%3Ccircle cx='160' cy='130' r='2' fill='%2300FFFF'/%3E%3Cline x1='10' y1='10' x2='100' y2='30' stroke='%2300FFFF' stroke-width='0.6'/%3E%3Cline x1='100' y1='30' x2='190' y2='15' stroke='%2300FFFF' stroke-width='0.6'/%3E%3Cline x1='100' y1='30' x2='150' y2='80' stroke='%2300FFFF' stroke-width='0.6'/%3E%3Cline x1='10' y1='10' x2='50' y2='90' stroke='%2300FFFF' stroke-width='0.6'/%3E%3Cline x1='50' y1='90' x2='150' y2='80' stroke='%2300FFFF' stroke-width='0.6'/%3E%3Cline x1='150' y1='80' x2='190' y2='15' stroke='%2300FFFF' stroke-width='0.6'/%3E%3Cline x1='50' y1='90' x2='30' y2='170' stroke='%2300FFFF' stroke-width='0.6'/%3E%3Cline x1='50' y1='90' x2='70' y2='140' stroke='%2300FFFF' stroke-width='0.6'/%3E%3Cline x1='150' y1='80' x2='120' y2='150' stroke='%2300FFFF' stroke-width='0.6'/%3E%3Cline x1='150' y1='80' x2='160' y2='130' stroke='%2300FFFF' stroke-width='0.6'/%3E%3Cline x1='120' y1='150' x2='180' y2='180' stroke='%2300FFFF' stroke-width='0.6'/%3E%3Cline x1='70' y1='140' x2='120' y2='150' stroke='%2300FFFF' stroke-width='0.6'/%3E%3Cline x1='30' y1='170' x2='70' y2='140' stroke='%2300FFFF' stroke-width='0.6'/%3E%3Cline x1='160' y1='130' x2='180' y2='180' stroke='%2300FFFF' stroke-width='0.6'/%3E%3C/svg%3E");
  background-size: 800px;
  opacity: 0.08;
  -webkit-mask-image: radial-gradient(ellipse 70% 90% at 50% 100%, black 10%, transparent 100%);
  mask-image: radial-gradient(ellipse 70% 90% at 50% 100%, black 10%, transparent 100%);
  animation: networkDrift 120s linear infinite, networkPulse 8s ease-in-out infinite;
}

@keyframes networkDrift {
  0%   { background-position: 0px 0px; }
  100% { background-position: -400px 200px; }
}

@keyframes networkPulse {
  0%, 100% { opacity: 0.04; }
  50%      { opacity: 0.12; }
}


.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: var(--max-width);
  margin-inline: auto;
  position: relative;
  z-index: 2;
}


.footer-brand,
.footer-col {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 400ms ease-out, transform 400ms ease-out;
}


.footer-brand {
  transition-delay: 200ms;
}

.footer-col:nth-child(2) {
  transition-delay: 300ms;
}

.footer-col:nth-child(3) {
  transition-delay: 400ms;
}

.footer-col:nth-child(4) {
  transition-delay: 500ms;
}


.highbridge-footer.is-initialized .footer-brand,
.highbridge-footer.is-initialized .footer-col {
  opacity: 1;
  transform: translateY(0);
}


.footer-brand__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-brand__logo img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  filter: drop-shadow(0 0 6px rgba(0, 229, 255, 0.3));
}

.footer-brand__name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.footer-brand__tagline {
  color: #888888;
  font-size: 14px;
  line-height: 1.6;
  max-width: 300px;
  margin: 0;
}


.footer-heading {
  font-family: 'Courier New', 'SF Mono', 'Fira Code', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #555555;
  margin: 0 0 24px 0;
  font-weight: 400;
}


.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-link {
  color: #aaaaaa;
  font-size: 14px;
  text-decoration: none;
  display: block;
  margin-bottom: 16px;
  transition: color 300ms ease, transform 300ms ease, text-shadow 300ms ease;
}

.footer-link:hover {
  color: #00FFFF;
  transform: translateX(6px);
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}


.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 60px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--max-width);
  margin-inline: auto;
  position: relative;
  z-index: 2;
  
  opacity: 0;
  transition: opacity 1s ease-in 800ms;
}

.highbridge-footer.is-initialized .footer-bottom {
  opacity: 1;
}

.footer-copyright {
  color: #666666;
  font-size: 12px;
  margin: 0;
}


.location-tag {
  font-family: 'Courier New', 'SF Mono', 'Fira Code', monospace;
  font-size: 10px;
  letter-spacing: 2px;
  color: #555555;
  text-transform: uppercase;
  user-select: none;
  transition: color 300ms ease, text-shadow 300ms ease;
}

.location-tag:hover {
  color: #00FFFF;
  text-shadow: 0 0 8px rgba(0, 255, 255, 0.4);
  cursor: crosshair;
}


.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social__link {
  color: #666666;
  transition: color 200ms ease, transform 200ms ease;
  display: flex;
  align-items: center;
}

.footer-social__link:hover {
  color: #00FFFF;
  transform: translateY(-2px);
}


.data-umbilical {
  width: 1px;
  height: 120px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.data-umbilical::before {
  content: '';
  position: absolute;
  top: -50px;
  left: 0;
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent 0%, #00FFFF 100%);
  animation: dataDrop 2.5s infinite linear;
}

@keyframes dataDrop {
  0% {
    top: -50px;
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  80% {
    opacity: 1;
  }

  100% {
    top: 120px;
    opacity: 0;
  }
}


.secure-terminal-box {
  max-width: 680px;
  margin: 0 auto;
  padding: 60px 40px;
  position: relative;
  z-index: 2;
  background: rgba(3, 3, 4, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: background 0.4s ease;
}


.secure-terminal-box:focus-within {
  background: rgba(3, 3, 4, 0.9);
}


.terminal-corner {
  position: absolute;
  width: 20px;
  height: 20px;
  pointer-events: none;
}

.terminal-corner--tl {
  top: 0;
  left: 0;
  border-top: 1px solid rgba(0, 255, 255, 0.4);
  border-left: 1px solid rgba(0, 255, 255, 0.4);
}

.terminal-corner--tr {
  top: 0;
  right: 0;
  border-top: 1px solid rgba(0, 255, 255, 0.4);
  border-right: 1px solid rgba(0, 255, 255, 0.4);
}

.terminal-corner--bl {
  bottom: 0;
  left: 0;
  border-bottom: 1px solid rgba(0, 255, 255, 0.4);
  border-left: 1px solid rgba(0, 255, 255, 0.4);
}

.terminal-corner--br {
  bottom: 0;
  right: 0;
  border-bottom: 1px solid rgba(0, 255, 255, 0.4);
  border-right: 1px solid rgba(0, 255, 255, 0.4);
}


.boot-element {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 400ms ease-out, transform 400ms ease-out;
}

.boot-element[data-boot="0"] {
  transition-delay: 0ms;
}

.boot-element[data-boot="1"] {
  transition-delay: 150ms;
}

.boot-element[data-boot="2"] {
  transition-delay: 300ms;
}

.boot-element[data-boot="3"] {
  transition-delay: 450ms;
}

.boot-element.is-booted {
  opacity: 1;
  transform: translateY(0);
}


.access-protocol {
  position: relative;
  background: var(--bg-primary);
  border-top: none;
  overflow: hidden;
}


.access-protocol::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../highbridgelabs_branding/fondo.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.06;
  z-index: 0;
  pointer-events: none;
  -webkit-mask-image: radial-gradient(circle at 50% 50%, black 20%, transparent 80%);
  mask-image: radial-gradient(circle at 50% 50%, black 20%, transparent 80%);
}

.protocol__header {
  text-align: center;
  margin-bottom: var(--space-10);
}

.protocol__header p {
  margin-inline: auto;
  margin-top: var(--space-3);
  max-width: 45ch;
  color: var(--text-secondary);
}


.protocol-form {
  max-width: 600px;
  margin-inline: auto;
}


.intent-selector {
  border: none;
  padding: 0;
  margin: 0 0 var(--space-8) 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.intent-tab {
  display: flex;
  align-items: center;
  padding: 14px 20px;
  cursor: pointer;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 200ms ease;
}

.intent-tab:first-of-type {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.intent-tab:hover {
  background: rgba(0, 229, 255, 0.03);
}


.intent-radio {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}


.intent-label {
  font-family: 'Courier New', 'SF Mono', 'Fira Code', monospace;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.3);
  transition: color 200ms ease, text-shadow 200ms ease;
  user-select: none;
}


.intent-radio:checked+.intent-label {
  color: #00FFFF;
  text-shadow: 0 0 8px rgba(0, 255, 255, 0.4);
}


.intent-tab:has(.intent-radio:checked) {
  background: rgba(0, 229, 255, 0.04);
  border-left: 2px solid #00FFFF;
}


.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


.protocol-fields {
  opacity: 0.3;
  pointer-events: none;
  transition: opacity 400ms ease-in;
}

.protocol-fields.is-active {
  opacity: 1;
  pointer-events: auto;
}


.field-group {
  margin-bottom: var(--space-6);
}

.field-label {
  display: block;
  font-family: 'Courier New', 'SF Mono', 'Fira Code', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(0, 229, 255, 0.5);
  margin-bottom: var(--space-2);
  text-transform: uppercase;
}


.field-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 12px 0;
  outline: none;
  transition: border-color 300ms ease, box-shadow 300ms ease;
}

.field-input::placeholder {
  color: rgba(255, 255, 255, 0.2);
}

.field-input:focus {
  border-bottom: 1px solid #00FFFF;
  box-shadow: 0 4px 15px -10px #00FFFF;
}


.field-textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.6;
}


.protocol-submit {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin-top: var(--space-6);
  padding: 14px 32px;
  background: transparent;
  border: 1px solid #00FFFF;
  color: #00FFFF;
  font-family: 'Courier New', 'SF Mono', 'Fira Code', monospace;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  
  transition: background 0ms, color 0ms, box-shadow 300ms ease;
}

.protocol-submit:hover {
  background: #00FFFF;
  color: #000000;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.protocol-submit:active {
  transform: scale(0.98);
}


.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-out-expo),
    transform 0.9s var(--ease-out-expo);
}

.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}


.reveal--delay-1 {
  transition-delay: 150ms;
}

.reveal--delay-2 {
  transition-delay: 400ms;
}

.reveal--delay-3 {
  transition-delay: 650ms;
}

.reveal--delay-4 {
  transition-delay: 400ms;
}


.philosophy__card.reveal {
  transform: translateY(50px) scale(0.92);
  transition: opacity 0.8s var(--ease-out-expo),
    transform 0.8s var(--ease-out-expo),
    box-shadow 0.8s var(--ease-out-expo);
}

.philosophy__card.reveal--visible {
  transform: translateY(0) scale(1);
  box-shadow: 0 0 0 rgba(0, 229, 255, 0);
  animation: cardGlowPulse 1.2s ease-out 0.3s 1;
}


@keyframes cardGlowPulse {
  0% {
    box-shadow: 0 0 0 rgba(0, 229, 255, 0);
  }

  40% {
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.08), inset 0 0 20px rgba(0, 229, 255, 0.03);
  }

  100% {
    box-shadow: 0 0 0 rgba(0, 229, 255, 0);
  }
}


.philosophy__card.reveal--visible .philosophy__card-icon {
  animation: iconBounce 0.6s var(--ease-out-expo) 0.5s 1 both;
}

@keyframes iconBounce {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }

  60% {
    transform: scale(1.15);
    opacity: 1;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}


.philosophy__card.reveal--visible .philosophy__card-number {
  animation: numberFade 0.5s ease-out 0.2s 1 both;
}

@keyframes numberFade {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 229, 255, 0.2);
}




@media (max-width: 1280px) {
  .triforce-container {
    max-width: 650px;
  }
}


@media (max-width: 960px) {
  .philosophy__scroll {
    display: none !important;
  }

  .hero__image-wrapper {
    max-width: 90%;
  }

  .hero__image {
    max-height: 60vh;
  }

  
  .triforce-container {
    max-width: 500px;
  }

  .triangle-label {
    font-size: 0.65rem;
  }

  .triangle-expand {
    width: 24px;
    height: 24px;
    font-size: 0.9rem;
  }

  
  .scroll-stage {
    height: auto;
  }

  .scroll-scene {
    position: relative;
    height: auto;
    overflow: visible;
  }

  
  .scroll-philosophy {
    position: relative;
    inset: auto;
    display: block;
    height: auto;
    min-height: auto;
    overflow-y: visible;
    padding: 80px 16px 60px;
    -webkit-overflow-scrolling: touch;
    opacity: 1 !important;
    visibility: visible !important;
  }

  
  .triforce-container {
    opacity: 1 !important;
  }

  .triforce--revealed .triangle-tilt,
  .triangle-tilt {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }

  
  .hero {
    position: relative;
    min-height: 100vh;
  }

  
  .scene-blackout,
  .warp-overlay,
  .manifesto-overlay {
    display: none !important;
  }

  .philosophy .container {
    max-width: 100%;
  }

  .philosophy__header {
    margin-bottom: var(--space-6);
  }

  .philosophy {
    overflow: visible;
  }

  
  .crystal-core {
    opacity: 1 !important;
    transform: scale(1) !important;
    filter: blur(0px) !important;
  }

  .crystal-core__text {
    font-size: clamp(8.5px, 2vw, 10px);
    padding: 10px 8px 0 8px;
    line-height: 1.35;
  }

  .crystal-core__float-left,
  .crystal-core__float-right {
    shape-margin: 8px;
  }

  
  
  .pillar-panel {
    position: absolute;
    height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    margin: 0;
    padding: 0;
    border: none;
    transform: none;
    width: 100%;
    max-width: 100%;
    transition: opacity 400ms ease, visibility 400ms ease;
  }

  
  .pillar-panel.is-open {
    position: relative;
    height: auto;
    overflow: visible;
    opacity: 1;
    visibility: visible;
    margin-top: 16px;
    border-radius: 10px;
    border: 1px solid rgba(0, 255, 255, 0.2);
    pointer-events: auto;
    transform: none;
  }

  .pillar-panel__header {
    padding: 12px 16px;
  }

  .pillar-panel__body {
    padding: 12px 16px 16px;
  }

  
  .panel-connectors-svg {
    display: none;
  }

  .showcase__inner {
    grid-template-columns: 1fr;
  }

  .showcase__visual {
    min-height: 320px;
  }

  .showcase__content {
    padding: var(--space-8) var(--space-6);
  }

  .classified-inner {
    grid-template-columns: 1fr;
  }

  .classified-visual {
    min-height: 200px;
    border-radius: 16px 16px 0 0;
  }

  .classified-content {
    padding: 28px 20px;
  }

  
  .demo-vault {
    aspect-ratio: 16 / 9;
  }

  .vault-play-btn {
    width: 64px;
    height: 64px;
  }

  .vault-play-icon {
    width: 22px;
    height: 22px;
  }

  .vault-status-text {
    font-size: 10px;
    letter-spacing: 1px;
    padding-inline: 16px;
  }

  .nav__links {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(10, 10, 11, 0.96);
    backdrop-filter: blur(20px);
    padding: var(--space-6);
    gap: var(--space-5);
    border-bottom: var(--border-subtle);
  }

  .nav__links--open {
    display: flex;
  }

  .nav__toggle {
    display: flex;
  }
}


@media (max-width: 640px) {
  .hero__image {
    max-height: 50vh;
  }

  .section-padding {
    padding-block: var(--space-12);
  }

  .hero__cta-group {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  .showcase__stats {
    flex-direction: column;
    gap: var(--space-4);
  }

  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .highbridge-footer {
    padding: 60px 5% 32px 5%;
  }

  .triforce-container {
    width: 95%;
    max-width: 370px;
  }

  .crystal-core__text {
    font-size: clamp(7px, 2.2vw, 8px);
    padding: 6px 4px 0 4px;
    line-height: 1.25;
  }

  .crystal-core__float-left,
  .crystal-core__float-right {
    shape-margin: 3px;
  }

  .triangle-label {
    font-size: 0.55rem;
    letter-spacing: 0.08em;
  }

  .triangle-expand {
    width: 20px;
    height: 20px;
    font-size: 0.8rem;
  }

  .triangle-face__content {
    gap: 6px;
  }
}


@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .highbridge-footer {
    padding: 60px 6% 32px 6%;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .footer-brand__tagline {
    max-width: 100%;
  }

  
  .intent-label {
    font-size: 11px;
  }

  .protocol-submit {
    width: 100%;
    justify-content: center;
  }
}


.footer__link-btn {
  background: none;
  border: none;
  padding: 0;
  color: #aaaaaa;
  font-family: inherit;
  font-size: 14px;
  cursor: none;
  transition: color 300ms ease, transform 300ms ease, text-shadow 300ms ease;
  text-align: left;
}

.footer__link-btn:hover {
  color: #00FFFF;
  transform: translateX(6px);
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal.is-open {
  opacity: 1;
  visibility: visible;
}

.modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 11, 0.85);
  backdrop-filter: blur(6px);
}

.modal__content {
  position: relative;
  width: 90%;
  max-width: 500px;
  background: var(--bg-primary, #0A0A0B);
  border: 1px solid rgba(0, 229, 255, 0.2);
  border-radius: 8px;
  padding: 2.5rem;
  transform: translateY(20px);
  transition: transform 0.3s ease;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.7);
}

.modal.is-open .modal__content {
  transform: translateY(0);
}

.modal__close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 2rem;
  cursor: none;
  transition: color 0.2s ease;
}

.modal__close:hover {
  color: var(--cyan-electric, #00E5FF);
}

.modal__title {
  font-family: var(--font-display, 'Space Grotesk', sans-serif);
  color: var(--cyan-electric, #00E5FF);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.stack-list {
  list-style: none;
  padding: 0;
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  line-height: 2;
}

.stack-list strong {
  color: #FFFFFF;
  font-weight: 600;
}


@media (pointer: fine) {
  body {
    cursor: none;
  }

  a,
  button,
  .card,
  .hero__emblema,
  .triangle-face,
  .triangle-expand,
  .pillar-panel__close,
  .nav__link,
  .nav__toggle,
  .showcase {
    cursor: none !important;
  }

  .cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 6px;
    height: 6px;
    background-color: var(--cyan-electric, #00E5FF);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 8px var(--cyan-electric, #00E5FF);
  }

  .cursor-halo {
    position: fixed;
    top: 0;
    left: 0;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(0, 229, 255, 0.4);
    background-color: rgba(0, 229, 255, 0.05);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
    will-change: width, height, transform;
  }

  .cursor-halo.is-hovering {
    width: 56px;
    height: 56px;
    background-color: rgba(0, 229, 255, 0.15);
    border-color: rgba(0, 229, 255, 0.8);
    backdrop-filter: blur(2px);
  }
}