/* =============================================================
   MC TEA LANDING PAGE
   Cosmic observatory aesthetic — matching explorador.html
   ============================================================= */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700&display=swap');

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { overflow-x: hidden; }

:root {
  --l-bg: #08071b;
  --l-bg2: #0d0c24;
  --l-surface: rgba(255,255,255,0.035);
  --l-border: rgba(255,255,255,0.07);
  --l-text: #dddcee;
  --l-muted: rgba(255,255,255,0.42);
  --l-purple: #6a11cb;
  --l-blue: #2575fc;
  --l-green: #10b981;
  --l-amber: #f59e0b;
  --l-font: 'Sora', -apple-system, BlinkMacSystemFont, sans-serif;
  --l-ease: cubic-bezier(0.4,0,0.2,1);
  --l-r: 16px;
}

body {
  font-family: var(--l-font);
  background: var(--l-bg);
  color: var(--l-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ===== NAV ===== */
.lnav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  background: rgba(8,7,27,0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--l-border);
}

.lnav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lnav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
}

.lnav-brand img { height: 28px; width: auto; }

.lnav-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.lnav-lang {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 500;
}

.lnav-lang a {
  color: var(--l-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.lnav-lang a:hover { color: #fff; }

.lnav-lang-sep { color: rgba(255,255,255,0.15); }

.lnav-link {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  transition: color 0.2s;
}

.lnav-link:hover { color: #fff; }

.lnav-btn {
  display: inline-flex;
  align-items: center;
  padding: 7px 18px;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--l-purple), var(--l-blue));
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s var(--l-ease);
}

.lnav-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(106,17,203,0.4);
}

/* ===== HERO ===== */
.lhero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px 50px;
  overflow: hidden;
}

.lhero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.lhero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.35;
}

.lhero-orb--1 {
  width: 650px; height: 650px;
  top: -18%; left: -12%;
  background: radial-gradient(circle, var(--l-purple), transparent 70%);
  animation: orbDrift 14s ease-in-out infinite;
}

.lhero-orb--2 {
  width: 500px; height: 500px;
  bottom: -22%; right: -10%;
  background: radial-gradient(circle, var(--l-blue), transparent 70%);
  animation: orbDrift 18s ease-in-out infinite reverse;
}

@keyframes orbDrift {
  0%,100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(25px,-18px) scale(1.04); }
  66% { transform: translate(-18px,12px) scale(0.96); }
}

.lhero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 65% 55% at 50% 40%, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 65% 55% at 50% 40%, black 30%, transparent 70%);
}

.lhero-inner {
  position: relative; z-index: 1;
  text-align: center;
  max-width: 740px;
}

.lhero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 50px;
  background: rgba(106,17,203,0.14);
  border: 1px solid rgba(106,17,203,0.28);
  font-size: 0.7rem;
  font-weight: 500;
  color: #c4b5fd;
  letter-spacing: 0.04em;
  margin-bottom: 30px;
  opacity: 0;
  animation: fadeUp 0.7s var(--l-ease) 0.1s forwards;
}

.lhero-badge i { font-size: 0.68rem; }

.lhero h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.12;
  color: #fff;
  margin: 0 0 22px;
  letter-spacing: -0.035em;
  opacity: 0;
  animation: fadeUp 0.7s var(--l-ease) 0.2s forwards;
}

.lg-text {
  background: linear-gradient(135deg, #a78bfa 0%, #6a11cb 40%, #2575fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lhero-sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--l-muted);
  line-height: 1.65;
  margin: 0 auto 38px;
  max-width: 560px;
  opacity: 0;
  animation: fadeUp 0.7s var(--l-ease) 0.35s forwards;
}

/* Buttons */
.lhero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 50px;
  opacity: 0;
  animation: fadeUp 0.7s var(--l-ease) 0.45s forwards;
}

.lbtn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-family: var(--l-font);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s var(--l-ease);
  border: none;
  cursor: pointer;
}

.lbtn--primary {
  background: linear-gradient(135deg, var(--l-purple), var(--l-blue));
  color: #fff;
  box-shadow: 0 4px 22px rgba(106,17,203,0.35);
}

.lbtn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(106,17,203,0.5);
  color: #fff;
}

.lbtn--ghost {
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.12);
}

.lbtn--ghost:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
  transform: translateY(-2px);
}

.lbtn--lg { padding: 14px 34px; font-size: 0.95rem; }
.lbtn i { font-size: 0.85em; }

/* ===== NAV SCROLL EFFECT ===== */
.lnav--scrolled {
  background: rgba(8, 7, 27, 0.95);
  border-bottom-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
}

/* ===== FEATURE SECTION CTAs ===== */
.lfeat-cta {
  margin-top: 24px;
  padding: 10px 24px;
  font-size: 0.82rem;
}

.lfeat-cta--green {
  background: linear-gradient(135deg, #10b981, #059669);
  box-shadow: 0 4px 22px rgba(16, 185, 129, 0.3);
}

.lfeat-cta--green:hover {
  box-shadow: 0 8px 32px rgba(16, 185, 129, 0.45);
}

.lfeat-cta--amber {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  box-shadow: 0 4px 22px rgba(245, 158, 11, 0.3);
}

.lfeat-cta--amber:hover {
  box-shadow: 0 8px 32px rgba(245, 158, 11, 0.45);
}

/* ===== SEARCH MOCK ===== */
.lhero-mock {
  max-width: 520px;
  margin: 0 auto;
  border-radius: var(--l-r);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  opacity: 0;
  animation: fadeUp 0.7s var(--l-ease) 0.6s forwards;
}

.lmock-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.84rem;
  color: var(--l-muted);
}

.lmock-bar i { opacity: 0.45; font-size: 0.78rem; }

.lmock-typing { color: rgba(255,255,255,0.65); white-space: nowrap; overflow: hidden; }

.lmock-cursor {
  color: var(--l-purple);
  font-weight: 300;
  animation: blink 0.8s step-end infinite;
}

@keyframes blink { 0%,50%{opacity:1} 51%,100%{opacity:0} }

.lmock-results { padding: 6px 10px 10px; }

.lmock-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 12px;
  border-radius: 10px;
  background: rgba(255,255,255,0.025);
  margin-bottom: 4px;
  opacity: 0;
  animation: fadeUp 0.45s var(--l-ease) forwards;
}

.lmock-row:last-child { margin-bottom: 0; }

.lmock-badge {
  font-size: 0.58rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  flex-shrink: 0;
}

.lmock-badge--mctea { background: rgba(251,146,60,0.14); color: #fb923c; }
.lmock-badge--finep { background: rgba(96,165,250,0.14); color: #60a5fa; }
.lmock-badge--edital { background: rgba(167,139,250,0.14); color: #a78bfa; }

.lmock-title {
  flex: 1;
  font-size: 0.76rem;
  color: rgba(255,255,255,0.55);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lmock-score {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--l-green);
  flex-shrink: 0;
}

/* ===== SOURCES STRIP ===== */
.lsources {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 18px 24px;
  border-top: 1px solid var(--l-border);
  border-bottom: 1px solid var(--l-border);
  background: rgba(255,255,255,0.012);
}

.lsources-label {
  font-size: 0.64rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--l-muted);
  white-space: nowrap;
}

.lsources-list {
  display: flex;
  align-items: center;
  gap: 22px;
}

.lsource {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
}

.lsource-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ===== FEATURE SECTIONS ===== */
.lfeat {
  padding: 110px 24px;
  opacity: 0;
  transform: translateY(45px);
  transition: opacity 0.8s var(--l-ease), transform 0.8s var(--l-ease);
}

.lfeat--alt { background: var(--l-bg2); }

.lfeat.lvisible {
  opacity: 1;
  transform: translateY(0);
}

.lfeat-inner {
  max-width: 1020px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.lfeat-inner--rev { direction: rtl; }
.lfeat-inner--rev > * { direction: ltr; }

.lfeat-label {
  display: inline-block;
  font-size: 0.66rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: #a78bfa;
  margin-bottom: 14px;
}

.lfeat-label--green { color: var(--l-green); }
.lfeat-label--amber { color: var(--l-amber); }

.lfeat-text h2 {
  font-size: 1.85rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 16px;
  letter-spacing: -0.025em;
  line-height: 1.18;
}

.lfeat-text p {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--l-muted);
  line-height: 1.75;
  margin: 0 0 28px;
}

.lfeat-checks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.lfeat-checks li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.82rem;
  font-weight: 400;
  color: rgba(255,255,255,0.68);
}

.lfeat-checks li i {
  width: 30px; height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(106,17,203,0.12);
  color: #a78bfa;
  font-size: 0.7rem;
  flex-shrink: 0;
}

.lfeat-checks--green li i { background: rgba(16,185,129,0.12); color: #6ee7b7; }
.lfeat-checks--amber li i { background: rgba(245,158,11,0.12); color: #fbbf24; }

/* ===== VISUAL: RADAR ===== */
.lfeat-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.lillus-radar {
  position: relative;
  width: 310px; height: 310px;
}

.lradar-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(106,17,203,0.14);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
}

.lradar-ring--1 { width: 96px; height: 96px; }
.lradar-ring--2 { width: 196px; height: 196px; }
.lradar-ring--3 { width: 294px; height: 294px; border-style: dashed; border-color: rgba(106,17,203,0.08); }

.lradar-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--l-purple), var(--l-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  box-shadow: 0 0 30px rgba(106,17,203,0.5);
  z-index: 2;
}

.lradar-sweep {
  position: absolute;
  top: 50%; left: 50%;
  width: 147px; height: 2px;
  transform-origin: left center;
  background: linear-gradient(90deg, rgba(106,17,203,0.55), transparent);
  animation: sweep 4s linear infinite;
  z-index: 1;
}

@keyframes sweep { from{transform:rotate(0)} to{transform:rotate(360deg)} }

.lradar-dot {
  position: absolute;
  width: 34px; height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  z-index: 3;
  animation: dotPop 3s ease-in-out infinite;
}

.lradar-dot--1 {
  top: 14%; left: 64%;
  background: rgba(251,146,60,0.18); color: #fb923c;
  border: 1px solid rgba(251,146,60,0.28);
}

.lradar-dot--2 {
  top: 60%; left: 12%;
  background: rgba(96,165,250,0.18); color: #60a5fa;
  border: 1px solid rgba(96,165,250,0.28);
  animation-delay: 0.8s;
}

.lradar-dot--3 {
  top: 76%; left: 58%;
  background: rgba(52,211,153,0.18); color: #34d399;
  border: 1px solid rgba(52,211,153,0.28);
  animation-delay: 1.6s;
}

.lradar-dot--4 {
  top: 24%; left: 18%;
  background: rgba(167,139,250,0.18); color: #a78bfa;
  border: 1px solid rgba(167,139,250,0.28);
  animation-delay: 2.4s;
}

@keyframes dotPop {
  0%,100% { transform: scale(1); opacity: 0.75; }
  50% { transform: scale(1.14); opacity: 1; }
}

/* ===== VISUAL: PROFILE CARD ===== */
.lillus-profile { position: relative; display: flex; justify-content: center; }

.lprofile-card {
  width: 275px;
  background: var(--l-surface);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--l-r);
  padding: 22px;
  z-index: 2;
  position: relative;
}

.lprofile-hdr {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 20px;
}

.lprofile-av {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--l-purple), var(--l-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.95rem;
}

.lprofile-name { font-size: 0.86rem; font-weight: 600; color: #fff; }
.lprofile-org { font-size: 0.7rem; color: var(--l-muted); margin-top: 2px; }

.lprofile-meters { display: flex; flex-direction: column; gap: 11px; }

.lmeter { display: flex; align-items: center; gap: 11px; }

.lmeter span {
  font-size: 0.62rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--l-muted);
  width: 30px;
  flex-shrink: 0;
}

.lmeter-bar {
  flex: 1; height: 5px;
  background: rgba(255,255,255,0.05);
  border-radius: 3px;
  overflow: hidden;
}

.lmeter-fill {
  height: 100%;
  border-radius: 3px;
  width: var(--w);
  background: var(--c);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.3s var(--l-ease);
}

.lvisible .lmeter-fill { transform: scaleX(1); }

/* Pings */
.lping {
  position: absolute;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(16,185,129,0.14);
  border: 1px solid rgba(16,185,129,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--l-green);
  font-size: 0.55rem;
  animation: pingBob 3s ease-in-out infinite;
  z-index: 3;
}

.lping--1 { top: -8px; right: 30px; }
.lping--2 { bottom: 18px; left: 5px; animation-delay: 1s; }
.lping--3 { top: 38%; right: -10px; animation-delay: 2s; }

@keyframes pingBob {
  0%,100% { transform: translateY(0); opacity: 0.65; }
  50% { transform: translateY(-7px); opacity: 1; }
}

/* ===== VISUAL: PILLARS ===== */
.lillus-pillars {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 26px;
  height: 260px;
  padding-bottom: 38px;
}

.lpillar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
}

.lpillar span {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--l-muted);
}

.lpillar-bar {
  width: 54px;
  border-radius: 10px 10px 4px 4px;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.055);
  overflow: hidden;
  position: relative;
}

.lpillar--trl .lpillar-bar { height: 135px; }
.lpillar--crit .lpillar-bar { height: 175px; }
.lpillar--ae .lpillar-bar { height: 115px; }

.lpillar-fill {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  border-radius: 0 0 3px 3px;
  height: 0;
  transition: height 1.2s var(--l-ease);
}

.lvisible .lpillar--trl .lpillar-fill { height: 65%; background: linear-gradient(to top, var(--l-purple), rgba(106,17,203,0.25)); }
.lvisible .lpillar--crit .lpillar-fill { height: 78%; background: linear-gradient(to top, var(--l-blue), rgba(37,117,252,0.25)); }
.lvisible .lpillar--ae .lpillar-fill { height: 52%; background: linear-gradient(to top, var(--l-green), rgba(16,185,129,0.25)); }

.lpillar-icon {
  width: 34px; height: 34px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
}

.lpillar--trl .lpillar-icon { background: rgba(106,17,203,0.14); color: #a78bfa; }
.lpillar--crit .lpillar-icon { background: rgba(37,117,252,0.14); color: #60a5fa; }
.lpillar--ae .lpillar-icon { background: rgba(16,185,129,0.14); color: #6ee7b7; }

/* ===== CTA ===== */
.lcta {
  padding: 90px 24px;
  text-align: center;
  position: relative;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--l-ease), transform 0.8s var(--l-ease);
}

.lcta.lvisible { opacity: 1; transform: translateY(0); }

.lcta::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 550px; height: 300px;
  background: radial-gradient(ellipse, rgba(106,17,203,0.07), transparent 70%);
  pointer-events: none;
}

.lcta-inner { position: relative; z-index: 1; }

.lcta h2 {
  font-size: 1.85rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 14px;
  letter-spacing: -0.02em;
}

.lcta p {
  font-size: 0.92rem;
  color: var(--l-muted);
  margin: 0 0 34px;
  font-weight: 300;
}

/* ===== FOOTER ===== */
.lfooter {
  border-top: 1px solid var(--l-border);
  padding: 40px 24px;
  text-align: center;
}

.lfooter-inner {
  max-width: 600px;
  margin: 0 auto;
}

.lfooter-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
}

.lfooter-brand img { height: 26px; width: auto; opacity: 0.5; }
.lfooter-brand span { font-size: 0.85rem; font-weight: 600; color: rgba(255,255,255,0.5); }

.lfooter p {
  font-size: 0.72rem;
  color: var(--l-muted);
  margin-bottom: 16px;
}

.lfooter-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 18px;
}

.lfooter-links a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  font-size: 0.78rem;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}

.lfooter-links a:hover { color: rgba(255,255,255,0.8); }

.lfooter small {
  font-size: 0.66rem;
  color: rgba(255,255,255,0.2);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 767.98px) {
  /* Nav */
  .lnav-inner { padding: 0 12px; gap: 8px; }
  .lnav-link { display: none; }
  .lnav-brand span { display: none; }
  .lnav-brand img { height: 24px; }
  .lnav-right { gap: 10px; }
  .lnav-btn { padding: 6px 14px; font-size: 0.72rem; }
  .lnav-lang { font-size: 0.68rem; gap: 4px; }

  /* Hero */
  .lhero {
    min-height: auto;
    padding: 72px 16px 30px;
  }

  .lhero-badge { font-size: 0.62rem; padding: 5px 12px; margin-bottom: 22px; }
  .lhero h1 { font-size: 1.55rem; }
  .lhero-sub { font-size: 0.85rem; margin-bottom: 28px; }

  /* Orbs - contain within viewport */
  .lhero-orb--1 { width: 300px; height: 300px; top: -10%; left: -20%; }
  .lhero-orb--2 { width: 250px; height: 250px; bottom: -15%; right: -15%; }

  .lhero-actions {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
  }

  .lbtn { width: 100%; justify-content: center; }

  /* Search mock */
  .lmock-title { display: none; }
  .lmock-bar { padding: 12px 16px; font-size: 0.8rem; }
  .lmock-row { padding: 7px 10px; }

  /* Sources strip */
  .lsources {
    flex-direction: column;
    gap: 10px;
    padding: 14px 16px;
  }

  .lsources-list { gap: 14px; flex-wrap: wrap; justify-content: center; }

  /* Features */
  .lfeat { padding: 50px 16px; }

  .lfeat-inner,
  .lfeat-inner--rev {
    grid-template-columns: 1fr;
    gap: 32px;
    direction: ltr;
  }

  .lfeat-text h2 { font-size: 1.3rem; }
  .lfeat-text p { font-size: 0.85rem; }
  .lfeat-checks li { font-size: 0.78rem; }

  /* Illustrations */
  .lillus-radar { width: 230px; height: 230px; }
  .lradar-ring--3 { width: 214px; height: 214px; }
  .lradar-ring--2 { width: 142px; height: 142px; }
  .lradar-ring--1 { width: 72px; height: 72px; }
  .lradar-sweep { width: 107px; }
  .lradar-center { width: 38px; height: 38px; font-size: 0.85rem; }
  .lradar-dot { width: 28px; height: 28px; font-size: 0.58rem; }

  .lprofile-card { width: 240px; padding: 18px; }

  .lillus-pillars { height: 190px; gap: 16px; }
  .lpillar-bar { width: 40px; }
  .lpillar--trl .lpillar-bar { height: 95px; }
  .lpillar--crit .lpillar-bar { height: 125px; }
  .lpillar--ae .lpillar-bar { height: 82px; }

  /* CTA */
  .lcta { padding: 50px 16px; }
  .lcta h2 { font-size: 1.3rem; }

  /* Footer */
  .lfooter { padding: 30px 16px; }
  .lfooter-links { flex-direction: column; gap: 10px; }
}
