:root {
  --ink: #08182b;
  --ink-soft: #29465c;
  --paper: #f3f7f7;
  --white: #ffffff;
  --line: #d2e2e3;
  --signal: #ff9d00;
  --signal-dark: #d96a00;
  --coral: #ff5d4a;
  --blue: #00aebe;
  --cyan: #8ef3ee;
  --night: #061827;
  --night-soft: #0b3041;
  --success: #008f70;
  --error: #b42318;
  --shadow: 0 28px 80px rgba(0, 9, 20, 0.28), 0 0 0 1px rgba(142, 243, 238, 0.12);
  --radius: 18px;
  --display: "Arial Narrow", "Roboto Condensed", "Helvetica Neue", Arial, sans-serif;
  --body: Inter, Aptos, "Segoe UI", sans-serif;
  --utility: "IBM Plex Mono", Consolas, monospace;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body.cctv-landing {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.cctv-landing a { color: inherit; }
.cctv-landing img, .cctv-landing svg { display: block; max-width: 100%; }
.cctv-landing button, .cctv-landing input, .cctv-landing textarea, .cctv-landing select { font: inherit; }

.cctv-shell {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.cctv-skip {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--white);
  border-radius: 8px;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

.cctv-skip:focus { transform: translateY(0); }

.cctv-topbar {
  position: sticky;
  z-index: 50;
  top: 0;
  background: rgba(6, 24, 39, 0.94);
  border-bottom: 1px solid rgba(142, 243, 238, 0.14);
  backdrop-filter: blur(14px);
}

.cctv-topbar__inner {
  min-height: 102px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cctv-brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  line-height: 1;
}

.cctv-brand__logo-frame {
  display: grid;
  place-items: center;
  padding: 4px 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.cctv-brand__logo {
  width: auto;
  height: 78px;
  object-fit: contain;
}

.cctv-brand__eye {
  width: 36px;
  height: 24px;
  display: grid;
  place-items: center;
  border: 3px solid var(--signal);
  border-radius: 50% 8px 50% 8px;
  transform: rotate(-8deg);
}

.cctv-brand__eye::after {
  content: "";
  width: 8px;
  height: 8px;
  border: 3px solid var(--cyan);
  border-radius: 50%;
  background: var(--night);
}

.cctv-brand__name {
  font-family: var(--display);
  font-size: 24px;
  font-stretch: condensed;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--white);
}

.cctv-brand__name span { color: var(--signal); }

.cctv-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.cctv-nav a:not(.cctv-button) {
  color: #bed5dc;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.cctv-nav a:not(.cctv-button):hover { color: var(--cyan); }

.cctv-button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 9px;
  background: linear-gradient(135deg, var(--signal), var(--coral));
  color: var(--white);
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(255, 112, 38, 0.27);
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.cctv-button:hover {
  background: linear-gradient(135deg, #ffb31a, #ff6b54);
  box-shadow: 0 16px 34px rgba(255, 112, 38, 0.36);
  transform: translateY(-2px);
}

.cctv-button:focus-visible,
.cctv-landing a:focus-visible,
.cctv-landing input:focus-visible,
.cctv-landing select:focus-visible,
.cctv-landing textarea:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 3px;
}

.cctv-button--small { min-height: 44px; padding: 10px 17px; font-size: 15px; }
.cctv-button--wide { width: 100%; }
.cctv-button svg { width: 18px; height: 18px; }

.cctv-hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 82px;
  background:
    linear-gradient(rgba(142, 243, 238, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(142, 243, 238, 0.055) 1px, transparent 1px),
    radial-gradient(circle at 13% 16%, rgba(0, 174, 190, 0.28), transparent 34%),
    radial-gradient(circle at 83% 9%, rgba(255, 157, 0, 0.13), transparent 28%),
    linear-gradient(135deg, #071d31 0%, var(--night) 58%, #092b37 100%);
  background-size: 40px 40px, 40px 40px, auto, auto;
}

.cctv-hero::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: -310px;
  right: -270px;
  width: 760px;
  height: 760px;
  border: 1px solid rgba(142, 243, 238, 0.22);
  border-radius: 50%;
  box-shadow:
    0 0 0 72px rgba(0, 174, 190, 0.05),
    0 0 0 144px rgba(0, 174, 190, 0.025);
}

.cctv-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.78fr);
  gap: 64px;
  align-items: start;
}

.cctv-hero__content { padding-top: 18px; }

.cctv-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--signal-dark);
  font-family: var(--utility);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cctv-kicker::before {
  content: "";
  width: 30px;
  height: 2px;
  background: currentColor;
}

.cctv-hero h1 {
  max-width: 720px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(48px, 6.5vw, 86px);
  font-stretch: condensed;
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.94;
  text-wrap: balance;
  color: var(--white);
}

.cctv-hero h1 em {
  color: var(--signal);
  background: linear-gradient(90deg, var(--signal), var(--coral));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: normal;
}

.cctv-hero__lead {
  max-width: 650px;
  margin: 25px 0 0;
  color: #bdd4dc;
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.55;
}

.cctv-event-strip {
  display: grid;
  grid-template-columns: 0.72fr 1.3fr;
  margin: 34px 0 28px;
  border-block: 1px solid rgba(142, 243, 238, 0.18);
}

.cctv-event-strip__item {
  min-height: 94px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px 18px 0;
}

.cctv-event-strip__item + .cctv-event-strip__item {
  padding-left: 24px;
  border-left: 1px solid rgba(142, 243, 238, 0.18);
}

.cctv-event-strip__icon {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--cyan);
  border: 1px solid rgba(142, 243, 238, 0.32);
  border-radius: 50%;
  background: rgba(0, 174, 190, 0.13);
}

.cctv-event-strip__icon svg { width: 18px; height: 18px; }
.cctv-event-strip__copy { display: grid; gap: 1px; }
.cctv-event-strip__label { color: #7fa4b1; font-family: var(--utility); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; }
.cctv-event-strip__value { color: var(--white); font-weight: 850; line-height: 1.35; }

.cctv-trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #bdd4dc;
  font-size: 15px;
  font-weight: 650;
}

.cctv-trust-line li { display: flex; align-items: center; gap: 8px; }
.cctv-trust-line svg { width: 17px; height: 17px; color: var(--cyan); }

.cctv-form-card {
  position: relative;
  padding: 30px;
  border: 1px solid rgba(142, 243, 238, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.cctv-form-card::before {
  content: "ENQUIRY / 2027";
  position: absolute;
  top: 0;
  right: 28px;
  padding: 7px 11px;
  background: linear-gradient(90deg, var(--blue), #087f90);
  color: var(--white);
  font-family: var(--utility);
  font-size: 11px;
  letter-spacing: 0.12em;
}

.cctv-form-card h2 {
  margin: 4px 0 5px;
  font-family: var(--display);
  font-size: 31px;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.cctv-form-card__intro {
  margin: 0 0 22px;
  color: #40586c;
  font-size: 15px;
}

.cctv-interest {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin: 0 0 16px;
  padding: 0;
  border: 0;
}

.cctv-interest legend {
  width: 100%;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 750;
}

.cctv-interest label { position: relative; cursor: pointer; }
.cctv-interest input { position: absolute; opacity: 0; pointer-events: none; }

.cctv-interest span {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink-soft);
  background: var(--paper);
  font-size: 15px;
  font-weight: 750;
  transition: 150ms ease;
}

.cctv-interest input:checked + span {
  border-color: var(--blue);
  color: var(--blue);
  background: #e4fbfa;
  box-shadow: inset 0 0 0 1px var(--blue);
}

.cctv-interest input:focus-visible + span { outline: 3px solid var(--cyan); outline-offset: 2px; }

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

.cctv-field { display: grid; gap: 6px; }
.cctv-field--full { grid-column: 1 / -1; }
.cctv-field label { color: var(--ink); font-size: 14px; font-weight: 750; }
.cctv-field label span { color: #7d8c99; font-weight: 500; }

.cctv-field input,
.cctv-field textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid #cbd6dd;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.cctv-field textarea { min-height: 70px; resize: vertical; }
.cctv-field input::placeholder, .cctv-field textarea::placeholder { color: #96a4af; }

.cctv-field input:focus,
.cctv-field textarea:focus {
  border-color: var(--blue);
  outline: none;
  box-shadow: 0 0 0 3px rgba(10, 102, 194, 0.1);
}

.cctv-form__meta {
  margin: 14px 0;
  color: #6e8192;
  font-size: 12px;
  line-height: 1.5;
}

.cctv-form__meta a { text-underline-offset: 2px; }

.cctv-form__contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 14px 0 0;
  color: #40586c;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.cctv-form__contact svg {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  color: var(--blue);
}

.cctv-form__contact a {
  color: var(--ink);
  font-weight: 850;
  text-decoration-color: var(--signal);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.cctv-form__status {
  display: none;
  margin: 0 0 14px;
  padding: 11px 13px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
}

.cctv-form__status.is-visible { display: block; }
.cctv-form__status.is-success { background: #e7f7ef; color: var(--success); }
.cctv-form__status.is-error { background: #fff0ef; color: var(--error); }
.cctv-honeypot { position: absolute !important; left: -9999px !important; }

.cctv-hero__radar {
  position: absolute;
  z-index: -1;
  left: -105px;
  bottom: -255px;
  width: 510px;
  height: 510px;
  border: 1px solid rgba(142, 243, 238, 0.18);
  border-radius: 50%;
  pointer-events: none;
}

.cctv-hero__radar::before,
.cctv-hero__radar::after {
  content: "";
  position: absolute;
  inset: 24%;
  border: 1px solid rgba(142, 243, 238, 0.18);
  border-radius: 50%;
}

.cctv-hero__radar::after {
  inset: 50% 0 auto 50%;
  width: 46%;
  height: 1px;
  border: 0;
  border-radius: 0;
  background: linear-gradient(90deg, var(--signal), transparent);
  transform-origin: left center;
  animation: cctv-scan 7s linear infinite;
}

@keyframes cctv-scan { to { transform: rotate(360deg); } }

.cctv-proof {
  padding: 22px 0;
  background: linear-gradient(90deg, #0a3545, #087889 46%, #0a3545);
  color: var(--white);
}

.cctv-proof__grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 1fr);
  align-items: center;
}

.cctv-proof__intro {
  margin: 0;
  padding-right: 30px;
  color: #d2eff1;
  font-size: 15px;
}

.cctv-proof__item {
  min-height: 58px;
  display: grid;
  align-content: center;
  gap: 2px;
  padding-left: 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.17);
}

.cctv-proof__item strong { font-family: var(--display); font-size: 20px; line-height: 1.2; }
.cctv-proof__item span { color: #d3ecee; font-size: 13px; font-weight: 600; }

.cctv-section { padding: 96px 0; }
.cctv-section--white { background: var(--white); }
.cctv-section--tint {
  background:
    radial-gradient(circle at 88% 15%, rgba(255, 157, 0, 0.1), transparent 23%),
    linear-gradient(135deg, #e9f7f6, #edf5f7);
}

.cctv-section__heading {
  max-width: 720px;
  margin-bottom: 44px;
}

.cctv-section__heading h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(36px, 4.8vw, 58px);
  font-stretch: condensed;
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 1;
  text-wrap: balance;
}

.cctv-section__heading p {
  max-width: 640px;
  margin: 18px 0 0;
  color: #344f65;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.65;
}

.cctv-paths {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(7, 27, 51, 0.08);
}

.cctv-path {
  position: relative;
  min-height: 435px;
  padding: 42px;
  overflow: hidden;
}

.cctv-path + .cctv-path { border-left: 1px solid var(--line); }

.cctv-path--exhibitor {
  color: var(--white);
  background:
    radial-gradient(circle at 85% 4%, rgba(255, 157, 0, 0.22), transparent 25%),
    linear-gradient(145deg, #07253a, #074c58 100%);
}

.cctv-path__tag {
  display: inline-block;
  margin-bottom: 55px;
  padding: 6px 9px;
  border: 1px solid currentColor;
  border-radius: 4px;
  font-family: var(--utility);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.82;
}

.cctv-path h3 {
  max-width: 410px;
  margin: 0;
  font-family: var(--display);
  font-size: 36px;
  letter-spacing: -0.04em;
  line-height: 1.04;
}

.cctv-path p { max-width: 440px; color: #3d576b; font-weight: 500; line-height: 1.65; }
.cctv-path--exhibitor p { color: #bfe0e2; }

.cctv-path ul {
  display: grid;
  gap: 11px;
  margin: 25px 0 0;
  padding: 0;
  list-style: none;
}

.cctv-path li { display: flex; gap: 10px; font-size: 15px; }
.cctv-path li::before { content: "→"; color: var(--signal); font-weight: 900; }

.cctv-path__camera {
  position: absolute;
  top: 26px;
  right: -52px;
  width: 190px;
  height: 82px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 14px 80px 80px 14px;
  transform: rotate(-12deg);
}

.cctv-path__camera::before {
  content: "";
  position: absolute;
  left: 34px;
  bottom: -32px;
  width: 12px;
  height: 42px;
  background: rgba(255, 255, 255, 0.15);
  transform: rotate(25deg);
}

.cctv-path__camera::after {
  content: "";
  position: absolute;
  top: 20px;
  right: 22px;
  width: 38px;
  height: 38px;
  border: 4px solid var(--signal);
  border-radius: 50%;
  box-shadow: inset 0 0 0 8px rgba(255, 157, 0, 0.15);
}

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

.cctv-category {
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border: 1px solid #bfdddf;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.9);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.cctv-category:hover { transform: translateY(-4px); border-color: var(--blue); background: var(--white); box-shadow: 0 14px 28px rgba(0, 103, 113, 0.1); }
.cctv-category svg { width: 28px; height: 28px; color: var(--blue); }
.cctv-category h3 {
  margin: 24px 0 0;
  font-family: var(--body);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.32;
}

.cctv-audience {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  align-items: start;
}

.cctv-audience__copy { position: sticky; top: 110px; }
.cctv-audience__copy h2 { margin: 0; font-family: var(--display); font-size: clamp(40px, 4.7vw, 60px); letter-spacing: -0.055em; line-height: 1; }
.cctv-audience__copy p { color: #344f65; font-size: 19px; font-weight: 500; line-height: 1.65; }

.cctv-audience__list { border-top: 1px solid var(--line); }
.cctv-audience__item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.cctv-audience__icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #e1f8f7;
  color: var(--blue);
}

.cctv-audience__icon svg { width: 21px; height: 21px; }
.cctv-audience__item h3 {
  margin: 1px 0 5px;
  font-family: var(--body);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.35;
}
.cctv-audience__item p { margin: 0; color: #405b70; font-size: 16px; font-weight: 500; line-height: 1.55; }

.cctv-final {
  position: relative;
  overflow: hidden;
  padding: 84px 0;
  background: linear-gradient(125deg, #ff684a 0%, #ff8b18 55%, #ffad00 100%);
  color: var(--white);
}

.cctv-final::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -110px;
  width: 460px;
  height: 460px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  transform: translateY(-50%);
  box-shadow: 0 0 0 56px rgba(255, 255, 255, 0.07), 0 0 0 112px rgba(255, 255, 255, 0.04);
}

.cctv-final__inner { position: relative; z-index: 1; display: flex; align-items: end; justify-content: space-between; gap: 40px; }
.cctv-final h2 { max-width: 740px; margin: 0; font-family: var(--display); font-size: clamp(42px, 6vw, 72px); letter-spacing: -0.06em; line-height: 0.96; }
.cctv-final p { max-width: 630px; margin: 20px 0 0; color: #ffe6e5; font-size: 18px; }
.cctv-final .cctv-button { flex: 0 0 auto; border-color: var(--white); background: var(--white); color: #b54e00; box-shadow: 0 14px 30px rgba(84, 38, 10, 0.18); }
.cctv-final .cctv-button:hover { background: var(--night); color: var(--white); border-color: var(--night); }

.cctv-footer { padding: 34px 0; background: var(--night); color: #c0d5dc; }
.cctv-footer__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; font-size: 14px; }
.cctv-footer a { color: var(--white); text-underline-offset: 3px; }
.cctv-footer__contact { color: var(--white); font-weight: 700; white-space: nowrap; }

.cctv-reveal { opacity: 0; transform: translateY(18px); transition: opacity 600ms ease, transform 600ms ease; }
.cctv-reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .cctv-nav a:not(.cctv-button) { display: none; }
  .cctv-hero__grid { grid-template-columns: 1fr; gap: 45px; }
  .cctv-hero__content { max-width: 760px; }
  .cctv-form-card { max-width: 650px; }
  .cctv-proof__grid { grid-template-columns: repeat(3, 1fr); }
  .cctv-proof__intro { grid-column: 1 / -1; padding: 0 0 15px; }
  .cctv-proof__item:first-of-type { border-left: 0; padding-left: 0; }
  .cctv-categories { grid-template-columns: repeat(2, 1fr); }
  .cctv-audience { gap: 46px; }
}

@media (max-width: 720px) {
  .cctv-shell { width: min(100% - 28px, 1180px); }
  .cctv-topbar__inner { min-height: 80px; }
  .cctv-brand__logo-frame { padding: 3px 7px; border-radius: 8px; }
  .cctv-brand__logo { height: 58px; }
  .cctv-brand__name { font-size: 21px; }
  .cctv-nav .cctv-button { min-height: 44px; padding: 10px 12px; font-size: 13px; }
  .cctv-hero { padding: 44px 0 56px; }
  .cctv-hero h1 { font-size: clamp(45px, 13vw, 64px); }
  .cctv-hero__lead { font-size: 17px; }
  .cctv-event-strip { grid-template-columns: 1fr; }
  .cctv-event-strip__item { min-height: 78px; padding: 15px 0; }
  .cctv-event-strip__item + .cctv-event-strip__item { padding: 15px 0; border-top: 1px solid rgba(142, 243, 238, 0.18); border-left: 0; }
  .cctv-form-card { padding: 24px 18px; border-radius: 14px; }
  .cctv-form-grid { grid-template-columns: 1fr; }
  .cctv-field--full { grid-column: auto; }
  .cctv-proof { padding: 18px 0; }
  .cctv-proof__grid { grid-template-columns: 1fr; }
  .cctv-proof__item, .cctv-proof__item:first-of-type { padding: 13px 0; border-top: 1px solid rgba(255, 255, 255, 0.14); border-left: 0; }
  .cctv-section { padding: 70px 0; }
  .cctv-section__heading { margin-bottom: 30px; }
  .cctv-section__heading p { font-size: 16px; }
  .cctv-paths { grid-template-columns: 1fr; }
  .cctv-path { min-height: auto; padding: 32px 24px 38px; }
  .cctv-path + .cctv-path { border-top: 1px solid var(--line); border-left: 0; }
  .cctv-path__tag { margin-bottom: 38px; }
  .cctv-path h3 { font-size: 30px; }
  .cctv-categories { grid-template-columns: 1fr; }
  .cctv-category { min-height: 142px; }
  .cctv-audience { grid-template-columns: 1fr; gap: 32px; }
  .cctv-audience__copy { position: static; }
  .cctv-final { padding: 66px 0; }
  .cctv-final__inner { align-items: start; flex-direction: column; }
  .cctv-final::after { opacity: 0.45; }
  .cctv-footer__inner { align-items: start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .cctv-reveal { opacity: 1; transform: none; }
}
