:root {
  color-scheme: dark;
  --bg: #07090a;
  --bg-soft: #0d1012;
  --panel: #111518;
  --panel-strong: #171d20;
  --panel-warm: #191612;
  --ink: #f8faf7;
  --ink-soft: #d7ded8;
  --muted: #9ca7a1;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.2);
  --orange: #ff861f;
  --orange-soft: rgba(255, 134, 31, 0.14);
  --orange-line: rgba(255, 134, 31, 0.36);
  --success: #b8f7d0;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

button {
  cursor: pointer;
}

code {
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 2px 6px;
}

:focus-visible {
  outline: 3px solid rgba(255, 134, 31, 0.55);
  outline-offset: 3px;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px;
  background: rgba(7, 9, 10, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  width: 212px;
  min-width: 0;
  align-items: center;
}

.brand img {
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a,
.nav-products-toggle {
  padding: 10px 12px;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
}

.site-nav a:hover,
.nav-products-toggle:hover,
.nav-products.is-open .nav-products-toggle {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.07);
}

.nav-products {
  position: relative;
}

.nav-products-toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.nav-products-toggle::after {
  display: block;
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
  transform: translateY(-2px) rotate(45deg);
}

.products-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  display: none;
  min-width: 250px;
  padding: 8px;
  background: rgba(11, 14, 16, 0.98);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.nav-products.is-open .products-menu {
  display: grid;
}

.products-menu a {
  display: block;
  padding: 12px;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  padding: 0;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 134, 31, 0.08), transparent 44%),
    radial-gradient(circle at 82% 30%, rgba(184, 247, 208, 0.09), transparent 26%),
    var(--bg);
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.78) 48%, transparent 100%);
}

.hero-layout {
  display: grid;
  min-height: 760px;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 56px;
  align-items: center;
  padding: 72px 0 82px;
}

.hero-layout-single {
  max-width: 1080px;
  grid-template-columns: minmax(0, 1fr);
}

.hero-copy {
  max-width: 960px;
  min-width: 0;
}

.eyebrow,
.product-kicker {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.contact-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: 60px;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 850px;
}

.hero-lead {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: 21px;
  font-weight: 650;
}

.hero-product-links {
  display: grid;
  max-width: 1080px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 40px;
}

.hero-product-link {
  display: grid;
  gap: 14px;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  padding: 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.hero-product-link:hover {
  background: rgba(255, 134, 31, 0.08);
  border-color: var(--orange-line);
  transform: translateY(-1px);
}

.hero-product-logo {
  display: grid;
  min-height: 170px;
  aspect-ratio: 16 / 10;
  place-items: center;
  overflow: hidden;
  padding: 18px;
  background: #030404;
  border: 1px solid rgba(255, 134, 31, 0.22);
  border-radius: 8px;
}

.hero-product-logo img {
  width: 100%;
  max-width: 340px;
  height: 100%;
  max-height: 124px;
  object-fit: contain;
}

.hero-product-link > span:last-child {
  display: block;
  min-width: 0;
  max-width: 100%;
  color: var(--ink);
  font-size: 18px;
  font-weight: 950;
  line-height: 1.18;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.hero-product-copy {
  display: grid;
  gap: 6px;
  min-width: 0;
  max-width: 100%;
}

.hero-product-title {
  display: block;
  min-width: 0;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.hero-product-status {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  padding: 5px 10px;
  color: #080909;
  background: var(--orange);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.hero-actions,
.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button-primary {
  color: #08100c;
  background: var(--orange);
}

.button-primary:hover {
  background: #ff9c45;
}

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

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}

.button-disabled,
.button-disabled:hover {
  color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--line);
  cursor: default;
  transform: none;
}

.trust-strip {
  display: grid;
  max-width: 760px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 42px 0 0;
}

.trust-strip div {
  min-height: 108px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.trust-strip dt {
  margin: 0;
  color: var(--ink);
  font-size: 24px;
  font-weight: 950;
  line-height: 1;
}

.trust-strip dd {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

.product-card,
.reality-panel,
.version-card,
.workflow-list article,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.section {
  padding: 98px 0;
  scroll-margin-top: 92px;
}

.product-section,
.workflow-section {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
}

.professional-experience-section {
  background:
    radial-gradient(circle at 78% 12%, rgba(255, 134, 31, 0.16), transparent 30%),
    linear-gradient(180deg, #0b0e10 0%, #090b0c 100%);
  border-top: 1px solid var(--line);
}

.versions-section,
.experience-section {
  background:
    linear-gradient(180deg, rgba(255, 134, 31, 0.055), transparent 30%),
    var(--bg);
}

.versions-section .section-heading {
  margin-bottom: 50px;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 42px;
}

.section-heading.centered {
  max-width: 820px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading h2,
.contact-copy h2 {
  font-size: 44px;
  line-height: 1.05;
}

.section-heading p:not(.eyebrow),
.contact-copy p {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.centered p:not(.eyebrow) {
  margin-right: auto;
  margin-left: auto;
}

.professional-experience-layout {
  display: grid;
  gap: 34px;
}

.professional-experience-layout .section-heading {
  max-width: 880px;
  margin-bottom: 0;
}

.experience-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.experience-proof-grid div {
  min-height: 142px;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(255, 134, 31, 0.16), transparent 50%),
    rgba(255, 255, 255, 0.055);
  border: 1px solid var(--orange-line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.experience-proof-grid span,
.experience-brand-group h3 {
  display: block;
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.experience-proof-grid strong {
  display: block;
  color: var(--ink);
  font-size: 26px;
  line-height: 1.05;
}

.experience-proof-grid p {
  margin: 10px 0 0;
  color: var(--muted);
  font-weight: 750;
}

.experience-brand-groups {
  display: grid;
  gap: 18px;
}

.experience-brand-group {
  padding: 24px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.brand-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.brand-cloud li {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 8px 13px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
}

.product-card {
  background:
    linear-gradient(135deg, rgba(255, 134, 31, 0.11), transparent 38%),
    var(--panel);
}

.auto-ducking-logo-lockup {
  width: min(100%, 430px);
  margin: 0 auto 18px;
  padding: 10px 14px;
  background:
    radial-gradient(circle at 72% 46%, rgba(255, 134, 31, 0.18), transparent 34%),
    #030404;
  border: 1px solid rgba(255, 134, 31, 0.22);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.35);
}

.auto-ducking-logo-lockup img,
.product-logo {
  display: block;
  width: 100%;
  height: auto;
}

.auto-ducking-explainer {
  max-width: 760px;
  margin: 20px auto 30px;
  padding: 22px 26px;
  background:
    linear-gradient(135deg, rgba(255, 134, 31, 0.12), rgba(255, 255, 255, 0.025)),
    rgba(14, 18, 19, 0.86);
  border: 1px solid rgba(255, 134, 31, 0.22);
  border-radius: 12px;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.26);
}

.section-heading .auto-ducking-explainer p {
  max-width: none;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.section-heading .auto-ducking-explainer .auto-ducking-explainer-title {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 28px;
  line-height: 1.14;
  font-weight: 950;
}

.product-logo {
  max-width: 260px;
  margin: 0 0 16px;
  padding: 6px 9px;
  background: #030404;
  border: 1px solid rgba(255, 134, 31, 0.18);
  border-radius: 8px;
}

.product-logo-wide {
  max-width: 320px;
}

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

.tool-product-card {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 24px;
  align-items: stretch;
  padding: 28px;
  border-color: var(--orange-line);
  overflow: hidden;
}

.product-copy h3,
.version-card h3,
.workflow-list h3 {
  margin: 0;
  color: var(--ink);
  font-size: 32px;
  line-height: 1.08;
}

.product-copy h3 {
  max-width: 720px;
  font-size: 34px;
}

.product-copy {
  min-width: 0;
}

.tool-product-card .product-copy {
  display: flex;
  flex-direction: column;
}

.tool-product-card .product-actions {
  margin-top: auto;
  padding-top: 32px;
}

.product-copy p {
  max-width: 650px;
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 17px;
}

.feature-list,
.version-card ul,
.reality-panel ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li,
.version-card li,
.reality-panel li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  font-weight: 700;
}

.feature-list li::before,
.version-card li::before,
.reality-panel li::before {
  position: absolute;
  top: 10px;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
  content: "";
}

.tool-media {
  min-width: 0;
}

.tool-media img {
  width: 100%;
  height: auto;
  background: #0d1113;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}

.screenshot-frame {
  display: grid;
  aspect-ratio: 16 / 9;
  place-items: center;
  overflow: hidden;
  padding: 10px;
  background: #050809;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}

.screenshot-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: transparent;
  border: 0;
  border-radius: 4px;
}

.image-lightbox-trigger {
  display: grid;
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  color: inherit;
  background: transparent;
  border: 0;
  border-radius: 4px;
  cursor: zoom-in;
}

.image-lightbox-trigger img {
  grid-area: 1 / 1;
}

.image-lightbox-trigger:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

.image-lightbox-hint {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 8px 12px;
  color: #070909;
  background: var(--orange);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.image-lightbox-trigger:hover .image-lightbox-hint,
.image-lightbox-trigger:focus-visible .image-lightbox-hint {
  opacity: 1;
  transform: translateY(0);
}

.software-capture-frame {
  aspect-ratio: 16 / 10;
}

.software-capture-frame img {
  object-position: top center;
}

.auto-ducking-pro-preview {
  width: min(460px, 100%);
  margin: 30px auto 46px;
}

.auto-ducking-pro-preview .software-capture-frame {
  aspect-ratio: 1398 / 1876;
  padding: 8px;
}

.atem-section {
  background:
    linear-gradient(180deg, rgba(255, 134, 31, 0.055), transparent 32%),
    var(--bg);
}

.atem-logo-lockup {
  width: min(100%, 430px);
  margin: 0 auto 18px;
  padding: 10px 14px;
  background:
    radial-gradient(circle at 72% 46%, rgba(255, 134, 31, 0.16), transparent 34%),
    #030404;
  border: 1px solid rgba(255, 134, 31, 0.22);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.35);
}

.atem-logo-lockup img {
  width: 100%;
  height: auto;
}

.atem-explainer {
  background:
    linear-gradient(135deg, rgba(255, 134, 31, 0.12), rgba(255, 255, 255, 0.025)),
    rgba(14, 18, 19, 0.86);
}

.atem-module-grid {
  display: grid;
  max-width: 1120px;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 24px;
  align-items: start;
  margin: 0 auto;
}

.atem-preview {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.atem-preview .screenshot-frame {
  min-height: 0;
  aspect-ratio: 16 / 9;
}

.atem-lifetime-banner {
  display: grid;
  gap: 6px;
  padding: 18px 20px;
  background:
    linear-gradient(135deg, rgba(255, 134, 31, 0.22), rgba(255, 134, 31, 0.06)),
    rgba(14, 18, 19, 0.94);
  border: 1px solid rgba(255, 134, 31, 0.72);
  border-left: 6px solid var(--orange);
  border-radius: 12px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.atem-lifetime-banner strong {
  color: var(--text);
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 950;
  line-height: 1.05;
}

.atem-lifetime-banner span {
  color: var(--muted);
  font-size: clamp(15px, 1.25vw, 18px);
  font-weight: 850;
  line-height: 1.35;
}

.atem-purchase-card {
  min-height: 0;
}

.atem-purchase-card .paypal-launch-button small {
  text-transform: none;
}

.atem-workflow-section {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
}

.workflow-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.workflow-list article {
  min-height: 260px;
  padding: 22px;
  background: var(--panel);
}

.workflow-list span {
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: #08100c;
  background: var(--orange);
  border-radius: 8px;
  font-weight: 950;
}

.workflow-list h3 {
  margin-top: 28px;
  font-size: 21px;
}

.workflow-list p {
  margin: 12px 0 0;
  color: var(--muted);
}

.version-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 1020px;
  gap: 24px;
  margin: 0 auto;
  align-items: stretch;
}

.version-card {
  display: flex;
  position: relative;
  min-height: 0;
  flex-direction: column;
  overflow: hidden;
  padding: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), transparent 34%),
    var(--panel);
  border-color: var(--line-strong);
}

.version-card::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: rgba(255, 255, 255, 0.18);
  content: "";
}

.version-lite {
  border-color: var(--orange-line);
  background:
    linear-gradient(135deg, rgba(255, 134, 31, 0.18), transparent 42%),
    var(--panel);
}

.version-lite::before {
  background: var(--orange);
}

.version-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 26px;
}

.version-card h3 {
  max-width: 420px;
}

.version-label {
  margin: 0;
  color: var(--orange);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.version-badge {
  display: inline-flex;
  min-width: 48px;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 950;
}

.version-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.platform-badge {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  color: #070909;
  background: var(--orange);
  border: 1px solid rgba(255, 134, 31, 0.65);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 950;
}

.version-price {
  margin: 18px 0 0;
  color: var(--ink);
  font-size: 28px;
  font-weight: 950;
  line-height: 1.1;
}

.version-copy {
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-weight: 750;
}

.version-card .button {
  margin-top: auto;
  align-self: flex-start;
  min-width: 210px;
}

.version-card ul {
  gap: 12px;
  margin: 24px 0 34px;
}

.version-card li {
  color: var(--ink-soft);
}

.paypal-license-form {
  display: grid;
  justify-items: start;
  gap: 12px;
  margin-top: auto;
  padding-top: 8px;
}

.paypal-launch-button {
  display: inline-grid;
  min-width: min(100%, 310px);
  min-height: 74px;
  place-items: center;
  gap: 4px;
  margin-top: 0;
  text-align: center;
}

.paypal-launch-button small {
  display: block;
  color: rgba(0, 0, 0, 0.78);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.1;
}

.paypal-brand {
  display: inline-flex;
  align-items: center;
  margin-top: 2px;
  padding: 7px 12px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 6px;
  font-size: 21px;
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1;
}

.paypal-brand-pay {
  color: #003087;
}

.paypal-brand-pal {
  color: #009cde;
}

.paypal-summary {
  max-width: 34ch;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 850;
  line-height: 1.45;
}

.paypal-status {
  min-height: 22px;
  margin: 0;
  color: var(--ink-soft);
  font-weight: 850;
}

.paypal-status[data-status="success"] {
  color: #81f0b1;
}

.paypal-status[data-status="error"] {
  color: #ffb2a6;
}

.paypal-license-result {
  display: grid;
  gap: 12px;
  padding: 16px;
  background: rgba(255, 134, 31, 0.1);
  border: 1px solid var(--orange-line);
  border-radius: 8px;
}

.paypal-license-result[hidden] {
  display: none;
}

.paypal-license-result strong {
  overflow-wrap: anywhere;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.2;
}

.paypal-license-result .button {
  margin-top: 0;
}

.trial-license-form {
  display: grid;
  gap: 12px;
  width: min(100%, 420px);
  margin-top: 22px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.trial-license-copy h4 {
  margin: 4px 0 8px;
  color: var(--ink);
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.05;
}

.trial-license-copy p:not(.version-label) {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.45;
}

.trial-license-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 850;
}

.trial-license-form input[type="email"] {
  width: 100%;
  padding: 12px 13px;
  color: #ffffff;
  background: #243142;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.trial-license-form input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.58);
}

.trial-check-row {
  grid-template-columns: 20px 1fr;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.trial-submit-button {
  width: 100%;
  margin-top: 0;
  justify-content: center;
}

.trial-status {
  color: var(--muted);
}

.trial-status[data-status="success"] {
  color: #81f0b1;
}

.trial-status[data-status="error"] {
  color: #ffb2a6;
}

.trial-license-result {
  display: grid;
  gap: 12px;
  padding: 15px;
  background: rgba(255, 134, 31, 0.1);
  border: 1px solid var(--orange-line);
  border-radius: 8px;
}

.trial-license-result[hidden] {
  display: none;
}

.trial-license-result strong {
  overflow-wrap: anywhere;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.2;
}

.trial-license-result .button {
  margin-top: 0;
}

.split-layout {
  display: grid;
  grid-template-columns: 0.96fr 1.04fr;
  gap: 56px;
  align-items: start;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 380px);
  gap: 64px;
  align-items: center;
}

.about-copy {
  min-width: 0;
}

.about-copy .section-heading {
  margin-bottom: 30px;
}

.about-portrait {
  width: min(100%, 380px);
  margin: 0;
  justify-self: end;
  background: #ff6a00;
  border-radius: 24px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.38), 0 0 0 1px rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.about-portrait img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: inherit;
}

.reality-panel {
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(255, 134, 31, 0.1), transparent 42%),
    var(--panel-strong);
}

.reality-panel ul {
  margin-top: 0;
}

.reality-panel li {
  color: var(--ink-soft);
}

.contact-section {
  background: var(--panel-warm);
  border-top: 1px solid var(--line);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.84fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-mark {
  width: 112px;
  margin-bottom: 28px;
}

.contact-links {
  display: grid;
  gap: 10px;
  margin-top: 30px;
}

.contact-links a {
  width: fit-content;
  color: var(--ink);
  font-size: 22px;
  font-weight: 900;
}

.contact-links a:hover {
  color: var(--orange);
}

.contact-actions {
  display: grid;
  gap: 18px;
}

.contact-form,
.subscribe-form {
  display: grid;
  gap: 16px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-form {
  color: #0b0d0e;
  background: #f7f4ef;
}

.subscribe-form {
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 134, 31, 0.16), transparent 44%),
    var(--panel-strong);
  border-color: var(--orange-line);
}

.subscribe-intro h3 {
  margin: 0;
  color: var(--ink);
  font-size: 28px;
  line-height: 1.08;
}

.subscribe-intro p:not(.eyebrow) {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 750;
}

.contact-form label,
.subscribe-form label {
  display: grid;
  gap: 8px;
  font-weight: 850;
}

.contact-form input,
.contact-form select,
.contact-form textarea,
.subscribe-form input {
  width: 100%;
  padding: 12px 13px;
  color: #0b0d0e;
  background: #ffffff;
  border: 1px solid #d8d0c6;
  border-radius: 8px;
}

.contact-form textarea {
  resize: vertical;
}

.check-row {
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 10px;
  color: #4b4f4b;
  font-size: 14px;
  font-weight: 650;
}

.check-row input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--orange);
}

.subscribe-form .check-row {
  color: var(--muted);
}

.contact-form .button {
  width: 100%;
  border: 0;
}

.subscribe-form .button {
  width: 100%;
  border: 0;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: #7a350b;
  font-weight: 800;
}

.subscribe-form .form-status {
  color: var(--muted);
}

.form-status[data-status="success"] {
  color: #188a4a;
}

.subscribe-form .form-status[data-status="success"] {
  color: #75d69b;
}

.form-status[data-status="error"] {
  color: #b02525;
}

.subscribe-form .form-status[data-status="error"] {
  color: #ff9b8f;
}

.form-status a {
  color: #a74808;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer {
  padding: 28px 0;
  color: var(--muted);
  background: #050607;
  border-top: 1px solid var(--line);
}

.footer-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-logo {
  width: 174px;
  height: auto;
}

.footer-layout div {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-layout a:hover {
  color: var(--ink);
}

.image-lightbox {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.86);
  backdrop-filter: blur(8px);
}

.image-lightbox[hidden] {
  display: none;
}

.image-lightbox-panel {
  display: grid;
  gap: 12px;
  width: min(100%, 1500px);
  max-height: calc(100vh - 80px);
  margin: 0;
}

.image-lightbox-panel img {
  display: block;
  width: 100%;
  max-height: calc(100vh - 130px);
  object-fit: contain;
  background: #050809;
  border: 1px solid rgba(255, 134, 31, 0.26);
  border-radius: 10px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.45);
}

.image-lightbox-panel figcaption {
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
  text-align: center;
}

.image-lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  color: var(--ink);
  background: rgba(17, 22, 22, 0.9);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
}

.image-lightbox-close:hover,
.image-lightbox-close:focus-visible {
  color: #070909;
  background: var(--orange);
}

body.lightbox-open {
  overflow: hidden;
}

@media (max-width: 1120px) {
  .workflow-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1040px) {
  .hero h1 {
    font-size: 50px;
  }

  .hero-layout,
  .tools-grid,
  .atem-module-grid,
  .experience-proof-grid,
  .split-layout,
  .about-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-layout-single {
    max-width: 760px;
  }

  .about-portrait {
    width: min(70vw, 340px);
    justify-self: center;
  }

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

@media (max-width: 760px) {
  html,
  body {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .container {
    width: 100%;
    max-width: 100%;
    padding-right: 16px;
    padding-left: 16px;
  }

  .site-header {
    min-height: 68px;
    padding: 12px 18px;
  }

  .brand {
    width: 170px;
  }

  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: fixed;
    top: 68px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    background: #0b0e10;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

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

  .site-nav a,
  .nav-products-toggle {
    padding: 14px;
    font-size: 15px;
  }

  .nav-products {
    width: 100%;
  }

  .nav-products-toggle {
    width: 100%;
    justify-content: space-between;
  }

  .products-menu {
    position: static;
    min-width: 0;
    margin: 4px 0 8px;
    box-shadow: none;
  }

  .products-menu a {
    white-space: normal;
  }

  .versions-section .section-heading,
  .versions-section .version-grid {
    width: 100%;
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
  }

  .versions-section .section-heading h2 {
    font-size: 24px;
  }

  .versions-section .section-heading > p:not(.eyebrow) {
    max-width: 32ch;
  }

  .auto-ducking-logo-lockup,
  .atem-logo-lockup,
  .auto-ducking-explainer {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .auto-ducking-explainer {
    margin: 16px auto 24px;
    padding: 18px 16px;
  }

  .section-heading .auto-ducking-explainer p {
    font-size: 15px;
    line-height: 1.48;
  }

  .section-heading .auto-ducking-explainer .auto-ducking-explainer-title {
    font-size: 20px;
    line-height: 1.18;
  }

  .hero-layout {
    min-height: auto;
    gap: 42px;
    padding: 68px 24px 72px;
  }

  .about-layout {
    gap: 34px;
  }

  .about-portrait {
    width: min(100%, 340px);
    aspect-ratio: 4 / 3;
  }

  .about-portrait img {
    height: 100%;
    object-fit: cover;
    object-position: center 18%;
  }

  .hero h1 {
    max-width: 100%;
    font-size: 28px;
  }

  .hero-copy,
  .hero-lead,
  .hero-actions,
  .trust-strip,
  .section-heading,
  .auto-ducking-explainer,
  .product-copy,
  .tool-product-card {
    max-width: 100%;
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .hero h1,
  .hero-lead,
  .section-heading,
  .section-heading h2,
  .section-heading p,
  .tool-product-card,
  .product-copy,
  .product-copy h3,
  .product-copy p {
    max-width: 100%;
  }

  .section-heading h2,
  .contact-copy h2,
  .product-copy h3 {
    font-size: 28px;
    overflow-wrap: anywhere;
  }

  .hero-lead,
  .section-heading p:not(.eyebrow),
  .contact-copy p,
  .product-copy p {
    font-size: 15px;
    overflow-wrap: anywhere;
  }

  .hero-lead {
    max-width: 36ch;
  }

  .hero-product-links {
    grid-template-columns: 1fr;
    max-width: 100%;
    gap: 14px;
  }

  .hero-product-link {
    padding: 14px;
  }

  .hero-product-logo {
    min-height: 132px;
    padding: 14px;
  }

  .hero-product-logo img {
    max-height: 96px;
  }

  .hero-actions,
  .product-actions {
    display: grid;
  }

  .button {
    width: 100%;
    white-space: normal;
  }

  .experience-proof-grid div,
  .experience-brand-group {
    padding: 20px;
  }

  .professional-experience-layout .section-heading {
    max-width: 30ch;
  }

  .professional-experience-layout .section-heading h2 {
    font-size: 23px;
  }

  .professional-experience-layout .section-heading p {
    max-width: 31ch;
  }

  .experience-proof-grid strong {
    font-size: 24px;
    overflow-wrap: anywhere;
  }

  .brand-cloud {
    gap: 8px;
  }

  .brand-cloud li {
    min-height: 34px;
    padding: 7px 11px;
    font-size: 13px;
  }

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

  .tool-product-card,
  .reality-panel,
  .version-card,
  .workflow-list article,
  .contact-form {
    padding: 20px;
  }

  .tool-media {
    padding: 0;
    overflow: hidden;
  }

  .screenshot-frame.tool-media {
    padding: 8px;
  }

  .tools-grid,
  .atem-module-grid,
  .tool-media,
  .tool-media img {
    max-width: 100%;
    min-width: 0;
  }

  .atem-preview .screenshot-frame {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .workflow-list article,
  .version-card {
    min-height: auto;
  }

  .section {
    padding: 76px 0;
  }

  .contact-links a {
    font-size: 19px;
  }

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

@media (max-width: 430px) {
  .container {
    width: 100%;
    max-width: 1160px;
    padding-right: 14px;
    padding-left: 14px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: 26px;
  }

  .hero-lead,
  .hero-actions,
  .trust-strip,
  .hero-product-links {
    max-width: 100%;
  }

  .section-heading h2,
  .contact-copy h2,
  .product-copy h3 {
    font-size: 26px;
  }

  .brand {
    width: 154px;
  }

  .hero-layout {
    padding: 56px 20px 72px;
  }

  .about-portrait {
    width: min(100%, 320px);
    aspect-ratio: 4 / 3;
  }
}
