/* LaunchLayer site glass — Contact chrome, FAQs, Privacy, Reviews, Blog, 404 */
/* Contact form (.ll-contact-*) is intentionally NOT styled here. */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Space+Grotesk:wght@600;700&display=swap');

/* Atmosphere for light secondary pages */
body.llsite-body {
  font-family: 'Inter', -apple-system, sans-serif !important;
  color: #0b1120 !important;
  line-height: 1.5;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  background-color: #ececec !important;
  background-image:
    radial-gradient(ellipse 65% 45% at 85% 8%, rgba(29, 78, 216, 0.10), transparent 58%),
    radial-gradient(ellipse 55% 40% at 8% 78%, rgba(34, 211, 224, 0.08), transparent 55%),
    linear-gradient(180deg, #f4f5f7 0%, #ececec 48%, #e6e8ec 100%) !important;
  background-attachment: scroll !important;
}

body.llsite-body .page-section.light,
body.llsite-body .page-section.light-bold,
body.llsite-body .page-section.white,
body.llsite-body .page-section.white-bold {
  background: transparent !important;
}

body.llsite-body .section-background {
  background: transparent !important;
}

/* Soften Squarespace section chrome on glass pages */
body.llsite-body .page-section > .content-wrapper {
  padding-top: 12px !important;
  padding-bottom: 12px !important;
}

/* ── Shared glass tokens ── */
.llsite-page {
  --ll-ink: #0b1120;
  --ll-body: #334155;
  --ll-muted: #475569;
  --ll-line: rgba(15, 23, 42, 0.10);
  --ll-blue: #1d4ed8;
  --ll-blue-deep: #1e40af;
  --ll-cyan: #0891b2;
  --ll-glass: linear-gradient(155deg, #ffffff 0%, #fbfcfe 48%, #eff6ff 100%);
  --ll-font-display: 'Space Grotesk', 'Segoe UI', system-ui, sans-serif;
  --ll-font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 28px auto 72px;
  padding: 0 20px;
  font-family: var(--ll-font-body);
  color: var(--ll-ink);
  -webkit-font-smoothing: antialiased;
}

.llsite-glass {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: var(--ll-glass);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow:
    0 12px 28px rgba(15, 23, 42, 0.06),
    0 1px 3px rgba(15, 23, 42, 0.04),
    inset 0 1px 0 #ffffff;
}

.llsite-glass > * { position: relative; z-index: 1; }

@keyframes llsite-rise {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .llsite-rise,
  .llfaqpg-item,
  .llrevpg-stat-card,
  .ll404-code,
  .ll404-cursor,
  .filter-pill,
  .llct-card,
  .llcov-ops-card {
    animation: none !important;
    transition: none !important;
  }
}

.llsite-rise {
  animation: llsite-rise 420ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.llsite-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ll-blue);
  margin-bottom: 14px;
}

.llsite-eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ll-cyan);
  box-shadow: 0 0 0 3px rgba(8, 145, 178, 0.18);
}

.llsite-brand {
  font-family: var(--ll-font-display);
  font-size: clamp(2rem, 4.2vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--ll-ink);
  margin: 0 0 10px;
}

.llsite-h1 {
  font-family: var(--ll-font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.65rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--ll-ink);
  margin: 0 0 12px;
}

.llsite-lead {
  font-size: 1rem;
  color: var(--ll-body);
  line-height: 1.6;
  margin: 0;
  max-width: 42rem;
}

.llsite-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(100deg, var(--ll-blue) 0%, var(--ll-blue-deep) 100%);
  color: #fff !important;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 18px;
  border-radius: 12px;
  text-decoration: none !important;
  box-shadow: 0 10px 22px -10px rgba(29, 78, 216, 0.5);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease;
}

.llsite-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px -10px rgba(29, 78, 216, 0.6);
}

.llsite-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #fff;
  color: var(--ll-blue) !important;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 13px 18px;
  border-radius: 12px;
  border: 1px solid rgba(29, 78, 216, 0.22);
  text-decoration: none !important;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), background 0.2s ease;
}

.llsite-btn-secondary:hover {
  transform: translateY(-2px);
  background: #f8fafc;
}

/* ==========================================================================
   CONTACT — intro chrome only (dark section above form)
   ========================================================================== */
.llct-intro {
  --ll-ink: #e8eefc;
  --ll-body: rgba(232, 238, 252, 0.78);
  --ll-blue: #7dd3fc;
  --ll-cyan: #22d3e0;
  --ll-font-display: 'Space Grotesk', 'Segoe UI', system-ui, sans-serif;
  --ll-font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  max-width: 1120px;
  margin: 28px auto 8px;
  padding: 0 16px;
  font-family: var(--ll-font-body);
  color: var(--ll-ink);
  text-align: center;
  animation: llsite-rise 480ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.llct-intro .llsite-eyebrow {
  color: var(--ll-cyan);
  background: rgba(34, 211, 224, 0.12);
  border: 1px solid rgba(34, 211, 224, 0.28);
  padding: 6px 12px;
  border-radius: 999px;
}

.llct-intro .llsite-brand {
  color: #ffffff;
  font-size: clamp(2.1rem, 4.5vw, 3rem);
  margin-bottom: 8px;
}

.llct-intro .llsite-h1 {
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.15rem, 2.2vw, 1.4rem);
  font-weight: 600;
  max-width: 36rem;
  margin: 0 auto 14px;
}

.llct-intro .llsite-lead {
  color: var(--ll-body);
  margin: 0 auto 28px;
}

.llct-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  text-align: left;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 700px) {
  .llct-grid { grid-template-columns: 1fr 1fr; }
}

.llct-card {
  position: relative;
  overflow: visible;
  isolation: isolate;
  border-radius: 18px;
  padding: 1.35rem 1.35rem 1.4rem;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04) 42%, rgba(29, 78, 216, 0.12)),
    rgba(11, 17, 32, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: left;
  /* Mobile: hug content. Equal-height cards only from 700px (2-col grid). */
  height: auto;
  min-height: 0;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (min-width: 700px) {
  .llct-card {
    min-height: 100%;
  }
}

.llct-card:hover { transform: translateY(-3px); }

.llct-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px 0 !important;
  padding: 0 !important;
  font-family: var(--ll-font-display);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
  color: #fff !important;
  text-align: left;
}

.llct-card h3 svg {
  width: 18px;
  height: 18px;
  color: #22d3e0;
  flex-shrink: 0;
}

.llct-card p {
  margin: 0 0 20px 0 !important;
  padding: 0 !important;
  /* Avoid giant empty stretch inside single-column mobile cards */
  flex: 0 1 auto;
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(232, 238, 252, 0.72) !important;
  text-align: left;
}

.llct-card > p:last-child {
  margin-bottom: 0 !important;
}

@media (min-width: 700px) {
  .llct-card p {
    flex: 1 1 auto;
  }
}

/* Dedicated CTA — do not reuse .llsite-btn-primary here.
   .llct-intro remaps --ll-blue to a light cyan for text, which broke the button fill. */
.llct-card a.llct-btn,
.llct-card a.llsite-btn-primary {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  width: 100% !important;
  box-sizing: border-box !important;
  margin: auto 0 0 0 !important;
  padding: 14px 18px !important;
  border: 0 !important;
  border-radius: 12px !important;
  background: linear-gradient(100deg, #1d4ed8 0%, #1e40af 100%) !important;
  background-image: linear-gradient(100deg, #1d4ed8 0%, #1e40af 100%) !important;
  color: #ffffff !important;
  font-family: inherit !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  letter-spacing: 0 !important;
  text-align: center !important;
  text-decoration: none !important;
  text-transform: none !important;
  box-shadow: 0 10px 22px -10px rgba(29, 78, 216, 0.55) !important;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease !important;
}

.llct-card a.llct-btn:hover,
.llct-card a.llsite-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px -10px rgba(29, 78, 216, 0.65) !important;
  color: #ffffff !important;
  text-decoration: none !important;
}

/* Coverage band — light glass */
.llcov-wrap {
  --llcv-ink: #0b1120;
  --llcv-body: #334155;
  --llcv-muted: #475569;
  --llcv-line: rgba(15, 23, 42, 0.10);
  --llcv-surface: #ffffff;
  --llcv-canvas: #f7f8fb;
  --llcv-blue: #1d4ed8;
  --llcv-blue-deep: #1e40af;
  --llcv-cyan: #0891b2;
  --llcv-font-display: 'Space Grotesk', 'Segoe UI', system-ui, sans-serif;
  --llcv-font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  max-width: 1080px !important;
  margin: 28px auto 64px !important;
  padding: 0 20px !important;
  font-family: var(--llcv-font-body) !important;
  color: var(--llcv-ink) !important;
}

.llcov-panel {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: linear-gradient(155deg, #ffffff 0%, #fbfcfe 48%, #eff6ff 100%);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow:
    0 12px 28px rgba(15, 23, 42, 0.06),
    0 1px 3px rgba(15, 23, 42, 0.04),
    inset 0 1px 0 #ffffff;
  padding: clamp(1.4rem, 3vw, 2.2rem);
  animation: llsite-rise 480ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.llcov-grid {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 32px !important;
  align-items: center !important;
}

@media (min-width: 850px) {
  .llcov-grid { grid-template-columns: 1.05fr 0.95fr !important; gap: 40px !important; }
}

.llcov-eyebrow {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  color: var(--llcv-blue) !important;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
  margin-bottom: 12px !important;
  font-family: var(--llcv-font-body) !important;
}

.llcov-text h2 {
  font-family: var(--llcv-font-display) !important;
  font-size: clamp(1.55rem, 2.8vw, 2rem) !important;
  font-weight: 700 !important;
  color: var(--llcv-ink) !important;
  letter-spacing: -0.02em !important;
  margin: 0 0 12px 0 !important;
}

.llcov-accent { color: var(--llcv-blue) !important; }

.llcov-lead {
  font-size: 1rem !important;
  color: var(--llcv-body) !important;
  line-height: 1.6 !important;
  margin: 0 0 20px 0 !important;
}

.llcov-loc-grid {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  margin-bottom: 20px !important;
}

.llcov-loc-badge {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 8px 12px !important;
  border-radius: 999px !important;
  background: rgba(29, 78, 216, 0.06) !important;
  border: 1px solid rgba(29, 78, 216, 0.12) !important;
  font-size: 0.82rem !important;
  font-weight: 600 !important;
  color: var(--llcv-ink) !important;
}

.llcov-loc-primary {
  background: rgba(29, 78, 216, 0.10) !important;
  border-color: rgba(29, 78, 216, 0.22) !important;
}

.llcov-dot {
  width: 7px !important;
  height: 7px !important;
  border-radius: 50% !important;
  background: var(--llcv-cyan) !important;
  box-shadow: 0 0 0 3px rgba(8, 145, 178, 0.16) !important;
}

.llcov-dot-grey {
  background: #94a3b8 !important;
  box-shadow: none !important;
}

.llcov-ops-card {
  display: flex !important;
  align-items: flex-start !important;
  gap: 12px !important;
  padding: 14px 0 !important;
  border-top: 1px solid var(--llcv-line) !important;
}

.llcov-ops-icon {
  width: 38px !important;
  height: 38px !important;
  border-radius: 11px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: linear-gradient(155deg, rgba(29, 78, 216, 0.1), rgba(8, 145, 178, 0.08)) !important;
  border: 1px solid rgba(29, 78, 216, 0.14) !important;
  flex-shrink: 0 !important;
}

.llcov-ops-icon svg {
  width: 18px !important;
  height: 18px !important;
  color: var(--llcv-blue) !important;
}

.llcov-ops-text h4 {
  margin: 0 0 4px !important;
  font-family: var(--llcv-font-display) !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  color: var(--llcv-ink) !important;
}

.llcov-ops-text p,
.llcov-ops-text a {
  margin: 0 !important;
  font-size: 0.9rem !important;
  color: var(--llcv-body) !important;
  text-decoration: none !important;
  font-weight: 600 !important;
}

.llcov-ops-text span {
  display: block !important;
  font-weight: 500 !important;
  color: var(--llcv-muted) !important;
  font-size: 0.82rem !important;
  margin-top: 2px !important;
}

.llcov-ops-text a { color: var(--llcv-blue) !important; }
.llcov-ops-text a:hover { text-decoration: underline !important; }

.llcov-map-wrap {
  border-radius: 18px !important;
  overflow: hidden !important;
  border: 1px solid var(--llcv-line) !important;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06) !important;
  background: #fff !important;
}

.llcov-map img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
}

/* ==========================================================================
   FAQs
   ========================================================================== */
.llfaqpg-page.llsite-page {
  max-width: 860px !important;
  margin: 28px auto 72px !important;
  padding: 0 20px !important;
  font-family: var(--ll-font-body) !important;
}

.llfaqpg-header {
  text-align: left !important;
  margin-bottom: 18px !important;
  padding: clamp(1.4rem, 3vw, 2rem) !important;
  border-radius: 22px !important;
  background: linear-gradient(155deg, #ffffff 0%, #fbfcfe 48%, #eff6ff 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.95) !important;
  box-shadow:
    0 12px 28px rgba(15, 23, 42, 0.06),
    0 1px 3px rgba(15, 23, 42, 0.04),
    inset 0 1px 0 #ffffff !important;
  animation: llsite-rise 420ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.llfaqpg-eyebrow {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  color: #1d4ed8 !important;
  margin-bottom: 12px !important;
}

.llfaqpg-header .llsite-brand {
  margin-bottom: 6px !important;
}

.llfaqpg-header h1 {
  font-family: 'Space Grotesk', 'Segoe UI', system-ui, sans-serif !important;
  font-size: clamp(1.25rem, 2.2vw, 1.5rem) !important;
  font-weight: 700 !important;
  color: #0b1120 !important;
  letter-spacing: -0.02em !important;
  margin: 0 0 10px 0 !important;
  line-height: 1.25 !important;
}

.llfaqpg-header p {
  margin: 0 !important;
  font-size: 1rem !important;
  color: #334155 !important;
  line-height: 1.6 !important;
  max-width: 40rem !important;
}

.llfaqpg-group {
  margin-bottom: 18px !important;
  padding: 18px 18px 8px !important;
  border-radius: 22px !important;
  background: linear-gradient(155deg, #ffffff 0%, #fbfcfe 48%, #eff6ff 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.95) !important;
  box-shadow:
    0 10px 24px rgba(15, 23, 42, 0.05),
    inset 0 1px 0 #ffffff !important;
}

.llfaqpg-group-title {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  font-family: 'Space Grotesk', 'Segoe UI', system-ui, sans-serif !important;
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  color: #0b1120 !important;
  margin: 0 0 14px 0 !important;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08) !important;
  padding-bottom: 12px !important;
}

.llfaqpg-group-icon {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 34px !important;
  height: 34px !important;
  border-radius: 10px !important;
  color: #1d4ed8 !important;
  background: linear-gradient(155deg, rgba(29, 78, 216, 0.1), rgba(8, 145, 178, 0.08)) !important;
  border: 1px solid rgba(29, 78, 216, 0.14) !important;
}

.llfaqpg-item {
  background: rgba(255, 255, 255, 0.72) !important;
  border: 1px solid rgba(15, 23, 42, 0.08) !important;
  border-radius: 14px !important;
  margin-bottom: 10px !important;
  overflow: hidden !important;
  transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
}

.llfaqpg-item:hover {
  border-color: rgba(29, 78, 216, 0.22) !important;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.04) !important;
}

.llfaqpg-item[open] {
  border-color: rgba(29, 78, 216, 0.35) !important;
  box-shadow: 0 8px 20px rgba(29, 78, 216, 0.06) !important;
}

.llfaqpg-question {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  gap: 12px !important;
  padding: 16px 18px !important;
  cursor: pointer !important;
  font-weight: 600 !important;
  font-size: 0.98rem !important;
  color: #0b1120 !important;
  user-select: none !important;
  list-style: none !important;
}

.llfaqpg-question::-webkit-details-marker,
.llfaqpg-question::marker { display: none !important; content: '' !important; }

.llfaqpg-chevron {
  width: 18px !important;
  height: 18px !important;
  color: #64748b !important;
  transition: transform 0.2s ease, color 0.2s ease !important;
  flex-shrink: 0 !important;
}

.llfaqpg-item[open] .llfaqpg-chevron {
  transform: rotate(180deg) !important;
  color: #1d4ed8 !important;
}

.llfaqpg-answer {
  padding: 0 18px 16px !important;
  font-size: 0.92rem !important;
  line-height: 1.6 !important;
  color: #334155 !important;
  border-top: 1px dashed transparent !important;
}

.llfaqpg-item[open] .llfaqpg-answer {
  border-top-color: rgba(15, 23, 42, 0.08) !important;
  padding-top: 14px !important;
}

.llfaqpg-answer p { margin: 0 0 10px 0 !important; }
.llfaqpg-answer p:last-child { margin-bottom: 0 !important; }
.llfaqpg-answer ul { margin: 8px 0 8px 18px !important; padding: 0 !important; }
.llfaqpg-answer li { margin-bottom: 6px !important; }

/* ==========================================================================
   Privacy / Legal
   ========================================================================== */
.llegal-page.llsite-page {
  max-width: 860px !important;
  margin: 28px auto 72px !important;
  padding: 0 20px !important;
  font-family: var(--ll-font-body) !important;
}

.llegal-header {
  margin-bottom: 16px !important;
  border-bottom: none !important;
  padding: clamp(1.4rem, 3vw, 2rem) !important;
  border-radius: 22px !important;
  background: linear-gradient(155deg, #ffffff 0%, #fbfcfe 48%, #eff6ff 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.95) !important;
  box-shadow:
    0 12px 28px rgba(15, 23, 42, 0.06),
    inset 0 1px 0 #ffffff !important;
  animation: llsite-rise 420ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.llegal-header h1 {
  font-family: 'Space Grotesk', 'Segoe UI', system-ui, sans-serif !important;
  font-size: clamp(1.6rem, 3vw, 2.1rem) !important;
  font-weight: 700 !important;
  color: #0b1120 !important;
  letter-spacing: -0.02em !important;
  margin: 0 0 10px 0 !important;
}

.llegal-meta {
  font-size: 0.95rem !important;
  color: #475569 !important;
  margin: 0 0 16px 0 !important;
}

.llegal-identity-badge {
  background: rgba(29, 78, 216, 0.06) !important;
  border-left: 3px solid #1d4ed8 !important;
  border-radius: 0 14px 14px 0 !important;
  padding: 14px 16px !important;
  margin-top: 8px !important;
}

.llegal-identity-badge p {
  margin: 0 !important;
  font-size: 0.88rem !important;
  line-height: 1.6 !important;
  color: #334155 !important;
}

.llegal-code {
  font-family: ui-monospace, 'SF Mono', Menlo, Consolas, monospace !important;
  background: rgba(15, 23, 42, 0.06) !important;
  padding: 2px 6px !important;
  border-radius: 6px !important;
  font-size: 0.8rem !important;
  color: #0b1120 !important;
  font-weight: 600 !important;
}

.llegal-segment {
  margin-bottom: 16px !important;
  padding: clamp(1.2rem, 2.5vw, 1.75rem) !important;
  border-radius: 22px !important;
  background: linear-gradient(155deg, #ffffff 0%, #fbfcfe 48%, #eff6ff 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.95) !important;
  box-shadow:
    0 10px 24px rgba(15, 23, 42, 0.05),
    inset 0 1px 0 #ffffff !important;
}

.llegal-segment h2 {
  font-family: 'Space Grotesk', 'Segoe UI', system-ui, sans-serif !important;
  font-size: 1.25rem !important;
  font-weight: 700 !important;
  color: #0b1120 !important;
  margin: 0 0 14px 0 !important;
}

.llegal-segment h3 {
  font-size: 1rem !important;
  font-weight: 700 !important;
  color: #1e293b !important;
  margin: 20px 0 10px 0 !important;
}

.llegal-segment p {
  font-size: 0.92rem !important;
  line-height: 1.6 !important;
  color: #334155 !important;
  margin: 0 0 14px 0 !important;
}

.llegal-segment ul {
  margin: 0 0 16px 18px !important;
  padding: 0 !important;
}

.llegal-segment li {
  font-size: 0.92rem !important;
  line-height: 1.6 !important;
  color: #334155 !important;
  margin-bottom: 8px !important;
}

.llegal-sub-card {
  background: rgba(255, 255, 255, 0.7) !important;
  border: 1px solid rgba(15, 23, 42, 0.08) !important;
  border-radius: 14px !important;
  padding: 16px 18px !important;
  margin-bottom: 14px !important;
  box-shadow: none !important;
}

.llegal-sub-card h5 {
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.06em !important;
  color: #1d4ed8 !important;
  margin: 0 0 10px 0 !important;
}

.llegal-capsule {
  border-radius: 14px !important;
  padding: 14px 16px !important;
  margin: 18px 0 !important;
  font-size: 0.9rem !important;
  line-height: 1.55 !important;
}

.llegal-capsule-info {
  background: #eff6ff !important;
  border-left: 3px solid #3b82f6 !important;
  color: #1e3a8a !important;
}

.llegal-capsule-trust {
  background: #ecfdf5 !important;
  border-left: 3px solid #10b981 !important;
  color: #064e3b !important;
}

.llegal-capsule-alert {
  background: #fef2f2 !important;
  border-left: 3px solid #dc2626 !important;
  color: #7f1d1d !important;
}

.llegal-capsule strong {
  display: block !important;
  font-size: 0.92rem !important;
  margin-bottom: 4px !important;
}

.llegal-link {
  color: #1d4ed8 !important;
  text-decoration: none !important;
  font-weight: 600 !important;
  border-bottom: 1px solid transparent !important;
}

.llegal-link:hover { border-bottom-color: #1d4ed8 !important; }

.llegal-divider {
  border: none !important;
  height: 0 !important;
  margin: 0 !important;
}

.llegal-footnote {
  font-size: 0.88rem !important;
  color: #64748b !important;
  font-style: italic !important;
}

/* ==========================================================================
   Reviews
   ========================================================================== */
.llrevpg-page.llsite-page {
  max-width: 1080px !important;
  margin: 28px auto 72px !important;
  padding: 0 20px !important;
}

.llrevpg-header {
  text-align: left !important;
  max-width: none !important;
  margin: 0 0 16px 0 !important;
  padding: clamp(1.4rem, 3vw, 2rem) !important;
  border-radius: 22px !important;
  background: linear-gradient(155deg, #ffffff 0%, #fbfcfe 48%, #eff6ff 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.95) !important;
  box-shadow:
    0 12px 28px rgba(15, 23, 42, 0.06),
    inset 0 1px 0 #ffffff !important;
  animation: llsite-rise 420ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.llrevpg-eyebrow {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  color: #1d4ed8 !important;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
  margin-bottom: 12px !important;
  font-family: inherit !important;
}

.llrevpg-header h1,
.llrevpg-header .llsite-brand {
  font-family: 'Space Grotesk', 'Segoe UI', system-ui, sans-serif !important;
  font-size: clamp(1.8rem, 3.6vw, 2.5rem) !important;
  font-weight: 700 !important;
  color: #0b1120 !important;
  letter-spacing: -0.03em !important;
  line-height: 1.15 !important;
  margin: 0 0 10px 0 !important;
}

.llrevpg-lead {
  font-size: 1rem !important;
  color: #334155 !important;
  line-height: 1.6 !important;
  margin: 0 !important;
  max-width: 40rem !important;
}

.llrevpg-stats {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 12px !important;
  margin-bottom: 16px !important;
}

@media (min-width: 700px) {
  .llrevpg-stats { grid-template-columns: repeat(3, 1fr) !important; }
}

.llrevpg-stat-card {
  border-radius: 18px !important;
  padding: 0 !important;
  background: transparent !important;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.llrevpg-stat-card:hover { transform: translateY(-3px); }

.llrevpg-stat-inner {
  background: linear-gradient(155deg, #ffffff 0%, #fbfcfe 48%, #eff6ff 100%) !important;
  border-radius: 18px !important;
  padding: 22px !important;
  text-align: left !important;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.95) !important;
  box-shadow:
    0 10px 24px rgba(15, 23, 42, 0.05),
    inset 0 1px 0 #ffffff !important;
}

.llrevpg-stat-icon {
  width: 40px !important;
  height: 40px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 11px !important;
  margin: 0 0 12px 0 !important;
  background: linear-gradient(155deg, rgba(29, 78, 216, 0.1), rgba(8, 145, 178, 0.08)) !important;
  border: 1px solid rgba(29, 78, 216, 0.14) !important;
}

.llrevpg-stat-icon svg { width: 18px !important; height: 18px !important; color: #1d4ed8 !important; }
.llrevpg-stat-card:first-child .llrevpg-stat-icon svg { color: #d97706 !important; }

.llrevpg-stat-inner h3 {
  font-family: 'Space Grotesk', 'Segoe UI', system-ui, sans-serif !important;
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  color: #0b1120 !important;
  margin: 0 0 6px 0 !important;
}

.llrevpg-stat-inner p {
  font-size: 0.88rem !important;
  color: #475569 !important;
  line-height: 1.5 !important;
  margin: 0 !important;
}

.llrevpg-widget-wrap {
  width: 100% !important;
  display: block !important;
  min-height: 240px !important;
  margin-bottom: 24px !important;
  padding: 16px !important;
  border-radius: 22px !important;
  background: linear-gradient(155deg, #ffffff 0%, #fbfcfe 48%, #eff6ff 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.95) !important;
  box-shadow:
    0 12px 28px rgba(15, 23, 42, 0.06),
    inset 0 1px 0 #ffffff !important;
}

/* ==========================================================================
   Blog index / categories
   ========================================================================== */
.blog-hero-wrap {
  --blue: #1d4ed8;
  --blue-hover: #1e40af;
  --blue-light: #eff6ff;
  --text-primary: #0b1120;
  --text-secondary: #334155;
  --text-tertiary: #64748b;
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --border: rgba(15, 23, 42, 0.10);

  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
  max-width: 980px !important;
  margin: 28px auto 16px auto !important;
  padding: clamp(1.4rem, 3vw, 2rem) !important;
  text-align: left !important;
  border-radius: 22px !important;
  background: linear-gradient(155deg, #ffffff 0%, #fbfcfe 48%, #eff6ff 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.95) !important;
  box-shadow:
    0 12px 28px rgba(15, 23, 42, 0.06),
    inset 0 1px 0 #ffffff !important;
  animation: llsite-rise 420ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.blog-subtag {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  color: var(--blue) !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  margin-bottom: 12px !important;
  background: transparent !important;
  padding: 0 !important;
  border-radius: 0 !important;
}

.blog-subtag svg {
  width: 15px !important;
  height: 15px !important;
}

.blog-hero-wrap .llsite-brand,
.blog-hero-wrap h1 {
  font-family: 'Space Grotesk', 'Segoe UI', system-ui, sans-serif !important;
  font-size: clamp(1.9rem, 4vw, 2.6rem) !important;
  font-weight: 700 !important;
  color: var(--text-primary) !important;
  line-height: 1.12 !important;
  letter-spacing: -0.03em !important;
  margin: 0 0 12px 0 !important;
}

.blog-lead {
  font-size: 1rem !important;
  color: var(--text-secondary) !important;
  line-height: 1.6 !important;
  max-width: 40rem !important;
  margin: 0 0 22px 0 !important;
}

.blog-filters {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: flex-start !important;
  gap: 8px !important;
  padding-bottom: 0 !important;
  border-bottom: none !important;
}

.filter-pill {
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  color: var(--text-secondary) !important;
  background-color: rgba(255, 255, 255, 0.75) !important;
  border: 1px solid rgba(15, 23, 42, 0.10) !important;
  padding: 8px 14px !important;
  border-radius: 12px !important;
  text-decoration: none !important;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease !important;
}

.filter-pill:hover {
  color: var(--text-primary) !important;
  border-color: rgba(29, 78, 216, 0.28) !important;
  background-color: #fff !important;
  transform: translateY(-1px);
  box-shadow: none !important;
}

.filter-pill.active-filter {
  background-color: var(--blue) !important;
  color: #ffffff !important;
  border-color: var(--blue) !important;
  box-shadow: 0 6px 14px rgba(29, 78, 216, 0.18) !important;
}

.filter-pill.active-filter:hover {
  background-color: var(--blue-hover) !important;
  border-color: var(--blue-hover) !important;
}

/* Blog listing soft skin */
body.llsite-body .blog-basic-grid .blog-item,
body.llsite-body .blog-alternating-side-by-side .blog-item,
body.llsite-body article.blog-item {
  border-radius: 18px;
}

body.llsite-body .blog-more-link a,
body.llsite-body a.blog-more-link {
  color: #1d4ed8 !important;
  font-weight: 700 !important;
}

/* Blog post article chrome */
.llblog-post-shell {
  max-width: 820px;
  margin: 28px auto 72px;
  padding: 0 20px;
}

.llblog-post-shell .blog-item-wrapper,
.llblog-post-shell .blog-item-inner-wrapper {
  background: linear-gradient(155deg, #ffffff 0%, #fbfcfe 48%, #eff6ff 100%);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 22px;
  box-shadow:
    0 12px 28px rgba(15, 23, 42, 0.06),
    inset 0 1px 0 #ffffff;
  padding: clamp(1.4rem, 3vw, 2.2rem);
  animation: llsite-rise 420ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.llblog-post-shell .entry-title,
.llblog-post-shell .blog-item-title h1 {
  font-family: 'Space Grotesk', 'Segoe UI', system-ui, sans-serif !important;
  font-weight: 700 !important;
  letter-spacing: -0.02em !important;
  color: #0b1120 !important;
  line-height: 1.2 !important;
}

.llblog-post-shell .blog-item-content,
.llblog-post-shell .entry-content {
  color: #334155 !important;
  font-size: 1.02rem !important;
  line-height: 1.7 !important;
}

.llblog-post-shell .blog-item-content a {
  color: #1d4ed8 !important;
  font-weight: 600 !important;
}

/* ==========================================================================
   404
   ========================================================================== */
.ll404-card {
  --ll4-ink: #0b1120;
  --ll4-body: #334155;
  --ll4-muted: #475569;
  --ll4-line: rgba(15, 23, 42, 0.10);
  --ll4-surface: #ffffff;
  --ll4-canvas: #f7f8fb;
  --ll4-blue: #1d4ed8;
  --ll4-blue-deep: #1e40af;
  --ll4-cyan: #0891b2;
  --ll4-font-display: 'Space Grotesk', 'Segoe UI', system-ui, sans-serif;
  --ll4-font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  text-align: center !important;
  max-width: 640px !important;
  margin: 40px auto 64px auto !important;
  padding: clamp(1.6rem, 3.5vw, 2.4rem) !important;
  font-family: var(--ll4-font-body) !important;
  -webkit-font-smoothing: antialiased;
  border-radius: 22px !important;
  background: linear-gradient(155deg, #ffffff 0%, #fbfcfe 48%, #eff6ff 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.95) !important;
  box-shadow:
    0 12px 28px rgba(15, 23, 42, 0.06),
    inset 0 1px 0 #ffffff !important;
  animation: llsite-rise 420ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.ll404-error-display {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 26px 40px;
  margin-bottom: 18px;
  background: rgba(29, 78, 216, 0.05);
  border: 1px solid rgba(29, 78, 216, 0.12);
  border-radius: 18px;
}

.ll404-code {
  font-family: var(--ll4-font-display) !important;
  font-size: 68px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  letter-spacing: -0.03em !important;
  background: linear-gradient(100deg, var(--ll4-blue) 0%, var(--ll4-cyan) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  cursor: default;
}

.ll404-error-display:hover .ll404-code {
  animation: ll404-glitch 0.4s steps(2, end) 2;
}

@keyframes ll404-glitch {
  0%   { transform: translate(0, 0); filter: hue-rotate(0deg); }
  25%  { transform: translate(-2px, 1px); filter: hue-rotate(20deg); }
  50%  { transform: translate(2px, -1px); filter: hue-rotate(-15deg); }
  75%  { transform: translate(-1px, -1px); filter: hue-rotate(10deg); }
  100% { transform: translate(0, 0); filter: hue-rotate(0deg); }
}

.ll404-readout {
  display: inline-flex !important;
  align-items: center !important;
  gap: 2px !important;
  font-family: ui-monospace, 'SF Mono', Menlo, Consolas, monospace !important;
  font-size: 11.5px !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em !important;
  color: var(--ll4-muted) !important;
}

.ll404-cursor {
  display: inline-block !important;
  width: 6px !important;
  height: 12px !important;
  margin-left: 3px !important;
  background: var(--ll4-cyan) !important;
  animation: ll404-blink 1s step-end infinite;
}

@keyframes ll404-blink {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}

.ll404-scan-corner {
  position: absolute;
  width: 14px;
  height: 14px;
  border: 2px solid var(--ll4-blue);
  opacity: 0.45;
}
.ll404-tl { top: 10px; left: 10px; border-right: none; border-bottom: none; }
.ll404-tr { top: 10px; right: 10px; border-left: none; border-bottom: none; }
.ll404-bl { bottom: 10px; left: 10px; border-right: none; border-top: none; }
.ll404-br { bottom: 10px; right: 10px; border-left: none; border-top: none; }

.ll404-card .logo-wrapper {
  margin: 0 auto 14px auto !important;
  line-height: 1 !important;
}

.ll404-card .logo-wrapper img {
  max-width: 180px !important;
  height: auto !important;
  display: inline-block !important;
}

.ll404-card h1 {
  font-family: var(--ll4-font-display) !important;
  font-size: clamp(1.5rem, 3vw, 1.85rem) !important;
  font-weight: 700 !important;
  color: var(--ll4-ink) !important;
  letter-spacing: -0.02em !important;
  margin: 0 0 10px 0 !important;
  line-height: 1.25 !important;
}

.ll404-card .error-lead {
  font-size: 0.98rem !important;
  color: var(--ll4-body) !important;
  line-height: 1.55 !important;
  margin: 0 auto 22px auto !important;
  max-width: 28rem !important;
}

.ll404-card .search-box-container {
  max-width: 380px !important;
  margin: 0 auto 24px auto !important;
}

.ll404-card .search-box-container label {
  display: block !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  color: var(--ll4-muted) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.06em !important;
  margin-bottom: 8px !important;
  text-align: center !important;
  font-family: inherit !important;
}

.ll404-card .search-box-container input {
  width: 100% !important;
  padding: 12px 16px !important;
  border: 1px solid var(--ll4-line) !important;
  border-radius: 12px !important;
  font-size: 14px !important;
  background-color: #fff !important;
  font-family: inherit !important;
  color: var(--ll4-ink) !important;
  transition: border-color 0.25s ease !important;
}

.ll404-card .search-box-container input:focus {
  outline: none !important;
  border-color: var(--ll4-blue) !important;
}

.ll404-card .action-stack {
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
  max-width: 320px !important;
  margin: 0 auto !important;
}

.ll404-card .cta-primary-btn {
  display: block !important;
  background: linear-gradient(100deg, var(--ll4-blue) 0%, var(--ll4-blue-deep) 100%) !important;
  color: #ffffff !important;
  text-align: center !important;
  text-decoration: none !important;
  font-weight: 700 !important;
  font-size: 0.95rem !important;
  padding: 13px !important;
  border-radius: 12px !important;
  box-shadow: 0 8px 18px -10px rgba(29, 78, 216, 0.5) !important;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease !important;
}

.ll404-card .cta-primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 22px -10px rgba(29, 78, 216, 0.6) !important;
}

.ll404-card .cta-secondary-btn {
  display: block !important;
  text-align: center !important;
  text-decoration: none !important;
  font-weight: 700 !important;
  color: var(--ll4-blue) !important;
  border: 1px solid rgba(29, 78, 216, 0.22) !important;
  padding: 12px !important;
  border-radius: 12px !important;
  background: #fff !important;
  font-size: 0.92rem !important;
  transition: background-color 0.25s ease, transform 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.ll404-card .cta-secondary-btn:hover {
  background-color: #f8fafc !important;
  transform: translateY(-2px);
}

.ll404-card .home-link {
  font-size: 0.88rem !important;
  color: var(--ll4-muted) !important;
  text-decoration: underline !important;
  margin-top: 4px !important;
  font-weight: 600 !important;
  display: inline-block !important;
}

@media (max-width: 600px) {
  .ll404-card { margin: 20px auto 48px !important; }
  .ll404-error-display { padding: 20px 28px !important; }
  .ll404-code { font-size: 52px !important; }
  .ll404-card .logo-wrapper img { max-width: 150px !important; }
}
