/* ======================================================================
   ITIL v5 Designer — Landing page (dark premium editorial).
   Desktop-only overlay shown before authorized login. Fonts loaded in
   index.html: Bricolage Grotesque (display), Hanken Grotesk (body),
   Noto Sans JP (CJK fallback).
   ===================================================================== */

/* Hide the app entirely until an authorized login reveals it. */
body.pre-auth .app-header,
body.pre-auth .workspace,
body.pre-auth .app-footer {
  display: none !important;
}
body.pre-auth {
  overflow: hidden;
}

#itil-landing {
  --lp-bg: #0a1628;
  --lp-bg2: #0f1f33;
  --lp-navy: #1b3a5c;
  --lp-ink: #eaf2fb;
  --lp-muted: #90a8c6;
  --lp-faint: #5d7a9c;
  --lp-accent: #2dd4bf;
  --lp-accent2: #22d3ee;
  --lp-line: rgba(255, 255, 255, 0.09);
  --lp-display: "Bricolage Grotesque", "Noto Sans JP", system-ui, sans-serif;
  --lp-body: "Hanken Grotesk", "Noto Sans JP", system-ui, sans-serif;

  position: fixed;
  inset: 0;
  /* Below the Clerk modal backdrop (z-index 10000) so the sign-in modal shows
     in front, but above the (hidden) app. The desktop-only gate stays at
     100000, above everything. */
  z-index: 9000;
  overflow-y: auto;
  overflow-x: hidden;
  background: var(--lp-bg);
  color: var(--lp-ink);
  font-family: var(--lp-body);
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

/* Atmospheric background: layered radial gradient mesh */
#itil-landing .lp-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(60% 50% at 78% 8%, rgba(45, 212, 191, 0.16), transparent 70%),
    radial-gradient(50% 45% at 12% 22%, rgba(34, 211, 238, 0.12), transparent 70%),
    radial-gradient(70% 60% at 50% 110%, rgba(27, 58, 92, 0.55), transparent 70%),
    linear-gradient(180deg, var(--lp-bg) 0%, var(--lp-bg2) 100%);
}
#itil-landing .lp-grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

#itil-landing > section,
#itil-landing > header {
  position: relative;
  z-index: 1;
}

/* ---- Nav ---- */
#itil-landing .lp-nav {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px clamp(24px, 5vw, 72px);
  backdrop-filter: blur(12px);
  background: linear-gradient(180deg, rgba(10, 22, 40, 0.85), rgba(10, 22, 40, 0));
}
#itil-landing .lp-brand {
  font-family: var(--lp-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: 19px;
  display: flex;
  gap: 7px;
  align-items: baseline;
}
#itil-landing .lp-brand-mark { color: var(--lp-accent); }
#itil-landing .lp-brand-rest { color: var(--lp-ink); }
#itil-landing .lp-nav-right { display: flex; align-items: center; gap: 16px; }

#itil-landing .lp-lang { display: flex; gap: 2px; padding: 3px; border: 1px solid var(--lp-line); border-radius: 999px; }
#itil-landing .lp-lang-btn {
  border: none;
  background: transparent;
  color: var(--lp-muted);
  font: 600 11px/1 var(--lp-body);
  letter-spacing: 0.04em;
  padding: 6px 9px;
  border-radius: 999px;
  cursor: pointer;
  transition: color 0.15s, background 0.15s;
}
#itil-landing .lp-lang-btn:hover { color: var(--lp-ink); }
#itil-landing .lp-lang-btn.is-active { color: #04221d; background: var(--lp-accent); }

/* ---- Buttons ---- */
#itil-landing .lp-btn {
  font: 600 14px/1 var(--lp-body);
  border-radius: 999px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.08s ease, box-shadow 0.2s ease, background 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
#itil-landing .lp-btn--nav { padding: 10px 20px; background: rgba(255,255,255,0.06); border-color: var(--lp-line); color: var(--lp-ink); }
#itil-landing .lp-btn--nav:hover { background: rgba(255,255,255,0.12); }
#itil-landing .lp-btn--primary {
  padding: 14px 26px;
  background: linear-gradient(135deg, var(--lp-accent), var(--lp-accent2));
  color: #04221d;
  font-weight: 700;
  box-shadow: 0 10px 34px -8px rgba(45, 212, 191, 0.55);
}
#itil-landing .lp-btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 44px -8px rgba(45, 212, 191, 0.7); }
#itil-landing .lp-btn--lg { padding: 17px 34px; font-size: 16px; }
#itil-landing .lp-arrow { transition: transform 0.18s ease; }
#itil-landing .lp-btn--primary:hover .lp-arrow { transform: translateX(4px); }

/* ---- Shared type ---- */
#itil-landing .lp-eyebrow {
  font: 600 12px/1.4 "JetBrains Mono", var(--lp-body);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--lp-accent);
  margin-bottom: 18px;
}
#itil-landing .lp-eyebrow--center { text-align: center; }
#itil-landing .lp-h1 {
  font-family: var(--lp-display);
  font-weight: 800;
  font-size: clamp(40px, 5.4vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin: 0 0 24px;
}
#itil-landing .lp-h2 {
  font-family: var(--lp-display);
  font-weight: 800;
  font-size: clamp(28px, 3.4vw, 46px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin: 0 0 18px;
}
#itil-landing .lp-h2--xl { font-size: clamp(34px, 4.6vw, 64px); }
#itil-landing .lp-h3 {
  font-family: var(--lp-display);
  font-weight: 700;
  font-size: clamp(21px, 2vw, 27px);
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}
#itil-landing .lp-lead {
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.55;
  color: var(--lp-muted);
  max-width: 40ch;
  margin: 0 0 32px;
  text-align: justify;
}
#itil-landing .lp-body { font-size: 16px; line-height: 1.65; color: var(--lp-muted); margin: 0; text-align: justify; }
#itil-landing .lp-body--center { text-align: center; max-width: 62ch; margin: 0 auto; }
#itil-landing .lp-note { font: 500 13px/1 var(--lp-body); color: var(--lp-faint); }

/* ---- Hero ---- */
#itil-landing .lp-hero {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  padding: clamp(40px, 6vw, 90px) clamp(24px, 5vw, 72px) clamp(60px, 7vw, 110px);
  max-width: 1320px;
  margin: 0 auto;
}
#itil-landing .lp-cta-row { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }

/* Product screenshot frame */
#itil-landing .lp-frame {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--lp-line);
  background: #0c1c30;
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(45, 212, 191, 0.08);
  transform: perspective(1600px) rotateY(-7deg) rotateX(2deg);
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
#itil-landing .lp-hero-shot:hover .lp-frame { transform: perspective(1600px) rotateY(-3deg) rotateX(1deg); }
#itil-landing .lp-frame img { display: block; width: 100%; height: auto; }
#itil-landing .lp-frame--sm { transform: none; }
#itil-landing .lp-frame--sm:hover { transform: none; }

/* ---- AI Canvas Assistant ---- */
#itil-landing .lp-ai {
  text-align: center;
  padding: clamp(40px, 5vw, 80px) clamp(24px, 5vw, 72px);
  max-width: 1240px;
  margin: 0 auto;
}
#itil-landing .lp-eyebrow--glow {
  display: inline-block;
  padding: 7px 16px;
  border-radius: 999px;
  border: 1px solid rgba(45, 212, 191, 0.4);
  background: rgba(45, 212, 191, 0.08);
  box-shadow: 0 0 28px -6px rgba(45, 212, 191, 0.45);
}
#itil-landing .lp-h2--center {
  text-align: center;
  max-width: 24ch;
  margin-left: auto;
  margin-right: auto;
}
#itil-landing .lp-ai .lp-body--center { max-width: 70ch; }
#itil-landing .lp-ai-flow {
  display: grid;
  grid-template-columns: 0.8fr auto 1.4fr;
  gap: clamp(14px, 2.5vw, 30px);
  align-items: center;
  margin-top: clamp(28px, 4vw, 52px);
  text-align: left;
}
#itil-landing .lp-ai-step-label {
  font: 600 12px/1 "JetBrains Mono", var(--lp-body);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--lp-accent);
  margin-bottom: 12px;
}
#itil-landing .lp-ai-arrow {
  font-size: clamp(26px, 3vw, 40px);
  color: var(--lp-accent);
  text-shadow: 0 0 18px rgba(45, 212, 191, 0.6);
}
#itil-landing .lp-frame--glow {
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(45, 212, 191, 0.25), 0 0 50px -10px rgba(45, 212, 191, 0.3);
}

/* ---- Problem + stats ---- */
#itil-landing .lp-problem {
  text-align: center;
  padding: clamp(50px, 6vw, 100px) clamp(24px, 5vw, 72px);
  max-width: 1000px;
  margin: 0 auto;
}
#itil-landing .lp-problem .lp-h2 { max-width: 22ch; margin-left: auto; margin-right: auto; }
#itil-landing .lp-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 54px;
  border-top: 1px solid var(--lp-line);
  border-bottom: 1px solid var(--lp-line);
  padding: 38px 0;
}
#itil-landing .lp-stat-num {
  font-family: var(--lp-display);
  font-weight: 800;
  font-size: clamp(34px, 4vw, 52px);
  letter-spacing: -0.03em;
  color: var(--lp-ink);
  line-height: 1;
}
#itil-landing .lp-stat-suffix { color: var(--lp-accent); font-size: 0.5em; }
#itil-landing .lp-stat-label { margin-top: 10px; font-size: 13px; color: var(--lp-muted); letter-spacing: 0.01em; }

/* ---- Features ---- */
#itil-landing .lp-features {
  padding: clamp(40px, 5vw, 90px) clamp(24px, 5vw, 72px);
  max-width: 1240px;
  margin: 0 auto;
}
#itil-landing .lp-feat-row {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  margin: clamp(36px, 5vw, 80px) 0;
}
#itil-landing .lp-feat-row--flip .lp-feat-text { order: 2; }
#itil-landing .lp-feat-shot .lp-frame--sm {
  border-radius: 12px;
  box-shadow: 0 30px 70px -28px rgba(0, 0, 0, 0.75);
}
#itil-landing .lp-feat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: clamp(20px, 3vw, 48px);
}
#itil-landing .lp-feat-card {
  padding: 32px;
  border: 1px solid var(--lp-line);
  border-radius: 16px;
  background: linear-gradient(160deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  transition: border-color 0.25s, transform 0.25s;
}
#itil-landing .lp-feat-card:hover { border-color: rgba(45,212,191,0.35); transform: translateY(-3px); }

/* ---- Credibility ---- */
#itil-landing .lp-cred {
  padding: clamp(50px, 6vw, 100px) clamp(24px, 5vw, 72px);
}
#itil-landing .lp-cred-inner { max-width: 900px; margin: 0 auto; text-align: center; }
#itil-landing .lp-cred-inner .lp-eyebrow { text-align: center; }
#itil-landing .lp-cred-card {
  margin-top: 36px;
  padding: 40px;
  border: 1px solid var(--lp-line);
  border-radius: 20px;
  background:
    radial-gradient(80% 120% at 50% -20%, rgba(45,212,191,0.12), transparent 60%),
    linear-gradient(160deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
}
#itil-landing .lp-cred-name { font-family: var(--lp-display); font-weight: 800; font-size: 26px; letter-spacing: -0.02em; }
#itil-landing .lp-cred-name a { color: #ffffff; text-decoration: none; transition: color 0.15s; }
#itil-landing .lp-cred-name a:hover { color: var(--lp-accent); }
#itil-landing .lp-cred-role { color: var(--lp-muted); font-size: 14px; margin-top: 6px; }
#itil-landing .lp-cred-role a { color: #ffffff; text-decoration: none; transition: color 0.15s; }
#itil-landing .lp-cred-role a:hover { color: var(--lp-accent); }
#itil-landing .lp-cred-badges { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin: 22px 0 18px; }
#itil-landing .lp-badge {
  font: 600 12px/1 var(--lp-body);
  letter-spacing: 0.02em;
  padding: 8px 14px;
  border-radius: 999px;
  color: #04221d;
  background: linear-gradient(135deg, var(--lp-accent), var(--lp-accent2));
}
#itil-landing .lp-cred-pc { font-size: 13px; color: var(--lp-muted); }

/* ---- Final CTA ---- */
#itil-landing .lp-final {
  text-align: center;
  padding: clamp(60px, 8vw, 130px) clamp(24px, 5vw, 72px) clamp(50px, 6vw, 90px);
  max-width: 800px;
  margin: 0 auto;
}
#itil-landing .lp-final .lp-btn--primary { margin-top: 30px; }
#itil-landing .lp-footer {
  margin-top: clamp(50px, 7vw, 90px);
  padding-top: 28px;
  border-top: 1px solid var(--lp-line);
  font-size: 13px;
  color: var(--lp-faint);
}
#itil-landing .lp-footer a { color: var(--lp-muted); text-decoration: none; }
#itil-landing .lp-footer a:hover { color: var(--lp-accent); }

/* ---- Restricted state ---- */
#itil-landing .lp-restricted {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(8, 17, 32, 0.86);
  backdrop-filter: blur(8px);
}
#itil-landing .lp-restricted[hidden] { display: none; }
#itil-landing .lp-restricted-card {
  max-width: 420px;
  text-align: center;
  padding: 40px 34px;
  border: 1px solid var(--lp-line);
  border-radius: 20px;
  background: var(--lp-bg2);
}
#itil-landing .lp-restricted-icon { font-size: 34px; margin-bottom: 14px; }
#itil-landing .lp-restricted-card h3 { font-family: var(--lp-display); font-weight: 800; font-size: 24px; margin: 0 0 12px; }
#itil-landing .lp-restricted-card p { color: var(--lp-muted); font-size: 15px; line-height: 1.6; margin: 0 0 24px; }

/* ---- Motion ---- */
#itil-landing .lp-reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1); }
#itil-landing .lp-reveal.lp-in { opacity: 1; transform: none; }
#itil-landing .lp-hero.lp-reveal { transition-delay: 0.05s; }

@media (prefers-reduced-motion: reduce) {
  #itil-landing .lp-reveal { opacity: 1; transform: none; transition: none; }
  #itil-landing .lp-frame { transform: none; }
}

/* ---- Cinematic frames ---- */
#itil-landing .lp-frame { position: relative; }
#itil-landing .lp-frame::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(115deg, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0.03) 18%, transparent 40%, transparent 78%, rgba(45,212,191,0.06) 100%);
}
#itil-landing .lp-frame--cine-l,
#itil-landing .lp-frame--cine-r {
  transform: perspective(1400px) rotateY(7deg) rotateX(2deg) translateZ(0);
  transition: transform .55s cubic-bezier(.2,.8,.2,1), box-shadow .55s ease;
  box-shadow: 0 50px 100px -34px rgba(0,0,0,.85), 0 18px 40px -20px rgba(13,148,136,.25), 0 0 0 1px rgba(45,212,191,.10);
}
#itil-landing .lp-frame--cine-r { transform: perspective(1400px) rotateY(-7deg) rotateX(2deg); }
#itil-landing .lp-frame--cine-l:hover,
#itil-landing .lp-frame--cine-r:hover {
  transform: perspective(1400px) rotateY(0deg) rotateX(0deg) translateY(-6px) scale(1.015);
  box-shadow: 0 70px 130px -36px rgba(0,0,0,.9), 0 26px 60px -22px rgba(45,212,191,.35), 0 0 0 1px rgba(45,212,191,.22);
}
#itil-landing .lp-ai-step { position: relative; }
#itil-landing .lp-ai-step::before {
  content: ""; position: absolute; inset: 18% 6% 4% 6%; z-index: -1;
  background: radial-gradient(60% 60% at 50% 55%, rgba(45,212,191,.16), transparent 70%);
  filter: blur(28px);
}
#itil-landing .lp-cap .lp-ai-step::before {
  background: radial-gradient(60% 60% at 50% 55%, rgba(124,58,237,.20), transparent 70%);
}
@keyframes lpFloat { 0%,100% { transform: perspective(1600px) rotateY(-7deg) rotateX(2deg) translateY(0); } 50% { transform: perspective(1600px) rotateY(-7deg) rotateX(2deg) translateY(-8px); } }
#itil-landing .lp-hero-shot .lp-frame { animation: lpFloat 7s ease-in-out infinite; }
#itil-landing .lp-hero-shot:hover .lp-frame { animation-play-state: paused; }

/* ---- The capability loop (interactive diagram) ---- */
#itil-landing .lp-loop { text-align: center; padding: 90px 24px; position: relative; }
#itil-landing .lp-loop-stage { position: relative; width: min(560px, 92vw); height: min(560px, 92vw); margin: 44px auto 0; }
#itil-landing .lp-loop-ring {
  position: absolute; inset: 12%; border-radius: 50%;
  border: 2px dashed rgba(45,212,191,.35);
  animation: lpSpin 40s linear infinite;
}
@keyframes lpSpin { to { transform: rotate(360deg); } }
#itil-landing .lp-loop-core {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 38%; aspect-ratio: 1; border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
  background: radial-gradient(circle at 35% 30%, #11314f, #0a1626 70%);
  border: 1px solid rgba(45,212,191,.3);
  box-shadow: 0 0 60px rgba(45,212,191,.18), inset 0 0 40px rgba(45,212,191,.06);
  font-weight: 700; color: #E6FFFA; font-size: clamp(11px, 2.4vw, 14px); line-height: 1.35; padding: 10px;
}
#itil-landing .lp-loop-core small { font-weight: 500; color: #7FB3C8; font-size: .78em; }
#itil-landing .lp-loop-node {
  position: absolute; width: 27%; transform: translate(-50%,-50%);
  background: #0c1c30; border: 1px solid rgba(45,212,191,.25); border-radius: 16px;
  padding: 14px 10px 12px; cursor: default;
  transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s ease, border-color .3s ease;
  box-shadow: 0 16px 40px -18px rgba(0,0,0,.8);
}
#itil-landing .lp-loop-node:hover {
  transform: translate(-50%,-50%) scale(1.08);
  border-color: rgba(45,212,191,.6);
  box-shadow: 0 24px 60px -20px rgba(0,0,0,.9), 0 0 30px rgba(45,212,191,.25);
  z-index: 3;
}
#itil-landing .lp-loop-node .lp-loop-ico { font-size: clamp(20px, 4vw, 28px); }
#itil-landing .lp-loop-node h4 { margin: 6px 0 4px; font-size: clamp(12px, 2.4vw, 15px); color: #E6FFFA; }
#itil-landing .lp-loop-node p { margin: 0; font-size: clamp(10px, 2vw, 12px); line-height: 1.45; color: #9FBACB; }
#itil-landing .lp-loop-node--1 { top: 7%; left: 50%; }
#itil-landing .lp-loop-node--2 { top: 50%; left: 93%; }
#itil-landing .lp-loop-node--3 { top: 93%; left: 50%; }
#itil-landing .lp-loop-node--4 { top: 50%; left: 7%; }
#itil-landing .lp-loop-arrow {
  position: absolute; font-size: clamp(16px, 3vw, 22px); color: rgba(45,212,191,.7);
  transform: translate(-50%,-50%); animation: lpPulse 2.4s ease-in-out infinite;
}
@keyframes lpPulse { 0%,100% { opacity: .45; } 50% { opacity: 1; } }
#itil-landing .lp-loop-arrow--a { top: 21%; left: 81%; transform: translate(-50%,-50%) rotate(45deg); }
#itil-landing .lp-loop-arrow--b { top: 81%; left: 81%; transform: translate(-50%,-50%) rotate(135deg); }
#itil-landing .lp-loop-arrow--c { top: 81%; left: 19%; transform: translate(-50%,-50%) rotate(225deg); }
#itil-landing .lp-loop-arrow--d { top: 21%; left: 19%; transform: translate(-50%,-50%) rotate(315deg); }
@media (max-width: 720px) {
  #itil-landing .lp-loop-stage { width: 94vw; height: 94vw; }
}

/* AI flow with 3 steps: single tight row, balanced widths */
#itil-landing .lp-ai-flow--3 {
  grid-template-columns: 1fr auto 1.5fr auto 0.9fr;
  gap: clamp(10px, 1.6vw, 22px);
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}
#itil-landing .lp-ai-flow--3 .lp-frame--sm img { max-height: 380px; object-fit: cover; object-position: top; }
@media (max-width: 900px) {
  #itil-landing .lp-ai-flow--3 { grid-template-columns: 1fr; }
  #itil-landing .lp-ai-flow--3 .lp-ai-arrow { transform: rotate(90deg); justify-self: center; }
}

/* ============ Automation & Tooling intelligence ============ */
#itil-landing .lp-auto {
  position: relative;
  background:
    radial-gradient(640px 320px at 18% 8%, rgba(37, 99, 235, 0.14), transparent 70%),
    radial-gradient(560px 300px at 84% 92%, rgba(99, 102, 241, 0.12), transparent 70%),
    linear-gradient(rgba(10, 22, 40, 0.55), rgba(10, 22, 40, 0.8)),
    url("assets/bg-automation.jpg") center / cover no-repeat;
}
#itil-landing .lp-auto .lp-ai-flow--3 {
  display: grid;
  grid-template-columns: 1fr 1.02fr 1fr;
  gap: 26px;
  align-items: center;
  margin-top: 40px;
}
@media (max-width: 980px) {
  #itil-landing .lp-auto .lp-ai-flow--3 { grid-template-columns: 1fr; }
}

/* demo animada (CSS puro, ciclo de 10s) */
#itil-landing .lp-auto-demo {
  background: #fff;
  color: #111827;
  border-radius: 14px;
  padding: 16px 16px 14px;
  text-align: left;
  font-family: var(--lp-body);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(45, 212, 191, 0.25), 0 0 44px rgba(45, 212, 191, 0.12);
}
#itil-landing .lp-ad-head {
  font: 800 13.5px var(--lp-display);
  color: #0d1b2a;
  margin-bottom: 10px;
  display: flex; align-items: baseline; gap: 8px;
}
#itil-landing .lp-ad-head span { font: 600 10.5px var(--lp-body); color: #6b7280; }
#itil-landing .lp-ad-row {
  display: flex; align-items: center; gap: 10px;
  border: 1px solid #e5e7eb; border-radius: 9px;
  padding: 7px 10px; margin-bottom: 6px;
}
#itil-landing .lp-ad-txt { flex: 1; font-size: 11px; line-height: 1.4; color: #374151; }
#itil-landing .lp-ad-mark {
  font-size: 9.5px; font-weight: 800; padding: 2px 9px; border-radius: 999px; white-space: nowrap;
  opacity: 0; transform: scale(0.6);
  animation: lpAdPop 10s infinite;
}
#itil-landing .lp-ad-mark--yes { background: #dcfce7; color: #15803d; }
#itil-landing .lp-ad-mark--no { background: #fee2e2; color: #b91c1c; }
#itil-landing .lp-ad-row--2 .lp-ad-mark { animation-delay: 0.6s; }
#itil-landing .lp-ad-row--3 .lp-ad-mark { animation-delay: 1.2s; }
@keyframes lpAdPop {
  0%, 3% { opacity: 0; transform: scale(0.6); }
  6% { opacity: 1; transform: scale(1.12); }
  8%, 90% { opacity: 1; transform: scale(1); }
  96%, 100% { opacity: 0; transform: scale(0.6); }
}
#itil-landing .lp-ad-score { display: flex; align-items: center; gap: 10px; margin: 10px 0 12px; }
#itil-landing .lp-ad-bar { flex: 1; height: 8px; border-radius: 999px; background: #e5e7eb; overflow: hidden; }
#itil-landing .lp-ad-fill {
  height: 100%; border-radius: 999px; width: 0;
  background: linear-gradient(90deg, #2563eb, #22d3ee);
  animation: lpAdFill 10s infinite;
}
@keyframes lpAdFill {
  0%, 20% { width: 0; }
  34%, 90% { width: 42%; }
  96%, 100% { width: 0; }
}
#itil-landing .lp-ad-pct {
  font: 800 13px var(--lp-display); color: #0369a1;
  opacity: 0; animation: lpAdShow 10s infinite;
}
@keyframes lpAdShow {
  0%, 30% { opacity: 0; }
  36%, 90% { opacity: 1; }
  96%, 100% { opacity: 0; }
}
#itil-landing .lp-ad-ai {
  background: linear-gradient(135deg, #eef2ff, #f5f3ff);
  border: 1px solid #c7d2fe; border-radius: 10px;
  padding: 10px 12px; font-size: 11px; line-height: 1.5; color: #3730a3;
  opacity: 0; transform: translateY(10px);
  animation: lpAdAi 10s infinite;
}
#itil-landing .lp-ad-metric { margin-top: 5px; font-size: 10px; color: #6366f1; font-weight: 700; }
@keyframes lpAdAi {
  0%, 44% { opacity: 0; transform: translateY(10px); }
  52%, 90% { opacity: 1; transform: translateY(0); }
  96%, 100% { opacity: 0; transform: translateY(10px); }
}
@media (prefers-reduced-motion: reduce) {
  #itil-landing .lp-ad-mark, #itil-landing .lp-ad-pct, #itil-landing .lp-ad-ai { animation: none; opacity: 1; transform: none; }
  #itil-landing .lp-ad-fill { animation: none; width: 42%; }
}

/* chips de números */
#itil-landing .lp-auto-chips {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px;
  margin-top: 38px;
}
#itil-landing .lp-auto-chip {
  font: 500 12.5px var(--lp-body); color: var(--lp-muted);
  border: 1px solid var(--lp-line); border-radius: 999px;
  padding: 7px 16px; background: rgba(255, 255, 255, 0.03);
}
#itil-landing .lp-auto-chip strong { color: var(--lp-accent); font: 800 13.5px var(--lp-display); margin-right: 2px; }
