/* =========================================================
  /* Sections immer 100% Breite */
  .section, .abc-section {
    width: 100%;
    min-width: 320px;
    box-sizing: border-box;
  }
  /* Immer volle Breite für Header und Section */
   CORE LAYOUT & DESIGN TOKENS
========================================================= */

:root {
  --bg-main: #020617;
  --bg-soft: #0f172a;
  --border-color: #1e293b;
  --text-main: #e5e7eb;
  --brand-primary: #2563eb;
  --brand-secondary: #7c3aed;
  --brand-accent: #a855f7;
  --logo-stop-1: #2563eb;
  --logo-stop-2: #5b21b6;
  --logo-stop-3: #7c3aed;
  --accent-a: var(--brand-primary);
  --accent-b: var(--brand-secondary);
  --abc-header-height: 80px;
  --blueprint-texture: url('../images/blueprint-grid.svg');

  --header-bg: rgba(2,6,23,.92);
  --header-border: rgba(15,23,42,.9);
  --header-shadow: 0 0 0 rgba(0,0,0,0);
}

body[data-theme="light"],
html[data-theme="light"] body {
  --bg-main: #f8fafc;
  --bg-soft: #ffffff;
  --border-color: #e5e7eb;
  --text-main: #020617;
  --blueprint-texture: url('../images/blueprint-grid.svg');

  --header-bg: rgba(255,255,255,.86);
  --header-border: rgba(15,23,42,.08);
  --header-shadow: 0 0 0 rgba(0,0,0,0);
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, sans-serif;
  background: var(--bg-main);
  color: var(--text-main);
  transition: background 0.3s ease, color 0.3s ease;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--text-main);
  font-weight: 800;
  letter-spacing: -0.01em;
  transition: color 0.3s;
}

body[data-theme="dark"] h1,
body[data-theme="dark"] h2,
body[data-theme="dark"] h3,
body[data-theme="dark"] h4,
body[data-theme="dark"] h5,
body[data-theme="dark"] h6,
html[data-theme="dark"] body h1,
html[data-theme="dark"] body h2,
html[data-theme="dark"] body h3,
html[data-theme="dark"] body h4,
html[data-theme="dark"] body h5,
html[data-theme="dark"] body h6 {
  color: #e5e7eb !important;
}

body[data-theme="light"] h1,
body[data-theme="light"] h2,
body[data-theme="light"] h3,
body[data-theme="light"] h4,
body[data-theme="light"] h5,
body[data-theme="light"] h6,
html[data-theme="light"] body h1,
html[data-theme="light"] body h2,
html[data-theme="light"] body h3,
html[data-theme="light"] body h4,
html[data-theme="light"] body h5,
html[data-theme="light"] body h6 {
  color: #020617 !important;
}

p, li, span, div, label, input, textarea {
  color: var(--text-main);
  transition: color 0.3s;
}

body[data-theme="dark"] p,
body[data-theme="dark"] li,
body[data-theme="dark"] span,
body[data-theme="dark"] div,
body[data-theme="dark"] label,
body[data-theme="dark"] input,
body[data-theme="dark"] textarea,
html[data-theme="dark"] body p,
html[data-theme="dark"] body li,
html[data-theme="dark"] body span,
html[data-theme="dark"] body div,
html[data-theme="dark"] body label,
html[data-theme="dark"] body input,
html[data-theme="dark"] body textarea {
  color: #e5e7eb !important;
}

}

a:not(.abc-cta):hover,
a:not(.abc-cta):focus,
a:not(.abc-cta):focus-visible {
  color: inherit !important;
  outline: none !important;
}

.abc-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

body {
  background: var(--bg-main);
  min-width: 320px;
}

body.nav-open {
  overflow: hidden;
}

main#main-content {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
}

.abc-section,
.section {
  box-sizing: border-box;
  width: 100%;
  min-width: 320px;
  transition: opacity 0.4s ease, transform 0.5s ease;
}

.section[data-section-ready="false"] {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  pointer-events: none;
}

.section[data-section-ready="true"] {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.abc-container {
  box-sizing: border-box;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 24px;
}
}

/* =========================================================
   HEADER
========================================================= */

.abc-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1100;
  background: var(--header-bg);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--header-border);
  box-shadow: var(--header-shadow);
  transition: all 0.25s ease;
}

body[data-theme="dark"] .abc-header {
  background: linear-gradient(120deg, rgba(15, 23, 42, 0.96), rgba(30, 41, 59, 0.88)) !important;
  border-bottom: 1px solid rgba(148, 163, 184, 0.35) !important;
  box-shadow: 0 12px 32px rgba(2, 6, 23, 0.55) !important;
}

body[data-theme="light"] .abc-header {
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.08);
}

.abc-header--scrolled {
  --header-bg: rgba(15,23,42,.96);
  --header-border: rgba(15,23,42,.9);
  --header-shadow: 0 10px 30px rgba(0,0,0,.45);
}

body[data-theme="light"] .abc-header--scrolled {
  --header-bg: rgba(255,255,255,.96);
  --header-border: rgba(15,23,42,.12);
  --header-shadow: 0 8px 26px rgba(15,23,42,.16);
}

body[data-theme="dark"] .abc-header--scrolled {
  --header-bg: rgba(15,23,42,.92);
  --header-border: rgba(148,163,184,.35);
  --header-shadow: 0 16px 42px rgba(2,6,23,.65);
}

.abc-header--scrolled {
  background: var(--header-bg);
  border-bottom: 1px solid var(--header-border);
  box-shadow: var(--header-shadow);
}

body.has-fixed-header main#main-content,
body.has-fixed-header main.abc-page,
body.has-fixed-header main.abc-index {
  padding-top: var(--abc-header-height, 80px);
}

@media (min-width: 768px) {
  body.has-fixed-header main#main-content,
  body.has-fixed-header main.abc-page,
  body.has-fixed-header main.abc-index {
    padding-top: calc(var(--abc-header-height, 80px) + 24px);
  }
}

body.home.has-fixed-header main#main-content {
  padding-top: var(--abc-header-height, 80px);
}

body.has-fixed-header .abc-header + :not(main) {
  margin-top: var(--abc-header-height, 80px);
}

body.admin-bar.has-fixed-header .abc-header {
  top: 32px;
}

@media (max-width: 782px) {
  body.admin-bar.has-fixed-header .abc-header {
    top: 46px;
  }
}

.abc-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  height: 80px;
}

.abc-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.abc-nav-app {
  width: 100%;
}

.abc-nav-list {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.abc-nav-list a {
  text-decoration: none;
  font-weight: 600;
  color: var(--text-main);
}

.js.nav-booting #abc-nav-app {
  min-height: 56px;
}

.js.nav-booting #abc-nav-app > ul,
.js .abc-nav-app[data-nav-state="fallback"] > ul,
.js.nav-ready #abc-nav-app > ul {
  display: none !important;
}

.vue-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.nav-ready .vue-nav {
  opacity: 1;
  transform: translateY(0);
}

.nav-skeleton {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-left: 24px;
}

.nav-skeleton__pill {
  height: 14px;
  width: 72px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.35);
  display: inline-block;
}

.nav-skeleton__pill--cta {
  width: 120px;
  height: 36px;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--brand-primary), var(--brand-secondary));
  opacity: 0.6;
}

[data-theme="light"] .nav-skeleton__pill {
  background: rgba(37, 99, 235, 0.15);
}

[data-theme="light"] .nav-skeleton__pill--cta {
  opacity: 0.75;
}

.nav-ready .nav-skeleton,
.no-js .nav-skeleton {
  display: none;
}

.vue-nav__track {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  flex: 1;
  z-index: 0;
}

.vue-nav__links {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  flex: 1;
  position: relative;
  z-index: 1;
}

.vue-nav__indicator {
  position: absolute;
  bottom: -6px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--accent-a), var(--accent-b));
  opacity: 0;
  transform: translateX(0);
  transition: width 0.35s cubic-bezier(.4,0,.2,1), transform 0.35s cubic-bezier(.4,0,.2,1), opacity 0.25s ease;
  pointer-events: none;
  z-index: 0;
}

.nav-cta-enter-active,
.nav-cta-leave-active {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.nav-cta-enter-from,
.nav-cta-leave-to {
  opacity: 0;
  transform: translateY(6px);
}

.nav-link {
  color: var(--text-main);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 12px 0;
  opacity: 0.75;
  transition: color 0.25s ease, opacity 0.25s ease;
  outline: none;
  position: relative;
}

.nav-link.is-active,
.nav-link:hover,
.nav-link:focus-visible {
  opacity: 1;
  color: var(--text-main);
  outline: none;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--underline-start, var(--accent-a)), var(--underline-end, var(--accent-b)));
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 0.35s cubic-bezier(.4,0,.2,1), opacity 0.35s ease;
  opacity: 0;
}

.nav-link.is-active::after,
.nav-link:hover::after,
.nav-link:focus-visible::after {
  transform: scaleX(1);
  opacity: 1;
}

.vue-nav__cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.vue-nav__cta .abc-cta {
  padding: 10px 22px;
  font-size: 0.95rem;
  line-height: 1.2;
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.25);
}

.vue-nav__cta .abc-cta::after {
  inset: -12px;
  opacity: 0.2;
}

.vue-nav__cta .abc-cta .abc-cta__icon,
.vue-nav__cta .abc-cta svg {
  width: 18px;
  height: 18px;
}

.vue-nav--condensed .nav-link {
  opacity: 0.65;
}

.vue-nav--condensed .nav-link.is-active {
  opacity: 1;
}

.nav-fade-enter-active,
.nav-fade-leave-active,
.nav-fade-appear-active {
  transition: all 0.35s cubic-bezier(.4,0,.2,1);
}

.nav-fade-enter-from,
.nav-fade-leave-to,
.nav-fade-appear-from {
  opacity: 0;
  transform: translateY(6px);
}

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

.abc-burger-slot {
  display: flex;
  align-items: center;
}
/* =========================================================
   LOGO
========================================================= */

.abc-logo {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  text-decoration: none !important;
  font-weight: 700 !important;
  font-size: 1.25rem !important;
  color: #020617 !important;
  min-width: 200px;
  white-space: nowrap;
  flex-shrink: 0;
  padding-right: 24px;
}

body[data-theme="dark"] .abc-logo {
  color: #e5e7eb !important;
}

.abc-logo:focus,
.abc-logo:focus-visible {
  outline: none;
  box-shadow: none;
}

.abc-logo svg {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .abc-logo {
    min-width: 160px;
  }
  .abc-logo svg {
    width: 48px;
    height: 48px;
  }
}

.abc-logo span {
  display: inline-block;
  font-weight: 700;
  color: var(--text-main);
}

.abc-logo svg .abc-icon-ai {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.abc-logo svg .abc-icon-check,
.abc-logo svg .abc-hex,
.abc-logo svg .abc-hex-inner {
  transition: opacity 0.3s ease;
}

.abc-logo:hover svg .abc-icon-ai,
.abc-logo:focus-visible svg .abc-icon-ai {
  opacity: 1;
}

.abc-logo:hover svg .abc-icon-check,
.abc-logo:focus-visible svg .abc-icon-check,
.abc-logo:hover svg .abc-hex,
.abc-logo:focus-visible svg .abc-hex,
.abc-logo:hover svg .abc-hex-inner,
.abc-logo:focus-visible svg .abc-hex-inner {
  opacity: 0.25;
}

.abc-logo--footer {
  padding-right: 0;
  gap: 16px !important;
}

.abc-logo--footer svg {
  width: 48px;
  height: 48px;
}

/* =========================================================
   CTA BUTTONS
========================================================= */

.abc-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  background: linear-gradient(120deg, var(--brand-primary), var(--brand-secondary));
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 18px 36px rgba(37, 99, 235, 0.38);
  transition: transform 0.2s ease, box-shadow 0.3s ease, color 0.2s ease;
  overflow: visible;
  isolation: isolate;
}

.abc-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, var(--brand-secondary), var(--brand-primary));
  opacity: 0;
  transform: scaleX(0.6);
  transform-origin: left center;
  transition: transform 0.35s cubic-bezier(.4,0,.2,1), opacity 0.35s ease;
  z-index: 0;
  border-radius: inherit;
}

.abc-cta::after {
  content: '';
  position: absolute;
  inset: -18px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.45), transparent 70%);
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
  z-index: -1;
  filter: blur(8px);
}

.abc-cta span,
.abc-cta i,
.abc-cta svg {
  position: relative;
  z-index: 1;
  color: inherit !important;
}

.abc-cta i,
.abc-theme-toggle i {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.abc-cta svg,
.abc-theme-toggle svg {
  width: 20px;
  height: 20px;
  display: block;
  stroke: currentColor;
  flex-shrink: 0;
}

.abc-cta:hover,
.abc-cta:focus,
.abc-cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(37,99,235,0.32);
  color: #fff;
  outline: 2px solid var(--brand-primary);
  outline-offset: 2px;
}

.abc-cta:hover::before,
.abc-cta:focus-visible::before {
  opacity: 1;
  transform: scaleX(1);
}

.abc-cta:hover::after,
.abc-cta:focus-visible::after {
  opacity: 0.85;
  transform: scale(1.05);
}

.abc-cta--secondary {
  border: 1px solid rgba(148, 163, 184, 0.55);
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.75), rgba(46, 56, 110, 0.9));
  color: #f8fafc;
  box-shadow: 0 14px 30px rgba(2, 6, 23, 0.45);
}

.abc-cta--ghost {
  border: 1px solid rgba(56, 189, 248, 0.5);
  color: #c7d2fe;
  background-color: rgba(14, 116, 144, 0.28);
}

.abc-cta--secondary::before {
  background: rgba(148, 163, 184, 0.2);
}

.abc-cta--ghost::before {
  background: linear-gradient(120deg, rgba(56,189,248,0.4), rgba(99,102,241,0.4));
}

.abc-cta--ghost:hover,
.abc-cta--ghost:focus-visible,
.abc-cta--secondary:hover,
.abc-cta--secondary:focus-visible {
  color: inherit;
  box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.45);
}

body[data-theme="light"] .abc-cta {
  color: #fff !important;
  border-color: rgba(37, 99, 235, 0.35);
  box-shadow: 0 20px 32px rgba(37, 99, 235, 0.25);
}

body[data-theme="light"] .abc-cta::after {
  background: radial-gradient(circle, rgba(147, 197, 253, 0.55), transparent 70%);
}

body[data-theme="light"] .abc-cta--secondary {
  background: linear-gradient(135deg, rgba(248, 250, 252, 0.98), rgba(224, 231, 255, 0.92));
  border-color: rgba(99, 102, 241, 0.35);
  color: #0f172a !important;
  box-shadow: 0 18px 32px rgba(15, 23, 42, 0.12);
}

body[data-theme="light"] .abc-cta--ghost {
  background: rgba(219, 234, 254, 0.85);
  border-color: rgba(59, 130, 246, 0.35);
  color: #1d4ed8 !important;
}

body[data-theme="light"] .abc-cta--secondary:hover,
body[data-theme="light"] .abc-cta--secondary:focus-visible,
body[data-theme="light"] .abc-cta--ghost:hover,
body[data-theme="light"] .abc-cta--ghost:focus-visible {
  color: inherit;
  border-color: rgba(37, 99, 235, 0.45);
}

.abc-cta__icon {
  width: 18px;
  height: 18px;
  display: inline-block;
}

/* =========================================================
   FOOTER
========================================================= */

.abc-footer {
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.9), rgba(2, 6, 23, 1));
  color: var(--text-main);
}

.abc-footer__top {
  padding: 80px 0 60px;
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.abc-footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 48px;
}

.abc-footer__brand p {
  max-width: 360px;
  opacity: 0.75;
  margin-top: 12px;
}

.abc-footer__cta {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.abc-footer__cta .abc-cta,
.abc-footer__cta .abc-cta--secondary,
.abc-footer__cta .abc-cta--ghost {
  color: #fff;
}

body[data-theme="light"] .abc-footer__cta .abc-cta,
body[data-theme="light"] .abc-footer__cta .abc-cta--secondary,
body[data-theme="light"] .abc-footer__cta .abc-cta--ghost {
  color: #fff;
}

.abc-footer__cta .abc-cta--secondary {
  background: rgba(148, 163, 184, 0.18);
  border-color: rgba(148, 163, 184, 0.35);
  color: #f8fafc;
}

body[data-theme="light"] .abc-footer__cta .abc-cta--secondary {
  background: rgba(248, 250, 252, 0.9);
  border-color: rgba(148, 163, 184, 0.4);
  color: #0f172a;
}

.abc-footer__column h4 {
  margin-bottom: 16px;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(226, 232, 240, 0.85);
}

.abc-footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.abc-footer__list a {
  color: var(--text-main);
  text-decoration: none;
  opacity: 0.75;
  transition: opacity 0.3s ease;
}

.abc-footer__list a:hover,
.abc-footer__list a:focus-visible {
  opacity: 1;
}

.abc-footer__contact li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.abc-footer__contact i {
  width: 18px;
  height: 18px;
  color: var(--accent-b);
}

.abc-footer__links {
  display: flex;
  gap: 16px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.abc-footer__links a {
  font-size: 0.95rem;
  color: rgba(226, 232, 240, 0.9);
}

.abc-footer__bottom {
  padding: 24px 0;
}

.abc-footer__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
  opacity: 0.75;
}

.abc-footer__social {
  display: flex;
  gap: 10px;
}

.abc-footer__social a {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  display: grid;
  place-items: center;
  color: var(--text-main);
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.abc-footer__social a:hover,
.abc-footer__social a:focus-visible {
  border-color: var(--accent-b);
  transform: translateY(-3px);
}

body[data-theme="light"] .abc-footer {
  background: linear-gradient(180deg, #f8fafc 0%, #e2e8f0 60%, #cbd5f5 100%);
  color: #0f172a;
}

body[data-theme="light"] .abc-footer__top {
  border-color: rgba(15, 23, 42, 0.08);
}

body[data-theme="light"] .abc-footer__list a,
body[data-theme="light"] .abc-footer__links a {
  color: #0f172a;
}

body[data-theme="light"] .abc-footer__links a {
  opacity: 0.8;
}

body[data-theme="light"] .abc-footer__links a:hover,
body[data-theme="light"] .abc-footer__links a:focus-visible {
  opacity: 1;
}

body[data-theme="light"] .abc-footer__social a {
  border-color: rgba(15, 23, 42, 0.2);
}

/* =========================================================
   HERO
========================================================= */

.frontpage-app {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hero {
  position: relative;
  padding: 140px 0 160px;
  background: linear-gradient(135deg, rgba(2, 6, 23, 0.96), rgba(15, 23, 42, 0.9));
  text-align: center;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  mix-blend-mode: screen;
}

.hero::before {
  opacity: 0.65;
  background-image:
    radial-gradient(circle at 18% 30%, rgba(56, 189, 248, 0.35), transparent 60%),
    radial-gradient(circle at 72% 18%, rgba(129, 140, 248, 0.28), transparent 55%),
    radial-gradient(circle at 58% 78%, rgba(248, 250, 252, 0.12), transparent 60%);
  filter: blur(26px);
  animation: auroraShift 26s ease-in-out infinite alternate;
}

.hero::after {
  opacity: 0.55;
  background-image: radial-gradient(circle at 82% 12%, rgba(14, 165, 233, 0.45), transparent 58%);
  filter: blur(38px);
  animation: auroraDrift 34s linear infinite;
}

body[data-theme="light"] .hero {
  background: linear-gradient(135deg, rgba(226, 232, 255, 0.95), rgba(219, 234, 254, 0.8));
}

body[data-theme="light"] .hero::after {
  background-image: radial-gradient(circle at 80% 15%, rgba(37, 99, 235, 0.18), transparent 60%);
  opacity: 0.4;
}

body[data-theme="light"] .hero::before {
  opacity: 0.55;
  background-image:
    radial-gradient(circle at 20% 35%, rgba(37, 99, 235, 0.25), transparent 60%),
    radial-gradient(circle at 70% 18%, rgba(191, 219, 254, 0.35), transparent 55%),
    radial-gradient(circle at 58% 80%, rgba(255, 255, 255, 0.4), transparent 60%);
}

.hero--split {
  text-align: left;
}

@media (max-width: 900px) {
  .hero {
    padding: 110px 0 130px;
  }

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

  .hero__panel {
    margin-top: 40px;
  }

  .hero__metrics--inline li {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 20px 22px;
  }
}

@media (max-width: 600px) {
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }
}

@keyframes auroraShift {
  0% {
    transform: translate3d(-5%, -5%, 0) scale(1);
  }
  100% {
    transform: translate3d(4%, 6%, 0) scale(1.1);
  }
}

@keyframes auroraDrift {
  0% {
    transform: translate3d(2%, -4%, 0) scale(0.95);
  }
  100% {
    transform: translate3d(-3%, 5%, 0) scale(1.05);
  }
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 56px;
  align-items: stretch;
  position: relative;
  z-index: 1;
}

.hero__content {
  max-width: 620px;
}

.hero--split .hero__content {
  text-align: left;
}

.hero__eyebrow,
.eyebrow {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-b);
  margin-bottom: 12px;
}

.hero__eyebrow--icon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-b);
}

.hero__eyebrow--icon i {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: inherit;
}

.hero h1 {
  font-size: clamp(42px, 4.6vw, 64px);
  line-height: 1.08;
  margin: 0 0 20px;
  letter-spacing: -0.04em;
  max-width: min(100%, 720px);
}

.hero__subtitle {
  font-size: 1.25rem;
  max-width: 640px;
  opacity: 0.85;
  margin: 0 0 32px;
}

.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.hero-chip {
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.18);
  border: 1px solid rgba(56, 189, 248, 0.35);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-b);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

body[data-theme="light"] .hero-chip {
  background: rgba(37, 99, 235, 0.08);
  border-color: rgba(37, 99, 235, 0.25);
  color: #1e3a8a;
}

.hero__chips.is-ready .hero-chip {
  opacity: 1;
  transform: translateY(0);
}

.hero__chips.is-ready .hero-chip:nth-child(2) {
  transition-delay: 60ms;
}

.hero__chips.is-ready .hero-chip:nth-child(3) {
  transition-delay: 120ms;
}

.hero__chips.is-ready .hero-chip:nth-child(4) {
  transition-delay: 180ms;
}

.hero__actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.hero-link-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--accent-b);
  text-decoration: none;
  padding: 10px 0;
  transition: color 0.2s ease;
}

.hero-link-cta i {
  width: 18px;
  height: 18px;
}

.hero-link-cta:hover,
.hero-link-cta:focus-visible {
  color: #fff;
}

body[data-theme="light"] .hero-link-cta {
  color: #1d4ed8;
}

body[data-theme="light"] .hero-link-cta:hover,
body[data-theme="light"] .hero-link-cta:focus-visible {
  color: #0f172a;
}

body[data-theme="dark"] .hero-link-cta {
  color: #bfdbfe;
}

body[data-theme="dark"] .hero-link-cta:hover,
body[data-theme="dark"] .hero-link-cta:focus-visible {
  color: #fff;
}

.hero--split .hero__actions {
  justify-content: flex-start;
}

.hero__signals {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.hero-signal {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(148, 163, 184, 0.35);
}

.hero-signal i {
  color: var(--accent-b);
}

.hero-signal__title {
  margin: 0;
  font-weight: 600;
}

.hero-signal__desc {
  display: block;
  margin-top: 4px;
  opacity: 0.8;
  font-size: 0.95rem;
}

body[data-theme="dark"] .hero-signal__desc {
  color: rgba(226, 232, 240, 0.85);
}

body[data-theme="light"] .hero__panel,
body[data-theme="light"] .hero-signal,
body[data-theme="light"] .hero-mockup,
body[data-theme="light"] .motion-card,
body[data-theme="light"] .card,
body[data-theme="light"] .highlight-box,
body[data-theme="light"] .process-step,
body[data-theme="light"] .kpi-box {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.08);
  color: #0f172a;
}

body[data-theme="light"] .hero__panel::after {
  background: radial-gradient(circle, rgba(56, 189, 248, 0.15), transparent);
}

body[data-theme="light"] .hero__panel {
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(148, 163, 184, 0.35);
  box-shadow: 0 35px 60px rgba(15, 23, 42, 0.12);
  backdrop-filter: blur(24px) saturate(1.15);
  -webkit-backdrop-filter: blur(24px) saturate(1.15);
  color: #0f172a;
}

body[data-theme="light"] .hero__panel::before {
  background-image:
    linear-gradient(90deg, rgba(99, 102, 241, 0.12) 1px, transparent 1px),
    linear-gradient(0deg, rgba(99, 102, 241, 0.12) 1px, transparent 1px);
  opacity: 0.25;
}

body[data-theme="light"] .hero-signal__desc {
  color: rgba(15, 23, 42, 0.75);
}

body[data-theme="light"] .hero-mockup__tag {
  color: rgba(71, 85, 105, 0.8);
}

body[data-theme="light"] .hero-mockup__bars span {
  background: linear-gradient(120deg, rgba(37,99,235,0.25), rgba(99,102,241,0.25));
}

body[data-theme="light"] .hero__metrics li {
  background: linear-gradient(135deg, rgba(255,255,255,0.98), rgba(236,243,255,0.94));
  border-color: rgba(148, 163, 184, 0.3);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

body[data-theme="light"] .hero__metrics .metric-label {
  color: rgba(15, 23, 42, 0.65);
}

body[data-theme="light"] .hero__metrics .metric-desc {
  color: rgba(15, 23, 42, 0.7);
}

body[data-theme="light"] .metric-value {
  color: #0f172a;
}

body[data-theme="light"] .metric-desc {
  color: rgba(15, 23, 42, 0.7);
}

.hero__metrics strong {
  font-size: 2rem;
  display: block;
  margin-bottom: 6px;
  color: var(--text-main);
}

.metric-label {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: rgba(226, 232, 240, 0.8);
}

.hero__metrics li p {
  margin: 0;
  opacity: 0.85;
  color: rgba(226, 232, 240, 0.85);
}

.metric-desc {
  margin: 0;
  opacity: 0.85;
  color: rgba(226, 232, 240, 0.85);
  font-size: 0.95rem;
}

body[data-theme="light"] .hero__panel-foot {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(148, 163, 184, 0.25);
  color: #0f172a;
}

.hero__panel {
  border-radius: 32px;
  padding: 40px;
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(148, 163, 184, 0.35);
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
  box-shadow: 0 30px 70px rgba(2, 6, 23, 0.55);
  backdrop-filter: blur(26px) saturate(1.35);
  -webkit-backdrop-filter: blur(26px) saturate(1.35);
  isolation: isolate;
}

.hero__illustration {
  gap: 28px;
}

.hero__illustration-canvas {
  position: relative;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: 26px;
  padding: 20px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(22px) saturate(1.25);
  -webkit-backdrop-filter: blur(22px) saturate(1.25);
  isolation: isolate;
}

.hero-illustration {
  width: 100%;
}

.hero-illustration svg {
  width: 100%;
  height: auto;
  display: block;
}

.hero__illustration-canvas svg text {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.hero-illustration-svg {
  width: 100%;
  height: auto;
}

.hero__illustration-canvas .hero__panel-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(15, 23, 42, 0.9);
}

body[data-theme="light"] .hero__illustration-canvas {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(148, 163, 184, 0.35);
  box-shadow: 0 25px 65px rgba(15, 23, 42, 0.12);
}

body[data-theme="light"] .hero__illustration-canvas .hero__panel-badge {
  background: rgba(15, 23, 42, 0.85);
  color: #f8fafc;
}

body[data-theme="light"] .hero__metrics--inline li {
  background: linear-gradient(135deg, rgba(255,255,255,0.98), rgba(240,245,255,0.9));
  border-color: rgba(148, 163, 184, 0.35);
  box-shadow: 0 15px 38px rgba(15, 23, 42, 0.12);
  color: #0f172a;
}

body[data-theme="light"] .hero__metrics--inline .metric-label {
  color: rgba(30, 41, 59, 0.7);
}

body[data-theme="light"] .hero__metrics--inline .metric-desc {
  color: rgba(30, 41, 59, 0.75);
}

.hero__metrics--inline {
  width: 100%;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.hero__metrics--inline li {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  min-height: auto;
}

.hero__metrics--inline li > div {
  flex: 1;
}

.hero__panel::before {
  content: '';
  position: absolute;
  inset: 12px;
  border-radius: 24px;
  background-image:
    linear-gradient(90deg, rgba(226, 232, 240, 0.12) 1px, transparent 1px),
    linear-gradient(0deg, rgba(226, 232, 240, 0.12) 1px, transparent 1px);
  background-size: 38px 38px;
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}

.hero__panel::after {
  content: '';
  position: absolute;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.25), transparent);
  right: -40px;
  top: -40px;
  filter: blur(6px);
  z-index: 0;
}

.hero__panel,
.hero__panel p,
.hero__panel span,
.hero__panel strong {
  color: #e2e8f0;
}

.hero__panel > * {
  position: relative;
  z-index: 1;
}

.hero__panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.panel-label {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(226, 232, 240, 0.8);
}

.hero__panel-badge {
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.15);
  border: 1px solid rgba(56, 189, 248, 0.4);
  font-size: 0.85rem;
}

.hero__metrics {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.hero__metrics strong {
  font-size: 2rem;
  display: block;
  margin-bottom: 6px;
  color: var(--text-main);
}

.metric-label {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: rgba(226, 232, 240, 0.8);
}

.metric-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-main);
}

.hero__metrics li {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(148, 163, 184, 0.25);
  border-radius: 20px;
  padding: 18px 20px;
  min-height: 132px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.hero__metrics li p {
  margin: 0;
  opacity: 0.85;
  color: rgba(226, 232, 240, 0.85);
}

.hero__panel-foot {
  display: flex;
  gap: 12px;
  font-size: 0.95rem;
  align-items: center;
  color: rgba(226, 232, 240, 0.8);
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 18px;
  padding: 16px 18px;
}

.hero__panel-note {
  color: rgba(226, 232, 240, 0.85);
}

body[data-theme="light"] .hero__panel-note {
  color: #0f172a;
}

.hero__mockups {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.hero-mockup {
  border-radius: 16px;
  background: rgba(2, 6, 23, 0.7);
  padding: 16px 18px;
  border: 1px solid rgba(148, 163, 184, 0.25);
  animation: heroMockFloat 8s ease-in-out infinite;
}

.hero-mockup__tag {
  display: inline-flex;
  align-items: center;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(148, 163, 184, 0.9);
  margin-bottom: 6px;
}

.hero-mockup strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.hero-mockup__bars {
  display: flex;
  gap: 6px;
  margin-top: 10px;
}

.hero-mockup__bars span {
  flex: 1;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(120deg, rgba(56,189,248,0.5), rgba(99,102,241,0.5));
  animation: heroBarPulse 1.8s ease-in-out infinite;
}

.hero-mockup:nth-child(2) {
  animation-delay: 1.2s;
}

.hero-mockup__bars span:nth-child(2) {
  animation-delay: 0.35s;
}

.hero-mockup__bars span:nth-child(3) {
  animation-delay: 0.65s;
}

@keyframes heroMockFloat {
  0% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}

@keyframes heroBarPulse {
  0% { opacity: 0.35; }
  50% { opacity: 0.9; }
  100% { opacity: 0.35; }
}

.motion-card {
  background: var(--bg-soft);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 32px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.motion-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 70px rgba(2, 6, 23, 0.35);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.trust-card {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 25px 60px rgba(2, 6, 23, 0.45);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
}

body[data-theme="light"] .trust-card {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(148, 163, 184, 0.3);
  box-shadow: 0 25px 55px rgba(15, 23, 42, 0.12);
}

.trust-card h3 {
  margin-bottom: 10px;
}

.trust-card p {
  color: rgba(226, 232, 240, 0.85);
}

body[data-theme="light"] .trust-card p {
  color: rgba(15, 23, 42, 0.72);
}

.trust-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(56, 189, 248, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.trust-card__icon i {
  color: var(--accent-b);
}

.section-pillars {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.6), rgba(2, 6, 23, 0.9));
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

body[data-theme="light"] .section-pillars {
  background: linear-gradient(135deg, rgba(224, 242, 254, 0.85), rgba(237, 233, 254, 0.75));
  border-top: 1px solid rgba(148, 163, 184, 0.25);
  border-bottom: 1px solid rgba(148, 163, 184, 0.25);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.pillar-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(56, 189, 248, 0.15);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}

.pillar-card ul {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.impact-grid .kpi-box {
  text-align: left;
  border-radius: 24px;
}

.impact-grid .kpi-box strong {
  font-size: 3rem;
  margin-bottom: 8px;
  display: block;
}

.impact-grid .kpi-box span,
.impact-grid .kpi-box p {
  color: rgba(226, 232, 240, 0.8);
}

body[data-theme="light"] .impact-grid .kpi-box span,
body[data-theme="light"] .impact-grid .kpi-box p {
  color: rgba(15, 23, 42, 0.7);
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.process-step {
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

.process-step p {
  color: rgba(226, 232, 240, 0.85);
}

body[data-theme="light"] .process-step p {
  color: rgba(15, 23, 42, 0.68);
}

.process-step__id {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--border-color);
  margin-bottom: 16px;
}

.process-step__icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(56, 189, 248, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

body[data-theme="dark"] .process-step__icon {
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.18), rgba(79, 70, 229, 0.18));
  color: #e2e8f0;
}

body[data-theme="light"] .process-step__icon {
  background: linear-gradient(135deg, rgba(219, 234, 254, 0.9), rgba(221, 214, 254, 0.9));
  color: #0f172a;
}

.process-step__time {
  font-size: 0.9rem;
  color: rgba(148, 163, 184, 0.9);
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.insight-card__head {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 16px;
}

.insight-card strong {
  font-size: 1.5rem;
  display: block;
  margin-top: 16px;
}

.insight-card p {
  color: rgba(226, 232, 240, 0.78);
}

body[data-theme="light"] .insight-card p {
  color: rgba(15, 23, 42, 0.68);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  align-items: start;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border: 1px solid var(--border-color);
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.6);
  box-shadow: 0 16px 40px rgba(2, 6, 23, 0.35);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

body[data-theme="light"] .faq-item {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(148, 163, 184, 0.35);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

.faq-item.is-open {
  border-color: rgba(56, 189, 248, 0.6);
  box-shadow: 0 24px 50px rgba(37, 99, 235, 0.18);
}

.faq-item__toggle {
  width: 100%;
  background: transparent;
  border: none;
  color: inherit;
  font: inherit;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  text-align: left;
}

.faq-item__toggle i {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item.is-open .faq-item__toggle i {
  transform: rotate(180deg);
}

.faq-item__body {
  padding: 0 24px 20px;
  color: rgba(226, 232, 240, 0.85);
}

body[data-theme="light"] .faq-item__body {
  color: rgba(15, 23, 42, 0.7);
}

.faq-item__body p {
  margin: 0;
}

.faq-collapse-enter-active,
.faq-collapse-leave-active {
  transition: all 0.25s ease;
}

.faq-collapse-enter-from,
.faq-collapse-leave-to {
  opacity: 0;
  transform: translateY(-6px);
}

.cta-panel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

body[data-theme="dark"] .cta-panel {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.9), rgba(2, 6, 23, 0.95));
  border: 1px solid rgba(99, 102, 241, 0.35);
  box-shadow: 0 35px 70px rgba(2, 6, 23, 0.65);
}

body[data-theme="light"] .cta-panel {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(241, 245, 255, 0.92));
  border: 1px solid rgba(148, 163, 184, 0.3);
  box-shadow: 0 35px 60px rgba(15, 23, 42, 0.12);
}

.cta-panel ul {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cta-panel ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--text-main);
}

.cta-panel ul li i {
  flex-shrink: 0;
  color: var(--accent-a);
}

.cta-panel ul li span {
  flex: 1;
  color: rgba(226, 232, 240, 0.9);
}

body[data-theme="light"] .cta-panel ul li {
  color: #0f172a;
}

body[data-theme="light"] .cta-panel ul li span {
  color: rgba(15, 23, 42, 0.72);
}

.cta-panel__actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
  width: 100%;
  max-width: 420px;
}



body[data-theme="light"] .logo-marquee__track {
  color: rgba(15, 23, 42, 0.75);
}

body[data-theme="light"] .section-testimonials {
  background: linear-gradient(135deg, rgba(226,232,255,0.9), rgba(219,234,254,0.9));
}

@media (max-width: 1024px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__content {
    text-align: center;
    margin: 0 auto;
  }

  .hero__panel {
    max-width: 520px;
  }

  .cta-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

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

  .hero h1 {
    font-size: 38px;
  }
}

/* =========================================================
   SECTIONS
========================================================= */

.section {
  padding: 120px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 80px;
}

.section-title h2 {
  font-size: 2.75rem;
  line-height: 1.1;
  margin-bottom: 16px;
  position: relative;
}

.section-title h2::after {
  content: '';
  width: 96px;
  height: 4px;
  display: block;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--accent-a), var(--accent-b));
  margin: 18px auto 0;
}

.section-title p {
  max-width: 720px;
  margin: 0 auto;
  color: rgba(226, 232, 240, 0.78);
}

body[data-theme="light"] .section-title p {
  color: rgba(15, 23, 42, 0.68);
}

.blueprint-surface {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.blueprint-surface::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-image: var(--blueprint-texture);
  background-size: 320px 320px;
  background-repeat: repeat;
  opacity: 0.18;
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 0;
}

body[data-theme="light"] .blueprint-surface::before {
  opacity: 0.08;
  mix-blend-mode: multiply;
}

.blueprint-surface > * {
  position: relative;
  z-index: 1;
}

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

.grid-2 {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 60px;
  align-items: center;
}

.card,
.highlight-box,
.kpi-box {
  background: var(--bg-soft);
  border: 1px solid var(--border-color);
  border-radius: 18px;
  padding: 36px;
}

.card:hover,
.kpi-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,.45);
}

/* =========================================================
   KPI
========================================================= */

.section-kpi {
  padding: 100px 0;
  background: linear-gradient(135deg,#0f172a,var(--bg-main));
}

body[data-theme="light"] .section-kpi {
  background: linear-gradient(135deg, #e0f2fe, #ede9fe);
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 36px;
  text-align: center;
}

.kpi-box strong {
  font-size: 42px;
  background: linear-gradient(135deg,var(--accent-b),var(--accent-a));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* =========================================================
   THEME TOGGLE
========================================================= */

.abc-theme-toggle {
  background: var(--bg-soft);
  border: 1px solid var(--border-color);
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-right: 14px;
  color: var(--text-main);
  backdrop-filter: blur(6px);
  transition: transform .25s ease, box-shadow .35s ease;
}

.abc-theme-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,.25);
}

/* =========================================================
   BURGER
========================================================= */

.abc-burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
}

.abc-burger span {
  width: 26px;
  height: 2px;
  background: var(--text-main);
  transition: transform .3s ease, opacity .3s ease;
}

body[data-theme="dark"] .abc-burger span {
  background: #f8fafc;
}

.abc-burger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.abc-burger.active span:nth-child(2) {
  opacity: 0;
}

.abc-burger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* =========================================================
   MOBILE MENU
========================================================= */

.abc-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1300;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.abc-mobile-menu.is-visible,
.abc-mobile-menu.active {
  pointer-events: auto;
  opacity: 1;
}

.abc-mobile-menu__overlay {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, 0.82);
  backdrop-filter: blur(18px);
  display: flex;
  justify-content: flex-end;
}

.abc-mobile-menu__panel {
  width: min(420px, 100%);
  background: var(--bg-soft);
  border-left: 1px solid var(--border-color);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  box-sizing: border-box;
  min-height: 100%;
}

.abc-mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
}

.abc-mobile-menu__close {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid var(--border-color);
  background: transparent;
  color: var(--text-main);
  display: grid;
  place-items: center;
  cursor: pointer;
}

.abc-mobile-menu__panel ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.abc-mobile-menu__panel a {
  color: var(--text-main);
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 600;
}

.abc-mobile-menu__cta {
  margin-top: auto;
}

.mobile-menu-fade-enter-active,
.mobile-menu-fade-leave-active {
  transition: opacity 0.35s ease;
}

.mobile-menu-fade-enter-from,
.mobile-menu-fade-leave-to {
  opacity: 0;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 900px){
  .vue-nav__track { display: none; }
  .abc-nav { justify-content: flex-end; }
  .abc-burger { display: flex; }
  .abc-cta--ghost { display: none; }
  .abc-footer__grid { grid-template-columns: 1fr; }
  .abc-footer__cta { flex-direction: column; align-items: stretch; }
  .abc-footer__meta { flex-direction: column; align-items: flex-start; }

  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .hero h1 { font-size: 36px; }
}

@media (min-width: 901px){
  .abc-burger { display: none !important; }
}
.section-marquee {
  position: relative;
  padding: 96px 0;
  background: linear-gradient(90deg, rgba(56,189,248,0.08), rgba(99,102,241,0.08));
  overflow: hidden;
}

.section-marquee::before {
  content: '';
  position: absolute;
  inset: -10% -5% -20%;
  background-image:
    radial-gradient(circle at 12% 38%, rgba(56,189,248,0.28), transparent 60%),
    radial-gradient(circle at 80% 28%, rgba(147,51,234,0.25), transparent 60%);
  filter: blur(32px);
  opacity: 0.5;
  pointer-events: none;
}

body[data-theme="light"] .section-marquee {
  background: linear-gradient(90deg, rgba(219,234,254,0.7), rgba(233,213,255,0.5));
}

body[data-theme="light"] .section-marquee::before {
  opacity: 0.35;
  background-image:
    radial-gradient(circle at 18% 42%, rgba(191,219,254,0.6), transparent 60%),
    radial-gradient(circle at 78% 28%, rgba(221,214,254,0.45), transparent 60%);
}

.section-marquee > * {
  position: relative;
  z-index: 1;
}

.logo-marquee {
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
}

.marquee-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(148, 163, 184, 0.9);
}

.logo-marquee__track {
  display: flex;
  gap: 48px;
  animation: marqueeSlide 18s linear infinite;
  font-weight: 600;
  color: rgba(226, 232, 240, 0.85);
}

.logo-marquee__item {
  white-space: nowrap;
}

@keyframes marqueeSlide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.partner-badge-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.partner-badge {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(148, 163, 184, 0.3);
  box-shadow: 0 25px 60px rgba(2, 6, 23, 0.45);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  position: relative;
  overflow: hidden;
}

.partner-badge::after {
  content: '';
  position: absolute;
  inset: 12px;
  border-radius: 14px;
  background-image:
    linear-gradient(120deg, rgba(255,255,255,0.08), transparent 60%);
  opacity: 0.4;
  pointer-events: none;
}

.partner-badge > * {
  position: relative;
  z-index: 1;
}

.partner-badge__avatar {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  display: grid;
  place-items: center;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.08em;
}

body[data-theme="light"] .partner-badge__avatar {
  background: linear-gradient(135deg, rgba(191, 219, 254, 0.95), rgba(221, 214, 254, 0.95));
  color: #0f172a;
  border: 1px solid rgba(99, 102, 241, 0.25);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
}

.partner-badge__body strong {
  display: block;
  font-size: 1rem;
}

.partner-badge__body p {
  margin: 4px 0 0;
  opacity: 0.75;
  font-size: 0.9rem;
}

body[data-theme="dark"] .partner-badge__body p {
  color: rgba(226, 232, 240, 0.8);
}

body[data-theme="light"] .partner-badge__body p {
  color: rgba(15, 23, 42, 0.68);
}

.partner-badge__metric {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(148, 163, 184, 0.9);
}

body[data-theme="light"] .partner-badge {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 25px 50px rgba(15, 23, 42, 0.12);
}

body[data-theme="light"] .partner-badge::after {
  opacity: 0.25;
  background-image: linear-gradient(120deg, rgba(148, 163, 184, 0.2), transparent 60%);
}

body[data-theme="light"] .partner-badge__metric {
  color: rgba(30, 41, 59, 0.65);
}

.section-highlights {
  padding-top: 40px;
  padding-bottom: 40px;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.highlight-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(56, 189, 248, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--accent-b);
}

.highlight-card h3 {
  margin: 0;
  font-size: 1.25rem;
}

.highlight-card header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.highlight-card header span {
  font-size: 0.9rem;
  color: rgba(148, 163, 184, 0.9);
}

.highlight-card p {
  color: rgba(226, 232, 240, 0.82);
}

body[data-theme="light"] .highlight-card header span {
  color: rgba(71, 85, 105, 0.8);
}

body[data-theme="light"] .highlight-card p {
  color: rgba(15, 23, 42, 0.7);
}

.section-testimonials {
  background: linear-gradient(135deg, rgba(37,99,235,0.08), rgba(99,102,241,0.08));
}

.section-graphics {
  background: linear-gradient(135deg, rgba(2, 6, 23, 0.85), rgba(15, 23, 42, 0.92));
  border-top: 1px solid rgba(56, 189, 248, 0.15);
  border-bottom: 1px solid rgba(56, 189, 248, 0.12);
}

.graphics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.graphic-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.graphic-placeholder {
  border-radius: 24px;
  border: 1px dashed rgba(148, 163, 184, 0.6);
  background-image: var(--blueprint-texture), radial-gradient(circle at 20% 20%, rgba(56, 189, 248, 0.15), transparent 60%);
  background-size: 320px 320px, auto;
  background-repeat: repeat, no-repeat;
  background-blend-mode: screen;
  padding: 28px;
  position: relative;
  min-height: 200px;
  overflow: hidden;
}

.graphic-placeholder--wide {
  min-height: 260px;
}

.graphic-placeholder--tall {
  min-height: 320px;
}

.graphic-placeholder__badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(56, 189, 248, 0.2);
  border: 1px solid rgba(56, 189, 248, 0.4);
}

.graphic-placeholder__bars {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.graphic-placeholder__bars span {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.35);
}

.graphic-placeholder__dot {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(99, 102, 241, 0.18);
  position: absolute;
  right: 28px;
  bottom: 28px;
}

.graphic-card__content h3 {
  margin-bottom: 8px;
}

.graphic-card__content p {
  opacity: 0.8;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.testimonial-card i {
  color: var(--accent-b);
  margin-bottom: 16px;
}

.testimonial-card p {
  font-style: italic;
  min-height: 90px;
}

.testimonial-card strong {
  display: block;
  margin-top: 12px;
}

.testimonial-card span {
  font-size: 0.9rem;
  color: rgba(148, 163, 184, 0.85);
}

.section-advisory {
  background: transparent;
}

.advisory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.advisory-card {
  text-align: center;
}

.advisory-card i {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(56, 189, 248, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--accent-b);
}

.abc-page {
  padding: 120px 0 160px;
  position: relative;
  overflow: hidden;
}

.abc-page::before,
.abc-page::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.abc-page::before {
  background: linear-gradient(135deg, rgba(2, 6, 23, 0.95), rgba(15, 23, 42, 0.9));
  z-index: 0;
}

.abc-page::after {
  background-image:
    radial-gradient(circle at 18% 28%, rgba(56, 189, 248, 0.28), transparent 60%),
    radial-gradient(circle at 75% 20%, rgba(124, 58, 237, 0.25), transparent 60%),
    radial-gradient(circle at 60% 80%, rgba(14, 165, 233, 0.18), transparent 65%);
  opacity: 0.75;
  filter: blur(32px);
  z-index: 0;
}

body[data-theme="light"] .abc-page::before {
  background: linear-gradient(135deg, rgba(226, 232, 255, 0.98), rgba(219, 234, 254, 0.9));
}

body[data-theme="light"] .abc-page::after {
  background-image:
    radial-gradient(circle at 20% 35%, rgba(191, 219, 254, 0.4), transparent 60%),
    radial-gradient(circle at 70% 20%, rgba(221, 214, 254, 0.35), transparent 60%),
    radial-gradient(circle at 60% 78%, rgba(255, 255, 255, 0.35), transparent 60%);
  opacity: 0.3;
}

.abc-page__article {
  padding: 48px;
  position: relative;
  z-index: 1;
  background: rgba(2, 6, 23, 0.7);
  border-radius: 28px;
  border: 1px solid rgba(148, 163, 184, 0.3);
  box-shadow: 0 30px 70px rgba(2, 6, 23, 0.45);
  backdrop-filter: blur(22px) saturate(1.2);
  -webkit-backdrop-filter: blur(22px) saturate(1.2);
}

body[data-theme="light"] .abc-page__article {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(148, 163, 184, 0.35);
  box-shadow: 0 35px 60px rgba(15, 23, 42, 0.12);
}

.abc-page > * {
  position: relative;
  z-index: 1;
}

.abc-checker-dimension-flag.is-strong {
  color: #020617;
}

.abc-page__header h1 {
  margin-bottom: 24px;
  font-size: 2.75rem;
}

.abc-page__content {
  line-height: 1.8;
}

.abc-page__content img,
.abc-page__content figure {
  max-width: 100%;
  height: auto;
}

.abc-index {
  padding: 80px 0 120px;
}

.abc-posts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.abc-post-card header h2 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.abc-post-card header a {
  text-decoration: none;
  color: inherit;
}

.abc-pagination {
  margin-top: 48px;
}

.abc-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  margin-right: 8px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.15);
  text-decoration: none;
  color: var(--text-main);
}

.abc-pagination .page-numbers.current {
  background: linear-gradient(120deg, var(--accent-a), var(--accent-b));
  color: #fff;
}
.section-pages {
  background: linear-gradient(135deg, rgba(56,189,248,0.05), rgba(99,102,241,0.05));
}

.wp-pages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.wp-page-card header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--text-main);
}

.wp-page-card header i {
  color: var(--accent-b);
}

.wp-page-card p {
  min-height: 72px;
  color: rgba(226, 232, 240, 0.9);
}

body[data-theme="light"] .wp-page-card header {
  color: #0f172a;
}

body[data-theme="light"] .wp-page-card p {
  color: rgba(15, 23, 42, 0.75);
}

body[data-theme="light"] .section-graphics {
  background: linear-gradient(135deg, rgba(224, 242, 254, 0.85), rgba(233, 213, 255, 0.75));
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

body[data-theme="light"] .graphic-placeholder {
  border-color: rgba(148, 163, 184, 0.35);
  background-image: var(--blueprint-texture), radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.12), rgba(255, 255, 255, 0.9));
  background-size: 320px 320px, auto;
  background-repeat: repeat, no-repeat;
  background-blend-mode: multiply;
}

body[data-theme="light"] .graphic-placeholder__bars span {
  background: rgba(71, 85, 105, 0.2);
}

body[data-theme="light"] .graphic-placeholder__dot {
  background: rgba(14, 165, 233, 0.22);
}

body[data-theme="light"] .section-pages {
  background: linear-gradient(135deg, rgba(224,242,254,0.8), rgba(233,213,255,0.7));
}

@media (prefers-reduced-motion: reduce) {
  .logo-marquee__track,
  .hero-mockup,
  .hero-mockup__bars span,
  .nav-link,
  .vue-nav__indicator {
    animation: none !important;
    transition: none !important;
  }

  .nav-ready .vue-nav {
    transition: none;
  }
}
body[data-theme="light"] .hero-link-cta {
  color: var(--accent-b);
}

body[data-theme="light"] .hero-link-cta:hover,
body[data-theme="light"] .hero-link-cta:focus-visible {
  color: #0f172a;
}

.hero__quote {
  margin: 16px 0 0;
  font-size: 0.95rem;
  color: rgba(226, 232, 240, 0.85);
}

body[data-theme="light"] .hero__quote {
  color: rgba(15, 23, 42, 0.65);
}
.hero-anim--float {
  animation: heroFloat 6s ease-in-out infinite;
}

.hero-anim--delay {
  animation-delay: 1.2s;
}

.hero-anim--delay-2 {
  animation-delay: 2s;
}

.hero-anim--pulse {
  animation: heroPulse 5s ease-in-out infinite;
}

.hero-anim--draw {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: heroDraw 8s ease-in-out infinite;
}

@keyframes heroFloat {
  0% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
  100% { transform: translateY(0); }
}

@keyframes heroPulse {
  0% { opacity: 0.7; }
  50% { opacity: 1; }
  100% { opacity: 0.7; }
}

@keyframes heroDraw {
  0% { stroke-dashoffset: 200; }
  40% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: 200; }
}
