:root {
  --bg: #05060c;
  --ink: #f4efe6;
  --muted: #9aa0b5;
  --accent: #ff3d81;
  --cyan: #2ef5d0;
  --gold: #f0c14b;
  --card: rgba(255,255,255,0.04);
  --line: rgba(255,255,255,0.1);
  --radius: 1.25rem;
  font-synthesis: none;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Instrument Sans", system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  min-height: 100vh;
  line-height: 1.55;
}
.noise {
  pointer-events: none;
  position: fixed; inset: 0; z-index: 50; opacity: .04;
  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='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.top {
  position: sticky; top: 0; z-index: 40;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1rem 1.5rem;
  backdrop-filter: blur(14px);
  background: rgba(5,6,12,.72);
  border-bottom: 1px solid var(--line);
}
.logo {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700; letter-spacing: .04em;
  color: var(--ink); text-decoration: none; font-size: 1.05rem;
}
.logo span { color: var(--cyan); }
nav { display: flex; gap: 1.25rem; align-items: center; }
nav a { color: var(--muted); text-decoration: none; font-size: .92rem; }
nav a:hover { color: var(--ink); }
nav .cta {
  background: linear-gradient(135deg, var(--accent), #ff8a4c);
  color: #12040a; padding: .45rem 1rem; border-radius: 999px; font-weight: 700;
}
.hero {
  display: grid; gap: 2rem;
  padding: 2.5rem 1.5rem 3rem;
  max-width: 1200px; margin: 0 auto;
}
@media (min-width: 960px) {
  .hero { grid-template-columns: 1fr 1.15fr; align-items: center; padding-top: 3.5rem; }
}
.eyebrow {
  text-transform: uppercase; letter-spacing: .16em; font-size: .72rem;
  color: var(--gold); margin-bottom: .85rem;
}
.hero h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.05; font-weight: 700; margin-bottom: 1rem;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(120deg, var(--cyan), var(--accent));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.lede { color: var(--muted); max-width: 34rem; margin-bottom: 1.25rem; }
.note {
  background: var(--card);
  border: 1px dashed rgba(46,245,208,.35);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  font-size: .88rem; color: #c8d0e0;
}
.note code {
  font-family: ui-monospace, monospace;
  color: var(--cyan); background: rgba(46,245,208,.08);
  padding: .1rem .35rem; border-radius: .35rem;
}
.player {
  background: linear-gradient(160deg, rgba(255,255,255,.07), rgba(255,255,255,.02));
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + .25rem);
  padding: .75rem;
  box-shadow: 0 30px 80px rgba(0,0,0,.45), 0 0 0 1px rgba(46,245,208,.08);
}
.screen {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
  aspect-ratio: 16 / 9;
}
#reel { width: 100%; height: 100%; display: block; object-fit: cover; }
.screen-chrome {
  position: absolute; left: .85rem; top: .75rem;
  display: flex; gap: .55rem; align-items: center;
  font-family: ui-monospace, monospace; font-size: .72rem;
  color: #fff; text-shadow: 0 1px 4px #000;
  background: rgba(0,0,0,.45); padding: .25rem .55rem; border-radius: 999px;
}
.dot.live {
  width: .55rem; height: .55rem; border-radius: 50%;
  background: #ff3355; box-shadow: 0 0 10px #ff3355;
  animation: blink 1.2s infinite;
}
@keyframes blink { 50% { opacity: .35; } }
.controls {
  display: flex; align-items: center; gap: .75rem;
  padding: .85rem .35rem .25rem; flex-wrap: wrap;
}
.btn-icon {
  width: 2.5rem; height: 2.5rem; border-radius: 50%;
  border: 0; cursor: pointer; font-size: .95rem;
  background: linear-gradient(135deg, var(--cyan), #6a8cff);
  color: #041018; font-weight: 700;
}
#scrubber { flex: 1; min-width: 120px; accent-color: var(--accent); }
.fps {
  display: flex; align-items: center; gap: .4rem;
  font-size: .8rem; color: var(--muted);
}
.fps input {
  width: 3.2rem; background: #0e1220; border: 1px solid var(--line);
  color: var(--ink); border-radius: .5rem; padding: .35rem .4rem;
}
.frame-meta { font-family: ui-monospace, monospace; font-size: .78rem; color: var(--muted); }
.services, .about, .contact {
  max-width: 1200px; margin: 0 auto; padding: 2rem 1.5rem 3rem;
}
.services h2, .about h2, .contact h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 1.5rem;
}
.grid {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.grid article {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.35rem;
  transition: transform .25s ease, border-color .25s;
}
.grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(255,61,129,.45);
}
.num {
  font-family: "Space Grotesk", sans-serif;
  color: var(--accent); font-weight: 700; font-size: .85rem;
}
.grid h3 { margin: .4rem 0 .5rem; font-size: 1.15rem; }
.grid p { color: var(--muted); font-size: .92rem; }
.about {
  display: grid; gap: 1.5rem;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding-top: 3rem; padding-bottom: 3rem;
}
@media (min-width: 800px) { .about { grid-template-columns: 1.4fr 1fr; align-items: start; } }
.about p { color: var(--muted); }
.bullets { list-style: none; display: grid; gap: .75rem; }
.bullets li {
  padding: .85rem 1rem; border-radius: .9rem;
  background: rgba(46,245,208,.06); border: 1px solid rgba(46,245,208,.18);
}
.bullets code { color: var(--cyan); font-family: ui-monospace, monospace; }
.contact { text-align: center; padding-bottom: 4rem; }
.contact p { color: var(--muted); margin-bottom: 1.25rem; }
.mail {
  display: inline-block;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.2rem, 3vw, 1.8rem); font-weight: 700;
  color: #041018; text-decoration: none;
  background: linear-gradient(135deg, var(--gold), var(--accent));
  padding: .85rem 1.6rem; border-radius: 999px;
  box-shadow: 0 12px 40px rgba(255,61,129,.25);
}
footer {
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  padding: 1.25rem 1.5rem; border-top: 1px solid var(--line);
  color: var(--muted); font-size: .85rem;
}
footer a { color: var(--cyan); text-decoration: none; }
