/* ==========================================================================
   OneLenz 2026 Redesign — ported 1:1 from onelenz_mixed_theme_fixed.html
   Sitewide nav + footer + front-page section styles.

   Loaded after assets/css/onelenz.css so equal-specificity shared class
   names (.btn, .hero, .nav-links, .footer-grid, .step-card…) resolve in
   this file's favor via normal source order. A handful of legacy rules
   use `!important` (search "compat override" below) — those need the
   matching `!important` overrides at the bottom of this file, since
   nothing else can beat `!important` except more `!important`.
   ========================================================================== */
:root {
  /* NOTE: --bg / --violet / --pink are intentionally NOT used here — onelenz.css
     already defines those same names (with different values) for every inner
     page, and since :root custom properties are global, reusing them here would
     silently shift colors sitewide on pages this redesign doesn't touch. */
  --bg-deep: #170225;
  --purple: #7b4dff;
  --ol26-violet: #a855f7;
  --ol26-pink: #f04aa6;
  --orange: #ff8a3d;
  --white: #ffffff;
  --text-secondary: #cfc6e6;
  --text-muted: #9b8fb7;
  --border: rgba(255, 255, 255, 0.08);
  --border-bright: rgba(255, 255, 255, 0.16);
  --glass: rgba(255, 255, 255, 0.055);
  --glass-strong: rgba(255, 255, 255, 0.09);
  --shadow: 0 24px 80px rgba(10, 0, 24, 0.36);
  --container: min(1180px, calc(100% - 40px));
  --gradient: linear-gradient(110deg, var(--purple), var(--ol26-pink) 56%, var(--orange));
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--white);
  background:
    radial-gradient(circle at 15% 12%, rgba(168, 85, 247, .18), transparent 28%),
    radial-gradient(circle at 86% 8%, rgba(240, 74, 166, .15), transparent 25%),
    radial-gradient(circle at 52% 46%, rgba(123, 77, 255, .08), transparent 36%),
    var(--bg-deep);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -4;
  opacity: .18;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1000;
  opacity: .025;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

::selection { background: rgba(240, 74, 166, .45); color: #fff; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }
img { display: block; max-width: 100%; }

.container { width: var(--container); margin-inline: auto; }
.section { position: relative; padding: 112px 0; }
.section-sm { padding: 76px 0; }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  color: #f3c9ff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.section-label::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gradient);
  box-shadow: 0 0 14px rgba(240, 74, 166, .5);
}
.section-heading {
  margin: 0;
  max-width: 760px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: -.052em;
}
.section-copy {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--text-secondary);
  font-size: clamp(1rem, 1.4vw, 1.16rem);
}
.gradient-text {
  color: transparent;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(4px);
  pointer-events: none;
  opacity: .6;
  mix-blend-mode: screen;
}
.orb.one {
  width: 420px; height: 420px;
  top: -130px; right: -140px;
  background: radial-gradient(circle, rgba(240, 74, 166, .2), transparent 68%);
  animation: drift 12s ease-in-out infinite alternate;
}
.orb.two {
  width: 360px; height: 360px;
  bottom: -180px; left: -130px;
  background: radial-gradient(circle, rgba(123, 77, 255, .22), transparent 68%);
  animation: drift 16s ease-in-out infinite alternate-reverse;
}

.nav-wrap {
  position: fixed;
  z-index: 100;
  top: 18px;
  left: 50%;
  width: min(1240px, calc(100% - 28px));
  transform: translateX(-50%);
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  padding: 9px 10px 9px 16px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(25, 3, 42, .62);
  backdrop-filter: blur(20px) saturate(140%);
  box-shadow: 0 10px 45px rgba(10, 0, 24, .18);
  transition: .3s var(--ease);
}
.navbar.scrolled {
  background: rgba(18, 2, 31, .88);
  border-color: rgba(255, 255, 255, .13);
  box-shadow: 0 18px 54px rgba(10, 0, 24, .35);
}
.brand {
  display: inline-flex;
  align-items: center;
  min-width: 146px;
  height: 42px;
  overflow: hidden;
  padding: 5px 12px;
  border-radius: 13px;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .05);
}
.brand img { width: 124px; height: auto; }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-item { position: relative; }
.nav-trigger, .nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 11px 12px;
  border: 0;
  background: transparent;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 11px;
  transition: .25s var(--ease);
}
.nav-trigger:hover, .nav-link:hover, .nav-trigger[aria-expanded="true"] {
  color: #fff;
  background: rgba(255, 255, 255, .06);
}
.chevron { display: inline-flex; align-items: center; transition: transform .25s var(--ease); opacity: .75; }
.chevron svg { width: 9px; height: 6px; display: block; }
.nav-trigger:hover .chevron, .nav-trigger[aria-expanded="true"] .chevron { opacity: 1; }
.nav-trigger[aria-expanded="true"] .chevron { transform: rotate(180deg); }
.mega-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  width: 410px;
  padding: 12px;
  border: 1px solid var(--border-bright);
  border-radius: 20px;
  background: rgba(28, 5, 47, .95);
  backdrop-filter: blur(24px);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px) scale(.98);
  transition: .22s var(--ease);
}
.mega-menu.wide { width: 570px; }
.nav-item:hover .mega-menu, .nav-item:focus-within .mega-menu, .nav-item.open .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0) scale(1);
}
.mega-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 6px; }
.mega-link {
  display: block;
  padding: 13px;
  border-radius: 14px;
  transition: .2s var(--ease);
}
.mega-link:hover { background: rgba(255, 255, 255, .065); transform: translateY(-1px); }
.mega-link strong { display: block; margin-bottom: 3px; font-size: 14px; color: #fff; }
.mega-link span { display: block; color: var(--text-muted); font-size: 12px; line-height: 1.35; }
.nav-actions { display: flex; align-items: center; gap: 8px; }
.mobile-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--border);
  border-radius: 13px;
  background: rgba(255, 255, 255, .05);
  cursor: pointer;
}
.mobile-toggle span, .mobile-toggle::before, .mobile-toggle::after {
  content: "";
  display: block;
  width: 18px; height: 2px;
  margin: 4px auto;
  background: #fff;
  border-radius: 4px;
  transition: .25s var(--ease);
}
.mobile-toggle.active span { opacity: 0; }
.mobile-toggle.active::before { transform: translateY(6px) rotate(45deg); }
.mobile-toggle.active::after { transform: translateY(-6px) rotate(-45deg); }

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 20px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  isolation: isolate;
  transition: .25s var(--ease);
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .26), transparent);
  transform: translateX(-100%);
}
.btn:hover { transform: translateY(-3px); }
.btn:hover::before { opacity: 1; animation: shine .8s ease; }
.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 12px 30px rgba(240, 74, 166, .22), inset 0 1px 0 rgba(255, 255, 255, .35);
}
.btn-primary:hover { box-shadow: 0 18px 38px rgba(240, 74, 166, .3), inset 0 1px 0 rgba(255, 255, 255, .4); }
.btn-secondary {
  color: #fff;
  background: rgba(255, 255, 255, .055);
  border-color: var(--border-bright);
  backdrop-filter: blur(10px);
}
.btn-secondary:hover { background: rgba(255, 255, 255, .09); border-color: rgba(255, 255, 255, .26); }
.btn-small { min-height: 42px; padding: 0 16px; border-radius: 12px; }
.btn-arrow { transition: transform .25s var(--ease); }
.btn:hover .btn-arrow { transform: translateX(4px); }

.hero {
  min-height: 980px;
  padding: 164px 0 80px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -15% -10% auto;
  height: 740px;
  z-index: -2;
  background:
    radial-gradient(circle at 18% 36%, rgba(123, 77, 255, .22), transparent 29%),
    radial-gradient(circle at 60% 20%, rgba(240, 74, 166, .18), transparent 31%),
    radial-gradient(circle at 82% 48%, rgba(255, 138, 61, .12), transparent 28%);
  filter: blur(18px);
  animation: aurora 15s ease-in-out infinite alternate;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(560px, 1.1fr);
  gap: 64px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 999px;
  background: rgba(255, 255, 255, .05);
  color: #e8dff8;
  font-size: 13px;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .07);
}
.eyebrow .pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 6px rgba(255, 138, 61, .12), 0 0 20px rgba(255, 138, 61, .55);
  animation: pulse 2s infinite;
}
.hero h1 {
  margin: 0;
  max-width: 710px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(3.5rem, 6vw, 6.35rem);
  line-height: .96;
  letter-spacing: -.07em;
  text-wrap: balance;
}
.hero-subhead {
  margin: 25px 0 0;
  color: #eadff7;
  font-size: clamp(1.2rem, 2vw, 1.62rem);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -.02em;
}
.hero-copy {
  max-width: 690px;
  margin: 18px 0 0;
  color: var(--text-secondary);
  font-size: 17px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 10px 18px; margin-top: 24px; color: var(--text-muted); font-size: 13px; }
.hero-trust span { display: inline-flex; align-items: center; gap: 7px; }
.hero-trust i { font-style: normal; color: #fff; opacity: .9; }

.hero-visual { position: relative; min-height: 610px; perspective: 1200px; }
.dashboard {
  position: absolute;
  inset: 52px 0 auto 20px;
  z-index: 2;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 25px;
  background: linear-gradient(145deg, rgba(62, 22, 93, .92), rgba(25, 5, 44, .94));
  box-shadow: 0 35px 90px rgba(7, 0, 17, .48), inset 0 1px 0 rgba(255, 255, 255, .12);
  transform: rotateY(-5deg) rotateX(2deg);
  transform-style: preserve-3d;
  transition: transform .15s linear;
}
.dashboard::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, rgba(255, 255, 255, .08), transparent 26%);
}
.browser-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 47px;
  padding: 0 16px;
  border-bottom: 1px solid var(--border);
  background: rgba(8, 1, 19, .27);
}
.browser-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255, 255, 255, .24); }
.browser-pill { width: 48%; height: 24px; margin-left: 10px; border-radius: 9px; background: rgba(255, 255, 255, .055); }
.dashboard-body { display: grid; grid-template-columns: 145px 1fr; min-height: 455px; }
.dashboard-side { padding: 22px 12px; border-right: 1px solid var(--border); background: rgba(10, 0, 25, .18); }
.dash-logo { width: 86px; height: 26px; border-radius: 8px; background: linear-gradient(90deg, var(--ol26-violet), var(--ol26-pink), var(--orange)); opacity: .8; }
.side-lines { display: grid; gap: 11px; margin-top: 30px; }
.side-line { height: 30px; border-radius: 9px; background: rgba(255, 255, 255, .045); }
.side-line.active { background: linear-gradient(90deg, rgba(123, 77, 255, .25), rgba(240, 74, 166, .08)); border: 1px solid rgba(168, 85, 247, .22); }
.dashboard-main { padding: 21px; }
.dash-top { display: flex; justify-content: space-between; align-items: center; gap: 16px; margin-bottom: 17px; }
.dash-title { font-family: "Manrope", sans-serif; font-size: 17px; font-weight: 700; }
.dash-chip { padding: 6px 9px; border: 1px solid rgba(110, 231, 183, .18); border-radius: 999px; color: #9df1ce; background: rgba(16, 185, 129, .08); font-size: 10px; }
.dash-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.dash-kpi { padding: 13px; border: 1px solid var(--border); border-radius: 14px; background: rgba(255, 255, 255, .035); }
.dash-kpi small { display: block; color: var(--text-muted); font-size: 9px; line-height: 1.2; }
.dash-kpi strong { display: block; margin-top: 6px; font-size: 19px; }
.chart-card { margin-top: 12px; padding: 16px; border: 1px solid var(--border); border-radius: 17px; background: rgba(255, 255, 255, .034); }
.chart-head { display: flex; justify-content: space-between; gap: 10px; color: var(--text-secondary); font-size: 11px; }
.chart {
  position: relative;
  height: 133px;
  margin-top: 15px;
  overflow: hidden;
  border-radius: 12px;
  background-image:
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 100% 33%, 20% 100%;
}
.chart svg { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.chart .area { opacity: .35; }
.chart .line { fill: none; stroke: url(#lineGradient); stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; filter: drop-shadow(0 0 8px rgba(240, 74, 166, .35)); stroke-dasharray: 600; stroke-dashoffset: 600; animation: drawLine 2.2s .5s var(--ease) forwards; }
.signal-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; margin-top: 11px; }
.signal-box { padding: 10px; border-radius: 12px; background: rgba(255, 255, 255, .035); border: 1px solid var(--border); }
.signal-box span { display: block; color: var(--text-muted); font-size: 8px; }
.signal-box strong { display: block; margin-top: 3px; font-size: 10px; }

.float-card {
  position: absolute;
  z-index: 5;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 17px;
  background: rgba(37, 8, 61, .78);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 50px rgba(8, 0, 20, .35), inset 0 1px 0 rgba(255, 255, 255, .09);
  animation: float 5.5s ease-in-out infinite;
}
.float-card strong { display: block; font-family: "Manrope", sans-serif; font-size: 22px; line-height: 1; }
.float-card span { display: block; margin-top: 5px; color: var(--text-secondary); font-size: 11px; }
.float-card.a { top: 5px; right: 28px; }
.float-card.b { bottom: 65px; left: -8px; animation-delay: -1.8s; }
.float-card.c { right: -17px; bottom: 115px; animation-delay: -3.2s; }
.insight-card {
  position: absolute;
  z-index: 6;
  left: 8%;
  bottom: 4px;
  width: 73%;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 18px;
  background: linear-gradient(125deg, rgba(123, 77, 255, .18), rgba(240, 74, 166, .12)), rgba(24, 3, 42, .83);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 60px rgba(7, 0, 17, .38);
}
.insight-head { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.insight-head strong { font-size: 13px; }
.spark { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 10px; background: var(--gradient); box-shadow: 0 8px 22px rgba(240, 74, 166, .25); }
.insight-body { margin-top: 9px; color: var(--text-secondary); font-size: 12px; line-height: 1.45; }

.scroll-cue {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}
.scroll-cue span {
  width: 30px; height: 48px;
  position: relative;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
}
.scroll-cue span::after {
  content: "";
  position: absolute;
  top: 9px; left: 50%;
  width: 4px; height: 8px;
  border-radius: 999px;
  background: #fff;
  transform: translateX(-50%);
  animation: scrollDown 1.8s infinite;
}

.metric-strip { position: relative; margin-top: -14px; z-index: 3; }
.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .045);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}
.metric-item { position: relative; padding: 30px; text-align: center; }
.metric-item:not(:last-child)::after { content: ""; position: absolute; top: 22%; right: 0; width: 1px; height: 56%; background: var(--border); }
.metric-number { font-family: "Manrope", sans-serif; font-size: clamp(2.1rem, 4vw, 3.55rem); font-weight: 800; letter-spacing: -.06em; }
.metric-label { color: var(--text-secondary); font-size: 13px; }

.video-frame {
  position: relative;
  overflow: hidden;
  min-height: 570px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 50% 0, rgba(240, 74, 166, .17), transparent 32%),
    linear-gradient(145deg, rgba(60, 20, 91, .8), rgba(25, 4, 43, .95));
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, .1);
}
.video-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .6;
  background-image:
    linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
  background-size: 44px 44px;
}
.video-top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
  background: rgba(9, 0, 20, .23);
}
.video-top strong { font-family: "Manrope", sans-serif; }
.video-screen {
  position: absolute;
  inset: 82px 62px 58px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 23px;
  background:
    radial-gradient(circle at 65% 30%, rgba(168, 85, 247, .23), transparent 26%),
    radial-gradient(circle at 30% 72%, rgba(255, 138, 61, .14), transparent 25%),
    rgba(10, 1, 23, .6);
  box-shadow: inset 0 0 70px rgba(123, 77, 255, .08);
}
.video-screen::before {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255, 255, 255, .012), 0 0 0 140px rgba(255, 255, 255, .008);
  animation: rotateSlow 18s linear infinite;
}
.video-screen video { position: relative; z-index: 2; width: 100%; height: 100%; object-fit: cover; border-radius: 23px; }
.play-button {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 86px; height: 86px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 50%;
  background: var(--gradient);
  box-shadow: 0 0 0 14px rgba(240, 74, 166, .08), 0 22px 55px rgba(240, 74, 166, .3);
  transition: .25s var(--ease);
}
.play-button:hover { transform: scale(1.07); box-shadow: 0 0 0 20px rgba(240, 74, 166, .08), 0 26px 65px rgba(240, 74, 166, .4); }
.play-button::after {
  content: "";
  width: 0; height: 0;
  margin-left: 6px;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 19px solid #fff;
}
.video-badge {
  position: absolute;
  z-index: 3;
  padding: 13px 15px;
  border: 1px solid var(--border-bright);
  border-radius: 15px;
  background: rgba(40, 9, 64, .78);
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 40px rgba(8, 0, 19, .28);
}
.video-badge strong { display: block; font-family: "Manrope", sans-serif; font-size: 20px; }
.video-badge span { display: block; color: var(--text-secondary); font-size: 11px; }
.video-badge.one { left: 26px; top: 115px; }
.video-badge.two { right: 25px; bottom: 28px; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
  margin-top: 48px;
}
.feature-card {
  position: relative;
  grid-column: span 4;
  min-height: 310px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .025));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06);
  transition: .35s var(--ease);
}
.feature-card:nth-child(1), .feature-card:nth-child(6) { grid-column: span 7; }
.feature-card:nth-child(2), .feature-card:nth-child(5) { grid-column: span 5; }
.feature-card::before {
  content: "";
  position: absolute;
  width: 200px; height: 200px;
  right: -80px; top: -80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168, 85, 247, .2), transparent 67%);
  opacity: .6;
  transition: .35s var(--ease);
}
.feature-card:hover {
  transform: translateY(-9px);
  border-color: rgba(255, 255, 255, .18);
  box-shadow: 0 25px 65px rgba(11, 0, 27, .28), inset 0 1px 0 rgba(255, 255, 255, .09);
}
.feature-card:hover::before { transform: scale(1.25); opacity: 1; }
.feature-icon {
  display: grid;
  place-items: center;
  width: 50px; height: 50px;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 15px;
  background: linear-gradient(135deg, rgba(123, 77, 255, .18), rgba(240, 74, 166, .14));
  font-size: 21px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
  transition: .3s var(--ease);
}
.feature-card:hover .feature-icon { transform: rotate(-4deg) scale(1.07); }
.feature-card h3 { position: relative; margin: 0; font-family: "Manrope", sans-serif; font-size: 21px; line-height: 1.25; letter-spacing: -.025em; }
.feature-card p { position: relative; margin: 13px 0 0; color: var(--text-secondary); font-size: 14px; }
.feature-benefit {
  position: absolute;
  left: 28px; right: 28px; bottom: 24px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #f6c9ef;
  font-size: 13px;
  font-weight: 700;
}
.feature-benefit::before { content: ""; width: 23px; height: 1px; background: var(--gradient); }

.results-section {
  overflow: hidden;
  background: linear-gradient(180deg, rgba(49, 16, 79, .24), rgba(25, 4, 44, .05));
}
.results-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 56px;
  align-items: center;
}
.result-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.result-card {
  position: relative;
  min-height: 205px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .045);
  transition: .3s var(--ease);
}
.result-card:hover { transform: translateY(-6px); border-color: rgba(255, 255, 255, .19); }
.result-card::after {
  content: "";
  position: absolute;
  left: 24px; right: 24px; bottom: 22px;
  height: 24px;
  background: linear-gradient(90deg, rgba(123, 77, 255, .2), rgba(240, 74, 166, .75), rgba(255, 138, 61, .32));
  clip-path: polygon(0 83%, 12% 71%, 24% 78%, 34% 52%, 46% 60%, 59% 22%, 69% 41%, 81% 18%, 100% 0, 100% 100%, 0 100%);
  opacity: .65;
}
.result-number { font-family: "Manrope", sans-serif; font-size: 48px; font-weight: 800; letter-spacing: -.06em; }
.result-card p { margin: 7px 0 0; color: var(--text-secondary); font-size: 14px; line-height: 1.4; }
.results-note { margin-top: 20px; color: var(--text-muted); font-size: 12px; }

.steps-wrap { margin-top: 54px; }
.steps-line {
  position: absolute;
  top: 26px;
  left: 8%; right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(168, 85, 247, .42), rgba(240, 74, 166, .5), rgba(255, 138, 61, .35), transparent);
}
.steps-grid { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.step-card { position: relative; padding: 0 10px; text-align: center; }
.step-number {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 54px; height: 54px;
  margin: 0 auto 20px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(70, 24, 106, .95), rgba(32, 7, 52, .98));
  box-shadow: 0 0 0 8px rgba(123, 77, 255, .04), 0 14px 30px rgba(8, 0, 19, .28);
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  transition: .3s var(--ease);
}
.step-card:hover .step-number { transform: translateY(-5px) scale(1.05); background: var(--gradient); }
.step-card h3 { margin: 0; font-family: "Manrope", sans-serif; font-size: 18px; }
.step-card p { margin: 10px 0 0; color: var(--text-secondary); font-size: 13px; line-height: 1.55; }

.quote-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(42px, 7vw, 82px);
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 90% 20%, rgba(255, 138, 61, .16), transparent 25%),
    radial-gradient(circle at 15% 100%, rgba(123, 77, 255, .25), transparent 32%),
    linear-gradient(145deg, rgba(72, 23, 109, .72), rgba(31, 5, 51, .9));
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, .09);
}
.quote-mark { position: absolute; top: -56px; right: 38px; font-family: Georgia, serif; font-size: 280px; line-height: 1; color: rgba(255, 255, 255, .045); }
.quote-panel h2 { position: relative; max-width: 900px; margin: 0; font-family: "Manrope", sans-serif; font-size: clamp(2.45rem, 5vw, 5rem); line-height: 1.02; letter-spacing: -.055em; }
.quote-panel p { position: relative; max-width: 760px; margin: 24px 0 30px; color: var(--text-secondary); font-size: 17px; }

.integration-cloud { position: relative; min-height: 670px; margin-top: 54px; }
.integration-center {
  position: absolute;
  top: 50%; left: 50%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 170px; height: 170px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(168, 85, 247, .44), rgba(42, 7, 69, .95) 62%);
  box-shadow: 0 0 0 22px rgba(123, 77, 255, .045), 0 0 0 52px rgba(240, 74, 166, .025), 0 25px 70px rgba(10, 0, 24, .4);
  font-family: "Manrope", sans-serif;
  font-size: 24px;
  font-weight: 800;
}
.integration-center::after { content: ""; position: absolute; inset: -1px; border-radius: inherit; border-top: 1px solid rgba(255, 138, 61, .7); border-right: 1px solid transparent; animation: rotateSlow 7s linear infinite; }
.orbit {
  position: absolute;
  top: 50%; left: 50%;
  width: 560px; height: 560px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 50%;
}
.orbit.small { width: 360px; height: 360px; border-style: dashed; }
.connector-lines { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .42; }
.integration-node {
  position: absolute;
  z-index: 4;
  width: 142px;
  padding: 13px 12px;
  text-align: center;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255, 255, 255, .055);
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 40px rgba(8, 0, 19, .25);
  transition: .3s var(--ease);
}
.integration-node:hover { transform: translateY(-7px) scale(1.04); border-color: rgba(255, 255, 255, .2); background: rgba(255, 255, 255, .09); }
.integration-node .node-icon { display: grid; place-items: center; width: 34px; height: 34px; margin: 0 auto 7px; border-radius: 10px; background: linear-gradient(135deg, rgba(123, 77, 255, .2), rgba(240, 74, 166, .15)); font-size: 16px; }
.integration-node strong { display: block; font-size: 12px; }
.integration-node span { display: block; margin-top: 2px; color: var(--text-muted); font-size: 9px; }
.n1 { left: 5%; top: 8%; } .n2 { left: 28%; top: 1%; } .n3 { right: 25%; top: 1%; } .n4 { right: 4%; top: 10%; }
.n5 { left: 1%; top: 41%; } .n6 { right: 1%; top: 41%; }
.n7 { left: 6%; bottom: 7%; } .n8 { left: 29%; bottom: 0; } .n9 { right: 26%; bottom: 0; } .n10 { right: 5%; bottom: 8%; }
.integration-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 64px; }

/* ==========================================================================
   Content update — Social Proof / Problem / Product Intro / What It Does /
   Testimonials. New components not present in the original HTML file;
   built to match its existing design language (cards, gradients, tokens).
   ========================================================================== */
.section-center { text-align: center; }
.section-center .section-label { justify-content: center; }
.section-center .section-heading, .section-center .section-copy { margin-inline: auto; }
.section-cta-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 40px; }

/* Social proof bar */
.social-proof { padding: 44px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.social-proof-label { text-align: center; color: var(--text-muted); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; margin: 0 0 28px; }
.social-proof-logos { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 44px; margin-bottom: 28px; }
.social-proof-logos img { height: 26px; width: auto; opacity: .5; filter: grayscale(1) brightness(1.7); transition: .25s var(--ease); }
.social-proof-logos img:hover { opacity: 1; filter: none; }
.social-proof-logos .logo-text { font-family: "Manrope", sans-serif; font-weight: 800; font-size: 18px; color: var(--text-muted); opacity: .55; letter-spacing: -.01em; transition: opacity .25s var(--ease); }
.social-proof-logos .logo-text:hover { opacity: .9; }
.social-proof-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 24px; color: var(--text-muted); font-size: 13px; }
.social-proof-badges span { display: inline-flex; align-items: center; gap: 7px; }

/* Problem: pain-card grid (reuses .feature-card visual language on a simpler grid) */
.pain-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 48px; }
.pain-grid .feature-card { grid-column: auto; min-height: 220px; }

/* Problem: comparison table */
.compare-table { margin-top: 56px; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; background: rgba(255, 255, 255, .03); }
.compare-row { display: grid; grid-template-columns: 1fr 1fr; }
.compare-row + .compare-row { border-top: 1px solid var(--border); }
.compare-row.head { background: rgba(255, 255, 255, .045); }
.compare-cell { padding: 18px 24px; font-size: 14px; line-height: 1.5; }
.compare-cell.miss { color: var(--text-secondary); border-right: 1px solid var(--border); }
.compare-cell.miss::before { content: "✕  "; color: #ff6b81; font-weight: 700; }
.compare-cell.have { color: #fff; }
.compare-cell.have::before { content: "✓  "; color: #4ade80; font-weight: 700; }
.compare-row.head .compare-cell { font-weight: 700; text-transform: uppercase; font-size: 11px; letter-spacing: .08em; color: var(--text-muted); }
.compare-row.head .compare-cell::before { content: ""; }

/* What It Does: 4-step flow */
.wid-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 48px; }
.wid-card { padding: 28px 22px; border: 1px solid var(--border); border-radius: var(--radius-lg); background: linear-gradient(145deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .02)); text-align: center; transition: .3s var(--ease); }
.wid-card:hover { transform: translateY(-6px); border-color: rgba(255, 255, 255, .18); }
.wid-num { display: inline-grid; place-items: center; width: 36px; height: 36px; border-radius: 50%; background: var(--gradient); font-family: "Manrope", sans-serif; font-weight: 800; font-size: 14px; margin-bottom: 14px; }
.wid-icon { font-size: 24px; margin-bottom: 8px; }
.wid-card h3 { font-family: "Manrope", sans-serif; font-size: 17px; margin: 4px 0 10px; letter-spacing: -.01em; }
.wid-card p { font-size: 13.5px; line-height: 1.6; color: var(--text-secondary); margin: 0; }

/* Results: testimonial cards */
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; margin-top: 40px; }
.testimonial-card { padding: 26px; border: 1px solid var(--border); border-radius: var(--radius-lg); background: rgba(255, 255, 255, .04); }
.testimonial-quote { font-size: 14.5px; line-height: 1.6; color: #fff; margin: 0 0 18px; }
.testimonial-author strong { display: block; font-size: 13px; }
.testimonial-author span { display: block; margin-top: 2px; color: var(--text-muted); font-size: 12px; }

@media (max-width: 1120px) {
  .wid-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 820px) {
  .pain-grid { grid-template-columns: 1fr; }
  .compare-row { grid-template-columns: 1fr; }
  .compare-cell.miss { border-right: 0; border-bottom: 1px solid var(--border); }
  .social-proof-logos { gap: 30px; }
}
@media (max-width: 560px) {
  .wid-grid { grid-template-columns: 1fr; }
}

.faq-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 68px; align-items: start; }
.faq-sticky { position: sticky; top: 125px; }
.faq-list { display: grid; gap: 12px; }
.faq-item {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 255, 255, .045);
  transition: .25s var(--ease);
}
.faq-item:hover, .faq-item.open { border-color: rgba(255, 255, 255, .17); background: rgba(255, 255, 255, .062); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 21px 22px;
  border: 0;
  text-align: left;
  background: transparent;
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}
.faq-plus {
  flex: 0 0 auto;
  position: relative;
  width: 30px; height: 30px;
  margin-left: 16px;
  border: 1px solid var(--border-bright);
  border-radius: 9px;
  background: rgba(255, 255, 255, .05);
  transition: .25s var(--ease);
}
.faq-plus::before, .faq-plus::after { content: ""; position: absolute; top: 50%; left: 50%; width: 12px; height: 1.5px; background: #fff; transform: translate(-50%, -50%); transition: .25s var(--ease); }
.faq-plus::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item.open .faq-plus { background: var(--gradient); border-color: transparent; transform: rotate(45deg); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .38s var(--ease); }
.faq-item.open .faq-answer { grid-template-rows: 1fr; }
.faq-answer-inner { overflow: hidden; }
.faq-answer p { margin: 0; padding: 0 22px 22px; color: var(--text-secondary); font-size: 14px; }
.faq-answer p a { color: #f3c9ff; font-weight: 700; text-decoration: none; }
.faq-answer p a:hover { text-decoration: underline; }

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 82px 34px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 36px;
  background:
    radial-gradient(circle at 50% -10%, rgba(240, 74, 166, .36), transparent 36%),
    radial-gradient(circle at 0 100%, rgba(123, 77, 255, .28), transparent 35%),
    radial-gradient(circle at 100% 100%, rgba(255, 138, 61, .17), transparent 30%),
    linear-gradient(145deg, rgba(62, 18, 96, .9), rgba(26, 4, 44, .95));
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, .11);
}
.final-cta::before, .final-cta::after { content: ""; position: absolute; border-radius: 50%; border: 1px solid rgba(255, 255, 255, .06); }
.final-cta::before { width: 480px; height: 480px; top: -300px; left: -100px; }
.final-cta::after { width: 560px; height: 560px; right: -250px; bottom: -400px; }
.final-cta h2 { position: relative; max-width: 880px; margin: 0 auto; font-family: "Manrope", sans-serif; font-size: clamp(2.4rem, 5vw, 5rem); line-height: 1.02; letter-spacing: -.055em; }
.final-cta p { position: relative; max-width: 690px; margin: 22px auto 0; color: var(--text-secondary); font-size: 17px; }
.final-actions { position: relative; display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 30px; }
.final-note { position: relative; margin-top: 20px; color: var(--text-muted); font-size: 13px; }

footer { padding: 76px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.45fr repeat(3, 1fr); gap: 58px; }
.footer-brand .brand { margin-bottom: 20px; }
.footer-brand p { max-width: 350px; margin: 0; color: var(--text-secondary); }
.footer-title { margin: 3px 0 17px; color: #fff; font-family: "Manrope", sans-serif; font-size: 14px; }
.footer-links { display: grid; gap: 10px; }
.footer-links a { width: fit-content; color: var(--text-muted); font-size: 13px; transition: .2s var(--ease); }
.footer-links a:hover { color: #fff; transform: translateX(4px); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 58px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 12px;
}
.footer-legal { display: flex; flex-wrap: wrap; gap: 16px; }
.footer-legal a:hover { color: #fff; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s var(--ease), transform .75s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
.stagger > * { opacity: 0; transform: translateY(20px); }
.stagger.visible > * { animation: revealItem .65s var(--ease) forwards; }
.stagger.visible > *:nth-child(2) { animation-delay: .08s; }
.stagger.visible > *:nth-child(3) { animation-delay: .16s; }
.stagger.visible > *:nth-child(4) { animation-delay: .24s; }
.stagger.visible > *:nth-child(5) { animation-delay: .32s; }
.stagger.visible > *:nth-child(6) { animation-delay: .4s; }

@keyframes shine { to { transform: translateX(100%); } }
@keyframes pulse { 50% { box-shadow: 0 0 0 10px rgba(255, 138, 61, 0), 0 0 28px rgba(255, 138, 61, .75); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes drift { to { transform: translate3d(40px, 28px, 0) scale(1.08); } }
@keyframes aurora { 0% { transform: translate3d(-2%, 0, 0) scale(1); } 100% { transform: translate3d(3%, 3%, 0) scale(1.08); } }
@keyframes scrollDown { 0% { opacity: 0; transform: translate(-50%, 0); } 35% { opacity: 1; } 100% { opacity: 0; transform: translate(-50%, 18px); } }
@keyframes drawLine { to { stroke-dashoffset: 0; } }
@keyframes rotateSlow { to { transform: rotate(360deg); } }
@keyframes revealItem { to { opacity: 1; transform: none; } }

/* Navigation fix: keep the mobile navigation completely out of the desktop flow. */
.mobile-menu { display: none; }
.nav-wrap { isolation: isolate; }
.navbar { position: relative; z-index: 2; }
.nav-links { min-width: 0; justify-content: center; }
.nav-item { flex: 0 0 auto; }
.mega-menu { z-index: 120; }

/* Mixed light and dark theme sections */
#value-levers,
#how-it-works {
  color: #201032;
  background:
    radial-gradient(circle at 7% 14%, rgba(123, 77, 255, .11), transparent 25%),
    radial-gradient(circle at 92% 82%, rgba(240, 74, 166, .09), transparent 24%),
    linear-gradient(180deg, #fbf9ff 0%, #f4f0fb 100%);
}
#value-levers::before,
#how-it-works::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .42;
  background-image:
    linear-gradient(rgba(64, 32, 92, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(64, 32, 92, .035) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, transparent, #000 14%, #000 86%, transparent);
}
#value-levers .container,
#how-it-works .container { position: relative; z-index: 1; }
#value-levers .section-label,
#how-it-works .section-label { color: #6f35c8; }
#value-levers .section-heading,
#how-it-works .section-heading,
#value-levers h3,
#how-it-works h3 { color: #1f0d31; }
#value-levers .section-copy,
#how-it-works .section-copy,
#value-levers .feature-card p,
#how-it-works .step-card p { color: #62556f; }

#value-levers .feature-card {
  border-color: rgba(58, 25, 91, .10);
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 20px 55px rgba(53, 26, 81, .08), inset 0 1px 0 #fff;
  backdrop-filter: blur(15px);
}
#value-levers .feature-card:hover {
  border-color: rgba(123, 77, 255, .28);
  box-shadow: 0 28px 70px rgba(79, 42, 112, .14), inset 0 1px 0 #fff;
}
#value-levers .feature-icon {
  color: #fff;
  border-color: rgba(123, 77, 255, .16);
  background: linear-gradient(135deg, #7b4dff, #f04aa6 62%, #ff8a3d);
  box-shadow: 0 12px 28px rgba(123, 77, 255, .22);
}
#value-levers .feature-benefit { color: #7d359e; }

#how-it-works .steps-line {
  background: linear-gradient(90deg, transparent, rgba(123,77,255,.28), rgba(240,74,166,.38), rgba(255,138,61,.26), transparent);
}
#how-it-works .step-number {
  color: #fff;
  border-color: rgba(123, 77, 255, .18);
  background: linear-gradient(145deg, #3b1761, #200d35);
  box-shadow: 0 0 0 8px rgba(123, 77, 255, .06), 0 14px 30px rgba(53, 26, 81, .15);
}

/* Light visual bridge between the dark hero and content */
.metric-strip .metric-grid {
  color: #241035;
  border-color: rgba(66, 31, 96, .11);
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 22px 60px rgba(18, 2, 31, .22);
}
.metric-strip .metric-label { color: #71647d; }
.metric-strip .metric-item:not(:last-child)::after { background: rgba(54, 25, 80, .10); }

@media (max-width: 1120px) {
  .mobile-menu { display: block; }
}

@media (max-width: 1120px) {
  .nav-links { display: none; }
  .mobile-toggle { display: block; }
  .nav-actions .btn-secondary { display: none; }
  .mobile-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0; right: 0;
    max-height: 0;
    overflow: auto;
    border: 0 solid var(--border-bright);
    border-radius: 20px;
    background: rgba(24, 3, 42, .97);
    backdrop-filter: blur(24px);
    box-shadow: var(--shadow);
    opacity: 0;
    transition: .35s var(--ease);
  }
  .mobile-menu.open { max-height: calc(100vh - 112px); padding: 14px; border-width: 1px; opacity: 1; }
  .mobile-section { padding: 10px 4px 13px; border-bottom: 1px solid var(--border); }
  .mobile-section:last-child { border-bottom: 0; }
  .mobile-section strong { display: block; padding: 7px 8px; color: #fff; font-size: 13px; }
  .mobile-section a { display: block; padding: 8px; color: var(--text-secondary); font-size: 13px; border-radius: 8px; }
  .mobile-section a:hover { color: #fff; background: rgba(255, 255, 255, .06); }
  .hero-grid { grid-template-columns: 1fr; gap: 35px; }
  .hero { padding-top: 150px; }
  .hero-copy, .hero h1 { max-width: 850px; }
  .hero-visual { width: min(780px, 100%); margin-inline: auto; }
  .results-grid { grid-template-columns: 1fr; }
  .faq-layout { grid-template-columns: 1fr; gap: 38px; }
  .faq-sticky { position: static; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-grid > :last-child { grid-column: 2 / -1; }
  /* The absolute-positioned orbit only has room to breathe at full container width;
     below that the fixed-width nodes start crowding/overlapping each other, so
     switch to a plain grid earlier than the 820px mobile breakpoint. */
  .integration-cloud { min-height: auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 40px; }
  .integration-center, .orbit, .connector-lines { display: none; }
  .integration-node { position: static; width: 100%; }
}

@media (max-width: 820px) {
  :root { --container: min(100% - 28px, 720px); }
  .section { padding: 84px 0; }
  .hero { min-height: auto; padding-bottom: 54px; }
  .dashboard { inset: 55px 0 auto; transform: none; }
  .hero-visual { min-height: 590px; }
  .metric-grid { grid-template-columns: repeat(2, 1fr); }
  .metric-item:nth-child(2)::after { display: none; }
  .metric-item:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
  .video-frame { min-height: 480px; }
  .video-screen { inset: 78px 26px 48px; }
  .feature-card, .feature-card:nth-child(1), .feature-card:nth-child(2), .feature-card:nth-child(5), .feature-card:nth-child(6) { grid-column: span 6; }
  .steps-grid { grid-template-columns: 1fr 1fr; gap: 30px 18px; }
  .steps-grid .step-card:last-child { grid-column: 1 / -1; width: 50%; margin-inline: auto; }
  .steps-line { display: none; }
  .integration-cloud { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-brand { grid-column: 1 / -1; }
  .footer-grid > :last-child { grid-column: auto; }
}

@media (max-width: 560px) {
  .nav-wrap { top: 10px; width: calc(100% - 18px); }
  .navbar { min-height: 61px; padding: 8px 8px 8px 12px; border-radius: 18px; }
  .brand { min-width: 128px; height: 38px; padding: 4px 10px; }
  .brand img { width: 109px; }
  .nav-actions .btn-primary { display: none; }
  .hero { padding-top: 118px; }
  .hero h1 { font-size: clamp(3.1rem, 16vw, 4.6rem); }
  .hero-subhead { font-size: 1.17rem; }
  .hero-copy { font-size: 15px; }
  .hero-actions { display: grid; }
  .hero-actions .btn { width: 100%; }
  .hero-trust { display: grid; gap: 8px; }
  .hero-visual { min-height: 500px; margin-top: 10px; }
  .dashboard { inset: 58px 0 auto; }
  .dashboard-body { grid-template-columns: 76px 1fr; min-height: 365px; }
  .dashboard-side { padding: 15px 8px; }
  .dash-logo { width: 48px; height: 18px; }
  .side-lines { margin-top: 19px; gap: 8px; }
  .side-line { height: 22px; }
  .dashboard-main { padding: 13px; }
  .dash-kpis { gap: 6px; }
  .dash-kpi { padding: 8px; }
  .dash-kpi strong { font-size: 13px; }
  .chart-card { padding: 10px; }
  .chart { height: 90px; }
  .signal-row { gap: 5px; }
  .signal-box { padding: 7px; }
  .float-card { padding: 11px 12px; }
  .float-card strong { font-size: 17px; }
  .float-card.a { right: 5px; }
  .float-card.b { left: -3px; bottom: 40px; }
  .float-card.c { display: none; }
  .insight-card { left: 10%; width: 84%; bottom: 0; }
  .scroll-cue { display: none; }
  .metric-item { padding: 24px 16px; }
  .metric-label { font-size: 11px; }
  .video-frame { min-height: 430px; }
  .video-badge.one { left: 12px; top: 98px; }
  .video-badge.two { right: 12px; bottom: 18px; }
  .video-screen { inset: 70px 14px 36px; }
  .features-grid { display: grid; grid-template-columns: 1fr; }
  .feature-card, .feature-card:nth-child(1), .feature-card:nth-child(2), .feature-card:nth-child(5), .feature-card:nth-child(6) { grid-column: 1; min-height: 330px; }
  .result-cards { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; gap: 30px; }
  .steps-grid .step-card:last-child { grid-column: auto; width: auto; }
  .quote-panel { padding: 44px 25px; }
  .integration-cloud { grid-template-columns: 1fr; }
  .faq-question { padding: 18px; font-size: 14px; }
  .faq-answer p { padding: 0 18px 18px; }
  .final-cta { padding: 62px 20px; border-radius: 28px; }
  .final-actions { display: grid; }
  .footer-grid { grid-template-columns: 1fr; gap: 35px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal, .stagger > * { opacity: 1; transform: none; }
}

/* ==========================================================================
   Legacy compat overrides
   onelenz.css carries a hard-coded "white card" treatment (background:
   #fff !important) on a handful of class names — including .faq-item and
   .step-card — which this redesign also uses. !important beats any normal
   rule regardless of specificity or source order, so these two classes
   need their own !important to win back the intended dark/borderless look.
   ========================================================================== */
.faq-item {
  background: rgba(255, 255, 255, .045) !important;
  border-color: var(--border) !important;
  box-shadow: none !important;
  color: inherit !important;
}
.faq-item:hover, .faq-item.open {
  border-color: rgba(255, 255, 255, .17) !important;
  background: rgba(255, 255, 255, .062) !important;
}
.step-card {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}
