:root {
  --void: #010108;
  --surface: rgba(10, 12, 22, 0.78);
  --elevated: rgba(14, 16, 28, 0.92);
  --text: #f6f8ff;
  --text-muted: rgba(220, 228, 255, 0.55);
  --cyan: #2cf6e4;
  --cyan-dim: rgba(44, 246, 228, 0.16);
  --violet: #a78bfa;
  --violet-dim: rgba(167, 139, 250, 0.14);
  --magenta: #ff4ecd;
  --magenta-dim: rgba(255, 78, 205, 0.12);
  --border: rgba(255, 255, 255, 0.07);
  --border-strong: rgba(255, 255, 255, 0.16);
  --success: #3af0c8;
  --error: #ff6b8a;
  --font-display: "Syne", system-ui, sans-serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
  --radius-lg: 1.15rem;
  --radius-md: 0.65rem;
}

.mono {
  font-family: var(--font-mono);
  letter-spacing: 0.06em;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  background: var(--void);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* CRT / holo scanlines */
.scanlines {
  position: fixed;
  inset: 0;
  z-index: 6;
  pointer-events: none;
  opacity: 0.045;
  background: repeating-linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.35),
    rgba(0, 0, 0, 0.35) 1px,
    transparent 1px,
    transparent 3px
  );
  mix-blend-mode: overlay;
  animation: scan 10s linear infinite;
}

@keyframes scan {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(12px);
  }
}

/* Depth: grid + noise */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 95% 55% at 50% -15%, #000 28%, transparent 70%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.35;
  background: 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");
  mix-blend-mode: overlay;
}

.ambient {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.55;
  animation: drift 22s ease-in-out infinite;
}

.orb-a {
  width: min(55vw, 520px);
  height: min(55vw, 520px);
  top: -12%;
  right: -8%;
  background: radial-gradient(circle, rgba(46, 230, 214, 0.45) 0%, transparent 70%);
  animation-delay: 0s;
}

.orb-b {
  width: min(45vw, 420px);
  height: min(45vw, 420px);
  bottom: 5%;
  left: -10%;
  background: radial-gradient(circle, rgba(155, 125, 255, 0.4) 0%, transparent 70%);
  animation-delay: -7s;
}

.orb-c {
  width: 280px;
  height: 280px;
  top: 42%;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(44, 246, 228, 0.14) 0%, transparent 65%);
  animation-delay: -14s;
}

.orb-d {
  width: min(38vw, 360px);
  height: min(38vw, 360px);
  top: 18%;
  left: -6%;
  background: radial-gradient(circle, rgba(255, 78, 205, 0.22) 0%, transparent 68%);
  animation-delay: -10s;
}

@keyframes drift {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(2%, 3%) scale(1.05);
  }
  66% {
    transform: translate(-2%, 1%) scale(0.98);
  }
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 10;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.section {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--border);
  background: rgba(1, 1, 8, 0.82);
  backdrop-filter: blur(18px) saturate(180%);
  box-shadow: 0 0 40px rgba(44, 246, 228, 0.04);
}

.header-grid {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 0.55rem 0 0.65rem;
}

.header-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  min-height: 3.25rem;
}

a.brand {
  text-decoration: none;
  color: inherit;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  padding: 0.35rem 0 0.15rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.58rem;
}

.site-nav a {
  color: var(--text-muted);
  text-decoration: none;
  padding: 0.35rem 0.55rem;
  border-radius: 6px;
  border: 1px solid transparent;
  transition:
    color 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease;
}

.site-nav a:hover {
  color: var(--cyan);
  border-color: rgba(44, 246, 228, 0.25);
  background: rgba(44, 246, 228, 0.06);
}

.hud-strip {
  display: none;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.62rem;
  color: var(--text-muted);
  opacity: 0.85;
}

@media (min-width: 720px) {
  .hud-strip {
    display: flex;
    flex: 1;
    justify-content: center;
  }
}

.hud-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--magenta);
  box-shadow: 0 0 8px var(--magenta);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.brand-mark {
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background: linear-gradient(135deg, var(--cyan), var(--magenta));
  box-shadow:
    0 0 18px rgba(44, 246, 228, 0.55),
    0 0 28px rgba(255, 78, 205, 0.25);
}

.brand-text {
  background: linear-gradient(90deg, #fff 0%, rgba(244, 246, 255, 0.75) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Hero */
.hero {
  position: relative;
  min-height: min(92vh, 960px);
  display: flex;
  align-items: center;
  padding-top: 2rem;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 960px) {
  .hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(220px, 280px);
    align-items: center;
    gap: 2.5rem;
  }
}

.hero-content {
  max-width: 760px;
}

.hero-title {
  display: flex;
  flex-direction: column;
  gap: 0.12em;
  margin: 0 0 1.2rem;
}

.hero-title-line {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.85rem, 4.2vw, 2.75rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: rgba(246, 248, 255, 0.92);
}

.hero-frame {
  position: absolute;
  inset: 6% 3% auto auto;
  width: min(38%, 340px);
  min-height: 300px;
  max-height: min(52vh, 420px);
  border: 1px solid rgba(44, 246, 228, 0.22);
  border-radius: var(--radius-lg);
  background: linear-gradient(
    210deg,
    rgba(44, 246, 228, 0.07),
    rgba(255, 78, 205, 0.05),
    rgba(167, 139, 250, 0.04)
  );
  opacity: 0.88;
  pointer-events: none;
  animation: framePulse 9s ease-in-out infinite;
  box-shadow:
    inset 0 0 60px rgba(0, 0, 0, 0.45),
    0 0 80px rgba(44, 246, 228, 0.06);
  overflow: hidden;
}

.platform-shell {
  position: absolute;
  inset: 10px;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  font-size: 0.58rem;
  line-height: 1.35;
  color: rgba(220, 228, 255, 0.72);
}

.platform-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.platform-title {
  color: rgba(44, 246, 228, 0.85);
  letter-spacing: 0.06em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.platform-live {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--magenta);
  font-weight: 500;
  letter-spacing: 0.12em;
}

.platform-live-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--magenta);
  box-shadow: 0 0 10px var(--magenta);
  animation: pulse 1.4s ease-in-out infinite;
}

.platform-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.25rem 0.5rem;
}

.platform-metric {
  display: flex;
  justify-content: space-between;
  gap: 0.35rem;
  padding: 0.2rem 0.35rem;
  background: rgba(0, 0, 0, 0.35);
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.platform-metric span:first-child {
  color: rgba(220, 228, 255, 0.45);
}

.js-plat-val {
  color: rgba(246, 248, 255, 0.92);
  font-variant-numeric: tabular-nums;
}

.platform-tree-hd {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 0.15rem;
  font-size: 0.52rem;
  color: rgba(220, 228, 255, 0.5);
}

.platform-tree-tag {
  color: rgba(167, 139, 250, 0.85);
  letter-spacing: 0.05em;
}

.platform-mini-tree {
  width: 100%;
  height: auto;
  max-height: 100px;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(44, 246, 228, 0.12);
}

.platform-feed-wrap {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  margin-top: 0.1rem;
}

.platform-feed-label {
  font-size: 0.5rem;
  color: rgba(220, 228, 255, 0.4);
  margin-bottom: 0.2rem;
  letter-spacing: 0.1em;
}

.platform-feed {
  flex: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-size: 0.52rem;
  line-height: 1.3;
  mask-image: linear-gradient(180deg, #000 70%, transparent 100%);
}

.platform-feed .feed-line {
  opacity: 0;
  animation: feedLineIn 0.35s ease forwards;
  color: rgba(200, 210, 255, 0.55);
  border-left: 2px solid rgba(44, 246, 228, 0.25);
  padding-left: 0.35rem;
}

.platform-feed .feed-line.is-hot {
  color: rgba(44, 246, 228, 0.75);
  border-left-color: rgba(255, 78, 205, 0.45);
}

@keyframes feedLineIn {
  from {
    opacity: 0;
    transform: translateX(-4px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.corner {
  position: absolute;
  width: 14px;
  height: 14px;
  border-color: rgba(44, 246, 228, 0.55);
  border-style: solid;
  pointer-events: none;
}

.corner-tl {
  top: -1px;
  left: -1px;
  border-width: 2px 0 0 2px;
}

.corner-tr {
  top: -1px;
  right: -1px;
  border-width: 2px 2px 0 0;
}

.corner-bl {
  bottom: -1px;
  left: -1px;
  border-width: 0 0 2px 2px;
}

.corner-br {
  bottom: -1px;
  right: -1px;
  border-width: 0 2px 2px 0;
}

.hero-panel {
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  background: linear-gradient(165deg, rgba(14, 16, 28, 0.95), rgba(6, 8, 16, 0.75));
  box-shadow:
    0 0 0 1px rgba(44, 246, 228, 0.06),
    0 24px 48px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.hero-panel-inner {
  padding: 1.1rem 1.15rem;
}

.hero-panel-label {
  margin: 0 0 0.85rem;
  font-size: 0.62rem;
  color: var(--cyan);
  opacity: 0.95;
}

.hero-panel-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  font-size: 0.62rem;
  color: var(--text-muted);
}

.hero-panel-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.45rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-panel-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.hero-panel-list span:last-child {
  color: rgba(246, 248, 255, 0.72);
  text-align: right;
}

.chip-row {
  list-style: none;
  margin: 0 0 1.75rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.chip-row li {
  padding: 0.35rem 0.65rem;
  font-size: 0.58rem;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 0 20px rgba(167, 139, 250, 0.05);
}

.subtitle strong {
  color: rgba(246, 248, 255, 0.88);
  font-weight: 500;
}

@keyframes framePulse {
  0%,
  100% {
    opacity: 0.45;
    transform: rotate(0deg);
  }
  50% {
    opacity: 0.65;
    transform: rotate(1deg) scale(1.02);
  }
}

@media (max-width: 900px) {
  .hero-frame {
    display: none;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem 0.35rem 0.45rem;
  margin-bottom: 1.5rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
}

.hero-badge-dot {
  position: relative;
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
  animation: pulse 2s ease-in-out infinite;
}

.hero-badge-dot::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1px solid rgba(44, 246, 228, 0.35);
  animation: pingDot 2.4s ease-out infinite;
}

@keyframes pingDot {
  0% {
    transform: scale(0.65);
    opacity: 0.9;
  }
  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.45;
  }
}

.hero-title-accent {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 5.5vw, 3.35rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  background: linear-gradient(
    110deg,
    var(--cyan) 0%,
    #7afcff 22%,
    var(--violet) 52%,
    var(--magenta) 78%,
    #fff 100%
  );
  background-size: 160% 160%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: holoShift 14s ease-in-out infinite;
  text-shadow: 0 0 42px rgba(44, 246, 228, 0.15);
}

@keyframes holoShift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.subtitle {
  margin: 0 0 2rem;
  max-width: 520px;
  font-size: 1.125rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

/* Section blocks */
.section-head {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}

.section-index {
  font-weight: 500;
  font-size: 0.72rem;
  color: var(--magenta);
  opacity: 0.95;
  line-height: 1.2;
  padding-top: 0.35rem;
}

.section-head-text h2 {
  margin: 0 0 0.25rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.65rem, 3.2vw, 2.15rem);
  letter-spacing: -0.02em;
}

.section-lead {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.about-text {
  margin: 0;
  max-width: 720px;
  font-size: 1.02rem;
  font-weight: 300;
  color: var(--text-muted);
}

.about-text strong {
  color: rgba(246, 248, 255, 0.9);
  font-weight: 500;
}

/* Services grid */
.services-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1320px) {
  .services-grid--dense {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.card {
  position: relative;
  padding: 1.5rem 1.35rem 1.45rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface);
  backdrop-filter: blur(16px) saturate(160%);
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%);
  transition:
    transform 280ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 280ms ease,
    box-shadow 280ms ease;
}

.card-tag {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  font-size: 0.55rem;
  font-weight: 500;
  color: var(--cyan);
  opacity: 0.85;
  letter-spacing: 0.12em;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(700px circle at 50% 0%, rgba(46, 230, 214, 0.12), transparent 52%);
  opacity: 0;
  transition: opacity 320ms ease;
  pointer-events: none;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(44, 246, 228, 0.38);
  box-shadow:
    0 0 0 1px rgba(255, 78, 205, 0.12),
    0 0 48px rgba(44, 246, 228, 0.08),
    0 28px 56px rgba(0, 0, 0, 0.55);
}

.card:hover::before {
  opacity: 1;
}

.card-line {
  position: absolute;
  top: 0;
  left: 1.35rem;
  right: 1.35rem;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--magenta), var(--violet), transparent);
  opacity: 0.75;
}

.card h3 {
  margin: 0.35rem 3.5rem 0.65rem 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}

.card p {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Contact */
.contact-form {
  position: relative;
  max-width: 560px;
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-strong);
  background: var(--elevated);
  backdrop-filter: blur(18px) saturate(160%);
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.35);
}

.contact-form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1.75rem;
  right: 1.75rem;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(44, 246, 228, 0.65),
    rgba(255, 78, 205, 0.45),
    rgba(167, 139, 250, 0.55),
    transparent
  );
  border-radius: 1px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 1.1rem;
}

label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  background: rgba(3, 3, 12, 0.65);
  color: var(--text);
  border-radius: var(--radius-md);
  padding: 0.8rem 1rem;
  font: inherit;
  transition: border-color 200ms ease, box-shadow 200ms ease, background 200ms ease;
}

input::placeholder,
textarea::placeholder {
  color: rgba(228, 232, 255, 0.28);
}

input:focus,
textarea:focus {
  outline: none;
  border-color: rgba(46, 230, 214, 0.45);
  box-shadow: 0 0 0 3px var(--cyan-dim);
  background: rgba(8, 10, 18, 0.85);
}

/* Buttons */
.btn {
  border: none;
  border-radius: var(--radius-md);
  padding: 0.8rem 1.35rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  cursor: pointer;
  transition:
    transform 200ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 200ms ease,
    opacity 200ms ease,
    background 200ms ease,
    border-color 200ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #020408;
  background: linear-gradient(135deg, var(--cyan) 0%, #8fffea 38%, var(--violet) 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.14) inset,
    0 12px 36px rgba(44, 246, 228, 0.28),
    0 0 28px rgba(255, 78, 205, 0.12);
}

.btn-primary:hover {
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.2) inset,
    0 16px 44px rgba(44, 246, 228, 0.38),
    0 0 40px rgba(255, 78, 205, 0.18);
}

.btn-outline {
  border: 1px solid var(--border-strong);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.btn-outline:hover {
  border-color: rgba(44, 246, 228, 0.45);
  background: rgba(44, 246, 228, 0.07);
  box-shadow: 0 0 24px rgba(255, 78, 205, 0.08);
}

.btn-ghost {
  border: 1px solid transparent;
  background: transparent;
  color: var(--text-muted);
}

.btn-ghost:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.btn:disabled {
  cursor: not-allowed;
  transform: none;
  opacity: 0.65;
}

.btn-loading {
  display: none;
}

.contact-form.is-loading .btn-text {
  display: none;
}

.contact-form.is-loading .btn-loading {
  display: inline;
}

.form-status {
  min-height: 1.45rem;
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.form-status.is-success {
  color: var(--success);
}

.form-status.is-error {
  color: var(--error);
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 2rem 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.35));
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
}

.footer-brand {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-meta {
  margin: 0;
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(4px);
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.75s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* Full-viewport neural / cosmos canvas */
.neural-field {
  position: fixed;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  opacity: 0.72;
  mix-blend-mode: normal;
}

/* Terminal cursor after logotype */
.brand-cursor {
  display: inline-block;
  width: 2px;
  height: 1em;
  margin-left: 3px;
  vertical-align: text-bottom;
  background: linear-gradient(180deg, var(--cyan), var(--magenta));
  border-radius: 1px;
  animation: brandBlink 0.95s steps(2, start) infinite;
  box-shadow: 0 0 12px rgba(44, 246, 228, 0.55);
}

@keyframes brandBlink {
  0%,
  45% {
    opacity: 1;
  }
  50%,
  100% {
    opacity: 0;
  }
}

/* Tech chips cascade in */
.chip-row--stagger li {
  opacity: 0;
  transform: translateY(8px);
  animation: chipRise 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.chip-row--stagger li:nth-child(1) {
  animation-delay: 5.6s;
}
.chip-row--stagger li:nth-child(2) {
  animation-delay: 5.72s;
}
.chip-row--stagger li:nth-child(3) {
  animation-delay: 5.84s;
}
.chip-row--stagger li:nth-child(4) {
  animation-delay: 5.96s;
}
.chip-row--stagger li:nth-child(5) {
  animation-delay: 6.08s;
}

@keyframes chipRise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.js-type-about.is-typing {
  color: var(--text-muted);
}

@media (prefers-reduced-motion: reduce) {
  .orb,
  .hero-frame,
  .hero-badge-dot,
  .scanlines,
  .hero-title-accent,
  .hero-badge-dot::after,
  .brand-cursor {
    animation: none;
  }

  .hero-badge-dot::after {
    display: none;
  }

  .neural-field {
    display: none !important;
  }

  .chip-row--stagger li {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .reveal {
    filter: none;
    transition-duration: 0.01ms;
  }
}

.section--tight {
  padding-top: clamp(2.5rem, 5vw, 3.5rem);
}

.section--alt {
  background: linear-gradient(180deg, rgba(44, 246, 228, 0.02), transparent 40%);
}

[id].section {
  scroll-margin-top: 6.5rem;
}

.prose-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 900px) {
  .prose-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.prose-grid--3 {
  grid-template-columns: 1fr;
}

@media (min-width: 720px) {
  .prose-grid--3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .prose-grid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.prose,
.prose-block p {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.65;
}

.prose strong,
.prose-block strong {
  color: rgba(246, 248, 255, 0.92);
  font-weight: 500;
}

.prose-block {
  padding: 1rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(8, 10, 18, 0.45);
}

.prose-title {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: rgba(246, 248, 255, 0.92);
}

.mega-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 900px;
}

.mega-list li {
  padding: 0.75rem 1rem;
  border-left: 3px solid rgba(44, 246, 228, 0.35);
  background: rgba(0, 0, 0, 0.25);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.mega-k {
  display: inline-block;
  min-width: 8.5rem;
  color: var(--cyan);
  font-weight: 500;
  letter-spacing: 0.04em;
}

.founder-grid {
  display: grid;
  gap: 2rem;
  align-items: start;
  grid-template-columns: 1fr;
}

@media (min-width: 900px) {
  .founder-grid {
    grid-template-columns: minmax(200px, 260px) minmax(0, 1fr);
  }
}

.founder-holo {
  margin: 0;
  padding: 0.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-strong);
  background: rgba(4, 6, 14, 0.65);
  box-shadow: 0 0 40px rgba(44, 246, 228, 0.06);
}

.founder-holo-svg {
  display: block;
  width: 100%;
  height: auto;
  max-width: 220px;
  margin: 0 auto;
}

.founder-cap {
  margin: 0.5rem 0 0;
  font-size: 0.52rem;
  color: rgba(220, 228, 255, 0.45);
  text-align: center;
  letter-spacing: 0.06em;
}

.founder-lede,
.founder-bio {
  margin: 0 0 1rem;
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.65;
}

.founder-lede strong,
.founder-bio strong {
  color: rgba(246, 248, 255, 0.95);
  font-weight: 600;
}

.founder-bio a {
  color: var(--cyan);
  text-decoration: none;
  border-bottom: 1px solid rgba(44, 246, 228, 0.35);
}

.founder-bio a:hover {
  border-bottom-color: var(--cyan);
}

.founder-quote {
  margin: 0 0 1.25rem;
  padding: 1rem 1.15rem;
  border-left: 3px solid rgba(167, 139, 250, 0.55);
  background: rgba(167, 139, 250, 0.06);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.founder-quote p {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-style: italic;
  color: rgba(246, 248, 255, 0.88);
}

.founder-quote footer {
  font-size: 0.65rem;
  color: var(--text-muted);
}

.founder-cta {
  margin-bottom: 1.5rem;
}

.founder-ro {
  padding: 1.1rem 1.15rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 78, 205, 0.2);
  background: rgba(255, 78, 205, 0.04);
}

.founder-ro-title {
  margin: 0 0 0.6rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: rgba(246, 248, 255, 0.95);
}

.founder-ro p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(228, 232, 255, 0.78);
}

.founder-ro a {
  color: var(--cyan);
  text-decoration: none;
  border-bottom: 1px solid rgba(44, 246, 228, 0.35);
}

.press-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 820px;
}

.press-list li {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--border);
}

.press-list a {
  color: var(--cyan);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
}

.press-list a:hover {
  text-decoration: underline;
}

.press-meta {
  font-size: 0.58rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}

.press-static {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.5;
}

@media (max-width: 800px) {
  .hero {
    min-height: auto;
    padding-bottom: 2rem;
  }

  .site-nav {
    gap: 0.25rem;
  }

  .site-nav a {
    padding: 0.3rem 0.45rem;
  }
}
