/* ============================================================
   Leadnodes — Swipix-inspired theme (framed / boxed, light)
   ============================================================ */

:root {
  /* palette — Leadnodes brand */
  --bg:        #ffffff;
  --box:       #f4f7ff;   /* light-blue panel */
  --surface:   #ffffff;
  --surface-2: #f4f7ff;
  --guide:     #e5e7eb;   /* light-border-gray */
  --line:      #e5e7eb;   /* light-border-gray */
  --line-2:    #d7dbe6;   /* slightly stronger border */

  --text:      #0f2755;   /* dark-blue / body-text-dark */
  --muted:     #3f5567;   /* body-text-light */
  --faint:     #7c8ba2;

  --violet:    #2050c5;   /* brand-blue (primary) */
  --violet-2:  #1a43a8;   /* darker hover */
  --pink:      #4a90ff;   /* secondary light blue accent */
  --green:     #2050c5;   /* eyebrow → brand-blue */
  --ink:       #0f2755;   /* dark-blue button / sections */
  --plus:      rgba(15,39,85,.30);   /* intersection plus marks */

  --grad:      linear-gradient(120deg, #3b6fe0 0%, #2050c5 48%, #0f2755 115%);
  --grad-soft: linear-gradient(135deg, rgba(32,80,197,.12), rgba(15,39,85,.07));

  --radius:    0px;   /* square boxes */
  --radius-lg: 0px;
  --shadow:    none;   /* flat boxes — defined by borders / grid lines */

  /* framed layout */
  --frame-w:   min(100% - 16px, 1280px);
  --pad:       clamp(20px, 4.2vw, 60px);

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- reset ---------- */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: "Inter", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img, svg { display: block; max-width: 100%; }
h1,h2,h3,h4,h5 { font-family: "Inter", sans-serif; line-height: 1.05; letter-spacing: -.025em; font-weight: 700; }

/* ---------- the frame + guides ---------- */
.frame { width: var(--frame-w); margin-inline: auto; padding-inline: var(--pad); }
.guides {
  position: fixed; top: 0; bottom: 0; left: 50%; transform: translateX(-50%);
  width: var(--frame-w); border-inline: 1px solid var(--guide);
  pointer-events: none; z-index: 0;   /* behind content; opaque sections hide them, transparent ones reveal them */
}
main, .footer { position: relative; z-index: 1; }

.grad {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ---------- buttons ---------- */
.btn {
  --pad-y: .8rem; --pad-x: 1.75rem;
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: var(--pad-y) var(--pad-x);
  border-radius: 12px; font-weight: 600; font-size: .95rem;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, border-color .25s, color .25s;
  white-space: nowrap;
}
.btn--sm { --pad-y: .6rem; --pad-x: 1.3rem; font-size: .88rem; }
.btn--lg { --pad-y: .95rem; --pad-x: 2.1rem; font-size: 1rem; }
.btn--block { width: 100%; }
.btn--primary { background: var(--violet); color: #fff; box-shadow: 0 12px 26px -12px rgba(32,80,197,.7); }
.btn--primary::after { content: "→"; transition: transform .2s var(--ease); }   /* arrow on every primary button */
.btn--primary:hover::after { transform: translateX(3px); }
.btn--primary:hover { transform: translateY(-2px); background: var(--violet-2); box-shadow: 0 18px 36px -14px rgba(32,80,197,.8); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { transform: translateY(-2px); background: #16336e; }
.btn--ghost { background: #fff; color: var(--text); border-color: var(--line-2); }
.btn--ghost:hover { transform: translateY(-2px); border-color: var(--violet); color: var(--violet); }

.link-quiet { color: var(--muted); font-weight: 500; font-size: .92rem; transition: color .2s; }
.link-quiet:hover { color: var(--text); }

/* ---------- eyebrow ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .45rem;
  font-size: .82rem; font-weight: 600; letter-spacing: .04em; line-height: 1;
  color: var(--green); margin-bottom: .9rem;
}
.eyebrow--hero { font-size: .95rem; margin-bottom: 1.4rem; }

/* pulsing live dot in front of eyebrow labels */
.dot-wrapper { position: relative; display: inline-flex; flex: none; width: 8px; height: 8px; transform: translateY(0.5px); }
.div-block-11 { position: relative; width: 8px; height: 8px; border-radius: 50%; background: currentColor; }
.div-block-11::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  background: currentColor; opacity: .55;
  animation: dotPulse 1.8s var(--ease) infinite;
}
@keyframes dotPulse { to { transform: scale(3); opacity: 0; } }

/* ---------- nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  background: transparent;                 /* transparent at the top */
  border-bottom: 1px solid var(--guide);   /* bottom guide always visible */
  transition: background .3s, backdrop-filter .3s, -webkit-backdrop-filter .3s, transform .4s var(--ease);
  animation: navDrop .6s var(--ease) backwards;
}
.nav.scrolled {                            /* frosted glass once scrolled */
  background: rgba(255,255,255,.7);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
}
.nav--hidden { transform: translateY(-100%); }        /* hide on scroll down, reveal on scroll up */
@keyframes navDrop { from { transform: translateY(-100%); } }
@keyframes navItem { from { opacity: 0; transform: translateY(-8px); } }

.nav__inner { display: flex; align-items: center; height: 74px; position: relative; border-inline: 1px solid var(--guide); }
.nav__links { display: flex; gap: 2rem; flex: 1; justify-content: center; }
.nav__links a { color: var(--text); font-size: .94rem; font-weight: 500; transition: color .2s; }
.nav__links a:hover { color: var(--violet); }
.nav__links > a[aria-current="page"] { color: var(--violet); font-weight: 600; }
.nav__actions { display: flex; align-items: center; gap: 1.1rem; margin-left: auto; }

/* language switcher */
.lang { position: relative; }
.lang__btn { display: inline-flex; align-items: center; gap: .35rem; background: none; border: 0; cursor: pointer; color: var(--muted); font: inherit; font-size: .9rem; font-weight: 500; padding: .4rem .1rem; transition: color .2s; }
.lang__btn:hover { color: var(--text); }
.lang__btn > svg:first-child { width: 17px; height: 17px; }
.lang__chev { width: 13px; height: 13px; transition: transform .2s; }
.lang.open .lang__chev { transform: rotate(180deg); }
.lang__menu {
  position: absolute; top: calc(100% + 10px); right: 0; min-width: 150px;
  background: #fff; border: 1px solid var(--line-2); border-radius: 10px;
  box-shadow: 0 18px 44px -18px rgba(15,39,85,.35); padding: .35rem; display: none; z-index: 120;
}
.lang.open .lang__menu { display: block; animation: modalFade .15s var(--ease); }
.lang__opt { display: flex; align-items: center; width: 100%; text-align: left; background: none; border: 0; cursor: pointer; font: inherit; font-size: .92rem; color: var(--text); padding: .55rem .65rem; border-radius: 7px; transition: background .15s; }
.lang__opt:hover { background: var(--box); }
.lang__opt.is-active { color: var(--violet); font-weight: 600; }

/* staggered entrance for the nav contents */
.brand, .nav__links a, .nav__actions > * { animation: navItem .5s var(--ease) backwards; }
.brand { animation-delay: .22s; }
.nav__links a:nth-child(1) { animation-delay: .28s; }
.nav__links a:nth-child(2) { animation-delay: .33s; }
.nav__links a:nth-child(3) { animation-delay: .38s; }
.nav__links a:nth-child(4) { animation-delay: .43s; }
.nav__links a:nth-child(5) { animation-delay: .48s; }
.nav__actions > *:nth-child(1) { animation-delay: .42s; }
.nav__actions > *:nth-child(2) { animation-delay: .5s; }

.brand { display: inline-flex; align-items: center; }
.brand__logo { height: 26px; width: auto; }

.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav__burger span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: .3s; }
.nav__burger[aria-expanded="true"] span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2){ opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

/* ---------- hero (split: copy left, gradient media panel bleeding right) ---------- */
/* full-width bg naturally covers the (z-index:0) guides → no vertical guides in the hero */
.hero {
  position: relative; isolation: isolate;
  padding-top: 74px;
  background: linear-gradient(180deg, var(--box) 0%, #ffffff 70%);
  border-bottom: 1px solid var(--guide);
  overflow: hidden;   /* clip the media panel bleeding past the right edge */
}
/* Stripe-style animated gradient mesh, concentrated at the top, fading to white */
.hero::before {
  content: ""; position: absolute; inset: -25% -15% 20% -15%; z-index: -1; pointer-events: none;
  background:
    radial-gradient(34% 46% at 16% 20%, #74b0ff 0%, transparent 60%),
    radial-gradient(32% 42% at 80% 12%, #2f6bff 0%, transparent 60%),
    radial-gradient(40% 50% at 54% 54%, #79d2ff 0%, transparent 62%),
    radial-gradient(34% 44% at 30% 80%, #3b6fe0 0%, transparent 60%),
    radial-gradient(30% 40% at 90% 62%, #9b8cff 0%, transparent 60%);
  filter: blur(60px); opacity: .55;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 42%, transparent 85%);
          mask-image: linear-gradient(180deg, #000 0%, #000 42%, transparent 85%);
  animation: heroMesh 24s ease-in-out infinite alternate;
}
@keyframes heroMesh {
  0%   { transform: translate3d(-2%, -1%, 0) scale(1.05) rotate(0deg); }
  100% { transform: translate3d(3%, 2%, 0) scale(1.14) rotate(5deg); }
}
.hero__box {
  position: relative;
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.04fr);
  align-items: stretch; gap: clamp(1.5rem, 3vw, 3.5rem);
  border-inline: 1px solid var(--guide);   /* redraw the vertical guides over the opaque hero bg */
}
.hero__inner {
  display: flex; flex-direction: column; align-items: flex-start; text-align: left;
  justify-content: center;
  padding-block: clamp(56px, 8vw, 116px);
}
.eyebrow--hero { font-size: .98rem; margin-bottom: 1.5rem; gap: .55rem; }
.eyebrow--hero svg { color: var(--violet); }

/* staggered hero entrance on load */
@keyframes heroUp { from { opacity: 0; transform: translateY(22px); } }
@keyframes heroMedia { from { opacity: 0; transform: translateY(30px) scale(.985); } }
.hero__inner > .eyebrow--hero { animation: heroUp .7s var(--ease) .1s backwards; }
.hero__title { animation: heroUp .7s var(--ease) .22s backwards; }
.hero__sub   { animation: heroUp .7s var(--ease) .34s backwards; }
.hero__cta   { animation: heroUp .7s var(--ease) .46s backwards; }
.hero__media { animation: heroMedia .9s var(--ease) .34s backwards; }

.hero__title {
  font-size: clamp(2.6rem, 5.4vw, 4.6rem); font-weight: 700; color: var(--text);
  letter-spacing: -.03em; line-height: 1.02; margin-bottom: 1.5rem; max-width: 12ch;
}
.hero__sub { color: var(--muted); font-size: clamp(1.05rem, 1.5vw, 1.2rem); max-width: 42ch; margin: 0 0 2.4rem; }
.hero__cta { display: flex; gap: .9rem; flex-wrap: wrap; justify-content: flex-start; }

/* right side: dashboard screenshot, bleeding off the right & bottom edges */
.hero__media {
  position: relative; align-self: stretch;
  overflow: hidden;
  margin-right: calc(-1 * var(--pad));
  min-height: clamp(380px, 42vw, 600px);
}
.hero__media img {
  position: absolute; top: clamp(48px, 6vw, 96px); left: 0;
  width: clamp(420px, 45vw, 640px); height: auto; max-width: none;
  border: 1px solid var(--line-2); border-radius: 10px;
  box-shadow: -24px 30px 70px -34px rgba(15,39,85,.4);
}

/* pulsing play button over the hero image */
.hero__play {
  position: absolute; top: 50%; left: clamp(180px, 24vw, 320px);
  transform: translate(-50%, -50%); z-index: 3;
  width: 76px; height: 76px; padding: 0; border: 0; background: none; cursor: pointer;
}
.hero__play-ring {
  position: absolute; inset: 0; border-radius: 50%;
  background: rgba(32,80,197,.4); animation: playPulse 2.6s ease-out infinite;
}
.hero__play-ring:nth-of-type(2) { animation-delay: 1.3s; }
.hero__play-btn {
  position: relative; z-index: 1; display: grid; place-items: center;
  width: 76px; height: 76px; border-radius: 50%; background: #fff; color: var(--violet);
  box-shadow: 0 16px 40px -12px rgba(15,39,85,.5); transition: transform .2s;
}
.hero__play-btn svg { width: 27px; height: 27px; margin-left: 4px; }
.hero__play:hover .hero__play-btn { transform: scale(1.07); }
.hero__play:focus-visible { outline: 2px solid var(--violet); outline-offset: 4px; border-radius: 50%; }
@keyframes playPulse { 0% { transform: scale(1); opacity: .55; } 100% { transform: scale(2.1); opacity: 0; } }

/* video lightbox */
.video-modal { position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center; padding: clamp(16px, 4vw, 48px); }
.video-modal.open { display: flex; animation: modalFade .25s var(--ease); }
.video-modal__overlay { position: absolute; inset: 0; background: rgba(15,39,85,.72); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
.video-modal__inner { position: relative; z-index: 1; width: min(100%, 980px); }
.video-modal__frame { position: relative; padding-top: 56.25%; background: #000; border-radius: 14px; overflow: hidden; box-shadow: 0 40px 110px -20px rgba(0,0,0,.65); }
.video-modal__frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-modal__close { position: absolute; top: -46px; right: -4px; width: 40px; height: 40px; background: none; border: 0; color: #fff; font-size: 2rem; line-height: 1; cursor: pointer; opacity: .85; transition: opacity .2s; }
.video-modal__close:hover { opacity: 1; }
@keyframes modalFade { from { opacity: 0; } }

/* ---------- client logos ---------- */
.logos { background: var(--bg); }
.logos__box { padding-inline: 0; border-inline: 1px solid var(--guide); }
.logos__label { text-align: center; color: var(--faint); font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; padding: 30px var(--pad); }
/* auto-scrolling logo marquee */
.logos__marquee {
  position: relative; overflow: hidden; border-top: 1px solid var(--guide);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.logos__track { display: flex; width: max-content; animation: logoScroll 32s linear infinite; }
.logos__marquee:hover .logos__track { animation-play-state: paused; }
.logos__item {
  flex: none; display: grid; place-items: center;
  width: clamp(170px, 18vw, 230px); min-height: 104px; padding: 20px 30px;
}
.logos__item img { height: 32px; width: auto; max-width: 100%; object-fit: contain; opacity: 1; }
@keyframes logoScroll { to { transform: translateX(-50%); } }

/* ---------- sections ---------- */
.section { padding-block: 0; }
/* horizontal grid line + even spacing, spanning guide-to-guide */
.section > .frame { padding-block: clamp(64px, 8vw, 100px); border-top: 1px solid var(--guide); }
/* diagonal hatch band in the empty space below select sections (before platform / testimonials / integrations) */
#features > .frame, #pricing > .frame, #testimonials > .frame {
  background: repeating-linear-gradient(45deg, rgba(15,39,85,.05) 0 1px, transparent 1px 9px)
              left bottom / 100% clamp(64px, 8vw, 100px) no-repeat;
}
/* FAQ → footer transition (e.g. demo page): hatch band in the footer's top gap (line = footer border-top) */
#faq + .footer {
  background-image: repeating-linear-gradient(45deg, rgba(15,39,85,.05) 0 1px, transparent 1px 9px);
  background-repeat: no-repeat; background-position: left top; background-size: 100% 60px;
}
/* FAQ → CTA transition: guide line + hatch band in the CTA's top gap (mirrors the section's top) */
#faq + .cta { position: relative; }
#faq + .cta::before {
  content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: var(--frame-w); height: clamp(40px, 6vw, 80px); pointer-events: none; z-index: 0;
  border-top: 1px solid var(--guide);
  background: repeating-linear-gradient(45deg, rgba(15,39,85,.05) 0 1px, transparent 1px 9px) left top / 100% 100% no-repeat;
}
.section--tight > .frame { padding-block: clamp(40px, 5vw, 64px); }
.section__head { max-width: 640px; margin: 0 auto 3rem; text-align: center; }
.section__head .eyebrow { justify-content: center; }
.section__head h2 { font-size: clamp(1.9rem,4vw,2.9rem); margin-bottom: 1rem; }
.section__head p { color: var(--muted); font-size: 1.05rem; }

/* light boxed panel (platform / integrations) — frame-width vertical guides */
.panelbox {
  border-inline: 1px solid var(--guide);
  padding-block: clamp(92px, 9.5vw, 136px) clamp(48px, 6vw, 76px) !important;
}
/* full-width light background + top/bottom guide lines for the light panel sections */
.section:has(> .panelbox) {
  position: relative; isolation: isolate;
  border-block: 1px solid var(--guide);
  background: linear-gradient(180deg, var(--box) 0%, #ffffff 82%);
}
/* same blurred gradient mesh as the hero, lighter */
.section:has(> .panelbox)::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(34% 58% at 16% 0%, #74b0ff 0%, transparent 60%),
    radial-gradient(32% 54% at 80% 4%, #2f6bff 0%, transparent 60%),
    radial-gradient(42% 70% at 60% 112%, #79d2ff 0%, transparent 62%),
    radial-gradient(30% 50% at 92% 60%, #9b8cff 0%, transparent 60%);
  filter: blur(60px); opacity: .42;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 45%, transparent 92%);
          mask-image: linear-gradient(180deg, #000 0%, #000 45%, transparent 92%);
}

/* ---------- stats ---------- */
.stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.2rem; }
.stat { text-align: left; padding: 1.6rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow); }
.stat__num { display: block; font-family: "Inter"; font-size: clamp(2rem,4.5vw,3rem); font-weight: 700; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat__label { color: var(--muted); font-size: .95rem; }

/* ---------- feature columns (borderless, divider-separated) ---------- */
.cards {
  display: grid; grid-template-columns: repeat(4,1fr);
  margin-inline: calc(var(--pad) * -1);
  border-block: 1px solid var(--guide);
}
.card {
  position: relative; display: flex; flex-direction: column;
  padding: clamp(2rem,3vw,2.6rem) clamp(1.4rem,1.9vw,1.8rem);
  border-left: 1px solid var(--guide);
}
.card:first-child { border-left: none; }
.card__icon { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: var(--grad-soft); border: 1px solid var(--line-2); color: var(--violet); margin-bottom: 1.1rem; }
.card__icon svg { width: 23px; height: 23px; }
.card h3 { font-size: 1.18rem; margin-bottom: .55rem; }
.card p { color: var(--muted); font-size: .93rem; margin-bottom: 1.2rem; flex: 1; }
.card__link { color: var(--violet); font-weight: 600; font-size: .9rem; margin-top: auto; }
.card__link:hover { color: var(--pink); }

/* ---------- tabs ---------- */
/* full-bleed to the panel's guide edges; also eat the panel's bottom padding so the visual reaches the bottom guide */
.tabs { margin-inline: calc(-1 * var(--pad)); margin-bottom: calc(-1 * clamp(48px, 6vw, 76px)); }
.tabs__nav { display: grid; grid-template-columns: repeat(4, 1fr); border-block: 1px solid var(--guide); }
.tab {
  display: flex; align-items: center; justify-content: center; gap: .55rem;
  padding: 1.05rem .9rem; font-size: .98rem; font-weight: 500; white-space: nowrap;
  background: transparent; border: 0; border-left: 1px solid var(--guide);
  color: var(--muted); cursor: pointer; transition: background .2s, color .2s;
}
.tab:first-child { border-left: 0; }
.tab svg { width: 18px; height: 18px; }
.tab:hover { color: var(--text); }
.tab.active { background: #fff; color: var(--violet); font-weight: 600; }
.tab:focus-visible { outline: 2px solid var(--violet); outline-offset: -2px; }

.tabpanel { display: none; grid-template-columns: 1fr 1fr; gap: 0; align-items: stretch; }
.tabpanel.active { display: grid; animation: fade .4s var(--ease); }
@keyframes fade { from { opacity: 0; transform: translateY(10px); } }
.tabpanel__text {
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(2.4rem,4vw,3.6rem) clamp(1.8rem,3vw,3rem) clamp(2.4rem,4vw,3.6rem) var(--pad);
}
.tabpanel__text h3 { font-size: clamp(1.5rem,2.6vw,2.1rem); margin-bottom: 1rem; }
.tabpanel__text p { color: var(--muted); margin-bottom: 1.6rem; max-width: 46ch; }

.tags { display: flex; flex-wrap: wrap; gap: .9rem 1.6rem; margin-bottom: 1.7rem; }
.tags li { display: inline-flex; align-items: center; gap: .55rem; color: #16a34a; font-weight: 600; font-size: .95rem; }
.tags li::before { content: "✓"; width: 19px; height: 19px; border-radius: 6px; background: rgba(22,163,74,.14); display: grid; place-items: center; font-size: .72rem; font-weight: 700; }

.text-link { display: inline-flex; align-items: center; gap: .4rem; color: var(--violet); font-weight: 600; text-decoration: underline; text-underline-offset: 4px; }
.text-link span { transition: transform .2s; }
.text-link:hover span { transform: translateX(3px); }

.checks { display: flex; flex-direction: column; gap: .6rem; }
.checks--2col { display: grid; grid-template-columns: 1fr 1fr; }
.checks li { position: relative; padding-left: 1.8rem; color: var(--text); font-size: .95rem; }
.checks li::before { content: "✓"; position: absolute; left: 0; top: -1px; width: 20px; height: 20px; border-radius: 50%; display: grid; place-items: center; background: rgba(22,163,74,.12); color: #16a34a; font-size: .7rem; font-weight: 700; }

/* ---------- compare page ---------- */
.cmp-official { margin-top: 1.6rem; color: var(--muted); font-size: 1rem; }
.cmp-official a { color: var(--violet); font-weight: 600; text-decoration: underline; text-underline-offset: 4px; }
.cmp-official > span { margin: 0 .5rem; color: var(--faint); }
.cmp-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; margin-top: 2.4rem; }
.cmp-2col--top { align-items: start; }
.cmp-card { border: 1px solid var(--line); background: var(--surface); border-radius: var(--radius); box-shadow: var(--shadow); padding: 1.9rem; }
.cmp-card h3 { font-size: 1.2rem; color: var(--ink); margin-bottom: .8rem; }
.cmp-card p { color: var(--muted); font-size: .98rem; line-height: 1.65; }
.cmp-card .checks { margin-top: 1.1rem; }
.cmp-card__tag { display: inline-block; font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--violet); background: var(--grad-soft); border: 1px solid var(--line-2); padding: .25rem .7rem; border-radius: 999px; margin-bottom: 1rem; }
.cmp-card--accent { border-color: var(--violet); box-shadow: 0 18px 40px -24px rgba(32,80,197,.45); }
.cmp-card__foot { margin-top: 1.1rem; padding-top: 1.1rem; border-top: 1px solid var(--line); font-size: .92rem; }
.cmp-note { margin-top: 1.6rem; padding: 1.4rem 1.6rem; border-left: 3px solid var(--violet); background: var(--grad-soft); color: var(--text); font-size: 1.02rem; line-height: 1.6; border-radius: 0 var(--radius) var(--radius) 0; }
.cmp-tablewrap { margin-top: 2.4rem; overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); }
.cmp-table { width: 100%; border-collapse: collapse; font-size: .95rem; min-width: 640px; }
.cmp-table th, .cmp-table td { text-align: left; padding: .95rem 1.1rem; border-bottom: 1px solid var(--line); vertical-align: top; }
.cmp-table thead th { background: var(--ink); color: #fff; font-weight: 600; font-size: .9rem; position: sticky; top: 0; }
.cmp-table tbody th { font-weight: 600; color: var(--ink); width: 26%; }
.cmp-table tbody tr:nth-child(even) { background: var(--box); }
.cmp-table tbody tr:last-child th, .cmp-table tbody tr:last-child td { border-bottom: 0; }
.cmp-table td { color: var(--muted); }
.cmp-yes { color: #16a34a; font-weight: 700; margin-right: .3rem; }
.cmp-na { color: var(--faint); margin-right: .25rem; }
.cmp-price-block { margin-top: 2.6rem; }
.cmp-price-block h3 { font-size: 1.15rem; color: var(--ink); margin-bottom: 1rem; }
.cmp-table--price tbody th { width: auto; white-space: nowrap; }
.cmp-price-note { margin-top: .9rem; color: var(--faint); font-size: .88rem; }
.cmp-list-wide { margin-top: 2rem; max-width: 72ch; gap: 1rem; }
.cmp-list-wide li { font-size: 1rem; line-height: 1.6; }
.cmp-verdict { border: 1px solid var(--line-2); background: var(--box); border-radius: var(--radius); padding: clamp(1.8rem, 4vw, 2.8rem); }
.cmp-verdict h2 { color: var(--ink); margin: .4rem 0 1rem; }
.cmp-verdict p { color: var(--muted); font-size: 1.05rem; line-height: 1.7; }
.cmp-verdict p + p { margin-top: 1rem; }
.cmp-sources { margin-top: 2.4rem; }
.cmp-sources__date { color: var(--faint); font-size: .85rem; }
.cmp-sources__label { margin-top: 1rem; font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; color: var(--faint); }
.cmp-sources ul { margin-top: .5rem; display: flex; flex-direction: column; gap: .35rem; }
.cmp-sources a { color: var(--violet); font-size: .92rem; }

/* dark visual panel with globe wireframe + card mockup */
.tabpanel__visual {
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  min-height: 480px; padding: clamp(1.5rem,3vw,2.5rem);
  background: var(--surface); border-left: 1px solid var(--guide);
}
.tabpanel__img { width: 100%; max-width: 500px; height: auto; object-fit: contain; display: block; }
.mock {
  position: relative; z-index: 1; width: min(100%, 380px);
  background: #fff; border-radius: 14px; padding: 1.4rem 1.5rem;
  box-shadow: 0 34px 70px -30px rgba(0,0,0,.55);
}
.mock__top { display: flex; align-items: center; justify-content: space-between; }
.mock__title { font-weight: 600; color: var(--text); font-size: 1.02rem; }
.mock__x { color: var(--faint); }
.mock__value { font-family: "Inter"; font-size: 1.9rem; font-weight: 700; color: var(--text); margin: .7rem 0 .15rem; }
.mock__sub { color: var(--faint); font-size: .85rem; }
.mock__row { display: flex; align-items: center; gap: .8rem; margin: 1.2rem 0; }
.mock__avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--grad); flex: none; }
.mock__name { font-weight: 600; font-size: .95rem; color: var(--text); }
.mock__id { color: var(--faint); font-size: .82rem; }
.mock__field { border-top: 1px solid var(--line); padding-top: .85rem; margin-top: .85rem; }
.mock__label { text-transform: uppercase; letter-spacing: .06em; font-size: .66rem; color: var(--faint); margin-bottom: .25rem; }
.mock__fval { font-weight: 600; font-size: .92rem; color: var(--text); }

/* ---------- value ---------- */
.value { display: grid; grid-template-columns: 1fr 1.2fr; gap: 3rem; align-items: start; }
.value__head h2 { font-size: clamp(1.8rem,3.5vw,2.6rem); margin: .6rem 0 1rem; }
.value__head p { color: var(--muted); margin-bottom: 1.6rem; }
.value__list { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.value__item { padding: 1.4rem; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow); transition: .3s; }
.value__item:hover { border-color: var(--violet); }
.value__item h4 { font-size: 1.08rem; margin-bottom: .4rem; }
.value__item p { color: var(--muted); font-size: .9rem; }

/* ---------- chips ---------- */
.chips { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; }
.chip { padding: .75rem 1.4rem; border-radius: 12px; font-weight: 500; font-family: "Inter"; background: var(--surface); border: 1px solid var(--line-2); font-size: 1.02rem; box-shadow: var(--shadow); transition: .3s; }
.chip:hover { background: var(--grad-soft); border-color: var(--violet); color: var(--violet); }

/* ---------- testimonials ---------- */
/* header row: heading + carousel arrows */
.reviews__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; padding-bottom: clamp(2rem,4vw,3rem); }
.reviews__head h2 { font-size: clamp(2rem,3.8vw,3.1rem); line-height: 1.1; max-width: 18ch; margin: 0; }
.reviews__nav { display: flex; gap: .6rem; flex: none; }
.reviews__arrow { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line-2); background: #fff; color: var(--text); display: grid; place-items: center; cursor: pointer; transition: border-color .2s, color .2s, background .2s; }
.reviews__arrow svg { width: 20px; height: 20px; }
.reviews__arrow:hover { border-color: var(--violet); color: var(--violet); }

/* borderless column carousel */
.reviews { margin-inline: calc(var(--pad) * -1); border-block: 1px solid var(--guide); overflow: hidden; }
.reviews__track { display: flex; overflow-x: auto; scroll-behavior: smooth; scrollbar-width: none; -ms-overflow-style: none; }
.reviews__track::-webkit-scrollbar { display: none; }
.review {
  flex: 0 0 clamp(280px, 24vw, 350px); display: flex; flex-direction: column;
  padding: clamp(2rem,3vw,2.6rem) clamp(1.4rem,1.9vw,1.8rem);
  border-left: 1px solid var(--guide);
}
.review:first-child { border-left: none; }
.review--summary { flex-basis: clamp(240px,20vw,300px); justify-content: center; align-items: center; text-align: center; }
.review__score { font-family: "Inter"; font-size: clamp(3.4rem,6vw,5.2rem); font-weight: 700; line-height: 1; }
.review__stars { color: var(--text); font-size: 1.15rem; letter-spacing: .18em; margin: 1.3rem 0 .9rem; }
.review__count { color: var(--muted); font-size: .95rem; }
.review blockquote { font-size: clamp(1rem,1.1vw,1.1rem); line-height: 1.5; margin: 0 0 auto; color: var(--text); }
.review figcaption { display: flex; align-items: center; gap: .8rem; margin-top: 2.2rem; }
.review figcaption span:not(.avatar) { display: flex; flex-direction: column; }
.review small { color: var(--faint); font-size: .82rem; }
.avatar { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; font-weight: 700; font-size: .85rem; color: #fff; background: var(--grad); flex: none; }

/* ---------- integrations ---------- */
.integ { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(2rem,4vw,3.5rem); align-items: center; }
.integ__text h2 { font-size: clamp(1.8rem,3.5vw,2.6rem); margin: .6rem 0 1rem; }
.integ__text p { color: var(--muted); margin-bottom: 1.4rem; }
.integ__more { margin-top: 1.6rem; }
/* 5x5 grid: logo cells + hatch fillers */
.integ__grid { display: grid; grid-template-columns: repeat(5,1fr); border-top: 1px solid var(--guide); border-left: 1px solid var(--guide); background: var(--bg); }
.integ__grid span { aspect-ratio: 1; display: grid; place-items: center; padding: 16%; border-right: 1px solid var(--guide); border-bottom: 1px solid var(--guide); background: var(--surface); transition: background .25s; }
.integ__grid span:not(.hatch):hover { background: var(--box); }
.integ__grid .hatch { background: repeating-linear-gradient(135deg, var(--guide) 0 1px, transparent 1px 9px); }
.integ__grid img { width: 100%; height: 100%; object-fit: contain; }

/* ---------- integrations page: centered hero ---------- */
.hero--center::before { inset: -25% -15% 30% -15%; }
.hero__box--center { grid-template-columns: minmax(0, 1fr); }
.hero__box--center .hero__inner {
  align-items: center; text-align: center; max-width: 760px; margin-inline: auto;
  padding-block: clamp(64px, 9vw, 132px);
}
.hero__box--center .hero__title { max-width: 18ch; font-size: clamp(2.2rem, 4.2vw, 3.4rem); }
.hero__box--center .hero__sub { max-width: 56ch; }
.hero__box--center .hero__cta { justify-content: center; }

/* ---------- integrations page: uniform integration card grid ---------- */
.intgrid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--guide); border-left: 1px solid var(--guide);
  background: var(--bg);
}
.intcard {
  position: relative; display: flex; flex-direction: column; align-items: flex-start;
  padding: clamp(1.5rem, 2.2vw, 2rem);
  border-right: 1px solid var(--guide); border-bottom: 1px solid var(--guide);
  background: var(--surface); color: inherit; transition: background .25s;
}
.intcard:hover { background: var(--box); }
.intcard__icon {
  flex: none; width: 48px; height: 48px; display: grid; place-items: center;
  border-radius: 12px; background: var(--grad); color: #fff;
  font-size: 1.35rem; font-weight: 700; line-height: 1; margin-bottom: 1.1rem;
  box-shadow: 0 10px 22px -12px rgba(32,80,197,.8);
}
.intcard__icon--plus { background: var(--box); color: var(--violet); border: 1px dashed var(--line-2); box-shadow: none; font-size: 1.7rem; }
.intcard__icon--logo { width: 64px; height: 64px; background: #fff; box-shadow: none; padding: 0; overflow: hidden; }
.intcard__icon--logo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.intcard__tag {
  font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--violet); margin-bottom: .5rem;
}
.intcard__name { font-size: 1.12rem; font-weight: 700; color: var(--text); margin-bottom: .5rem; }
.intcard__desc { color: var(--muted); font-size: .92rem; line-height: 1.5; margin-bottom: 1.1rem; }
.intcard__link {
  display: inline-flex; align-items: center; gap: .4rem; margin-top: auto;
  color: var(--violet); font-weight: 600; font-size: .9rem;
}
.intcard__link span { transition: transform .2s; }
.intcard:hover .intcard__link span { transform: translateX(3px); }
.intcard--cta { background: var(--box); }

/* ---------- integrations page: FAQ accordion ---------- */
.faq { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%; display: flex; align-items: flex-start; justify-content: space-between; gap: 1.5rem;
  background: none; border: 0; cursor: pointer; font: inherit; text-align: left;
  color: var(--text); font-size: clamp(1.05rem, 1.6vw, 1.3rem); font-weight: 600;
  padding: 1.7rem 0; line-height: 1.3; transition: color .2s;
}
.faq__q:hover { color: var(--violet); }
/* bordered arrow box on the right (↓ closed → ↑ open) */
.faq__icon {
  position: relative; flex: none; width: 46px; height: 46px; margin-top: -.15rem;
  border: 1px solid var(--line-2); display: grid; place-items: center; color: var(--text);
  transition: background .2s, border-color .2s, color .2s;
}
.faq__q:hover .faq__icon { border-color: var(--violet); color: var(--violet); }
.faq__icon::before {
  content: ""; width: 8px; height: 8px;
  border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg); transition: transform .25s var(--ease);
}
.faq__item.open .faq__icon { background: var(--ink); border-color: var(--ink); color: #fff; }
.faq__item.open .faq__icon::before { transform: translateY(2px) rotate(225deg); }
.faq__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s var(--ease); }
.faq__item.open .faq__a { grid-template-rows: 1fr; }
.faq__a > p { overflow: hidden; color: var(--muted); font-size: 1rem; line-height: 1.6; padding-right: clamp(1rem, 8vw, 5rem); }
.faq__item.open .faq__a > p { padding-bottom: 1.7rem; }

/* two-column FAQ: sticky heading left, full-height vertical guide, questions right */
.faqwrap .section__head { margin-bottom: 2.5rem; }
@media (min-width: 901px) {
  .faqwrap { display: grid; grid-template-columns: minmax(0,.82fr) minmax(0,1.18fr);
    column-gap: clamp(2.5rem,6vw,6rem); align-items: start; }
  .faqwrap .section__head { text-align: left; margin: 0; max-width: none; position: sticky; top: 104px; }
  .faqwrap .section__head .eyebrow { justify-content: flex-start; }
  .faqwrap .section__head h2 { font-size: clamp(2rem,3.4vw,3rem); }
  /* bleed the question list to the borders: left edge meets the divider, right edge meets the
     outer frame guide. Padding goes on the inner content (not .faq) so EVERY divider — the top
     border and each item border — spans the full width. */
  .faqwrap .faq {
    position: relative;
    margin-left: calc(-0.5 * clamp(2.5rem,6vw,6rem));
    margin-right: calc(-1 * var(--pad));
  }
  .faqwrap .faq__q { padding-left: clamp(1.4rem,2.6vw,2.2rem); padding-right: var(--pad); }
  .faqwrap .faq__a > p { padding-left: clamp(1.4rem,2.6vw,2.2rem); }
  /* vertical divider guide at the list's left edge, extended through the section's vertical padding.
     (uses .faq::before — .frame::before/::after are reserved for the corner plus-marks) */
  .faqwrap .faq::before { content: ""; position: absolute; width: 1px; background: var(--guide);
    top: calc(-1 * clamp(64px,8vw,100px)); bottom: calc(-1 * clamp(64px,8vw,100px)); left: 0; }
}

/* ---------- pricing ---------- */
/* grid-backdrop heading with inner vertical guides */
#pricing > .frame { padding-top: 0; }
.pricing-hero {
  position: relative;
  margin-inline: calc(var(--pad) * -1);
  padding-block: clamp(40px, 5.5vw, 80px);
  background-image:
    repeating-linear-gradient(to right, rgba(15,39,85,.05) 0 1px, transparent 1px 88px),
    repeating-linear-gradient(to bottom, rgba(15,39,85,.05) 0 1px, transparent 1px 88px);
  background-position: center top;
}
.pricing-hero__inner {
  position: relative;
  max-width: 920px; margin-inline: auto;
  padding: clamp(36px,5vw,64px) clamp(24px,4vw,52px);
  background: var(--bg);
  border-inline: 1px solid var(--guide);
  text-align: center;
}
.pricing-hero__inner h2 { font-size: clamp(2rem,4vw,3rem); margin-bottom: 1rem; }
.pricing-hero__inner > p { color: var(--muted); font-size: 1.05rem; max-width: 52ch; margin: 0 auto; }

.toggle { display: flex; align-items: center; justify-content: center; gap: 1rem; margin: 1.9rem 0 0; }
.toggle__opt { color: var(--muted); font-weight: 500; transition: color .2s; display: inline-flex; align-items: center; gap: .4rem; }
.toggle__opt.is-on { color: var(--text); }
.save { font-style: normal; font-size: .72rem; background: rgba(22,163,74,.12); color: #16a34a; padding: .15rem .5rem; border-radius: 999px; }
.toggle__switch { width: 54px; height: 30px; border-radius: 999px; background: #e5e7eb; border: 1px solid var(--line-2); position: relative; cursor: pointer; transition: background .25s; }
.toggle__switch[aria-checked="true"] { background: var(--violet); border-color: transparent; }
.toggle__knob { position: absolute; top: 3px; left: 3px; width: 22px; height: 22px; border-radius: 50%; background: #fff; box-shadow: 0 2px 6px rgba(15,39,85,.25); transition: transform .25s var(--ease); }
.toggle__switch[aria-checked="true"] .toggle__knob { transform: translateX(24px); }

/* borderless column layout — dividers only, no boxes */
.plans {
  display: grid; grid-template-columns: repeat(4,1fr);
  margin-inline: calc(var(--pad) * -1);
  border-block: 1px solid var(--guide);
}
.plan {
  position: relative; display: flex; flex-direction: column;
  padding: clamp(2rem,3vw,2.6rem) clamp(1.4rem,1.9vw,1.8rem);
  border-left: 1px solid var(--guide);
}
.plan:first-child { border-left: none; }
.plan__badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--ink); color: #fff; font-size: .72rem; font-weight: 600;
  padding: .32rem .85rem; border-radius: var(--radius-lg); letter-spacing: .02em; white-space: nowrap;
}
.plan__head { margin-bottom: 1.6rem; }
.plan__name { font-size: 1.5rem; font-weight: 600; margin-bottom: .55rem; }
.plan__desc { color: var(--muted); font-size: .95rem; line-height: 1.5; margin-bottom: 1.1rem; min-height: 4.3em; }
.plan__price { display: flex; align-items: baseline; gap: .15rem; }
.plan__cur { font-size: 1.15rem; color: var(--text); font-weight: 600; }
.plan__amount { font-family: "Inter"; font-size: 2.1rem; font-weight: 700; }
.plan__per { color: var(--faint); font-size: .9rem; margin-left: .15rem; }
.plan__cap { color: var(--muted); font-size: .9rem; margin-top: .35rem; }
.plan__feats-intro { color: var(--muted); font-size: .9rem; margin: 0 0 1rem; }
.plan__feats { display: flex; flex-direction: column; gap: .85rem; margin-bottom: 1.8rem; flex: 1; }
.plan__feats li { display: flex; align-items: center; gap: .7rem; font-size: .92rem; color: var(--text); }
.plan__ic { flex: none; width: 20px; height: 20px; display: inline-flex; color: var(--muted); }
.plan__ic svg { width: 20px; height: 20px; }
.plan__btn { width: 100%; margin-top: auto; border-radius: 999px; justify-content: space-between; padding-inline: 1.3rem; }

/* ---------- volume banner (light, with chart) ---------- */
.volume {
  display: flex; align-items: center; justify-content: space-between; gap: clamp(1.5rem,4vw,3.5rem);
  margin-inline: calc(var(--pad) * -1);
  padding: clamp(2.2rem,4vw,3rem) var(--pad);
  border-bottom: 1px solid var(--guide);
}
.volume__text { max-width: 620px; }
.volume__text h3 { font-weight: 400; color: var(--muted); font-size: clamp(1.05rem,1.7vw,1.3rem); line-height: 1.55; margin-bottom: 1.3rem; }
.volume__text h3 strong { color: var(--text); font-weight: 700; }
.volume__btn { gap: .55rem; }
.volume__chart { position: relative; flex: none; width: clamp(220px,26vw,300px); }
.volume__chart svg { width: 100%; height: auto; display: block; overflow: visible; }
.vc-bar--gray rect { fill: var(--line); }
.vc-bar--blue rect { fill: none; stroke: var(--violet); stroke-width: 1.5; }
.vc-limit { stroke: var(--violet); stroke-width: 1.5; }
.volume__limit {
  position: absolute; top: 9%; left: 0;
  background: var(--violet); color: #fff; font-size: .58rem; font-weight: 700;
  letter-spacing: .06em; padding: .12rem .4rem; border-radius: 3px;
}
@media (max-width: 760px) {
  .volume { flex-direction: column; align-items: flex-start; }
  .volume__chart { width: 100%; max-width: 320px; }
  .cmp-2col { grid-template-columns: 1fr; }
}

/* ---------- CTA ---------- */
.cta { padding-block: clamp(40px, 6vw, 80px); }
/* contained dark box (kept) holding the two-column bento content */
.cta__inner {
  position: relative; overflow: hidden; color: #fff;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #0f2755, #163d82);
  padding: clamp(2.4rem, 4.5vw, 3.6rem) clamp(2rem, 4vw, 3.4rem);
  display: grid; grid-template-columns: 1fr 1.18fr; gap: clamp(2rem, 4vw, 3.6rem); align-items: center;
}
.cta__glow { position: absolute; inset: 0; z-index: 0; pointer-events: none; background: radial-gradient(600px circle at 22% -10%, rgba(59,111,224,.5), transparent 60%), radial-gradient(600px circle at 90% 110%, rgba(74,144,255,.38), transparent 60%); }
.cta__copy, .cta__bento { position: relative; z-index: 1; }

.cta__eyebrow { display: inline-flex; align-items: center; gap: .6rem; font-size: .95rem; font-weight: 600; color: rgba(255,255,255,.9); margin-bottom: 1.5rem; }
.cta__dot { width: 13px; height: 13px; border-radius: 50%; background: #fff; box-shadow: 0 0 0 4px rgba(255,255,255,.18); }
.cta__copy h2 { font-size: clamp(1.9rem, 3.4vw, 2.9rem); line-height: 1.08; color: #fff; margin-bottom: 1.3rem; max-width: 17ch; }
.cta__copy p { color: rgba(255,255,255,.72); font-size: 1.05rem; line-height: 1.55; max-width: 46ch; margin-bottom: 2rem; }
.cta__btn { background: rgba(255,255,255,.1); color: #fff; border: 1px solid rgba(255,255,255,.35); border-radius: 999px; gap: .55rem; }
.cta__btn:hover { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.55); color: #fff; transform: translateY(-2px); }

/* bento cards */
.cta__bento { display: grid; grid-template-columns: 1.05fr 1fr; grid-auto-rows: min-content; gap: .9rem; align-items: start; }
.cta__card { background: #fff; color: var(--text); border-radius: 16px; padding: clamp(1.3rem, 1.8vw, 1.7rem); display: flex; flex-direction: column; }
.cta__card--tall { grid-row: span 2; align-self: stretch; justify-content: space-between; }
.cta__num { font-family: "Inter"; font-size: clamp(1.9rem, 3vw, 2.8rem); font-weight: 800; color: var(--text); line-height: 1; margin-bottom: .8rem; letter-spacing: -.02em; }
.cta__card p { color: var(--muted); font-size: .95rem; line-height: 1.45; }
.cta__card h3 { font-size: clamp(1.25rem, 1.9vw, 1.6rem); font-weight: 700; color: var(--text); margin-bottom: .6rem; }
.cta__arrows { display: block; margin-top: 1.6rem; height: auto;
  width: calc(100% + 2 * clamp(1.3rem, 1.8vw, 1.7rem));
  margin-left: calc(-1 * clamp(1.3rem, 1.8vw, 1.7rem)); }
.cta__avatars { display: flex; align-items: center; margin-top: 1.3rem; }
.cta__av { width: 40px; height: 40px; border-radius: 50%; border: 2.5px solid #fff; margin-left: -11px; background: var(--grad); flex: none; }
.cta__av:first-child { margin-left: 0; }
.cta__av:nth-child(2) { background: linear-gradient(135deg, #f5a623, #e8762d); }
.cta__av:nth-child(3) { background: linear-gradient(135deg, #4a90ff, #2050c5); }
.cta__av:nth-child(4) { background: linear-gradient(135deg, #59c569, #318c3e); }
.cta__av--more { display: grid; place-items: center; background: var(--violet) !important; color: #fff; font-size: .78rem; font-weight: 700; }

/* ---------- footer (light) ---------- */
.footer { border-top: 1px solid var(--guide); background: #fff; color: var(--muted); padding-top: 60px; }
.footer__compare { display: grid; grid-template-columns: minmax(0,2fr) minmax(0,1fr) minmax(0,1fr) minmax(0,1.2fr); gap: 2.5rem; padding-block: 48px; border-top: 1px solid var(--guide); }
.footer__compare-intro h2 { font-size: clamp(.95rem, 1.2vw, 1.1rem); color: var(--ink); margin: 0 0 .8rem; line-height: 1.3; }
.footer__compare-intro p { color: var(--muted); font-size: .92rem; line-height: 1.6; max-width: 40ch; }
.footer__compare-col h5 { font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; color: var(--faint); margin-bottom: 1.1rem; }
.footer__compare-col a { display: block; color: var(--muted); font-size: .95rem; padding: .42rem 0; transition: color .2s; }
.footer__compare-col a:hover { color: var(--violet); }
.footer__inner { display: grid; grid-template-columns: minmax(0,2fr) minmax(0,1fr) minmax(0,1fr) minmax(0,1.2fr); gap: 2.5rem; padding-bottom: 40px; }
.footer .brand__logo { height: 26px; }
.footer__brand p { color: var(--muted); font-size: .92rem; margin: 1rem 0 1.2rem; max-width: 36ch; }
.footer__social { display: flex; gap: 1.1rem; }
.footer__social a { display: inline-flex; color: var(--faint); transition: color .2s, transform .2s; }
.footer__social a svg { width: 19px; height: 19px; }
.footer__social a:hover { color: var(--violet); transform: translateY(-2px); }
.footer__col h5 { font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; color: var(--faint); margin-bottom: 1rem; }
.footer__col a { display: block; color: var(--muted); font-size: .92rem; padding: .3rem 0; transition: color .2s; }
.footer__col a:hover { color: var(--violet); }
.footer__badges { display: flex; flex-wrap: wrap; gap: .8rem; align-items: center; }
.footer__badges img { height: 46px; width: auto; filter: brightness(0); opacity: .5; transition: opacity .2s; }
.footer__badges img:hover { opacity: .75; }
.footer__base { display: flex; justify-content: space-between; padding: 22px 0; border-top: 1px solid var(--guide); color: var(--faint); font-size: .85rem; }

/* ---------- mobile menu panel ---------- */
.nav__links.open {
  display: flex; flex-direction: column; position: fixed; inset: 74px 0 auto 0;
  transform: none; left: 0;
  background: rgba(255,255,255,.98); backdrop-filter: blur(18px);
  padding: 1.2rem var(--pad) 1.6rem; gap: 1rem; border-bottom: 1px solid var(--guide);
  box-shadow: 0 20px 40px -24px rgba(15,39,85,.3);
}

/* ---------- plus marks at line / guide intersections ---------- */
.section > .frame, .logos__box, .nav__inner { position: relative; }

.section > .frame::before, .section > .frame::after,
.logos__box::before, .logos__box::after,
.nav__inner::before, .nav__inner::after {
  content: ""; position: absolute; width: 12px; height: 12px; z-index: 3;
  pointer-events: none;
  background:
    linear-gradient(var(--plus) 0 0) center / 12px 1px no-repeat,
    linear-gradient(var(--plus) 0 0) center / 1px 12px no-repeat;
}
/* top-line corners */
.section > .frame::before, .logos__box::before { top: 0; left: 0; transform: translate(-50%, -50%); }
.section > .frame::after,  .logos__box::after  { top: 0; right: 0; transform: translate(50%, -50%); }
/* nav bottom-line corners */
.nav__inner::before, .nav__inner::after { bottom: 0; z-index: 101; }
.nav__inner::before { left: 0; transform: translate(-50%, 50%); }
.nav__inner::after  { right: 0; transform: translate(50%, 50%); }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .hero__box { grid-template-columns: 1fr; gap: 0; }
  .hero__inner { padding-block: clamp(40px,8vw,72px) clamp(28px,5vw,40px); }
  .hero__media { margin-inline: calc(-1 * var(--pad)); min-height: clamp(300px,68vw,460px); }
  .hero__media img { left: var(--pad); top: 0; width: clamp(440px, 92vw, 760px); }
  .hero__play { left: 50%; }
  .cards { grid-template-columns: repeat(2,1fr); }
  .card:nth-child(odd) { border-left: none; }
  .card:nth-child(n+3) { border-top: 1px solid var(--guide); }
  .plans { grid-template-columns: repeat(2,1fr); }
  .plan:nth-child(odd) { border-left: none; }
  .plan:nth-child(n+3) { border-top: 1px solid var(--guide); }
  .value, .integ { grid-template-columns: 1fr; }
  .intgrid { grid-template-columns: repeat(2, 1fr); }
  .cta__inner { grid-template-columns: 1fr; gap: 2.4rem; }
  .tabpanel { grid-template-columns: 1fr; }
  .tabpanel__text { border-bottom: 1px solid var(--guide); padding-inline: var(--pad); padding-right: 1px;}
  .tabpanel__visual { border-left: 0; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__compare { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer__compare-intro { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .footer__compare { grid-template-columns: 1fr; gap: 1.6rem; }
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .nav__actions .link-quiet { display: none; }
  .cards, .plans, .stats, .value__list, .checks--2col, .intgrid { grid-template-columns: 1fr; }
  .cta__bento { grid-template-columns: 1fr; }
  .cta__card--tall { grid-row: auto; }
  .tabs__nav { grid-template-columns: 1fr 1fr; }
  .tab { font-size: .9rem; padding: .85rem .5rem; }
  .tab:nth-child(odd) { border-left: 0; }
  .tab:nth-child(n+3) { border-top: 1px solid var(--guide); }
  .card { border-left: none; }
  .card:nth-child(n+2) { border-top: 1px solid var(--guide); }
  .plan { border-left: none; }
  .plan:nth-child(n+2) { border-top: 1px solid var(--guide); }
  .integ__more { margin-top: 1.2rem; }
  .kpi-row { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__base { flex-direction: column; gap: .4rem; }
}

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

/* ===================== FUNKTIONEN PAGE ===================== */
.section[id] { scroll-margin-top: 92px; }                 /* offset for sticky nav on anchor jumps */

.fstages { display: flex; flex-wrap: wrap; gap: .7rem; justify-content: center; }
.fchip {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .62rem 1.15rem; border-radius: 12px;
  background: var(--surface); border: 1px solid var(--line-2);
  font-size: .94rem; font-weight: 500; color: var(--text);
  transition: border-color .25s, color .25s, background .25s, transform .25s;
}
.fchip:hover { border-color: var(--violet); color: var(--violet); background: var(--grad-soft); transform: translateY(-2px); }
.fchip b { color: var(--violet); font-weight: 700; font-variant-numeric: tabular-nums; }

/* funktionen value sections: numbered eyebrow + alternating split */
.value__head .eyebrow b { color: inherit; font-weight: 700; font-variant-numeric: tabular-nums; }
.value .text-link { margin-top: 1.6rem; }
@media (min-width: 901px) {
  .value--rev { grid-template-columns: 1.2fr 1fr; }
  .value--rev .value__head { order: 2; }
  .value--rev .value__list { order: 1; }
}

/* feature split block: text + dark panel mock (reuses .tabpanel__visual / .mock) */
.feat {
  display: grid; grid-template-columns: 1fr 1fr; align-items: stretch;
  border: 1px solid var(--guide); background: var(--surface);
}
.feat__text {
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(2.4rem,4.5vw,3.8rem) clamp(1.9rem,3.2vw,3.2rem);
}
.feat__text .eyebrow { margin-bottom: 1.1rem; }
.feat__text .eyebrow b { color: inherit; font-weight: 700; font-variant-numeric: tabular-nums; }
.feat__text h2 { font-size: clamp(1.55rem,2.8vw,2.15rem); line-height: 1.15; margin-bottom: 1rem; max-width: 20ch; }
.feat__text > p { color: var(--muted); margin-bottom: 1.7rem; max-width: 44ch; }
.feat .tags { gap: .8rem 1.5rem; }
.feat__visual { border-radius: 0; min-height: 0; }   /* fill the grid cell, square to match panel */

@media (min-width: 901px) {
  .feat--rev .feat__text { order: 2; border-left: 1px solid var(--guide); }
  .feat--rev .feat__visual { order: 1; }
  .feat:not(.feat--rev) .feat__visual { border-left: 1px solid var(--guide); }
}
@media (max-width: 900px) {
  .feat { grid-template-columns: 1fr; }
  .feat__visual { min-height: clamp(360px,60vw,520px); border-top: 1px solid var(--guide); }
}

/* case study: centered results checklist + closing pull-quote */
.checklist { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 2.2rem; max-width: 760px; margin: 0 auto; }
.checklist li {
  display: flex; align-items: flex-start; gap: .7rem;
  color: var(--text); font-weight: 500; font-size: 1rem; line-height: 1.45;
}
.checklist li::before {
  content: "✓"; flex: none; width: 22px; height: 22px; margin-top: 1px; border-radius: 7px;
  background: rgba(22,163,74,.14); color: #16a34a;
  display: grid; place-items: center; font-size: .8rem; font-weight: 700;
}
/* full-bleed band: top/bottom guide lines + diagonal hatch on the sides,
   white quote panel centred on top (mirrors the .panelbox treatment) */
.pullquote {
  margin: clamp(2.6rem,5vw,4rem) calc(-1 * var(--pad)) 0;
  padding-inline: var(--pad);
  display: flex; justify-content: center;
  border-block: 1px solid var(--guide);
  background: repeating-linear-gradient(45deg, rgba(15,39,85,.05) 0 1px, transparent 1px 9px);
}
.pullquote__box {
  width: 100%; max-width: 860px; margin: 0; text-align: center;
  padding: clamp(2.4rem,5vw,3.6rem) clamp(1.6rem,4vw,3rem);
  background: #fff; border-inline: 1px solid var(--guide);
}
.pullquote__box p { font-size: clamp(1.15rem,2vw,1.45rem); font-weight: 600; line-height: 1.4; color: var(--text); }
@media (max-width: 640px) { .checklist { grid-template-columns: 1fr; } }

/* login link with icon (sits at the end of nav actions) */
.nav__login { display: inline-flex; align-items: center; gap: .42rem; }
.nav__login svg { width: 16px; height: 16px; }
.nav__actions > *:nth-child(3) { animation-delay: .56s; }

/* nav dropdown (Case Studies) */
.nav__links > .navdrop { animation: navItem .5s var(--ease) .43s backwards; }
.navdrop { position: relative; display: flex; align-items: center; }
.navdrop__btn {
  display: inline-flex; align-items: center; gap: .3rem;
  background: none; border: 0; cursor: pointer; font: inherit;
  color: var(--text); font-size: .94rem; font-weight: 500; padding: 0;
  transition: color .2s;
}
.navdrop__btn:hover, .navdrop.open .navdrop__btn, .navdrop--active .navdrop__btn { color: var(--violet); }
.navdrop__chev { width: 13px; height: 13px; transition: transform .2s; }
.navdrop.open .navdrop__chev { transform: rotate(180deg); }
.navdrop__menu {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%);
  min-width: 210px; background: #fff; border: 1px solid var(--line-2); border-radius: 10px;
  box-shadow: 0 18px 44px -18px rgba(15,39,85,.35); padding: .35rem; display: none; z-index: 120;
}
/* transparent bridge across the gap so hover stays continuous between button and menu */
.navdrop__menu::before { content: ""; position: absolute; left: 0; right: 0; top: -16px; height: 16px; }
.navdrop.open .navdrop__menu { display: block; animation: modalFade .15s var(--ease); }
.navdrop__menu a {
  display: block; padding: .6rem .7rem; border-radius: 7px; font-size: .92rem;
  font-weight: 500; color: var(--text); transition: background .15s, color .15s;
}
.navdrop__menu a:hover { background: var(--box); color: var(--violet); }
.navdrop__menu a[aria-current="page"] { color: var(--violet); font-weight: 600; }
@media (min-width: 641px) {
  .navdrop:hover .navdrop__menu { display: block; }   /* hover-reveal on desktop */
}
@media (max-width: 640px) {
  .navdrop { flex-direction: column; align-items: flex-start; width: 100%; gap: .7rem; }
  .navdrop__chev { display: none; }
  .navdrop__btn { cursor: default; }
  .navdrop__menu { position: static; transform: none; display: block; min-width: 0;
    border: 0; box-shadow: none; padding: 0; }
  .navdrop__menu a { padding: .15rem 0 .15rem .9rem; }
}

/* demo-buchen page */
.demo { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem,5vw,4.5rem); align-items: start; }
.demo__intro h1 { font-size: clamp(1.7rem,2.8vw,2.3rem); line-height: 1.18; letter-spacing: -.02em; margin-bottom: 1.1rem; max-width: 20ch; }
.demo__intro > p { color: var(--muted); font-size: 1.02rem; line-height: 1.6; max-width: 46ch; margin-bottom: 2rem; }
.demo__checks { display: grid; gap: 1.1rem; margin-top: 2rem; margin-bottom: 2.4rem; }
.demo__checks li { display: flex; align-items: flex-start; gap: .7rem; color: var(--text); font-weight: 500; }
.demo__checks li::before {
  content: "✓"; flex: none; width: 22px; height: 22px; margin-top: 1px; border-radius: 7px;
  background: rgba(22,163,74,.14); color: #16a34a; display: grid; place-items: center; font-size: .8rem; font-weight: 700;
}
.demo__mini { display: flex; flex-wrap: wrap; gap: 1.6rem 2.4rem; padding-top: 1.6rem; border-top: 1px solid var(--line); }
.demo__mini b { display: block; font-size: 1.5rem; font-weight: 800; color: var(--violet); line-height: 1; }
.demo__mini span { color: var(--faint); font-size: .82rem; }

.demoform {
  background: var(--surface); border: 1px solid var(--line-2); padding: clamp(1.6rem,3vw,2.4rem);
  box-shadow: 0 30px 70px -34px rgba(15,39,85,.4); position: sticky; top: 96px;
}
/* ---------- contact page (split: intro left / form right) ---------- */
/* full-height vertical divider via a centre background line (spans the frame's
   top/bottom padding too, so it meets the section's horizontal guide lines).
   Inset 74px from the top so it starts at the nav's border-bottom guide rather
   than bleeding up behind the fixed, transparent nav. */
.contact { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); align-items: stretch; min-height: 70vh;
  background: linear-gradient(var(--guide), var(--guide)) no-repeat 50% 74px / 1px calc(100% - 74px); }
.contact__intro { padding-right: clamp(1.5rem,5vw,4.5rem); }
.contact__form { padding-left: clamp(1.5rem,5vw,4.5rem); }
.contact__title { font-size: clamp(2rem,3.2vw,2.6rem); font-weight: 700; color: var(--text); letter-spacing: -.02em; line-height: 1.12; margin: 1rem 0 0; }
.contact__lead { color: var(--muted); font-size: 1.05rem; line-height: 1.6; margin-top: .9rem; max-width: 44ch; }
.contact__map { margin-top: 2.2rem; aspect-ratio: 16/7; border: 1px solid var(--guide); overflow: hidden; background: var(--box); }
.contact__map iframe { width: 100%; height: 100%; border: 0; display: block; }
.contact__info { margin-top: 2.4rem; border-top: 1px solid var(--guide); }
.contact__info li { list-style: none; padding: 1.3rem 0; border-bottom: 1px solid var(--guide); }
.contact__info li.contact__info--row { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.contact__info li.contact__info--row .contact__cell { padding: 0; }
.contact__info li.contact__info--row .contact__cell + .contact__cell { border-left: 1px solid var(--guide); padding-left: 1.4rem; }
.contact__label { display: block; font-size: .82rem; color: var(--faint); margin-bottom: .3rem; }
.contact__val { font-size: 1.05rem; color: var(--ink); }
.contact__val a { color: inherit; text-decoration: none; transition: color .2s; }
.contact__val a:hover { color: var(--violet); }
.contact__form .btn { margin-top: .6rem; }
.contact__form .demoform__note { text-align: left; }
/* more room for native select arrow */
.field select {
  appearance: none; -webkit-appearance: none; padding-right: 2.8rem;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20width%3D%2712%27%20height%3D%278%27%20viewBox%3D%270%200%2012%208%27%20fill%3D%27none%27%20stroke%3D%27%230f2755%27%20stroke-width%3D%271.6%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpath%20d%3D%27M1%201.5%206%206.5%2011%201.5%27%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat; background-position: right 1.1rem center;
}
@media (max-width: 880px) {
  .contact { grid-template-columns: 1fr; min-height: unset; background: none; }
  .contact__intro { padding-right: 0; }
  .contact__form { padding-left: 0; border-top: 1px solid var(--guide); margin-top: 2.6rem; padding-top: 2.6rem; }
}
.demoform h2 { font-size: 1.4rem; margin-bottom: 1.5rem; }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-size: .86rem; font-weight: 600; color: var(--text); margin-bottom: .4rem; }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; font-size: .95rem; color: var(--text);
  padding: .8rem .9rem; background-color: #fff; border: 1px solid var(--line-2); border-radius: 10px;
  transition: border-color .2s, box-shadow .2s;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 0; border-color: var(--violet); box-shadow: 0 0 0 3px rgba(32,80,197,.14);
}
.demoform .btn { margin-top: .6rem; }
.demoform__note { color: var(--faint); font-size: .78rem; margin-top: .9rem; text-align: center; }
.demoform__sent { color: #16a34a; font-weight: 600; text-align: center; padding: 1rem 0; }

/* validation error summary */
.form-errors {
  margin-bottom: 1.2rem; padding: .9rem 1.1rem;
  background: rgba(220,38,38,.07); border: 1px solid rgba(220,38,38,.3);
  color: #b91c1c; font-size: .9rem;
}
.form-errors p { margin: 0; }
.form-errors p + p { margin-top: .3rem; }

/* ---------- success / confirmation page ---------- */
.success { max-width: 620px; margin: 0 auto; text-align: center; }
.success__icon {
  display: grid; place-items: center; width: 88px; height: 88px; margin: 0 auto 1.9rem;
  border-radius: 50%; background: rgba(22,163,74,.12); color: #16a34a;
}
.success__icon svg { width: 42px; height: 42px; }
.success__title { font-size: clamp(2rem,3.4vw,2.8rem); font-weight: 700; color: var(--text); letter-spacing: -.02em; line-height: 1.12; margin: 1rem 0 0; }
.success__lead { color: var(--muted); font-size: 1.08rem; line-height: 1.6; margin: .9rem auto 0; max-width: 48ch; }
.success__actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-top: 2.2rem; }

/* ---------- 404 ---------- */
.notfound { min-height: 56vh; display: grid; place-items: center; text-align: center; }
.nf-img { width: min(560px, 72vw); height: auto; margin: 0 auto 1.2rem; }

@media (max-width: 900px) {
  .demo { grid-template-columns: 1fr; }
  .demoform { position: static; }
}

/* blog article: smaller headline + wider measure for long titles */
.hero__box--center .hero__title--article { font-size: clamp(1.8rem, 3.4vw, 2.8rem); max-width: 26ch; }
/* blog article: full-width cover banner */
.article-cover { aspect-ratio: 16 / 6.5; background: var(--grad); width: 100%; }

/* blog: post cards with image, meta, title, excerpt and category pill */
.postgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.postcard {
  display: flex; flex-direction: column; background: var(--surface);
  border: 1px solid var(--line); overflow: hidden; color: inherit;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.postcard:hover { transform: translateY(-4px); border-color: var(--line-2);
  box-shadow: 0 26px 50px -28px rgba(15,39,85,.4); }
.postcard__thumb { aspect-ratio: 16 / 10; background: var(--grad); }
.postcard:nth-child(3n+2) .postcard__thumb { background: linear-gradient(135deg,#4a90ff,#2050c5); }
.postcard:nth-child(3n) .postcard__thumb { background: linear-gradient(135deg,#79d2ff 0%,#2050c5 90%); }
.postcard__body { display: flex; flex-direction: column; flex: 1; padding: 1.4rem 1.5rem 1.6rem; }
.postcard__meta { color: var(--faint); font-size: .85rem; margin-bottom: .55rem; }
.postcard__title { font-size: 1.2rem; font-weight: 700; color: var(--text); line-height: 1.3; margin-bottom: .5rem; }
.postcard:hover .postcard__title { color: var(--violet); }
.postcard__excerpt { color: var(--muted); font-size: .95rem; line-height: 1.55; margin-bottom: 1.4rem; }
.postcard__tag { align-self: flex-start; margin-top: auto; padding: .4rem .85rem; border-radius: 8px;
  background: var(--box); color: var(--muted); font-size: .8rem; font-weight: 600; }
@media (max-width: 900px) { .postgrid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .postgrid { grid-template-columns: 1fr; } }

/* integrations: category filter buttons */
.intfilter { display: flex; flex-wrap: wrap; gap: .7rem; justify-content: center; margin-bottom: 2.6rem; }
.filterbtn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .62rem 1.2rem; border-radius: 12px; cursor: pointer;
  background: var(--surface); border: 1px solid var(--line-2);
  font: inherit; font-size: .94rem; font-weight: 500; color: var(--text);
  transition: border-color .2s, background .2s, color .2s, box-shadow .2s;
}
.filterbtn:hover { border-color: var(--violet); color: var(--violet); }
.filterbtn.is-active {
  background: var(--grad-soft); border-color: var(--violet); color: var(--violet);
  box-shadow: inset 0 0 0 1px var(--violet);
}

/* affiliate program: earning-model cards */
.earngrid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.earncard { padding: clamp(1.8rem,3.2vw,2.8rem); border: 1px solid var(--line); background: var(--surface); transition: border-color .3s; }
.earncard:hover { border-color: var(--violet); }
.earncard__num { font-size: clamp(2.6rem,6vw,4rem); font-weight: 800; color: var(--violet); line-height: 1; letter-spacing: -.02em; }
.earncard__tag { display: block; font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--faint); margin-top: 1rem; }
.earncard h3 { font-size: 1.25rem; margin: .35rem 0 .6rem; }
.earncard p { color: var(--muted); font-size: .98rem; line-height: 1.6; }
@media (max-width: 640px) { .earngrid { grid-template-columns: 1fr; } }

/* legal / prose pages (Impressum, Datenschutz) */
.legal { max-width: 800px; margin-inline: auto; }
.legal h2 { font-size: clamp(1.3rem,2.4vw,1.75rem); margin: 2.8rem 0 .7rem; color: var(--text); line-height: 1.25; }
.legal > .legal__lead:first-child, .legal > h2:first-child { margin-top: 0; }
.legal h3 { font-size: 1.12rem; margin: 1.7rem 0 .4rem; color: var(--text); }
.legal p { color: var(--muted); font-size: 1rem; line-height: 1.75; margin-bottom: 1rem; }
.legal a { color: var(--violet); text-decoration: underline; text-underline-offset: 3px; overflow-wrap: anywhere; }
.legal strong { color: var(--text); font-weight: 600; }
.legal ul { margin: 0 0 1.1rem 1.25rem; display: grid; gap: .45rem; }
.legal li { color: var(--muted); font-size: 1rem; line-height: 1.65; list-style: disc; }
.legal__lead { font-size: 1.1rem; color: var(--text); margin-bottom: 2rem; }
.legal__meta { color: var(--faint); font-size: .9rem; margin-top: 2.6rem; padding-top: 1.4rem; border-top: 1px solid var(--line); }

/* ---------- proc (numbered process steps) ---------- */
.proc { display: grid; gap: 1rem; max-width: 860px; margin: 0 auto; }
.proc__step { display: grid; grid-template-columns: auto 1fr; gap: 1.2rem; align-items: start;
  padding: 1.3rem 1.5rem; background: var(--surface); border: 1px solid var(--line); transition: border-color .25s; }
.proc__step:hover { border-color: var(--violet); }
.proc__n { width: 40px; height: 40px; flex: none; display: grid; place-items: center; border-radius: 11px;
  background: var(--grad); color: #fff; font-weight: 700; font-size: 1.05rem; line-height: 1;
  box-shadow: 0 10px 22px -12px rgba(32,80,197,.8); }
.proc__step h4 { font-size: 1.06rem; color: var(--text); margin-bottom: .3rem; }
.proc__step p { color: var(--muted); font-size: .95rem; line-height: 1.55; }
/* whitepaper hero byline */
.wp-byline { color: var(--faint); font-size: .95rem; margin-top: 1rem; }
/* sub-block heading used inside whitepaper feature columns */
.wp-subhead { font-size: 1.1rem; color: var(--text); margin-bottom: 1rem; text-align: center; }
.wp-cols { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,4vw,3.5rem); max-width: 920px; margin: 0 auto; }
@media (max-width: 760px) { .wp-cols { grid-template-columns: 1fr; } }
/* narrow centred content block */
.wp-narrow { max-width: 860px; margin-inline: auto; }
/* neutral dot list */
.wp-list { max-width: 860px; margin: 0 auto 1.4rem; display: grid; gap: .55rem; }
.wp-list li { position: relative; padding-left: 1.4rem; color: var(--muted); font-size: 1rem; line-height: 1.6; }
.wp-list li::before { content: ""; position: absolute; left: .25rem; top: .62rem; width: 6px; height: 6px; border-radius: 50%; background: var(--violet); }
/* code / value block */
.codeblock { display: block; max-width: 860px; margin: 0 auto 1.4rem; padding: 1rem 1.3rem;
  background: var(--ink); color: #e8eefc; font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: .95rem; line-height: 1.7; white-space: pre-wrap; overflow-x: auto; }
/* two-value example cards */
.wp-card { padding: 1.4rem 1.5rem; background: var(--surface); border: 1px solid var(--line); }
.wp-card__label { font-size: .7rem; text-transform: uppercase; letter-spacing: .08em; color: var(--violet); font-weight: 700; margin-bottom: .45rem; }
.wp-card__val { font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: 1.05rem; color: var(--text); font-weight: 600; }

/* ---------- prose (long-form markdown content) ---------- */
.prose { max-width: 820px; margin-inline: auto; }
.prose > *:first-child { margin-top: 0; }
.prose > *:last-child { margin-bottom: 0; }
.prose--narrow { max-width: 760px; }
.prose--tight { max-width: none; }
.prose--tight p:last-child { margin-bottom: 0; }
.prose--wide { max-width: 1000px; }

.prose h2 { font-size: clamp(1.4rem,2.6vw,1.9rem); color: var(--text); line-height: 1.25; letter-spacing: -.02em; margin: 2.6rem 0 1rem; }
.prose h3 { font-size: clamp(1.08rem,1.8vw,1.28rem); color: var(--text); margin: 1.9rem 0 .55rem; }
.prose p { color: var(--muted); font-size: 1.02rem; line-height: 1.75; margin-bottom: 1.1rem; }
.prose strong { color: var(--text); font-weight: 600; }
.prose em { color: var(--faint); }
.prose a { color: var(--violet); text-decoration: underline; text-underline-offset: 3px; overflow-wrap: anywhere; }
.prose ul, .prose ol { margin: 0 0 1.3rem 1.35rem; display: grid; gap: .55rem; }
.prose li { color: var(--muted); font-size: 1.02rem; line-height: 1.6; }
.prose ul li { list-style: disc; }
.prose ol li { list-style: decimal; }
.prose li strong { color: var(--text); }
.prose hr { border: 0; border-top: 1px solid var(--line); margin: 2.8rem 0; }
.prose table { width: 100%; border-collapse: collapse; margin: 1.6rem 0 2rem; font-size: .92rem; border: 1px solid var(--line); table-layout: auto; }
.prose thead th { background: var(--ink); color: #fff; font-weight: 600; }
.prose th, .prose td { padding: .8rem 1.1rem; text-align: left; vertical-align: top; border-bottom: 1px solid var(--line); border-right: 1px solid var(--line); color: var(--muted); }
.prose th:last-child, .prose td:last-child { border-right: 0; }
.prose tbody tr:nth-child(even) { background: var(--box); }
.prose tbody tr:last-child th, .prose tbody tr:last-child td { border-bottom: 0; }
.prose tbody th { color: var(--text); font-weight: 600; }
.prose tbody td strong { color: var(--text); }
@media (max-width: 700px) { .prose table { font-size: .82rem; } .prose th, .prose td { padding: .55rem .6rem; } }

/* ---------- compare: zielgruppe boxes ---------- */
.zg-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; max-width: 980px; margin: 0 auto; }
.zg-box { padding: clamp(1.6rem,3vw,2.2rem); background: var(--surface); border: 1px solid var(--line); }
.zg-box--primary { border-color: var(--violet); }
.zg-box h3 { font-size: 1.15rem; color: var(--text); margin: 0 0 .9rem; display: flex; align-items: center; gap: .55rem; }
.zg-box h3::before { content: "✓"; width: 24px; height: 24px; flex: none; border-radius: 7px; display: grid; place-items: center;
  font-size: .8rem; font-weight: 700; background: rgba(22,163,74,.14); color: #16a34a; }
.zg-box--primary h3::before { background: var(--violet); color: #fff; }
.cmp-updated { color: var(--faint); font-size: .85rem; text-align: center; margin-top: 1.6rem; }
@media (max-width: 760px) { .zg-grid { grid-template-columns: 1fr; } }

/* ---------- compare page: clean single left-aligned reading column ---------- */
.cmp-page .section__head { text-align: left; max-width: 940px; margin: 0 auto 1.9rem; }
.cmp-page .section__head h2 { font-size: clamp(1.5rem,2.8vw,2.05rem); }
.cmp-page .prose, .cmp-page .prose--narrow, .cmp-page .prose--wide,
.cmp-page .zg-grid, .cmp-page .cmp-cols { max-width: 940px; margin-left: auto; margin-right: auto; }
/* keep paragraph line-length readable; tables & grids still fill the column */
.cmp-page .prose > p, .cmp-page .prose > ul, .cmp-page .prose > ol { max-width: 70ch; }
/* FAQ uses the site's default two-column layout — don't let the column override touch it */
.cmp-page .faqwrap .section__head { max-width: none; margin: 0 0 2.5rem; }

/* ---------- compare: two-column section (Was ist was, Workflows) ---------- */
.cmp-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; max-width: 1000px; margin: 0 auto; align-items: start; }
.cmp-col { padding: clamp(1.6rem,3vw,2.2rem); background: var(--surface); border: 1px solid var(--line); }
.cmp-col__name { font-size: 1.18rem; font-weight: 700; color: var(--text); margin: 0 0 1.1rem; padding-bottom: .85rem; border-bottom: 1px solid var(--line); }
.cmp-col:first-child .cmp-col__name { color: var(--violet); }
@media (max-width: 760px) { .cmp-cols { grid-template-columns: 1fr; } }

/* ---------- cookie consent banner ---------- */
.cookie { position: fixed; left: 0; right: 0; bottom: 0; z-index: 1200; background: var(--surface);
  border-top: 1px solid var(--line-2); box-shadow: 0 -6px 24px rgba(15,39,85,.08);
  transform: translateY(100%); transition: transform .4s var(--ease); }
.cookie.is-visible { transform: translateY(0); }
.cookie[hidden] { display: none; }
.cookie__inner { display: flex; align-items: center; gap: clamp(1rem,3vw,2.4rem); flex-wrap: wrap;
  padding-top: 1.1rem; padding-bottom: 1.1rem; }
.cookie__copy { flex: 1 1 420px; min-width: 0; }
.cookie__title { font-size: 1.02rem; font-weight: 700; color: var(--text); margin: 0 0 .3rem; }
.cookie__text { font-size: .88rem; line-height: 1.55; color: var(--muted); margin: 0; }
.cookie__text a { color: var(--violet); text-decoration: underline; text-underline-offset: 2px; }
.cookie__actions { display: flex; gap: .7rem; flex: none; }
.cookie__btn { font: inherit; font-size: .88rem; font-weight: 600; padding: .65rem 1.3rem; cursor: pointer;
  border: 1px solid var(--line-2); background: transparent; color: var(--text); transition: background .2s, border-color .2s, color .2s; }
.cookie__btn--ghost:hover { border-color: var(--text); }
.cookie__btn--primary { background: var(--violet); border-color: var(--violet); color: #fff; }
.cookie__btn--primary:hover { background: var(--violet-2); border-color: var(--violet-2); }
@media (max-width: 640px) {
  .cookie__inner { flex-direction: column; align-items: stretch; }
  .cookie__actions { width: 100%; }
  .cookie__btn { flex: 1; }
}

/* ===================== LANDING PAGES ===================== */
.lp-form__title { font-size: 1.15rem; font-weight: 700; color: var(--ink); margin: 0 0 1.4rem; }
.lp-trust {
  display: flex; flex-wrap: wrap; gap: .6rem 1.4rem;
  list-style: none; padding: 0; margin: 0;
}
.lp-trust li {
  display: flex; align-items: center; gap: .45rem;
  color: var(--faint); font-size: .82rem; font-weight: 500;
}
.lp-page .cards { margin-top: 2.6rem; }
.lp-hero__img { margin: 0 0 2rem; }
.lp-hero__img img {
  display: block; width: 100%; height: auto;
  border-radius: var(--radius-lg); border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

/* ---------- review card: rating + source badge ---------- */
.review__top { display: flex; align-items: center; justify-content: space-between; gap: .8rem; margin-bottom: 1.1rem; }
.review__rating { color: #fbbc05; font-size: .95rem; letter-spacing: .12em; }
.review__source { display: inline-flex; align-items: center; gap: .35rem; color: var(--faint); font-size: .78rem; font-weight: 600; }
.review__g { flex: none; }
.review__link { display: inline; margin-left: .3rem; color: var(--violet); font-size: .68rem; font-weight: 600; white-space: nowrap; text-decoration: none; }
.review__link:hover { text-decoration: underline; }
