@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

@font-face {
  font-family: "Syne";
  src: url("../fonts/syne-extrabold.woff2") format("woff2");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}

@font-face {
  font-family: "Bebas Neue";
  src: url("../fonts/bebas-neue.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --blue: #173cff;
  --blue-dark: #0d2bd6;
  --navy: #07123f;
  --navy-2: #0c1851;
  --ice: #eef3ff;
  --ice-2: #f7f9ff;
  --mint: #7cf3d0;
  --ink: #091136;
  --muted: #626a83;
  --line: rgba(9, 17, 54, 0.12);
  --white: #ffffff;
  --radius-sm: 18px;
  --radius: 28px;
  --radius-lg: 40px;
  --shadow: 0 24px 70px rgba(7, 18, 63, 0.13);
  --shell: min(1320px, calc(100vw - 48px));
  --font: Inter, "SF Pro Text", "Segoe UI", "PingFang HK", "PingFang TC", sans-serif;
  --display: Manrope, "Avenir Next", Inter, "PingFang HK", "PingFang TC", sans-serif;
  --capsule: "Bebas Neue", Syne, Manrope, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

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

.icon {
  display: block;
  width: 1.25em;
  height: 1.25em;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

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

h1,
h2,
h3 {
  font-family: var(--display);
  letter-spacing: -0.045em;
  line-height: 1.02;
}

h1 {
  font-size: clamp(3.45rem, 6.6vw, 7.7rem);
  font-weight: 560;
}

h2 {
  font-size: clamp(2.45rem, 4.25vw, 5rem);
  font-weight: 560;
}

h3 {
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  font-weight: 650;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy);
  border-radius: 8px;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: none;
}

:focus-visible {
  outline: 3px solid var(--mint);
  outline-offset: 4px;
}

.eyebrow,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 760;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 7px;
  height: 7px;
  background: var(--blue);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(23, 60, 255, 0.11);
}

.eyebrow--light {
  color: rgba(255, 255, 255, 0.78);
}

.eyebrow--light > span {
  background: var(--mint);
  box-shadow: 0 0 0 6px rgba(124, 243, 208, 0.13);
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 12px 14px 12px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.93rem;
  font-weight: 720;
  line-height: 1;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.button__icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  transition: transform 180ms ease;
}

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

.button:hover .button__icon {
  transform: translateX(2px);
}

.button--white {
  color: var(--blue);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.13);
}

.button--white .button__icon {
  color: var(--white);
  background: var(--blue);
}

.button--blue {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 14px 34px rgba(23, 60, 255, 0.2);
}

.button--blue .button__icon {
  color: var(--blue);
  background: var(--white);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 3px;
  color: var(--blue);
  border-bottom: 1px solid currentColor;
  font-weight: 700;
}

.text-link .icon {
  width: 18px;
  transition: transform 180ms ease;
}

.text-link:hover .icon {
  transform: translateX(4px);
}

.text-link--light {
  color: var(--white);
}

.site-header {
  position: absolute;
  top: 18px;
  left: 0;
  z-index: 100;
  width: 100%;
}

.site-header.is-fixed {
  position: fixed;
  animation: header-in 280ms ease both;
}

@keyframes header-in {
  from { transform: translateY(-110%); }
  to { transform: translateY(0); }
}

.site-header__inner {
  display: grid;
  min-height: 72px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 10px 12px 10px 22px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 22px;
  box-shadow: 0 16px 50px rgba(7, 18, 63, 0.13);
}

.brand {
  display: block;
  width: 112px;
  height: 45px;
}

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

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2.7vw, 44px);
}

.nav-link,
.nav-link--dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 0;
  color: #333a57;
  background: none;
  border: 0;
  cursor: pointer;
  font-size: 0.91rem;
  font-weight: 650;
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 2px;
  background: var(--blue);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-link:hover::after,
.nav-link[aria-expanded="true"]::after {
  transform: scaleX(1);
}

.nav-link--dropdown span {
  color: var(--blue);
  font-size: 1.2em;
  transition: transform 180ms ease;
}

.nav-link--dropdown[aria-expanded="true"] span {
  transform: rotate(45deg);
}

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

.language-link {
  padding: 8px 10px;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 760;
}

.button--nav {
  min-height: 48px;
  padding: 8px 9px 8px 20px;
  color: var(--white);
  background: var(--blue);
}

.button--nav .button__icon {
  width: 31px;
  height: 31px;
  color: var(--blue);
  background: var(--white);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--white);
  background: var(--blue);
  border: 0;
  border-radius: 50%;
}

.menu-toggle__close {
  display: none;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__open {
  display: none;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__close {
  display: block;
}

.mega-menu {
  width: var(--shell);
  margin: 10px auto 0;
  padding: 38px;
  background: var(--white);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.mega-menu[hidden],
.mobile-menu[hidden] {
  display: none;
}

.mega-menu__grid {
  width: 100%;
  display: grid;
  grid-template-columns: 0.75fr 2fr;
  gap: 60px;
}

.mega-menu__intro h2 {
  max-width: 7em;
  margin-bottom: 26px;
  font-size: 2.5rem;
}

.mega-menu__links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.mega-menu__links a {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 2px 14px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.mega-menu__links a:hover {
  background: var(--ice-2);
  border-color: var(--blue);
  transform: translateY(-2px);
}

.mega-menu__links a > span {
  display: grid;
  width: 44px;
  height: 44px;
  grid-row: span 2;
  place-items: center;
  color: var(--blue);
  background: var(--ice);
  border-radius: 13px;
}

.mega-menu__links strong {
  align-self: end;
  font-family: var(--display);
  font-size: 1.08rem;
}

.mega-menu__links small {
  color: var(--muted);
  line-height: 1.35;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: -1;
  padding: 116px 24px 32px;
  color: var(--white);
  background: var(--blue);
  overflow-y: auto;
}

.mobile-menu nav {
  display: flex;
  max-width: 620px;
  margin-inline: auto;
  flex-direction: column;
}

.mobile-menu nav > p {
  margin: 10px 0 16px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mobile-menu nav > a:not(.button) {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 600;
}

.mobile-menu .button {
  align-self: flex-start;
  margin-top: 28px;
}

.hero {
  position: relative;
  isolation: isolate;
  color: var(--white);
  background: var(--blue);
  overflow: hidden;
}

.hero::before,
.hero::after {
  position: absolute;
  z-index: -1;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  content: "";
}

.hero::before {
  top: -360px;
  right: -80px;
  box-shadow: 0 0 0 90px rgba(255, 255, 255, 0.025), 0 0 0 180px rgba(255, 255, 255, 0.018);
}

.hero::after {
  bottom: -540px;
  left: -170px;
  box-shadow: 0 0 0 100px rgba(124, 243, 208, 0.04);
}

.grid-lines {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.55;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}

.hero__shell {
  display: grid;
  min-height: 760px;
  grid-template-columns: minmax(0, 1.1fr) minmax(400px, 0.9fr);
  align-items: center;
  gap: clamp(44px, 6vw, 96px);
  padding-top: 135px;
  padding-bottom: 86px;
}

.hero--inner .hero__shell {
  min-height: 670px;
  padding-top: 165px;
}

.hero__copy {
  position: relative;
  z-index: 2;
  max-width: 790px;
}

.hero--home .hero__shell {
  grid-template-columns: minmax(0, 0.98fr) minmax(460px, 1.02fr);
  gap: clamp(40px, 4.5vw, 76px);
}

.hero--home .hero__copy {
  max-width: 720px;
}

.hero--inner .hero__copy {
  padding-top: 38px;
}

.hero h1 {
  max-width: 9.8em;
  margin-bottom: 32px;
}

.hero--home h1 {
  max-width: 8.6em;
  margin-bottom: 24px;
  font-size: clamp(3.85rem, 5.8vw, 6.75rem);
  letter-spacing: -0.065em;
  line-height: 0.97;
}

html[lang="zh-Hant"] .hero--home h1 {
  max-width: 10.5em;
  line-height: 1.08;
}

.hero--inner h1 {
  font-size: clamp(3rem, 5.5vw, 6.25rem);
}

html[lang="zh-Hant"] .hero h1 {
  max-width: 11em;
  letter-spacing: -0.055em;
  line-height: 1.12;
}

.hero__lede {
  max-width: 650px;
  margin-bottom: 38px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.04rem, 1.4vw, 1.25rem);
  line-height: 1.7;
}

.hero--home .hero__lede {
  max-width: 620px;
  margin-bottom: 30px;
  font-size: clamp(1rem, 1.15vw, 1.15rem);
  line-height: 1.58;
}

.hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 50px 0 0;
  padding: 0;
  list-style: none;
}

.hero__tags li {
  padding: 8px 14px;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 650;
}

.breadcrumbs {
  position: absolute;
  top: 138px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.8rem;
}

.breadcrumbs a:hover {
  color: var(--white);
}

.hero-media {
  position: relative;
  width: min(100%, 520px);
  justify-self: end;
}

.hero-media__frame {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 34px 90px rgba(5, 15, 70, 0.34);
}

.hero-media--home {
  width: min(100%, 650px);
  align-self: end;
}

.hero-media--home .hero-media__frame {
  aspect-ratio: 16 / 9;
  border-radius: 34px;
  background: rgba(7, 18, 63, 0.26);
  box-shadow: none;
  overflow: hidden;
  transform: none;
}

.hero-media--home .hero-media__video {
  object-fit: contain;
  filter: saturate(1.08) contrast(1.04);
}

.hero-media__video,
.hero-media__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media__image--poster {
  z-index: 1;
  transition: opacity 500ms ease;
}

.hero-media__video.is-playing + .hero-media__image--poster {
  opacity: 0;
}

.hero-media__caption {
  margin: 18px 8px 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  font-weight: 620;
  letter-spacing: 0.02em;
  line-height: 1.45;
}

.hero-media--home .hero-media__caption {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 16px 10px 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.01em;
}

.hero-media--home .hero-media__caption::before {
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  background: var(--mint);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(124, 243, 208, 0.12);
  content: "";
}

.hero-visual {
  position: relative;
  padding: clamp(22px, 3vw, 38px);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-lg);
  box-shadow: 0 34px 90px rgba(5, 15, 70, 0.34);
  transform: rotate(1.2deg);
}

.hero-visual::after {
  position: absolute;
  right: -22px;
  bottom: -22px;
  z-index: -1;
  width: 120px;
  height: 120px;
  background: var(--mint);
  border-radius: 36px;
  content: "";
}

.hero-visual__header,
.hero-visual__event,
.ops-board__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 780;
  letter-spacing: 0.1em;
}

.status-dot {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #177c64;
  letter-spacing: 0;
}

.status-dot i,
.ops-board__top i {
  width: 8px;
  height: 8px;
  background: #22c99a;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(34, 201, 154, 0.13);
}

.hero-visual__amount {
  display: flex;
  flex-direction: column;
  padding: 42px 0 32px;
}

.hero-visual__amount > span,
.hero-visual__amount small {
  color: var(--muted);
  font-size: 0.75rem;
}

.hero-visual__amount strong {
  margin: 6px 0 4px;
  font-family: var(--display);
  font-size: clamp(2.4rem, 4.5vw, 4.6rem);
  letter-spacing: -0.05em;
  line-height: 1;
}

.flow-line {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.flow-line::before,
.flow-line::after {
  height: 1px;
  background: var(--line);
  content: "";
}

.flow-line span {
  width: 6px;
  height: 6px;
  background: var(--blue);
  border-radius: 50%;
}

.flow-line span:nth-child(2),
.flow-line span:nth-child(3) {
  display: none;
}

.flow-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.flow-card {
  padding: 14px;
  background: var(--ice-2);
  border: 1px solid rgba(23, 60, 255, 0.09);
  border-radius: 16px;
}

.flow-card > span {
  display: grid;
  width: 30px;
  height: 30px;
  margin-bottom: 18px;
  place-items: center;
  color: var(--blue);
  background: var(--white);
  border-radius: 9px;
  box-shadow: 0 5px 15px rgba(7, 18, 63, 0.08);
}

.flow-card small,
.flow-card strong {
  display: block;
}

.flow-card small {
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 0.66rem;
}

.flow-card strong {
  font-size: 0.8rem;
}

.hero-visual__event {
  margin-top: 18px;
  padding-top: 17px;
  border-top: 1px solid var(--line);
  letter-spacing: 0;
}

.hero-visual__event code {
  color: var(--blue);
  font-size: 0.7rem;
}

.hero-visual__event span {
  padding: 4px 8px;
  color: #177c64;
  background: #e6fff7;
  border-radius: 999px;
}

.section {
  padding-block: clamp(82px, 9vw, 150px);
}

.section--tight {
  padding-block: 46px;
}

.section-heading {
  max-width: 900px;
  margin-bottom: clamp(44px, 6vw, 78px);
}

.section-heading h2 {
  max-width: 12em;
  margin-bottom: 24px;
}

.section-heading > p:last-child {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.proof-strip {
  position: relative;
  z-index: 3;
  margin-top: -24px;
  background: var(--white);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.proof-strip .section-kicker {
  margin: 4px 0 20px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.proof-item {
  position: relative;
  padding: 34px 42px 10px 0;
}

.proof-item:not(:last-child) {
  margin-right: 38px;
  border-right: 1px solid var(--line);
}

.proof-item > span {
  display: grid;
  width: 38px;
  height: 38px;
  margin-bottom: 20px;
  place-items: center;
  color: var(--blue);
  background: var(--ice);
  border-radius: 12px;
}

.proof-item h2 {
  margin-bottom: 12px;
  font-size: 1.35rem;
  letter-spacing: -0.025em;
}

.proof-item p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.91rem;
}

.section--cards {
  background: var(--ice-2);
}

.section--topics {
  background: var(--ice-2);
}

.topic-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 48px;
  border-top: 1px solid var(--line);
}

.topic-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  transition: color 180ms ease;
}

a.topic-row:hover {
  color: var(--blue);
}

a.topic-row:hover .topic-row__arrow {
  transform: translateX(4px);
}

.topic-row__copy h3 {
  margin-bottom: 10px;
  font-size: clamp(1.25rem, 1.8vw, 1.55rem);
}

.topic-row__copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.6;
}

.topic-row__arrow {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  place-items: center;
  color: var(--blue);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: transform 180ms ease, background 180ms ease;
}

.topic-row__arrow .icon {
  width: 16px;
}

a.topic-row:hover .topic-row__arrow {
  background: var(--ice);
}

.solutions-spotlight {
  background: var(--white);
}

.cinema-section {
  padding: 0;
  background: var(--white);
}

.cinema-section__viewport {
  position: relative;
  width: 100%;
  height: min(72vh, 760px);
  min-height: 420px;
  overflow: hidden;
  background: var(--navy);
}

.cinema-section__video,
.cinema-section__poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cinema-section__poster {
  z-index: 1;
  transition: opacity 500ms ease;
}

.cinema-section__viewport.is-playing .cinema-section__poster {
  opacity: 0;
}

.cinema-section__content {
  padding-block: clamp(48px, 7vw, 88px);
}

.cinema-section__links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 32px;
}

.cinema-link {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 236px;
  padding: 26px;
  background: var(--ice-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.cinema-link:hover {
  background: var(--white);
  border-color: var(--blue);
  transform: translateY(-2px);
}

.cinema-link__top {
  display: flex;
  align-items: center;
  gap: 14px;
}

.cinema-link__icon {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  place-items: center;
  color: var(--blue);
  background: var(--white);
  border: 1px solid rgba(23, 60, 255, 0.14);
  border-radius: 14px;
  box-shadow: 0 8px 18px rgba(23, 60, 255, 0.08);
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.cinema-link__icon .icon {
  width: 21px;
  height: 21px;
}

.cinema-link:hover .cinema-link__icon {
  color: var(--white);
  background: var(--blue);
  transform: translateY(-1px);
}

.cinema-link__title {
  font-family: var(--display);
  font-size: clamp(1.2rem, 1.8vw, 1.45rem);
  font-weight: 650;
  letter-spacing: -0.03em;
}

.cinema-link__text {
  flex: 1;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.cinema-link__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-size: 0.84rem;
  font-weight: 720;
}

.cinema-link__cta .icon {
  width: 16px;
}

.solutions-spotlight__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: start;
  gap: clamp(40px, 6vw, 90px);
}

.solutions-spotlight__intro h2 {
  max-width: 11em;
  margin-bottom: 22px;
}

.solutions-spotlight__intro > p {
  max-width: 560px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 1.02rem;
}

.solutions-spotlight__cta {
  margin-bottom: 34px;
}

.solutions-spotlight__media {
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--navy);
  border-radius: var(--radius);
  overflow: hidden;
}

.solutions-spotlight__frame {
  position: absolute;
  inset: 0;
}

.solutions-spotlight__frame.is-active {
  z-index: 1;
}

.solutions-spotlight__video,
.solutions-spotlight__poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.solutions-spotlight__poster {
  z-index: 1;
  transition: opacity 400ms ease;
}

.solutions-spotlight__frame.is-active .solutions-spotlight__poster {
  opacity: 0;
}

.solutions-spotlight__list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}

.solutions-spotlight__item {
  padding: 24px 0 24px 18px;
  border-bottom: 1px solid var(--line);
  border-left: 2px solid transparent;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease;
}

.solutions-spotlight__item.is-active {
  border-left-color: var(--blue);
}

.solutions-spotlight__item-title {
  display: block;
  margin-bottom: 8px;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  font-weight: 650;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.solutions-spotlight__item-text {
  max-width: 520px;
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.6;
}

.solutions-spotlight__item:not(.is-active) .solutions-spotlight__item-text,
.solutions-spotlight__item:not(.is-active) .solutions-spotlight__item-link {
  display: none;
}

.solutions-spotlight__item-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-size: 0.84rem;
  font-weight: 720;
}

.solutions-spotlight__item-link .icon {
  width: 16px;
}

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

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

.solution-card {
  position: relative;
  display: flex;
  min-height: 370px;
  flex-direction: column;
  padding: clamp(28px, 3vw, 44px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

a.solution-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.solution-card::after {
  position: absolute;
  right: -80px;
  bottom: -100px;
  width: 210px;
  height: 210px;
  background: radial-gradient(circle, rgba(23, 60, 255, 0.12), transparent 68%);
  border-radius: 50%;
  content: "";
  transition: transform 250ms ease;
}

a.solution-card:hover::after {
  transform: scale(1.35);
}

.solution-card__icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 58px;
  place-items: center;
  color: var(--blue);
  background: var(--ice);
  border-radius: 18px;
}

.solution-card__icon .icon {
  width: 26px;
  height: 26px;
}

.solution-card__index {
  position: absolute;
  top: 34px;
  right: 36px;
  color: #9da4ba;
  font-family: var(--display);
  font-size: 0.8rem;
  font-weight: 720;
}

.solution-card h3 {
  margin-bottom: 14px;
}

.solution-card p {
  max-width: 440px;
  margin-bottom: 28px;
  color: var(--muted);
}

.solution-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--blue);
  font-size: 0.84rem;
  font-weight: 720;
}

.solution-card__link .icon {
  width: 17px;
}

.section--feature {
  padding: 0;
  background: var(--ice-2);
}

.feature-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(380px, 0.9fr);
  align-items: center;
  gap: clamp(50px, 8vw, 120px);
  padding: clamp(46px, 7vw, 100px);
  color: var(--white);
  background: var(--navy);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.feature-panel::before {
  position: absolute;
  top: -230px;
  right: -130px;
  width: 550px;
  height: 550px;
  border: 1px solid rgba(124, 243, 208, 0.2);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(124, 243, 208, 0.025), 0 0 0 160px rgba(124, 243, 208, 0.02);
  content: "";
}

.feature-panel__copy {
  position: relative;
  z-index: 2;
}

.feature-panel__copy h2 {
  max-width: 10em;
  margin-bottom: 28px;
}

.feature-panel__copy > p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.68);
}

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

.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 620;
}

.check-list li > span {
  display: grid;
  width: 25px;
  height: 25px;
  flex: 0 0 25px;
  place-items: center;
  color: var(--navy);
  background: var(--mint);
  border-radius: 50%;
}

.check-list .icon {
  width: 14px;
}

.feature-media {
  position: relative;
  z-index: 2;
  margin: 0;
  aspect-ratio: 4 / 3;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
  transform: rotate(-1.5deg);
}

.feature-media__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.process-section {
  background: var(--ice-2);
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: start;
  gap: clamp(40px, 6vw, 96px);
}

.process-layout__intro {
  position: sticky;
  top: 120px;
  max-width: 18em;
}

.process-layout__intro h2 {
  margin: 0;
  font-size: clamp(2rem, 3.4vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.process-flow {
  position: relative;
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0 0 0 28px;
  list-style: none;
}

.process-flow::before {
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 0;
  width: 1px;
  background: linear-gradient(180deg, rgba(0, 82, 255, 0.18), rgba(0, 82, 255, 0.45), rgba(0, 82, 255, 0.18));
  content: "";
}

.process-step {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  align-items: start;
  gap: clamp(18px, 3vw, 34px);
  padding: 0 0 clamp(28px, 4vw, 42px);
}

.process-step:last-child {
  padding-bottom: 0;
}

.process-step__marker {
  position: relative;
  padding-top: 4px;
}

.process-step__marker::before {
  position: absolute;
  top: 18px;
  left: -34px;
  width: 11px;
  height: 11px;
  background: var(--white);
  border: 2px solid var(--blue);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(0, 82, 255, 0.12);
  content: "";
}

.process-step__marker span {
  display: inline-flex;
  padding: 7px 11px;
  color: var(--blue);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 740;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.process-step__content {
  padding: clamp(22px, 2.5vw, 30px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.process-step:hover .process-step__content {
  border-color: rgba(0, 82, 255, 0.28);
  box-shadow: 0 16px 40px rgba(7, 18, 63, 0.08);
  transform: translateX(4px);
}

.process-step__content h3 {
  margin-bottom: 10px;
  font-size: clamp(1.25rem, 1.8vw, 1.55rem);
}

.process-step__content p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.6;
}

.industry-section {
  background: var(--white);
}

.carousel-section {
  background: var(--white);
  overflow: hidden;
}

.carousel-section:nth-of-type(even) {
  background: var(--ice-2);
}

.section-heading--carousel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  align-items: end;
  gap: clamp(24px, 5vw, 80px);
  max-width: none;
}

.section-heading--carousel h2 {
  max-width: 11em;
  margin-bottom: 0;
}

.section-heading--carousel > p:last-child {
  margin: 0;
}

.carousel {
  position: relative;
  margin-top: clamp(36px, 5vw, 56px);
}

.carousel__controls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-bottom: 22px;
}

.carousel__btn {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--blue);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease, opacity 180ms ease;
}

.carousel__btn:hover:not(:disabled) {
  background: var(--ice);
  border-color: var(--blue);
  transform: translateY(-2px);
}

.carousel__btn:disabled {
  cursor: not-allowed;
  opacity: 0.35;
}

.carousel__btn-icon {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
}

.carousel__btn-icon .icon {
  width: 18px;
  height: 18px;
}

.carousel__btn-icon--prev .icon {
  transform: rotate(180deg);
}

.carousel__list {
  display: flex;
  gap: 16px;
  margin: 0;
  padding: 4px 0 18px;
  overflow-x: auto;
  list-style: none;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.carousel__list::-webkit-scrollbar {
  display: none;
}

.carousel__item {
  flex: 0 0 clamp(240px, 24vw, 286px);
  scroll-snap-align: start;
}

.carousel-card--split {
  display: flex;
  min-height: 380px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  background: var(--white);
  transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.carousel-card--split:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.carousel-card--split .carousel-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--ice);
}

.carousel-card--split .carousel-card__poster {
  position: static;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.carousel-card--split:hover .carousel-card__poster {
  opacity: 1;
  transform: scale(1.03);
}

.carousel-card--split .carousel-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px 20px 22px;
}

.carousel-card--split .carousel-card__body h3 {
  margin-bottom: 10px;
  font-size: clamp(1.1rem, 1.4vw, 1.3rem);
}

.carousel-card--split .carousel-card__body p {
  flex: 1;
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.carousel-card--overlay {
  display: block;
  height: 100%;
  min-height: 364px;
  flex-direction: unset;
  border: 0;
  border-radius: 22px;
  overflow: hidden;
  background: var(--navy);
  box-shadow: 0 12px 36px rgba(7, 18, 63, 0.12);
  transition: box-shadow 280ms ease, transform 280ms ease;
}

.carousel-card--overlay:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 54px rgba(7, 18, 63, 0.24);
}

.carousel-card--overlay .carousel-card__media {
  position: relative;
  height: 100%;
  min-height: 364px;
  aspect-ratio: auto;
}

.carousel-card--overlay .carousel-card__poster {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transition: transform 450ms ease;
}

.carousel-card--overlay:hover .carousel-card__poster {
  opacity: 1;
  transform: scale(1.06);
}

.carousel-card__overlay {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  padding: 22px 20px 20px;
  color: var(--white);
  background: linear-gradient(180deg, rgba(7, 18, 63, 0) 0%, rgba(7, 18, 63, 0.55) 42%, rgba(7, 18, 63, 0.92) 100%);
  transition: background 350ms ease;
}

.carousel-card--overlay:hover .carousel-card__overlay {
  background: linear-gradient(180deg, rgba(7, 18, 63, 0) 0%, rgba(7, 18, 63, 0.42) 38%, rgba(7, 18, 63, 0.88) 100%);
}

.carousel-card__overlay h3 {
  margin-bottom: 8px;
  font-size: clamp(1.15rem, 1.5vw, 1.35rem);
  line-height: 1.15;
}

.carousel-card__overlay p {
  display: -webkit-box;
  margin: 0 0 14px;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  line-height: 1.45;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.carousel-card--overlay .carousel-card__link {
  color: var(--mint);
  font-size: 0.78rem;
}

.carousel-card {
  display: flex;
  height: 100%;
  min-height: 420px;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.carousel-section:nth-of-type(even) .carousel-card:not(.carousel-card--overlay) {
  background: var(--white);
}

.carousel-card:not(.carousel-card--overlay):hover {
  border-color: var(--blue);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.carousel-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--navy);
}

.carousel-card__video,
.carousel-card__poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 350ms ease, transform 350ms ease;
}

.carousel-card__video {
  opacity: 0;
}

.carousel-card__poster {
  z-index: 1;
}

.carousel-card:has(.carousel-card__video):hover .carousel-card__video,
.carousel-card:has(.carousel-card__video).is-active .carousel-card__video {
  opacity: 1;
  transform: scale(1.05);
}

.carousel-card:has(.carousel-card__video):hover .carousel-card__poster,
.carousel-card:has(.carousel-card__video).is-active .carousel-card__poster {
  opacity: 0;
}

.carousel-card:has(.carousel-card__video):hover .carousel-card__poster {
  transform: scale(1.02);
}

.carousel-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: clamp(22px, 2.5vw, 30px);
}

.carousel-card__body h3 {
  margin-bottom: 12px;
  font-size: clamp(1.2rem, 1.6vw, 1.45rem);
}

.carousel-card__body p {
  flex: 1;
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.carousel-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--blue);
  font-size: 0.84rem;
  font-weight: 720;
}

.carousel-card__link .icon {
  width: 17px;
  transition: transform 180ms ease;
}

.carousel-card:hover .carousel-card__link .icon {
  transform: translateX(4px);
}

.carousel-section__cta {
  margin-top: 36px;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 40px;
}

.industry-card {
  display: grid;
  min-height: 230px;
  grid-template-columns: 60px 1fr;
  align-items: end;
  gap: 28px;
  padding: 34px;
  color: var(--white);
  background: var(--blue);
  border-radius: var(--radius);
  overflow: hidden;
}

.industry-card:nth-child(2),
.industry-card:nth-child(3) {
  color: var(--ink);
  background: var(--ice);
}

.industry-card__number {
  align-self: start;
  color: var(--mint);
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 750;
}

.industry-card:nth-child(2) .industry-card__number,
.industry-card:nth-child(3) .industry-card__number {
  color: var(--blue);
}

.industry-card h3 {
  margin-bottom: 12px;
}

.industry-card p {
  margin: 0;
  color: currentColor;
  opacity: 0.72;
}

.faq-section {
  background: var(--white);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: start;
  gap: clamp(50px, 8vw, 120px);
}

.faq-layout .section-heading {
  position: sticky;
  top: 130px;
  margin: 0;
}

.faq-layout .section-heading h2 {
  font-size: clamp(2.35rem, 3.4vw, 4rem);
}

.faq-item {
  border-top: 1px solid var(--line);
}

.faq-item:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  display: flex;
  min-height: 100px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  cursor: pointer;
  list-style: none;
  font-family: var(--display);
  font-size: clamp(1.08rem, 1.8vw, 1.36rem);
  font-weight: 650;
  letter-spacing: -0.02em;
}

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

.faq-item summary i {
  position: relative;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  background: var(--ice);
  border-radius: 50%;
}

.faq-item summary i::before,
.faq-item summary i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 1.5px;
  background: var(--blue);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.faq-item summary i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item[open] summary i::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-item > div {
  max-width: 650px;
  padding: 0 60px 28px 0;
  color: var(--muted);
}

.faq-item > div p {
  margin: 0;
}

.closing-cta {
  padding: 0 0 clamp(24px, 4vw, 60px);
}

.closing-cta__panel {
  position: relative;
  isolation: isolate;
  min-height: 630px;
  padding: clamp(60px, 8vw, 110px);
  color: var(--white);
  background: var(--blue);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.closing-cta__panel h2 {
  max-width: 11em;
  margin-bottom: 26px;
}

.closing-cta__panel > p:not(.eyebrow) {
  max-width: 630px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.08rem;
}

.closing-cta__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 38px;
}

.capsules {
  position: absolute;
  right: 6%;
  bottom: -48px;
  display: flex;
  align-items: end;
  gap: 12px;
  transform: rotate(-4deg);
}

.capsules span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 112px;
  height: 250px;
  padding: 34px 0 48px;
  color: var(--navy);
  background: var(--mint);
  border-radius: 999px;
  font-family: var(--capsule);
  font-size: 2.15rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.capsules span:nth-child(2) {
  height: 320px;
  color: var(--blue);
  background: var(--white);
}

.capsules span:nth-child(3) {
  height: 240px;
  color: var(--white);
  background: var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.capsules span:nth-child(4) {
  height: 290px;
  color: var(--blue);
  background: var(--ice);
}

.contact-section {
  background: var(--ice-2);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(520px, 1.2fr);
  align-items: start;
  gap: clamp(50px, 8vw, 120px);
}

.contact-details {
  position: sticky;
  top: 125px;
}

.contact-details h2 {
  font-size: clamp(2.5rem, 3.7vw, 4.4rem);
}

.contact-details > p:not(.eyebrow) {
  color: var(--muted);
}

.contact-details dl {
  margin: 40px 0;
}

.contact-details dl > div {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 20px;
  padding: 17px 0;
  border-top: 1px solid var(--line);
}

.contact-details dl > div:last-child {
  border-bottom: 1px solid var(--line);
}

.contact-details dt {
  color: var(--muted);
  font-size: 0.82rem;
}

.contact-details dd {
  margin: 0;
  font-weight: 650;
}

.telegram-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--blue);
  font-weight: 720;
}

.telegram-link > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--white);
  background: var(--blue);
  border-radius: 50%;
  font-size: 0.72rem;
}

.contact-form {
  padding: clamp(28px, 4vw, 52px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

.form-grid label:not(.checkbox) {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-grid label > span {
  font-size: 0.82rem;
  font-weight: 680;
}

.form-grid__wide {
  grid-column: 1 / -1;
}

.form-grid input:not([type="checkbox"]),
.form-grid select,
.form-grid textarea {
  width: 100%;
  color: var(--ink);
  background: var(--ice-2);
  border: 1px solid transparent;
  border-radius: 13px;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.form-grid input:not([type="checkbox"]),
.form-grid select {
  min-height: 56px;
  padding: 0 16px;
}

.form-grid textarea {
  min-height: 150px;
  padding: 15px 16px;
  resize: vertical;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  background: var(--white);
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(23, 60, 255, 0.1);
}

.form-grid input[aria-invalid="true"],
.form-grid select[aria-invalid="true"],
.form-grid textarea[aria-invalid="true"] {
  border-color: #cd2d45;
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--muted);
}

.checkbox input {
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
  margin-top: 3px;
  accent-color: var(--blue);
}

.checkbox span {
  font-weight: 500 !important;
}

.form-submit {
  margin-top: 28px;
  border: 0;
}

.form-submit[disabled] {
  cursor: wait;
  opacity: 0.7;
}

.form-privacy,
.noscript-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.76rem;
}

.form-status {
  display: none;
  margin-bottom: 22px;
  padding: 14px 16px;
  color: var(--navy);
  background: var(--ice);
  border-left: 3px solid var(--blue);
  border-radius: 10px;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-error {
  color: #7c1c2a;
  background: #fff0f2;
  border-color: #cd2d45;
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}

.site-footer {
  padding: clamp(70px, 8vw, 120px) 0 38px;
  color: rgba(255, 255, 255, 0.72);
  background: var(--navy);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1fr;
  gap: clamp(30px, 5vw, 75px);
  padding-bottom: 70px;
}

.brand--footer {
  width: 132px;
  height: 64px;
  margin-bottom: 24px;
  padding: 8px 12px;
  background: var(--white);
  border-radius: 13px;
}

.footer-brand p {
  max-width: 340px;
}

.footer-grid h2 {
  margin-bottom: 22px;
  color: var(--white);
  font-family: var(--font);
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-grid > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
}

.footer-grid a:not(.brand) {
  font-size: 0.9rem;
  transition: color 180ms ease;
}

.footer-grid a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 0.72rem;
}

.footer-bottom p {
  max-width: 780px;
  margin: 0;
}

.error-page .hero__shell {
  min-height: 700px;
  grid-template-columns: 1fr;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 550ms ease, transform 550ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

@media (max-width: 1080px) {
  .desktop-nav,
  .button--nav {
    display: none;
  }

  .site-header__inner {
    grid-template-columns: auto 1fr;
  }

  .header-actions {
    justify-self: end;
  }

  .menu-toggle {
    display: grid;
  }

  .mega-menu {
    display: none !important;
  }

  .hero__shell,
  .feature-panel {
    grid-template-columns: 1fr;
  }

  .hero__shell {
    min-height: auto;
    padding-top: 180px;
    padding-bottom: 100px;
  }

  .hero--home .hero__shell {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-media {
    width: min(720px, 95%);
    justify-self: center;
  }


  .process-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .process-layout__intro {
    position: static;
    max-width: none;
  }

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

  .feature-panel {
    padding-bottom: 80px;
  }

  .feature-media {
    width: min(600px, 100%);
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-details {
    position: static;
  }

  .capsules {
    right: -3%;
    opacity: 0.5;
  }
}

@media (max-width: 760px) {
  :root {
    --shell: min(100% - 30px, 1320px);
    --radius: 22px;
    --radius-lg: 28px;
  }

  h1 {
    font-size: clamp(3rem, 14vw, 4.6rem);
  }

  h2 {
    font-size: clamp(2.25rem, 10.5vw, 3.4rem);
  }

  .site-header {
    top: 10px;
  }

  .site-header__inner {
    min-height: 64px;
    gap: 10px;
    padding: 8px 9px 8px 14px;
    border-radius: 18px;
  }

  .brand {
    width: 94px;
    height: 40px;
  }

  .language-link {
    padding-inline: 6px;
  }

  .menu-toggle {
    width: 43px;
    height: 43px;
  }

  .hero__shell,
  .hero--inner .hero__shell {
    grid-template-columns: minmax(0, 1fr);
    gap: 55px;
    padding-top: 145px;
    padding-bottom: 72px;
  }

  .hero--inner .hero__copy {
    padding-top: 30px;
  }

  .hero h1,
  .hero--inner h1 {
    font-size: clamp(3rem, 13.4vw, 4.6rem);
    line-height: 1.02;
  }

  html[lang="zh-Hant"] .hero h1,
  html[lang="zh-Hant"] .hero--inner h1 {
    font-size: clamp(2.75rem, 12.5vw, 4.15rem);
  }

  .hero__lede {
    font-size: 1rem;
  }

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

  .hero-media {
    width: 100%;
    border-radius: 26px;
  }


  .flow-cards {
    grid-template-columns: 1fr;
  }

  .flow-card {
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .flow-card > span {
    margin: 0;
  }

  .breadcrumbs {
    top: 112px;
    left: 15px;
  }

  .proof-grid,
  .card-grid,
  .card-grid--three,
  .topic-list,
  .cinema-section__links,
  .solutions-spotlight__grid,
  .process-grid,
  .process-layout,
  .industry-grid,
  .faq-layout,
  .section-heading--row,
  .section-heading--carousel,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section-heading--carousel h2 {
    margin-bottom: 16px;
  }

  .proof-item:not(:last-child) {
    margin-right: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-item {
    padding: 28px 0;
  }

  .solution-card {
    min-height: 330px;
  }

  .feature-panel {
    width: calc(100% - 16px);
    padding: 44px 26px;
  }

  .check-list {
    grid-template-columns: 1fr;
  }

  .feature-media {
    transform: none;
  }

  .section-heading--row {
    gap: 10px;
  }

  .process-layout__intro {
    position: static;
    max-width: none;
  }

  .process-step {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .process-step__marker::before {
    display: none;
  }

  .process-flow {
    padding-left: 0;
  }

  .process-flow::before {
    display: none;
  }

  .industry-card {
    min-height: 220px;
    grid-template-columns: 42px 1fr;
    gap: 12px;
    padding: 26px;
  }

  .faq-layout {
    gap: 50px;
  }

  .faq-layout .section-heading {
    position: static;
  }

  .faq-item summary {
    min-height: 88px;
  }

  .closing-cta__panel {
    min-height: 690px;
    padding: 54px 28px;
  }

  .closing-cta__actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .capsules {
    right: -26%;
    bottom: -118px;
    transform: scale(0.72) rotate(-4deg);
  }

  .contact-layout {
    gap: 48px;
  }

  .contact-form {
    padding: 25px 20px;
  }

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

  .form-grid__wide {
    grid-column: auto;
  }

  .footer-grid {
    gap: 38px;
  }

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
