/* ==========================================================================
   now2 media — broadcast software
   showcases: playout, replay, gfx, ingest
   ========================================================================== */

:root {
  /* brand */
  --brand-sky:   #5BC0EB;       /* signature drop outline */
  --brand-navy:  #2D4A7F;       /* now2 wordmark */
  --brand-navy-2: #1F3560;
  --brand-ink:   #0F1A30;       /* deep ink for dark surfaces */

  --replay:   #4472B5;          /* product: replay */
  --replay-2: #2E5494;
  --play:     #4A8B3A;          /* product: play */
  --play-2:   #356228;
  --gfx:      #7B5BA6;          /* product: gfx */
  --gfx-2:    #5F4385;
  --ingest:   #8B2C3A;          /* product: ingest */
  --ingest-2: #6B1F2C;

  /* neutrals — dark surface, original brand colors preserved */
  --bg:        #0a0a0c;
  --bg-2:      #121216;
  --bg-3:      #18181d;
  --bg-dark:   #0F1A30;
  --bg-dark-2: #0A142A;
  --bg-dark-3: #050B1A;

  --fg:        #f5f5f7;
  --fg-mid:    rgba(245, 245, 247, 0.72);
  --fg-dim:    rgba(245, 245, 247, 0.5);
  --fg-faint:  rgba(245, 245, 247, 0.32);
  --fg-light:  #FFFFFF;

  --line:      rgba(255, 255, 255, 0.08);
  --line-2:    rgba(255, 255, 255, 0.14);
  --line-soft: rgba(255, 255, 255, 0.04);

  /* type */
  --sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --mono: 'JetBrains Mono', 'SF Mono', Consolas, ui-monospace, monospace;

  --fs-xs:   11px;
  --fs-sm:   12px;
  --fs-base: 14px;
  --fs-md:   15px;
  --fs-lg:   17px;
  --fs-xl:   20px;
  --fs-2xl:  28px;
  --fs-3xl:  40px;
  --fs-4xl:  56px;
  --fs-5xl:  88px;
  --fs-6xl:  128px;

  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 24px;
  --sp-6: 32px;
  --sp-7: 48px;
  --sp-8: 64px;
  --sp-9: 96px;
  --sp-10: 128px;

  --shadow-sm: 0 1px 2px rgba(15, 26, 48, 0.06);
  --shadow-md: 0 4px 16px rgba(15, 26, 48, 0.08), 0 2px 4px rgba(15, 26, 48, 0.04);
  --shadow-lg: 0 24px 56px rgba(15, 26, 48, 0.12), 0 8px 16px rgba(15, 26, 48, 0.06);
  --shadow-glow: 0 32px 96px rgba(68, 114, 181, 0.25), 0 16px 32px rgba(15, 26, 48, 0.18);
}

/* reset */
*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-size: var(--fs-base);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--fg);
  min-height: 100vh;
  overflow-x: hidden;
}

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

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

button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }

::selection {
  background: var(--brand-navy);
  color: var(--fg-light);
}

/* ==========================================================================
   typography
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--sans);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--fg);
}

.label {
  font-family: var(--mono);
  font-size: var(--fs-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-dim);
  font-weight: 500;
}

.label--brand { color: var(--brand-navy); }
.label--sky   { color: var(--brand-sky); }
.label--replay { color: var(--replay); }

.mono { font-family: var(--mono); }
.tabular { font-variant-numeric: tabular-nums; }

/* ==========================================================================
   top bar
   ========================================================================== */

.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 12, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}

.topbar__inner {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: var(--sp-3) var(--sp-6);
  gap: var(--sp-5);
}

.topbar__logo {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
}

.topbar__logo img {
  height: 34px;
  width: auto;
}

.nav {
  display: flex;
  gap: var(--sp-6);
  font-size: var(--fs-base);
  font-weight: 500;
  align-items: center;
}

.nav a {
  color: var(--fg-mid);
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.15s ease;
  position: relative;
  padding: var(--sp-1) 0;
}

.nav a:hover,
.nav a.is-current {
  color: var(--fg);
}

.nav__dropdown { position: relative; }

.nav__dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font: inherit;
  font-size: var(--fs-base);
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--fg-mid);
  padding: var(--sp-1) 0;
  cursor: pointer;
  transition: color 0.15s ease;
}

.nav__dropdown-trigger:hover,
.nav__dropdown.is-open .nav__dropdown-trigger { color: var(--fg); }

.nav__caret {
  font-size: 10px;
  opacity: 0.7;
  transition: transform 0.15s ease;
}

.nav__dropdown.is-open .nav__caret { transform: rotate(180deg); }

.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  padding: 6px;
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-sm);
  display: none;
  flex-direction: column;
  gap: 2px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  z-index: 60;
}

.nav__dropdown.is-open .nav__dropdown-menu { display: flex; }

.nav__dropdown-menu a {
  display: block;
  padding: 8px 12px;
  font-size: var(--fs-sm);
  border-radius: 4px;
  transition: background 0.15s ease, color 0.15s ease;
}

.nav__dropdown-menu a:hover {
  background: var(--bg-3);
  color: var(--fg);
}

.nav__dropdown-menu a::after { display: none; }

.nav a.is-current::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 2px;
  background: var(--brand-navy);
}

.topbar__right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: var(--sp-4);
  font-family: var(--mono);
  font-size: var(--fs-sm);
  color: var(--fg-dim);
}

.vbadge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 5px 11px;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: var(--fs-xs);
  letter-spacing: 0.04em;
  color: var(--fg-mid);
  background: var(--bg);
}

.vbadge__dot {
  width: 6px;
  height: 6px;
  background: var(--play);
  border-radius: 50%;
}

.platform-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 11px;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-family: var(--mono);
  font-size: var(--fs-xs);
  letter-spacing: 0.04em;
  color: var(--fg-mid);
  background: var(--bg);
  font-variant-numeric: tabular-nums;
}

.platform-pill .sep {
  color: var(--fg-faint);
}

.os-icon {
  height: 18px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
  opacity: 0.85;
}

.sdk-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--fg-mid);
  font-family: var(--mono);
  font-size: var(--fs-sm);
  transition: color 0.15s ease;
}

.sdk-link:hover { color: var(--fg); }

.sdk-icon {
  height: 22px;
  width: auto;
  color: var(--brand-navy);
}

/* ==========================================================================
   container
   ========================================================================== */

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--sp-6);
}

.container--narrow {
  max-width: 1080px;
}

/* ==========================================================================
   hero — homepage
   ========================================================================== */

.hero {
  padding: var(--sp-10) 0 var(--sp-9);
  border-bottom: 1px solid var(--bg-dark-2);
  position: relative;
  background: var(--bg-dark);
  color: var(--fg-light);
  overflow: hidden;
  min-height: 720px;
}

/* control-room photo background */
.hero__bg {
  position: absolute;
  inset: 0;
  background: url("../img/now2media-header-bg.png") center 40% / cover no-repeat;
  z-index: 0;
}

/* horizontal blue gradient — sides → center */
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(21, 27, 41, 0.50) 0%, rgba(21, 27, 41, 0.80) 25%, rgba(21, 27, 41, 1) 50%, rgba(21, 27, 41, 0.80) 75%, rgba(21, 27, 41, 0.50) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero__inner {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 3;
}

.hero__headline {
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(48px, 7.5vw, 120px);
  line-height: 0.96;
  letter-spacing: -0.04em;
  margin-bottom: var(--sp-5);
  color: var(--fg-light);
}

.hero__headline em {
  font-style: italic;
  color: var(--brand-sky);
  font-weight: 400;
}

.hero__accent {
  background: linear-gradient(135deg, #F5A623 0%, #FFB752 25%, #5BC0EB 75%, #6BC9E8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-weight: 600;
  font-style: italic;
  display: inline-block;
  position: relative;
}

.hero__accent::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.04em;
  height: 0.1em;
  background: linear-gradient(90deg, #F5A623, #5BC0EB);
  z-index: -1;
  opacity: 0.5;
  border-radius: 2px;
}

.hero__lead {
  font-size: var(--fs-lg);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.7);
  max-width: 62ch;
  margin: 0 auto var(--sp-6);
}

.hero__lead strong { color: var(--fg); font-weight: 600; }

.hero__ctas {
  display: flex;
  justify-content: center;
  gap: var(--sp-3);
  flex-wrap: wrap;
}

/* buttons */
.btn--hero-primary {
  background: var(--fg-light);
  color: var(--bg-dark);
  border: 1px solid var(--fg-light);
  font-weight: 600;
}

.btn--hero-primary:hover {
  background: var(--brand-sky);
  border-color: var(--brand-sky);
  color: var(--bg-dark);
}

.btn--hero-ghost {
  background: transparent;
  border: 1.5px solid transparent;
  background-image: linear-gradient(rgba(10, 14, 20, 1), rgba(10, 14, 20, 1)), linear-gradient(135deg, #F5A623, #5BC0EB);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  color: var(--fg-light);
  font-weight: 500;
}

.btn--hero-ghost:hover {
  background-image: linear-gradient(rgba(15, 26, 48, 1), rgba(15, 26, 48, 1)), linear-gradient(135deg, #F5A623, #5BC0EB);
  color: var(--brand-sky);
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

/* ==========================================================================
   section header
   ========================================================================== */

.section {
  padding: var(--sp-9) 0;
  border-bottom: 1px solid var(--line);
}

.section--alt { background: var(--bg-2); }
.section--dark { background: var(--bg-dark); color: var(--fg-light); }

.section__head {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--sp-5);
  margin-bottom: var(--sp-7);
  align-items: end;
}

.section__index {
  grid-column: 1 / 3;
  font-family: var(--mono);
  font-size: var(--fs-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-navy);
  font-weight: 500;
}

.section--dark .section__index { color: var(--brand-sky); }

.section__title {
  grid-column: 3 / 11;
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.025em;
}

.section__title em {
  font-style: normal;
  color: var(--brand-navy);
}

.section--dark .section__title em { color: var(--brand-sky); }

.section__meta {
  grid-column: 11 / 13;
  font-family: var(--mono);
  font-size: var(--fs-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-dim);
  text-align: right;
}

.section--dark .section__meta { color: rgba(255, 255, 255, 0.5); }

/* ==========================================================================
   featured product — now2replay (hero of the homepage)
   ========================================================================== */

.featured {
  background: var(--bg-dark);
  color: var(--fg-light);
  padding: var(--sp-10) 0 var(--sp-9);
  border-bottom: 1px solid var(--bg-dark-2);
  position: relative;
  overflow: hidden;
}

.featured::before {
  content: "";
  position: absolute;
  top: -300px;
  left: 30%;
  width: 800px;
  height: 800px;
  background: radial-gradient(ellipse, rgba(68, 114, 181, 0.25) 0%, transparent 60%);
  pointer-events: none;
}

.featured::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent 0,
    transparent 3px,
    rgba(255, 255, 255, 0.015) 3px,
    rgba(255, 255, 255, 0.015) 4px
  );
  pointer-events: none;
}

.featured__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--sp-5);
  position: relative;
  z-index: 1;
}

.featured__top {
  grid-column: 1 / 13;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: var(--sp-5);
  margin-bottom: var(--sp-8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-family: var(--mono);
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.5);
}

.featured__top .left { display: inline-flex; align-items: center; gap: var(--sp-3); }
.featured__top .right { display: inline-flex; align-items: center; gap: var(--sp-4); }
.featured__top .sky { color: var(--brand-sky); font-weight: 500; }
.featured__top .green { color: #6FBFA8; font-weight: 500; }
.featured__top b { color: var(--fg-light); font-weight: 500; }

.featured__copy {
  grid-column: 1 / 6;
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}

.featured__product-mark {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.featured__product-mark img {
  height: 56px;
  width: auto;
}

.featured__product-mark .tag {
  font-family: var(--mono);
  font-size: var(--fs-xs);
  color: var(--brand-sky);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid var(--brand-sky);
  border-radius: 100px;
  font-weight: 500;
}

.featured__num {
  font-family: var(--sans);
  font-size: clamp(72px, 9vw, 160px);
  font-weight: 600;
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: var(--replay);
  font-variant-numeric: tabular-nums;
}

.featured__title {
  font-family: var(--sans);
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: var(--sp-2);
}

.featured__title em {
  font-style: normal;
  color: var(--replay);
}

.featured__tag {
  font-size: var(--fs-lg);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
  max-width: 38ch;
  margin-bottom: var(--sp-4);
}

.featured__bullets {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-3);
  margin-bottom: var(--sp-6);
  list-style: none;
}

.featured__bullets li {
  display: flex;
  align-items: baseline;
  gap: var(--sp-3);
  font-size: var(--fs-md);
  color: rgba(255, 255, 255, 0.85);
  padding: var(--sp-3) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.featured__bullets li:last-child { border-bottom: 1px solid rgba(255, 255, 255, 0.08); }

.featured__bullets li::before {
  content: "→";
  font-family: var(--mono);
  color: var(--replay);
  font-size: var(--fs-md);
  flex-shrink: 0;
  font-weight: 600;
}

.featured__bullets b {
  color: var(--fg-light);
  font-weight: 500;
  font-family: var(--mono);
  font-size: var(--fs-sm);
  padding: 2px 6px;
  background: rgba(68, 114, 181, 0.15);
  border-radius: 3px;
  margin-right: var(--sp-2);
}

.featured__ctas {
  display: flex;
  gap: var(--sp-3);
  flex-wrap: wrap;
}

.featured__visual {
  grid-column: 6 / 13;
  position: relative;
}

.featured__screenshot {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-dark-2);
  box-shadow: var(--shadow-glow);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.featured__screenshot {
  aspect-ratio: 16 / 9;
  background: var(--bg-dark-2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-glow);
  cursor: zoom-in;
}

.featured__screenshot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.featured__screenshot::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(15, 26, 48, 0.4) 100%);
  pointer-events: none;
}

.featured__caption {
  margin-top: var(--sp-4);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.featured__caption .green { color: #6FBFA8; }

.featured__specs {
  grid-column: 1 / 13;
  margin-top: var(--sp-8);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.feat-spec {
  padding: var(--sp-5) var(--sp-5);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.feat-spec:last-child { border-right: none; }

.feat-spec__num {
  font-family: var(--sans);
  font-size: var(--fs-2xl);
  font-weight: 600;
  color: var(--fg-light);
  margin-bottom: var(--sp-1);
  letter-spacing: -0.02em;
  display: flex;
  align-items: baseline;
  gap: var(--sp-2);
}

.feat-spec__num small {
  font-size: var(--fs-sm);
  color: var(--brand-sky);
  font-weight: 500;
}

.feat-spec__label {
  font-family: var(--mono);
  font-size: var(--fs-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

/* ==========================================================================
   product channel grid (other 3 products)
   ========================================================================== */

.channels {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}

.channel {
  grid-column: span 3;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: var(--sp-5) var(--sp-4);
  position: relative;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  background: var(--bg);
}

.channel:nth-child(4n) { border-right: none; }

.channel:hover {
  background: var(--bg-2);
}

.channel__head {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: var(--sp-4);
}

.channel__num {
  font-family: var(--sans);
  font-size: 32px;
  line-height: 1;
  font-weight: 600;
  color: var(--brand-navy);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

.channel__num sup {
  font-family: var(--mono);
  font-size: 9px;
  color: var(--fg-dim);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-left: var(--sp-2);
  vertical-align: top;
  position: relative;
  top: 4px;
  font-weight: 400;
}

.channel__logo {
  height: 56px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.channel__index {
  display: block;
  font-family: var(--mono);
  font-size: var(--fs-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-navy);
  margin-bottom: var(--sp-3);
  font-weight: 500;
}

.channel__name {
  font-family: var(--sans);
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-2);
  color: var(--fg);
}

.channel__tag {
  font-size: var(--fs-base);
  color: var(--fg-dim);
  margin-bottom: var(--sp-4);
  line-height: 1.5;
  min-height: 3em;
}

.channel__desc {
  font-size: var(--fs-sm);
  color: var(--fg-mid);
  line-height: 1.55;
  margin-bottom: var(--sp-5);
  flex: 1;
}

.channel__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: var(--sp-4);
  border-top: 1px dashed var(--line);
}

.channel__specs {
  display: flex;
  gap: var(--sp-3);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-dim);
}

.channel__specs b {
  color: var(--fg);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}

.channel__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--sans);
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--brand-navy);
  transition: gap 0.2s ease;
}

.channel:hover .channel__cta { gap: var(--sp-3); }

.channel__specs {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

.channel__specs .os-icon {
  height: 16px;
  width: auto;
  opacity: 0.75;
  transition: opacity 0.15s ease;
}

.channel__specs .os-icon--light {
  padding: 3px 4px;
  background: var(--fg);
  border-radius: 3px;
  height: 14px;
}

.channel:hover .channel__specs .os-icon { opacity: 1; }

.channel__cta::after {
  content: "";
}

/* ==========================================================================
   capabilities
   ========================================================================== */

.capabilities {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}

.capability {
  grid-column: span 4;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: var(--sp-5);
  background: var(--bg);
  position: relative;
}

.capability:nth-child(3n) { border-right: none; }

.capability__id {
  font-family: var(--mono);
  font-size: var(--fs-xs);
  color: var(--brand-navy);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.14em;
  margin-bottom: var(--sp-5);
  font-weight: 500;
}

.capability__title {
  font-family: var(--sans);
  font-size: var(--fs-md);
  font-weight: 600;
  margin-bottom: var(--sp-3);
  color: var(--fg);
  letter-spacing: -0.005em;
  line-height: 1.3;
}

.capability__body {
  font-size: var(--fs-sm);
  line-height: 1.55;
  color: var(--fg-dim);
}

/* ==========================================================================
   big quote
   ========================================================================== */

.bigquote {
  padding: var(--sp-10) 0;
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}

.bigquote__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--sp-5);
}

.bigquote__num {
  grid-column: 1 / 2;
  font-family: var(--sans);
  font-size: var(--fs-4xl);
  color: var(--brand-sky);
  font-weight: 600;
  line-height: 1;
}

.bigquote__text {
  grid-column: 2 / 13;
  font-family: var(--sans);
  font-size: clamp(28px, 4vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 500;
}

.bigquote__text em {
  font-style: normal;
  color: var(--brand-navy);
}

.bigquote__cite {
  grid-column: 2 / 13;
  margin-top: var(--sp-5);
  font-family: var(--mono);
  font-size: var(--fs-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-dim);
}

/* ==========================================================================
   footer
   ========================================================================== */

.footer {
  padding: var(--sp-8) 0 var(--sp-5);
  background: var(--bg);
  border-top: 1px solid var(--line);
}

.footer__top {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--sp-5);
  padding-bottom: var(--sp-7);
  border-bottom: 1px solid var(--line);
  margin-bottom: var(--sp-5);
}

.footer__brand {
  grid-column: 1 / 5;
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.footer__brand .logo {
  height: 44px;
  width: auto;
  align-self: flex-start;
}

.footer__addr {
  font-size: var(--fs-sm);
  color: var(--fg-dim);
  line-height: 1.6;
  font-style: normal;
}

.footer__addr .navy { color: var(--brand-navy); font-weight: 500; font-family: var(--mono); }

.footer__col {
  grid-column: span 2;
}

.footer__col h5 {
  font-family: var(--mono);
  font-size: var(--fs-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-navy);
  font-weight: 500;
  margin-bottom: var(--sp-4);
}

.footer__col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.footer__col a {
  font-size: var(--fs-sm);
  color: var(--fg-dim);
  transition: color 0.15s ease;
}

.footer__col a:hover { color: var(--fg); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: var(--fs-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-faint);
}

.footer__bottom--r {
  display: flex;
  gap: var(--sp-5);
  font-variant-numeric: tabular-nums;
}

/* ==========================================================================
   product hero
   ========================================================================== */

.product-hero {
  padding: var(--sp-8) 0 var(--sp-9);
  border-bottom: 1px solid var(--line);
  position: relative;
  background: var(--bg);
}

.product-hero--replay { background: var(--bg); }
.product-hero--play   { background: var(--bg); }
.product-hero--gfx    { background: var(--bg); }
.product-hero--ingest { background: var(--bg); }

.product-hero__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--sp-5);
}

.product-hero__top {
  grid-column: 1 / 13;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: var(--sp-4);
  margin-bottom: var(--sp-7);
  border-bottom: 1px solid var(--line);
  font-family: var(--mono);
  font-size: var(--fs-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-dim);
}

.product-hero__top .row { display: inline-flex; align-items: center; gap: var(--sp-3); }
.product-hero__top .v { color: var(--fg); font-variant-numeric: tabular-nums; }
.product-hero__top .navy { color: var(--brand-navy); }

.product-hero__lockup {
  grid-column: 1 / 13;
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  margin-bottom: var(--sp-5);
}

.product-hero__lockup img {
  height: 80px;
  width: auto;
}

.product-hero__num {
  font-family: var(--sans);
  font-size: clamp(72px, 9vw, 160px);
  font-weight: 600;
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: var(--brand-navy);
  font-variant-numeric: tabular-nums;
}

.product-hero__title {
  grid-column: 1 / 11;
  font-family: var(--sans);
  font-size: clamp(40px, 5.5vw, 88px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: var(--sp-4);
}

.product-hero__title em {
  font-style: normal;
  color: var(--brand-navy);
}

.product-hero__tag {
  grid-column: 1 / 9;
  font-size: var(--fs-lg);
  color: var(--fg-mid);
  line-height: 1.5;
  max-width: 60ch;
  margin-bottom: var(--sp-7);
}

.product-hero__meta {
  grid-column: 1 / 13;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-5);
  padding-top: var(--sp-4);
  border-top: 1px solid var(--line);
}

.product-hero__meta dt {
  font-family: var(--mono);
  font-size: var(--fs-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-dim);
  margin-bottom: var(--sp-2);
}

.product-hero__meta dd {
  font-family: var(--sans);
  font-size: var(--fs-md);
  color: var(--fg);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}

.product-hero__meta dd .navy { color: var(--brand-navy); }

.product-hero__ctas {
  grid-column: 1 / 13;
  display: flex;
  gap: var(--sp-3);
  margin-top: var(--sp-6);
  flex-wrap: wrap;
}

/* ==========================================================================
   product showcase — large app screenshot
   ========================================================================== */

.showcase {
  padding: var(--sp-9) 0;
  background: var(--bg-dark);
  color: var(--fg-light);
  border-bottom: 1px solid var(--bg-dark-2);
  position: relative;
  overflow: hidden;
}

.showcase::before {
  content: "";
  position: absolute;
  top: -200px;
  right: 10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(91, 192, 235, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.showcase__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--sp-5);
  position: relative;
  z-index: 1;
}

.showcase__top {
  grid-column: 1 / 13;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: var(--sp-5);
  margin-bottom: var(--sp-7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-family: var(--mono);
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.5);
}

.showcase__top .left { display: inline-flex; align-items: center; gap: var(--sp-3); }
.showcase__top .right { display: inline-flex; align-items: center; gap: var(--sp-4); }
.showcase__top .sky { color: var(--brand-sky); }

.showcase__label {
  grid-column: 1 / 4;
  font-family: var(--mono);
  font-size: var(--fs-xs);
  color: var(--brand-sky);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
}

.showcase__title {
  grid-column: 4 / 13;
  font-family: var(--sans);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-7);
}

.showcase__title em {
  font-style: normal;
  color: var(--brand-sky);
}

.showcase__frame {
  grid-column: 1 / 13;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-dark-2);
  box-shadow: var(--shadow-glow);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.showcase__frame {
  aspect-ratio: 16 / 9;
  background: var(--bg-dark-2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: zoom-in;
}

.showcase__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.showcase__caption {
  grid-column: 1 / 13;
  margin-top: var(--sp-4);
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ==========================================================================
   product screenshot gallery
   ========================================================================== */

.gallery {
  padding: var(--sp-9) 0;
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
}

.gallery__item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg-2);
  display: flex;
  flex-direction: column;
  cursor: zoom-in;
  transition: border-color 0.15s ease;
  overflow: hidden;
}

.gallery__item:hover { border-color: var(--line-2); }

.gallery__img-wrap {
  aspect-ratio: 16 / 9;
  background: var(--bg);
  overflow: hidden;
  position: relative;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.gallery__item-meta {
  padding: var(--sp-3) var(--sp-4);
  border-top: 1px solid var(--line);
  background: var(--bg-2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-3);
}

.gallery__item-name {
  font-family: var(--mono);
  font-size: var(--fs-sm);
  color: var(--fg);
  font-weight: 500;
}

.gallery__item-tag {
  font-family: var(--mono);
  font-size: var(--fs-xs);
  color: var(--fg-dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ==========================================================================
   product section (overview)
   ========================================================================== */

.product-section {
  padding: var(--sp-9) 0;
  border-bottom: 1px solid var(--line);
}

.product-section__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--sp-5);
}

.product-section__index {
  grid-column: 1 / 3;
  font-family: var(--mono);
  font-size: var(--fs-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-navy);
  font-weight: 500;
}

.product-section__title {
  grid-column: 3 / 13;
  font-family: var(--sans);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-7);
}

.product-section__title em {
  font-style: normal;
  color: var(--brand-navy);
}

.product-section__body {
  grid-column: 3 / 9;
  font-size: var(--fs-md);
  line-height: 1.65;
  color: var(--fg-mid);
}

.product-section__body p + p {
  margin-top: var(--sp-4);
}

.product-section__aside {
  grid-column: 10 / 13;
  font-size: var(--fs-base);
  color: var(--fg-dim);
  line-height: 1.6;
  padding-left: var(--sp-5);
  border-left: 2px solid var(--brand-sky);
}

.product-section__aside strong { color: var(--fg); font-weight: 500; }

/* ==========================================================================
   spec sheet
   ========================================================================== */

.specs {
  padding: var(--sp-9) 0;
  border-bottom: 1px solid var(--line);
}

.specs__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}

.specs__row {
  grid-column: 1 / 13;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.5fr 1.5fr;
  border-bottom: 1px solid var(--line);
  font-size: var(--fs-base);
  transition: background 0.15s ease;
}

.specs__row:hover { background: var(--bg-2); }

.specs__row--head {
  background: var(--bg-2);
  font-family: var(--mono);
  font-size: var(--fs-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-navy);
  font-weight: 500;
}

.specs__row--head:hover { background: var(--bg-2); }

.specs__cell {
  padding: var(--sp-4);
  border-right: 1px solid var(--line);
  display: flex;
  align-items: center;
  font-variant-numeric: tabular-nums;
}

.specs__cell:last-child { border-right: none; }

.specs__cell--label { color: var(--fg-dim); font-weight: 500; }
.specs__cell--value { color: var(--fg); font-weight: 500; }
.specs__cell--value.is-navy { color: var(--brand-navy); }

.specs__row--head .specs__cell {
  color: var(--brand-navy);
  padding: var(--sp-3) var(--sp-4);
}

/* ==========================================================================
   use cases
   ========================================================================== */

.usecases {
  padding: var(--sp-9) 0;
  border-bottom: 1px solid var(--line);
}

.usecases__list {
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0;
}

.usecase {
  grid-column: span 6;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: var(--sp-6) var(--sp-5);
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: var(--sp-5);
  align-items: start;
  transition: background 0.15s ease;
}

.usecase:hover { background: var(--bg-2); }

.usecase:nth-child(2n) { border-right: none; }

.usecase__num {
  font-family: var(--sans);
  font-size: 36px;
  color: var(--brand-navy);
  font-weight: 600;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}

.usecase__body h4 {
  font-family: var(--sans);
  font-size: var(--fs-md);
  font-weight: 600;
  margin-bottom: var(--sp-2);
  color: var(--fg);
}

.usecase__body p {
  font-size: var(--fs-sm);
  color: var(--fg-dim);
  line-height: 1.6;
}

/* ==========================================================================
   CTA
   ========================================================================== */

.cta {
  padding: var(--sp-10) 0;
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
}

.cta__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--sp-5);
  align-items: end;
}

.cta__label {
  grid-column: 1 / 3;
  font-family: var(--mono);
  font-size: var(--fs-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-navy);
  font-weight: 500;
}

.cta__title {
  grid-column: 3 / 12;
  font-family: var(--sans);
  font-size: clamp(40px, 5vw, 80px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.025em;
  margin-bottom: var(--sp-7);
}

.cta__title em {
  font-style: normal;
  color: var(--brand-navy);
}

.cta__actions {
  grid-column: 3 / 12;
  display: flex;
  gap: var(--sp-3);
  flex-wrap: wrap;
}

.cta__grid--center .cta__title,
.cta__grid--center .cta__actions {
  grid-column: 1 / -1;
  justify-self: center;
  text-align: center;
}

.cta__grid--center .cta__actions {
  justify-content: center;
}

/* ==========================================================================
   buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  padding: 13px 22px;
  font-family: var(--sans);
  font-size: var(--fs-sm);
  font-weight: 500;
  letter-spacing: 0;
  border: 1px solid var(--line-2);
  color: var(--fg);
  transition: all 0.2s ease;
  background: var(--bg);
  cursor: pointer;
  border-radius: 6px;
}

.btn:hover {
  background: var(--fg);
  color: var(--bg);
  border-color: var(--fg);
}

.btn--primary {
  background: var(--brand-navy);
  color: var(--fg-light);
  border-color: var(--brand-navy);
  font-weight: 600;
}

.btn--primary:hover {
  background: var(--brand-navy-2);
  border-color: var(--brand-navy-2);
  color: var(--fg-light);
}

.btn--replay {
  background: var(--replay);
  color: var(--fg-light);
  border-color: var(--replay);
  font-weight: 600;
}

.btn--replay:hover {
  background: var(--replay-2);
  border-color: var(--replay-2);
  color: var(--fg-light);
}

.btn--play {
  background: var(--play);
  color: var(--fg-light);
  border-color: var(--play);
  font-weight: 600;
}

.btn--play:hover {
  background: var(--play-2);
  border-color: var(--play-2);
  color: var(--fg-light);
}

.btn--gfx {
  background: var(--gfx);
  color: var(--fg-light);
  border-color: var(--gfx);
  font-weight: 600;
}

.btn--gfx:hover {
  background: var(--gfx-2);
  border-color: var(--gfx-2);
  color: var(--fg-light);
}

.btn--ingest {
  background: var(--ingest);
  color: var(--fg-light);
  border-color: var(--ingest);
  font-weight: 600;
}

.btn--ingest:hover {
  background: var(--ingest-2);
  border-color: var(--ingest-2);
  color: var(--fg-light);
}

.btn--dark-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--fg-light);
}

.btn--dark-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--fg-light);
  color: var(--fg-light);
}

.btn--arrow::after {
  content: "→";
  font-size: var(--fs-md);
  transition: transform 0.2s ease;
}

.btn--arrow:hover::after {
  transform: translateX(2px);
}

/* ==========================================================================
   responsive
   ========================================================================== */

@media (max-width: 960px) {
  .topbar__inner { grid-template-columns: auto 1fr auto; }
  .nav { display: none; }

  .hero__inner { padding: 0 var(--sp-4); }
  .hero__lead { font-size: var(--fs-md); }
  .hero__shots { margin-top: var(--sp-5); }
  .hero__room { gap: 12px; padding: 16px; transform: none; }
  .hero__monitor--main { grid-column: 1 / 3; }

  .statstrip { grid-template-columns: 1fr 1fr; gap: var(--sp-4); }

  .channel { grid-column: span 6; }
  .channel:nth-child(4n) { border-right: var(--line); }
  .channel:nth-child(2n) { border-right: none; }

  .capability { grid-column: span 6; }
  .capability:nth-child(3n) { border-right: var(--line); }
  .capability:nth-child(2n) { border-right: none; }

  .bigquote__num { grid-column: 1 / -1; }
  .bigquote__text { grid-column: 1 / -1; }
  .bigquote__cite { grid-column: 1 / -1; }

  .footer__brand { grid-column: 1 / -1; }
  .footer__col { grid-column: span 6; }

  .featured__copy { grid-column: 1 / -1; }
  .featured__visual { grid-column: 1 / -1; margin-top: var(--sp-5); }
  .featured__specs { grid-template-columns: 1fr 1fr; }
  .feat-spec:nth-child(2) { border-right: none; }
  .feat-spec:nth-child(odd) { border-right: 1px solid rgba(255, 255, 255, 0.08); }
  .feat-spec:nth-child(-n+2) { border-bottom: 1px solid rgba(255, 255, 255, 0.08); }

  .product-hero__title { grid-column: 1 / -1; }
  .product-hero__tag { grid-column: 1 / -1; }
  .product-hero__meta { grid-column: 1 / -1; }
  .product-hero__ctas { grid-column: 1 / -1; }
  .product-hero__lockup { grid-column: 1 / -1; }

  .product-section__index { grid-column: 1 / -1; }
  .product-section__title { grid-column: 1 / -1; }
  .product-section__body { grid-column: 1 / -1; }
  .product-section__aside { grid-column: 1 / -1; border-left: none; padding-left: 0; border-top: 2px solid var(--brand-sky); padding-top: var(--sp-5); }

  .specs__row { grid-template-columns: 1fr 1fr; }
  .specs__row .specs__cell:nth-child(n+3) { border-top: 1px solid var(--line); }

  .usecase { grid-column: 1 / -1; border-right: none !important; }

  .cta__title { grid-column: 1 / -1; }
  .cta__actions { grid-column: 1 / -1; }

  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .showcase__label { grid-column: 1 / -1; }
  .showcase__title { grid-column: 1 / -1; }
}

/* ==========================================================================
   about page
   ========================================================================== */

.about {
  padding: var(--sp-9) 0;
  border-bottom: 1px solid var(--line);
  min-height: 70vh;
}

.about__head { max-width: 720px; margin-bottom: var(--sp-8); }
.about__head .label { color: var(--brand-sky); margin-bottom: var(--sp-4); display: block; }
.about__title { font-size: clamp(32px, 4vw, 56px); font-weight: 600; line-height: 1.05; letter-spacing: -0.025em; margin-bottom: var(--sp-4); }
.about__lead { font-size: var(--fs-md); color: var(--fg-mid); line-height: 1.6; max-width: 56ch; }

.about__inner { display: grid; grid-template-columns: 1fr 1.6fr; gap: var(--sp-8); align-items: start; }
.about__head { position: sticky; top: 96px; }
.about__head .label { color: var(--brand-sky); margin-bottom: var(--sp-4); display: block; }
.about__title { font-size: clamp(28px, 3.5vw, 48px); font-weight: 600; line-height: 1.05; letter-spacing: -0.025em; margin-bottom: var(--sp-5); }
.about__lead { font-size: var(--fs-md); color: var(--fg-mid); line-height: 1.6; margin-bottom: var(--sp-6); }

.about__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: var(--sp-5);
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.about__stat-num {
  font-family: var(--sans);
  font-size: var(--fs-4xl);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--fg);
  line-height: 1;
}
.about__stat-label { font-family: var(--mono); font-size: var(--fs-xs); letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-dim); }

.about__body { max-width: 72ch; }
.about__body p {
  font-size: var(--fs-md);
  line-height: 1.7;
  color: var(--fg-mid);
  margin-bottom: var(--sp-5);
}
.about__body p strong { color: var(--fg); font-weight: 600; }
.about__body a { color: var(--brand-sky); font-weight: 500; }
.about__body a:hover { color: var(--fg); }

.about__h2 {
  font-family: var(--mono);
  font-size: var(--fs-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-navy);
  font-weight: 500;
  margin-top: var(--sp-8);
  margin-bottom: var(--sp-5);
  padding-bottom: var(--sp-3);
  border-bottom: 1px solid var(--line);
}

.about__highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-3);
}

.about__hl {
  padding: var(--sp-5);
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  transition: border-color 0.15s ease;
}
.about__hl:hover { border-color: var(--line-2); }

.about__hl-id {
  font-family: var(--mono);
  font-size: var(--fs-xs);
  letter-spacing: 0.14em;
  color: var(--brand-navy);
  font-weight: 500;
}

.about__hl-title {
  font-size: var(--fs-md);
  font-weight: 600;
  color: var(--fg);
  letter-spacing: -0.01em;
}

.about__hl-body {
  font-size: var(--fs-sm);
  line-height: 1.6;
  color: var(--fg-mid);
}
.about__hl-body strong { color: var(--fg); font-weight: 600; }

@media (max-width: 900px) {
  .about__inner { grid-template-columns: 1fr; gap: var(--sp-6); }
  .about__head { position: static; }
  .about__highlights { grid-template-columns: 1fr; }
}

/* ==========================================================================
   formats table — now2ingest
   ========================================================================== */

.formats {
  padding: var(--sp-9) 0;
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
}

.formats__stack {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--bg);
}

.formats__row {
  display: grid;
  grid-template-columns: 200px 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.formats__row:last-child { border-bottom: none; }

.formats__row-label {
  font-family: var(--mono);
  font-size: var(--fs-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-navy);
  font-weight: 500;
  padding: var(--sp-4);
  border-right: 1px solid var(--line);
  background: var(--bg-2);
}

.formats__row-value {
  padding: var(--sp-3) var(--sp-4);
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.formats__chip {
  display: inline-flex;
  align-items: center;
  padding: 4px 9px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 4px;
  font-family: var(--mono);
  font-size: var(--fs-xs);
  color: var(--fg-mid);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.formats__table-wrap {
  margin-top: var(--sp-5);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--bg);
}

.formats__table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--fs-sm);
}

.formats__table thead th {
  font-family: var(--mono);
  font-size: var(--fs-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-navy);
  padding: var(--sp-3) var(--sp-4);
  text-align: left;
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
  font-weight: 500;
}

.formats__table tbody tr { border-top: 1px solid var(--line); }
.formats__table tbody tr:first-child { border-top: none; }

.formats__table tbody td {
  padding: var(--sp-3) var(--sp-4);
  color: var(--fg);
  font-family: var(--mono);
  font-size: var(--fs-sm);
  letter-spacing: 0.01em;
  vertical-align: top;
}

.formats__table tbody td:first-child {
  color: var(--fg);
  font-weight: 500;
  width: 200px;
  border-right: 1px solid var(--line);
}

.formats__table tbody td:last-child { color: var(--fg-mid); }

@media (max-width: 720px) {
  .formats__row { grid-template-columns: 1fr; }
  .formats__row-label { border-right: none; border-bottom: 1px solid var(--line); }
  .formats__table tbody td:first-child { width: auto; border-right: none; }
}

/* ==========================================================================
   download / request demo page
   ========================================================================== */

.request {
  padding: var(--sp-9) 0;
  border-bottom: 1px solid var(--line);
  min-height: 70vh;
}

.request__head { max-width: 640px; margin-bottom: var(--sp-8); }
.request__head .label { color: var(--brand-sky); margin-bottom: var(--sp-4); display: block; }
.request__title { font-size: clamp(32px, 4vw, 56px); font-weight: 600; line-height: 1.05; letter-spacing: -0.025em; margin-bottom: var(--sp-4); }
.request__lead { font-size: var(--fs-md); color: var(--fg-mid); line-height: 1.6; max-width: 52ch; }

.request__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-3);
}

.request__card {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  padding: var(--sp-6);
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: all 0.2s ease;
  min-height: 220px;
}

.request__card:hover { background: var(--bg-3); border-color: var(--line-2); transform: translateY(-2px); }

.request__icon { width: 48px; height: 48px; }
.request__icon img { width: 100%; height: 100%; object-fit: contain; }

.request__index {
  font-family: var(--mono);
  font-size: var(--fs-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-navy);
  font-weight: 500;
}

.request__name { font-size: var(--fs-xl); font-weight: 600; letter-spacing: -0.02em; color: var(--fg); }

.request__desc { font-size: var(--fs-sm); line-height: 1.55; color: var(--fg-mid); flex: 1; }

.request__cta {
  font-family: var(--sans);
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--fg);
  margin-top: auto;
  padding-top: var(--sp-3);
  border-top: 1px solid var(--line);
  transition: gap 0.2s ease;
}

.request__card:hover .request__cta { color: var(--brand-sky); }

.request__foot {
  margin-top: var(--sp-7);
  text-align: center;
  font-size: var(--fs-sm);
  color: var(--fg-dim);
}

.request__foot a { color: var(--brand-sky); font-weight: 500; }
.request__foot a:hover { color: var(--fg); }

@media (max-width: 720px) {
  .request__grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   contact page
   ========================================================================== */

.contact {
  padding: var(--sp-9) 0;
  border-bottom: 1px solid var(--line);
  min-height: 70vh;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--sp-8);
  align-items: start;
}

.contact__aside { position: sticky; top: 96px; }
.contact__aside .label { color: var(--brand-sky); margin-bottom: var(--sp-4); display: block; }
.contact__title { font-size: clamp(32px, 4vw, 56px); font-weight: 600; line-height: 1.05; letter-spacing: -0.025em; margin-bottom: var(--sp-5); }
.contact__lead { font-size: var(--fs-md); color: var(--fg-mid); line-height: 1.6; max-width: 38ch; margin-bottom: var(--sp-6); }

.contact__meta { display: flex; flex-direction: column; gap: var(--sp-4); padding-top: var(--sp-5); border-top: 1px solid var(--line); }
.contact__meta dt { font-family: var(--mono); font-size: var(--fs-xs); letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-dim); margin-bottom: var(--sp-1); }
.contact__meta dd { font-size: var(--fs-sm); color: var(--fg); line-height: 1.6; }
.contact__meta a { color: var(--fg); }
.contact__meta a:hover { color: var(--brand-sky); }

.contact__form { display: flex; flex-direction: column; gap: var(--sp-4); }

.field { display: flex; flex-direction: column; gap: var(--sp-2); }
.field label { font-family: var(--mono); font-size: var(--fs-xs); letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-dim); font-weight: 500; }
.field input, .field select, .field textarea {
  font: inherit;
  font-size: var(--fs-base);
  color: var(--fg);
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  transition: border-color 0.15s ease;
  font-family: var(--sans);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--brand-sky);
}
.field textarea { resize: vertical; font-family: var(--sans); }
.field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--fg-dim) 50%), linear-gradient(135deg, var(--fg-dim) 50%, transparent 50%); background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; padding-right: 36px; }

.contact__submit { margin-top: var(--sp-3); align-self: flex-start; }
.contact__submit:disabled { opacity: 0.5; cursor: default; }

.contact__success { font-family: var(--mono); font-size: var(--fs-sm); color: var(--brand-sky); letter-spacing: 0.06em; padding: var(--sp-3) var(--sp-4); border: 1px solid var(--brand-sky); border-radius: var(--radius-sm); background: rgba(91, 192, 235, 0.06); }

@media (max-width: 900px) {
  .contact__grid { grid-template-columns: 1fr; gap: var(--sp-6); }
  .contact__aside { position: static; }
}

/* ==========================================================================
   lightbox
   ========================================================================== */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--sp-6);
  cursor: zoom-out;
}

.lightbox.is-open { display: flex; }

.lightbox__img {
  max-width: 95vw;
  max-height: 90vh;
  width: auto;
  height: auto;
  display: block;
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: 0 32px 96px rgba(0,0,0,0.5);
}

.lightbox__caption {
  position: absolute;
  bottom: var(--sp-5);
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--mono);
  font-size: var(--fs-xs);
  color: var(--fg-dim);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.lightbox__close {
  position: absolute;
  top: var(--sp-4);
  right: var(--sp-5);
  width: 40px;
  height: 40px;
  border: 1px solid var(--line-2);
  border-radius: 50%;
  background: transparent;
  color: var(--fg);
  font-family: var(--mono);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.15s ease;
}

.lightbox__close:hover { border-color: var(--fg); }

@media (max-width: 600px) {
  .hero { padding: var(--sp-7) 0; }
  .section { padding: var(--sp-7) 0; }
  .featured { padding: var(--sp-7) 0; }
  .product-hero { padding: var(--sp-6) 0 var(--sp-7); }

  .capability { grid-column: 1 / -1; border-right: none !important; }
  .channel { grid-column: 1 / -1; border-right: none !important; }

  .hero__shots { margin-top: var(--sp-4); }
  .hero__room { grid-template-columns: 1fr; padding: 12px; gap: 10px; }
  .hero__monitor--main,
  .hero__monitor--side { grid-column: 1; }
  .monitor__bezel { padding: 8px 8px 18px; }
  .monitor__label { font-size: 9px; }
}

@media (max-width: 600px) {
  .hero { padding: var(--sp-7) 0; }
  .section { padding: var(--sp-7) 0; }
  .featured { padding: var(--sp-7) 0; }
  .product-hero { padding: var(--sp-6) 0 var(--sp-7); }

  .capability { grid-column: 1 / -1; border-right: none !important; }
  .channel { grid-column: 1 / -1; border-right: none !important; }

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

  .section__index { grid-column: 1 / -1; }
  .section__title { grid-column: 1 / -1; }
  .section__meta { grid-column: 1 / -1; text-align: left; }

  .featured__specs { grid-template-columns: 1fr; }
  .feat-spec { border-right: none !important; border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
  .feat-spec:last-child { border-bottom: none; }

  .product-hero__meta { grid-template-columns: 1fr 1fr; }
  .statstrip { grid-template-columns: 1fr; }

  .product-hero__lockup { flex-direction: column; align-items: flex-start; gap: var(--sp-3); }
  .product-hero__lockup img { height: 56px; }

  .gallery__grid { grid-template-columns: 1fr; }
}
