/* ────── Pain section ────── */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 32px 0 24px;
}
@media (max-width: 880px) { .pain-grid { grid-template-columns: 1fr; } }
.pain-card {
  padding: 24px;
  background: rgba(255, 90, 90, 0.06);
  border: 1px solid rgba(255, 90, 90, 0.25);
  border-radius: 12px;
  transition: transform .18s, border-color .18s;
}
.pain-card:hover { transform: translateY(-2px); border-color: rgba(255, 90, 90, 0.45); }
.pain-icon { font-size: 32px; margin-bottom: 8px; }
.pain-card h3 { margin: 0 0 8px; font-size: 17px; color: #ecf4ff; }
.pain-card p { margin: 0; color: #c7d8ee; font-size: 14px; line-height: 1.65; }
.problem-bridge {
  margin: 24px auto 0;
  max-width: 720px;
  text-align: center;
  padding: 20px;
  border-left: 3px solid #59c8ff;
  background: rgba(89, 200, 255, 0.06);
  border-radius: 4px;
}
.problem-bridge p { margin: 0; font-size: 16px; line-height: 1.65; color: #ecf4ff; }

/* ────── Audience grid ────── */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 28px;
}
@media (max-width: 980px) { .audience-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .audience-grid { grid-template-columns: 1fr; } }
.audience-card {
  padding: 22px 20px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(7, 17, 28, 0.04);
  transition: transform .18s, box-shadow .18s;
}
.audience-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(7, 17, 28, 0.12);
}
.audience-icon { font-size: 30px; margin-bottom: 8px; }
.audience-card h3 { margin: 0 0 8px; font-size: 17px; color: #0a1a2d; }
.audience-card p { margin: 0; color: #495a72; font-size: 14px; line-height: 1.6; }

/* ────── Workflow large ────── */
.workflow-grid-large { grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 1080px) { .workflow-grid-large { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .workflow-grid-large { grid-template-columns: 1fr; } }

/* ────── Two products ────── */
.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}
@media (max-width: 980px) { .products-grid { grid-template-columns: 1fr; } }
.product-card {
  position: relative;
  padding: 32px 28px 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(89, 200, 255, 0.18);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
}
.product-card-desktop {
  background: linear-gradient(160deg, rgba(89, 200, 255, 0.10), rgba(44, 123, 229, 0.18));
  border-color: rgba(89, 200, 255, 0.45);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.4);
}
.product-badge {
  display: inline-block;
  align-self: flex-start;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  border-radius: 999px;
  background: rgba(89, 200, 255, 0.18);
  color: #59c8ff;
  margin-bottom: 12px;
}
.product-badge-pro { background: linear-gradient(90deg, #2c7be5, #59c8ff); color: #fff; }
.product-card h3 { margin: 0 0 6px; font-size: 22px; color: #ecf4ff; }
.product-summary { color: #c7d8ee; line-height: 1.6; margin: 0 0 18px; font-size: 14.5px; }
.product-features {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: grid;
  gap: 8px;
}
.product-features li {
  color: #ecf4ff;
  font-size: 14px;
  line-height: 1.55;
}
.product-meta {
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 18px;
}
.product-meta p { margin: 4px 0; font-size: 13px; color: #c7d8ee; }
.product-card .button { align-self: flex-start; }

/* ────── Compliance ────── */
.compliance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 28px;
}
@media (max-width: 980px) { .compliance-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .compliance-grid { grid-template-columns: 1fr; } }
.compliance-card {
  padding: 22px 20px;
  background: #fbfdff;
  border: 1px solid rgba(44, 123, 229, 0.15);
  border-radius: 12px;
}
.compliance-card h3 { margin: 0 0 8px; font-size: 16px; color: #0a1a2d; }
.compliance-card p { margin: 0; color: #495a72; font-size: 14px; line-height: 1.65; }
.compliance-bridge {
  margin-top: 32px;
  text-align: center;
  color: #495a72;
  font-size: 14px;
}
.compliance-bridge a { color: #2c7be5; text-decoration: underline; }
.bridge-sep { color: rgba(0, 0, 0, 0.2); margin: 0 8px; }

/* ────── FAQ ────── */
.faq-grid {
  max-width: 820px;
  margin: 24px auto 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  padding: 0;
  overflow: hidden;
  transition: border-color .18s;
}
.faq-item[open] { border-color: rgba(44, 123, 229, 0.4); }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 20px;
  font-size: 15.5px;
  font-weight: 600;
  color: #0a1a2d;
  position: relative;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 16px;
  font-size: 20px;
  font-weight: 400;
  color: #2c7be5;
  transition: transform .2s;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p {
  margin: 0;
  padding: 0 20px 18px;
  color: #495a72;
  font-size: 14.5px;
  line-height: 1.7;
}

/* ────── Closing CTA ────── */
.closing-cta .notice-strong {
  background: linear-gradient(135deg, rgba(89, 200, 255, 0.10), rgba(44, 123, 229, 0.16));
  border-color: rgba(89, 200, 255, 0.4);
  text-align: center;
}
.closing-cta .closing-actions {
  justify-content: center;
  margin-top: 18px;
}

/* ────── Download section ────── */
.download-card {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 32px;
  margin: 24px auto 16px;
  padding: 28px;
  background: linear-gradient(135deg, rgba(89, 200, 255, 0.08), rgba(44, 123, 229, 0.16));
  border: 1px solid rgba(89, 200, 255, 0.35);
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  max-width: 960px;
}
@media (max-width: 760px) {
  .download-card { grid-template-columns: 1fr; }
}
.download-version {
  font-size: 14px;
  letter-spacing: .5px;
  color: #59c8ff;
  margin: 0 0 4px;
  text-transform: uppercase;
}
.download-meta { color: #9db0ca; margin: 0 0 16px; font-size: 13px; }
.download-features {
  margin: 0;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 6px;
  color: #ecf4ff;
  font-size: 14.5px;
}
.download-features li { line-height: 1.55; }
.download-card-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 10px;
  text-align: right;
}
.download-btn {
  font-size: 16px;
  padding: 14px 22px;
  white-space: nowrap;
}
.download-system { color: #9db0ca; font-size: 12.5px; margin: 0; }
.download-note { color: #9db0ca; font-size: 12.5px; margin: 0; }
.download-note a { color: #59c8ff; }
.download-extras {
  margin: 24px auto 0;
  max-width: 960px;
  color: #9db0ca;
  font-size: 14px;
}
.download-extras summary {
  cursor: pointer;
  padding: 8px 0;
  color: #c7d8ee;
  font-weight: 600;
}
.download-extras ul { padding-left: 18px; line-height: 1.7; }
.download-extras code { font-size: 11.5px; word-break: break-all; }
.nav-cta {
  background: rgba(89, 200, 255, 0.14);
  border: 1px solid rgba(89, 200, 255, 0.35);
  padding: 4px 12px !important;
  border-radius: 999px;
  color: #59c8ff !important;
}
.nav-cta:hover { background: rgba(89, 200, 255, 0.22); }

:root {
  color-scheme: dark light;
  --bg: #07111c;
  --bg-soft: #0c1827;
  --bg-panel: #12253d;
  --line-dark: rgba(255, 255, 255, 0.14);
  --line-soft: rgba(255, 255, 255, 0.08);
  --ink: #ecf4ff;
  --muted: #9db0ca;
  --accent: #1790ff;
  --accent-strong: #0a6fd1;
  --accent-soft: #8dc9ff;
  --surface: #f3f6fb;
  --surface-strong: #ffffff;
  --surface-muted: #e3eaf3;
  --ink-dark: #111c29;
  --muted-dark: #53657d;
  --line-light: #d6e0ec;
  --shadow-dark: 0 24px 64px rgba(3, 8, 17, 0.45);
  --shadow-light: 0 18px 44px rgba(16, 26, 41, 0.10);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink-dark);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--line-dark);
  background: rgba(7, 17, 28, 0.86);
  backdrop-filter: blur(14px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 800;
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
}

.brand span {
  white-space: nowrap;
}

.brand-wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 0.12em;
}

.brand-mom {
  color: var(--ink);
}

.brand-shield {
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  min-width: 0;
}

.nav-links a {
  color: rgba(236, 244, 255, 0.80);
  text-decoration: none;
  font-size: 14px;
  font-weight: 650;
}

.nav-links a:hover {
  color: var(--ink);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, #091321 0%, #07111c 100%);
  background-size: 34px 34px, 34px 34px, auto;
  color: var(--ink);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(23, 144, 255, 0.18), transparent 34%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.16), transparent 40%);
  pointer-events: none;
}

.hero-shell {
  position: relative;
  padding: 88px 0 72px;
}

.hero-head {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 22px;
  align-items: start;
  margin-bottom: 28px;
}

.hero-copy-block {
  min-width: 0;
}

.hero-brand-stack {
  display: grid;
  gap: 18px;
}

.brand-showcase,
.platform-rail {
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    rgba(9, 19, 33, 0.72);
  box-shadow: var(--shadow-dark);
}

.brand-showcase {
  padding: 12px;
}

.brand-showcase img {
  width: 100%;
  border-radius: calc(var(--radius) - 2px);
}

.platform-rail {
  padding: 18px;
}

.platform-label {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 750;
}

.platform-copy {
  margin: 0 0 16px;
  color: rgba(236, 244, 255, 0.76);
  font-size: 15px;
}

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

.platform-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 14px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
}

.platform-chip img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex: 0 0 auto;
}

.platform-chip span {
  color: rgba(236, 244, 255, 0.92);
  font-size: 14px;
  font-weight: 750;
}

.hero-kicker,
.section-kicker,
.notice-kicker,
.scene-label,
.detail-label {
  margin: 0 0 10px;
  color: var(--accent-soft);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

h1 {
  max-width: 900px;
  margin-bottom: 18px;
  font-size: 72px;
  line-height: 0.95;
}

h2 {
  margin-bottom: 16px;
  font-size: 44px;
  line-height: 1.02;
}

h3 {
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 1.16;
}

.hero-copy,
.lead,
.content p,
.content li,
.meta-table td {
  font-size: 18px;
}

.hero-copy {
  max-width: 780px;
  margin-bottom: 28px;
  color: rgba(236, 244, 255, 0.86);
}

.hero-actions,
.closing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  text-decoration: none;
  font-size: 15px;
  font-weight: 750;
}

.button-primary {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 16px 32px rgba(23, 144, 255, 0.24);
}

.button-primary:hover {
  background: var(--accent-strong);
}

.button-secondary {
  border-color: var(--line-dark);
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.10);
}

.section-light .button-secondary,
.section-neutral .button-secondary,
.notice .button-secondary,
.content .button-secondary {
  border-color: var(--line-light);
  background: var(--surface-strong);
  color: var(--ink-dark);
}

.section-light .button-secondary:hover,
.section-neutral .button-secondary:hover,
.notice .button-secondary:hover,
.content .button-secondary:hover {
  background: var(--surface-muted);
}

.text-link {
  color: rgba(236, 244, 255, 0.84);
  text-decoration: none;
  font-size: 15px;
  font-weight: 650;
}

.text-link:hover {
  color: var(--ink);
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 30px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(236, 244, 255, 0.84);
  font-size: 13px;
  font-weight: 700;
}

.hero-scene {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.9fr) minmax(0, 1.15fr);
  gap: 18px;
  padding: 18px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    rgba(7, 17, 28, 0.66);
  box-shadow: var(--shadow-dark);
}

.scene-panel,
.scene-core {
  min-height: 100%;
  padding: 22px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
}

.scene-title {
  margin-bottom: 16px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
}

.code-window {
  display: grid;
  gap: 10px;
  min-height: 216px;
  padding: 16px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(2, 7, 13, 0.72);
  color: #f1f5ff;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  font-size: 15px;
  line-height: 1.5;
}

.code-window-masked {
  color: #b7dcff;
}

.scene-core {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.core-badge {
  width: 78px;
  height: 78px;
  margin: 0 auto 18px;
  padding: 11px;
  border: 1px solid rgba(23, 144, 255, 0.42);
  border-radius: var(--radius);
  background: rgba(23, 144, 255, 0.10);
  box-shadow: 0 0 0 1px rgba(23, 144, 255, 0.12) inset;
}

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

.scene-core h2 {
  margin-bottom: 12px;
  font-size: 36px;
}

.core-copy {
  margin-bottom: 18px;
  color: rgba(236, 244, 255, 0.82);
  font-size: 17px;
}

.core-points {
  display: grid;
  gap: 10px;
}

.core-points span {
  display: inline-flex;
  justify-content: center;
  min-height: 40px;
  padding: 8px 12px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(236, 244, 255, 0.90);
  font-size: 14px;
  font-weight: 700;
}

.hero-note {
  margin: 18px 0 0;
  color: rgba(236, 244, 255, 0.72);
  font-size: 16px;
}

.section {
  padding: 84px 0;
}

.section-light {
  background: var(--surface);
  color: var(--ink-dark);
}

.section-neutral {
  background: var(--surface-strong);
  color: var(--ink-dark);
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.section-dark {
  background: var(--bg-soft);
  color: var(--ink);
}

.section-dark .section-kicker,
.section-dark .lead,
.section-dark figcaption,
.section-dark p {
  color: inherit;
}

.section-dark .lead {
  color: rgba(236, 244, 255, 0.76);
}

.section-light .section-kicker,
.section-neutral .section-kicker,
.page-title .section-kicker,
.notice-kicker,
.detail-label {
  color: var(--accent-strong);
}

.lead {
  max-width: 820px;
  margin-bottom: 30px;
  color: var(--muted-dark);
}

.feature-grid,
.workflow-grid,
.proof-points,
.coverage-grid {
  display: grid;
  gap: 18px;
}

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

.feature-tile {
  padding: 26px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: var(--surface-strong);
  box-shadow: var(--shadow-light);
}

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

.coverage-card {
  padding: 24px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: var(--surface-strong);
  box-shadow: var(--shadow-light);
}

.coverage-card p {
  margin-bottom: 16px;
  color: var(--muted-dark);
  font-size: 16px;
}

.coverage-card p:last-child {
  margin-bottom: 0;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid var(--line-light);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink-dark);
  font-size: 13px;
  font-weight: 750;
}

.feature-index,
.workflow-number {
  margin-bottom: 14px;
  color: var(--accent-strong);
  font-size: 13px;
  font-weight: 800;
}

.feature-tile p:last-child,
.workflow-step p:last-child,
.proof-points p:last-child {
  margin-bottom: 0;
  color: var(--muted-dark);
  font-size: 16px;
}

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

.media-block,
.detail-block,
.demo-frame {
  margin: 0;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
}

.section-light .detail-block,
.section-neutral .detail-block {
  border-color: var(--line-light);
  background: var(--surface-strong);
  box-shadow: var(--shadow-light);
}

.media-tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin: 16px 0 0 16px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(236, 244, 255, 0.92);
  font-size: 13px;
  font-weight: 750;
}

.media-tag-accent {
  border-color: rgba(23, 144, 255, 0.44);
  background: rgba(23, 144, 255, 0.16);
}

.media-block img,
.detail-block img,
.demo-frame video {
  width: 100%;
  height: auto;
  object-fit: contain;
  background: #0a1320;
}

.media-block figcaption,
.detail-block figcaption,
.demo-frame figcaption {
  padding: 14px 16px 18px;
  color: var(--muted);
  font-size: 14px;
  border-top: 1px solid var(--line-dark);
}

.proof-points {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 22px;
}

.proof-points article {
  padding: 22px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.proof-points h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

.workflow-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.workflow-step {
  padding: 22px 22px 24px;
  border-top: 3px solid var(--accent);
  background: var(--surface-strong);
  box-shadow: var(--shadow-light);
}

.workflow-step h3 {
  font-size: 22px;
}

.detail-block {
  display: grid;
  grid-template-rows: auto auto;
}

.detail-copy {
  padding: 24px 24px 10px;
}

.detail-copy p:last-child {
  margin-bottom: 0;
  color: var(--muted-dark);
  font-size: 17px;
}

.detail-block img {
  background: #edf2f8;
}

.demo-frame {
  border-color: var(--line-dark);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow-dark);
}

.video-page-cta {
  margin-top: 18px;
}

.demo-frame video {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.notice {
  padding: 30px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: var(--surface-strong);
  box-shadow: var(--shadow-light);
}

.notice h2 {
  margin-bottom: 14px;
}

.notice p {
  max-width: 800px;
  margin-bottom: 22px;
  color: var(--muted-dark);
  font-size: 18px;
}

.page-title {
  width: min(900px, calc(100% - 40px));
  margin: 0 auto;
  padding: 88px 0 34px;
}

.page-title h1 {
  margin-bottom: 12px;
  color: var(--ink-dark);
  font-size: 56px;
  line-height: 1.02;
}

.page-title p {
  max-width: 760px;
  margin: 0;
  color: var(--muted-dark);
}

.content {
  width: min(960px, calc(100% - 40px));
  margin: 0 auto;
  padding: 0 0 84px;
}

.content section {
  margin-top: 18px;
  padding: 26px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: var(--surface-strong);
  box-shadow: var(--shadow-light);
}

.video-page {
  background: var(--surface);
}

.video-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(23, 144, 255, 0.18), transparent 28%),
    linear-gradient(180deg, #091321 0%, #07111c 100%);
  color: var(--ink);
}

.video-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.45;
  pointer-events: none;
}

.video-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 22px;
  padding: 88px 0 72px;
  align-items: start;
}

.video-copy {
  min-width: 0;
}

.video-lead {
  color: rgba(236, 244, 255, 0.82);
}

.video-points {
  display: grid;
  gap: 16px;
}

.video-point,
.video-detail-card {
  padding: 24px;
  border-radius: var(--radius);
}

.video-point {
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow-dark);
}

.video-point p:last-child,
.video-detail-card p:last-child {
  margin-bottom: 0;
}

.promo-video-frame {
  margin: 0;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface-strong);
  box-shadow: var(--shadow-light);
}

.promo-video-frame video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #0a1320;
}

.promo-video-frame figcaption {
  padding: 14px 16px 18px;
  color: var(--muted-dark);
  font-size: 14px;
  border-top: 1px solid var(--line-light);
}

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

.video-detail-card {
  border: 1px solid var(--line-light);
  background: var(--surface-strong);
  box-shadow: var(--shadow-light);
}

.video-detail-card p {
  color: var(--muted-dark);
  font-size: 16px;
}

.content h2 {
  margin-bottom: 12px;
  font-size: 30px;
}

.content ul {
  padding-left: 22px;
}

.content li + li {
  margin-top: 8px;
}

.meta-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: var(--surface-strong);
}

.meta-table th,
.meta-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line-light);
  text-align: left;
  vertical-align: top;
}

.meta-table th {
  width: 32%;
  color: var(--muted-dark);
  font-size: 15px;
  font-weight: 750;
}

.site-footer {
  border-top: 1px solid var(--line-dark);
  background: var(--bg);
  color: rgba(236, 244, 255, 0.76);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 96px;
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links a {
  color: rgba(236, 244, 255, 0.76);
  text-decoration: none;
  font-weight: 650;
}

.footer-links a:hover {
  color: var(--ink);
}

@media (max-width: 1080px) {
  h1 {
    font-size: 58px;
  }

  h2 {
    font-size: 38px;
  }

  .hero-head,
  .hero-scene,
  .video-shell {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .coverage-grid,
  .comparison-grid,
  .detail-grid,
  .proof-points,
  .workflow-grid,
  .video-detail-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 0;
    gap: 12px;
  }

  .nav-links {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero-shell,
  .section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  h1 {
    font-size: 46px;
  }

  h2 {
    font-size: 34px;
  }

  h3 {
    font-size: 22px;
  }

  .hero-copy,
  .lead,
  .content p,
  .content li,
  .meta-table td,
  .notice p {
    font-size: 17px;
  }

  .scene-core h2 {
    font-size: 30px;
  }

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

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 0;
  }
}

@media (max-width: 520px) {
  .shell,
  .page-title,
  .content {
    width: min(calc(100% - 24px), 1180px);
  }

  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 30px;
  }

  .button {
    width: 100%;
  }

  .hero-actions,
  .closing-actions {
    align-items: stretch;
  }

  .hero-scene,
  .scene-panel,
  .scene-core,
  .feature-tile,
  .workflow-step,
  .notice,
  .content section,
  .platform-rail {
    padding-left: 18px;
    padding-right: 18px;
  }

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

/* ────── Language switcher ────── */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0;
  margin-left: 4px;
  padding: 2px;
  border-radius: 999px;
  border: 1px solid rgba(89, 200, 255, 0.30);
  background: rgba(89, 200, 255, 0.06);
}

.lang-btn {
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: 0;
  color: rgba(236, 244, 255, 0.70);
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 999px;
  cursor: pointer;
  transition: background .15s, color .15s;
}

.lang-btn:hover {
  color: #ecf4ff;
}

.lang-btn.lang-btn-active {
  background: rgba(89, 200, 255, 0.22);
  color: #59c8ff;
}

.lang-btn:focus-visible {
  outline: 2px solid #59c8ff;
  outline-offset: 2px;
}

@media (max-width: 860px) {
  .lang-switch {
    margin-left: 0;
    align-self: flex-start;
  }
}

/* ═══════════════ Hero video (new) ═══════════════ */
.hero-video {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hero-video-frame {
  position: relative;
  border: 1px solid rgba(89, 200, 255, 0.35);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(7, 17, 28, 0.66);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
  aspect-ratio: 16 / 10;
}
.hero-video-frame video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
}
.hero-video-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(255, 64, 64, 0.92);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 6px 16px rgba(255, 64, 64, 0.45);
}
.hero-video-tag::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  animation: hero-pulse 1.6s ease-out infinite;
}
@keyframes hero-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7); }
  70%  { box-shadow: 0 0 0 10px rgba(255, 255, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}
.hero-video-cap {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(236, 244, 255, 0.7);
}

/* ═══════════════ Branchen / Industry section ═══════════════ */
.industry-video {
  margin: 28px auto 28px;
  max-width: 920px;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(89, 200, 255, 0.25);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}
.industry-video video {
  display: block;
  width: 100%;
  height: auto;
  background: #000;
}
.industry-video figcaption {
  margin: 0;
  padding: 12px 18px;
  font-size: 13.5px;
  color: rgba(236, 244, 255, 0.7);
  background: rgba(7, 17, 28, 0.6);
  text-align: center;
}
.industry-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 14px;
}
@media (max-width: 880px) { .industry-grid { grid-template-columns: 1fr; } }
.industry-card {
  padding: 26px 24px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(89, 200, 255, 0.22);
  transition: transform .18s, border-color .18s, box-shadow .18s;
}
.industry-card:hover {
  transform: translateY(-2px);
  border-color: rgba(89, 200, 255, 0.5);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.35);
}
.industry-card-kanzlei { background: linear-gradient(160deg, rgba(89, 200, 255, 0.10), rgba(7, 17, 28, 0.5)); }
.industry-card-versicherung { background: linear-gradient(160deg, rgba(180, 130, 255, 0.12), rgba(7, 17, 28, 0.5)); border-color: rgba(180, 130, 255, 0.28); }
.industry-card-versicherung:hover { border-color: rgba(180, 130, 255, 0.55); }
.industry-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(89, 200, 255, 0.18);
  color: #cfeaff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}
.industry-card-versicherung .industry-tag { background: rgba(180, 130, 255, 0.22); color: #e8dcff; }
.industry-card h3 { margin: 0 0 10px; font-size: 20px; line-height: 1.18; color: #ecf4ff; }
.industry-card > p { margin: 0 0 16px; color: rgba(236, 244, 255, 0.78); font-size: 15px; line-height: 1.6; }
.industry-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.industry-list li {
  position: relative;
  padding-left: 22px;
  color: rgba(236, 244, 255, 0.92);
  font-size: 14.5px;
  line-height: 1.5;
}
.industry-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: #59c8ff;
}
.industry-card-versicherung .industry-list li::before { background: #b482ff; }

/* ═══════════════ Workflow with screenshots ═══════════════ */
.workflow-visual-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 32px;
}
@media (max-width: 980px) { .workflow-visual-grid { grid-template-columns: 1fr; } }
.workflow-visual-step {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(7, 17, 28, 0.05);
  overflow: hidden;
  transition: transform .18s, box-shadow .18s;
}
.workflow-visual-step:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(7, 17, 28, 0.12);
}
.workflow-visual-step .workflow-number {
  margin: 18px 22px 0;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #2c7be5;
}
.workflow-visual-step figure {
  margin: 12px 0 0;
  background: #f4f7fb;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 14px;
}
.workflow-visual-step figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(7, 17, 28, 0.12);
}
.workflow-visual-step h3 {
  margin: 18px 22px 6px;
  font-size: 18px;
  color: #0a1a2d;
}
.workflow-visual-step > p {
  margin: 0 22px 20px;
  color: #495a72;
  font-size: 14.5px;
  line-height: 1.6;
}

/* ═══════════════ Product visual ═══════════════ */
.product-visual {
  margin: -32px -28px 20px;
  background: #000;
  border-radius: 14px 14px 0 0;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}
.product-visual video,
.product-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-visual-image {
  background: linear-gradient(135deg, #0a1a2d, #163558);
}
.product-visual-image img {
  object-fit: contain;
  padding: 18px;
}

/* ═══════════════ Founder card ═══════════════ */
.founder-card {
  margin: 36px auto 0;
  max-width: 760px;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  padding: 20px 22px;
  background: #ffffff;
  border: 1px solid rgba(44, 123, 229, 0.18);
  border-left: 4px solid #2c7be5;
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(7, 17, 28, 0.06);
}
.founder-mark {
  font-size: 40px;
  line-height: 1;
  align-self: center;
  text-align: center;
}
.founder-kicker {
  margin: 0 0 6px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #2c7be5;
}
.founder-line { margin: 0 0 8px; color: #0a1a2d; font-size: 15px; line-height: 1.6; }
.founder-meta { margin: 0; font-size: 13.5px; color: #495a72; }
.founder-meta a { color: #2c7be5; text-decoration: underline; font-weight: 700; }
@media (max-width: 540px) {
  .founder-card { grid-template-columns: 1fr; text-align: left; }
  .founder-mark { text-align: left; }
}

/* ═══════════════ Closing CTA focused ═══════════════ */
.closing-actions-focused {
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.button-lg {
  min-height: 56px;
  padding: 0 28px;
  font-size: 17px;
}
.closing-actions-focused .text-link {
  color: #2c7be5;
  font-size: 14.5px;
  font-weight: 700;
}
.closing-actions-focused .text-link:hover { color: #1a5cb8; }

/* ═══════════════ IMAGE MASKING (v1.8) ═══════════════ */
.image-masking-section .section-kicker {
  display: inline-block;
  padding: 4px 12px;
  border: 1px solid rgba(44, 123, 229, 0.55);
  border-radius: 999px;
  background: rgba(44, 123, 229, 0.12);
  color: #6ea8ff;
}
.image-masking-figure {
  margin: 36px auto 28px;
  max-width: 1100px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.image-masking-figure img,
.image-masking-figure video {
  width: 100%;
  height: auto;
  display: block;
}
.image-masking-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}
@media (max-width: 980px) {
  .image-masking-grid { grid-template-columns: 1fr; }
}
.image-masking-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 22px 20px;
}
.image-masking-card h3 {
  font-size: 17px;
  margin: 0 0 8px;
  color: #ffffff;
}
.image-masking-card p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
}

