:root {
  --ink: #071326;
  --muted: #5d6d86;
  --line: #d8e2f0;
  --panel: #ffffff;
  --panel-soft: #f4f7fb;
  --brand: #1a3cff;
  --brand-2: #5b4bff;
  --cyan: #06b6d4;
  --green: #14b86a;
  --danger: #ef4444;
  --shadow: 0 24px 70px rgba(18, 32, 64, .14);
  --shadow-strong: 0 34px 90px rgba(13, 27, 59, .22);
  --radius: 8px;
  color-scheme: light;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  margin: 0;
  overflow-x: hidden;
  background: #eef3fa;
  color: var(--ink);
  font-family: Inter, Manrope, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 12% 8%, rgba(26, 60, 255, .16), transparent 30%),
    radial-gradient(circle at 90% 4%, rgba(6, 182, 212, .18), transparent 28%),
    linear-gradient(180deg, #f8fbff 0%, #edf4fb 45%, #ffffff 100%);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  min-height: 74px;
  padding: 12px clamp(18px, 4vw, 54px);
  background: rgba(246, 249, 254, .86);
  border-bottom: 1px solid rgba(216, 226, 240, .7);
  backdrop-filter: blur(18px);
  transition: box-shadow .24s ease, background .24s ease;
}
.site-header.is-elevated {
  background: rgba(248, 251, 255, .94);
  box-shadow: 0 14px 36px rgba(18, 32, 64, .08);
}

.brand-logo { width: 190px; height: auto; }
.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px;
  border: 1px solid rgba(216, 226, 240, .82);
  border-radius: 999px;
  background: rgba(255,255,255,.72);
}

.site-nav a,
.lang-link,
.login-link {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 14px;
  color: #34435d;
  font-size: 13px;
  font-weight: 800;
}

.site-nav a:hover,
.lang-link:hover { background: #eef4ff; color: var(--brand); }
.header-actions { display: flex; align-items: center; gap: 8px; }
.lang-link { border: 1px solid var(--line); background: #fff; }
.login-link { background: var(--ink); color: #fff; box-shadow: 0 10px 26px rgba(7,19,38,.18); }
.login-link:hover { transform: translateY(-1px); }

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
}
.nav-toggle span {
  display: block;
  width: 17px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
  border-radius: 999px;
}

main {
  width: min(1440px, 100%);
  margin: 0 auto;
  padding: 28px clamp(18px, 4vw, 54px) 0;
}

.hero {
  min-height: calc(100svh - 102px);
  display: grid;
  grid-template-columns: minmax(0, .76fr) minmax(0, 1.24fr);
  gap: clamp(24px, 4vw, 58px);
  align-items: center;
  padding-bottom: 34px;
  position: relative;
}
.hero > *,
.split-section > *,
.workflow-section > *,
.cta > * {
  min-width: 0;
}

.eyebrow,
.section-kicker {
  display: inline-block;
  max-width: 100%;
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  overflow-wrap: anywhere;
}

h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(38px, 4.5vw, 60px);
  line-height: 1;
  font-weight: 900;
  overflow-wrap: anywhere;
}
h2 {
  margin-bottom: 16px;
  font-size: clamp(24px, 2.8vw, 36px);
  line-height: 1.1;
  font-weight: 900;
}
h3 { font-size: 18px; line-height: 1.12; }
p { color: var(--muted); line-height: 1.65; }

.hero-copy > p {
  max-width: 720px;
  font-size: 18px;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 14px;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 20px;
  font-size: 14px;
  font-weight: 900;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn.primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff;
  box-shadow: 0 18px 36px rgba(26,60,255,.25);
}
.btn.secondary {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink);
}

.hero-copy small {
  color: #75849b;
  font-size: 12px;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  border: 1px solid rgba(170, 188, 214, .6);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-strong);
  overflow: hidden;
  transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
  transition: transform .35s ease, box-shadow .35s ease;
}
.hero-visual:hover {
  transform: perspective(1200px) rotateY(0deg) rotateX(0deg) translateY(-4px);
}
.hero-visual::before {
  content: "";
  display: block;
  height: 38px;
  background:
    linear-gradient(90deg, #ff6b6b 0 12px, transparent 12px 24px),
    linear-gradient(90deg, #f7c948 0 12px, transparent 12px 24px),
    linear-gradient(90deg, #2ed573 0 12px, transparent 12px 24px),
    #f7faff;
  background-size: 12px 12px, 12px 12px, 12px 12px, auto;
  background-position: 18px 13px, 38px 13px, 58px 13px, 0 0;
  background-repeat: no-repeat;
  border-bottom: 1px solid var(--line);
}
.hero-visual img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; object-position: top left; }

.metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 0 0 80px;
}
.metrics article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.78);
  box-shadow: 0 14px 34px rgba(18,32,64,.06);
  transition: transform .2s ease, box-shadow .2s ease;
}
.metrics article:hover,
.feature-card:hover,
.screen-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 62px rgba(18,32,64,.13);
}
.metrics strong { display: block; font-size: 34px; line-height: 1; font-weight: 900; }
.metrics span { display: block; margin-top: 8px; color: var(--muted); font-size: 13px; font-weight: 800; }

.split-section,
.workflow-section,
.cta {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: clamp(22px, 5vw, 72px);
  align-items: start;
  margin: 76px 0;
}
.split-section p { font-size: 20px; }

.section-head {
  max-width: 900px;
  margin-bottom: 28px;
}
.section-head p { max-width: 780px; font-size: 17px; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.feature-card {
  min-height: 232px;
  width: 100%;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.82);
  box-shadow: 0 18px 44px rgba(18,32,64,.07);
  color: inherit;
  cursor: pointer;
  font: inherit;
  text-align: left;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.feature-card:focus-visible {
  outline: none;
  border-color: rgba(91,75,255,.5);
  box-shadow: 0 0 0 4px rgba(91,75,255,.16), 0 24px 62px rgba(18,32,64,.13);
}
.feature-card img {
  width: 38px;
  height: 38px;
  margin-bottom: 20px;
  padding: 7px;
  border-radius: 10px;
  background: #eef4ff;
}
.feature-card h3 { margin-bottom: 9px; }
.feature-card p { margin: 0; font-size: 14px; line-height: 1.55; }

.feature-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  place-items: center;
  padding: 24px;
}
.feature-modal.is-open { display: grid; }
.feature-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 13, 28, .72);
  backdrop-filter: blur(12px);
}
.feature-modal-panel {
  position: relative;
  z-index: 1;
  width: min(1280px, 100%);
  max-height: min(780px, calc(100vh - 48px));
  display: grid;
  grid-template-columns: minmax(240px, .55fr) minmax(0, 1.45fr);
  gap: clamp(18px, 3vw, 34px);
  overflow: hidden;
  padding: clamp(18px, 3.2vw, 34px);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 22px;
  background:
    radial-gradient(circle at 8% 0%, rgba(91,75,255,.18), transparent 34%),
    #ffffff;
  box-shadow: 0 34px 90px rgba(4,10,25,.36);
}
.feature-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(15,23,42,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.9);
  color: #111827;
  cursor: pointer;
  font-size: 26px;
  font-weight: 400;
  line-height: 1;
}
.feature-modal-close:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(91,75,255,.18);
}
.feature-modal-copy {
  align-self: center;
  padding-right: 8px;
}
.feature-modal-copy h2 {
  margin: 8px 0 14px;
  font-size: clamp(28px, 4vw, 46px);
}
.feature-modal-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}
.feature-modal-media {
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #edf2ff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.7);
}
.feature-modal-media img {
  width: 100%;
  height: 100%;
  max-height: min(650px, calc(100vh - 120px));
  display: block;
  object-fit: contain;
}
body.feature-modal-open { overflow: hidden; }

.workflow-list {
  counter-reset: work;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.workflow-list li {
  position: relative;
  counter-increment: work;
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: start;
  gap: 12px;
  min-height: 108px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.14), rgba(255,255,255,.06)),
    rgba(255,255,255,.08);
  color: rgba(237,243,255,.88);
  font-weight: 800;
  line-height: 1.45;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12);
}
.workflow-list li::before {
  content: "0" counter(work);
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(74,222,255,.36);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(74,222,255,.22), rgba(91,75,255,.26));
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .8px;
  box-shadow: 0 12px 28px rgba(0,0,0,.18);
}
.workflow-list li::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 0;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, #4adeff, #5b4bff);
  opacity: .72;
}

.workflow-section {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid rgba(91,75,255,.18);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(9,18,43,.98), rgba(18,33,75,.96) 48%, rgba(39,36,111,.94)),
    repeating-linear-gradient(90deg, rgba(255,255,255,.05) 0 1px, transparent 1px 72px);
  box-shadow: 0 28px 76px rgba(13,24,52,.2);
  color: #fff;
}
.workflow-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(74,222,255,.12), transparent 34%, transparent 70%, rgba(91,75,255,.16)),
    linear-gradient(180deg, rgba(255,255,255,.08), transparent 38%);
}
.workflow-section > * {
  position: relative;
  z-index: 1;
}
.workflow-copy {
  max-width: 440px;
}
.workflow-copy h2 {
  color: #fff;
}
.workflow-copy .section-kicker {
  color: #b9f4ff;
}

.integrations {
  margin: 90px 0;
  padding: clamp(24px, 5vw, 58px);
  border-radius: 18px;
  background:
    radial-gradient(circle at 18% 0%, rgba(91, 75, 255, .28), transparent 34%),
    radial-gradient(circle at 88% 12%, rgba(6, 182, 212, .2), transparent 30%),
    #071326;
  color: #fff;
  overflow: hidden;
  position: relative;
}
.integrations h2,
.integrations .section-kicker { color: #fff; }
.integrations p { color: #b8c5d9; }
.integration-cloud {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(132px, 1fr));
  gap: 10px;
}
.integration-badge {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 12px;
  background: rgba(255,255,255,.92);
  color: #f8fbff;
  box-shadow: 0 16px 42px rgba(0,0,0,.18);
  transition: transform .2s ease, background .2s ease;
  position: relative;
}
.integration-badge:hover {
  transform: translateY(-3px);
  background: #fff;
}
.integration-badge::after {
  content: attr(data-brand);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 8px);
  max-width: 210px;
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  background: rgba(8, 18, 36, .96);
  color: #fff;
  box-shadow: 0 12px 28px rgba(0,0,0,.24);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  opacity: 0;
  pointer-events: none;
  text-align: center;
  transform: translate(-50%, 4px);
  transition: opacity .16s ease, transform .16s ease;
  white-space: nowrap;
  z-index: 5;
}
.integration-badge:hover::after,
.integration-badge:focus-within::after {
  opacity: 1;
  transform: translate(-50%, 0);
}
.integration-badge strong {
  color: #0b153d;
  text-align: center;
  font-size: 13px;
  font-weight: 900;
}
.integration-logo-row {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.integration-logo-row img {
  width: min(108px, 100%);
  max-height: 30px;
  filter: grayscale(1) saturate(0) contrast(1.08);
  object-fit: contain;
}
.integration-badge:is(
  [data-brand="Hyundai"],
  [data-brand="Kia"],
  [data-brand="MINI"],
  [data-brand="Chevrolet"],
  [data-brand="Jaguar"],
  [data-brand="Ram"],
  [data-brand="Bentley"],
  [data-brand="Jeep"],
  [data-brand="Audi"],
  [data-brand="Ford"],
  [data-brand="Subaru"],
  [data-brand="Mazda"],
  [data-brand="Chrysler"]
) .integration-logo-row {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 10px;
}
.integration-badge:is(
  [data-brand="Hyundai"],
  [data-brand="Kia"],
  [data-brand="MINI"],
  [data-brand="Chevrolet"],
  [data-brand="Jaguar"],
  [data-brand="Ram"],
  [data-brand="Bentley"],
  [data-brand="Jeep"],
  [data-brand="Audi"],
  [data-brand="Ford"],
  [data-brand="Subaru"],
  [data-brand="Mazda"],
  [data-brand="Chrysler"]
) .integration-logo-row img {
  width: 70%;
  height: 70%;
  max-width: 70%;
  max-height: 70%;
  object-fit: contain;
}
.integration-logo-row img + img {
  max-width: 72px;
}

.security-panel {
  padding: clamp(24px, 5vw, 58px);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
}
.security-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}
.security-item {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  padding: 16px;
  border-radius: var(--radius);
  background: var(--panel-soft);
}
.security-mark {
  position: relative;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(91,75,255,.16), rgba(74,222,255,.22));
  box-shadow: inset 0 0 0 1px rgba(91,75,255,.2);
}
.security-mark::before {
  content: "";
  width: 9px;
  height: 11px;
  border: 2px solid #2563eb;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom: 0;
  transform: translateY(-3px);
}
.security-mark::after {
  content: "";
  position: absolute;
  bottom: 5px;
  width: 12px;
  height: 9px;
  border-radius: 3px;
  background: #2563eb;
}
.security-item p { margin: 0; font-size: 14px; line-height: 1.5; }

.screens { margin: 90px 0; }
.screen-carousel {
  position: relative;
  overflow: hidden;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(91,75,255,.18);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(10,18,45,.98), rgba(22,34,74,.97) 44%, rgba(55,45,138,.95)),
    repeating-linear-gradient(90deg, rgba(255,255,255,.06) 0 1px, transparent 1px 64px);
  box-shadow: 0 32px 80px rgba(13,24,52,.24);
  color: #fff;
}
.screen-carousel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(61,213,255,.12), transparent 28%, transparent 72%, rgba(91,75,255,.18)),
    linear-gradient(180deg, rgba(255,255,255,.08), transparent 36%);
}
.screen-carousel-toolbar {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: auto minmax(120px, 1fr);
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}
.screen-counter {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  font-size: 13px;
  font-weight: 900;
  color: rgba(255,255,255,.68);
}
.screen-counter span:first-child {
  font-size: 30px;
  line-height: 1;
  color: #fff;
}
.screen-progress {
  height: 6px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
}
.screen-progress span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #4adeff, #8b5cf6, #ffffff);
  transition: width .45s ease;
}
.screen-carousel-shell {
  position: relative;
  z-index: 1;
}
.screen-viewport {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  background: rgba(255,255,255,.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.14);
}
.screen-track {
  display: flex;
  transform: translateX(0);
  transition: transform .7s cubic-bezier(.22, 1, .36, 1);
  will-change: transform;
}
.screen-card {
  min-width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(280px, .72fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: center;
  padding: clamp(16px, 2.6vw, 30px);
  border: 0;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
  transition: opacity .24s ease;
}
.screen-card:hover {
  transform: none;
  box-shadow: none;
}
.screen-media {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 14px;
  background: #eaf0f8;
  box-shadow: 0 24px 70px rgba(0,0,0,.32);
}
.screen-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255,255,255,.2), transparent 24%, transparent 74%, rgba(74,222,255,.16));
  mix-blend-mode: screen;
}
.screen-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: top left;
  background: #eaf0f8;
}
.screen-card.is-mobile-shot {
  grid-template-columns: minmax(220px, .52fr) minmax(0, .48fr);
}
.screen-card.is-mobile-shot .screen-media {
  width: min(320px, 100%);
  justify-self: center;
  border-radius: 26px;
  background: #07101d;
}
.screen-card.is-mobile-shot img {
  height: 620px;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: top center;
  background: #07101d;
}
.screen-copy {
  max-width: 460px;
}
.screen-chip {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  margin-bottom: 18px;
  border: 1px solid rgba(74,222,255,.26);
  border-radius: 999px;
  background: rgba(74,222,255,.12);
  color: #b9f4ff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}
.screen-card h3 {
  margin-bottom: 12px;
  color: #fff;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1;
}
.screen-card p {
  margin-bottom: 0;
  color: rgba(232,239,255,.78);
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.65;
}
.screen-nav {
  position: absolute;
  z-index: 3;
  top: 50%;
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  color: #fff;
  box-shadow: 0 16px 34px rgba(0,0,0,.24);
  transform: translateY(-50%);
  cursor: pointer;
  backdrop-filter: blur(12px);
  transition: background .2s ease, transform .2s ease, border-color .2s ease;
}
.screen-nav:hover,
.screen-nav:focus-visible {
  border-color: rgba(74,222,255,.62);
  background: rgba(74,222,255,.18);
  transform: translateY(-50%) scale(1.04);
  outline: none;
}
.screen-nav span {
  display: block;
  margin-top: -3px;
  font-size: 36px;
  line-height: 1;
}
.screen-nav-prev { left: 16px; }
.screen-nav-next { right: 16px; }
.screen-dots {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}
.screen-dots button {
  width: 34px;
  height: 6px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.22);
  cursor: pointer;
  transition: width .24s ease, background .24s ease;
}
.screen-dots button.is-active,
.screen-dots button:hover,
.screen-dots button:focus-visible {
  width: 54px;
  background: #4adeff;
  outline: none;
}

.pricing-contact {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr);
  gap: clamp(18px, 4vw, 42px);
  align-items: center;
  margin: 86px 0 48px;
  padding: clamp(24px, 5vw, 54px);
  border: 1px solid rgba(91,75,255,.18);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.92), rgba(244,248,255,.86)),
    linear-gradient(90deg, rgba(91,75,255,.1), rgba(74,222,255,.12));
  box-shadow: 0 24px 70px rgba(18,32,64,.12);
}
.pricing-contact h2 {
  max-width: 720px;
  margin-bottom: 12px;
  font-size: clamp(34px, 5vw, 64px);
  line-height: .98;
}
.pricing-contact p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}
.contact-card {
  padding: 22px;
  border: 1px solid rgba(91,75,255,.18);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(18,32,64,.1);
}
.contact-card span {
  display: block;
  margin-bottom: 9px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}
.contact-card a {
  display: inline-flex;
  max-width: 100%;
  color: var(--brand-2);
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 900;
  overflow-wrap: anywhere;
}
.contact-card p {
  margin-top: 16px;
  font-size: 14px;
}

.cta {
  margin-bottom: 80px;
  align-items: center;
  padding: clamp(26px, 5vw, 58px);
  border-radius: 18px;
  background: linear-gradient(135deg, #102044, #1a3cff);
  color: #fff;
}
.cta h2 { color: #fff; }
.cta p { color: #dbe7ff; max-width: 720px; }
.cta .btn.secondary { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.25); color: #fff; }
.cta-actions { justify-content: flex-end; margin: 0; }

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px 28px;
  align-items: center;
  padding: 34px clamp(18px, 4vw, 54px);
  border-top: 1px solid var(--line);
  background: #fff;
}
.site-footer img { width: 172px; }
.site-footer p { margin: 0; font-weight: 900; color: var(--ink); }
.site-footer a {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 900;
  background: #f8fbff;
}
.site-footer a:hover { background: #eef4ff; transform: translateY(-1px); }
.site-footer small { grid-column: 2; color: var(--muted); line-height: 1.5; }

.hero-copy,
.hero-visual,
.metrics article,
.split-section,
.feature-card,
.workflow-section,
.integrations,
.security-panel,
.screen-carousel,
.pricing-contact,
.cta {
  opacity: 1;
  transform: none;
}
.hero-copy,
.hero-visual,
.metrics article,
.split-section,
.feature-card,
.workflow-section,
.integrations,
.security-panel,
.screen-carousel,
.pricing-contact,
.cta {
  animation: fade-up .58s ease both;
}
.hero-copy.is-visible,
.hero-visual.is-visible,
.metrics article.is-visible,
.split-section.is-visible,
.feature-card.is-visible,
.workflow-section.is-visible,
.integrations.is-visible,
.security-panel.is-visible,
.screen-carousel.is-visible,
.pricing-contact.is-visible,
.cta.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .58s ease, transform .58s ease, box-shadow .2s ease;
}
@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; min-height: 0; }
  .hero-visual { order: -1; transform: none; }
  .feature-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .security-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .integration-cloud { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 860px) {
  .site-header { grid-template-columns: auto auto 1fr; gap: 12px; }
  .brand-logo { width: 166px; }
  .nav-toggle { display: inline-block; order: 2; }
  .header-actions { justify-self: end; order: 3; }
  .site-nav {
    position: fixed;
    left: 14px;
    right: 14px;
    top: 78px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border-radius: 14px;
    padding: 10px;
    background: #fff;
    box-shadow: var(--shadow);
  }
  .site-nav.open { display: flex; }
  .site-nav a { justify-content: flex-start; }
  .login-link { display: none; }
  main { padding-top: 18px; }
  .metrics,
  .feature-grid,
  .security-grid,
  .split-section,
  .workflow-section,
  .pricing-contact,
  .cta { grid-template-columns: 1fr; }
  .screen-card,
  .screen-card.is-mobile-shot {
    grid-template-columns: 1fr;
  }
  .workflow-list {
    grid-template-columns: 1fr;
  }
  .workflow-list li {
    min-height: auto;
  }
  .screen-card.is-mobile-shot .screen-media {
    width: min(280px, 84vw);
  }
  .screen-card.is-mobile-shot img {
    height: min(620px, 138vw);
  }
  .screen-copy {
    max-width: none;
  }
  .metrics { margin-bottom: 54px; }
  .feature-card { min-height: auto; }
  .feature-modal {
    padding: 14px;
    align-items: end;
  }
  .feature-modal-panel {
    max-height: calc(100vh - 28px);
    grid-template-columns: 1fr;
    gap: 16px;
    overflow: auto;
    border-radius: 18px;
  }
  .feature-modal-copy {
    padding-right: 42px;
  }
  .feature-modal-copy h2 {
    font-size: 28px;
  }
  .feature-modal-copy p {
    font-size: 15px;
  }
  .feature-modal-media {
    min-height: 240px;
    max-height: 56vh;
  }
  .integration-cloud { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cta-actions { justify-content: flex-start; }
  .site-footer { grid-template-columns: 1fr; }
  .site-footer small { grid-column: 1; }
}

@media (max-width: 560px) {
  .site-header { padding-inline: 14px; }
  .brand-logo { width: 145px; }
  .lang-link { min-width: 42px; padding: 0 10px; }
  main { padding-inline: 20px; }
  .hero { gap: 22px; padding-bottom: 22px; }
  .hero-copy {
    width: min(100%, 330px);
    max-width: 330px;
  }
  .hero-visual {
    width: calc(100vw - 40px);
    max-width: calc(100vw - 40px);
  }
  .eyebrow,
  .section-kicker { font-size: 10px; letter-spacing: 1.1px; }
  h1 { font-size: clamp(30px, 8.7vw, 34px); line-height: 1.04; }
  .hero-visual { border-radius: 14px; }
  .hero-visual::before { height: 34px; background-position: 18px 11px, 38px 11px, 58px 11px, 0 0; }
  .hero-copy > p,
  .split-section p { font-size: 16px; }
  .hero-actions .btn,
  .cta-actions .btn { width: 100%; }
  .metrics article { padding: 16px; }
  .integrations,
  .security-panel,
  .workflow-section,
  .pricing-contact,
  .cta { border-radius: 12px; }
  .pricing-contact {
    padding: 18px;
  }
  .pricing-contact h2 {
    font-size: 32px;
  }
  .workflow-section {
    padding: 18px;
  }
  .workflow-list li {
    grid-template-columns: 40px 1fr;
    padding: 14px;
    border-radius: 13px;
    font-size: 14px;
  }
  .workflow-list li::before {
    width: 36px;
    height: 36px;
    border-radius: 12px;
  }
  .screen-carousel {
    padding: 14px;
    border-radius: 16px;
  }
  .screen-carousel-toolbar {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .screen-viewport {
    border-radius: 13px;
  }
  .screen-card {
    padding: 12px;
    gap: 16px;
  }
  .screen-card h3 {
    font-size: 28px;
  }
  .screen-card p {
    font-size: 14px;
  }
  .screen-nav {
    top: auto;
    bottom: 14px;
    width: 42px;
    height: 42px;
    transform: none;
  }
  .screen-nav:hover,
  .screen-nav:focus-visible {
    transform: scale(1.04);
  }
  .screen-nav-prev { left: 26px; }
  .screen-nav-next { right: 26px; }
  .screen-dots {
    max-width: calc(100% - 118px);
    min-height: 42px;
    align-items: center;
    margin-inline: auto;
  }
  .screen-dots button {
    width: 20px;
  }
  .screen-dots button.is-active,
  .screen-dots button:hover,
  .screen-dots button:focus-visible {
    width: 34px;
  }
  .integration-badge { min-height: 74px; }
  .integration-logo-row img { max-height: 30px; }
  .feature-modal { padding: 10px; }
  .feature-modal-panel { padding: 18px; }
  .feature-modal-media {
    min-height: 210px;
    max-height: 52vh;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .hero-copy,
  .hero-visual,
  .metrics article,
  .split-section,
  .feature-card,
  .workflow-section,
  .integrations,
  .security-panel,
  .screen-carousel,
  .pricing-contact,
  .cta {
    opacity: 1;
    transform: none;
  }
}
