:root {
  --bg: #050816;
  --bg-deep: #02040c;
  --bg-soft: #0a1224;
  --surface: rgba(255, 255, 255, 0.055);
  --surface-strong: rgba(255, 255, 255, 0.095);
  --line: rgba(255, 255, 255, 0.14);
  --line-strong: rgba(255, 255, 255, 0.22);
  --text: #f5f7ff;
  --muted: #aeb8cf;
  --muted-strong: #cfd6e8;
  --primary: #ff3dac;
  --primary-soft: rgba(255, 61, 172, 0.18);
  --accent: #22d7ff;
  --accent-soft: rgba(34, 215, 255, 0.16);
  --aura: #8568ff;
  --warm: #ffd789;
  --radius: 8px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
  --nav-height: 76px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.7;
  background:
    linear-gradient(135deg, rgba(255, 61, 172, 0.08), transparent 18%, transparent 68%, rgba(34, 215, 255, 0.08)),
    linear-gradient(180deg, var(--bg-deep) 0%, var(--bg) 44%, #060b18 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.42;
  background:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.18));
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0 28%, rgba(34, 215, 255, 0.055) 36%, transparent 48%),
    linear-gradient(245deg, transparent 0 44%, rgba(255, 61, 172, 0.065) 52%, transparent 64%);
}

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

a:hover {
  color: var(--text);
}

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

::selection {
  color: #070915;
  background: var(--accent);
}

.container-narrow {
  max-width: 980px;
}

.text-muted-soft {
  color: var(--muted);
}

.skip-link {
  position: absolute;
  top: -48px;
  left: 16px;
  z-index: 1050;
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--accent);
  color: #02040c;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

.navbar {
  min-height: var(--nav-height);
  padding: 14px 0;
  transition: background 0.25s ease, border-color 0.25s ease, backdrop-filter 0.25s ease;
}

.glass-nav {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(3, 6, 17, 0.68);
  backdrop-filter: blur(18px);
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 61, 172, 0.26), rgba(34, 215, 255, 0.16)),
    rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 34px rgba(255, 61, 172, 0.25);
}

.brand-mark i {
  color: var(--text);
  font-size: 0.98rem;
}

.brand-word {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-word small {
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.navbar-toggler {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--text);
  border-radius: var(--radius);
  box-shadow: none;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.18rem rgba(34, 215, 255, 0.2);
}

.nav-link {
  color: rgba(245, 247, 255, 0.78);
  font-size: 0.94rem;
  font-weight: 650;
  padding: 10px 14px !important;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 5px;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transition: transform 0.28s var(--ease);
}

.nav-link:hover,
.nav-link.active {
  color: var(--text);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(34, 215, 255, 0.32);
  border-radius: var(--radius);
  background: rgba(34, 215, 255, 0.08);
  color: var(--text);
  font-weight: 700;
  box-shadow: 0 0 28px rgba(34, 215, 255, 0.08);
}

.nav-cta:hover {
  border-color: rgba(255, 61, 172, 0.55);
  box-shadow: 0 0 32px rgba(255, 61, 172, 0.16);
}

.btn {
  min-height: 48px;
  border-radius: var(--radius);
  font-weight: 800;
  letter-spacing: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: transform 0.25s var(--ease), border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary-glow {
  border: 1px solid rgba(255, 61, 172, 0.64);
  background:
    linear-gradient(135deg, rgba(255, 61, 172, 0.94), rgba(133, 104, 255, 0.7)),
    var(--primary);
  color: #fff;
  box-shadow: 0 18px 52px rgba(255, 61, 172, 0.22);
}

.btn-primary-glow:hover {
  color: #fff;
  box-shadow: 0 24px 64px rgba(255, 61, 172, 0.32);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--text);
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(14px);
}

.btn-ghost:hover {
  color: var(--text);
  border-color: rgba(34, 215, 255, 0.48);
  background: rgba(34, 215, 255, 0.09);
}

.hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: calc(var(--nav-height) + 54px) 0 78px;
  background:
    linear-gradient(90deg, rgba(2, 4, 12, 0.96) 0%, rgba(3, 7, 20, 0.82) 42%, rgba(5, 8, 22, 0.48) 100%),
    linear-gradient(180deg, rgba(2, 4, 12, 0.1), rgba(2, 4, 12, 0.92)),
    url("../img/hero.jpg") center right / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 61, 172, 0.11), transparent 32%, rgba(34, 215, 255, 0.09) 72%, transparent),
    repeating-linear-gradient(90deg, transparent 0 80px, rgba(255, 255, 255, 0.028) 80px 81px);
  mix-blend-mode: screen;
  opacity: 0.7;
  animation: spectralShift 12s ease-in-out infinite alternate;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 180px;
  background: linear-gradient(180deg, transparent, var(--bg));
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 790px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--muted-strong);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 42px;
  height: 1px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.hero h1,
.subhero h1 {
  margin: 0;
  max-width: 900px;
  font-size: clamp(3rem, 8vw, 7.6rem);
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: 0;
}

.hero h1 span,
.gradient-text {
  color: transparent;
  background: linear-gradient(100deg, var(--text), #ffdff1 28%, var(--primary) 55%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-lead {
  max-width: 640px;
  margin: 26px 0 0;
  color: var(--muted-strong);
  font-size: clamp(1.12rem, 2vw, 1.45rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 720px;
  margin-top: 46px;
}

.metric {
  min-height: 106px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(16px);
}

.metric strong {
  display: block;
  color: var(--text);
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1;
}

.metric span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.signal-band {
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 61, 172, 0.8), rgba(34, 215, 255, 0.7), transparent);
  box-shadow: 0 0 24px rgba(255, 61, 172, 0.24), 0 0 34px rgba(34, 215, 255, 0.18);
}

.section {
  position: relative;
  padding: 118px 0;
}

.section-tight {
  padding: 86px 0;
}

.section-band {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.01)),
    rgba(255, 255, 255, 0.012);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.section-kicker {
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-title {
  max-width: 850px;
  margin: 0;
  font-size: clamp(2rem, 4.4vw, 4.4rem);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: 0;
}

.section-lead {
  max-width: 710px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: end;
}

.statement-stack {
  display: grid;
  gap: 14px;
}

.statement {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 76px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
  backdrop-filter: blur(16px);
}

.statement i {
  width: 42px;
  height: 42px;
  display: inline-grid;
  flex: 0 0 42px;
  place-items: center;
  border-radius: var(--radius);
  color: var(--accent);
  background: rgba(34, 215, 255, 0.09);
  box-shadow: inset 0 0 0 1px rgba(34, 215, 255, 0.22);
}

.statement strong {
  display: block;
  font-size: 1.15rem;
}

.statement span {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
}

.glass-card,
.system-card,
.insight-card,
.project-card,
.legal-card,
.contact-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.082), rgba(255, 255, 255, 0.032));
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.system-card {
  height: 100%;
  padding: 28px;
  transition: transform 0.28s var(--ease), border-color 0.28s ease, box-shadow 0.28s ease;
}

.system-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 61, 172, 0.45);
  box-shadow: 0 24px 70px rgba(255, 61, 172, 0.1);
}

.icon-box {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: var(--radius);
  color: var(--text);
  background:
    linear-gradient(135deg, rgba(255, 61, 172, 0.26), rgba(34, 215, 255, 0.16)),
    rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16), 0 0 34px rgba(34, 215, 255, 0.08);
}

.system-card h3,
.project-card h3,
.insight-card h3 {
  margin: 0 0 12px;
  font-size: 1.25rem;
  font-weight: 850;
  letter-spacing: 0;
}

.system-card p,
.project-card p,
.insight-card p {
  margin: 0;
  color: var(--muted);
}

.project-card {
  height: 100%;
  overflow: hidden;
  transition: transform 0.32s var(--ease), border-color 0.32s ease, box-shadow 0.32s ease;
}

.project-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 61, 172, 0.58);
  box-shadow: 0 28px 80px rgba(255, 61, 172, 0.13), 0 0 0 1px rgba(34, 215, 255, 0.08);
}

.project-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #080d19;
}

.project-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease), filter 0.5s ease;
}

.project-card:hover .project-media img {
  transform: scale(1.05);
  filter: saturate(1.08) contrast(1.06);
}

.project-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 35%, rgba(2, 4, 12, 0.76)),
    linear-gradient(120deg, rgba(255, 61, 172, 0.16), transparent 44%, rgba(34, 215, 255, 0.12));
}

.project-body {
  padding: 26px;
}

.project-type {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 13px;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.process-track {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  position: relative;
}

.process-track::before {
  content: "";
  position: absolute;
  top: 42px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0.48;
}

.process-step {
  position: relative;
  z-index: 1;
  min-height: 148px;
  padding: 22px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(4, 8, 20, 0.72);
  backdrop-filter: blur(14px);
}

.process-step span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: var(--radius);
  color: #060817;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--accent));
}

.process-step h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  font-weight: 850;
}

.process-step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.highlight-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 42px;
  align-items: center;
}

.visual-block {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: #070b17;
  box-shadow: var(--shadow);
}

.visual-block img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.04);
}

.visual-block::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent, rgba(2, 4, 12, 0.72)),
    linear-gradient(115deg, rgba(255, 61, 172, 0.18), transparent 38%, rgba(34, 215, 255, 0.14));
  pointer-events: none;
}

.highlight-copy {
  padding: 12px 0;
}

.feature-list {
  display: grid;
  gap: 14px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  gap: 12px;
  color: var(--muted-strong);
}

.feature-list i {
  margin-top: 5px;
  color: var(--primary);
}

.insight-card {
  height: 100%;
  padding: 28px;
  transition: transform 0.28s var(--ease), border-color 0.28s ease;
}

.insight-card:hover {
  transform: translateY(-5px);
  border-color: rgba(34, 215, 255, 0.45);
}

.insight-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: 88px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(120deg, rgba(255, 61, 172, 0.16), transparent 34%, rgba(34, 215, 255, 0.14)),
    rgba(255, 255, 255, 0.025);
}

.cta-band h2 {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 5rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.cta-band p {
  max-width: 680px;
  margin: 18px auto 0;
  color: var(--muted-strong);
  font-size: 1.06rem;
}

.subhero {
  position: relative;
  min-height: 58vh;
  display: flex;
  align-items: end;
  overflow: hidden;
  padding: calc(var(--nav-height) + 72px) 0 78px;
  background:
    linear-gradient(90deg, rgba(2, 4, 12, 0.94), rgba(3, 7, 20, 0.72), rgba(3, 7, 20, 0.9)),
    var(--bg);
}

.subhero.systems-bg {
  background:
    linear-gradient(90deg, rgba(2, 4, 12, 0.95), rgba(4, 8, 20, 0.7), rgba(3, 7, 20, 0.86)),
    url("../img/system.jpg") center / cover no-repeat;
}

.subhero.projects-bg {
  background:
    linear-gradient(90deg, rgba(2, 4, 12, 0.95), rgba(4, 8, 20, 0.66), rgba(3, 7, 20, 0.88)),
    url("../img/game1.jpg") center / cover no-repeat;
}

.subhero.insights-bg {
  background:
    linear-gradient(90deg, rgba(2, 4, 12, 0.95), rgba(4, 8, 20, 0.7), rgba(3, 7, 20, 0.88)),
    url("../img/lab.jpg") center / cover no-repeat;
}

.subhero.contact-bg {
  background:
    linear-gradient(90deg, rgba(2, 4, 12, 0.95), rgba(4, 8, 20, 0.74), rgba(3, 7, 20, 0.9)),
    url("../img/hero.jpg") center / cover no-repeat;
}

.subhero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 58%, var(--bg)),
    repeating-linear-gradient(90deg, transparent 0 88px, rgba(255, 255, 255, 0.025) 88px 89px);
}

.subhero .container {
  position: relative;
  z-index: 1;
}

.subhero p {
  max-width: 720px;
  margin: 22px 0 0;
  color: var(--muted-strong);
  font-size: 1.12rem;
}

.architecture-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: start;
}

.architecture-panel {
  position: sticky;
  top: 108px;
  padding: 30px;
}

.architecture-panel h2 {
  margin: 0 0 18px;
  font-size: clamp(1.8rem, 3.3vw, 3rem);
  font-weight: 900;
  line-height: 1.05;
}

.architecture-panel p {
  color: var(--muted);
}

.capability-list {
  display: grid;
  gap: 18px;
}

.capability {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.044);
}

.capability h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 12px;
  font-size: 1.22rem;
  font-weight: 850;
}

.capability h3 i {
  color: var(--primary);
}

.capability p {
  margin: 0;
  color: var(--muted);
}

.data-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.data-cell {
  min-height: 150px;
  padding: 24px;
  background: rgba(5, 8, 22, 0.92);
}

.data-cell strong {
  display: block;
  margin-bottom: 10px;
  color: var(--text);
  font-size: 1.05rem;
}

.data-cell span {
  color: var(--muted);
  font-size: 0.92rem;
}

.article-list {
  display: grid;
  gap: 18px;
}

.article-row {
  display: grid;
  grid-template-columns: 0.28fr 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 26px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.article-row time {
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.article-row h2 {
  margin: 0 0 8px;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  font-weight: 850;
}

.article-row p {
  margin: 0;
  color: var(--muted);
}

.article-row .read-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  transition: border-color 0.25s ease, background 0.25s ease;
}

.article-row:hover .read-icon {
  border-color: rgba(34, 215, 255, 0.48);
  background: rgba(34, 215, 255, 0.08);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 34px;
  align-items: start;
}

.contact-panel {
  padding: 32px;
}

.form-label {
  color: var(--muted-strong);
  font-size: 0.9rem;
  font-weight: 750;
}

.form-control,
.form-select {
  min-height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  color: var(--text);
  background: rgba(255, 255, 255, 0.055);
}

.form-control:focus,
.form-select:focus {
  color: var(--text);
  border-color: rgba(34, 215, 255, 0.56);
  background: rgba(255, 255, 255, 0.075);
  box-shadow: 0 0 0 0.2rem rgba(34, 215, 255, 0.14);
}

.form-control::placeholder {
  color: rgba(174, 184, 207, 0.62);
}

textarea.form-control {
  min-height: 154px;
  resize: vertical;
}

.form-status {
  display: none;
  margin-top: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(34, 215, 255, 0.32);
  border-radius: var(--radius);
  color: var(--text);
  background: rgba(34, 215, 255, 0.08);
}

.form-status.is-visible {
  display: block;
}

.contact-method {
  display: flex;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-method i {
  width: 40px;
  height: 40px;
  display: grid;
  flex: 0 0 40px;
  place-items: center;
  border-radius: var(--radius);
  color: var(--accent);
  background: rgba(34, 215, 255, 0.08);
}

.contact-method strong {
  display: block;
  margin-bottom: 2px;
}

.contact-method span,
.contact-method a {
  color: var(--muted);
}

.legal-card {
  padding: clamp(26px, 5vw, 54px);
}

.legal-card h2 {
  margin: 40px 0 12px;
  font-size: 1.5rem;
  font-weight: 850;
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
}

.legal-card ul {
  padding-left: 1.1rem;
}

.site-footer {
  padding: 72px 0 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.14));
}

.footer-title {
  margin: 0 0 18px;
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a,
.footer-text {
  color: var(--muted);
  font-size: 0.94rem;
}

.footer-links a:hover {
  color: var(--text);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  margin-top: 52px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 0.9rem;
}

[data-animate] {
  opacity: 0;
  transform: translateY(24px) scale(0.985);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

[data-delay="1"] {
  transition-delay: 0.08s;
}

[data-delay="2"] {
  transition-delay: 0.16s;
}

[data-delay="3"] {
  transition-delay: 0.24s;
}

.parallax-layer {
  will-change: transform;
  transition: transform 0.12s linear;
}

@keyframes spectralShift {
  0% {
    transform: translateX(-1.5%);
    opacity: 0.55;
  }
  100% {
    transform: translateX(1.5%);
    opacity: 0.82;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  [data-animate] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1199.98px) {
  .hero h1,
  .subhero h1 {
    max-width: 820px;
  }

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

  .process-track::before {
    display: none;
  }

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

@media (max-width: 991.98px) {
  .navbar-collapse {
    margin-top: 14px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    background: rgba(3, 6, 17, 0.96);
  }

  .nav-cta {
    justify-content: center;
    margin-top: 10px;
  }

  .hero {
    min-height: auto;
    padding: 136px 0 84px;
    background-position: 60% center;
  }

  .hero-metrics,
  .philosophy-grid,
  .highlight-grid,
  .architecture-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .architecture-panel {
    position: static;
  }

  .visual-block {
    min-height: 420px;
  }

  .article-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .article-row .read-icon {
    justify-self: start;
  }
}

@media (max-width: 767.98px) {
  :root {
    --nav-height: 70px;
  }

  body {
    line-height: 1.65;
  }

  .section {
    padding: 82px 0;
  }

  .section-tight {
    padding: 64px 0;
  }

  .hero h1,
  .subhero h1 {
    font-size: clamp(2.8rem, 15vw, 4.8rem);
  }

  .hero-lead {
    font-size: 1.06rem;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .process-track,
  .data-strip {
    grid-template-columns: 1fr;
  }

  .subhero {
    min-height: 50vh;
    padding-bottom: 58px;
  }

  .visual-block {
    min-height: 340px;
  }

  .contact-panel {
    padding: 24px;
  }
}

@media (max-width: 420px) {
  .brand-word small {
    display: none;
  }

  .statement {
    align-items: flex-start;
  }

  .metric {
    min-height: auto;
  }
}
