:root {
  --cyan: #00f5ff;
  --blue: #0066ff;
  --purple: #9b00ff;
  --green: #00ff88;
  --dark: #020408;
  --dark-2: #040c14;
  --dark-3: #071020;
  --white: #ffffff;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--dark);
  color: #e0f0ff;
  font-family: 'Exo 2', sans-serif;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

::-webkit-scrollbar {
  width: 4px;
}

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

::-webkit-scrollbar-thumb {
  background: var(--cyan);
  border-radius: 2px;
}

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

button,
input {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

img {
  display: block;
  max-width: 100%;
}

.site-shell {
  position: relative;
  min-height: 100vh;
  background: #020408;
  color: #ffffff;
  overflow-x: hidden;
}

.cyber-grid-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.fixed-gradient-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(to bottom, #020408, transparent, #020408);
}

.content-layer {
  position: relative;
  z-index: 2;
}

.container {
  position: relative;
  z-index: 10;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-full {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.section-padding {
  position: relative;
  padding: 128px 0;
  overflow: hidden;
}

.section-padding-large {
  position: relative;
  padding: 160px 0;
  overflow: hidden;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: background-color .5s ease, backdrop-filter .5s ease, border-color .5s ease, opacity .8s ease, transform .8s ease;
}

.navbar.scrolled {
  background: rgba(2, 4, 8, .8);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(0, 245, 255, .1);
}

.nav-inner {
  max-width: 1280px;
  height: 64px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.system-status {
  display: none;
  align-items: center;
  gap: 8px;
  font-family: 'Share Tech Mono', monospace;
  font-size: 12px;
  color: rgba(0, 245, 255, .4);
}

.status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.status-dot.green {
  background: #4ade80;
}

.status-dot.cyan {
  background: #22d3ee;
}

.status-dot.red {
  background: #ef4444;
}

.divider {
  color: rgba(0, 245, 255, .2);
  margin: 0 8px;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 32px;
}

.desktop-nav a:not(.nav-join) {
  position: relative;
  font-family: 'Share Tech Mono', monospace;
  font-size: 12px;
  color: rgba(103, 232, 249, .6);
  letter-spacing: .15em;
  text-transform: uppercase;
  transition: color .3s ease;
}

.desktop-nav a:not(.nav-join):hover {
  color: rgb(103, 232, 249);
}

.desktop-nav a:not(.nav-join) span {
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: #22d3ee;
  transition: width .3s ease;
}

.desktop-nav a:not(.nav-join):hover span {
  width: 100%;
}

.nav-join {
  padding: 8px 20px;
  font-size: 12px;
  color: #083344;
  background: #22d3ee;
  border-radius: 2px;
}

.nav-login {
  padding: 8px 20px;
  font-size: 12px;
  color: #c084fc;
  border: 1px solid rgba(192, 132, 252, .45);
  border-radius: 2px;
  background: rgba(155, 0, 255, .08);
}

.nav-join:hover {
  background: #67e8f9;
}

.nav-login:hover {
  border-color: #c084fc;
  background: rgba(155, 0, 255, .14);
}

.mobile-menu-button {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  background: transparent;
}

.mobile-menu-button span {
  display: block;
  width: 24px;
  height: 1px;
  background: #22d3ee;
  transition: transform .3s ease, opacity .3s ease;
}

.mobile-menu-button.active span:nth-child(1) {
  transform: rotate(45deg) translateY(10px);
}

.mobile-menu-button.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-button.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-10px);
}

.mobile-menu {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  background: rgba(2, 4, 8, .95);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(0, 245, 255, .1);
  transition: max-height .3s ease, opacity .3s ease;
}

.mobile-menu.active {
  max-height: 420px;
  opacity: 1;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
}

.mobile-menu a:not(.mobile-join) {
  padding: 8px 0;
  border-bottom: 1px solid rgba(0, 245, 255, .1);
  font-family: 'Share Tech Mono', monospace;
  font-size: 14px;
  color: rgba(103, 232, 249, .7);
  letter-spacing: .1em;
  text-transform: uppercase;
}

.mobile-join {
  margin-top: 8px;
  padding: 12px 20px;
  background: #22d3ee;
  color: #083344;
  text-align: center;
  border-radius: 2px;
  font-size: 14px;
}

.mobile-login {
  margin-top: 8px;
  padding: 12px 20px;
  border: 1px solid rgba(192, 132, 252, .45);
  background: rgba(155, 0, 255, .08);
  color: #d8b4fe;
  text-align: center;
  border-radius: 2px;
  font-size: 14px;
}

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

.hero-orb-cyan {
  top: 25%;
  left: 25%;
  width: 600px;
  height: 600px;
  transform: translate(-50%, -50%);
  background: rgba(6, 182, 212, .08);
}

.hero-orb-purple {
  bottom: 25%;
  right: 25%;
  width: 500px;
  height: 500px;
  transform: translate(50%, 50%);
  background: rgba(147, 51, 234, .08);
}

.hero-orb-green {
  top: 50%;
  right: 33.333%;
  width: 300px;
  height: 300px;
  background: rgba(34, 197, 94, .05);
}

.scanline-layer {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 10;
}

.scanline-layer::after,
.scanline::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, transparent, rgba(0, 245, 255, .4), transparent);
  animation: scan 4s linear infinite;
  pointer-events: none;
}

.scanline-layer.hover::after {
  display: none;
}

.team-card:hover .scanline-layer.hover::after {
  display: block;
}

.corner-data {
  position: absolute;
  top: 80px;
  font-family: 'Share Tech Mono', monospace;
  font-size: 10px;
  color: rgba(0, 245, 255, .3);
  display: none;
}

.corner-left {
  left: 32px;
}

.corner-right {
  right: 32px;
  text-align: right;
}

.progress-bar {
  position: relative;
  width: 128px;
  height: 2px;
  margin-top: 8px;
  background: rgba(0, 245, 255, .1);
  border-radius: 1px;
  overflow: hidden;
}

.corner-right .progress-bar {
  margin-left: auto;
}

.progress-bar::after {
  content: '';
  position: absolute;
  left: -60%;
  top: 0;
  height: 100%;
  width: 60%;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--purple));
  animation: progressMove 2s linear infinite;
}

.hero-content {
  position: relative;
  z-index: 20;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.hero-label,
.cta-status {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(6, 182, 212, .2);
  border-radius: 999px;
  background: rgba(6, 182, 212, .05);
  color: rgba(34, 211, 238, .7);
  font-family: 'Share Tech Mono', monospace;
  font-size: 12px;
  letter-spacing: .3em;
  text-transform: uppercase;
}

.hero-label {
  margin-bottom: 32px;
  padding: 8px 16px;
}

.hero-title-wrap {
  margin-bottom: 24px;
}

.hero-title {
  font-family: 'Orbitron', monospace;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.025em;
}

.title-line {
  font-size: 40px;
}

.title-line.white {
  color: white;
}

.title-line.guardian-blue {
  color: #22d3ee;
}

.hero-title .title-line:first-child {
  margin-bottom: 8px;
}

.hero-title .title-line:last-child {
  margin-top: 8px;
}

.gradient-text {
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-title .gradient-text,
.cta-gradient {
  background-image: linear-gradient(to right, #22d3ee, #60a5fa, #c084fc);
}

.cyan-purple {
  background-image: linear-gradient(to right, #22d3ee, #c084fc);
}

.purple-cyan {
  background-image: linear-gradient(to right, #c084fc, #22d3ee);
}

.green-cyan {
  background-image: linear-gradient(to right, #4ade80, #22d3ee);
}

.glitch-text {
  position: relative;
}

.glitch-text::before,
.glitch-text::after {
  content: attr(data-glitch);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.glitch-text::before {
  color: var(--cyan);
  animation: glitch-before 3s infinite;
  clip-path: polygon(0 30%, 100% 30%, 100% 50%, 0 50%);
  opacity: 0;
}

.glitch-text::after {
  color: var(--purple);
  animation: glitch-after 3s infinite;
  clip-path: polygon(0 60%, 100% 60%, 100% 80%, 0 80%);
  opacity: 0;
}

.hero-subtitle {
  max-width: 672px;
  margin: 0 auto 48px;
  font-size: 16px;
  line-height: 1.625;
  color: rgba(224, 242, 254, .5);
}

.hero-subtitle span {
  color: rgba(34, 211, 238, .7);
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.btn-cyber {
  position: relative;
  overflow: hidden;
  font-family: 'Orbitron', monospace;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: all .3s ease;
}

.btn-cyber::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 245, 255, .3), transparent);
  transition: left .5s ease;
}

.btn-cyber:hover::before {
  left: 100%;
}

.btn-primary,
.btn-outline {
  padding: 16px 40px;
  border-radius: 2px;
  font-size: 14px;
  letter-spacing: .2em;
}

.btn-primary {
  background: #22d3ee;
  color: #020408;
}

.btn-primary:hover {
  background: #67e8f9;
  box-shadow: 0 0 30px rgba(0, 245, 255, .5);
}

.btn-primary span,
.cta-button span {
  position: relative;
  z-index: 10;
}

.btn-outline {
  border: 1px solid rgba(6, 182, 212, .4);
  color: #22d3ee;
}

.btn-outline:hover {
  border-color: #22d3ee;
  background: rgba(6, 182, 212, .05);
}

.stats-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  margin-top: 80px;
}

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

.stat-item div {
  font-family: 'Share Tech Mono', monospace;
  font-size: 24px;
  font-weight: 700;
  color: #22d3ee;
  font-variant-numeric: tabular-nums;
}

.stat-item span {
  color: #c084fc;
}

.stat-item p {
  margin-top: 4px;
  font-family: 'Share Tech Mono', monospace;
  font-size: 10px;
  color: rgba(0, 245, 255, .4);
  letter-spacing: .1em;
  text-transform: uppercase;
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.scroll-indicator span {
  font-family: 'Share Tech Mono', monospace;
  font-size: 10px;
  color: rgba(0, 245, 255, .3);
  letter-spacing: .3em;
}

.scroll-indicator div {
  width: 1px;
  height: 64px;
  background: linear-gradient(to bottom, rgba(6, 182, 212, .3), transparent);
}

.about-orb-purple {
  top: 0;
  right: 0;
  width: 500px;
  height: 500px;
  background: rgba(147, 51, 234, .06);
}

.about-orb-cyan {
  bottom: 0;
  left: 0;
  width: 400px;
  height: 400px;
  background: rgba(6, 182, 212, .05);
}

.section-header {
  margin-bottom: 80px;
}

.section-kicker {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.section-kicker div:not(.grow) {
  width: 48px;
  height: 1px;
}

.section-kicker .grow {
  flex: 1;
  height: 1px;
}

.section-kicker span {
  font-family: 'Share Tech Mono', monospace;
  font-size: 12px;
  letter-spacing: .3em;
  text-transform: uppercase;
}

.section-kicker.cyan div:not(.grow) { background: rgba(6, 182, 212, .4); }
.section-kicker.cyan .grow { background: rgba(6, 182, 212, .1); }
.section-kicker.cyan span { color: rgba(6, 182, 212, .5); }
.section-kicker.purple div:not(.grow) { background: rgba(168, 85, 247, .4); }
.section-kicker.purple .grow { background: rgba(168, 85, 247, .1); }
.section-kicker.purple span { color: rgba(168, 85, 247, .5); }
.section-kicker.green div:not(.grow) { background: rgba(34, 197, 94, .4); }
.section-kicker.green .grow { background: rgba(34, 197, 94, .1); }
.section-kicker.green span { color: rgba(34, 197, 94, .5); }

.section-header h2,
.why-title-row h2,
.team-title-row h2 {
  font-family: 'Orbitron', monospace;
  font-size: 40px;
  font-weight: 900;
  color: white;
}

.section-desc {
  max-width: 512px;
  margin-top: 16px;
  color: rgba(224, 242, 254, .4);
  font-family: 'Exo 2', sans-serif;
}

.about-grid {
  display: grid;
  gap: 32px;
}

.glass-panel,
.glass-panel-purple {
  position: relative;
  height: 100%;
  padding: 32px;
  border-radius: 8px;
  overflow: hidden;
  backdrop-filter: blur(12px);
  transition: all .5s ease;
}

.glass-panel {
  background: rgba(0, 245, 255, .03);
  border: 1px solid rgba(0, 245, 255, .15);
  box-shadow: inset 0 1px 0 rgba(0, 245, 255, .1), 0 8px 40px rgba(0, 0, 0, .5);
}

.glass-panel-purple {
  background: rgba(155, 0, 255, .04);
  border: 1px solid rgba(155, 0, 255, .2);
  box-shadow: inset 0 1px 0 rgba(155, 0, 255, .1), 0 8px 40px rgba(0, 0, 0, .5);
}

.card-glow:hover {
  box-shadow: 0 0 30px rgba(0, 245, 255, .3), 0 0 60px rgba(0, 245, 255, .1), inset 0 0 30px rgba(0, 245, 255, .05);
  border-color: rgba(0, 245, 255, .5);
}

.circuit-bg {
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 10 L40 10 L40 40 M60 10 L90 10 L90 40 M10 60 L10 90 L40 90 M60 90 L90 90 L90 60' stroke='rgba(0,245,255,0.08)' stroke-width='1' fill='none'/%3E%3Ccircle cx='40' cy='10' r='2' fill='rgba(0,245,255,0.15)'/%3E%3Ccircle cx='90' cy='40' r='2' fill='rgba(155,0,255,0.15)'/%3E%3Ccircle cx='10' cy='90' r='2' fill='rgba(0,255,136,0.15)'/%3E%3C/svg%3E");
  background-size: 100px 100px;
}

.corner-accent {
  position: absolute;
  width: 64px;
  height: 64px;
}

.corner-accent.top-left { top: 0; left: 0; }
.corner-accent.bottom-right { right: 0; bottom: 0; }

.corner-accent::before,
.corner-accent::after,
.bracket::before,
.bracket::after {
  content: '';
  position: absolute;
  display: block;
}

.corner-accent.top-left::before,
.corner-accent.top-left::after,
.corner-accent.bottom-right::before,
.corner-accent.bottom-right::after {
  background: rgba(34, 211, 238, .6);
}

.corner-accent.purple::before,
.corner-accent.purple::after {
  background: rgba(192, 132, 252, .6);
}

.corner-accent.top-left::before { top: 0; left: 0; width: 100%; height: 1px; }
.corner-accent.top-left::after { top: 0; left: 0; width: 1px; height: 100%; }
.corner-accent.bottom-right::before { right: 0; bottom: 0; width: 100%; height: 1px; }
.corner-accent.bottom-right::after { right: 0; bottom: 0; width: 1px; height: 100%; }

.panel-content {
  position: relative;
  z-index: 10;
}

.division-heading,
.division-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 2px;
}

.icon-box.cyan { border: 1px solid rgba(6, 182, 212, .4); color: #22d3ee; }
.icon-box.purple { border: 1px solid rgba(168, 85, 247, .4); color: #c084fc; }

.division-code,
.division-url {
  margin-bottom: 0;
  font-family: 'Share Tech Mono', monospace;
  font-size: 10px;
  letter-spacing: .1em;
}

.division-code.cyan { color: rgba(6, 182, 212, .5); }
.division-code.purple { color: rgba(168, 85, 247, .5); }

.division-heading h3 {
  font-family: 'Orbitron', monospace;
  font-size: 18px;
  font-weight: 700;
  color: white;
}

.panel-content p {
  margin-bottom: 24px;
  color: rgba(207, 250, 254, .6);
  font-size: 14px;
  line-height: 1.625;
}

.panel-content p.muted {
  color: rgba(207, 250, 254, .5);
  font-size: 14px;
  margin-bottom: 0;
}

.tag-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 32px;
}

.tag-grid span {
  display: block;
  padding: 6px 12px;
  border-radius: 2px;
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px;
  letter-spacing: .05em;
}

.tag-grid.cyan span {
  border: 1px solid rgba(6, 182, 212, .2);
  color: rgba(34, 211, 238, .7);
}

.tag-grid.purple span {
  border: 1px solid rgba(168, 85, 247, .2);
  color: rgba(192, 132, 252, .7);
}

.bottom-quote {
  max-width: 768px;
  margin: 64px auto 0;
  text-align: center;
  font-size: 18px;
  line-height: 1.6;
  font-style: italic;
  color: rgba(207, 250, 254, .3);
}

.section-bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, #040c14, transparent);
}

.section-bg-gradient.why {
  background: linear-gradient(to bottom, transparent, #030810, transparent);
}

.section-bg-gradient.team {
  background: linear-gradient(to bottom, transparent, #020608, transparent);
}

.divisions-orb-blue {
  top: 50%;
  left: 50%;
  width: 800px;
  height: 800px;
  transform: translate(-50%, -50%);
  background: rgba(37, 99, 235, .05);
}

.division-card-grid {
  display: grid;
  gap: 32px;
}

.tilt-card {
  cursor: default;
  transform-style: preserve-3d;
  transition: transform .15s ease;
}

.division-card {
  position: relative;
  padding: 32px;
  border-radius: 8px;
  overflow: hidden;
  backdrop-filter: blur(4px);
  transition: all .5s ease;
  background: linear-gradient(135deg, rgba(4, 12, 20, .9), rgba(4, 12, 20, .6));
}

.division-card.cyan {
  border: 1px solid rgba(6, 182, 212, .3);
  background-color: rgba(6, 182, 212, .05);
}

.division-card.purple {
  border: 1px solid rgba(168, 85, 247, .3);
  background-color: rgba(168, 85, 247, .05);
}

.division-card:hover {
  border-color: rgba(255, 255, 255, .38);
}

.card-hover-glow {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .5s ease;
}

.division-card:hover .card-hover-glow {
  opacity: 1;
}

.card-hover-glow.cyan {
  background: radial-gradient(circle at 50% 50%, rgba(0, 245, 255, .08), transparent 70%);
}

.card-hover-glow.purple {
  background: radial-gradient(circle at 50% 50%, rgba(155, 0, 255, .08), transparent 70%);
}

.bracket {
  position: absolute;
  width: 32px;
  height: 32px;
}

.bracket.top-left { top: 0; left: 0; }
.bracket.top-right { top: 0; right: 0; }

.bracket.cyan::before,
.bracket.cyan::after { background: rgba(34, 211, 238, .8); }
.bracket.purple::before,
.bracket.purple::after { background: rgba(192, 132, 252, .8); }
.bracket.top-left::before { top: 0; left: 0; width: 100%; height: 1px; }
.bracket.top-left::after { top: 0; left: 0; width: 1px; height: 100%; }
.bracket.top-right::before { top: 0; right: 0; width: 100%; height: 1px; }
.bracket.top-right::after { top: 0; right: 0; width: 1px; height: 100%; }

.id-badge {
  position: absolute;
  top: 16px;
  right: 32px;
  font-family: 'Share Tech Mono', monospace;
  font-size: 12px;
  opacity: .2;
}

.division-card-content {
  position: relative;
  z-index: 10;
}

.division-card-head {
  align-items: flex-start;
  gap: 16px;
}

.big-icon {
  flex-shrink: 0;
  padding: 12px;
  border-radius: 2px;
}

.big-icon.cyan { color: #22d3ee; border: 1px solid rgba(6, 182, 212, .3); }
.big-icon.purple { color: #c084fc; border: 1px solid rgba(168, 85, 247, .3); }

.division-url {
  margin-bottom: 4px;
  letter-spacing: .3em;
  opacity: .6;
}

.division-url.cyan { color: #22d3ee; }
.division-url.purple { color: #c084fc; }

.division-card h3 {
  font-family: 'Orbitron', monospace;
  font-size: 20px;
  font-weight: 700;
  color: white;
}

.tagline {
  margin-top: 4px;
  font-family: 'Share Tech Mono', monospace;
  font-size: 12px;
}

.tagline.cyan { color: #22d3ee; }
.tagline.purple { color: #c084fc; }

.division-description {
  margin-bottom: 32px;
  color: rgba(255, 255, 255, .5);
  font-size: 14px;
  line-height: 1.625;
}

.capabilities {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cap-title {
  margin-bottom: 4px;
  font-family: 'Share Tech Mono', monospace;
  font-size: 10px;
  color: rgba(255, 255, 255, .3);
  letter-spacing: .1em;
}

.cap-item > div:first-child {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}

.cap-item span {
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px;
}

.cap-item > div:first-child span:first-child {
  color: rgba(255, 255, 255, .4);
}

.cap-item[data-color="cyan"] > div:first-child span:last-child { color: #22d3ee; }
.cap-item[data-color="purple"] > div:first-child span:last-child { color: #c084fc; }

.bar {
  height: 4px;
  background: rgba(255, 255, 255, .05);
  border-radius: 999px;
  overflow: hidden;
}

.bar span {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 999px;
  transition: width 1.2s ease-out;
}

.cap-item[data-color="cyan"] .bar span { background: linear-gradient(to right, #0891b2, #22d3ee); }
.cap-item[data-color="purple"] .bar span { background: linear-gradient(to right, #9333ea, #c084fc); }

.card-apply {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .05);
}

.card-apply a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Share Tech Mono', monospace;
  font-size: 12px;
  letter-spacing: .05em;
  transition: opacity .3s ease;
}

.card-apply a:hover {
  opacity: .7;
}

.card-apply a.cyan { color: #22d3ee; }
.card-apply a.purple { color: #c084fc; }

.why-orb-green {
  top: 50%;
  right: 0;
  width: 600px;
  height: 600px;
  background: rgba(34, 197, 94, .04);
}

.why-header {
  margin-bottom: 80px;
}

.why-title-row,
.team-title-row {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.why-title-row p {
  max-width: 448px;
  color: rgba(224, 242, 254, .4);
  font-size: 14px;
}

.reasons-grid {
  display: grid;
  gap: 20px;
}

.reason-card {
  position: relative;
  min-height: 100%;
  padding: 24px;
  border-radius: 8px;
  border: 1px solid;
  transition: all .4s ease;
}

.reason-card.cyan { border-color: rgba(6, 182, 212, .2); background: rgba(6, 182, 212, .05); }
.reason-card.purple { border-color: rgba(168, 85, 247, .2); background: rgba(168, 85, 247, .05); }
.reason-card.green { border-color: rgba(34, 197, 94, .2); background: rgba(34, 197, 94, .05); }
.reason-card.cyan:hover { border-color: rgba(6, 182, 212, .5); background: rgba(6, 182, 212, .08); box-shadow: 0 0 30px rgba(0,245,255,.15); }
.reason-card.purple:hover { border-color: rgba(168, 85, 247, .5); background: rgba(168, 85, 247, .08); box-shadow: 0 0 30px rgba(155,0,255,.15); }
.reason-card.green:hover { border-color: rgba(34, 197, 94, .5); background: rgba(34, 197, 94, .08); box-shadow: 0 0 30px rgba(0,255,136,.15); }

.reason-num {
  position: absolute;
  top: 16px;
  right: 20px;
  font-family: 'Orbitron', monospace;
  font-size: 48px;
  font-weight: 900;
  user-select: none;
}

.reason-card.cyan .reason-num { color: rgba(6, 182, 212, .2); }
.reason-card.purple .reason-num { color: rgba(168, 85, 247, .2); }
.reason-card.green .reason-num { color: rgba(34, 197, 94, .2); }

.reason-icon {
  margin-bottom: 16px;
}

.reason-card.cyan .reason-icon { color: #22d3ee; }
.reason-card.purple .reason-icon { color: #c084fc; }
.reason-card.green .reason-icon { color: #4ade80; }

.reason-card h3 {
  margin-bottom: 12px;
  font-family: 'Orbitron', monospace;
  font-size: 14px;
  line-height: 1.25;
  color: white;
}

.reason-card p {
  color: rgba(255, 255, 255, .4);
  font-size: 14px;
  line-height: 1.625;
}

.team-orb-cyan {
  top: 50%;
  left: 50%;
  width: 700px;
  height: 700px;
  transform: translate(-50%, -50%);
  background: rgba(6, 182, 212, .04);
}

.team-header {
  margin-bottom: 80px;
}

.clearance-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  align-self: flex-start;
  padding: 8px 16px;
  border-radius: 2px;
  border: 1px solid rgba(0, 245, 255, .15);
  background: rgba(0, 245, 255, .03);
  box-shadow: inset 0 1px 0 rgba(0, 245, 255, .1), 0 8px 40px rgba(0, 0, 0, .5);
}

.clearance-badge span:first-child {
  font-family: 'Share Tech Mono', monospace;
  font-size: 10px;
  color: rgba(0, 245, 255, .5);
  letter-spacing: .1em;
}

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

.team-card {
  position: relative;
  border-radius: 8px;
  border: 1px solid;
  overflow: hidden;
  transition: border-color .5s ease;
}

.team-card.cyan { border-color: rgba(6, 182, 212, .2); }
.team-card.purple { border-color: rgba(168, 85, 247, .2); }
.team-card.green { border-color: rgba(34, 197, 94, .2); }
.team-card.cyan:hover { border-color: rgba(6, 182, 212, .6); }
.team-card.purple:hover { border-color: rgba(168, 85, 247, .6); }
.team-card.green:hover { border-color: rgba(34, 197, 94, .6); }

.team-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #030912;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity .5s ease;
}

.team-card:hover .team-overlay {
  opacity: 1;
}

.team-card.cyan .team-overlay { background: linear-gradient(to top, rgba(22, 78, 99, .8), rgba(22, 78, 99, .4), transparent); }
.team-card.purple .team-overlay { background: linear-gradient(to top, rgba(88, 28, 135, .8), rgba(88, 28, 135, .4), transparent); }
.team-card.green .team-overlay { background: linear-gradient(to top, rgba(20, 83, 45, .8), rgba(20, 83, 45, .4), transparent); }

.team-overlay h3 {
  margin-bottom: 4px;
  font-family: 'Orbitron', monospace;
  font-size: 14px;
  font-weight: 700;
  color: white;
}

.team-overlay p {
  font-family: 'Share Tech Mono', monospace;
  font-size: 12px;
}

.team-card.cyan .team-overlay p,
.team-card.cyan .team-info p { color: #22d3ee; }
.team-card.purple .team-overlay p,
.team-card.purple .team-info p { color: #c084fc; }
.team-card.green .team-overlay p,
.team-card.green .team-info p { color: #4ade80; }

.team-info {
  padding: 12px;
  background: #020408;
}

.team-info div {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px;
  color: rgba(255, 255, 255, .5);
}

.team-info p {
  margin-top: 2px;
  font-family: 'Share Tech Mono', monospace;
  font-size: 10px;
  opacity: .6;
}

.classified-notice {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 48px auto 0;
  padding: 12px 24px;
  border: 1px solid rgba(239, 68, 68, .2);
  border-radius: 2px;
  background: rgba(239, 68, 68, .05);
  color: rgba(248, 113, 113, .7);
  font-family: 'Share Tech Mono', monospace;
  font-size: 12px;
  letter-spacing: .05em;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.classified-notice svg {
  flex: none;
  color: #f87171;
}

.cta-bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, #020610, #020408);
}

.cta-orb-cyan {
  top: 50%;
  left: 50%;
  width: 900px;
  height: 900px;
  transform: translate(-50%, -50%);
  background: rgba(6, 182, 212, .1);
}

.cta-orb-purple {
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  transform: translate(-50%, -50%);
  background: rgba(147, 51, 234, .08);
}

.cta-circuit {
  position: absolute;
  inset: 0;
  opacity: .5;
}

.cta-container {
  position: relative;
  z-index: 10;
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.cta-status {
  margin-bottom: 40px;
  padding: 10px 20px;
}

.cta-title {
  margin-bottom: 24px;
  font-family: 'Orbitron', monospace;
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
}

.cta-title > span:first-child {
  color: white;
}

.cta-subtitle {
  max-width: 672px;
  margin: 0 auto 16px;
  color: rgba(224, 242, 254, .4);
  font-size: 18px;
  line-height: 1.625;
}

.cta-copy {
  max-width: 576px;
  margin: 0 auto 48px;
  color: rgba(224, 242, 254, .3);
  font-size: 16px;
}

.cta-actions {
  margin-bottom: 80px;
}

.cta-button,
.cta-learn {
  padding: 20px 48px;
  border-radius: 2px;
  font-size: 14px;
  letter-spacing: .2em;
}

.cta-button {
  color: white;
  background: linear-gradient(to right, #06b6d4, #3b82f6);
}

.cta-button:hover {
  box-shadow: 0 0 40px rgba(0, 245, 255, .4);
  transform: scale(1.03);
}

.cta-button:active,
.cta-learn:active {
  transform: scale(.97);
}

.cta-learn {
  border: 1px solid rgba(168, 85, 247, .4);
  color: #d8b4fe;
}

.cta-learn:hover {
  border-color: #c084fc;
  background: rgba(168, 85, 247, .05);
  transform: scale(1.03);
}

.manifesto {
  max-width: 768px;
  margin: 0 auto;
  text-align: left;
}

.manifesto > div {
  margin-bottom: 16px;
  font-family: 'Share Tech Mono', monospace;
  font-size: 10px;
  letter-spacing: .4em;
  color: rgba(0, 245, 255, .3);
}

.manifesto blockquote {
  color: rgba(207, 250, 254, .5);
  font-size: 18px;
  line-height: 1.625;
  font-style: italic;
}

.manifesto p {
  margin-top: 16px;
  color: rgba(0, 245, 255, .3);
  font-family: 'Share Tech Mono', monospace;
  font-size: 12px;
}

.footer {
  position: relative;
  border-top: 1px solid rgba(6, 182, 212, .1);
  background: #010306;
}

.footer-gradient-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(6, 182, 212, .3), transparent);
}

.footer-inner {
  padding-top: 64px;
  padding-bottom: 64px;
}

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-logo-shape {
  position: relative;
  width: 32px;
  height: 32px;
}

.footer-logo-shape div:first-child {
  position: absolute;
  inset: 0;
  border: 2px solid #22d3ee;
  transform: rotate(45deg);
}

.footer-logo-shape div:nth-child(2) {
  position: absolute;
  inset: 6px;
  border: 1px solid #a855f7;
  transform: rotate(12deg);
}

.footer-logo-shape span {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Share Tech Mono', monospace;
  font-size: 12px;
  font-weight: 700;
  color: #22d3ee;
}

.footer-name {
  font-family: 'Orbitron', monospace;
  font-size: 14px;
  font-weight: 700;
  color: white;
  letter-spacing: .2em;
}

.footer-name span {
  color: #22d3ee;
}

.footer-subname {
  font-family: 'Share Tech Mono', monospace;
  font-size: 9px;
  color: rgba(0, 245, 255, .4);
  letter-spacing: .3em;
}

.footer-copy {
  color: rgba(255, 255, 255, .3);
  font-size: 14px;
  line-height: 1.625;
}

.footer-heading {
  margin-bottom: 20px;
  font-family: 'Share Tech Mono', monospace;
  font-size: 12px;
  color: rgba(0, 245, 255, .4);
  letter-spacing: .1em;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a {
  font-family: 'Share Tech Mono', monospace;
  font-size: 12px;
  color: rgba(255, 255, 255, .4);
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: color .3s ease;
}

.footer-nav a:hover {
  color: #22d3ee;
}

.socials {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

.socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(6, 182, 212, .2);
  border-radius: 2px;
  color: rgba(6, 182, 212, .4);
  transition: all .3s ease;
}

.socials a:hover {
  color: #22d3ee;
  border-color: rgba(6, 182, 212, .6);
}

.contact-lines {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-lines div {
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px;
  color: rgba(255, 255, 255, .2);
}

.footer-status {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
}

.footer-status span:last-child {
  font-family: 'Share Tech Mono', monospace;
  font-size: 10px;
  color: rgba(34, 197, 94, .5);
  letter-spacing: .1em;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, .05);
}

.footer-bottom div {
  font-family: 'Share Tech Mono', monospace;
  font-size: 10px;
  letter-spacing: .1em;
}

.footer-bottom div:first-child {
  color: rgba(255, 255, 255, .2);
}

.footer-bottom div:last-child {
  color: rgba(255, 255, 255, .15);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(0, 0, 0, .8);
  backdrop-filter: blur(4px);
}

.modal.active {
  display: flex;
}

.modal-card {
  width: 100%;
  max-width: 448px;
  padding: 32px;
  border: 1px solid rgba(6, 182, 212, .3);
  border-radius: 8px;
  background: #020408;
  animation: modalIn .2s ease-out both;
}

.modal-card h3 {
  margin-bottom: 16px;
  font-family: 'Orbitron', monospace;
  font-size: 20px;
  font-weight: 700;
  color: white;
}

.modal-card p {
  margin-bottom: 8px;
  color: rgba(207, 250, 254, .4);
  font-size: 14px;
}

.modal-card .modal-note {
  margin-bottom: 24px;
  color: rgba(0, 245, 255, .5);
  font-family: 'Share Tech Mono', monospace;
  font-size: 12px;
}

.modal-card input {
  width: 100%;
  margin-bottom: 24px;
  padding: 12px 16px;
  border: 1px solid rgba(6, 182, 212, .2);
  border-radius: 2px;
  outline: none;
  background: #030912;
  color: white;
  font-family: 'Share Tech Mono', monospace;
  font-size: 14px;
}

.modal-card input::placeholder {
  color: rgba(0, 245, 255, .3);
}

.modal-card input:focus {
  border-color: rgba(6, 182, 212, .6);
  box-shadow: 0 0 0 1px rgba(6, 182, 212, .2);
}

.modal-actions {
  display: flex;
  gap: 12px;
}

.modal-actions button {
  flex: 1;
  padding: 8px 16px;
  border-radius: 2px;
  font-family: 'Orbitron', monospace;
  font-size: 14px;
  font-weight: 700;
  transition: all .3s ease;
}

.modal-actions button:first-child {
  color: white;
  background: linear-gradient(to right, #06b6d4, #3b82f6);
}

.modal-actions button:first-child:hover {
  box-shadow: 0 0 20px rgba(0, 245, 255, .3);
}

.modal-actions button:last-child {
  border: 1px solid rgba(168, 85, 247, .4);
  color: #d8b4fe;
  background: transparent;
}

.modal-actions button:last-child:hover {
  border-color: #c084fc;
  background: rgba(168, 85, 247, .05);
}

.auth-shell {
  min-height: 100vh;
}

.auth-page {
  position: relative;
  min-height: 100vh;
  padding: 32px 0 48px;
}

.auth-topbar {
  position: relative;
  z-index: 20;
  max-width: 1280px;
  margin: 0 auto 32px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.auth-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.auth-brand img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.auth-brand-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.auth-brand-text strong {
  font-family: 'Orbitron', monospace;
  font-size: 16px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #fff;
}

.auth-brand-text span {
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px;
  letter-spacing: .28em;
  color: rgba(0, 245, 255, .45);
}

.auth-links {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.auth-link {
  padding: 10px 16px;
  border: 1px solid rgba(6, 182, 212, .2);
  border-radius: 2px;
  font-family: 'Share Tech Mono', monospace;
  font-size: 12px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(34, 211, 238, .8);
  background: rgba(6, 182, 212, .04);
  transition: all .3s ease;
}

.auth-link:hover,
.auth-link.active {
  border-color: rgba(34, 211, 238, .5);
  color: #e0f9ff;
  background: rgba(6, 182, 212, .08);
  box-shadow: 0 0 24px rgba(0, 245, 255, .12);
}

.auth-grid {
  position: relative;
  z-index: 10;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  gap: 24px;
}

.auth-panel,
.auth-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  backdrop-filter: blur(14px);
}

.auth-panel {
  padding: 32px;
  border: 1px solid rgba(6, 182, 212, .16);
  background: linear-gradient(160deg, rgba(2, 4, 8, .95), rgba(4, 12, 20, .72));
  box-shadow: inset 0 1px 0 rgba(0, 245, 255, .08), 0 24px 80px rgba(0, 0, 0, .45);
}

.auth-card {
  padding: 32px;
  border: 1px solid rgba(168, 85, 247, .18);
  background: linear-gradient(180deg, rgba(155, 0, 255, .08), rgba(2, 4, 8, .94));
  box-shadow: inset 0 1px 0 rgba(192, 132, 252, .08), 0 24px 80px rgba(0, 0, 0, .48);
}

.auth-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(0, 245, 255, .5);
}

.auth-kicker .line {
  width: 44px;
  height: 1px;
  background: rgba(0, 245, 255, .35);
}

.auth-heading {
  margin-bottom: 16px;
  font-family: 'Orbitron', monospace;
  font-size: 36px;
  line-height: 1.05;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
}

.auth-copy {
  max-width: 560px;
  margin-bottom: 28px;
  color: rgba(224, 242, 254, .52);
  line-height: 1.7;
}

.auth-feature-grid {
  display: grid;
  gap: 14px;
}

.auth-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(6, 182, 212, .12);
  border-radius: 12px;
  background: rgba(6, 182, 212, .03);
}

.auth-feature .chip {
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  margin-top: 4px;
  border-radius: 999px;
  box-shadow: 0 0 18px rgba(0, 245, 255, .45);
}

.auth-feature .chip.cyan {
  background: var(--cyan);
}

.auth-feature .chip.purple {
  background: var(--purple);
}

.auth-feature h3 {
  margin-bottom: 4px;
  font-family: 'Orbitron', monospace;
  font-size: 14px;
  color: #fff;
}

.auth-feature p {
  color: rgba(224, 242, 254, .48);
  font-size: 14px;
  line-height: 1.6;
}

.auth-card h2 {
  margin-bottom: 10px;
  font-family: 'Orbitron', monospace;
  font-size: 28px;
  line-height: 1.1;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
}

.auth-card p {
  color: rgba(224, 242, 254, .48);
  line-height: 1.65;
}

.auth-message {
  margin: 20px 0 0;
  padding: 12px 14px;
  border-radius: 12px;
  font-family: 'Share Tech Mono', monospace;
  font-size: 12px;
  letter-spacing: .08em;
}

.auth-message.success {
  border: 1px solid rgba(34, 197, 94, .28);
  background: rgba(34, 197, 94, .08);
  color: #86efac;
}

.auth-message.error {
  border: 1px solid rgba(248, 113, 113, .28);
  background: rgba(248, 113, 113, .08);
  color: #fca5a5;
}

.auth-form {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.auth-field {
  display: grid;
  gap: 8px;
}

.auth-field label {
  font-family: 'Share Tech Mono', monospace;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(0, 245, 255, .55);
}

.auth-field input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(6, 182, 212, .18);
  border-radius: 12px;
  outline: none;
  background: rgba(3, 9, 18, .95);
  color: #fff;
  font-family: 'Share Tech Mono', monospace;
  font-size: 14px;
  transition: border-color .3s ease, box-shadow .3s ease, transform .3s ease;
}

.auth-field input::placeholder {
  color: rgba(0, 245, 255, .24);
}

.auth-field input:focus {
  border-color: rgba(34, 211, 238, .6);
  box-shadow: 0 0 0 1px rgba(34, 211, 238, .18), 0 0 24px rgba(0, 245, 255, .1);
  transform: translateY(-1px);
}

.auth-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 10px;
}

.auth-submit {
  width: 100%;
  padding: 14px 18px;
  border-radius: 12px;
  font-family: 'Orbitron', monospace;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #020408;
  background: linear-gradient(90deg, #22d3ee, #60a5fa, #c084fc);
  box-shadow: 0 16px 32px rgba(0, 245, 255, .18);
}

.auth-submit:hover {
  box-shadow: 0 20px 40px rgba(0, 245, 255, .24);
  transform: translateY(-1px);
}

.auth-switch {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 10px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .06);
  color: rgba(224, 242, 254, .45);
  font-size: 14px;
  line-height: 1.6;
}

.auth-switch a {
  color: #67e8f9;
}

.auth-matrix {
  margin-top: 24px;
  display: grid;
  gap: 12px;
}

.auth-stat {
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 12px;
  background: rgba(255, 255, 255, .02);
}

.auth-stat span {
  display: block;
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(0, 245, 255, .34);
}

.auth-stat strong {
  display: block;
  margin-top: 6px;
  font-family: 'Orbitron', monospace;
  font-size: 14px;
  color: #fff;
}

.auth-footer {
  max-width: 1280px;
  margin: 28px auto 0;
  padding: 0 24px;
  color: rgba(224, 242, 254, .24);
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.reveal,
.reveal-top {
  opacity: 0;
  will-change: transform, opacity;
}

.reveal-top {
  transform: translateY(-80px);
}

.reveal.fade-up,
.reveal:not(.fade-left):not(.fade-right) {
  transform: translateY(40px);
}

.reveal.fade-left {
  transform: translateX(-40px);
}

.reveal.fade-right {
  transform: translateX(40px);
}

.reveal.is-visible,
.reveal-top.is-visible {
  opacity: 1;
  transform: translate(0, 0);
  transition-property: opacity, transform;
  transition-duration: .75s;
  transition-timing-function: cubic-bezier(0.21, 0.47, 0.32, 0.98);
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .5; }
}

@keyframes scan {
  0% { top: -2px; }
  100% { top: 100%; }
}

@keyframes progressMove {
  0% { left: -60%; }
  100% { left: 100%; }
}

@keyframes glitch-before {
  0%, 88%, 100% { opacity: 0; transform: translate(0); }
  90% { opacity: .8; transform: translate(-3px, 1px); }
  92% { opacity: 0; transform: translate(0); }
  94% { opacity: .6; transform: translate(-2px, -1px); }
  96% { opacity: 0; }
}

@keyframes glitch-after {
  0%, 88%, 100% { opacity: 0; transform: translate(0); }
  91% { opacity: .8; transform: translate(3px, -1px); }
  93% { opacity: 0; transform: translate(0); }
  95% { opacity: .6; transform: translate(2px, 1px); }
  97% { opacity: 0; }
}

@keyframes modalIn {
  from { opacity: 0; transform: scale(.9); }
  to { opacity: 1; transform: scale(1); }
}

@media (min-width: 640px) {
  .title-line {
    font-size: 60px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: row;
  }

  .stats-row {
    gap: 64px;
  }

  .stat-item div {
    font-size: 30px;
  }

  .section-header h2,
  .why-title-row h2,
  .team-title-row h2 {
    font-size: 48px;
  }

  .bottom-quote {
    font-size: 20px;
  }

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

  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }

  .cta-title {
    font-size: 60px;
  }

  .cta-subtitle {
    font-size: 20px;
  }
}

@media (min-width: 768px) {
  .desktop-nav {
    display: flex;
  }

  .mobile-menu-button {
    display: none;
  }

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

@media (min-width: 1024px) {
  .system-status {
    display: flex;
  }

  .corner-data {
    display: block;
  }

  .title-line {
    font-size: 72px;
  }

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

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

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

  .why-title-row,
  .team-title-row {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }

  .why-title-row p {
    text-align: right;
  }

  .cta-title {
    font-size: 72px;
  }

  .footer-bottom {
    flex-direction: row;
  }
}

@media (min-width: 1280px) {
  .title-line {
    font-size: 96px;
  }
}

@media (max-width: 480px) {
  .hero-label,
  .cta-status,
  .classified-notice {
    letter-spacing: .12em;
    font-size: 10px;
  }

  .title-line {
    font-size: 34px;
  }

  .section-padding {
    padding: 96px 0;
  }

  .section-padding-large {
    padding: 120px 0;
  }

  .glass-panel,
  .glass-panel-purple,
  .division-card,
  .manifesto,
  .modal-card {
    padding: 24px;
  }

  .gallery-grid {
    gap: 12px;
  }

  .team-info p {
    overflow-wrap: anywhere;
  }

  .modal-actions {
    flex-direction: column;
  }
}

.scroll-indicator.reveal {
  transform: translateX(-50%) translateY(20px);
}

.scroll-indicator.reveal.is-visible {
  transform: translateX(-50%);
}

.classified-notice.reveal {
  transform: translateX(-50%) translateY(40px);
}

.classified-notice.reveal.is-visible {
  transform: translateX(-50%);
}

@media (min-width: 960px) {
  .auth-grid {
    grid-template-columns: 1.1fr .9fr;
    align-items: center;
  }

  .auth-actions {
    flex-direction: row;
    align-items: center;
  }

  .auth-actions .auth-submit {
    width: auto;
    min-width: 240px;
  }

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