:root {
  --ink: #f6f3ec;
  --muted: #c9c5ba;
  --deep: #07080a;
  --panel: #111417;
  --panel-soft: #1a1e22;
  --line: rgba(255, 255, 255, 0.14);
  --lime: #c9ff32;
  --coral: #ff5f4c;
  --cyan: #54dcff;
  --violet: #9b7cff;
  --white: #ffffff;
  --shadow: 0 24px 90px rgba(0, 0, 0, 0.42);
  --header-bg: rgba(7, 8, 10, 0.58);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 96px),
    var(--deep);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -10rem;
  z-index: 50;
  padding: 0.6rem 1rem;
  color: #101113;
  background: var(--lime);
  border-radius: 4px;
}

.skip-link:focus {
  top: 1rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 45;
  height: 3px;
  transform: scaleX(var(--scroll-progress, 0));
  transform-origin: left;
  background: linear-gradient(90deg, var(--lime), var(--cyan), var(--coral));
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 0 5%;
  background: var(--header-bg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(22px) saturate(1.25);
  transition: min-height 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  --header-bg: rgba(7, 8, 10, 0.84);
  min-height: 62px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 900;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  color: #101113;
  background: linear-gradient(135deg, var(--lime), var(--cyan));
  border-radius: 50%;
  box-shadow: 0 0 28px rgba(201, 255, 50, 0.32);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.site-nav a {
  padding: 0.55rem 0;
  border-bottom: 2px solid transparent;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  color: var(--white);
  border-color: var(--lime);
}

.nav-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0.7rem;
  color: var(--white);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 4px 0;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 86svh;
  display: flex;
  align-items: center;
  padding: 8.5rem 5% 4.5rem;
  overflow: hidden;
  background-image:
    linear-gradient(90deg, rgba(7, 8, 10, 0.98), rgba(7, 8, 10, 0.68) 44%, rgba(7, 8, 10, 0.22)),
    linear-gradient(0deg, rgba(7, 8, 10, 0.98), rgba(7, 8, 10, 0) 44%),
    url("assets/egob-photos/egob-live-neon.png");
  background-position: center, center, center center;
  background-size: cover;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero::before {
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, black, transparent 72%);
}

.hero::after {
  background:
    linear-gradient(115deg, transparent 0 52%, rgba(201, 255, 50, 0.12) 52.4% 53%, transparent 53.4%),
    linear-gradient(38deg, transparent 0 68%, rgba(84, 220, 255, 0.12) 68.4% 69%, transparent 69.4%);
  mix-blend-mode: screen;
}

.hero-stage {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(300px, 0.54fr);
  gap: 3rem;
  align-items: end;
  width: min(1160px, 100%);
  margin: 0 auto;
}

.hero-inner {
  width: min(760px, 100%);
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--lime);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 0.2rem;
  font-size: 5.7rem;
  line-height: 0.95;
  letter-spacing: 0;
  text-shadow: 0 0 44px rgba(84, 220, 255, 0.18);
}

h2 {
  margin-bottom: 1rem;
  font-size: 2.5rem;
  line-height: 1.08;
  letter-spacing: 0;
}

.hero-kicker {
  margin-bottom: 1rem;
  color: var(--cyan);
  font-size: 1.45rem;
  font-weight: 800;
}

.hero-copy {
  max-width: 660px;
  color: var(--muted);
  font-size: 1.08rem;
  overflow-wrap: anywhere;
}

.hero-tags,
.sound-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1.25rem 0 0;
}

.hero-tags span,
.sound-tags span {
  padding: 0.45rem 0.68rem;
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.8rem 0 1.4rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3rem;
  padding: 0.78rem 1.1rem;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.button.primary {
  color: #101113;
  background: linear-gradient(135deg, var(--lime), #e8ff8c);
  box-shadow: 0 14px 44px rgba(201, 255, 50, 0.18);
}

.button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-symbol {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
}

.play-symbol::before {
  content: "";
  margin-left: 0.12rem;
  border-top: 0.36rem solid transparent;
  border-bottom: 0.36rem solid transparent;
  border-left: 0.52rem solid currentColor;
}

.download-symbol::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-0.1rem) rotate(45deg);
}

.download-symbol::after {
  content: "";
  position: absolute;
  bottom: 0.02rem;
  width: 0.9rem;
  height: 2px;
  background: currentColor;
}

.audio-strip {
  display: grid;
  grid-template-columns: auto minmax(220px, 420px);
  align-items: center;
  gap: 1rem;
  width: min(620px, 100%);
  max-width: 620px;
  padding: 0.8rem;
  background: rgba(7, 8, 10, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.audio-label {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 900;
}

audio {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.signal-console {
  position: relative;
  padding: 1rem;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.045)),
    rgba(7, 8, 10, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px) saturate(1.2);
  overflow: hidden;
}

.signal-console::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent, rgba(201, 255, 50, 0.08), transparent),
    repeating-linear-gradient(0deg, transparent 0 8px, rgba(255, 255, 255, 0.035) 8px 9px);
  opacity: 0.6;
  pointer-events: none;
}

.console-topline,
.console-track,
.console-link,
.console-meter,
.waveform {
  position: relative;
  z-index: 1;
}

.console-topline {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--lime);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.waveform {
  display: grid;
  grid-template-columns: repeat(16, 1fr);
  align-items: end;
  gap: 0.35rem;
  height: 172px;
  margin: 1.1rem 0;
}

.waveform span {
  height: calc(20% + var(--level, 0) * 1%);
  min-height: 22px;
  background: linear-gradient(180deg, var(--cyan), var(--lime));
  border-radius: 999px;
  transform-origin: bottom;
  animation: wave-pulse 1.6s ease-in-out infinite alternate;
  animation-delay: calc(var(--level, 1) * -42ms);
  box-shadow: 0 0 24px rgba(84, 220, 255, 0.16);
}

.waveform span:nth-child(1) { --level: 18; }
.waveform span:nth-child(2) { --level: 48; }
.waveform span:nth-child(3) { --level: 32; }
.waveform span:nth-child(4) { --level: 76; }
.waveform span:nth-child(5) { --level: 58; }
.waveform span:nth-child(6) { --level: 92; }
.waveform span:nth-child(7) { --level: 42; }
.waveform span:nth-child(8) { --level: 70; }
.waveform span:nth-child(9) { --level: 36; }
.waveform span:nth-child(10) { --level: 86; }
.waveform span:nth-child(11) { --level: 62; }
.waveform span:nth-child(12) { --level: 28; }
.waveform span:nth-child(13) { --level: 78; }
.waveform span:nth-child(14) { --level: 44; }
.waveform span:nth-child(15) { --level: 64; }
.waveform span:nth-child(16) { --level: 22; }

@keyframes wave-pulse {
  from {
    transform: scaleY(0.64);
    opacity: 0.72;
  }
  to {
    transform: scaleY(1);
    opacity: 1;
  }
}

.console-track span {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.console-track strong {
  display: block;
  margin-top: 0.3rem;
  font-size: 1.3rem;
  line-height: 1.16;
}

.console-meter {
  height: 0.5rem;
  margin: 1.2rem 0 1rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
}

.console-meter span {
  display: block;
  width: 78%;
  height: 100%;
  background: linear-gradient(90deg, var(--lime), var(--cyan), var(--coral));
  border-radius: inherit;
}

.console-link {
  display: inline-flex;
  color: var(--lime);
  font-weight: 900;
  border-bottom: 2px solid currentColor;
}

.section {
  padding: 5rem 5%;
}

.section-inner {
  width: min(1160px, 100%);
  margin: 0 auto;
}

.intro-band {
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
  color: #101113;
  background: linear-gradient(90deg, var(--lime), #e7ff86 48%, var(--cyan));
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.metrics div {
  min-height: 88px;
  padding: 1rem 0;
}

.metrics strong {
  display: block;
  font-size: 1.35rem;
  line-height: 1.2;
}

.metrics span {
  display: block;
  max-width: 22rem;
}

.capabilities-section {
  background: linear-gradient(180deg, #08090b, #111417);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.capabilities-section .section-heading {
  max-width: 820px;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.capability-item {
  min-height: 270px;
  padding: 1.2rem;
  color: var(--muted);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  box-shadow: 0 14px 50px rgba(0, 0, 0, 0.26);
}

.capability-number {
  color: var(--lime);
  font-weight: 900;
}

.capability-item h3 {
  margin: 5.5rem 0 0.7rem;
  color: var(--white);
  font-size: 1.35rem;
}

.capability-item p {
  margin-bottom: 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 3rem;
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.7fr);
}

.portrait,
.press-art,
.contact-art {
  margin: 0;
}

.portrait img,
.press-art img,
.contact-art img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
  filter: saturate(1.05) contrast(1.03);
}

.press-art img,
.contact-art img {
  aspect-ratio: 1;
  background: var(--panel);
}

.copy-block {
  color: var(--muted);
}

.copy-block h2 {
  color: var(--white);
}

.copy-block p {
  max-width: 66ch;
}

.bio-section {
  background:
    linear-gradient(90deg, rgba(84, 220, 255, 0.06), transparent 35%),
    var(--deep);
}

.visuals-section {
  background:
    linear-gradient(135deg, rgba(201, 255, 50, 0.08), transparent 24%),
    linear-gradient(225deg, rgba(84, 220, 255, 0.08), transparent 30%),
    #090b0e;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 180px;
  gap: 1rem;
}

.photo-card {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
}

.photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.36));
  pointer-events: none;
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.1) contrast(1.04);
  transition: transform 260ms ease, filter 260ms ease;
}

.photo-card:hover img {
  transform: scale(1.04);
  filter: saturate(1.18) contrast(1.08);
}

.photo-card.is-wide {
  grid-column: span 2;
  grid-row: span 2;
}

.photo-card.is-tall {
  grid-row: span 2;
}

.work-section,
.press-section {
  background: linear-gradient(180deg, var(--panel), #0d1012);
}

.songs-section {
  color: #17191b;
  background: linear-gradient(180deg, #fbf8ef, #eee6d7);
}

.songs-section .eyebrow {
  color: #147b61;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.7rem;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-summary {
  max-width: 62ch;
  margin: 0.55rem 0 0;
  color: var(--muted);
}

.songs-section .section-summary {
  color: #4f514b;
}

.text-link {
  color: inherit;
  font-weight: 900;
  border-bottom: 2px solid var(--coral);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

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

.video-card {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    var(--panel-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.25);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.songs-section .video-card {
  color: #17191b;
  background: var(--white);
  border-color: #d8d2c7;
}

.video-card a,
.video-card button {
  display: grid;
  width: 100%;
  height: 100%;
  padding: 0;
  color: inherit;
  text-align: left;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.video-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #050506;
}

.video-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.48));
  pointer-events: none;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease, filter 260ms ease;
}

.play-badge {
  position: absolute;
  left: 0.8rem;
  bottom: 0.8rem;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  color: #101113;
  background: var(--lime);
  border-radius: 50%;
  font-weight: 900;
}

.play-badge::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 0.18rem;
  border-top: 0.45rem solid transparent;
  border-bottom: 0.45rem solid transparent;
  border-left: 0.68rem solid #101113;
}

.video-title {
  display: block;
  min-height: 4.7rem;
  padding: 0.95rem;
  font-weight: 900;
  line-height: 1.25;
}

.video-card:hover,
.video-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(201, 255, 50, 0.42);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.34);
}

.video-card:hover img,
.video-card:focus-within img {
  transform: scale(1.055);
  filter: saturate(1.12) contrast(1.04);
}

blockquote {
  margin: 1.5rem 0 0;
  padding-left: 1.2rem;
  color: var(--white);
  border-left: 4px solid var(--coral);
}

cite {
  display: block;
  margin-top: 0.6rem;
  color: var(--muted);
  font-style: normal;
}

.contact-section {
  background:
    linear-gradient(135deg, rgba(155, 124, 255, 0.12), transparent 34%),
    linear-gradient(315deg, rgba(201, 255, 50, 0.08), transparent 30%),
    var(--deep);
}

.contact-form {
  display: grid;
  gap: 0.9rem;
  max-width: 600px;
}

.contact-form label {
  display: grid;
  gap: 0.35rem;
  color: var(--white);
  font-weight: 900;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.8rem 0.9rem;
  color: var(--white);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(201, 255, 50, 0.28);
  border-color: var(--lime);
}

.form-status {
  min-height: 1.5rem;
  color: var(--cyan);
  font-weight: 800;
}

.contact-pulse {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.contact-pulse span {
  width: 0.7rem;
  height: 0.7rem;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(201, 255, 50, 0.46);
  animation: pulse-dot 1.6s ease-out infinite;
}

@keyframes pulse-dot {
  to {
    box-shadow: 0 0 0 0.75rem rgba(201, 255, 50, 0);
  }
}

.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
  color: var(--white);
  font-style: normal;
  font-weight: 800;
}

.contact-details a,
.contact-details span {
  padding: 0.45rem 0.65rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
}

.contact-details a:hover,
.contact-details a:focus-visible {
  border-color: var(--lime);
}

.site-footer {
  padding: 2rem 5%;
  color: var(--muted);
  background: #050607;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(1160px, 100%);
  margin: 0 auto;
}

.footer-inner p {
  margin: 0;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.socials a {
  color: var(--white);
  border-bottom: 1px solid transparent;
}

.socials a:hover,
.socials a:focus-visible {
  border-color: var(--lime);
}

.video-dialog {
  width: min(980px, calc(100% - 2rem));
  padding: 0;
  background: #08090a;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.video-dialog::backdrop {
  background: rgba(0, 0, 0, 0.76);
}

.dialog-close {
  display: block;
  margin-left: auto;
  padding: 0.8rem 1rem;
  color: var(--white);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-weight: 900;
}

.dialog-frame {
  aspect-ratio: 16 / 9;
}

.dialog-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

.hero [data-reveal] {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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

@media (max-width: 900px) {
  .site-header {
    min-height: 64px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 5%;
    right: 5%;
    top: calc(100% + 0.5rem);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.6rem;
    background: rgba(7, 8, 10, 0.98);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 0.8rem;
  }

  .hero {
    min-height: 80svh;
    padding-top: 7rem;
    background-position: center, center, center center;
  }

  .hero-stage,
  .capability-grid,
  .photo-grid,
  .metrics,
  .split,
  .split.reverse,
  .video-grid,
  .compact-grid {
    grid-template-columns: 1fr;
  }

  .signal-console {
    display: none;
  }

  .photo-grid {
    grid-auto-rows: 210px;
  }

  .photo-card.is-wide,
  .photo-card.is-tall {
    grid-column: auto;
    grid-row: auto;
  }

  h1 {
    font-size: 3.8rem;
  }

  h2 {
    font-size: 2.05rem;
  }

  .split {
    gap: 2rem;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: 82svh;
    padding-bottom: 3.5rem;
  }

  .hero-inner {
    max-width: 360px;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .hero-kicker {
    font-size: 1.18rem;
  }

  .audio-strip {
    grid-template-columns: 1fr;
    padding: 0.75rem;
  }

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

  .section {
    padding-top: 3.7rem;
    padding-bottom: 3.7rem;
  }

  .capability-item {
    min-height: 230px;
  }

  .video-title {
    min-height: auto;
  }

  .footer-inner {
    align-items: start;
    flex-direction: column;
  }
}
