:root {
  --brand: #0877c9;
  --brand-bright: #19a7f2;
  --brand-soft: #e8f5fd;
  --ink: #08182d;
  --ink-soft: #1b3049;
  --canvas: #f5f8fb;
  --surface: #ffffff;
  --muted: #65778b;
  --line: #dce5ed;
  --success: #18794e;
  --danger: #b42318;
  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --shadow: 0 24px 70px rgba(8, 24, 45, 0.12);
  --max: 1180px;
  --header: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--canvas);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.nav-open,
body.modal-open {
  overflow: hidden;
}

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

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

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

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

:focus-visible {
  outline: 3px solid rgba(25, 167, 242, 0.45);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 999px;
  color: white;
  background: var(--ink);
  transform: translateY(-150%);
}

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

.container {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 110px 0;
}

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

.section--ink {
  color: white;
  background:
    radial-gradient(circle at 82% 18%, rgba(25, 167, 242, 0.2), transparent 30%),
    var(--ink);
}

.section--compact {
  padding: 72px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--brand);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 24px;
  height: 2px;
  content: "";
  background: currentColor;
}

.section--ink .eyebrow,
.dark-card .eyebrow {
  color: #64c8ff;
}

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

h1,
h2,
h3 {
  line-height: 1.06;
  letter-spacing: -0.045em;
}

h1 {
  margin-bottom: 28px;
  font-size: clamp(3rem, 7vw, 6.8rem);
  font-weight: 730;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.2rem, 4.5vw, 4.4rem);
  font-weight: 720;
}

h3 {
  margin-bottom: 14px;
  font-size: clamp(1.25rem, 2.2vw, 1.8rem);
  font-weight: 700;
}

.lead {
  max-width: 690px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
  line-height: 1.65;
}

.section--ink .lead,
.dark-card .lead {
  color: #b8c7d7;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.65fr);
  gap: 64px;
  align-items: end;
  margin-bottom: 58px;
}

.section-heading h2,
.section-heading p {
  margin-bottom: 0;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 750;
  line-height: 1.2;
  transition: transform 180ms ease, box-shadow 180ms ease, color 180ms ease, background 180ms ease;
}

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

.btn--primary {
  color: white;
  background: var(--brand);
  box-shadow: 0 14px 30px rgba(8, 119, 201, 0.24);
}

.btn--primary:hover {
  background: #0569b3;
  box-shadow: 0 17px 36px rgba(8, 119, 201, 0.3);
}

.btn--light {
  color: var(--ink);
  background: white;
}

.btn--ghost {
  border-color: var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.6);
}

.btn--text {
  min-height: auto;
  padding: 0;
  border-radius: 0;
  color: var(--brand);
}

.btn__arrow {
  transition: transform 180ms ease;
}

.btn:hover .btn__arrow {
  transform: translateX(4px);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.site-header {
  position: fixed;
  z-index: 900;
  inset: 0 0 auto;
  height: var(--header);
  border-bottom: 1px solid transparent;
  background: rgba(245, 248, 251, 0.78);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(220, 229, 237, 0.9);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 30px rgba(8, 24, 45, 0.05);
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}

.brand img {
  width: 165px;
  height: auto;
}

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

.site-nav__links {
  display: flex;
  align-items: center;
  gap: 25px;
}

.site-nav__links a {
  position: relative;
  padding: 8px 0;
  color: var(--ink-soft);
  font-size: 0.91rem;
  font-weight: 650;
}

.site-nav__links a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav__links a:hover::after,
.site-nav__links a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: white;
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 19px;
  height: 2px;
  content: "";
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle span {
  position: relative;
}

.menu-toggle span::before {
  position: absolute;
  transform: translateY(-6px);
}

.menu-toggle span::after {
  position: absolute;
  transform: translateY(6px);
}

.nav-open .menu-toggle span {
  background: transparent;
}

.nav-open .menu-toggle span::before {
  transform: rotate(45deg);
}

.nav-open .menu-toggle span::after {
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 790px;
  padding: calc(var(--header) + 76px) 0 85px;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  z-index: 0;
  top: 0;
  right: -10%;
  width: 58vw;
  height: 58vw;
  border-radius: 50%;
  content: "";
  background: radial-gradient(circle, rgba(25, 167, 242, 0.18), rgba(25, 167, 242, 0) 68%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.78fr);
  gap: 66px;
  align-items: center;
}

.hero-copy h1 {
  max-width: 790px;
}

.hero-copy h1 span {
  color: var(--brand);
}

.hero-copy .lead {
  max-width: 620px;
  margin-bottom: 34px;
}

.hero-note {
  display: flex;
  gap: 30px;
  margin-top: 46px;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 700;
}

.hero-note span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.hero-note span::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  content: "";
  background: var(--brand-bright);
  box-shadow: 0 0 0 5px rgba(25, 167, 242, 0.12);
}

.hero-media {
  position: relative;
  min-width: 0;
}

.hero-video-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-lg);
  background: white;
  box-shadow: var(--shadow);
}

.hero-video-frame::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(8, 119, 201, 0.12);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.hero-video-frame video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.float-card {
  position: absolute;
  right: -24px;
  bottom: -34px;
  width: min(310px, 78%);
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  color: white;
  background: rgba(8, 24, 45, 0.94);
  box-shadow: 0 20px 50px rgba(8, 24, 45, 0.25);
  backdrop-filter: blur(16px);
}

.float-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 17px;
  color: #93a8ba;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.status-dot {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #7ee7b7;
}

.status-dot::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  content: "";
  background: currentColor;
  box-shadow: 0 0 0 5px rgba(126, 231, 183, 0.12);
}

.float-card strong {
  display: block;
  margin-bottom: 5px;
  font-size: 1.15rem;
}

.float-card p {
  margin-bottom: 0;
  color: #aebdca;
  font-size: 0.86rem;
}

.signal-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: white;
}

.signals {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.signal {
  min-width: 0;
  padding: 34px 30px;
  border-left: 1px solid var(--line);
}

.signal:last-child {
  border-right: 1px solid var(--line);
}

.signal strong {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 1.02rem;
}

.signal span {
  color: var(--muted);
  font-size: 0.86rem;
}

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

.card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  padding: 31px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: white;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.card:hover {
  border-color: rgba(8, 119, 201, 0.35);
  box-shadow: 0 18px 50px rgba(8, 24, 45, 0.08);
  transform: translateY(-5px);
}

.card__number,
.step__number {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  border-radius: 50%;
  color: var(--brand);
  background: var(--brand-soft);
  font-size: 0.78rem;
  font-weight: 850;
}

.card p {
  margin-bottom: 24px;
  color: var(--muted);
}

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

.feature-list li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.feature-list li::before {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  margin-top: 9px;
  border-radius: 50%;
  content: "";
  background: var(--brand-bright);
}

.product-stage {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 64px;
  align-items: center;
}

.product-copy .lead {
  margin-bottom: 30px;
}

.product-shell {
  position: relative;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

.product-shell img {
  width: 100%;
  border-radius: 17px;
  background: #eff4f8;
}

.product-shell__bar {
  display: flex;
  gap: 6px;
  padding: 1px 2px 14px;
}

.product-shell__bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
}

.product-fallback {
  display: grid;
  min-height: 410px;
  grid-template-columns: 145px 1fr;
  overflow: hidden;
  border-radius: 17px;
  color: var(--ink);
  background: #f5f8fb;
}

.product-fallback__side {
  padding: 26px 18px;
  color: white;
  background: #0b2441;
}

.product-fallback__side strong {
  display: block;
  margin-bottom: 32px;
  color: #6acbff;
  font-size: 0.92rem;
}

.product-fallback__side span {
  display: block;
  margin-bottom: 18px;
  color: #a8bbcc;
  font-size: 0.7rem;
}

.product-fallback__main {
  padding: 28px;
}

.mini-title {
  width: 44%;
  height: 18px;
  margin-bottom: 27px;
  border-radius: 999px;
  background: #163552;
}

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

.mini-card {
  height: 92px;
  padding: 14px;
  border: 1px solid #dbe6ee;
  border-radius: 12px;
  background: white;
}

.mini-card::before,
.mini-card::after {
  display: block;
  width: 42%;
  height: 7px;
  margin-bottom: 15px;
  border-radius: 99px;
  content: "";
  background: #b9cad7;
}

.mini-card::after {
  width: 68%;
  height: 13px;
  background: #1689d0;
}

.mini-table {
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid #dbe6ee;
  border-radius: 12px;
  background: white;
}

.mini-table span {
  display: block;
  height: 42px;
  border-bottom: 1px solid #e7eef3;
  background: linear-gradient(90deg, #d9e4ec 0 25%, transparent 25% 31%, #edf2f6 31% 52%, transparent 52% 58%, #edf2f6 58% 78%, transparent 78%);
  background-position: 15px center;
  background-size: calc(100% - 30px) 8px;
  background-repeat: no-repeat;
}

.mini-table span:last-child {
  border-bottom: 0;
}

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

.step {
  padding: 28px;
  border-top: 1px solid var(--line);
}

.step p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}

.industry-card {
  grid-column: span 4;
  min-height: 330px;
  padding: 32px;
  border-radius: var(--radius-md);
  color: white;
  background:
    linear-gradient(160deg, rgba(8, 24, 45, 0.2), rgba(8, 24, 45, 0.95)),
    var(--industry, #0d4f7e);
}

.industry-card:nth-child(2),
.industry-card:nth-child(3) {
  --industry: #135d91;
}

.industry-card:nth-child(4) {
  grid-column: span 7;
  --industry: #14344f;
}

.industry-card:nth-child(5) {
  grid-column: span 5;
  --industry: #0877c9;
}

.industry-card__tag {
  display: inline-flex;
  margin-bottom: 100px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: #d2e9f8;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.industry-card p {
  max-width: 490px;
  margin-bottom: 0;
  color: #c2d1de;
}

.quote-band {
  padding: 88px 0;
  color: white;
  background: var(--brand);
}

.quote-band blockquote {
  max-width: 980px;
  margin: 0;
  font-size: clamp(2rem, 4.2vw, 4.2rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.045em;
}

.page-hero {
  position: relative;
  padding: calc(var(--header) + 95px) 0 100px;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 80% 5%, rgba(25, 167, 242, 0.28), transparent 31%),
    linear-gradient(135deg, #08182d, #0c2947);
}

.page-hero::after {
  position: absolute;
  right: -120px;
  bottom: -220px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(100, 200, 255, 0.18);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 70px rgba(100, 200, 255, 0.03), 0 0 0 140px rgba(100, 200, 255, 0.025);
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  max-width: 950px;
  margin-bottom: 28px;
  font-size: clamp(3rem, 7vw, 6.5rem);
}

.page-hero .lead {
  max-width: 760px;
  color: #bed0df;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 80px;
  align-items: start;
}

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

.sticky-copy {
  position: sticky;
  top: calc(var(--header) + 35px);
}

.stack {
  display: grid;
  gap: 18px;
}

.solution-row {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.solution-row:first-child {
  border-top: 1px solid var(--line);
}

.solution-row__icon {
  display: flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  color: var(--brand);
  background: var(--brand-soft);
  font-weight: 850;
}

.solution-row h3 {
  margin-bottom: 8px;
}

.solution-row p {
  margin-bottom: 0;
  color: var(--muted);
}

.dark-card {
  padding: clamp(34px, 5vw, 68px);
  border-radius: var(--radius-lg);
  color: white;
  background:
    radial-gradient(circle at 90% 0%, rgba(25, 167, 242, 0.25), transparent 30%),
    var(--ink);
}

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

.check-item {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  color: #c0cedb;
  background: rgba(255, 255, 255, 0.04);
}

.check-item strong {
  display: block;
  margin-bottom: 5px;
  color: white;
}

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

.value {
  padding-top: 27px;
  border-top: 2px solid var(--brand);
}

.value p {
  color: var(--muted);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 74px;
  align-items: start;
}

.contact-details {
  display: grid;
  gap: 16px;
  margin-top: 38px;
}

.contact-detail {
  padding: 21px 0;
  border-bottom: 1px solid var(--line);
}

.contact-detail span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.contact-detail strong,
.contact-detail a {
  font-size: 1.05rem;
}

.form-card {
  padding: clamp(26px, 5vw, 48px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: white;
  box-shadow: 0 20px 60px rgba(8, 24, 45, 0.08);
}

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

.field {
  min-width: 0;
}

.field--full {
  grid-column: 1 / -1;
}

.field--trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.field label {
  display: block;
  margin-bottom: 7px;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 750;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ink);
  background: #fbfdff;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.field textarea {
  min-height: 125px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--brand);
  outline: none;
  box-shadow: 0 0 0 4px rgba(8, 119, 201, 0.1);
}

.form-footer {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-top: 23px;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-size: 0.87rem;
}

.form-status.is-success {
  color: var(--success);
}

.form-status.is-error {
  color: var(--danger);
}

.site-footer {
  position: relative;
  padding: 84px 0 28px;
  color: white;
  background: #061321;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.7fr 0.9fr;
  gap: 50px;
  margin-bottom: 66px;
}

.footer-brand img {
  width: 185px;
  margin-bottom: 22px;
  padding: 7px 10px;
  border-radius: 8px;
  background: white;
}

.footer-brand p {
  max-width: 340px;
  color: #95a9bb;
}

.footer-col strong {
  display: block;
  margin-bottom: 18px;
  color: #dce8f1;
  font-size: 0.75rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.footer-col a,
.footer-col span {
  display: block;
  margin-bottom: 11px;
  color: #95a9bb;
  font-size: 0.9rem;
}

.footer-col a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #71889a;
  font-size: 0.8rem;
}

.modal {
  position: fixed;
  z-index: 1200;
  inset: 0;
  display: none;
  padding: 28px;
  overflow-y: auto;
  background: rgba(3, 13, 24, 0.76);
  backdrop-filter: blur(11px);
}

.modal.is-open {
  display: grid;
  place-items: center;
}

.modal__dialog {
  position: relative;
  width: min(760px, 100%);
  max-height: calc(100vh - 56px);
  overflow-y: auto;
  padding: clamp(28px, 5vw, 50px);
  border-radius: var(--radius-lg);
  background: white;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
}

.modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: flex;
  width: 43px;
  height: 43px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: white;
  cursor: pointer;
}

.modal__head {
  padding-right: 46px;
}

.modal__head h2 {
  font-size: clamp(2rem, 5vw, 3.4rem);
}

.modal__head p {
  color: var(--muted);
}

.loader {
  position: fixed;
  z-index: 1800;
  inset: 0;
  display: grid;
  place-items: center;
  color: white;
  background: var(--ink);
  transition: opacity 450ms ease, visibility 450ms ease;
}

.loader.is-done {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.loader__mark {
  display: grid;
  gap: 16px;
  justify-items: center;
}

.loader__mark img {
  width: 210px;
  padding: 8px 12px;
  border-radius: 8px;
  background: white;
}

.loader__line {
  width: 120px;
  height: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.14);
}

.loader__line::after {
  display: block;
  width: 60%;
  height: 100%;
  content: "";
  background: var(--brand-bright);
  animation: loader-line 900ms ease-in-out infinite;
}

.route-curtain {
  position: fixed;
  z-index: 1500;
  inset: 0;
  pointer-events: none;
  background: var(--ink);
  transform: translateY(102%);
}

.route-curtain.is-active {
  pointer-events: auto;
  animation: route-cover 720ms cubic-bezier(0.76, 0, 0.24, 1) both;
}

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

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes loader-line {
  from { transform: translateX(-110%); }
  to { transform: translateX(180%); }
}

@keyframes route-cover {
  0% { transform: translateY(102%); }
  52% { transform: translateY(0); }
  100% { transform: translateY(-102%); }
}

@media (max-width: 1000px) {
  .hero-grid,
  .product-stage,
  .split,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 60px;
  }

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

  .hero-media {
    width: min(760px, 100%);
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .sticky-copy {
    position: static;
  }

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

  .footer-col:last-child {
    grid-column: 2 / 4;
  }
}

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

  .section {
    padding: 82px 0;
  }

  .menu-toggle {
    display: flex;
  }

  .site-nav {
    position: fixed;
    z-index: -1;
    top: var(--header);
    right: 0;
    left: 0;
    display: grid;
    gap: 20px;
    padding: 26px 20px 34px;
    border-bottom: 1px solid var(--line);
    background: white;
    box-shadow: 0 28px 55px rgba(8, 24, 45, 0.14);
    opacity: 0;
    transform: translateY(-115%);
    transition: transform 240ms ease, opacity 240ms ease;
  }

  .nav-open .site-nav {
    opacity: 1;
    transform: none;
  }

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

  .site-nav__links a {
    padding: 11px 4px;
    font-size: 1.05rem;
  }

  .site-nav .btn {
    width: 100%;
  }

  .signals,
  .card-grid,
  .steps,
  .value-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .signal:nth-child(3) {
    border-left: 1px solid var(--line);
  }

  .industry-card,
  .industry-card:nth-child(4),
  .industry-card:nth-child(5) {
    grid-column: span 6;
  }

  .industry-card:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(calc(100% - 28px), var(--max));
  }

  .brand img {
    width: 143px;
  }

  .hero {
    min-height: auto;
    padding: calc(var(--header) + 52px) 0 75px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 52px;
  }

  h1 {
    font-size: clamp(2.8rem, 15vw, 4.8rem);
  }

  h2 {
    font-size: clamp(2.1rem, 10vw, 3.2rem);
  }

  .hero-note {
    display: grid;
    gap: 10px;
    margin-top: 34px;
  }

  .hero-video-frame {
    border-radius: 22px;
  }

  .float-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: calc(100% - 28px);
    margin: -18px auto 0;
  }

  .signals,
  .card-grid,
  .steps,
  .value-grid,
  .check-grid,
  .form-grid,
  .split--equal {
    grid-template-columns: 1fr;
  }

  .signal {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .signal:last-child {
    border-bottom: 0;
  }

  .industry-card,
  .industry-card:nth-child(4),
  .industry-card:nth-child(5),
  .industry-card:last-child {
    grid-column: 1 / -1;
    min-height: 290px;
  }

  .industry-card__tag {
    margin-bottom: 70px;
  }

  .page-hero {
    padding: calc(var(--header) + 70px) 0 74px;
  }

  .product-fallback {
    min-height: 330px;
    grid-template-columns: 72px 1fr;
  }

  .product-fallback__side {
    padding: 17px 10px;
  }

  .product-fallback__side strong {
    font-size: 0.7rem;
    writing-mode: vertical-rl;
  }

  .product-fallback__side span {
    display: none;
  }

  .product-fallback__main {
    padding: 20px 14px;
  }

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

  .mini-card:nth-child(n + 2) {
    display: none;
  }

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

  .footer-brand,
  .footer-col:last-child {
    grid-column: 1 / -1;
  }

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

  .form-footer .btn {
    width: 100%;
  }

  .modal {
    padding: 0;
  }

  .modal__dialog {
    min-height: 100%;
    max-height: none;
    border-radius: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .loader,
  .route-curtain {
    display: none !important;
  }

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