@font-face {
  font-family: "Pretendard Variable";
  src: url("pretendard-variable.woff2") format("woff2-variations");
  font-weight: 45 920;
  font-style: normal;
  font-display: swap;
}

:root {
  --accent: #3fb6ff;
  --radius: 8px;
  --card-radius: 24px;
  --max: 1240px;
  --header-h: 80px;
}

.site {
  --bg: #080a0f;
  --panel: #10131a;
  --panel-2: #151922;
  --ink: #ffffff;
  --ink-soft: #d7dde7;
  --muted: #9aa4b3;
  --quiet: #6f7886;
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.18);
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.36);
  --header-bg: rgba(8, 12, 18, 0.9);
  --header-border: rgba(255, 255, 255, 0.06);
  min-height: 100vh;
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
}

.site[data-theme="light"] {
  --bg: #ffffff;
  --panel: #f4f6fa;
  --panel-2: #e9edf4;
  --ink: #0a0e14;
  --ink-soft: #303846;
  --muted: #5d6674;
  --quiet: #8993a1;
  --line: rgba(10, 14, 20, 0.12);
  --line-strong: rgba(10, 14, 20, 0.2);
  --shadow: 0 18px 50px rgba(20, 30, 55, 0.12);
  --header-bg: rgba(255, 255, 255, 0.92);
  --header-border: rgba(10, 14, 20, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #080a0f;
  font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

.wrap {
  width: min(calc(100% - 80px), var(--max));
  max-width: 100%;
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  border-bottom: 1px solid var(--header-border);
  background: var(--header-bg);
  backdrop-filter: blur(16px);
}

.site-header .wrap {
  width: min(calc(100% - 92px), 1820px);
}

.header-inner {
  min-height: var(--header-h);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 24px;
}

.brand-group {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-self: start;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  height: 58px;
  text-decoration: none;
  flex: 0 0 auto;
}

.brand img {
  width: 172px;
  height: 48px;
  object-fit: contain;
}

.theme-toggle {
  width: 68px;
  height: 34px;
  padding: 3px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

.site[data-theme="light"] .theme-toggle {
  background: #eef2f6;
  border-color: rgba(10, 14, 20, 0.12);
}

.theme-option {
  width: 30px;
  height: 26px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 180ms ease, color 180ms ease;
}

.site[data-theme="light"] .theme-option.light,
.site[data-theme="dark"] .theme-option.dark {
  background: var(--accent);
  color: #06121c;
  box-shadow: 0 4px 14px rgba(63, 182, 255, 0.28);
}

.theme-option svg {
  width: 15px;
  height: 15px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  gap: 26px;
}

.nav a {
  color: var(--ink-soft);
  font-size: 14.5px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.nav a:hover,
.nav a.active {
  color: var(--accent);
}

.nav-project-link {
  display: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-self: end;
}

.button,
.icon-button,
.menu-button {
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  white-space: nowrap;
}

.button {
  min-height: 48px;
  padding: 0 22px;
  font-size: 15px;
  font-weight: 850;
}

.button-primary {
  background: var(--accent);
  color: #06121c;
  box-shadow: 0 12px 28px rgba(63, 182, 255, 0.24);
}

.button-secondary {
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--ink);
}

.button-video {
  gap: 9px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
}

.button-video:hover,
.button-video:focus-visible {
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.22);
  outline: 0;
}

.button-video svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.site[data-theme="light"] .detail-hero .button-secondary,
.site[data-theme="light"] .detail-hero .button-video {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
}

.site[data-theme="light"] .detail-hero .button-secondary:hover,
.site[data-theme="light"] .detail-hero .button-secondary:focus-visible,
.site[data-theme="light"] .detail-hero .button-video:hover,
.site[data-theme="light"] .detail-hero .button-video:focus-visible {
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.22);
  outline: 0;
}

.site-header .button-primary {
  width: 120px;
  height: 40px;
  min-height: 40px;
  padding: 0 20px;
  border-radius: var(--card-radius);
  font-size: 14px;
  font-weight: 850;
  line-height: 1;
}

.icon-button {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  color: #ffffff;
}

.youtube {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  padding: 0;
  border: 1px solid #ff0000;
  border-radius: 999px;
  background: #ff0000;
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(255, 0, 0, 0.32);
}

.youtube svg {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
}

.youtube:hover {
  color: #ffffff;
  background: #df0000;
  border-color: #df0000;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  background: var(--panel);
  color: var(--ink);
  border: 1px solid var(--line);
}

main {
  padding-top: var(--header-h);
}

.detail-hero {
  min-height: min(760px, calc(100vh - var(--header-h)));
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 150px 0 82px;
  background: #030407;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
}

.detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 4, 7, 0.88), rgba(3, 4, 7, 0.52) 46%, rgba(3, 4, 7, 0.3)), linear-gradient(0deg, rgba(3, 4, 7, 0.92), transparent 46%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 920px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 800;
}

.breadcrumb a {
  text-decoration: none;
}

.breadcrumb a:hover,
.breadcrumb a:focus-visible {
  color: var(--accent);
}

.breadcrumb span:not(:last-child)::after {
  content: ">";
  margin-left: 8px;
  color: rgba(255, 255, 255, 0.42);
}

.kicker {
  margin-top: 34px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.detail-hero h1 {
  max-width: 820px;
  margin-top: 18px;
  color: #ffffff;
  font-size: clamp(44px, 5.1vw, 76px);
  line-height: 1.04;
  font-weight: 920;
  word-break: keep-all;
}

.mobile-title-line {
  display: inline;
}

.mobile-copy-line {
  display: inline;
}

.hero-lead {
  max-width: 760px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 20px;
  line-height: 1.75;
  font-weight: 650;
  word-break: keep-all;
}

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

.hero-summary-box {
  max-width: 760px;
  margin-top: 22px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(8, 12, 18, 0.54);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px);
}

.hero-summary-box ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-summary-box li {
  display: grid;
  grid-template-columns: 7px minmax(0, 1fr);
  gap: 11px;
  align-items: start;
  color: rgba(255, 255, 255, 0.88);
  font-size: 15.5px;
  line-height: 1.55;
  font-weight: 750;
  word-break: keep-all;
}

.hero-summary-box li::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-top: 0.62em;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(63, 182, 255, 0.16);
}

.live-hero .hero-content {
  max-width: 980px;
}

.live-section {
  scroll-margin-top: var(--header-h);
}

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

.section-heading.center {
  margin: 0 auto;
  text-align: center;
}

.section-heading h2 {
  margin-top: 14px;
  color: var(--ink);
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.08;
  font-weight: 920;
  word-break: keep-all;
}

.section-heading p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
  font-weight: 650;
  word-break: keep-all;
}

.section-heading-with-action {
  display: flex;
  gap: 28px;
  align-items: end;
  justify-content: space-between;
}

.section-heading-with-action .section-heading {
  flex: 1 1 auto;
}

.section-heading-actions {
  display: flex;
  justify-content: flex-end;
  flex: 0 0 auto;
  padding-bottom: 6px;
}

.section-heading-actions .button {
  color: var(--ink);
  text-decoration: none;
}

.section-heading-actions .button:hover,
.section-heading-actions .button:focus-visible {
  text-decoration: none;
}

.pillar-grid {
  display: grid;
  gap: 14px;
}

.live-card,
.step-card,
.team-grid article,
.reason-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel-2);
}

.live-card {
  min-height: 188px;
  padding: 24px;
}

.live-card > span,
.step-card > span,
.feature-copy > span,
.reason-grid article > span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.live-card h3,
.step-card h3,
.feature-copy h3,
.team-grid h3,
.reason-grid h3,
.infra-card h4 {
  margin: 10px 0 0;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.22;
  font-weight: 900;
  word-break: keep-all;
}

.live-card p,
.step-card p,
.feature-copy p,
.team-grid p,
.reason-grid p,
.infra-card p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
  font-weight: 650;
  word-break: keep-all;
}

.live-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 36px;
}

.live-track-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.live-stat {
  min-height: 180px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
}

.live-stat strong {
  display: block;
  color: var(--ink);
  font-size: clamp(38px, 4.4vw, 62px);
  line-height: 1;
  font-weight: 920;
  letter-spacing: 0;
}

.live-stat span {
  display: block;
  margin-top: 14px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.live-stat p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
  font-weight: 700;
  word-break: keep-all;
}

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

.step-card {
  min-height: 154px;
  padding: 22px;
}

.media-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 18px;
}

.media-pair figure,
.feature-media,
.reference-gallery figure {
  margin: 0;
}

.media-pair figure,
.feature-media,
.portrait-pair,
.xr-gallery,
.reference-gallery figure,
.short-gallery,
.infra-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel-2);
}

.media-pair img,
.media-pair video,
.feature-media img,
.feature-media video,
.xr-gallery img,
.portrait-pair img,
.infra-card img,
.reference-gallery img,
.short-gallery img {
  display: block;
  width: 100%;
  object-fit: cover;
}

.media-pair img,
.media-pair video {
  aspect-ratio: 16 / 10;
  height: auto;
}

.media-pair figcaption,
.reference-gallery figcaption {
  padding: 12px 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.feature-stack {
  display: grid;
  gap: 22px;
  margin-top: 38px;
}

.feature-block,
.infra-block {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 24px;
  align-items: center;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
}

.feature-block.reverse {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.feature-block.reverse .feature-copy {
  order: 2;
}

.feature-copy h3 {
  font-size: clamp(28px, 3vw, 42px);
}

.feature-list {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 18px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.62;
  font-weight: 700;
  word-break: keep-all;
}

.feature-list li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
}

.feature-copy > .button {
  margin-top: 24px;
}

.feature-media img,
.feature-media video,
.xr-gallery img {
  aspect-ratio: 16 / 10;
}

.ai-hybrid-media video {
  object-position: calc(50% - 30px) center;
}

.xr-gallery {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 8px;
  padding: 8px;
}

.xr-gallery img:first-child {
  grid-row: span 2;
  height: 100%;
}

.portrait-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 8px;
}

.portrait-pair img {
  aspect-ratio: 9 / 14;
}

.comparison-table {
  display: grid;
  margin-top: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.comparison-table > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.comparison-table > div + div {
  border-top: 1px solid var(--line);
}

.comparison-table strong,
.comparison-table span {
  padding: 14px;
  font-size: 14px;
  line-height: 1.5;
  word-break: keep-all;
}

.comparison-table strong {
  color: var(--ink);
  background: var(--panel-2);
}

.comparison-table span {
  color: var(--ink-soft);
}

.comparison-table strong + strong,
.comparison-table span + span {
  border-left: 1px solid var(--line);
}

.feature-note {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.metric-chip {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  margin-top: 18px;
  padding: 0 16px;
  border: 1px solid rgba(63, 182, 255, 0.42);
  border-radius: 999px;
  background: rgba(63, 182, 255, 0.11);
  color: var(--accent);
  font-size: 14px;
  font-weight: 900;
}

.infra-block {
  align-items: stretch;
}

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

.infra-card {
  display: block;
  color: inherit;
  text-decoration: none;
}

.infra-card img {
  aspect-ratio: 16 / 10;
}

.infra-card span {
  display: block;
  margin: 18px 18px 0;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.infra-card h4,
.infra-card p {
  margin-left: 18px;
  margin-right: 18px;
}

.infra-card p {
  padding-bottom: 20px;
  font-size: 14px;
}

.timeline {
  display: grid;
  gap: 12px;
}

.timeline article {
  display: grid;
  grid-template-columns: 86px minmax(0, 0.72fr) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel-2);
}

.timeline span {
  color: var(--accent);
  font-size: 14px;
  font-weight: 920;
  letter-spacing: 0.08em;
}

.timeline h3 {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.35;
  font-weight: 900;
  word-break: keep-all;
}

.timeline p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.62;
  font-weight: 650;
  word-break: keep-all;
}

.team-grid,
.reason-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.team-grid article,
.reason-grid article {
  min-height: 162px;
  padding: 22px;
}

.backup-banner {
  margin-top: 14px;
  padding: 22px;
  border: 1px solid rgba(63, 182, 255, 0.3);
  border-radius: var(--radius);
  background: rgba(63, 182, 255, 0.1);
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 800;
  word-break: keep-all;
}

.reference-gallery {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.reference-gallery img,
.short-gallery img {
  aspect-ratio: 9 / 16;
}

.live-reference-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 24px;
  align-items: stretch;
  margin-top: 34px;
}

.live-reference-proof,
.live-reference-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
}

.live-reference-proof {
  margin: 0;
}

.live-reference-proof img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: contain;
  background: #ffffff;
}

.live-reference-proof figcaption {
  padding: 14px 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
  font-weight: 800;
  word-break: keep-all;
}

.live-reference-card {
  display: flex;
  flex-direction: column;
  padding: 28px;
}

.live-reference-card > span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid rgba(63, 182, 255, 0.34);
  border-radius: 999px;
  background: rgba(63, 182, 255, 0.1);
  color: var(--accent);
  font-size: 12px;
  font-weight: 920;
  letter-spacing: 0.1em;
}

.live-reference-card h3 {
  margin: 18px 0 0;
  color: var(--ink);
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 1.1;
  font-weight: 920;
  word-break: keep-all;
}

.live-reference-card dl {
  display: grid;
  margin: 28px 0 0;
}

.live-reference-card dl div {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.live-reference-card dt {
  color: var(--accent);
  font-size: 12px;
  font-weight: 920;
  letter-spacing: 0.1em;
}

.live-reference-card dd {
  margin: 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.62;
  font-weight: 760;
  word-break: keep-all;
}

.live-reference-card .button {
  width: fit-content;
  margin-top: auto;
}

.live-reference-note {
  margin-top: 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  font-weight: 750;
  word-break: keep-all;
}

.reference-gallery-support {
  margin-top: 26px;
}

.live-video-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  gap: 24px;
  align-items: stretch;
  margin-top: 34px;
}

.live-youtube-frame,
.live-video-meta,
.live-package-card,
.live-channel-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel-2);
}

.live-youtube-frame {
  overflow: hidden;
}

.live-youtube-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 390px;
  border: 0;
  aspect-ratio: 16 / 9;
  background: #000000;
}

.live-video-meta {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
  padding: 26px;
}

.live-video-meta span,
.live-package-card span,
.live-channel-card span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 26px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 920;
  letter-spacing: 0.12em;
}

.live-video-meta h3,
.live-package-card h3,
.live-channel-card h3 {
  margin: 12px 0 0;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.22;
  font-weight: 920;
  word-break: keep-all;
}

.live-video-meta p,
.live-package-card p,
.live-channel-card p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.68;
  font-weight: 680;
  word-break: keep-all;
}

.live-video-points {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.live-video-points li {
  position: relative;
  padding-left: 18px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.6;
  font-weight: 760;
  word-break: keep-all;
}

.live-video-points li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
}

.live-package-grid,
.live-channel-grid {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.live-package-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.live-channel-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.live-package-card,
.live-channel-card {
  min-height: 190px;
  padding: 22px;
}

.consult-package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.consult-package-card {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel-2);
}

.consult-package-card.featured {
  border-color: rgba(63, 182, 255, 0.44);
  background: rgba(63, 182, 255, 0.09);
}

.consult-package-card span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 26px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 920;
  letter-spacing: 0.12em;
}

.consult-package-card h3 {
  margin: 10px 0 0;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.24;
  font-weight: 920;
  word-break: keep-all;
}

.consult-package-card p,
.consult-package-card li {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.62;
  font-weight: 650;
  word-break: keep-all;
}

.consult-package-card p {
  margin-top: 12px;
}

.consult-package-list {
  display: grid;
  gap: 8px;
  margin: 16px 0 18px;
  padding: 0;
  list-style: none;
}

.consult-package-list li {
  position: relative;
  padding-left: 18px;
}

.consult-package-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
}

.consult-package-fit {
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.consult-package-fit strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 900;
}

.consult-package-link {
  min-height: 42px;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding: 0 16px;
  border: 1px solid rgba(63, 182, 255, 0.42);
  border-radius: 999px;
  background: rgba(63, 182, 255, 0.08);
  color: var(--accent);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.consult-package-link:hover,
.consult-package-link:focus-visible {
  border-color: var(--accent);
  background: rgba(63, 182, 255, 0.15);
  outline: 0;
}

.consult-package-note {
  margin-top: 22px;
  padding: 20px 22px;
  border: 1px solid rgba(63, 182, 255, 0.3);
  border-radius: var(--radius);
  background: rgba(63, 182, 255, 0.09);
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 800;
  word-break: keep-all;
}

.consult-package-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.after-live {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 42px;
  align-items: center;
}

.after-live .button {
  margin-top: 28px;
}

.site[data-theme="light"] .after-live .button-video {
  border-color: rgba(10, 14, 20, 0.16);
  background: rgba(255, 255, 255, 0.84);
  color: var(--ink);
  box-shadow: 0 16px 34px rgba(20, 30, 55, 0.12);
}

.site[data-theme="light"] .after-live .button-video:hover,
.site[data-theme="light"] .after-live .button-video:focus-visible {
  border-color: rgba(10, 14, 20, 0.28);
  background: rgba(255, 255, 255, 0.96);
  outline: 0;
}

.short-gallery {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  padding: 8px;
}

.reason-grid article {
  background: var(--panel);
}

.video-modal[hidden] {
  display: none;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 4, 7, 0.78);
  backdrop-filter: blur(12px);
}

.video-modal-panel {
  position: relative;
  width: min(calc(100% - 32px), 540px);
  max-height: min(88vh, 900px);
  display: grid;
  gap: 18px;
  padding: 20px;
  overflow: auto;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.video-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.video-modal.video-modal-minimal .video-modal-panel {
  gap: 0;
  padding: 0;
  overflow: visible;
  background: #000000;
}

.video-modal.video-modal-widescreen .video-modal-panel {
  width: min(calc(100% - 32px), 1080px);
}

.video-modal.video-modal-minimal .video-modal-header {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
}

.video-modal.video-modal-minimal .video-modal-header > div {
  display: none;
}

.video-modal-eyebrow {
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.video-modal-header h2 {
  margin-top: 8px;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.2;
  font-weight: 920;
  word-break: keep-all;
}

.video-modal-close {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel-2);
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.video-modal.video-modal-minimal .video-modal-close {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(0, 0, 0, 0.56);
  color: #ffffff;
  backdrop-filter: blur(12px);
}

.video-modal-close:hover,
.video-modal-close:focus-visible {
  border-color: var(--accent);
  color: var(--accent);
  outline: 0;
}

.video-modal-close svg {
  width: 20px;
  height: 20px;
}

.video-modal-media {
  width: 100%;
  max-height: 72vh;
  aspect-ratio: 9 / 16;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #000000;
  object-fit: contain;
}

.video-modal.video-modal-minimal .video-modal-media {
  max-height: 88vh;
  border: 0;
}

.video-modal-youtube[hidden] {
  display: none;
}

.video-modal-youtube {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: var(--radius);
  background: #000000;
}

body.video-modal-open {
  overflow: hidden;
}

.detail-section {
  padding: 96px 0;
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}

.detail-section.alt {
  background: var(--panel);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 48px;
  align-items: start;
}

.section-title {
  position: sticky;
  top: calc(var(--header-h) + 28px);
}

.section-title h2 {
  margin-top: 14px;
  color: var(--ink);
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.08;
  font-weight: 920;
  word-break: keep-all;
}

.section-title p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
  font-weight: 650;
  word-break: keep-all;
}

.work-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.work-list li {
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel-2);
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.55;
  font-weight: 750;
  word-break: keep-all;
}

.service-note {
  margin-top: 28px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
  font-weight: 650;
  word-break: keep-all;
}

.insert-section {
  scroll-margin-top: var(--header-h);
}

.insert-category-grid,
.insert-case-grid,
.insert-deliverable-grid,
.insert-prep-grid {
  display: grid;
  gap: 14px;
}

.insert-category-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 34px;
}

.insert-case-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 34px;
}

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

.insert-category-grid article,
.insert-case-card,
.insert-deliverable-grid article,
.insert-prep-card,
.insert-faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel-2);
}

.insert-category-grid article,
.insert-deliverable-grid article,
.insert-prep-card {
  min-height: 172px;
  padding: 22px;
}

.insert-category-grid span,
.insert-case-card span,
.insert-deliverable-grid span,
.insert-prep-card span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 920;
  letter-spacing: 0.12em;
}

.insert-category-grid h3,
.insert-case-card h3,
.insert-deliverable-grid h3,
.insert-prep-card h3 {
  margin: 10px 0 0;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.24;
  font-weight: 920;
  word-break: keep-all;
}

.insert-category-grid p,
.insert-case-card p,
.insert-deliverable-grid p,
.insert-prep-card p,
.insert-faq-list p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
  font-weight: 650;
  word-break: keep-all;
}

.insert-category-grid .button {
  margin-top: 16px;
}

.insert-case-card {
  min-height: 280px;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
}

.insert-case-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.short-form-case-grid .insert-case-card img {
  aspect-ratio: 9 / 16;
}

.insert-case-card div {
  padding: 18px;
}

.insert-case-card strong {
  display: block;
  margin-top: 12px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 850;
}

.tvcf-case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.tvcf-case-card {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel-2);
}

.tvcf-case-thumb {
  position: relative;
  display: block;
  width: auto;
  margin: -24px -24px 22px;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-bottom: 1px solid var(--line);
  appearance: none;
  background: var(--bg);
  color: #ffffff;
  font: inherit;
  cursor: pointer;
}

.tvcf-case-thumb img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  filter: none;
  transform: none;
  transition: filter 220ms ease, transform 240ms ease;
}

.tvcf-case-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(4, 7, 12, 0.48);
  opacity: 0;
  transition: opacity 220ms ease;
}

.tvcf-case-play-label {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.58);
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.2;
  white-space: nowrap;
  opacity: 0;
  transform: translate(-50%, calc(-50% + 8px));
  transition: opacity 220ms ease, transform 220ms ease;
  backdrop-filter: blur(14px);
}

.tvcf-case-thumb:hover img,
.tvcf-case-thumb:focus-visible img {
  filter: brightness(0.56);
  transform: scale(1.04);
}

.tvcf-case-thumb:hover::after,
.tvcf-case-thumb:focus-visible::after {
  opacity: 1;
}

.tvcf-case-thumb:hover .tvcf-case-play-label,
.tvcf-case-thumb:focus-visible .tvcf-case-play-label {
  opacity: 1;
  transform: translate(-50%, -50%);
}

.tvcf-case-thumb:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

@media (hover: none) {
  .tvcf-case-thumb img {
    filter: brightness(0.64);
  }

  .tvcf-case-thumb::after,
  .tvcf-case-play-label {
    opacity: 1;
  }

  .tvcf-case-play-label {
    transform: translate(-50%, -50%);
  }
}

.tvcf-case-card > span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  padding: 0 11px;
  border: 1px solid rgba(63, 182, 255, 0.3);
  border-radius: 999px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 920;
  letter-spacing: 0.08em;
}

.tvcf-case-card h3 {
  margin: 18px 0 0;
  color: var(--ink);
  font-size: 25px;
  line-height: 1.22;
  font-weight: 920;
  word-break: keep-all;
}

.tvcf-case-card dl {
  display: grid;
  gap: 0;
  margin: 22px 0 0;
}

.tvcf-case-card dl div {
  padding: 15px 0;
  border-top: 1px solid var(--line);
}

.tvcf-case-card dt {
  color: var(--accent);
  font-size: 12px;
  font-weight: 920;
  letter-spacing: 0.1em;
}

.tvcf-case-card dd {
  margin: 7px 0 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.62;
  font-weight: 700;
  word-break: keep-all;
}

.tvcf-case-note {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.tvcf-case-note {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
  font-weight: 750;
  word-break: keep-all;
}

.insert-flow-note {
  margin-top: 22px;
  padding: 20px 22px;
  border: 1px solid rgba(63, 182, 255, 0.3);
  border-radius: var(--radius);
  background: rgba(63, 182, 255, 0.09);
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 800;
  word-break: keep-all;
}

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

.insert-faq-list summary {
  position: relative;
  padding: 20px 54px 20px 22px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.35;
  font-weight: 900;
  cursor: pointer;
  word-break: keep-all;
  list-style: none;
}

.insert-faq-list summary::-webkit-details-marker {
  display: none;
}

.insert-faq-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 22px;
  transform: translateY(-50%);
  color: var(--accent);
  font-size: 24px;
  line-height: 1;
  font-weight: 850;
}

.insert-faq-list details[open] summary::after {
  content: "-";
}

.insert-faq-list details p {
  padding: 0 22px 20px;
}

.voucher-section {
  scroll-margin-top: var(--header-h);
}

.voucher-section strong {
  color: var(--accent);
  font-weight: 900;
}

.voucher-stack {
  display: grid;
  gap: 22px;
}

.voucher-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.voucher-node,
.voucher-compare-card,
.voucher-support-card,
.voucher-production-grid article,
.voucher-faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel-2);
}

.voucher-node {
  min-height: 176px;
  padding: 22px;
}

.voucher-node span,
.voucher-compare-card span,
.voucher-support-card span,
.voucher-production-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 920;
  letter-spacing: 0.12em;
}

.voucher-node strong,
.voucher-support-card strong {
  display: block;
  margin-top: 12px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.25;
  font-weight: 920;
  word-break: keep-all;
}

.voucher-node p,
.voucher-compare-card p,
.voucher-support-card p,
.voucher-production-grid p,
.voucher-faq-list p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
  font-weight: 650;
  word-break: keep-all;
}

.voucher-node.highlight,
.step-card.emphasized {
  border-color: rgba(63, 182, 255, 0.42);
  background: rgba(63, 182, 255, 0.1);
}

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

.voucher-landing-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.voucher-landing-links .button {
  min-height: 44px;
  padding: 0 16px;
}

.voucher-landing-links .voucher-export-button {
  border-color: rgba(63, 182, 255, 0.62);
  background: rgba(63, 182, 255, 0.14);
  color: var(--accent);
}

.voucher-landing-links .voucher-innovation-button {
  border-color: rgba(64, 211, 146, 0.62);
  background: rgba(64, 211, 146, 0.14);
  color: #40d392;
}

.voucher-landing-links .voucher-export-button:hover,
.voucher-landing-links .voucher-export-button:focus-visible {
  border-color: var(--accent);
  background: var(--accent);
  color: #06121c;
  outline: 0;
}

.voucher-landing-links .voucher-innovation-button:hover,
.voucher-landing-links .voucher-innovation-button:focus-visible {
  border-color: #40d392;
  background: #40d392;
  color: #06121c;
  outline: 0;
}

.voucher-compare-card {
  display: block;
  min-height: 210px;
  padding: 24px;
  color: inherit;
  text-decoration: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.voucher-compare-card.export {
  border-color: rgba(63, 182, 255, 0.34);
}

.voucher-compare-card.innovation {
  border-color: rgba(64, 211, 146, 0.34);
}

.voucher-compare-card.innovation span {
  color: #40d392;
}

.voucher-compare-card:hover,
.voucher-compare-card:focus-visible {
  border-color: rgba(63, 182, 255, 0.62);
  box-shadow: 0 16px 42px rgba(9, 16, 28, 0.12);
  outline: 0;
  transform: translateY(-2px);
}

.voucher-compare-card.innovation:hover,
.voucher-compare-card.innovation:focus-visible {
  border-color: rgba(64, 211, 146, 0.62);
}

.voucher-compare-card h3,
.voucher-production-grid h3 {
  margin: 10px 0 0;
  color: var(--ink);
  font-size: 26px;
  line-height: 1.22;
  font-weight: 920;
  word-break: keep-all;
}

.voucher-compare-card a,
.voucher-official-links a,
.section-heading a {
  color: var(--accent);
  font-weight: 850;
  text-decoration: none;
}

.voucher-compare-card a:hover,
.voucher-compare-card a:focus-visible,
.voucher-official-links a:hover,
.voucher-official-links a:focus-visible,
.section-heading a:hover,
.section-heading a:focus-visible {
  text-decoration: underline;
}

.voucher-handhold-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 34px;
}

.voucher-disclaimer {
  margin: 0;
  padding: 18px 20px;
  border: 1px solid rgba(63, 182, 255, 0.28);
  border-radius: var(--radius);
  background: rgba(63, 182, 255, 0.09);
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.65;
  font-weight: 750;
  word-break: keep-all;
}

.voucher-support-card {
  min-height: 180px;
  padding: 24px;
}

.voucher-support-table > div {
  grid-template-columns: 0.75fr 1fr 1fr;
}

.voucher-official-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.voucher-official-links a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(63, 182, 255, 0.34);
  border-radius: 999px;
  background: rgba(63, 182, 255, 0.09);
}

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

.voucher-proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 42px;
  align-items: center;
}

.voucher-report-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.voucher-report-gallery figure,
.voucher-platform-shot {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel-2);
}

.voucher-report-gallery img,
.voucher-platform-shot img,
.voucher-media-grid img {
  display: block;
  width: 100%;
  object-fit: cover;
}

.voucher-report-gallery img {
  aspect-ratio: 3 / 4;
  object-position: top;
}

.voucher-report-gallery figcaption,
.voucher-platform-shot figcaption {
  padding: 12px 14px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
  font-weight: 800;
}

.voucher-platform-shot img {
  aspect-ratio: auto;
  height: auto;
  background: #ffffff;
  object-fit: contain;
  object-position: center;
}

.voucher-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.voucher-badge-row span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(63, 182, 255, 0.34);
  border-radius: 999px;
  background: rgba(63, 182, 255, 0.09);
  color: var(--accent);
  font-size: 14px;
  font-weight: 900;
}

.voucher-production-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
}

.voucher-production-actions {
  display: flex;
  justify-content: flex-end;
  flex: 0 0 auto;
  padding-bottom: 6px;
}

.voucher-production-header p a {
  display: inline-block;
  color: var(--accent);
  font-weight: 850;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  white-space: nowrap;
}

.voucher-production-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.voucher-production-grid article {
  min-height: 190px;
  padding: 22px;
}

.voucher-media-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.voucher-media-grid img {
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

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

.voucher-faq-list details {
  overflow: hidden;
}

.voucher-faq-list summary {
  position: relative;
  padding: 20px 54px 20px 22px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.35;
  font-weight: 900;
  cursor: pointer;
  word-break: keep-all;
  list-style: none;
}

.voucher-faq-list summary::-webkit-details-marker {
  display: none;
}

.voucher-faq-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 22px;
  transform: translateY(-50%);
  color: var(--accent);
  font-size: 24px;
  line-height: 1;
  font-weight: 850;
}

.voucher-faq-list details[open] summary::after {
  content: "-";
}

.voucher-faq-list details p {
  padding: 0 22px 20px;
}

.studio-section {
  scroll-margin-top: var(--header-h);
}

.studio-page {
  --studio-green: #43d39b;
  --studio-warm: #f0b45b;
}

.studio-hero .hero-content {
  max-width: 1040px;
}

.studio-metric-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 36px;
}

.studio-metric,
.studio-reason-grid article,
.studio-space-card,
.studio-process article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel-2);
}

.studio-metric {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 156px;
  padding: 22px;
}

.studio-metric strong {
  display: block;
  color: var(--ink);
  font-size: clamp(25px, 2.8vw, 40px);
  line-height: 1.06;
  font-weight: 920;
  word-break: keep-all;
  white-space: nowrap;
}

.studio-metric span {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 800;
  word-break: keep-all;
}

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

.studio-reason-grid article {
  min-height: 220px;
  padding: 24px;
}

.studio-reason-grid span,
.studio-space-copy > span,
.studio-process span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 920;
  letter-spacing: 0.12em;
}

.studio-reason-grid h3,
.studio-space-copy h3 {
  margin: 12px 0 0;
  color: var(--ink);
  font-size: 25px;
  line-height: 1.22;
  font-weight: 920;
  word-break: keep-all;
}

.studio-reason-grid p,
.studio-space-copy p,
.studio-process p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.68;
  font-weight: 650;
  word-break: keep-all;
}

.studio-space-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 38px;
}

.studio-space-card {
  overflow: hidden;
}

.studio-space-card:first-child,
.studio-space-card:nth-child(3) {
  grid-column: span 2;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}

.studio-space-media {
  min-height: 300px;
  display: grid;
  overflow: hidden;
  background: var(--panel);
}

.studio-space-media.studio-gallery {
  position: relative;
  display: block;
  isolation: isolate;
}

.studio-gallery:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.studio-gallery-track {
  position: relative;
  min-height: inherit;
  height: 100%;
}

.studio-gallery-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 180ms ease, visibility 180ms ease;
}

.studio-gallery-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.studio-gallery-slide img {
  aspect-ratio: auto;
}

.studio-gallery-slide figcaption,
.studio-gallery-counter {
  position: absolute;
  z-index: 2;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(8, 12, 18, 0.66);
  color: #ffffff;
  font-size: 12px;
  font-weight: 850;
  line-height: 1;
  backdrop-filter: blur(12px);
}

.studio-gallery-slide figcaption {
  left: 14px;
  bottom: 14px;
  max-width: calc(100% - 96px);
  padding: 0 12px;
}

.studio-gallery-counter {
  right: 14px;
  bottom: 14px;
  padding: 0 10px;
}

.studio-gallery-button {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(8, 12, 18, 0.64);
  color: #ffffff;
  cursor: pointer;
  transform: translateY(-50%);
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease, transform 160ms ease;
  backdrop-filter: blur(12px);
}

.studio-gallery-button.prev {
  left: 12px;
}

.studio-gallery-button.next {
  right: 12px;
}

.studio-gallery-button span {
  display: block;
  margin-top: -2px;
  font-size: 34px;
  line-height: 1;
  font-weight: 300;
}

.studio-gallery-button:hover,
.studio-gallery-button:focus-visible {
  border-color: rgba(63, 182, 255, 0.7);
  background: rgba(63, 182, 255, 0.24);
  color: #ffffff;
  outline: 0;
}

.studio-gallery-button.prev:hover,
.studio-gallery-button.prev:focus-visible {
  transform: translate(-2px, -50%);
}

.studio-gallery-button.next:hover,
.studio-gallery-button.next:focus-visible {
  transform: translate(2px, -50%);
}

.studio-gallery-button:disabled {
  display: none;
}

.studio-space-media.double {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.studio-space-media.triple {
  grid-template-columns: 1.2fr 0.9fr;
  grid-template-rows: repeat(2, minmax(0, 1fr));
}

.studio-space-media.triple img:first-child {
  grid-row: span 2;
}

.studio-space-media img,
.studio-space-media video,
.studio-install-media img,
.studio-map-card img,
.studio-xr-gallery img,
.studio-showreel-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.studio-space-media:not(.double):not(.triple):not(.studio-gallery) img,
.studio-space-media.video video {
  aspect-ratio: 16 / 10;
}

.studio-image-wall-shot {
  object-position: 60% center;
}

.studio-space-copy {
  padding: 24px;
}

.studio-tags,
.studio-install-points,
.studio-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.studio-tags {
  margin-top: 20px;
}

.studio-tags span,
.studio-install-points span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 13px;
  border: 1px solid rgba(63, 182, 255, 0.32);
  border-radius: 999px;
  background: rgba(63, 182, 255, 0.09);
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 850;
}

.studio-inline-link,
.studio-link-row a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  margin-top: 20px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.studio-inline-link:hover,
.studio-inline-link:focus-visible,
.studio-link-row a:hover,
.studio-link-row a:focus-visible {
  text-decoration: underline;
}

.studio-xr-section {
  background: color-mix(in srgb, var(--bg) 86%, #112033);
}

.studio-xr-feature,
.studio-install-grid,
.studio-access-grid,
.studio-showreel-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 44px;
  align-items: center;
}

.studio-xr-copy h2,
.studio-access-grid h2 {
  margin-top: 14px;
  color: var(--ink);
  font-size: clamp(36px, 4vw, 60px);
  line-height: 1.08;
  font-weight: 920;
  word-break: keep-all;
}

.studio-xr-copy p,
.studio-access-grid > div > p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
  font-weight: 650;
  word-break: keep-all;
}

.studio-xr-copy .button {
  margin-top: 28px;
}

.studio-xr-gallery {
  min-height: 520px;
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 10px;
  overflow: hidden;
  border: 1px solid rgba(63, 182, 255, 0.28);
  border-radius: var(--radius);
  background: rgba(63, 182, 255, 0.08);
}

.studio-xr-gallery img:first-child {
  grid-row: span 2;
}

.studio-install-grid {
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
}

.studio-install-points {
  margin-top: 24px;
}

.studio-install-points span {
  border-color: rgba(67, 211, 155, 0.35);
  background: rgba(67, 211, 155, 0.1);
}

.studio-install-media,
.studio-map-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel-2);
}

.studio-install-media img {
  aspect-ratio: 16 / 10;
}

.studio-install-media figcaption,
.studio-map-card figcaption {
  padding: 14px 16px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
  font-weight: 800;
  word-break: keep-all;
}

.studio-access-grid {
  align-items: start;
}

.studio-process {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.studio-process article {
  min-height: 170px;
  padding: 20px;
}

.studio-process strong {
  display: block;
  margin-top: 10px;
  color: var(--ink);
  font-size: 21px;
  font-weight: 920;
}

.studio-map-card img {
  height: auto;
  aspect-ratio: 1002 / 812;
  object-fit: contain;
  background: #ffffff;
}

.studio-map-card figcaption {
  display: grid;
  gap: 6px;
}

.studio-map-card strong {
  color: var(--ink);
  font-size: 16px;
}

.studio-map-card span {
  color: var(--muted);
}

.studio-showreel-grid {
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
}

.studio-link-row {
  margin-top: 24px;
}

.studio-link-row a {
  min-height: 38px;
  margin: 0;
  padding: 0 14px;
  border: 1px solid rgba(63, 182, 255, 0.34);
  border-radius: 999px;
  background: rgba(63, 182, 255, 0.08);
}

.studio-showreel-video {
  width: min(100%, 390px);
  height: auto;
  aspect-ratio: 9 / 16;
  justify-self: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #000000;
  object-fit: cover;
}

.studio-cta-box p {
  max-width: 780px;
}

.related-services {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 32px;
}

.related-service-card {
  position: relative;
  min-height: 156px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  color: #ffffff;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.related-service-card video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 180ms ease, transform 220ms ease;
}

.related-service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(5, 8, 13, 0.72);
  transition: background 180ms ease;
}

.related-service-card span {
  position: relative;
  z-index: 1;
  max-width: 86%;
  text-align: center;
  color: #ffffff;
  font-size: clamp(18px, 1.8vw, 25px);
  line-height: 1.2;
  font-weight: 920;
  word-break: keep-all;
}

.related-service-card:hover,
.related-service-card:focus-visible,
.related-service-card.active {
  border-color: var(--accent);
  outline: 0;
}

.related-service-card:hover video,
.related-service-card:focus-visible video,
.related-service-card.is-playing video {
  opacity: 0.72;
  transform: scale(1);
}

.related-service-card:hover::after,
.related-service-card:focus-visible::after,
.related-service-card.is-playing::after {
  background: rgba(5, 8, 13, 0.42);
}

.cta-panel {
  padding: 82px 0;
  background: var(--bg);
}

.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 36px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.cta-box h2 {
  color: var(--ink);
  font-size: clamp(32px, 3.8vw, 54px);
  line-height: 1.1;
  font-weight: 920;
  word-break: keep-all;
}

.cta-box p {
  max-width: 720px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
  font-weight: 650;
  word-break: keep-all;
}

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

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 34px 0;
  color: var(--muted);
  font-size: 14px;
}

.footer-addresses {
  display: grid;
  gap: 7px;
  font-style: normal;
}

.footer-meta {
  display: grid;
  gap: 8px;
  justify-items: end;
  text-align: right;
  min-width: 0;
}

.footer-legal-link {
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.footer-legal-link:hover,
.footer-legal-link:focus-visible {
  color: var(--accent);
  outline: 0;
}

.footer-copy {
  white-space: nowrap;
}

@media (max-width: 1220px) {
  .header-inner {
    display: flex;
    justify-content: space-between;
  }

  .nav {
    display: none;
  }

  .menu-button {
    display: inline-flex;
  }

  .nav.open {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 8px 24px 24px;
    border-bottom: 1px solid var(--line);
    background: var(--bg);
  }

  .nav.open a {
    padding: 17px 0;
    border-bottom: 1px solid var(--line);
    font-size: 18px;
  }

  .nav.open .nav-project-link {
    display: block;
  }

  .section-grid,
  .related-services {
    grid-template-columns: 1fr;
  }

  .section-title {
    position: static;
  }

  .live-stat-grid,
  .team-grid,
  .reason-grid,
  .insert-category-grid,
  .insert-case-grid,
  .tvcf-case-grid,
  .studio-metric-grid,
  .studio-reason-grid,
  .studio-space-grid,
  .studio-process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .live-track-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .feature-block,
  .feature-block.reverse,
  .infra-block,
  .live-reference-feature,
  .after-live,
  .voucher-proof-grid,
  .studio-space-card:first-child,
  .studio-space-card:nth-child(3),
  .studio-xr-feature,
  .studio-install-grid,
  .studio-access-grid,
  .studio-showreel-grid {
    grid-template-columns: 1fr;
  }

  .feature-block.reverse .feature-copy {
    order: 0;
  }

  .studio-space-card:first-child,
  .studio-space-card:nth-child(3) {
    grid-column: auto;
    display: block;
  }

  .studio-xr-gallery {
    min-height: 430px;
  }

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

  .reference-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .live-video-showcase,
  .live-reference-feature,
  .live-package-grid,
  .live-channel-grid {
    grid-template-columns: 1fr;
  }

  .voucher-flow,
  .voucher-handhold-grid,
  .voucher-production-grid,
  .voucher-media-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  :root {
    --header-h: 70px;
  }

  .site-header .wrap,
  .wrap {
    width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
  }

  .brand img {
    width: 142px;
    height: 40px;
  }

  .theme-toggle,
  .youtube,
  .site-header .button-primary {
    display: none;
  }

  .detail-hero {
    min-height: 640px;
    padding: 112px 0 54px;
  }

  .detail-hero h1 {
    font-size: clamp(32px, 9.2vw, 38px);
    word-break: normal;
    overflow-wrap: anywhere;
    line-break: anywhere;
    white-space: normal;
  }

  .mobile-title-line {
    display: block;
  }

  .mobile-copy-line {
    display: block;
  }

  .hero-lead {
    width: 100%;
    max-width: 100%;
    font-size: 15.5px;
    word-break: normal;
    overflow-wrap: anywhere;
    line-break: anywhere;
    white-space: normal;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-summary-box {
    width: 100%;
    margin-top: 18px;
    padding: 15px 16px;
  }

  .hero-summary-box li {
    font-size: 14px;
    line-height: 1.5;
    word-break: normal;
    overflow-wrap: anywhere;
    line-break: anywhere;
  }

  .section-heading h2,
  .section-title h2 {
    max-width: 100%;
    font-size: clamp(27px, 7.4vw, 31px);
    word-break: normal;
    overflow-wrap: anywhere;
    line-break: anywhere;
    white-space: normal;
  }

  .section-heading p,
  .section-title p {
    max-width: 100%;
    font-size: 15px;
    word-break: normal;
    overflow-wrap: anywhere;
    line-break: anywhere;
    white-space: normal;
  }

  .section-heading-with-action {
    display: grid;
    gap: 20px;
  }

  .section-heading-actions {
    justify-content: flex-start;
    padding-bottom: 0;
  }

  .section-heading-actions .button {
    width: fit-content;
  }

  .live-stat-grid,
  .step-grid,
  .media-pair,
  .team-grid,
  .reason-grid,
  .live-package-grid,
  .live-channel-grid,
  .live-reference-feature,
  .consult-package-grid,
  .insert-category-grid,
  .insert-case-grid,
  .tvcf-case-grid,
  .insert-deliverable-grid,
  .insert-prep-grid,
  .voucher-flow,
  .voucher-compare-grid,
  .voucher-support-grid,
  .voucher-doc-list,
  .voucher-production-grid,
  .voucher-media-grid,
  .studio-metric-grid,
  .studio-reason-grid,
  .studio-space-grid,
  .studio-process {
    grid-template-columns: 1fr;
  }

  .live-card,
  .step-card,
  .team-grid article,
  .reason-grid article,
  .live-package-card,
  .live-channel-card,
  .live-reference-card,
  .consult-package-card,
  .insert-category-grid article,
  .insert-deliverable-grid article,
  .insert-prep-card,
  .tvcf-case-card,
  .studio-reason-grid article,
  .studio-process article {
    min-height: 0;
    padding: 20px;
  }

  .live-card h3,
  .step-card h3,
  .team-grid h3,
  .reason-grid h3,
  .live-video-meta h3,
  .live-package-card h3,
  .live-channel-card h3,
  .live-reference-card h3,
  .consult-package-card h3,
  .insert-category-grid h3,
  .insert-case-card h3,
  .tvcf-case-card h3,
  .insert-deliverable-grid h3,
  .insert-prep-card h3,
  .studio-reason-grid h3,
  .studio-space-copy h3 {
    font-size: 21px;
    word-break: normal;
    overflow-wrap: anywhere;
    line-break: anywhere;
    white-space: normal;
  }

  .live-card p,
  .step-card p,
  .feature-copy p,
  .team-grid p,
  .reason-grid p,
  .live-video-meta p,
  .live-video-points li,
  .live-package-card p,
  .live-channel-card p,
  .live-reference-card dd,
  .live-reference-note,
  .consult-package-card p,
  .consult-package-card li,
  .insert-category-grid p,
  .insert-case-card p,
  .tvcf-case-card dd,
  .tvcf-case-note,
  .insert-deliverable-grid p,
  .insert-prep-card p,
  .insert-faq-list p,
  .infra-card p,
  .timeline p,
  .studio-reason-grid p,
  .studio-space-copy p,
  .studio-process p,
  .studio-xr-copy p,
  .studio-access-grid > div > p {
    word-break: normal;
    overflow-wrap: anywhere;
    line-break: anywhere;
    white-space: normal;
    font-size: 14.5px;
  }

  .hero-content,
  .section-title,
  .section-heading,
  .voucher-production-header,
  .live-card,
  .step-card,
  .feature-copy,
  .team-grid article,
  .reason-grid article,
  .live-video-meta,
  .live-package-card,
  .live-channel-card,
  .live-reference-card,
  .insert-category-grid article,
  .insert-case-card,
  .tvcf-case-card,
  .insert-deliverable-grid article,
  .insert-prep-card,
  .timeline article,
  .studio-reason-grid article,
  .studio-space-copy,
  .studio-process article {
    min-width: 0;
    max-width: 100%;
  }

  .voucher-production-header {
    display: grid;
    gap: 20px;
  }

  .voucher-production-actions {
    justify-content: flex-start;
    padding-bottom: 0;
  }

  .live-reference-proof img {
    min-height: auto;
    max-height: 620px;
  }

  .live-reference-card dl div {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .live-reference-card .button {
    width: 100%;
    margin-top: 18px;
  }

  .studio-metric {
    min-height: 128px;
    padding: 20px;
  }

  .studio-space-media,
  .studio-space-media.double,
  .studio-space-media.triple,
  .studio-xr-gallery {
    min-height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .studio-space-media.studio-gallery {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .studio-gallery-track {
    min-height: 0;
  }

  .studio-gallery-button {
    width: 38px;
    height: 38px;
  }

  .studio-gallery-button.prev {
    left: 10px;
  }

  .studio-gallery-button.next {
    right: 10px;
  }

  .studio-gallery-slide figcaption,
  .studio-gallery-counter {
    bottom: 10px;
    min-height: 30px;
    font-size: 11.5px;
  }

  .studio-gallery-slide figcaption {
    left: 10px;
    max-width: calc(100% - 88px);
  }

  .studio-gallery-counter {
    right: 10px;
  }

  .studio-space-media.triple img:first-child,
  .studio-xr-gallery img:first-child {
    grid-row: auto;
  }

  .studio-space-media img,
  .studio-space-media video,
  .studio-xr-gallery img {
    aspect-ratio: 16 / 10;
  }

  .studio-space-media.studio-gallery img {
    aspect-ratio: auto;
  }

  .studio-xr-copy h2,
  .studio-access-grid h2 {
    font-size: clamp(27px, 7.4vw, 31px);
    word-break: normal;
    overflow-wrap: anywhere;
    line-break: anywhere;
    white-space: normal;
  }

  .feature-block,
  .infra-block {
    padding: 18px;
  }

  .feature-copy h3 {
    font-size: clamp(26px, 8vw, 36px);
  }

  .xr-gallery,
  .portrait-pair,
  .short-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .xr-gallery img:first-child {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .comparison-table > div {
    grid-template-columns: 1fr;
  }

  .voucher-support-table > div {
    grid-template-columns: 1fr;
  }

  .comparison-table strong + strong,
  .comparison-table span + span {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .timeline article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

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

  .live-video-showcase {
    grid-template-columns: 1fr;
  }

  .live-youtube-frame iframe {
    min-height: auto;
  }

  .voucher-report-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .backup-banner {
    font-size: 15px;
  }

  .video-modal {
    padding: 16px;
  }

  .video-modal-panel {
    width: 100%;
    padding: 16px;
  }

  .video-modal-header h2 {
    font-size: 21px;
  }

  .detail-section,
  .cta-panel {
    padding: 68px 0;
  }

  .work-list li {
    padding: 18px;
    font-size: 16px;
  }

  .insert-faq-list summary {
    padding: 18px 50px 18px 18px;
    font-size: 16px;
  }

  .insert-faq-list details p {
    padding: 0 18px 18px;
  }

  .voucher-node,
  .voucher-compare-card,
  .voucher-support-card,
  .voucher-production-grid article {
    min-height: 0;
    padding: 20px;
  }

  .voucher-faq-list summary {
    padding: 18px 50px 18px 18px;
    font-size: 16px;
  }

  .voucher-faq-list details p {
    padding: 0 18px 18px;
  }

  .cta-box,
  .footer-inner {
    display: grid;
  }

  .footer-meta {
    justify-items: start;
    text-align: left;
  }

  .footer-copy {
    white-space: normal;
  }
}
