:root {
  --bg: #05060a;
  --panel: rgba(255, 255, 255, .08);
  --panel-strong: rgba(255, 255, 255, .14);
  --text: #f6f7fb;
  --muted: #a9b0c2;
  --cyan: #00e5ff;
  --pink: #ff2bd6;
  --acid: #c7ff00;
  --orange: #ff7a18;
  --line: rgba(255, 255, 255, .16);
  --shadow: 0 25px 80px rgba(0, 0, 0, .45);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 5%, rgba(0, 229, 255, .2), transparent 30%),
    radial-gradient(circle at 85% 20%, rgba(255, 43, 214, .18), transparent 32%),
    linear-gradient(135deg, #05060a 0%, #0a0d18 55%, #120914 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

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

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .18;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

.orb {
  position: fixed;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  filter: blur(35px);
  opacity: .42;
  z-index: 0;
  animation: float 9s ease-in-out infinite;
}
.orb-one { background: var(--cyan); left: -150px; top: 220px; }
.orb-two { background: var(--pink); right: -140px; bottom: 60px; animation-delay: -3s; }

.site-header,
main,
footer { position: relative; z-index: 2; }

.site-header {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  padding: 26px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: 12px; font-weight: 900; letter-spacing: -.04em; }
.brand-mark {
  width: 44px; height: 44px; display: grid; place-items: center;
  border: 1px solid var(--line); border-radius: 14px;
  background: linear-gradient(135deg, var(--cyan), var(--pink));
  box-shadow: 0 0 35px rgba(0, 229, 255, .28);
}
nav { display: flex; gap: 22px; color: var(--muted); font-weight: 700; font-size: 14px; }
nav a:hover { color: var(--text); }

.hero {
  width: min(1160px, calc(100% - 36px));
  min-height: 76vh;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
  padding: 60px 0 90px;
}
.eyebrow {
  margin: 0 0 16px;
  color: var(--acid);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 12px;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  font-size: clamp(52px, 8vw, 104px);
  line-height: .88;
  letter-spacing: -.085em;
  margin-bottom: 28px;
  text-transform: uppercase;
  text-shadow: 4px 4px 0 rgba(255, 43, 214, .45), -4px -4px 0 rgba(0, 229, 255, .28);
}
.lead {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.6;
}
.actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 52px; padding: 0 22px;
  border-radius: 999px; font-weight: 900;
  border: 1px solid var(--line);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-3px); }
.btn.primary {
  background: linear-gradient(135deg, var(--cyan), var(--pink));
  color: #03040a;
  box-shadow: 0 16px 45px rgba(255, 43, 214, .24);
}
.btn.ghost { background: rgba(255,255,255,.06); }
.btn.big { min-height: 64px; padding: 0 30px; font-size: 18px; }

.hero-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255,255,255,.14), rgba(255,255,255,.05));
  box-shadow: var(--shadow);
  overflow: hidden;
  transform: rotate(2deg);
}
.hero-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: conic-gradient(from 180deg, var(--cyan), transparent, var(--pink), transparent, var(--acid), var(--cyan));
  opacity: .55;
  z-index: -1;
}
.terminal-top { display: flex; gap: 8px; padding: 22px; border-bottom: 1px solid var(--line); }
.terminal-top span { width: 12px; height: 12px; border-radius: 999px; background: var(--line); }
.terminal-top span:nth-child(1) { background: var(--pink); }
.terminal-top span:nth-child(2) { background: var(--orange); }
.terminal-top span:nth-child(3) { background: var(--acid); }
.terminal-body { padding: 42px; min-height: 470px; display: flex; flex-direction: column; justify-content: center; }
.muted { color: var(--muted); font-size: 13px; letter-spacing: .2em; font-weight: 900; }
.terminal-body h2 { font-size: clamp(38px, 5vw, 74px); line-height: .9; letter-spacing: -.08em; margin-bottom: 34px; }
.status-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.status-grid div { padding: 16px; border: 1px solid var(--line); background: rgba(0,0,0,.22); border-radius: 18px; }
.status-grid strong { display:block; font-size:12px; color: var(--acid); text-transform:uppercase; letter-spacing:.12em; margin-bottom:8px; }
.status-grid span { color: var(--text); font-weight: 800; }
.powerbar { height: 14px; background: rgba(255,255,255,.11); border-radius: 999px; overflow: hidden; margin-top: 28px; }
.powerbar i { display: block; height: 100%; width: 82%; background: linear-gradient(90deg, var(--cyan), var(--acid), var(--pink)); border-radius: inherit; animation: pulse 2.2s ease-in-out infinite; }
.scanline { position:absolute; inset:0; background: repeating-linear-gradient(0deg, transparent 0 8px, rgba(255,255,255,.035) 9px 10px); pointer-events:none; }

.section, .split-section, .cta {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto 36px;
}
.section, .split-section, .cta {
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(20px);
  border-radius: 34px;
  padding: clamp(28px, 5vw, 58px);
  box-shadow: var(--shadow);
}
.section-title { max-width: 780px; }
.section h2, .split-section h2, .cta h2 { font-size: clamp(32px, 5vw, 62px); line-height: .95; letter-spacing: -.065em; margin-bottom: 34px; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card { padding: 28px; border-radius: 26px; background: rgba(0,0,0,.22); border: 1px solid var(--line); }
.card-number { color: var(--pink); font-weight: 900; letter-spacing: .16em; }
.card h3 { margin: 22px 0 12px; font-size: 24px; }
.card p { color: var(--muted); line-height: 1.65; margin-bottom: 0; }
.split-section { display:grid; grid-template-columns: .95fr 1.05fr; gap: 38px; align-items:center; }
.skill-list { display:flex; flex-wrap:wrap; gap:12px; }
.skill-list span { padding: 14px 18px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.07); font-weight: 900; }
.cta { text-align:center; padding-top: 78px; padding-bottom: 78px; }
.cta h2 { max-width: 850px; margin-left:auto; margin-right:auto; }
footer { width: min(1160px, calc(100% - 36px)); margin: 0 auto; padding: 28px 0 44px; color: var(--muted); }

@keyframes float { 0%,100% { transform: translate3d(0,0,0); } 50% { transform: translate3d(30px,-28px,0); } }
@keyframes pulse { 0%,100% { filter: brightness(1); } 50% { filter: brightness(1.45); } }

@media (max-width: 900px) {
  nav { display: none; }
  .hero, .split-section { grid-template-columns: 1fr; }
  .hero-card { transform: none; }
  .cards { grid-template-columns: 1fr; }
  .terminal-body { min-height: 380px; padding: 28px; }
}
