@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  color-scheme: light;
  font-family: "Manrope", "SF Pro Display", "Segoe UI", sans-serif;
  --bg: #f3f2ee;
  --bg-deep: #ebefe9;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: rgba(255, 255, 255, 0.92);
  --surface-soft: rgba(255, 255, 255, 0.66);
  --surface-dark: #111715;
  --line: rgba(18, 23, 21, 0.07);
  --line-strong: rgba(18, 23, 21, 0.12);
  --text: #141917;
  --text-muted: #5e6761;
  --text-soft: #8a918c;
  --brand: #171d1b;
  --accent: #167f5d;
  --accent-soft: #e8f6f1;
  --warm: #efddba;
  --shadow-sm: 0 24px 54px rgba(18, 22, 20, 0.06);
  --shadow-md: 0 42px 110px rgba(18, 22, 20, 0.11);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --radius-sm: 14px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  overflow-x: hidden;
}

body.site-body {
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.96), transparent 24%),
    radial-gradient(circle at top right, rgba(22, 127, 93, 0.11), transparent 26%),
    radial-gradient(circle at 78% 18%, rgba(239, 221, 186, 0.16), transparent 24%),
    linear-gradient(180deg, #f7f5ef 0%, #f3f4f1 45%, #edf3f0 100%);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

[hidden] {
  display: none !important;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  border: 0;
  background: none;
}

.site-shell {
  width: min(1280px, calc(100% - 28px));
  margin: 0 auto;
  padding: 22px 0 40px;
}

.site-header {
  position: sticky;
  top: 18px;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.64));
  border: 1px solid rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(8px) saturate(120%);
}

.site-header__nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(18, 23, 21, 0.04);
}

.site-header__nav a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  transition: 220ms ease;
}

.site-header__nav a:hover {
  background: rgba(255, 255, 255, 0.72);
  color: var(--brand);
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.site-brand__logo {
  display: block;
  width: clamp(132px, 13vw, 174px);
  height: auto;
}

.site-brand__descriptor {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(47, 168, 255, 0.1);
  color: var(--brand);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-brand__mark {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(232, 246, 239, 0.92)),
    linear-gradient(135deg, rgba(22, 127, 93, 0.22), rgba(239, 221, 186, 0.25));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 16px 30px rgba(22, 127, 93, 0.12);
}

.site-brand__core {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: linear-gradient(145deg, #17a475, #77e0ba);
  box-shadow: 0 0 0 6px rgba(22, 127, 93, 0.1);
}

.site-brand__ring {
  position: absolute;
  inset: 8px;
  border-radius: 12px;
  border: 1px solid rgba(18, 23, 21, 0.08);
}

.site-brand__copy {
  display: grid;
  gap: 2px;
}

.site-brand__eyebrow,
.section-kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--text-soft);
}

.site-brand__copy strong {
  color: var(--brand);
  font-size: 1rem;
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.site-header__actions,
.button-row,
.signal-row,
.site-footer__links {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  border: 1px solid var(--line);
  transition: 220ms ease;
}

.button:hover,
.menu-button:hover,
.text-link:hover,
.site-footer__links a:hover {
  transform: translateY(-1px);
}

.button--primary {
  background: linear-gradient(180deg, #18201d, #101513);
  border-color: rgba(16, 21, 19, 0.95);
  color: #fff;
  box-shadow: 0 18px 36px rgba(16, 21, 19, 0.16);
}

.button--secondary,
.button--ghost {
  background: rgba(255, 255, 255, 0.88);
  color: var(--brand);
}

.button--ghost {
  background: rgba(255, 255, 255, 0.68);
}

.button--large {
  min-height: 52px;
  padding-inline: 22px;
}

.menu-button {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 30% 25%, rgba(47, 168, 255, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(246, 247, 243, 0.78));
  border: 1px solid rgba(18, 23, 21, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 16px 34px rgba(18, 22, 20, 0.08);
  cursor: pointer;
}

.menu-button span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--brand);
  transition: transform 180ms ease, opacity 180ms ease, width 180ms ease;
}

.menu-button span:nth-child(2) {
  width: 13px;
}

.mobile-menu-visual {
  display: none;
}

.menu-button[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-button[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.menu-panel {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  place-items: start end;
  padding: 18px;
  background:
    radial-gradient(circle at 12% 12%, rgba(47, 168, 255, 0.18), transparent 28%),
    rgba(15, 19, 17, 0.18);
  backdrop-filter: blur(14px);
}

.menu-panel__inner {
  width: min(360px, calc(100vw - 28px));
  min-height: 100%;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(22, 127, 93, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 246, 242, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-md);
  padding: 28px 24px;
  display: grid;
  gap: 26px;
  align-content: start;
  animation: menuRise 220ms ease both;
}

.menu-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.menu-panel__close {
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(18, 23, 21, 0.06);
  color: var(--text-muted);
  cursor: pointer;
}

.menu-panel__nav {
  display: grid;
  gap: 8px;
}

.menu-panel__nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 52px;
  padding: 0 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(18, 23, 21, 0.05);
  color: var(--brand);
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.menu-panel__nav a::after {
  content: "→";
  color: var(--text-soft);
  font-weight: 700;
}

.menu-panel__footer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.page-stack {
  display: grid;
  gap: 32px;
  margin-top: 28px;
}

.hero-slab,
.media-feature,
.feature-band,
.preview-grid,
.cta-strip,
.page-hero,
.content-grid,
.content-panel,
.mode-list,
.industry-list,
.trust-band,
.company-grid,
.contact-panel,
.hero-film,
.executive-band,
.service-rail,
.company-bar {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.88);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 247, 242, 0.86));
  box-shadow: var(--shadow-sm);
}

.hero-film {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(480px, 0.96fr);
  gap: 30px;
  padding: 34px;
  background:
    radial-gradient(circle at top right, rgba(22, 127, 93, 0.12), transparent 28%),
    radial-gradient(circle at left 10%, rgba(239, 221, 186, 0.16), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(248, 247, 242, 0.92));
}

.hero-film__intro,
.hero-film__media,
.hero-proof,
.executive-band,
.executive-band__headline,
.executive-band__body,
.executive-matrix,
.service-rail,
.service-row,
.service-row__body,
.hero-slab__copy,
.hero-slab__aside,
.metric-panel,
.media-feature,
.media-feature__header,
.media-stage,
.media-stage__copy,
.feature-card,
.preview-card,
.page-hero,
.content-panel,
.mode-card,
.industry-card,
.trust-card,
.company-card,
.contact-panel {
  display: grid;
  gap: 16px;
}

.hero-film h1,
.hero-slab h1,
.page-hero h1,
.media-feature h2,
.cta-strip h2,
.preview-card h2,
.content-panel h2,
.contact-panel h2,
.executive-band__headline h2 {
  margin: 0;
  color: var(--brand);
  line-height: 0.95;
  letter-spacing: -0.08em;
}

.hero-film h1 {
  font-size: clamp(3.3rem, 7.2vw, 6rem);
  line-height: 0.93;
  letter-spacing: -0.1em;
  max-width: 10ch;
}

.hero-title__line {
  display: inline;
}

.hero-slab h1,
.page-hero h1 {
  font-size: clamp(2.9rem, 7vw, 5.4rem);
  max-width: 10ch;
}

.media-feature h2,
.cta-strip h2,
.preview-card h2,
.content-panel h2,
.contact-panel h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.executive-band__headline h2 {
  font-size: clamp(2.1rem, 4.4vw, 3.5rem);
  line-height: 0.98;
}

.lead-copy,
.content-panel p,
.feature-card p,
.preview-card p,
.page-hero p,
.contact-panel p,
.metric-panel p,
.industry-card p,
.mode-card p,
.trust-card p,
.company-card p,
.hero-film .lead-copy,
.executive-band__body p,
.service-row__body p:last-child {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.7;
}

.hero-film .lead-copy {
  max-width: 65ch;
}

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

.hero-proof article {
  display: grid;
  gap: 6px;
  padding: 18px 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(18, 23, 21, 0.06);
}

.hero-proof span,
.hero-film__card span,
.service-row__index {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-soft);
}

.hero-proof strong {
  color: var(--brand);
  font-size: 1rem;
  line-height: 1.18;
  letter-spacing: -0.05em;
}

.hero-film__video-shell {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  border-radius: 34px;
  background: #111715;
  box-shadow: var(--shadow-md);
}

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

.hero-film__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 13, 11, 0.1) 0%, rgba(8, 13, 11, 0.2) 30%, rgba(8, 13, 11, 0.58) 100%),
    linear-gradient(90deg, rgba(8, 13, 11, 0.55) 0%, rgba(8, 13, 11, 0.14) 48%, rgba(8, 13, 11, 0.3) 100%);
}

.hero-film__badge {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-film__card {
  position: absolute;
  z-index: 2;
  max-width: min(360px, calc(100% - 40px));
  padding: 18px 20px 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
  color: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 50px rgba(8, 13, 11, 0.2);
}

.hero-film__card strong {
  display: block;
  margin-top: 8px;
  font-size: 1.08rem;
  line-height: 1.4;
  letter-spacing: -0.04em;
}

.hero-film__card--upper {
  right: 20px;
  top: 82px;
}

.hero-film__card--lower {
  left: 20px;
  right: 20px;
  bottom: 20px;
  max-width: none;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.company-bar {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  padding: 10px;
}

.company-bar span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(18, 23, 21, 0.06);
  color: var(--brand);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  text-align: center;
}

.executive-band {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 30px;
  padding: 34px;
}

.executive-band__body p {
  font-size: 1.05rem;
  line-height: 1.8;
}

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

.executive-matrix article {
  display: grid;
  gap: 10px;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(18, 23, 21, 0.06);
}

.executive-matrix strong {
  color: var(--brand);
  font-size: 1.02rem;
  line-height: 1.42;
  letter-spacing: -0.04em;
}

.service-rail {
  padding: 12px 34px;
}

.service-row {
  grid-template-columns: 70px minmax(0, 1fr);
  align-items: start;
  gap: 22px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(18, 23, 21, 0.08);
}

.service-row:last-child {
  border-bottom: 0;
}

.service-row__body h3,
.feature-card h3,
.mode-card h3,
.industry-card h3,
.trust-card h3,
.company-card h3 {
  margin: 0;
  color: var(--brand);
  letter-spacing: -0.05em;
}

.service-row__body h3 {
  font-size: clamp(1.55rem, 2.6vw, 2.3rem);
  line-height: 1.08;
  letter-spacing: -0.07em;
  max-width: 18ch;
}

.service-row__body p:last-child {
  font-size: 1rem;
  line-height: 1.8;
  max-width: 70ch;
}

.hero-slab {
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.84fr);
  padding: 34px;
  background:
    radial-gradient(circle at top right, rgba(22, 127, 93, 0.14), transparent 30%),
    radial-gradient(circle at left bottom, rgba(239, 221, 186, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 247, 242, 0.9));
}

.signal-row span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(18, 23, 21, 0.06);
  color: var(--text-muted);
  font-size: 0.82rem;
}

.metric-panel {
  padding: 24px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top right, rgba(22, 127, 93, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(245, 246, 242, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-sm);
}

.metric-panel span,
.feature-card .section-kicker,
.preview-card .section-kicker,
.mode-card .section-kicker,
.industry-card .section-kicker,
.trust-card .section-kicker,
.company-card .section-kicker {
  display: block;
}

.metric-panel strong {
  color: var(--brand);
  font-size: 1.5rem;
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.media-feature,
.page-hero,
.cta-strip {
  padding: 34px;
}

.media-feature__header {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
}

.media-feature__link,
.text-link {
  color: var(--brand);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.media-stage {
  grid-template-columns: minmax(0, 1.18fr) minmax(260px, 0.82fr);
  gap: 22px;
  align-items: center;
}

.media-stage__visual {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  border-radius: 30px;
  background:
    radial-gradient(circle at top left, rgba(24, 158, 113, 0.2), transparent 24%),
    linear-gradient(160deg, #0d1210 0%, #16201d 55%, #111715 100%);
  box-shadow: var(--shadow-md);
}

.media-stage__glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(10px);
  opacity: 0.55;
}

.media-stage__glow--one {
  width: 220px;
  height: 220px;
  top: 40px;
  right: -20px;
  background: rgba(22, 127, 93, 0.5);
  animation: drift 8s ease-in-out infinite alternate;
}

.media-stage__glow--two {
  width: 180px;
  height: 180px;
  bottom: 34px;
  left: 24px;
  background: rgba(239, 221, 186, 0.34);
  animation: drift 10s ease-in-out infinite alternate-reverse;
}

.media-stage__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent);
}

.media-stage__frame {
  position: absolute;
  inset: 28px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  backdrop-filter: blur(8px);
  display: grid;
  gap: 18px;
  align-content: space-between;
  padding: 24px;
}

.media-stage__hud,
.media-stage__path {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.88);
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #2edaa2;
  box-shadow: 0 0 0 6px rgba(46, 218, 162, 0.12);
}

.media-stage__path {
  gap: 12px;
  justify-content: space-between;
}

.media-stage__path div {
  flex: 1;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(46, 218, 162, 0.24), rgba(46, 218, 162, 0.82), rgba(239, 221, 186, 0.48));
}

.media-stage__stats,
.feature-band,
.preview-grid,
.content-grid,
.mode-list,
.industry-list,
.trust-band,
.company-grid {
  display: grid;
  gap: 18px;
}

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

.media-stage__stats article {
  display: grid;
  gap: 6px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.84);
}

.media-stage__stats span {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.72;
}

.media-stage__stats strong {
  font-size: 1rem;
  letter-spacing: -0.04em;
}

.media-stage__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.feature-band,
.preview-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.content-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
}

.mode-list,
.industry-list,
.trust-band,
.company-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-card,
.preview-card,
.content-panel,
.mode-card,
.industry-card,
.trust-card,
.company-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 246, 242, 0.86));
  border: 1px solid rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-sm);
}

.feature-card h3,
.mode-card h3,
.industry-card h3,
.trust-card h3,
.company-card h3 {
  font-size: 1.18rem;
}

.page-hero {
  background:
    radial-gradient(circle at top right, rgba(22, 127, 93, 0.12), transparent 28%),
    radial-gradient(circle at left bottom, rgba(239, 221, 186, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 247, 242, 0.92));
}

.mode-card ul,
.trust-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
  color: var(--text-muted);
  line-height: 1.6;
}

.cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 30px 34px;
  background:
    radial-gradient(circle at top right, rgba(22, 127, 93, 0.12), transparent 26%),
    radial-gradient(circle at left bottom, rgba(239, 221, 186, 0.16), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 247, 242, 0.92));
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 8px 0;
  color: var(--text-soft);
}

.site-footer__brand {
  display: grid;
  gap: 7px;
}

.site-footer__logo {
  display: block;
  width: clamp(132px, 12vw, 164px);
  height: auto;
}

.site-footer__brand span {
  display: block;
}

@keyframes drift {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(16px, -18px, 0) scale(1.05);
  }
}

@keyframes menuRise {
  from {
    opacity: 0;
    transform: translate3d(0, 18px, 0) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@media (max-width: 1120px) {
  .site-header__nav {
    display: none;
  }

  .hero-title__line {
    display: block;
  }

  .site-header__actions .button--ghost {
    display: none;
  }

  .site-header__actions {
    position: fixed;
    right: 18px;
    top: 22px;
    z-index: 90;
    margin-left: 0;
    transform: none;
  }

  .menu-button {
    position: fixed;
    top: 22px;
    right: 18px;
    z-index: 100;
    display: inline-flex !important;
    opacity: 0;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
  }

  .mobile-menu-visual {
    position: fixed;
    top: 22px;
    right: 18px;
    z-index: 96;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    background:
      radial-gradient(circle at 32% 24%, rgba(47, 168, 255, 0.52), transparent 28%),
      linear-gradient(180deg, #1c2421, #101513);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.12),
      0 18px 36px rgba(16, 21, 19, 0.18);
    pointer-events: none;
  }

  .mobile-menu-visual span {
    width: 16px;
    height: 2px;
    border-radius: 999px;
    background: #ffffff;
  }

  .mobile-menu-visual span:nth-child(2) {
    width: 11px;
  }

  .hero-film__video-shell {
    min-height: 540px;
  }

  .hero-film,
  .hero-slab,
  .media-stage,
  .content-grid,
  .executive-band {
    grid-template-columns: 1fr;
  }

  .hero-proof,
  .company-bar,
  .executive-matrix,
  .feature-band,
  .preview-grid,
  .mode-list,
  .industry-list,
  .trust-band,
  .company-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-strip,
  .site-header {
    align-items: flex-start;
    min-height: 76px;
    padding-right: 62px;
  }
}

@media (max-width: 760px) {
  .site-shell {
    width: min(100% - 16px, 1280px);
    padding-top: 12px;
  }

  .cta-strip,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-header {
    top: max(8px, env(safe-area-inset-top));
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-radius: 28px;
  }

  .site-brand {
    display: grid;
    gap: 5px;
    min-width: 0;
  }

  .site-brand__logo {
    width: 132px;
  }

  .site-brand__descriptor {
    display: inline-flex;
    min-height: 21px;
    width: max-content;
    padding: 0 8px;
    font-size: 0.52rem;
    letter-spacing: 0.1em;
    background: rgba(47, 168, 255, 0.11);
  }

  .site-header__actions {
    width: auto;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    margin-left: auto;
    flex-wrap: nowrap;
  }

  .site-header__actions .button--ghost {
    display: none;
  }

  .site-header__actions {
    position: fixed;
    right: 18px;
    top: 22px;
    z-index: 90;
    margin-left: 0;
    transform: none;
  }

  .menu-button {
    position: fixed;
    top: 22px;
    right: 18px;
    z-index: 100;
    display: inline-flex !important;
    opacity: 0;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
  }

  .mobile-menu-visual {
    position: fixed;
    top: 22px;
    right: 18px;
    z-index: 96;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    background:
      radial-gradient(circle at 32% 24%, rgba(47, 168, 255, 0.52), transparent 28%),
      linear-gradient(180deg, #1c2421, #101513);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.12),
      0 18px 36px rgba(16, 21, 19, 0.18);
    pointer-events: none;
  }

  .mobile-menu-visual span {
    width: 16px;
    height: 2px;
    border-radius: 999px;
    background: #ffffff;
  }

  .mobile-menu-visual span:nth-child(2) {
    width: 11px;
  }

  .site-header {
    min-height: 76px;
    padding-right: 62px;
  }

  .site-header::after {
    content: "";
    position: fixed;
    top: 22px;
    right: 18px;
    z-index: 95;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background:
      radial-gradient(circle at 32% 24%, rgba(47, 168, 255, 0.52), transparent 28%),
      linear-gradient(180deg, #1c2421, #101513);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.12),
      0 18px 36px rgba(16, 21, 19, 0.18);
    pointer-events: none;
  }

  .site-header::before {
    content: "";
    position: fixed;
    top: 34px;
    right: 31px;
    z-index: 96;
    width: 16px;
    height: 2px;
    border-radius: 999px;
    background: #ffffff;
    box-shadow:
      0 6px 0 #ffffff,
      0 12px 0 #ffffff;
    pointer-events: none;
  }

  .hero-film,
  .hero-slab,
  .media-feature,
  .page-hero,
  .cta-strip,
  .feature-card,
  .preview-card,
  .content-panel,
  .mode-card,
  .industry-card,
  .trust-card,
  .company-card,
  .contact-panel,
  .executive-band,
  .service-rail {
    padding: 22px;
    border-radius: 24px;
  }

  .page-stack {
    gap: 18px;
    margin-top: 18px;
  }

  .hero-film {
    gap: 22px;
    background:
      radial-gradient(circle at 84% 10%, rgba(47, 168, 255, 0.09), transparent 30%),
      radial-gradient(circle at left 4%, rgba(22, 127, 93, 0.12), transparent 28%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 247, 243, 0.9));
  }

  .hero-film h1,
  .hero-slab h1,
  .page-hero h1 {
    font-size: clamp(1.72rem, 8vw, 2.25rem);
    line-height: 1.04;
    letter-spacing: -0.055em;
    max-width: 100%;
    overflow-wrap: normal;
  }

  .hero-title__line {
    display: block;
  }

  .hero-film .lead-copy {
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .hero-proof,
  .company-bar,
  .executive-matrix,
  .feature-band,
  .preview-grid,
  .mode-list,
  .industry-list,
  .trust-band,
  .company-grid,
  .media-stage__stats,
  .hero-film__card--lower {
    grid-template-columns: 1fr;
  }

  .hero-proof,
  .company-bar {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 4px;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

  .hero-proof::-webkit-scrollbar,
  .company-bar::-webkit-scrollbar {
    display: none;
  }

  .hero-proof article,
  .company-bar span {
    flex: 0 0 min(78vw, 270px);
    scroll-snap-align: start;
  }

  .hero-proof article {
    min-height: 104px;
    padding: 16px;
  }

  .hero-film__video-shell {
    min-height: 430px;
    border-radius: 28px;
  }

  .hero-film__veil {
    background:
      linear-gradient(180deg, rgba(8, 13, 11, 0.06), rgba(8, 13, 11, 0.16) 52%, rgba(8, 13, 11, 0.24) 100%),
      linear-gradient(90deg, rgba(8, 13, 11, 0.2), transparent 45%, rgba(8, 13, 11, 0.18));
  }

  .hero-film__badge {
    top: 14px;
    left: 14px;
    min-height: 34px;
    padding: 0 12px;
    font-size: 0.63rem;
    letter-spacing: 0.1em;
  }

  .hero-film__card {
    display: none;
  }

  .company-bar {
    grid-template-columns: none;
    padding: 8px;
    border-radius: 24px;
  }

  .company-bar span {
    justify-content: flex-start;
    min-height: 46px;
    font-size: 0.78rem;
  }

  .service-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .media-stage__visual {
    min-height: 360px;
  }
}

@media (max-width: 560px) {
  .site-brand__logo {
    width: 124px;
  }

  .site-brand__copy strong {
    font-size: 0.92rem;
  }

  .site-header__actions {
    gap: 7px;
  }

  .menu-button {
    background:
      radial-gradient(circle at 32% 24%, rgba(47, 168, 255, 0.52), transparent 28%),
      linear-gradient(180deg, #1c2421, #101513);
    border-color: rgba(16, 21, 19, 0.9);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.12),
      0 18px 36px rgba(16, 21, 19, 0.18);
  }

  .menu-button span {
    background: #ffffff;
  }

  .menu-panel {
    padding: 10px;
  }

  .menu-panel__inner {
    width: 100%;
    min-height: calc(100vh - 20px);
    border-radius: 24px;
    padding: 20px;
  }

  .hero-film__video-shell {
    min-height: min(118vw, 450px);
    border-radius: 24px;
  }

  .company-bar span,
  .hero-proof article,
  .feature-card,
  .preview-card,
  .content-panel,
  .mode-card,
  .industry-card,
  .trust-card,
  .company-card,
  .contact-panel {
    border-radius: 20px;
  }

  .cta-strip .button-row,
  .hero-film .button-row {
    width: 100%;
  }

  .cta-strip .button,
  .hero-film .button {
    width: 100%;
  }
}
