:root {
  --bg: #050505;
  --panel: #0a0a0a;
  --cream: #fff1cf;
  --muted: #9e9686;
  --red: #ef2d16;
  --orange: #ff8613;
  --yellow: #ffc71c;
  --teal: #159aa1;
  --line: rgba(255, 241, 207, 0.12);
  --orange-glow: rgba(255, 126, 20, 0.22);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 50% 12%, rgba(255, 118, 17, 0.055), transparent 28rem),
    linear-gradient(#050505, #020202);
  color: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 20;
  background: radial-gradient(ellipse at center, transparent 48%, rgba(0,0,0,.24) 100%);
}

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

.scanlines {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 19;
  opacity: .16;
  background: repeating-linear-gradient(to bottom, transparent 0 3px, rgba(255, 140, 50, .05) 3px 4px);
  mix-blend-mode: screen;
}

.site-header {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 30;
}

.brand {
  color: var(--cream);
  text-decoration: none;
  font: 800 14px/1 ui-sans-serif, system-ui;
  letter-spacing: .16em;
  display: flex;
  gap: 12px;
  align-items: center;
}

.brand-mark {
  width: 34px;
  height: 10px;
  display: inline-block;
  background: linear-gradient(90deg, var(--red) 0 25%, var(--orange) 25% 50%, var(--yellow) 50% 75%, var(--teal) 75%);
  box-shadow: 0 0 20px rgba(255, 128, 20, .25);
}

.site-nav { display: flex; gap: 30px; }
.site-nav a {
  color: #c9bfad;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: color .2s ease;
}
.site-nav a:hover { color: var(--cream); }
.menu-button { display: none; }

.hero {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  min-height: calc(100vh - 92px);
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  align-items: center;
  gap: clamp(38px, 7vw, 100px);
  padding: 80px 0 100px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .24em;
}

.hero h1, .section-heading h2, .about-copy h2, .contact-box h2 {
  font-family: Rockwell, "Roboto Slab", Georgia, serif;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(52px, 7vw, 94px);
  line-height: .86;
  letter-spacing: -.055em;
  margin: 0 0 30px;
  max-width: 720px;
}
.hero h1 span { color: var(--cream); text-shadow: 0 0 28px rgba(255,128,25,.12); }

.hero-text {
  max-width: 560px;
  color: #aaa292;
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px; }
.button {
  text-decoration: none;
  padding: 14px 18px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
  border: 1px solid var(--line);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
  color: #120b02;
  background: var(--cream);
  box-shadow: 0 0 30px var(--orange-glow);
}
.button-ghost { color: var(--cream); background: rgba(255,255,255,.025); }

.logo-stage { position: relative; }
.crt-shell {
  position: relative;
  isolation: isolate;
  padding: 5%;
  overflow: hidden;
  border-radius: 30% / 8%;
  background: #000;
  box-shadow:
    0 0 0 1px rgba(255, 170, 70, .055),
    0 0 60px rgba(255, 105, 15, .055),
    inset 0 0 80px rgba(0,0,0,.82);
}

.crt-shell img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: sepia(.06) saturate(.98) brightness(.88) contrast(1.09) drop-shadow(0 0 13px rgba(255, 120, 20, .16));
  mix-blend-mode: screen;
}

.crt-glow {
  position: absolute;
  inset: 12% 8%;
  z-index: -1;
  background: rgba(255, 117, 23, .09);
  filter: blur(60px);
}

.crt-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 75, 30, .014), rgba(255, 155, 40, .012) 50%, rgba(0, 195, 220, .01)),
    repeating-linear-gradient(to bottom, rgba(255,255,255,.028) 0 1px, rgba(0,0,0,.18) 2px 4px),
    radial-gradient(ellipse at center, transparent 55%, rgba(0,0,0,.62) 100%);
  mix-blend-mode: screen;
  opacity: .72;
}

.signal {
  color: #625b50;
  font: 700 10px/1.4 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: .16em;
  text-align: right;
  margin: 10px 8px 0 0;
}

.section-wrap {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 110px 0;
  border-top: 1px solid var(--line);
}

.section-heading { max-width: 760px; margin-bottom: 46px; }
.section-heading h2, .about-copy h2, .contact-box h2 {
  font-size: clamp(38px, 5vw, 64px);
  line-height: .95;
  letter-spacing: -.04em;
  margin: 0 0 18px;
}
.section-heading > p:last-child,
.about-copy p,
.contact-box p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 17px;
}

.project-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.project-card {
  min-height: 390px;
  padding: 28px;
  background: linear-gradient(160deg, rgba(255,255,255,.028), rgba(255,255,255,.008));
  border: 1px solid var(--line);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
.project-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: var(--accent);
  box-shadow: 0 0 24px color-mix(in srgb, var(--accent) 45%, transparent);
}
.project-card::after {
  content: "";
  position: absolute;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  right: -120px;
  top: -100px;
  background: color-mix(in srgb, var(--accent) 11%, transparent);
  filter: blur(2px);
}
.project-red { --accent: var(--red); }
.project-orange { --accent: var(--orange); }
.project-teal { --accent: var(--teal); }
.project-number { color: #514c44; font: 800 12px ui-monospace, monospace; }
.project-kicker { color: var(--accent); font-size: 11px; letter-spacing: .2em; font-weight: 900; }
.project-card h3 {
  font-family: Rockwell, Georgia, serif;
  text-transform: uppercase;
  font-size: clamp(30px, 3vw, 42px);
  line-height: .94;
  margin: 10px 0 18px;
}
.project-card p { color: #958d7e; line-height: 1.6; }
.project-link { color: var(--cream); text-decoration: none; text-transform: uppercase; font-size: 11px; font-weight: 900; letter-spacing: .12em; }
.project-link span { color: var(--accent); }

.about-panel {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 50px;
  align-items: stretch;
}
.about-copy { padding-right: 4vw; }
.broadcast-card {
  min-height: 420px;
  border: 1px solid rgba(255, 133, 28, .24);
  background:
    repeating-linear-gradient(to bottom, rgba(255,255,255,.02) 0 2px, transparent 2px 6px),
    radial-gradient(circle at 50% 42%, rgba(255, 109, 22, .13), transparent 45%),
    #070707;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 36px;
  box-shadow: inset 0 0 60px rgba(0,0,0,.7), 0 0 50px rgba(255, 95, 0, .04);
}
.broadcast-label, .broadcast-meta {
  font: 800 10px ui-monospace, monospace;
  letter-spacing: .2em;
  color: var(--orange);
}
.broadcast-card strong {
  font: 900 clamp(58px, 7vw, 88px)/.82 Rockwell, Georgia, serif;
  margin: 24px 0;
  color: var(--cream);
  text-shadow: 2px 0 rgba(255, 70, 30, .26), -2px 0 rgba(0, 180, 190, .14), 0 0 28px rgba(255, 125, 30, .16);
}

.contact-box {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  padding: 44px;
  border: 1px solid rgba(255,255,255,.1);
  background: linear-gradient(90deg, rgba(255, 119, 20, .055), transparent 45%);
}
.contact-box h2 { max-width: 740px; }

.site-footer {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 26px 0 38px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: #5d574e;
  font: 700 10px ui-monospace, monospace;
  letter-spacing: .1em;
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding-top: 50px; }
  .logo-stage { max-width: 700px; width: 100%; margin: 0 auto; order: -1; }
  .project-grid { grid-template-columns: 1fr; }
  .project-card { min-height: 280px; }
  .about-panel { grid-template-columns: 1fr; }
  .contact-box { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 650px) {
  .site-header { min-height: 72px; }
  .menu-button {
    display: block;
    color: var(--cream);
    background: none;
    border: 1px solid var(--line);
    padding: 9px 11px;
    font-size: 11px;
    letter-spacing: .12em;
  }
  .site-nav {
    display: none;
    position: absolute;
    top: 64px;
    right: 0;
    left: 0;
    background: #080808;
    border: 1px solid var(--line);
    padding: 18px;
    flex-direction: column;
    gap: 18px;
  }
  .site-nav.open { display: flex; }
  .brand { font-size: 11px; }
  .hero { min-height: auto; padding-bottom: 70px; }
  .hero h1 { font-size: clamp(48px, 18vw, 72px); }
  .section-wrap { padding: 78px 0; }
  .broadcast-card { min-height: 330px; }
  .contact-box { padding: 28px; }
  .site-footer { flex-direction: column; }
}

@media (prefers-reduced-motion: no-preference) {
  .crt-shell::after {
    content: "";
    position: absolute;
    inset: -30% 0;
    background: linear-gradient(to bottom, transparent 0 45%, rgba(255,255,255,.025) 50%, transparent 55%);
    animation: vertical-roll 9s linear infinite;
    pointer-events: none;
  }
  @keyframes vertical-roll { to { transform: translateY(45%); } }
}
