/* public/landing/landing-v7.css — OWNER B (CONTRACT-V7 §2.6)
 *
 * Shared layer of the three product landing pages (dks/schilling/suite) and
 * the auth page. Loaded AFTER /styles.css, which owns every design token
 * (colours, radii, font stack, focus ring, light/dark). Nothing here
 * redefines a token; this sheet only adds the marketing layout and resolves
 * the per-product accent.
 *
 * Per-product accent: the <body> carries data-product; the block below maps
 * it to --p / --p-dark (hand-picked dark variants, the same ones the hub's
 * background washes use), and the theme states resolve them into --pa
 * (accent) and --pa-soft (tint). --accent is re-pointed at --pa so links,
 * focus rings and buttons follow the product colour automatically.
 */

/* ------------------------------------------------------- product accents */

body[data-product="dks"]       { --p: #0071e3; --p-dark: #0a84ff; }
body[data-product="schilling"] { --p: #7b4fe0; --p-dark: #9366f0; }
body[data-product="suite"]     { --p: #0a8f6c; --p-dark: #18b086; }

body.lv7 {
  --pa: var(--p, #0071e3);
  --pa-soft: color-mix(in srgb, var(--pa) 10%, transparent);
  --pa-line: color-mix(in srgb, var(--pa) 30%, transparent);
  --accent: var(--pa);
  --accent-soft: var(--pa-soft);
  --accent-line: var(--pa-line);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) body.lv7 {
    --pa: var(--p-dark, #0a84ff);
    --pa-soft: color-mix(in srgb, var(--pa) 16%, transparent);
    --pa-line: color-mix(in srgb, var(--pa) 42%, transparent);
  }
}

:root[data-theme="dark"] body.lv7 {
  --pa: var(--p-dark, #0a84ff);
  --pa-soft: color-mix(in srgb, var(--pa) 16%, transparent);
  --pa-line: color-mix(in srgb, var(--pa) 42%, transparent);
}

/* ------------------------------------------------------------- document */

body.lv7 {
  /* styles.css pins the app shell to the viewport — these pages scroll. */
  height: auto;
  min-height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  background: var(--bg);
}

/* One soft accent wash behind the page — the product colour, nothing loud. */
body.lv7::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(56rem 34rem at 82% -14%, color-mix(in srgb, var(--pa) 9%, transparent), transparent 62%),
    radial-gradient(44rem 30rem at -8% 34%, color-mix(in srgb, var(--pa) 6%, transparent), transparent 60%);
}

.lv {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px 48px;
}

/* ------------------------------------------------------------------ top */

/* v7.1 (§2): the header carries four things now — Comarch (umbrella brand),
   a hairline, the product brand and the nav. It may wrap: `space-between`
   would spread all four apart, so the nav is pushed right by an auto margin
   instead; on a line that fits, that looks exactly as it did before. */
.lv-top {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  column-gap: 13px;
  row-gap: 10px;
  padding: 20px 0 12px;
}

.lv-top > .lv-nav { margin-left: auto; }

/* Naming wrapper only: `display: contents` lets logo, hairline and product
   brand be real flex items of .lv-top, so a header that no longer fits WRAPS
   instead of squeezing the product name. No magic breakpoint is needed — the
   browser breaks the line exactly when it is full, whatever the font metrics.
   The .comarch-* base rules live in styles.css, which every landing loads. */
.lv-top-left { display: contents; }

.lv-brand-sep {
  flex: none;
  width: 1px;
  height: 24px;
  background: var(--hairline-2);
}

.lv-brand {
  display: flex;
  align-items: center;
  gap: 11px;
  /* v7.1: wrap the header rather than shrink the product name to an ellipsis. */
  flex: none;
  min-width: 0;
  color: var(--text);
  text-decoration: none;
  border-radius: var(--r-sm);
}

.lv-brand:hover { text-decoration: none; }

.lv-brand-mark {
  width: 34px;
  height: 34px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: var(--pa);
  color: #fff;
  box-shadow: var(--shadow-1);
}

.lv-brand-text { display: flex; flex-direction: column; min-width: 0; }
.lv-brand-title {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.lv-brand-sub {
  font-size: 11.5px;
  line-height: 1.35;
  color: var(--text-3);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lv-nav { display: flex; align-items: center; gap: 9px; flex: none; }

/* -------------------------------------------------------------- buttons */

.lv-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  height: 34px;
  padding: 0 15px;
  border-radius: 17px;
  font-size: 13px;
  font-weight: 560;
  text-decoration: none;
  white-space: nowrap;
  transition: filter var(--dur) var(--ease), border-color var(--dur) var(--ease),
              color var(--dur) var(--ease), background var(--dur) var(--ease);
}

.lv-btn:hover { text-decoration: none; }

.lv-btn.solid {
  /* The base product colour in both themes — white on #0071e3/#7b4fe0/#0a8f6c
     clears AA; the lightened dark variant would not. */
  background: var(--p, var(--pa));
  color: #fff;
  box-shadow: var(--shadow-1);
}

.lv-btn.solid:hover { filter: brightness(1.08); }

.lv-btn.ghost {
  border: 1px solid var(--hairline-2);
  background: var(--bg-elev);
  color: var(--text);
}

.lv-btn.ghost:hover { border-color: var(--pa-line); color: var(--pa); }

.lv-btn.lg { height: 42px; padding: 0 22px; border-radius: 21px; font-size: 14.5px; }

/* ------------------------------------------------------- language select */

.lv-lang {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  flex: none;
  padding: 0 10px;
  height: 34px;
  border-radius: 17px;
  border: 1px solid var(--hairline);
  background: var(--bg-elev);
  color: var(--text-2);
  transition: border-color var(--dur) var(--ease), color var(--dur) var(--ease);
}

.lv-lang:hover, .lv-lang:focus-within { border-color: var(--hairline-2); color: var(--text); }
.lv-lang svg { flex: none; opacity: .8; }

.lv-lang select {
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-size: 12.5px;
  padding-right: 14px;
  cursor: pointer;
  max-width: 118px;
  text-overflow: ellipsis;
}

.lv-lang select:focus-visible { outline: none; }
.lv-lang:focus-within { outline: 2px solid var(--pa); outline-offset: 2px; }

.lv-lang::after {
  content: "";
  position: absolute;
  right: 11px;
  top: 50%;
  width: 7px;
  height: 7px;
  margin-top: -5px;
  border-right: 1.6px solid currentColor;
  border-bottom: 1.6px solid currentColor;
  transform: rotate(45deg);
  pointer-events: none;
  opacity: .65;
}

/* ------------------------------------------------------------------ hero */

.lv-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  padding: 44px 0 30px;
}

@media (min-width: 980px) {
  .lv-hero { grid-template-columns: minmax(0, 11fr) minmax(0, 9fr); gap: 48px; padding: 56px 0 40px; }
}

.lv-eyebrow-row { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; flex-wrap: wrap; }

.lv-product-badge {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--pa);
  background: var(--pa-soft);
  border: 1px solid var(--pa-line);
  border-radius: 999px;
  padding: 2px 10px;
}

.lv-eyebrow {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--text-3);
}

.lv-title {
  font-size: clamp(30px, 4.8vw, 44px);
  line-height: 1.12;
  letter-spacing: -.025em;
  font-weight: 660;
  margin-bottom: 14px;
  text-wrap: balance;
}

.lv-lede {
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.62;
  color: var(--text-2);
  max-width: 58ch;
  text-wrap: pretty;
}

.lv-cta-row { display: flex; align-items: center; gap: 11px; margin-top: 24px; flex-wrap: wrap; }

.lv-hero-hint {
  margin-top: 14px;
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--text-3);
  max-width: 52ch;
}

.lv-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 20px;
}

.lv-topics li {
  font-size: 11.5px;
  color: var(--text-3);
  background: var(--bg-sunken);
  border: 1px solid var(--hairline);
  border-radius: 999px;
  padding: 2px 10px;
}

/* -------------------------------------------------- stylised app mock-up
 *
 * §2.6: "Screenshots-Ersatz durch stilisierte Elemente" — a calm, abstract
 * answer card built from pure CSS: question chip, three numbered steps with
 * skeleton lines, a figure placeholder and a source pill. No real pixels,
 * no external assets.
 */

.lv-mock {
  position: relative;
  border-radius: var(--r-xl);
  border: 1px solid var(--hairline);
  background: var(--bg-elev);
  box-shadow: var(--shadow-2);
  overflow: hidden;
}

.lv-mock-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 11px 14px;
  border-bottom: 1px solid var(--hairline);
  background: var(--bg-rail);
}

.lv-mock-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--hairline-2); }

.lv-mock-app {
  margin-left: 8px;
  font-size: 11px;
  color: var(--text-3);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lv-mock-body { padding: 16px 16px 18px; display: flex; flex-direction: column; gap: 13px; }

.lv-mock-q {
  align-self: flex-end;
  max-width: 88%;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.lv-mock-q-tag { font-size: 10px; letter-spacing: .05em; text-transform: uppercase; color: var(--text-3); align-self: flex-end; }

.lv-mock-q-bubble {
  background: var(--pa);
  color: #fff;
  font-size: 12.5px;
  line-height: 1.45;
  border-radius: 14px 14px 4px 14px;
  padding: 8px 12px;
  box-shadow: var(--shadow-1);
}

.lv-mock-a {
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  background: var(--bg);
  padding: 13px 14px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.lv-mock-a-head { display: flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--pa); }
.lv-mock-a-head::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--pa); }

.lv-mock-step { display: flex; gap: 10px; align-items: flex-start; }

.lv-mock-step-n {
  flex: none;
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--pa-soft);
  color: var(--pa);
  font-size: 11px;
  font-weight: 650;
}

.lv-mock-step-body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 5px; padding-top: 3px; }
.lv-mock-step-label { font-size: 10.5px; color: var(--text-3); letter-spacing: .03em; text-transform: uppercase; }

.lv-mock-line { height: 7px; border-radius: 4px; background: var(--bg-sunken); }
.lv-mock-line.w80 { width: 80%; }
.lv-mock-line.w60 { width: 60%; }
.lv-mock-line.w90 { width: 90%; }

.lv-mock-figure {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px dashed var(--hairline-2);
  border-radius: var(--r-md);
  padding: 10px 12px;
  color: var(--text-3);
  font-size: 11.5px;
  background: var(--bg-sunken);
}

.lv-mock-figure svg { flex: none; opacity: .8; }

.lv-mock-src {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--pa);
  background: var(--pa-soft);
  border: 1px solid var(--pa-line);
  border-radius: 999px;
  padding: 2px 10px;
}

/* -------------------------------------------------------------- sections */

.lv-section { padding: 26px 0; }

.lv-section-title {
  font-size: clamp(20px, 2.6vw, 26px);
  letter-spacing: -.02em;
  font-weight: 640;
  margin-bottom: 8px;
  text-wrap: balance;
}

.lv-section-lede {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-2);
  max-width: 62ch;
  margin-bottom: 22px;
  text-wrap: pretty;
}

/* about card */
.lv-about {
  border: 1px solid var(--hairline);
  border-left: 3px solid var(--pa);
  border-radius: var(--r-lg);
  background: var(--bg-elev);
  box-shadow: var(--shadow-1);
  padding: 20px 22px;
  max-width: 76ch;
}

.lv-about h2 { font-size: 17px; font-weight: 630; letter-spacing: -.015em; margin-bottom: 8px; }
.lv-about p { font-size: 14px; line-height: 1.65; color: var(--text-2); text-wrap: pretty; }

/* feature cards */
.lv-feats {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
}

@media (min-width: 660px) { .lv-feats { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 980px) { .lv-feats { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; } }

.lv-feat {
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  background: var(--bg-elev);
  box-shadow: var(--shadow-1);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}

.lv-feat:hover {
  border-color: var(--pa-line);
  transform: translateY(-2px);
  box-shadow: var(--shadow-2);
}

.lv-feat-ic {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: var(--r-md);
  background: var(--pa-soft);
  color: var(--pa);
}

.lv-feat h3 { font-size: 14.5px; font-weight: 620; letter-spacing: -.012em; }
.lv-feat p { font-size: 13px; line-height: 1.6; color: var(--text-2); text-wrap: pretty; }

/* how it works */
.lv-how {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
  counter-reset: lv-step;
}

@media (min-width: 780px) { .lv-how { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; } }

.lv-how-step {
  position: relative;
  border-radius: var(--r-lg);
  border: 1px solid var(--hairline);
  background: var(--bg-elev);
  padding: 18px 18px 16px;
  counter-increment: lv-step;
}

.lv-how-step::before {
  content: counter(lv-step);
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  margin-bottom: 11px;
  border-radius: 50%;
  background: var(--pa);
  color: #fff;
  font-size: 14px;
  font-weight: 650;
  box-shadow: var(--shadow-1);
}

.lv-how-step h3 { font-size: 14.5px; font-weight: 620; margin-bottom: 5px; }
.lv-how-step p { font-size: 13px; line-height: 1.6; color: var(--text-2); text-wrap: pretty; }

/* example chips */
.lv-chips {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 8px;
  max-width: 900px;
}

@media (min-width: 720px) { .lv-chips { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

.lv-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px 10px 14px;
  border-radius: var(--r-md);
  border: 1px solid var(--hairline);
  background: var(--bg-elev);
  color: var(--text-2);
  font-size: 13px;
  line-height: 1.45;
  text-decoration: none;
  transition: background 120ms var(--ease), border-color 120ms var(--ease),
              color 120ms var(--ease), transform 120ms var(--ease);
}

.lv-chip:hover {
  text-decoration: none;
  color: var(--text);
  border-color: var(--pa-line);
  background: var(--pa-soft);
  transform: translateX(2px);
}

.lv-chip-q { flex: 1; min-width: 0; text-wrap: pretty; }
.lv-chip-go { flex: none; color: var(--text-3); transition: color 120ms var(--ease), transform 120ms var(--ease); }
.lv-chip:hover .lv-chip-go { color: var(--pa); transform: translateX(2px); }

.lv-chips-note {
  margin-top: 14px;
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--text-3);
  max-width: 66ch;
  text-wrap: pretty;
}

/* CTA band */
.lv-cta-band {
  margin-top: 14px;
  border-radius: var(--r-xl);
  border: 1px solid var(--pa-line);
  background: var(--pa-soft);
  padding: 30px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
}

.lv-cta-band h2 { font-size: clamp(19px, 2.4vw, 24px); letter-spacing: -.02em; font-weight: 640; margin-bottom: 6px; }
.lv-cta-band p { font-size: 14px; line-height: 1.6; color: var(--text-2); max-width: 56ch; text-wrap: pretty; }
.lv-cta-band .lv-cta-row { margin-top: 0; flex: none; }

/* ------------------------------------------------------------------ foot */

.lv-foot {
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid var(--hairline);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.lv-foot-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
}

.lv-foot-col { display: flex; flex-direction: column; gap: 7px; min-width: 0; }

.lv-foot-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 2px;
}

.lv-foot a { color: var(--text-2); font-size: 13px; text-decoration: none; }
.lv-foot a:hover { color: var(--pa); text-decoration: none; }
.lv-foot a[aria-current="page"] { color: var(--pa); font-weight: 560; }

.lv-foot-note {
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--text-3);
  max-width: 74ch;
  text-wrap: pretty;
}

/* ============================================================ auth page */

/* The [hidden] attribute must beat the display:flex/grid of tabs and
 * message boxes — otherwise "hidden" tabs stay on screen. */
body.lv7 [hidden] { display: none !important; }

.av-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px 0 40px;
}

.av-card {
  width: 100%;
  max-width: 420px;
  border: 1px solid var(--hairline);
  border-radius: var(--r-xl);
  background: var(--bg-elev);
  box-shadow: var(--shadow-2);
  padding: 26px 26px 24px;
}

.av-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  padding: 4px;
  margin-bottom: 22px;
  border-radius: var(--r-md);
  background: var(--bg-sunken);
}

.av-tab {
  display: grid;
  place-items: center;
  height: 32px;
  border-radius: var(--r-sm);
  font-size: 13px;
  font-weight: 560;
  color: var(--text-2);
  text-decoration: none;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}

.av-tab:hover { text-decoration: none; color: var(--text); }
.av-tab[aria-current="page"] { background: var(--bg-elev); color: var(--text); box-shadow: var(--shadow-1); }

.av-title { font-size: 21px; font-weight: 650; letter-spacing: -.02em; margin-bottom: 6px; }
.av-sub { font-size: 13.5px; line-height: 1.55; color: var(--text-2); margin-bottom: 18px; text-wrap: pretty; }

/* mode panels — exactly one is visible, driven by data-mode on the card */
[data-mode-panel] { display: none; }
.av-card[data-mode="login"]    [data-mode-panel="login"],
.av-card[data-mode="register"] [data-mode-panel="register"],
.av-card[data-mode="forgot"]   [data-mode-panel="forgot"],
.av-card[data-mode="reset"]    [data-mode-panel="reset"],
.av-card[data-mode="verify"]   [data-mode-panel="verify"] { display: block; }

.av-form { display: flex; flex-direction: column; gap: 13px; }

.av-field { display: flex; flex-direction: column; gap: 5px; }

.av-label { font-size: 12.5px; font-weight: 560; color: var(--text-2); }
.av-label .av-opt { font-weight: 400; color: var(--text-3); }

.av-input {
  height: 40px;
  padding: 0 12px;
  border-radius: var(--r-sm);
  border: 1px solid var(--hairline-2);
  background: var(--bg);
  color: var(--text);
  font-size: 14px;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.av-input:focus-visible {
  outline: none;
  border-color: var(--pa);
  box-shadow: 0 0 0 3px var(--pa-soft);
}

.av-hint { font-size: 11.5px; line-height: 1.5; color: var(--text-3); }

.av-submit {
  height: 42px;
  border-radius: 21px;
  background: var(--p, var(--pa));
  color: #fff;
  font-size: 14.5px;
  font-weight: 580;
  box-shadow: var(--shadow-1);
  transition: filter var(--dur) var(--ease), opacity var(--dur) var(--ease);
}

.av-submit:hover:not(:disabled) { filter: brightness(1.08); }
.av-submit:disabled { opacity: .6; cursor: default; }

.av-links {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--hairline);
}

.av-links a { font-size: 13px; color: var(--pa); text-decoration: none; }
.av-links a:hover { text-decoration: underline; }

/* error / notice boxes */
.av-error {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  padding: 10px 12px;
  margin-bottom: 14px;
  border-radius: var(--r-md);
  border: 1px solid var(--red-soft);
  background: var(--red-soft);
  color: var(--text);
  font-size: 13px;
  line-height: 1.5;
}

.av-error svg { flex: none; color: var(--red); margin-top: 1px; }

.av-notice {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  padding: 10px 12px;
  margin-bottom: 14px;
  border-radius: var(--r-md);
  border: 1px solid var(--green-soft);
  background: var(--green-soft);
  color: var(--text);
  font-size: 13px;
  line-height: 1.5;
}

.av-notice svg { flex: none; color: var(--green); margin-top: 1px; }

/* success / verify result panel */
.av-result { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }

.av-result-ic {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
}

.av-result-ic.bad { background: var(--red-soft); color: var(--red); }
.av-result-ic.neutral { background: var(--pa-soft); color: var(--pa); }

.av-result h2 { font-size: 17px; font-weight: 630; }
.av-result p { font-size: 13.5px; line-height: 1.6; color: var(--text-2); text-wrap: pretty; }
.av-result .lv-btn { margin-top: 6px; }

/* Honeypot (§2.7) — visually removed, still submittable by naive bots.
   NOT display:none: some bots skip invisible-by-display fields. */
.av-hp {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.av-foot-note {
  margin-top: 22px;
  font-size: 12px;
  line-height: 1.55;
  color: var(--text-3);
  text-align: center;
  max-width: 52ch;
}

/* ------------------------------------------------------------ narrow view */

@media (max-width: 640px) {
  .lv { padding: 0 16px 36px; }
  .lv-hero { padding: 30px 0 22px; gap: 26px; }
  .lv-brand-sub { display: none; }
  .lv-nav .lv-btn.ghost { display: none; }  /* register CTA + language stay */
  .lv-section { padding: 20px 0; }
  .lv-cta-band { padding: 22px 18px; }
  .av-card { padding: 20px 18px 18px; }
}

@media (max-width: 480px) {
  /* Phones: the mark alone stands for the brand — the header row then fits
     mark + language + register CTA without truncated words. */
  .lv-brand-text { display: none; }

  /* v7.1 (§2): that reason is gone — the nav now wraps onto its own row, so
     the brand row has room to spell the product out again next to Comarch. */
  .lv-top-left .lv-brand-text { display: flex; }
}

@media (max-width: 380px) {
  .lv-lang select { max-width: 86px; }
}

/* ---------------------------------------------------------------- motion */

.lv-hero > * , .lv-mock { animation: lv-rise 260ms var(--ease) both; }
.lv-hero > :nth-child(1) { animation-delay: 20ms; }
.lv-hero > :nth-child(2) { animation-delay: 60ms; }
.lv-mock { animation-delay: 110ms; }

@keyframes lv-rise {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  .lv-hero > *, .lv-mock { animation: none; }
  .lv-feat, .lv-chip, .lv-btn { transition: none; }
  .lv-feat:hover { transform: none; }
  .lv-chip:hover { transform: none; }
  .lv-chip:hover .lv-chip-go { transform: none; }
}
