/* =============================================================================
   r365 · Landing page — landing.css
   Self-contained. Tokens mirror tailwind.config.cjs (emerald accent + zinc
   neutrals). No external assets. Every animation degrades under reduced-motion.
   ============================================================================= */

/* --- tokens ---------------------------------------------------------------- */
:root {
  --accent-50:  #ecfdf5;
  --accent-300: #6ee7b7;
  --accent-500: #10b981;
  --accent-600: #059669;
  --accent-700: #047857;
  --zinc-50:  #fafafa;
  --zinc-100: #f4f4f5;
  --zinc-200: #e4e4e7;
  --zinc-300: #d4d4d8;
  --zinc-400: #a1a1aa;
  --zinc-500: #71717a;
  --zinc-600: #52525b;
  --zinc-700: #3f3f46;
  --zinc-800: #27272a;
  --zinc-900: #18181b;
  --amber-50:  #fffbeb;
  --amber-200: #fde68a;
  --amber-700: #b45309;
  --radius: 0.75rem;
  --step--1: 0.8rem;
  --step-0:  0.95rem;
  --step-1:  1.125rem;
  --step-2:  1.5rem;
  --step-3:  clamp(2rem, 6vw, 3rem);
}

/* --- reset / base ---------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  font-family: system-ui, -apple-system, 'Segoe UI', sans-serif;
  color: var(--zinc-800);
  background: var(--zinc-50);
}

body { margin: 0; }

/* --- skip link ------------------------------------------------------------- */
.skip-link {
  position: absolute; top: -3rem; left: 1rem;
  background: var(--accent-600); color: #fff;
  padding: 0.5rem 1rem; border-radius: var(--radius);
  font-size: var(--step--1); font-weight: 600;
  text-decoration: none; z-index: 100;
  transition: top 0.15s;
}
.skip-link:focus { top: 0.5rem; }

/* --- nav bar --------------------------------------------------------------- */
.lp-nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; gap: 1rem;
  padding: 0.75rem 1.5rem;
  background: rgba(250,250,250,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--zinc-200);
  min-height: 56px;
}
.lp-nav__brand {
  display: flex; align-items: center; gap: 0.5rem;
  text-decoration: none; margin-right: auto;
  color: var(--zinc-900);
}
.lp-nav__logo { width: 28px; height: 28px; flex: none; }
/* Inline-SVG logo strokes — externalized from a <style> inside the <svg> so the
   strict web-door CSP (no inline <style>) still paints the mark. */
.nav-table { fill: var(--accent-600); }
.nav-seat-a { fill: var(--accent-700); }
.nav-seat-b { fill: #34d399; }
.nav-seat-c { fill: #10b981; }
.nav-seat-d { fill: #065f46; }
.nav-seat-open { fill: none; stroke: var(--accent-600); stroke-width: 1.9; stroke-dasharray: 3.1 2.7; }
.lp-nav__name {
  font-weight: 800; font-size: 1.15rem; letter-spacing: -0.02em;
  color: var(--zinc-900);
}
.lp-nav__tag {
  font-size: 0.78rem; color: var(--zinc-500);
  padding-left: 0.5rem; border-left: 1px solid var(--zinc-200);
}
.lp-nav__cta {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 36px; padding: 0.4rem 0.85rem;
  background: var(--accent-600); color: #fff;
  border: none; border-radius: var(--radius);
  font-size: var(--step--1); font-weight: 600; font-family: inherit;
  text-decoration: none; cursor: pointer;
  transition: background 0.15s, transform 0.1s;
}
.lp-nav__cta:hover { background: var(--accent-700); }
.lp-nav__cta:active { transform: translateY(1px); }

/* editorial section link (→ /research/) — subtle text link, emerald on hover */
.lp-nav__link {
  color: var(--zinc-600); text-decoration: none;
  font-size: var(--step--1); font-weight: 600;
  padding: 0.4rem 0.5rem; border-radius: var(--radius);
  transition: background 0.12s, color 0.12s;
}
.lp-nav__link:hover { background: var(--zinc-100); color: var(--accent-700); }

/* lang switcher in nav */
.lp-nav__langs {
  display: flex; gap: 0; align-items: center;
  border: 1px solid var(--zinc-200); border-radius: var(--radius);
  overflow: hidden;
}
.lp-nav__langs a {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 2.2rem; min-height: 32px; padding: 0.3rem 0.55rem;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.04em;
  color: var(--zinc-500); text-decoration: none;
  transition: background 0.12s, color 0.12s;
  text-transform: uppercase;
}
.lp-nav__langs a:hover { background: var(--zinc-100); color: var(--zinc-800); }
.lp-nav__langs a[aria-current="true"] {
  background: var(--accent-600); color: #fff;
}

@media (max-width: 640px) {
  /* Tighter gutters + wrap fallback so the switcher and the waitlist CTA never
     overlap on narrow phones (they used to collide under the old long CTA). */
  .lp-nav { gap: 0.35rem 0.45rem; flex-wrap: nowrap; padding-left: 0.85rem; padding-right: 0.85rem; min-height: 48px; }
  .lp-nav__tag { display: none; }
  .lp-nav__link { padding: 0.4rem 0.35rem; }
  .lp-nav__langs a { min-width: 1.65rem; padding: 0.3rem 0.35rem; }
  .lp-nav__cta { padding: 0.4rem 0.7rem; font-size: 0.78rem; white-space: nowrap; }
}
@media (max-width: 400px) {
  .lp-nav { gap: 0.35rem; }
  .lp-nav__langs a { min-width: 1.5rem; padding: 0.3rem 0.28rem; }
}

/* focus */
:where(a, button, summary):focus-visible {
  outline: 2px solid rgba(5,150,105,.85); outline-offset: 2px;
  border-radius: var(--radius);
}

/* --- hero ------------------------------------------------------------------ */
.lp-hero {
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  /* B8-5 proof-first (2026-07-12): the hero is a COMPACT identity band now, not
     a full screen — the Härdli demo-proof section below leads visually. */
  padding: clamp(1.75rem, 4vw, 3rem) 1.5rem clamp(1.5rem, 3vw, 2.5rem);
  background:
    radial-gradient(65% 55% at 50% 14%, var(--accent-50) 0%, transparent 62%),
    var(--zinc-50);
}

.lp-hero__mark {
  width: clamp(64px, 13vw, 88px);
  height: auto;
  margin-bottom: 1.1rem;
}

/* animated mark — inline SVG */
.lp-hero__mark svg { width: 100%; height: auto; }
.lp-hero__table { fill: var(--accent-600); }
.lp-hero__seat--0 { fill: var(--accent-700); }
.lp-hero__seat--1 { fill: #34d399; }
.lp-hero__seat--2 { fill: #10b981; }
.lp-hero__seat--3 { fill: #065f46; }
.lp-hero__seat-open { fill: none; stroke: var(--accent-600); stroke-width: 1.9; stroke-dasharray: 3.1 2.7; }

/* Per-seat stagger index — externalized from inline style="--i:N" (CSP-safe).
   Consumed by the animation-delay calc() in the no-preference block below. */
.lp-hero__seat--0 { --i: 0; }
.lp-hero__seat--1 { --i: 1; }
.lp-hero__seat--2 { --i: 2; }
.lp-hero__seat--3 { --i: 3; }
.lp-hero__seat--4 { --i: 4; }

@media (prefers-reduced-motion: no-preference) {
  .lp-hero__table {
    transform-box: fill-box; transform-origin: center;
    transform: scale(0);
    animation: lp-pop-in 0.42s cubic-bezier(.34,1.56,.64,1) 0.05s forwards;
  }
  .lp-hero__seat {
    transform-box: fill-box; transform-origin: center;
    transform: scale(0);
    animation: lp-pop-in 0.34s cubic-bezier(.34,1.56,.64,1) forwards;
    animation-delay: calc(0.34s + var(--i) * 0.11s);
  }
  .lp-hero__tagline,
  .lp-hero h1,
  .lp-hero__promise,
  .lp-hero__actions,
  .lp-hero__cta-note {
    opacity: 0; transform: translateY(12px);
    animation: lp-rise 0.55s cubic-bezier(.16,1,.3,1) forwards;
  }
  .lp-hero__tagline { animation-delay: 0.6s; }
  .lp-hero h1       { animation-delay: 0.72s; }
  .lp-hero__promise { animation-delay: 0.88s; }
  .lp-hero__actions { animation-delay: 1.06s; }
  .lp-hero__cta-note { animation-delay: 1.18s; }
}
@media (prefers-reduced-motion: reduce) {
  .lp-hero__table, .lp-hero__seat { transform: none; animation: none; }
  .lp-hero__tagline, .lp-hero h1, .lp-hero__promise, .lp-hero__actions, .lp-hero__cta-note
    { opacity: 1; transform: none; animation: none; }
}

@keyframes lp-pop-in { to { transform: scale(1); } }
@keyframes lp-rise { to { opacity: 1; transform: translateY(0); } }

.lp-hero__tagline {
  margin: 0 0 0.6rem;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--accent-700);
}
.lp-hero h1 {
  margin: 0; line-height: 1.06;
}
.lp-hero__brand {
  display: block;
  font-size: clamp(2.75rem, 9vw, 3.75rem);
  font-weight: 800; letter-spacing: -0.03em;
  color: var(--zinc-900);
}
.lp-hero__subtitle {
  display: block; margin-top: 0.3rem;
  font-size: clamp(1rem, 3.2vw, 1.2rem);
  font-weight: 500; color: var(--zinc-500);
}
.lp-hero__promise {
  max-width: 28rem; margin: 1.25rem auto 0;
  font-size: var(--step-0); line-height: 1.65;
  color: var(--zinc-600);
}
.lp-hero__actions {
  display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center;
  margin-top: 2rem;
}
/* Honest gate line under the primary (waitlist) CTA — same muted voice as the
   footer note; closed CH beta, no launch date promised. */
.lp-hero__cta-note {
  max-width: 26rem; margin: 0.9rem auto 0;
  font-size: var(--step--1); line-height: 1.5;
  color: var(--zinc-500);
}

/* buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
  min-height: 44px; padding: 0.6rem 1.25rem; border-radius: var(--radius);
  font-size: var(--step-0); font-weight: 600; font-family: inherit;
  text-decoration: none; cursor: pointer; border: none;
  transition: background 0.15s, border-color 0.15s, transform 0.1s;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn--primary { background: var(--accent-600); color: #fff; }
.btn--primary:hover { background: var(--accent-700); }
/* BRAND.md §3 — the three-shape grammar: primary (above), secondary, inverse.
   Legacy aliases (--ghost/--white/--outline-white) map onto it below. */
.btn--secondary {
  background: #fff; color: var(--zinc-800, #27272a);
  border: 1px solid var(--zinc-300, #d4d4d8);
}
.btn--secondary:hover { border-color: var(--accent-300); }
.btn--inverse {
  background: transparent; color: #fff;
  border: 1px solid rgba(255,255,255,.55);
}
.btn--inverse:hover { border-color: #fff; background: rgba(255,255,255,.06); }
.btn--inverse[disabled] {
  border-style: dashed; opacity: .75; cursor: default;
  background: transparent; color: rgba(255,255,255,.85);
}
/* (btn--ghost retired — BRAND.md §3: use .btn--secondary) */

/* --- section layout -------------------------------------------------------- */
.lp-section {
  padding: clamp(3rem, 8vw, 5rem) 1.5rem;
}
.lp-section--white { background: #fff; }
.lp-section--tint  { background: var(--zinc-50); }
.lp-section--accent { background: var(--accent-50); }

.lp-inner {
  max-width: 52rem; margin: 0 auto;
}
.lp-inner--wide { max-width: 70rem; }

/* section eyebrow + heading pattern */
.lp-eyebrow {
  display: block; margin-bottom: 0.5rem;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--accent-700);
}
.lp-h2 {
  margin: 0 0 1rem;
  font-size: var(--step-3); font-weight: 800;
  letter-spacing: -0.025em; line-height: 1.08;
  color: var(--zinc-900);
}
.lp-lead {
  font-size: var(--step-1); line-height: 1.65;
  color: var(--zinc-600); max-width: 42rem;
}
.lp-body {
  font-size: var(--step-0); line-height: 1.7;
  color: var(--zinc-600); max-width: 42rem;
}

/* --- demo section ---------------------------------------------------------- */
.demo-household {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
  gap: 0.75rem;
  margin: 2rem 0;
}
.demo-member {
  padding: 0.85rem 1rem;
  background: #fff; border: 1px solid var(--zinc-200);
  border-radius: var(--radius);
  font-size: var(--step--1);
}
.demo-member__name {
  display: block; font-weight: 700; font-size: var(--step-0);
  color: var(--zinc-900); margin-bottom: 0.3rem;
}
.demo-member__detail { color: var(--zinc-500); line-height: 1.5; }
.demo-member--constraint { border-left: 3px solid var(--accent-600); }
.demo-member--meds { border-left: 3px solid #b45309; }

/* demo plan grid */
.demo-plan {
  margin: 2rem 0;
  border: 1px solid var(--zinc-200); border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
}
.demo-plan__header {
  display: grid; grid-template-columns: 6.5rem 1fr 1fr 1fr;
  background: var(--zinc-50);
  border-bottom: 1px solid var(--zinc-200);
}
.demo-plan__header-cell {
  padding: 0.6rem 1rem;
  font-size: var(--step--1); font-weight: 700;
  color: var(--zinc-500); text-transform: uppercase;
  letter-spacing: 0.06em; text-align: center;
}
.demo-plan__header-cell:first-child { text-align: left; }

.demo-plan__row {
  display: grid; grid-template-columns: 6.5rem 1fr 1fr 1fr;
  border-bottom: 1px solid var(--zinc-100);
}
.demo-plan__row:last-child { border-bottom: none; }

.demo-plan__label {
  padding: 0.85rem 1rem;
  font-size: var(--step--1); font-weight: 700;
  color: var(--zinc-500); text-transform: uppercase;
  letter-spacing: 0.04em;
  display: flex; align-items: flex-start;
  border-right: 1px solid var(--zinc-100);
}

.demo-plan__cell {
  padding: 0.75rem 1rem;
  border-right: 1px solid var(--zinc-100);
  font-size: var(--step--1); line-height: 1.55;
}
.demo-plan__cell:last-child { border-right: none; }

.demo-dish {
  display: block; color: var(--zinc-800); font-weight: 500;
}
.demo-dish--split {
  display: flex; align-items: flex-start; gap: 0.35rem;
  margin-top: 0.45rem;
  font-weight: 400; color: var(--zinc-500);
  font-size: 0.78rem;
}
.demo-dish--split::before {
  content: '↳';
  flex: none;
  color: var(--amber-700);
  font-weight: 700;
}

/* status row */
.demo-status {
  display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center;
  padding: 0.85rem 1rem;
  background: var(--zinc-50);
  border-top: 1px solid var(--zinc-200);
}

/* pills */
.pill {
  display: inline-flex; align-items: center; gap: 0.35rem;
  padding: 0.2rem 0.65rem; border-radius: 9999px;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.02em;
}
.pill--optimal {
  background: #dcfce7; color: #15803d;
}
.pill--amber {
  background: var(--amber-50); color: var(--amber-700);
  border: 1px solid var(--amber-200);
}
.pill--constraint {
  background: var(--accent-50); color: var(--accent-700);
}
.pill__dot {
  width: 6px; height: 6px; border-radius: 9999px;
  background: currentColor; flex: none;
}

.demo-cert-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  margin-top: 1.25rem;
  padding: 0.6rem 1rem;
  background: var(--zinc-900); color: #fff;
  border-radius: var(--radius);
  font-size: var(--step--1); font-weight: 600;
  text-decoration: none;
  transition: background 0.15s;
}
.demo-cert-link:hover { background: var(--zinc-700); }
.demo-cert-link svg { width: 16px; height: 16px; flex: none; }

/* responsive: collapse demo grid on mobile */
@media (max-width: 700px) {
  .demo-plan { overflow-x: auto; }
  .demo-plan__header,
  .demo-plan__row { grid-template-columns: 5rem repeat(3, minmax(9rem, 1fr)); }
}
@media (max-width: 500px) {
  .demo-household { grid-template-columns: 1fr 1fr; }
}

/* --- trust row ------------------------------------------------------------- */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.trust-card {
  padding: 1.5rem;
  background: #fff; border: 1px solid var(--zinc-200);
  border-radius: var(--radius);
}
.trust-card__icon {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: var(--accent-50); border-radius: 0.5rem;
  color: var(--accent-600); margin-bottom: 1rem;
}
.trust-card__icon svg { width: 20px; height: 20px; }
.trust-card__label {
  display: block; margin-bottom: 0.6rem;
  font-size: var(--step-1); font-weight: 700;
  color: var(--zinc-900);
}
.trust-card__body {
  font-size: var(--step--1); line-height: 1.7;
  color: var(--zinc-500);
}
.trust-card__body code {
  font-family: ui-monospace, 'Menlo', 'Consolas', monospace;
  font-size: 0.82em; background: var(--zinc-100);
  padding: 0.1em 0.35em; border-radius: 0.25rem;
  color: var(--zinc-700);
}
.trust-card__link {
  display: inline-block; margin-top: 0.75rem;
  font-size: 0.78rem; font-weight: 600; color: var(--accent-700);
  text-decoration: none;
}
.trust-card__link:hover { text-decoration: underline; }

.trust-m9 {
  margin-top: 1.5rem; padding: 1rem 1.25rem;
  background: var(--accent-50); border: 1px solid var(--accent-300);
  border-radius: var(--radius);
  font-size: var(--step--1); color: var(--zinc-700); line-height: 1.6;
}
.trust-m9 strong { color: var(--zinc-900); }

/* --- assistant section ----------------------------------------------------- */
.assistant-card {
  margin-top: 2rem; padding: 2rem;
  background: var(--zinc-900); color: #fff;
  border-radius: calc(var(--radius) * 1.5);
}
.assistant-card__eyebrow {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--accent-300);
  margin-bottom: 0.5rem;
}
.assistant-card__heading {
  font-size: clamp(1.35rem, 3.5vw, 1.75rem); font-weight: 800;
  letter-spacing: -0.02em; line-height: 1.15;
  margin: 0 0 1rem;
  color: #fff;
}
.assistant-card__body {
  font-size: var(--step-0); line-height: 1.7;
  color: rgba(255,255,255,.7);
  max-width: 36rem;
}
.assistant-card__konto {
  margin-top: 1.25rem; padding: 0.85rem 1.1rem;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  font-size: var(--step--1); font-weight: 600;
  color: rgba(255,255,255,.85); line-height: 1.5;
}
.assistant-card__actions {
  display: flex; flex-wrap: wrap; align-items: flex-start;
  gap: 0.75rem 1rem; margin-top: 1.5rem;
}
/* Claude door: the disabled button + its visible availability caption stack. */
.assistant-card__claude {
  display: flex; flex-direction: column; align-items: flex-start; gap: 0.45rem;
}
.assistant-card__claude-note {
  font-size: var(--step--1); font-weight: 600;
  color: rgba(255,255,255,.7);
}
/* (btn--white retired — BRAND.md §3: use .btn--inverse) */
/* (btn--outline-white retired — BRAND.md §3: use .btn--inverse) */

/* Non-actionable state — the Claude deep-link stays disabled until the CH
   launch. `.btn:disabled` covers the real <button disabled> (cannot be clicked
   or focused); the attribute selector stays for any aria-disabled anchors. */
.btn[aria-disabled="true"],
.btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
}

/* --- brand bridge ---------------------------------------------------------- */
.lp-bridge {
  padding: clamp(2rem, 5vw, 3.5rem) 1.5rem;
  background: var(--accent-50);
  text-align: center;
}
.lp-bridge__line {
  font-size: clamp(1.1rem, 2.8vw, 1.4rem);
  font-weight: 700; color: var(--accent-700);
  letter-spacing: -0.01em;
  max-width: 38rem; margin: 0 auto;
}

/* --- footer ---------------------------------------------------------------- */
.lp-footer {
  background: var(--zinc-900); color: rgba(255,255,255,.7);
  padding: clamp(2.5rem, 7vw, 4rem) 1.5rem;
}
.lp-footer__inner {
  max-width: 52rem; margin: 0 auto;
  display: grid; gap: 2rem;
}
.lp-footer__brand {
  display: flex; align-items: center; gap: 0.6rem;
}
.lp-footer__brand-logo { width: 28px; height: 28px; }
/* Footer inline-SVG logo strokes — externalized for the strict CSP (see nav). */
.ft-table { fill: rgba(255,255,255,.85); }
.ft-seat  { fill: rgba(255,255,255,.55); }
.ft-seat-open { fill: none; stroke: var(--accent-300); stroke-width: 1.9; stroke-dasharray: 3.1 2.7; }
.lp-footer__brand-name {
  font-size: 1.1rem; font-weight: 800; letter-spacing: -0.02em; color: #fff;
}
.lp-footer__badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.25rem 0.7rem; border-radius: 9999px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--accent-300);
  margin-left: 0.75rem;
}
.lp-footer__note {
  font-size: var(--step--1); line-height: 1.65;
  color: rgba(255,255,255,.55); max-width: 38rem;
}
.lp-footer__waitlist {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.55rem 1.1rem; margin-top: 0.85rem;
  background: var(--accent-600); color: #fff;
  border-radius: var(--radius); border: none;
  font-size: var(--step--1); font-weight: 600; font-family: inherit;
  text-decoration: none; cursor: pointer;
  transition: background 0.15s;
}
.lp-footer__waitlist:hover { background: var(--accent-700); }
.lp-footer__meta {
  display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem;
  padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.08);
  font-size: 0.75rem; color: rgba(255,255,255,.35);
}
.lp-footer__meta a { color: rgba(255,255,255,.35); text-decoration: none; }
.lp-footer__meta a:hover { color: rgba(255,255,255,.6); }

/* --- locale switching ------------------------------------------------------ */
/* By default, body.lang-de shows DE; non-DE content is hidden.
   The tiny JS at the bottom reads ?lang= and swaps the body class.
   Without JS: all locale blocks are visible (honest degradation). */

body.lang-de .lp-locale-en,
body.lang-de .lp-locale-fr,
body.lang-de .lp-locale-it { display: none; }

body.lang-en .lp-locale-de,
body.lang-en .lp-locale-fr,
body.lang-en .lp-locale-it { display: none; }

body.lang-fr .lp-locale-de,
body.lang-fr .lp-locale-en,
body.lang-fr .lp-locale-it { display: none; }

body.lang-it .lp-locale-de,
body.lang-it .lp-locale-en,
body.lang-it .lp-locale-fr { display: none; }
