:root {
  color-scheme: dark;
  --bg: #050505;
  --ink: #fbfbf7;
  --muted: #a8aea6;
  --line: rgba(255, 255, 255, 0.12);
  --panel: rgba(16, 17, 16, 0.76);
  --cyan: #f1f5ed;
  --green: #45df00;
  --green-strong: #2fbf00;
  --amber: #f2f2e8;
  --red: #ff5d5d;
  --violet: #1b1d1a;
  --shadow: 0 26px 100px rgba(0, 0, 0, 0.5);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, #050505 0%, #10120f 42%, #050505 100%);
  color: var(--ink);
  overflow-x: hidden;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 32px));
  margin: 14px auto 0;
  padding: 10px 12px;
  border: 1px solid rgba(69, 223, 0, 0.18);
  border-radius: 8px;
  background: rgba(7, 8, 7, 0.78);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(22px) saturate(145%);
  animation: headerDrop 0.7s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.brand,
.nav-links,
.hero-actions,
.panel-top,
.scoreline {
  display: flex;
  align-items: center;
}

.brand {
  width: 190px;
  height: 42px;
  padding: 0;
  border-radius: 7px;
  background: transparent;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand,
.nav-cta,
.button,
.nav-links a {
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease,
    color 0.22s ease,
    box-shadow 0.22s ease;
}

.brand:hover,
.nav-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.nav-links {
  gap: 6px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 750;
}

.nav-links a {
  padding: 10px 12px;
  border-radius: 8px;
}

.nav-links a:hover {
  background: rgba(69, 223, 0, 0.13);
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 8px;
  font-weight: 800;
  white-space: nowrap;
}

.nav-cta {
  padding: 0 16px;
  background: rgba(69, 223, 0, 0.12);
  border: 1px solid rgba(69, 223, 0, 0.28);
  font-size: 0.9rem;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 430px);
  align-items: end;
  gap: clamp(22px, 5vw, 70px);
  padding: 136px clamp(20px, 5vw, 64px) 58px;
  overflow: hidden;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  filter: saturate(1.08) contrast(1.03);
  transform: scale(1.05);
  animation: heroImageDrift 16s ease-in-out infinite alternate;
}

.hero-overlay {
  background:
    linear-gradient(100deg, rgba(5, 5, 5, 0.98) 0%, rgba(5, 5, 5, 0.78) 43%, rgba(5, 5, 5, 0.24) 100%),
    linear-gradient(0deg, #050505 0%, rgba(5, 5, 5, 0.16) 34%, rgba(5, 5, 5, 0) 64%),
    radial-gradient(circle at 58% 45%, rgba(69, 223, 0, 0.18), transparent 32%);
}

.hero-content,
.live-panel {
  position: relative;
  z-index: 2;
}

.hero-content::before {
  content: "";
  display: block;
  width: 118px;
  height: 8px;
  margin-bottom: 22px;
  background: var(--green);
  clip-path: polygon(12% 0, 100% 0, 88% 100%, 0 100%);
  box-shadow: 0 0 28px rgba(69, 223, 0, 0.48);
  animation: slashIn 0.7s 0.18s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero-content {
  max-width: 790px;
  padding-bottom: 18px;
}

.hero-logo {
  display: block;
  width: min(420px, 78vw);
  margin-bottom: 22px;
  padding: 0;
  border-radius: 8px;
  background: transparent;
  filter: drop-shadow(0 24px 34px rgba(0, 0, 0, 0.45));
  animation: fadeUp 0.8s 0.1s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 10px;
  border: 1px solid rgba(69, 223, 0, 0.32);
  border-radius: 8px;
  background: rgba(69, 223, 0, 0.1);
  animation: fadeUp 0.8s 0.18s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.eyebrow span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 18px var(--green);
  animation: livePulse 1.5s ease-in-out infinite;
}

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

h1 {
  margin-bottom: 24px;
  max-width: 760px;
  font-size: clamp(3.5rem, 8.5vw, 8.8rem);
  line-height: 0.84;
  letter-spacing: 0;
  text-wrap: balance;
  text-transform: uppercase;
  animation: fadeUp 0.8s 0.26s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero-copy {
  max-width: 610px;
  color: #dce6f1;
  font-size: clamp(1.06rem, 1.55vw, 1.24rem);
  line-height: 1.7;
  animation: fadeUp 0.8s 0.34s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero-actions {
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
  animation: fadeUp 0.8s 0.42s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.button {
  padding: 0 20px;
  border: 1px solid transparent;
}

.button-primary {
  background: linear-gradient(135deg, var(--green), #b8ff4d);
  color: #071006;
  box-shadow: 0 18px 48px rgba(69, 223, 0, 0.24);
  background-size: 160% 160%;
  animation: glowShift 5s ease-in-out infinite;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--line);
  color: var(--ink);
}

.button-primary:hover {
  box-shadow: 0 20px 64px rgba(69, 223, 0, 0.34);
}

.button-secondary:hover,
.nav-cta:hover {
  border-color: rgba(69, 223, 0, 0.42);
}

.signal-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
  max-width: 690px;
  animation: fadeUp 0.8s 0.5s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.signal-strip span {
  padding: 10px 12px;
  border: 1px solid rgba(69, 223, 0, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  color: #d9e4ef;
  font-size: 0.88rem;
  font-weight: 750;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.signal-strip span:hover {
  transform: translateY(-2px);
  border-color: rgba(69, 223, 0, 0.38);
  background: rgba(69, 223, 0, 0.1);
}

.live-panel {
  align-self: center;
  margin-bottom: 0;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(24, 28, 22, 0.9), rgba(8, 9, 8, 0.76));
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px) saturate(150%);
  animation: floatIn 0.9s 0.5s cubic-bezier(0.2, 0.8, 0.2, 1) both, panelFloat 5.8s 1.5s ease-in-out infinite;
}

.panel-top {
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 18px var(--red);
  animation: redPulse 1.25s ease-in-out infinite;
}

.scoreline {
  justify-content: center;
  gap: 16px;
  margin: 24px 0;
  padding: 18px 8px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.scoreline span {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.scoreline strong {
  font-size: 3rem;
  line-height: 1;
  animation: scorePop 0.85s 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.scoreline em {
  color: var(--green);
  font-style: normal;
  font-size: 2rem;
}

.play-list {
  display: grid;
  gap: 10px;
}

.play-list p {
  margin: 0;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.055);
  color: #d8e0e8;
  line-height: 1.4;
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.play-list p:hover {
  transform: translateX(4px);
  border-color: rgba(69, 223, 0, 0.2);
  background: rgba(69, 223, 0, 0.08);
}

.play-list strong {
  color: var(--green);
  margin-right: 8px;
}

.mini-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 14px;
}

.mini-metrics span {
  padding: 11px 8px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--muted);
  font-size: 0.72rem;
  text-align: center;
}

.mini-metrics strong {
  display: block;
  color: var(--ink);
  font-size: 1.1rem;
}

.reveal,
.tilt-card {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.75s cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 0.75s cubic-bezier(0.2, 0.8, 0.2, 1),
    border-color 0.24s ease,
    box-shadow 0.24s ease;
}

.reveal.is-visible,
.tilt-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.tilt-card:hover {
  transform: translateY(-5px);
  border-color: rgba(69, 223, 0, 0.28);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.32);
}

.section,
.workflow-grid,
.customer-example,
.broadcast,
.cta {
  padding: clamp(74px, 9vw, 124px) clamp(20px, 5vw, 64px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(300px, 1fr);
  gap: clamp(24px, 7vw, 90px);
  align-items: start;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 4.5vw, 4.8rem);
  line-height: 0.96;
  letter-spacing: 0;
  text-wrap: balance;
}

.intro p,
.feature-copy p,
.broadcast-copy p,
.cta p {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.8;
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  background: transparent;
  padding-top: 0;
  padding-bottom: clamp(74px, 9vw, 124px);
}

.workflow-grid article {
  min-height: 286px;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(69, 223, 0, 0.1), rgba(255, 255, 255, 0.035) 44%, rgba(255, 255, 255, 0.02));
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.workflow-grid span {
  display: inline-block;
  margin-bottom: 54px;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.32rem;
}

.workflow-grid p,
.feature-list p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.7;
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.84fr) minmax(320px, 1fr);
  gap: clamp(28px, 7vw, 96px);
  background:
    linear-gradient(180deg, rgba(69, 223, 0, 0.06), rgba(255, 255, 255, 0)),
    #080a07;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.feature-copy {
  position: sticky;
  top: 120px;
  align-self: start;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.feature-list div {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.052);
  overflow: hidden;
}

.feature-list div,
.workflow-grid article,
.graphic-card {
  position: relative;
}

.feature-list div::before,
.workflow-grid article::before,
.graphic-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 22px;
  width: 70px;
  height: 4px;
  background: var(--green);
  clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
  transition: width 0.28s ease, box-shadow 0.28s ease;
}

.feature-list div:hover::before,
.workflow-grid article:hover::before,
.graphic-card:hover::before {
  width: 112px;
  box-shadow: 0 0 24px rgba(69, 223, 0, 0.45);
}

.customer-example {
  display: grid;
  grid-template-columns: minmax(280px, 0.76fr) minmax(360px, 1.1fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 42%, rgba(69, 223, 0, 0.16), transparent 34%),
    linear-gradient(180deg, #050505, #0b0e09 48%, #050505);
}

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

.example-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.example-stats span {
  min-height: 88px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
  font-size: 0.8rem;
}

.example-stats strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 1.45rem;
  line-height: 1;
}

.web-showcase {
  overflow: hidden;
  border: 1px solid rgba(69, 223, 0, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
    #090b08;
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.5);
  transform-origin: center;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.web-showcase:hover {
  transform: translateY(-4px);
  border-color: rgba(69, 223, 0, 0.42);
  box-shadow: 0 42px 130px rgba(0, 0, 0, 0.58);
}

.browser-bar {
  display: grid;
  grid-template-columns: 10px 10px 10px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.34);
}

.browser-bar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
}

.browser-bar span:first-child {
  background: #ff5d5d;
}

.browser-bar span:nth-child(2) {
  background: #f2c94c;
}

.browser-bar span:nth-child(3) {
  background: var(--green);
  box-shadow: 0 0 16px rgba(69, 223, 0, 0.65);
}

.browser-bar p {
  min-width: 0;
  margin: 0 0 0 8px;
  padding: 8px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  color: #dce6d8;
  font-size: 0.82rem;
  font-weight: 750;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.web-showcase iframe {
  display: block;
  width: 100%;
  height: min(72vh, 760px);
  min-height: 560px;
  border: 0;
  background: #ffffff;
}

.web-fallback {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.web-fallback p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.web-fallback a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 8px;
  background: var(--green);
  color: #071006;
  font-size: 0.86rem;
  font-weight: 900;
  white-space: nowrap;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.web-fallback a:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(69, 223, 0, 0.24);
}

.broadcast {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(320px, 1fr);
  gap: clamp(30px, 8vw, 110px);
  align-items: center;
}

.graphics-stack {
  display: grid;
  gap: 18px;
}

.graphic-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(69, 223, 0, 0.1), rgba(255, 255, 255, 0.038)),
    #10130f;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.scorebug strong {
  animation: numberGlow 2.8s ease-in-out infinite;
}

.graphic-card span {
  display: block;
  padding: 14px 18px;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.graphic-card strong {
  display: block;
  padding: 22px 18px;
}

.scorebug strong {
  color: var(--green);
  font-size: clamp(2rem, 6vw, 5.4rem);
  line-height: 1;
}

.lower-third strong {
  color: var(--green);
  font-size: clamp(1.4rem, 3vw, 2.6rem);
}

.timeline strong {
  color: #fff0c4;
  font-size: clamp(1.1rem, 2.2vw, 1.7rem);
}

.cta {
  min-height: 46vh;
  display: grid;
  place-items: center;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(69, 223, 0, 0.2), transparent 35%),
    linear-gradient(180deg, #090c08, #050505);
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  inset: -40% -20%;
  background:
    linear-gradient(115deg, transparent 0 42%, rgba(69, 223, 0, 0.12) 48%, transparent 54% 100%);
  transform: translateX(-35%);
  animation: scanline 6s ease-in-out infinite;
}

.cta > * {
  position: relative;
  z-index: 1;
}

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

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

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

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

@keyframes heroImageDrift {
  from {
    transform: scale(1.05) translateX(0);
  }
  to {
    transform: scale(1.1) translateX(-1.4%);
  }
}

@keyframes slashIn {
  from {
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left;
  }
  to {
    opacity: 1;
    transform: scaleX(1);
    transform-origin: left;
  }
}

@keyframes livePulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 16px rgba(69, 223, 0, 0.5);
  }
  50% {
    transform: scale(1.35);
    box-shadow: 0 0 26px rgba(69, 223, 0, 0.86);
  }
}

@keyframes redPulse {
  0%, 100% {
    opacity: 0.8;
    box-shadow: 0 0 14px rgba(255, 93, 93, 0.55);
  }
  50% {
    opacity: 1;
    box-shadow: 0 0 26px rgba(255, 93, 93, 0.95);
  }
}

@keyframes scorePop {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes glowShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes numberGlow {
  0%, 100% {
    text-shadow: 0 0 0 rgba(69, 223, 0, 0);
  }
  50% {
    text-shadow: 0 0 28px rgba(69, 223, 0, 0.3);
  }
}

@keyframes scanline {
  0%, 100% {
    transform: translateX(-38%);
  }
  50% {
    transform: translateX(38%);
  }
}

@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;
  }

  .reveal,
  .tilt-card {
    opacity: 1;
    transform: none;
  }
}

.cta h2 {
  max-width: 900px;
}

.cta .button {
  margin-top: 16px;
}

@media (max-width: 920px) {
  .nav-links {
    display: none;
  }

  .hero,
  .intro,
  .feature-band,
  .customer-example,
  .broadcast {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 112px;
    align-items: start;
  }

  .live-panel {
    max-width: 520px;
    margin-bottom: 0;
  }

  .workflow-grid,
  .feature-list {
    grid-template-columns: 1fr;
  }

  .feature-copy {
    position: static;
  }

  .web-showcase iframe {
    height: 640px;
    min-height: 520px;
  }
}

@media (max-width: 560px) {
  .site-header {
    width: calc(100% - 24px);
    padding: 10px;
  }

  .nav-cta {
    display: none;
  }

  h1 {
    font-size: 3.42rem;
  }

  .brand {
    width: 158px;
  }

  .hero-logo {
    width: min(320px, 100%);
    padding: 0;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .scoreline {
    gap: 10px;
  }

  .scoreline strong {
    font-size: 2.45rem;
  }

  .signal-strip,
  .mini-metrics,
  .example-stats {
    grid-template-columns: 1fr;
  }

  .example-stats span {
    min-height: auto;
  }

  .browser-bar {
    grid-template-columns: 8px 8px 8px minmax(0, 1fr);
    gap: 6px;
    padding: 10px;
  }

  .browser-bar span {
    width: 8px;
    height: 8px;
  }

  .web-showcase iframe {
    height: 620px;
    min-height: 500px;
  }

  .web-fallback {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .site-header {
    top: 8px;
    width: calc(100% - 20px);
    min-height: 52px;
    margin-top: 0;
    gap: 10px;
    padding: 8px 10px;
  }

  .brand {
    width: 144px;
    height: 34px;
  }

  .hero {
    gap: 22px;
    padding: 92px 16px 44px;
  }

  .hero-media img {
    object-position: 64% center;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(5, 5, 5, 0.62) 0%, rgba(5, 5, 5, 0.94) 44%, #050505 100%),
      radial-gradient(circle at 68% 22%, rgba(69, 223, 0, 0.2), transparent 38%);
  }

  .hero-content {
    padding-bottom: 0;
  }

  .hero-content::before {
    width: 88px;
    height: 6px;
    margin-bottom: 16px;
  }

  .hero-logo {
    width: min(270px, 86vw);
    margin-bottom: 18px;
  }

  .eyebrow,
  .section-kicker {
    font-size: 0.68rem;
    line-height: 1.25;
    letter-spacing: 0.1em;
  }

  .eyebrow {
    max-width: 100%;
    padding: 7px 9px;
  }

  h1 {
    margin-bottom: 16px;
    font-size: 2.62rem;
    line-height: 0.9;
  }

  .hero-copy {
    font-size: 0.98rem;
    line-height: 1.58;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 24px;
  }

  .button,
  .nav-cta {
    min-height: 42px;
    font-size: 0.92rem;
  }

  .signal-strip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 20px;
  }

  .signal-strip span {
    display: flex;
    align-items: center;
    min-height: 42px;
    padding: 9px 10px;
    font-size: 0.78rem;
  }

  .live-panel {
    width: 100%;
    padding: 14px;
  }

  .panel-top {
    font-size: 0.66rem;
  }

  .scoreline {
    gap: 8px;
    margin: 16px 0;
    padding: 14px 6px;
  }

  .scoreline strong {
    font-size: 2.2rem;
  }

  .scoreline span {
    font-size: 0.68rem;
  }

  .scoreline em {
    font-size: 1.45rem;
  }

  .play-list {
    gap: 8px;
  }

  .play-list p {
    padding: 10px;
    font-size: 0.82rem;
  }

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

  .mini-metrics span {
    padding: 9px 4px;
    font-size: 0.64rem;
  }

  .mini-metrics strong {
    font-size: 0.98rem;
  }

  .section,
  .workflow-grid,
  .customer-example,
  .broadcast,
  .cta {
    padding: 58px 16px;
  }

  .intro,
  .feature-band,
  .customer-example,
  .broadcast {
    gap: 24px;
  }

  h2 {
    font-size: 2.12rem;
    line-height: 1;
  }

  h3 {
    font-size: 1.12rem;
  }

  .intro p,
  .feature-copy p,
  .customer-copy p,
  .broadcast-copy p,
  .cta p {
    font-size: 0.96rem;
    line-height: 1.65;
  }

  .workflow-grid {
    gap: 10px;
    padding-top: 0;
  }

  .workflow-grid article,
  .feature-list div {
    min-height: 0;
    padding: 22px 18px;
  }

  .workflow-grid span {
    margin-bottom: 32px;
    font-size: 0.68rem;
  }

  .example-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
    margin-top: 20px;
  }

  .example-stats span {
    padding: 10px 8px;
    font-size: 0.66rem;
  }

  .example-stats strong {
    margin-bottom: 6px;
    font-size: 0.98rem;
  }

  .web-showcase {
    margin-left: -6px;
    margin-right: -6px;
  }

  .browser-bar p {
    padding: 7px 9px;
    font-size: 0.72rem;
  }

  .web-showcase iframe {
    height: 560px;
    min-height: 500px;
  }

  .web-fallback {
    gap: 10px;
    padding: 12px;
  }

  .web-fallback p,
  .web-fallback a {
    font-size: 0.78rem;
  }

  .graphic-card span {
    padding: 12px 14px;
    font-size: 0.72rem;
  }

  .graphic-card strong {
    padding: 18px 14px;
  }

  .cta {
    min-height: auto;
  }
}

@media (max-width: 360px) {
  .brand {
    width: 132px;
  }

  h1 {
    font-size: 2.34rem;
  }

  .hero-logo {
    width: min(246px, 84vw);
  }

  .example-stats {
    grid-template-columns: 1fr;
  }

  .mini-metrics {
    grid-template-columns: 1fr;
  }
}
