:root {
  --bg: #050505;
  --ink: #f1f1ee;
  --muted: #a9aaa5;
  --panel: #111211;
  --panel-2: #1d1e1d;
  --line: rgba(255, 255, 255, 0.16);
  --line-strong: rgba(255, 255, 255, 0.32);
  --cyan: #9adbd0;
  --red: #d94f49;
  --gold: #dfc46b;
  --violet: #8d84ff;
  --green: #98c67a;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  letter-spacing: 0;
}

.motion-canvas {
  position: fixed;
  inset: 0;
  z-index: 5;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  opacity: 0.28;
  mix-blend-mode: screen;
}

body::selection {
  background: var(--cyan);
  color: #050505;
}

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

button,
input,
textarea {
  font: inherit;
}

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

main {
  position: relative;
  z-index: 20;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 68px;
  padding: 14px 28px;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 5, 5, 0.76);
  backdrop-filter: blur(18px);
  animation: headerDrop 720ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  line-height: 1;
}

.brand img {
  width: 34px;
  height: 28px;
  object-fit: contain;
  border: 1px solid var(--line);
  background: #0b0b0b;
  animation: logoSignal 4s ease-in-out infinite;
}

.brand span {
  font-size: 0.92rem;
  animation: textFlicker 6.5s steps(1, end) infinite;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--muted);
  font-size: 0.84rem;
}

.nav-links a {
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--ink);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px 0;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 88vh;
  padding: 118px 28px 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.1), rgba(5, 5, 5, 0.78) 68%),
    linear-gradient(180deg, rgba(5, 5, 5, 0), #050505 96%),
    url("assets/skyenginex-network.png") center / cover no-repeat;
  overflow: hidden;
  animation: heroPan 18s ease-in-out infinite alternate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 68px 0 auto;
  height: 1px;
  background: var(--line);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(transparent 0 48%, rgba(154, 219, 208, 0.12) 50%, transparent 52%),
    repeating-linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.045) 0,
      rgba(255, 255, 255, 0.045) 1px,
      transparent 1px,
      transparent 8px
    );
  background-size: 100% 220px, 100% 8px;
  animation: scanSweep 6.5s linear infinite;
  opacity: 0.26;
  pointer-events: none;
}

.hero-shade {
  position: absolute;
  inset: auto 0 0;
  height: 32%;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0), #050505);
  pointer-events: none;
}

.hero-scan {
  position: absolute;
  inset: 72px 0 0;
  background:
    linear-gradient(90deg, transparent, rgba(154, 219, 208, 0.2), transparent),
    linear-gradient(180deg, transparent, rgba(217, 79, 73, 0.08), transparent);
  width: 34%;
  transform: skewX(-18deg);
  animation: heroBeam 5.8s ease-in-out infinite;
  opacity: 0.42;
  pointer-events: none;
}

.hero-signal {
  position: absolute;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(154, 219, 208, 0.28);
  border-radius: 50%;
  pointer-events: none;
}

.hero-signal::before,
.hero-signal::after {
  content: "";
  position: absolute;
  inset: 18%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: inherit;
  animation: signalPulse 2.6s ease-out infinite;
}

.hero-signal::after {
  inset: 34%;
  border-color: rgba(217, 79, 73, 0.28);
  animation-delay: 0.8s;
}

.signal-one {
  right: 16%;
  top: 18%;
  animation: signalFloat 7s ease-in-out infinite;
}

.signal-two {
  left: 8%;
  bottom: 20%;
  width: 170px;
  height: 170px;
  animation: signalFloat 8s ease-in-out infinite reverse;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: calc(88vh - 118px);
  max-width: 1360px;
  margin: 0 auto;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 96px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
  margin-bottom: 28px;
  color: var(--ink);
  font-size: 0.86rem;
}

.hero-meta span {
  border-left: 2px solid var(--cyan);
  padding-left: 10px;
}

.hero h1 {
  position: relative;
  max-width: 900px;
  margin: 0;
  font-size: 5.4rem;
  line-height: 0.8;
  font-weight: 1000;
  text-transform: uppercase;
  animation: heroTitleIn 900ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero h1::before,
.hero h1::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
}

.hero h1::before {
  color: var(--cyan);
  transform: translate(4px, -2px);
  clip-path: inset(0 0 55% 0);
  animation: glitchTop 4.2s steps(1, end) infinite;
}

.hero h1::after {
  color: var(--red);
  transform: translate(-3px, 2px);
  clip-path: inset(54% 0 0 0);
  animation: glitchBottom 4.2s steps(1, end) infinite;
}

.hero-line {
  max-width: 560px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.7;
  animation: fadeRise 900ms 220ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
  animation: fadeRise 900ms 340ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  border-radius: 8px;
  padding: 0 18px;
  border: 1px solid var(--line-strong);
  font-weight: 800;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease;
  will-change: transform;
}

.action svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.action:hover,
.action:focus-visible {
  transform: translateY(-3px) scale(1.02);
}

.action.primary {
  background: var(--ink);
  color: #050505;
  animation: buttonPulse 3.3s ease-in-out infinite;
}

.action.ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
}

.hero-strip {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(5, 5, 5, 0.88);
}

.strip-track {
  display: flex;
  width: max-content;
  animation: tickerMove 24s linear infinite;
}

.hero-strip span {
  width: 220px;
  min-height: 58px;
  display: grid;
  place-items: center;
  border-right: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-align: center;
  padding: 8px;
}

.hero-strip span:last-child {
  border-right: 0;
}

.section {
  position: relative;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    var(--bg);
  background-size: 84px 84px;
  animation: gridShift 18s linear infinite;
  overflow: hidden;
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 0 42%, rgba(255, 255, 255, 0.035) 50%, transparent 58%);
  transform: translateX(-120%);
  animation: sectionSweep 9s ease-in-out infinite;
  pointer-events: none;
}

.section-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 92px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading.compact {
  max-width: 680px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

h2,
h3,
p {
  margin-top: 0;
}

h2 {
  margin-bottom: 0;
  font-size: 2.65rem;
  line-height: 1;
  font-weight: 1000;
}

h3 {
  font-size: 1.18rem;
  line-height: 1.15;
}

.lead {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.about {
  background: #080808;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 34px;
  align-items: center;
}

.about-media {
  position: relative;
  min-height: 320px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 50%, rgba(154, 219, 208, 0.1), transparent 45%),
    #151615;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-media::after,
.network-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(154, 219, 208, 0.16), transparent);
  transform: translateX(-120%);
  animation: panelSweep 4.8s ease-in-out infinite;
  pointer-events: none;
}

.about-media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  opacity: 0.9;
  animation: logoFloat 6.5s ease-in-out infinite;
}

.about-points {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.about-points article {
  position: relative;
  min-height: 144px;
  background: #101110;
  padding: 24px;
  overflow: hidden;
}

.about-points article::before,
.future-grid article::before,
.assurance-list article::before {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 2px solid rgba(154, 219, 208, 0.38);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 540ms ease;
}

.about-points article.is-visible::before,
.future-grid article.is-visible::before,
.assurance-list article.is-visible::before {
  transform: scaleX(1);
}

.about-points strong,
.about-points span {
  display: block;
}

.about-points strong {
  margin-bottom: 12px;
  font-size: 1.02rem;
}

.about-points span {
  color: var(--muted);
  line-height: 1.55;
}

.hubs {
  background: #050505;
}

.hub-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: 24px;
  align-items: stretch;
}

.network-visual {
  position: relative;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #0d0d0d;
  box-shadow: var(--shadow);
}

.network-visual img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  animation: mapDrift 12s ease-in-out infinite alternate;
}

.hub-panel {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: var(--panel);
  overflow: hidden;
}

.hub-panel::after {
  content: "";
  position: absolute;
  inset: auto 20px 20px auto;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(217, 79, 73, 0.22);
  border-radius: 50%;
  animation: ringRotate 7s linear infinite;
  pointer-events: none;
}

.hub-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-bottom: 28px;
  position: relative;
  z-index: 5;
}

.hub-tabs button,
.filter-row button {
  position: relative;
  z-index: 2;
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-weight: 800;
  transition:
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.hub-tabs button.is-active,
.filter-row button.is-active,
.hub-tabs button:hover,
.filter-row button:hover {
  border-color: rgba(154, 219, 208, 0.6);
  background: rgba(154, 219, 208, 0.1);
  color: var(--ink);
  transform: translateY(-1px);
}

.hub-role {
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.hub-panel h3 {
  margin-bottom: 16px;
  font-size: 2.25rem;
}

.hub-panel p {
  color: var(--muted);
  line-height: 1.7;
}

.hub-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin: 30px 0 0;
  background: var(--line);
  border: 1px solid var(--line);
}

.hub-stats div {
  background: #090a09;
  padding: 16px;
}

.hub-stats dt {
  color: var(--muted);
  font-size: 0.75rem;
  text-transform: uppercase;
}

.hub-stats dd {
  margin: 8px 0 0;
  font-weight: 900;
}

.vision {
  background:
    radial-gradient(circle at 15% 50%, rgba(154, 219, 208, 0.14), transparent 28%),
    #0b0b0b;
}

.vision-grid {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 60px;
  align-items: start;
}

.vision-copy p {
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.8;
}

.skill-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.skill-cloud span {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 800;
  animation: chipPulse 4s ease-in-out infinite;
}

.skill-cloud span:nth-child(2n) {
  animation-delay: 0.45s;
}

.skill-cloud span:nth-child(3n) {
  animation-delay: 0.9s;
}

.values-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 34px 56px;
  align-items: center;
}

.values-grid .section-heading {
  margin-bottom: 0;
}

.value-chart {
  position: relative;
  width: 250px;
  height: 250px;
  justify-self: end;
}

.donut {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: conic-gradient(
    var(--cyan) 0 35.5%,
    var(--ink) 35.5% 59.2%,
    var(--red) 59.2% 80.1%,
    var(--gold) 80.1% 94.3%,
    var(--violet) 94.3% 100%
  );
  box-shadow: inset 0 0 0 34px #050505;
  animation: donutSpin 18s linear infinite;
}

.chart-center {
  position: absolute;
  inset: 62px;
  display: grid;
  place-items: center;
  align-content: center;
  border-radius: 50%;
  background: #111211;
  text-align: center;
}

.chart-center strong {
  font-size: 2rem;
}

.chart-center span {
  color: var(--muted);
  font-size: 0.78rem;
}

.value-list {
  grid-column: 1 / -1;
  display: grid;
  gap: 12px;
}

.value-list article {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--panel);
  padding: 0 18px;
}

.value-list article::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--bar);
  background: linear-gradient(90deg, rgba(154, 219, 208, 0.26), rgba(217, 79, 73, 0.08));
  transform-origin: left;
  animation: valueFlow 4s ease-in-out infinite;
}

.value-list span,
.value-list strong {
  position: relative;
  z-index: 1;
}

.value-list span {
  min-width: 0;
  overflow-wrap: anywhere;
  font-weight: 800;
}

.future {
  background: #090909;
}

.future-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.future-grid article {
  position: relative;
  min-height: 250px;
  padding: 22px;
  background: #101110;
  overflow: hidden;
}

.future-grid span {
  color: var(--red);
  font-weight: 1000;
}

.future-grid h3 {
  margin: 40px 0 16px;
}

.future-grid p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.portfolio {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent 30%),
    #050505;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.filter-row button {
  padding: 0 14px;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.project-card {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 300px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: #070707;
  overflow: hidden;
  transition:
    transform 260ms ease,
    border-color 180ms ease,
    opacity 180ms ease;
  animation: cardIdle 7s ease-in-out infinite;
}

.project-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.3;
  transition: opacity 300ms ease, transform 500ms ease;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) brightness(0.8);
}

.project-card:hover .project-image {
  opacity: 0.5;
  transform: scale(1.05);
}

.project-card::before {
  content: "";
  position: absolute;
  inset: 18px 18px auto auto;
  width: 92px;
  height: 92px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  animation: ringRotate 8s linear infinite;
}

.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0 42%, rgba(154, 219, 208, 0.18) 50%, transparent 58%);
  transform: translateX(-120%);
  transition: transform 540ms ease;
  pointer-events: none;
}

.project-card:hover {
  animation: none;
  transform: translateY(-8px) scale(1.015);
  border-color: rgba(154, 219, 208, 0.46);
}

.project-card:hover::after {
  transform: translateX(120%);
}

.project-card.is-hidden {
  display: none;
}

.project-mark {
  position: absolute;
  top: 18px;
  left: 18px;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--cyan);
  font-weight: 1000;
  animation: markBlink 3s steps(1, end) infinite;
}

.project-card h3,
.project-card p,
.project-card span {
  position: relative;
  z-index: 1;
}

.project-card h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
}

.project-card p {
  color: var(--muted);
  line-height: 1.55;
}

.project-card span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.investment {
  background:
    radial-gradient(circle at 85% 24%, rgba(217, 79, 73, 0.16), transparent 28%),
    #0a0a0a;
}

.investment-grid {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 52px;
  align-items: start;
}

.assurance-list {
  display: grid;
  gap: 12px;
}

.assurance-list article {
  position: relative;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  min-height: 90px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 18px;
  overflow: hidden;
}

.assurance-list strong {
  color: var(--red);
  font-size: 1.3rem;
}

.assurance-list span {
  color: var(--muted);
  line-height: 1.55;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 32px 28px;
  background: #050505;
  color: var(--muted);
}

.site-footer strong {
  display: block;
  color: var(--ink);
  margin-bottom: 8px;
}

.site-footer address {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-style: normal;
}

.site-footer a:hover {
  color: var(--ink);
}

@media (prefers-reduced-motion: no-preference) {
  .has-js .section-heading,
  .has-js .about-media,
  .has-js .network-visual,
  .has-js .hub-panel,
  .has-js .vision-copy,
  .has-js .skill-cloud span,
  .has-js .value-chart,
  .has-js .value-list article {
    opacity: 0.72;
    transform: translateY(18px);
    transition:
      opacity 520ms ease,
      transform 520ms ease;
  }

  .has-js .section-heading.is-visible,
  .has-js .about-media.is-visible,
  .has-js .network-visual.is-visible,
  .has-js .hub-panel.is-visible,
  .has-js .vision-copy.is-visible,
  .has-js .skill-cloud span.is-visible,
  .has-js .value-chart.is-visible,
  .has-js .value-list article.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .has-js .about-points article,
  .has-js .future-grid article,
  .has-js .assurance-list article {
    transform: translateY(16px);
    transition: transform 420ms ease;
  }

  .has-js .about-points article.is-visible,
  .has-js .future-grid article.is-visible,
  .has-js .assurance-list article.is-visible {
    transform: translateY(0);
  }
}

.hub-panel.is-changing {
  animation: panelBump 360ms ease;
}

@keyframes headerDrop {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes logoSignal {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(154, 219, 208, 0);
  }
  50% {
    box-shadow: 0 0 22px rgba(154, 219, 208, 0.26);
  }
}

@keyframes textFlicker {
  0%,
  93%,
  100% {
    opacity: 1;
  }
  94% {
    opacity: 0.54;
  }
  95% {
    opacity: 1;
  }
  96% {
    opacity: 0.78;
  }
}

@keyframes heroPan {
  from {
    background-position: 50% 50%, 50% 50%, 45% 48%;
  }
  to {
    background-position: 50% 50%, 50% 50%, 56% 52%;
  }
}

@keyframes scanSweep {
  from {
    background-position: 0 -260px, 0 0;
  }
  to {
    background-position: 0 520px, 0 80px;
  }
}

@keyframes heroBeam {
  0% {
    left: -40%;
  }
  48%,
  100% {
    left: 108%;
  }
}

@keyframes signalPulse {
  0% {
    opacity: 0.75;
    transform: scale(0.72);
  }
  100% {
    opacity: 0;
    transform: scale(1.45);
  }
}

@keyframes signalFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  50% {
    transform: translate3d(16px, -18px, 0) rotate(8deg);
  }
}

@keyframes heroTitleIn {
  from {
    opacity: 0;
    transform: translateY(42px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes glitchTop {
  0%,
  84%,
  100% {
    opacity: 0;
    transform: translate(0, 0);
  }
  85% {
    opacity: 0.72;
    transform: translate(8px, -3px);
  }
  86% {
    opacity: 0;
  }
  88% {
    opacity: 0.52;
    transform: translate(-5px, -2px);
  }
  89% {
    opacity: 0;
  }
}

@keyframes glitchBottom {
  0%,
  84%,
  100% {
    opacity: 0;
    transform: translate(0, 0);
  }
  85% {
    opacity: 0.6;
    transform: translate(-7px, 4px);
  }
  86% {
    opacity: 0;
  }
  88% {
    opacity: 0.5;
    transform: translate(5px, 3px);
  }
  89% {
    opacity: 0;
  }
}

@keyframes fadeRise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes buttonPulse {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(241, 241, 238, 0);
  }
  50% {
    box-shadow: 0 0 26px rgba(241, 241, 238, 0.22);
  }
}

@keyframes tickerMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes gridShift {
  from {
    background-position: 0 0, 0 0, 0 0;
  }
  to {
    background-position: 84px 0, 0 84px, 0 0;
  }
}

@keyframes sectionSweep {
  0%,
  42% {
    transform: translateX(-120%);
  }
  64%,
  100% {
    transform: translateX(120%);
  }
}

@keyframes panelSweep {
  0%,
  42% {
    transform: translateX(-120%);
  }
  70%,
  100% {
    transform: translateX(120%);
  }
}

@keyframes logoFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(0, -10px, 0) scale(1.025);
  }
}

@keyframes mapDrift {
  from {
    transform: scale(1.02) translate3d(-8px, 0, 0);
  }
  to {
    transform: scale(1.06) translate3d(8px, -8px, 0);
  }
}

@keyframes ringRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes chipPulse {
  0%,
  100% {
    border-color: var(--line);
    transform: translateY(0);
  }
  50% {
    border-color: rgba(154, 219, 208, 0.65);
    transform: translateY(-3px);
  }
}

@keyframes donutSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes barGrow {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

@keyframes valueFlow {
  0%,
  100% {
    opacity: 0.72;
    filter: saturate(1);
  }
  50% {
    opacity: 1;
    filter: saturate(1.45);
  }
}

@keyframes panelBump {
  0% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-4px) scale(1.012);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}

@keyframes cardIdle {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

@keyframes markBlink {
  0%,
  82%,
  100% {
    color: var(--cyan);
  }
  83% {
    color: var(--ink);
  }
  84% {
    color: var(--red);
  }
  85% {
    color: var(--cyan);
  }
}

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

  .motion-canvas {
    display: none;
  }
}

@media (min-width: 760px) {
  .hero h1 {
    font-size: 8rem;
  }
}

@media (min-width: 1120px) {
  .hero h1 {
    font-size: 11.5rem;
  }
}

@media (max-width: 980px) {
  .site-header {
    padding: 12px 20px;
  }

  .menu-toggle {
    display: grid;
  }

  .nav-links {
    position: fixed;
    top: 68px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(10, 10, 10, 0.96);
    box-shadow: var(--shadow);
    overflow: hidden;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    min-height: 50px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--line);
    padding: 0 18px;
  }

  .nav-links a:last-child {
    border-bottom: 0;
  }

  .hero {
    min-height: 86vh;
    padding-right: 20px;
    padding-left: 20px;
  }

  .hero-content {
    min-height: calc(86vh - 118px);
    padding-bottom: 72px;
  }

  .hero h1 {
    font-size: 5rem;
  }

  .hero-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .section-inner {
    width: min(100% - 32px, 760px);
    padding: 70px 0;
  }

  .about-grid,
  .hub-layout,
  .vision-grid,
  .investment-grid {
    grid-template-columns: 1fr;
  }

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

  .values-grid {
    grid-template-columns: 1fr;
  }

  .value-chart {
    justify-self: start;
  }

  .future-grid,
  .project-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* --- Modal & New Components --- */
.project-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms ease;
}

.project-modal.is-active {
  opacity: 1;
  pointer-events: auto;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 5, 0.85);
  backdrop-filter: blur(12px);
}

.modal-content {
  position: relative;
  width: min(700px, 100%);
  background: #111211;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  padding: 40px;
  transform: translateY(20px);
  transition: transform 300ms ease;
  box-shadow: var(--shadow);
}

.project-modal.is-active .modal-content {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: var(--muted);
  font-size: 24px;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: color 180ms ease;
}

.modal-close:hover {
  color: var(--ink);
}

.modal-tag {
  color: var(--cyan);
  font-weight: 1000;
  font-size: 0.9rem;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

.modal-header h2 {
  font-size: 2.2rem;
  margin-bottom: 24px;
}

.modal-category {
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 12px;
}

.modal-desc {
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.05rem;
  margin-bottom: 32px;
}

.modal-tech strong {
  display: block;
  margin-bottom: 12px;
  font-size: 0.9rem;
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tech-tags span {
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 800;
}

/* Contact Form */
.contact-section {
  background: #080808;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}

.contact-form {
  display: grid;
  gap: 20px;
}

.form-group {
  display: grid;
  gap: 8px;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--cyan);
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: #111211;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  color: var(--ink);
  transition: border-color 180ms ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--cyan);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form button {
  justify-self: start;
}

.social-links {
  display: flex;
  gap: 20px;
  margin-top: 32px;
}

.social-links a {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  place-items: center;
  transition: all 180ms ease;
  background: rgba(255, 255, 255, 0.02);
}

.social-links a:hover {
  border-color: var(--cyan);
  transform: translateY(-3px);
  background: rgba(154, 219, 208, 0.05);
}

.social-links svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

@media (max-width: 980px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 620px) {
  .modal-content {
    padding: 30px 20px;
  }
  .modal-header h2 {
    font-size: 1.6rem;
  }
}
.hub-tabs {
  position: relative; /* Z-index'in çalışması için gerekli */
  z-index: 50;        /* Diğer katmanların üzerine çıkarır[cite: 3] */
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}