@font-face {
  font-family: 'Space Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/space-mono-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Space Mono';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/space-mono-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Space Mono';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/space-mono-400-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300 900;
  font-display: swap;
  src: url('fonts/inter-var.woff2') format('woff2');
}
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('fonts/space-grotesk-var.woff2') format('woff2');
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --bg: #0a0a0a;
  --surface: #111111;
  --border: #2a2a2a;
  --border-light: #333;
  --text: #e8e8e8;
  --text-dim: #777;
  --text-muted: #444;
  --accent-blue: #4a7cff;
  --accent-red: #c42b2b;
  --accent-yellow: #e8c840;
  --mono: 'Space Mono', 'Courier New', monospace;
  --sans: 'Space Grotesk', 'Inter', -apple-system, sans-serif;
  --grid-gap: 1px;
}
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  overflow-x: hidden;
  cursor: crosshair;
}
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border-light); }
.mono { font-family: var(--mono); }
.label {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-dim);
}
.label-bright {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text);
}
.tag {
  display: inline-block;
  padding: 2px 8px;
  border: 1px solid var(--border-light);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-dim);
}
.barcode {
  display: flex;
  align-items: flex-end;
  gap: 1px;
  height: 30px;
  opacity: 0.4;
}
.barcode span {
  display: block;
  background: var(--text);
  height: 100%;
}
.barcode-label {
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-top: 3px;
}
.grid-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.15;
}
#cursor-glow {
  position: fixed;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74,124,255,0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
}
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-left {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
}
.nav-logo-mark {
  width: 28px;
  height: 28px;
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0;
}
.nav-logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.nav-logo-text {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.nav-divider {
  width: 1px;
  height: 20px;
  background: var(--border-light);
}
.nav-ref {
  font-family: var(--mono);
  font-size: 9px;
  color: var(--text-muted);
  letter-spacing: 1px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
}
.nav-links a {
  color: var(--text-dim);
  text-decoration: none;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 18px 16px;
  border-left: 1px solid var(--border);
  transition: all 0.2s;
  position: relative;
}
.nav-links a:hover {
  color: var(--text);
  background: rgba(255,255,255,0.03);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--accent-blue);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.nav-links a:hover::after {
  transform: scaleX(1);
}
.nav-status {
  display: flex;
  align-items: center;
  gap: 6px;
  padding-left: 16px;
  border-left: 1px solid var(--border);
  height: 100%;
  padding-top: 18px;
  padding-bottom: 18px;
}
.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3ecf6a;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.nav-status span {
  font-family: var(--mono);
  font-size: 9px;
  color: var(--text-dim);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 2;
}
.hero-left {
  padding: 120px 60px 60px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--border);
}
.hero-meta {
  display: flex;
  gap: 40px;
  margin-bottom: 60px;
}
.hero-meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-title {
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(48px, 7vw, 100px);
  line-height: 0.9;
  letter-spacing: -3px;
  margin-bottom: 30px;
}
.hero-title .outline {
  -webkit-text-stroke: 1.5px var(--text);
  color: transparent;
}
.hero-title .red {
  color: var(--accent-red);
}
.hero-desc {
  max-width: 500px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-dim);
  margin-bottom: 50px;
  font-weight: 300;
}
.hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.hero-bottom-left {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  border: 1px solid var(--text);
  color: var(--text);
  text-decoration: none;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.hero-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: var(--text);
  transform: translateX(-101%);
  transition: transform 0.3s;
}
.hero-cta:hover::before { transform: translateX(0); }
.hero-cta:hover { color: var(--bg); }
.hero-cta span { position: relative; z-index: 1; }
.hero-cta svg { position: relative; z-index: 1; transition: transform 0.3s; }
.hero-cta:hover svg { transform: translateX(4px); }
.hero-right {
  position: relative;
  display: flex;
  flex-direction: column;
  padding-top: 52px;
}
.hero-right-top {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}
.hero-cell {
  border-bottom: 1px solid var(--border);
  border-left: 1px solid var(--border);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.hero-cell:hover {
  background: rgba(255,255,255,0.02);
}
.hero-cell:nth-child(odd) { border-left: none; }
.hero-cell-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.hero-cell-number {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 42px;
  letter-spacing: -2px;
  line-height: 1;
  opacity: 0.08;
  position: absolute;
  bottom: 10px;
  right: 15px;
}
.cell-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}
.wireframe-globe {
  width: 80px;
  height: 80px;
  border: 1.5px solid var(--text-dim);
  border-radius: 50%;
  position: relative;
  animation: spin-globe 12s linear infinite;
}
.wireframe-globe::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  width: 50%;
  height: 100%;
  border-left: 1.5px solid var(--text-dim);
  border-radius: 0 50% 50% 0 / 0 50% 50% 0;
  transform-origin: left center;
}
.wireframe-globe::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 0;
  border-top: 1.5px solid var(--text-dim);
}
@keyframes spin-globe {
  0% { transform: rotateY(0deg); }
  100% { transform: rotateY(360deg); }
}
.star-shape {
  width: 60px;
  height: 60px;
  position: relative;
}
.star-shape::before, .star-shape::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.star-shape::before {
  width: 2px;
  height: 60px;
  background: var(--text-dim);
}
.star-shape::after {
  width: 60px;
  height: 2px;
  background: var(--text-dim);
}
.color-swatches {
  display: flex;
  gap: 2px;
}
.color-swatches div {
  height: 24px;
  transition: transform 0.2s;
}
.color-swatches div:hover {
  transform: scaleY(1.3);
}
.hero-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
}
.hero-stat {
  padding: 20px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hero-stat:last-child { border-right: none; }
.hero-stat-value {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -1px;
}
.hero-stat-value .unit {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-dim);
  letter-spacing: 0;
}
.marquee-container {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  position: relative;
  z-index: 2;
  background: var(--surface);
}
.marquee-track {
  display: flex;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 14px 40px;
  white-space: nowrap;
  border-right: 1px solid var(--border);
}
.marquee-item span {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-dim);
}
.marquee-dot {
  width: 4px;
  height: 4px;
  background: var(--accent-red);
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.section-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
  padding: 30px 60px;
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 2;
}
.section-header h2 {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
}
.section-header-line {
  height: 1px;
  background: var(--border);
}
.section-header-ref {
  font-family: var(--mono);
  font-size: 9px;
  color: var(--text-muted);
  letter-spacing: 1px;
}
.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  position: relative;
  z-index: 2;
  border-bottom: 1px solid var(--border);
}
.label-card {
  border-right: 1px solid var(--border);
  padding: 0;
  display: flex;
  flex-direction: column;
  transition: background 0.3s;
}
.label-card:last-child { border-right: none; }
.label-card:hover {
  background: rgba(255,255,255,0.015);
}
.label-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
}
.label-card-header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.label-card-tabs {
  display: flex;
  gap: 0;
}
.label-card-tab {
  width: 22px;
  height: 18px;
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 7px;
  color: var(--text-dim);
  cursor: pointer;
  transition: all 0.2s;
}
.label-card-tab:hover, .label-card-tab.active {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}
.label-card-close {
  width: 18px;
  height: 18px;
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--text-dim);
  cursor: pointer;
  transition: all 0.2s;
}
.label-card-close:hover {
  border-color: var(--accent-red);
  color: var(--accent-red);
}
.label-card-body {
  padding: 30px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.label-card-title {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -1px;
  line-height: 1.1;
}
.label-card-text {
  font-size: 13px;
  line-height: 1.8;
  color: var(--text-dim);
  font-weight: 300;
}
.label-card-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.label-card-id {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 2px;
  color: var(--text-muted);
}
.data-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 2;
}
.data-cell {
  padding: 16px 24px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.data-cell:last-child { border-right: none; }
.data-cell-value {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--text);
  letter-spacing: 0.5px;
}
.projects-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  z-index: 2;
}
.project-card {
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.project-card:nth-child(2n) { border-right: none; }
.project-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 0;
  transition: height 0.4s;
}
.project-card:nth-child(1)::before { background: var(--accent-red); }
.project-card:nth-child(2)::before { background: var(--accent-blue); }
.project-card:nth-child(3)::before { background: var(--accent-yellow); }
.project-card:nth-child(4)::before { background: #3ecf6a; }
.project-card:hover::before { height: 100%; }
.project-card:hover {
  background: rgba(255,255,255,0.015);
}
.project-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 24px 30px 0;
}
.project-header-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.project-code {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 1.5px;
  color: var(--text-muted);
}
.project-status {
  padding: 3px 10px;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid;
}
.status-active { color: #3ecf6a; border-color: #3ecf6a33; background: #3ecf6a08; }
.status-dev { color: var(--accent-blue); border-color: #4a7cff33; background: #4a7cff08; }
.status-concept { color: var(--accent-yellow); border-color: #e8c84033; background: #e8c84008; }
.status-shipped { color: var(--text-dim); border-color: var(--border-light); }
.project-body {
  padding: 24px 30px;
  flex: 1;
}
.project-title {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 32px;
  letter-spacing: -1.5px;
  line-height: 1;
  margin-bottom: 12px;
}
.project-genre {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 1px;
  color: var(--text-dim);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.project-desc {
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-dim);
  font-weight: 300;
  max-width: 440px;
}
.project-footer {
  padding: 16px 30px;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: repeat(3, 1fr) auto;
  gap: 16px;
  align-items: center;
}
.project-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.project-meta-label {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  text-transform: uppercase;
}
.project-meta-value {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text);
}
.project-arrow {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.project-card:hover .project-arrow {
  background: var(--text);
  border-color: var(--text);
}
.project-card:hover .project-arrow svg {
  stroke: var(--bg);
}
.progress-section {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 2;
}
.progress-item {
  padding: 24px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.progress-item:last-child { border-right: none; }
.progress-bar-bg {
  height: 4px;
  background: var(--border);
  position: relative;
  overflow: hidden;
}
.progress-bar-fill {
  height: 100%;
  position: absolute;
  top: 0; left: 0;
  transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.progress-bar-fill.red { background: var(--accent-red); }
.progress-bar-fill.blue { background: var(--accent-blue); }
.progress-bar-fill.yellow { background: var(--accent-yellow); }
.progress-bar-fill.green { background: #3ecf6a; }
.progress-bar-fill.white { background: var(--text-dim); }
.progress-value {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -1px;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  z-index: 2;
  border-bottom: 1px solid var(--border);
}
.team-card {
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: background 0.3s;
}
.team-card:last-child { border-right: none; }
.team-card:hover { background: rgba(255,255,255,0.015); }
.team-card-visual {
  height: 180px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.team-avatar {
  width: 80px;
  height: 80px;
  border: 2px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 24px;
  color: var(--text-dim);
  letter-spacing: -1px;
  position: relative;
}
.team-avatar::after {
  content: '';
  position: absolute;
  top: -8px; left: -8px;
  right: -8px; bottom: -8px;
  border: 1px solid var(--border);
}
.team-card-ref {
  position: absolute;
  top: 10px;
  right: 12px;
  font-family: var(--mono);
  font-size: 8px;
  color: var(--text-muted);
  letter-spacing: 1px;
}
.team-card-body {
  padding: 20px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.team-name {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.3px;
}
.team-role {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 1.5px;
  color: var(--text-dim);
  text-transform: uppercase;
}
.team-card-footer {
  padding: 12px 20px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.team-tags {
  display: flex;
  gap: 4px;
}
.contact-section {
  display: grid;
  grid-template-columns: 2fr 1fr;
  position: relative;
  z-index: 2;
  border-bottom: 1px solid var(--border);
}
.contact-main {
  padding: 60px;
  border-right: 1px solid var(--border);
}
.contact-title {
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(36px, 4vw, 56px);
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 30px;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 500px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.form-field:first-child { border-top: 1px solid var(--border); }
.form-field label {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-dim);
}
.form-field input, .form-field textarea {
  background: transparent;
  border: none;
  outline: none;
  color: var(--text);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 300;
  padding: 4px 0;
}
.form-field textarea {
  resize: none;
  height: 80px;
}
.form-field input::placeholder, .form-field textarea::placeholder {
  color: var(--text-muted);
}
.form-submit {
  margin-top: 30px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  border: 1px solid var(--text);
  background: transparent;
  color: var(--text);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  align-self: flex-start;
  position: relative;
  overflow: hidden;
}
.form-submit::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: var(--text);
  transform: translateX(-101%);
  transition: transform 0.3s;
}
.form-submit:hover::before { transform: translateX(0); }
.form-submit:hover { color: var(--bg); }
.form-submit span { position: relative; z-index: 1; }
.contact-sidebar {
  display: flex;
  flex-direction: column;
}
.contact-info-block {
  padding: 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contact-info-block .label { margin-bottom: 6px; }
.contact-info-value {
  font-size: 14px;
  color: var(--text);
  font-weight: 500;
}
.contact-qr {
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex: 1;
  justify-content: center;
}
.qr-grid {
  width: 145px;
  height: 145px;
  display: grid;
  gap: 0px;
}
.qr-cell {
  background: var(--text);
  opacity: 0.6;
}
.qr-cell.empty {
  background: transparent;
}
footer {
  position: relative;
  z-index: 2;
}
.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  padding: 0;
  border-bottom: 1px solid var(--border);
}
.footer-col {
  padding: 40px 30px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-col:last-child { border-right: none; }
.footer-col-title {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dim);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.footer-col a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 13px;
  font-weight: 300;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--text); }
.footer-brand {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}
.footer-brand-sub {
  font-size: 12px;
  color: var(--text-dim);
  font-weight: 300;
  line-height: 1.6;
  max-width: 280px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
}
.footer-copyright {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 1px;
  color: var(--text-muted);
}
.footer-bottom-right {
  display: flex;
  gap: 20px;
  align-items: center;
}
.signature-strip {
  display: grid;
  grid-template-columns: 200px 1fr auto auto;
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 2;
}
.signature-block {
  padding: 20px 24px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.signature-block:last-child { border-right: none; }
.signature-svg {
  font-family: 'Brush Script MT', 'Segoe Script', cursive;
  font-size: 28px;
  color: var(--text);
  opacity: 0.7;
}
.corner-marks {
  position: absolute;
  top: 10px; right: 12px;
  display: flex;
  gap: 6px;
}
.corner-mark {
  width: 8px;
  height: 8px;
  border: 1px solid var(--text-muted);
}
.corner-mark.filled { background: var(--text-muted); }
.diagonal-lines {
  width: 40px;
  height: 40px;
  background: repeating-linear-gradient(
    45deg,
    var(--text-muted),
    var(--text-muted) 1px,
    transparent 1px,
    transparent 4px
  );
  opacity: 0.3;
}
.circle-pattern {
  display: flex;
  gap: 2px;
}
.circle-pattern span {
  width: 16px;
  height: 16px;
  border: 1px solid var(--text-muted);
  border-radius: 50%;
}
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.label-card-page {
  display: none;
}
.label-card-page.active {
  display: block;
}
.label-card.closed {
  display: none;
}
.video-embed-container {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--surface);
  border: 1px solid var(--border);
  position: relative;
  cursor: pointer;
  overflow: hidden;
  transition: border-color 0.3s;
}
.video-embed-container:hover {
  border-color: var(--accent-red);
}
.video-play-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background:
    radial-gradient(ellipse at center, rgba(74,124,255,0.04) 0%, transparent 60%),
    var(--surface);
}
.video-play-btn {
  color: var(--text-dim);
  transition: all 0.3s;
}
.video-embed-container:hover .video-play-btn {
  color: var(--accent-red);
  transform: scale(1.1);
}
.video-play-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.video-embed-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; }
  .hero-left { padding: 100px 30px 40px; }
  .hero-right { min-height: 50vh; }
  .hero-stats-row { grid-template-columns: repeat(2, 1fr); }
  .about-section { grid-template-columns: 1fr; }
  .label-card { border-right: none; border-bottom: 1px solid var(--border); }
  .projects-grid { grid-template-columns: 1fr; }
  .project-card { border-right: none; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-section { grid-template-columns: 1fr; }
  .contact-main { border-right: none; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .data-row { grid-template-columns: repeat(3, 1fr); }
  .progress-section { grid-template-columns: repeat(3, 1fr); }
  .nav-links a:nth-child(-n+2) { display: none; }
  .section-header { padding: 20px 30px; }
  .signature-strip { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .hero-title { font-size: 42px; letter-spacing: -2px; }
  .hero-right-top { grid-template-columns: 1fr; }
  .hero-stats-row { grid-template-columns: 1fr; }
  .hero-meta { flex-direction: column; gap: 16px; }
  .team-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; }
  .data-row { grid-template-columns: repeat(2, 1fr); }
  .progress-section { grid-template-columns: 1fr 1fr; }
  .project-footer { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .nav-status { display: none; }
  .contact-main { padding: 30px; }
  .signature-strip { grid-template-columns: 1fr; }
}
