/* Landing Arena Upya — bandas intercaladas (escuro / claro) como Upya */
:root {
  --l-font: "DM Sans", system-ui, sans-serif;
  --l-pad-x: clamp(1.25rem, 4vw, 3rem);
  --l-max: 1120px;
  --l-radius: 16px;
  --l-green: #9acd32;
  --l-green-bright: #b8e04a;
  --l-green-deep: #7aab1a;
  --l-green-glow: rgba(154, 205, 50, 0.35);
  --l-green-dim: rgba(154, 205, 50, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 4.5rem; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .lp-col { animation: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .lg-badge,
  .lg-meta,
  .lg-mission,
  .lg-minirank { animation: none !important; opacity: 1 !important; transform: none !important; }
  .lg-meta-bar i { width: var(--p, 70%) !important; animation: none !important; }
  .lt-live { animation: none !important; }
}

body.landing {
  margin: 0;
  font-family: var(--l-font);
  color: #f5f5f5;
  background: #050505;
  min-height: 100vh;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--l-green-bright); text-decoration: none; }
a:hover { text-decoration: underline; }

/* —— Tokens por banda —— */
.section-band--dark,
.landing-hero {
  --bg: #050505;
  --bg-elevated: #111111;
  --bg-card: #161616;
  --text: #f5f5f5;
  --text-muted: #a3a3a3;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.18);
  --kicker: var(--l-green);
  --heading: #ffffff;
  --cta-ghost-border: rgba(255, 255, 255, 0.28);
  --cta-ghost-color: #fff;
  --cta-ghost-hover: rgba(255, 255, 255, 0.08);
  --accent: var(--l-green);
  --accent-bright: var(--l-green-bright);
  --on-accent: #0a0a0a;
  color-scheme: dark;
}

.section-band--light {
  --bg: #f3f5ef;
  --bg-elevated: #ffffff;
  --bg-card: #ffffff;
  --text: #141914;
  --text-muted: #5a6354;
  --border: rgba(18, 28, 12, 0.1);
  --border-strong: rgba(18, 28, 12, 0.18);
  --kicker: var(--l-green-deep);
  --heading: #141914;
  --cta-ghost-border: rgba(18, 28, 12, 0.22);
  --cta-ghost-color: #141914;
  --cta-ghost-hover: rgba(18, 28, 12, 0.06);
  --accent: var(--l-green-deep);
  --accent-bright: #5f8f10;
  --on-accent: #ffffff;
  color-scheme: light;
}

/* —— Header (sempre escuro) —— */
.landing-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem var(--l-pad-x);
  gap: 1rem;
}
.landing-top--sticky {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(5, 5, 5, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.landing-brand {
  display: flex;
  align-items: center;
  gap: .65rem;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}
.landing-brand:hover { text-decoration: none; color: #fff; }
.landing-brand img { height: 36px; width: auto; border-radius: 8px; }
.brand-lockup {
  display: block;
  margin: 0 auto;
  height: 56px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
  border-radius: 10px;
}
.landing-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.landing-nav a {
  font-weight: 600;
  text-decoration: none;
  color: #a3a3a3;
  transition: color .2s ease;
}
.landing-nav a:hover,
.landing-nav a.active,
.landing-nav a[aria-current="page"] {
  color: #fff;
  text-decoration: none;
}
.landing-nav a.landing-cta:hover,
.landing-nav a.landing-cta.active,
.landing-nav a.landing-cta[aria-current="page"] {
  color: #0a0a0a;
}
.landing-nav-toggle {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #111;
  color: #fff;
  border-radius: 999px;
  padding: .4rem .9rem;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.landing-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .6rem 1.15rem;
  border-radius: 999px;
  border: 1px solid var(--cta-ghost-border, rgba(255, 255, 255, 0.28));
  font-weight: 700;
  text-decoration: none !important;
  color: var(--cta-ghost-color, #fff);
  background: transparent;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.landing-cta:hover {
  transform: translateY(-1px);
  background: var(--cta-ghost-hover, rgba(255, 255, 255, 0.08));
}
.landing-cta--solid {
  background: var(--l-green);
  border-color: transparent;
  color: #0a0a0a;
  box-shadow: 0 10px 28px var(--l-green-glow);
}
.landing-cta--solid:hover {
  background: var(--l-green-bright);
  color: #0a0a0a;
  box-shadow: 0 14px 36px var(--l-green-glow);
}
.landing-cta--ghost {
  background: transparent;
  border-color: var(--cta-ghost-border);
  color: var(--cta-ghost-color);
}
.landing-top .landing-cta--solid {
  color: #0a0a0a;
}

/* —— Hero (escuro) —— */
.landing-hero {
  position: relative;
  overflow: hidden;
  min-height: min(82vh, 760px);
  padding: clamp(2rem, 5vw, 4rem) var(--l-pad-x) 3.5rem;
  background: var(--bg);
  color: var(--text);
}
.landing-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 15% -10%, rgba(154, 205, 50, 0.18), transparent 55%),
    radial-gradient(ellipse 50% 40% at 95% 20%, rgba(154, 205, 50, 0.08), transparent 50%),
    linear-gradient(180deg, #050505 0%, #0a0a0a 100%);
  z-index: 0;
}
.landing-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 2.5rem;
  align-items: end;
  max-width: var(--l-max);
  margin: 0 auto;
}
.landing-eyebrow {
  margin: 0 0 .75rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: .02em;
}
.landing-eyebrow a {
  color: var(--l-green-bright);
  font-weight: 700;
}
.landing-brand-hero {
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  margin: 0 0 .5rem;
  color: var(--l-green);
  font-weight: 800;
  letter-spacing: -.02em;
}
.landing-kicker {
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .72rem;
  font-weight: 700;
  color: var(--kicker);
  margin: 0 0 .75rem;
}
.landing-hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  line-height: 1.02;
  margin: 0;
  font-weight: 800;
  letter-spacing: -.03em;
  max-width: 14ch;
  color: #fff;
}
.landing-lead {
  margin: 1.15rem 0 0;
  max-width: 34rem;
  font-size: 1.12rem;
  color: var(--text-muted);
}
.landing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.85rem;
}

.landing-hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 340px;
}
.landing-hero-art-wrap {
  position: relative;
  width: min(560px, 100%);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(154, 205, 50, 0.28);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(251, 191, 36, 0.12);
  background: #0b0f0a;
  animation: lp-rise .85s ease both;
}
.landing-hero-art {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.lg-badge--on-art {
  top: 0.85rem;
  right: 0.85rem;
  left: auto;
}
.lg-badge-crown img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}
.landing-hero-art-chips {
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.85rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.landing-hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.55rem 0.35rem 0.35rem;
  border-radius: 999px;
  background: rgba(10, 12, 8, 0.72);
  border: 1px solid rgba(154, 205, 50, 0.35);
  color: #e8f5c8;
  font-size: 0.72rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
}
.landing-hero-chip img {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  object-fit: cover;
}
.landing-game-stack {
  position: relative;
  width: min(420px, 100%);
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: .75rem;
  align-items: end;
}
.landing-podium {
  display: flex;
  align-items: flex-end;
  gap: .55rem;
  width: 100%;
  height: 200px;
  grid-column: 1 / -1;
}
.lp-col {
  flex: 1;
  border-radius: 14px 14px 8px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: .85rem;
  gap: .1rem;
  color: #fff;
  font-weight: 800;
  font-size: 1.35rem;
  animation: lp-rise .85s ease both;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45);
}
.lp-col small {
  font-size: .65rem;
  font-weight: 600;
  opacity: .9;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.lp-1 {
  height: 100%;
  background: linear-gradient(180deg, #b8e04a, #6f9b1e);
  color: #0a0a0a;
  animation-delay: .1s;
  box-shadow: 0 16px 36px var(--l-green-glow);
}
.lp-2 {
  height: 72%;
  background: linear-gradient(180deg, #94a3b8, #475569);
  animation-delay: .2s;
}
.lp-3 {
  height: 52%;
  background: linear-gradient(180deg, #d6a36a, #b45309);
  animation-delay: .3s;
}
@keyframes lp-rise {
  from { transform: translateY(28px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.lg-badge {
  position: absolute;
  top: -0.35rem;
  right: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: .4rem;
  padding: .4rem .7rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #b8e04a, #6f9b1e);
  color: #0a0a0a;
  font-size: .72rem;
  font-weight: 700;
  box-shadow: 0 8px 24px var(--l-green-glow);
  animation: lg-pop .7s ease .35s both;
}
.lg-badge strong { font-weight: 800; }
.lg-badge-crown {
  display: inline-flex;
  width: 1.15rem;
  height: 1.15rem;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(10, 10, 10, 0.15);
  font-size: .7rem;
}
.lg-meta {
  grid-column: 1;
  background: rgba(22, 22, 22, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: .75rem .85rem;
  animation: lg-pop .65s ease .45s both;
}
.lg-meta-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: .45rem;
  font-size: .78rem;
  color: #a3a3a3;
}
.lg-meta-top strong {
  color: var(--l-green-bright);
  font-size: 1rem;
}
.lg-meta-bar {
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}
.lg-meta-bar i {
  display: block;
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, #6f9b1e, #b8e04a);
  animation: lg-fill 1.1s ease .6s forwards;
}
@keyframes lg-fill {
  to { width: var(--p, 70%); }
}
.lg-mission {
  grid-column: 2;
  background: rgba(22, 22, 22, 0.95);
  border: 1px solid rgba(154, 205, 50, 0.35);
  border-radius: 12px;
  padding: .7rem .8rem;
  display: flex;
  flex-direction: column;
  gap: .25rem;
  animation: lg-pop .65s ease .55s both;
}
.lg-mission-tag {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--l-green);
}
.lg-mission strong {
  font-size: .82rem;
  color: #fff;
  line-height: 1.25;
}
.lg-mission-pts {
  font-size: .78rem;
  font-weight: 800;
  color: var(--l-green-bright);
}
.lg-minirank {
  grid-column: 1 / -1;
  background: rgba(17, 17, 17, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: .35rem;
  display: flex;
  flex-direction: column;
  gap: .2rem;
  animation: lg-pop .65s ease .65s both;
}
.lg-mr-row {
  display: grid;
  grid-template-columns: 1.5rem 1fr auto;
  gap: .5rem;
  align-items: center;
  padding: .4rem .55rem;
  border-radius: 8px;
  font-size: .8rem;
  color: #a3a3a3;
}
.lg-mr-row.is-gold {
  background: var(--l-green-dim);
  color: #fff;
  font-weight: 700;
}
.lg-mr-row span:first-child {
  font-weight: 800;
  color: var(--l-green-bright);
}
@keyframes lg-pop {
  from { opacity: 0; transform: translateY(12px) scale(.98); }
  to { opacity: 1; transform: none; }
}

/* —— Monitor Telão mockup —— */
.landing-telao-mock {
  margin: 0 0 2.25rem;
}
.lt-bezel {
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: .65rem;
  box-shadow:
    0 0 0 1px rgba(154, 205, 50, 0.08),
    0 28px 64px rgba(0, 0, 0, 0.55);
}
.lt-screen {
  background:
    radial-gradient(ellipse 60% 40% at 20% 0%, rgba(154, 205, 50, 0.12), transparent 55%),
    #111;
  border-radius: 12px;
  padding: 1rem 1.15rem 1.15rem;
  min-height: 260px;
}
.lt-top {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.lt-live {
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .08em;
  background: #ef4444;
  color: #fff;
  padding: .2rem .45rem;
  border-radius: 4px;
  animation: lt-pulse 1.6s ease infinite;
}
@keyframes lt-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .55; }
}
.lt-top strong {
  flex: 1;
  font-size: .9rem;
  color: #fff;
}
.lt-clock {
  font-size: .8rem;
  color: #a3a3a3;
  font-variant-numeric: tabular-nums;
}
.lt-body {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 1.25rem;
  align-items: end;
}
.lt-podium {
  display: flex;
  align-items: flex-end;
  gap: .5rem;
  height: 170px;
}
.lt-p {
  flex: 1;
  border-radius: 12px 12px 6px 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: .65rem .35rem;
  gap: .15rem;
  color: #fff;
  font-size: .75rem;
}
.lt-p b { font-size: 1.25rem; font-weight: 800; }
.lt-p span { font-weight: 700; }
.lt-p small { opacity: .85; font-size: .7rem; }
.lt-p1 {
  height: 100%;
  background: linear-gradient(180deg, #b8e04a, #6f9b1e);
  color: #0a0a0a;
}
.lt-p2 {
  height: 72%;
  background: linear-gradient(180deg, #94a3b8, #475569);
}
.lt-p3 {
  height: 55%;
  background: linear-gradient(180deg, #d6a36a, #b45309);
}
.lt-side {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.lt-row {
  display: grid;
  grid-template-columns: 1.25rem 1fr auto;
  gap: .45rem;
  padding: .45rem .55rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  font-size: .8rem;
  color: #c4c4c4;
}
.lt-row span:first-child {
  font-weight: 800;
  color: var(--l-green);
}
.lt-meta-mini {
  margin-top: .35rem;
  font-size: .72rem;
  color: #a3a3a3;
  display: flex;
  flex-direction: column;
  gap: .35rem;
}
.lt-caption {
  margin: .85rem 0 0 !important;
  text-align: center;
  font-size: .9rem;
  color: #a3a3a3 !important;
  max-width: none !important;
}

/* —— Trust (faixa sobre transição hero → light) —— */
.landing-trust {
  padding: 0 var(--l-pad-x);
  margin: -1.5rem 0 0;
  position: relative;
  z-index: 2;
  background: #f3f5ef;
  padding-bottom: 0;
  padding-top: 0;
}
.landing-trust-grid {
  max-width: var(--l-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  background: #fff;
  border: 1px solid rgba(18, 28, 12, 0.1);
  border-radius: 18px;
  padding: 1.2rem 1.3rem;
  box-shadow: 0 16px 40px rgba(18, 28, 12, 0.08);
  position: relative;
  top: -1.25rem;
}
.landing-trust-grid div {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  padding: .35rem .5rem;
}
.landing-trust-grid strong { font-size: .95rem; color: #141914; }
.landing-trust-grid span { font-size: .82rem; color: #5a6354; }

/* —— Section bands —— */
.section-band {
  padding: clamp(3.25rem, 6vw, 5.25rem) var(--l-pad-x);
  background: var(--bg);
  color: var(--text);
}
.section-inner {
  max-width: var(--l-max);
  margin: 0 auto;
}
.section-band h2 {
  font-size: clamp(1.85rem, 3.8vw, 2.75rem);
  font-weight: 800;
  margin: 0 0 .55rem;
  line-height: 1.15;
  letter-spacing: -.02em;
  color: var(--heading);
}
.landing-section-lead {
  color: var(--text-muted);
  margin: 0 0 1.85rem;
  max-width: none;
  font-size: 1.05rem;
}
.section-band--dark p { color: rgba(245, 245, 245, 0.78); max-width: 36rem; }
.section-band--dark .landing-section-lead { max-width: none; }
.section-band--dark strong { color: #fff; }
.section-band--dark em {
  font-style: normal;
  color: var(--l-green-bright);
  font-weight: 700;
}
.section-band--light p { color: var(--text-muted); }
.section-band--light strong { color: var(--heading); }
.section-band--light em {
  font-style: normal;
  color: var(--l-green-deep);
  font-weight: 700;
}
.section-split {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 2.5rem;
  align-items: center;
}

/* —— Cards —— */
.landing-card-grid {
  display: grid;
  gap: 1.15rem;
}
.landing-card-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.landing-feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--l-radius);
  padding: 1.3rem 1.25rem;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.section-band--light .landing-feature-card {
  box-shadow: 0 8px 24px rgba(18, 28, 12, 0.06);
}
.landing-feature-card:hover {
  border-color: rgba(154, 205, 50, 0.45);
  transform: translateY(-2px);
}
.landing-feature-card h3 {
  margin: 0 0 .45rem;
  font-size: 1.08rem;
  color: var(--heading);
}
.landing-feature-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: .95rem;
  max-width: none;
}

/* —— Problem panel (só em dark) —— */
.landing-problem-panel {
  display: flex;
  flex-direction: column;
  gap: .65rem;
}
.lpp-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .9rem 1.15rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: .95rem;
}
.lpp-row.is-bad {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  color: rgba(245, 245, 245, 0.55);
}
.lpp-row.is-good {
  background: var(--l-green-dim);
  border: 1px solid rgba(154, 205, 50, 0.45);
  color: #fff;
  box-shadow: 0 0 24px rgba(154, 205, 50, 0.12);
}

/* —— Steps —— */
.landing-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}
.landing-step {
  padding: 1.35rem 1.15rem;
  border-top: 3px solid var(--accent);
  background: var(--bg-card);
  border-radius: 0 0 12px 12px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  border-left: 1px solid var(--border);
}
.section-band--light .landing-step {
  box-shadow: 0 6px 18px rgba(18, 28, 12, 0.05);
}
.landing-step-num {
  display: block;
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: .5rem;
  letter-spacing: -.02em;
}
.landing-step h3 { margin: 0 0 .4rem; font-size: 1.12rem; color: var(--heading); }
.landing-step p { margin: 0; color: var(--text-muted); font-size: .95rem; max-width: none; }

/* —— Checklist —— */
.landing-checklist {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 42rem;
}
.landing-checklist li {
  padding-left: 1.75rem;
  position: relative;
  color: var(--text-muted);
}
.landing-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .45rem;
  width: .7rem;
  height: .7rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px var(--l-green-dim);
}
.landing-checklist strong { color: var(--heading); }

/* —— Plans —— */
.landing-plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}
.landing-plan {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.4rem 1.3rem 1.55rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.landing-plan:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
  border-color: var(--border-strong);
}
.landing-plan--featured {
  border-color: rgba(154, 205, 50, 0.5);
  background: linear-gradient(165deg, #1a1f12 0%, #161616 100%);
  box-shadow: 0 0 0 1px rgba(154, 205, 50, 0.2), 0 16px 40px rgba(154, 205, 50, 0.1);
}
.landing-plan-badge {
  align-self: flex-start;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  background: var(--l-green);
  color: #0a0a0a;
  padding: .25rem .6rem;
  border-radius: 999px;
}
.landing-plan h3 { margin: 0; font-size: 1.3rem; color: var(--heading); }
.landing-plan-desc {
  margin: 0;
  color: var(--text-muted);
  font-size: .95rem;
  min-height: 2.8em;
  max-width: none;
}
.landing-plan-price strong {
  font-size: 2rem;
  font-weight: 800;
  color: var(--heading);
}
.landing-plan-price span {
  color: var(--text-muted);
  margin-left: .25rem;
}
.landing-plan ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--text-muted);
  flex: 1;
}
.landing-plan .landing-cta {
  margin-top: .5rem;
  width: 100%;
}
.landing-plan .landing-cta--solid {
  color: #0a0a0a;
}

/* —— FAQ —— */
.landing-faq {
  display: flex;
  flex-direction: column;
  gap: .65rem;
  max-width: 720px;
}
.landing-faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: .15rem 1rem;
  box-shadow: 0 4px 14px rgba(18, 28, 12, 0.05);
}
.landing-faq-item summary {
  cursor: pointer;
  font-weight: 600;
  padding: .95rem 0;
  list-style: none;
  color: var(--heading);
}
.landing-faq-item summary::-webkit-details-marker { display: none; }
.landing-faq-item summary::after {
  content: "+";
  float: right;
  color: var(--accent);
  font-weight: 700;
}
.landing-faq-item[open] summary::after { content: "−"; }
.landing-faq-item p {
  margin: 0 0 1rem;
  color: var(--text-muted);
  padding-right: 1.5rem;
  max-width: none;
}

/* —— Contact —— */
.landing-contact { text-align: left; }
.landing-contact h2 { max-width: none; }

/* —— Reveal —— */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* —— Footer (escuro) —— */
.landing-foot {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem var(--l-pad-x) 2.5rem;
  color: #a3a3a3;
  font-size: .9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #050505;
}
.landing-foot--rich {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
  padding-top: 2.75rem;
}
.landing-foot-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .2rem;
}
.landing-foot-brand strong {
  color: #fff;
  font-size: 1.1rem;
}
.landing-foot-brand a { color: var(--l-green-bright); }
.landing-foot-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .85rem 1.25rem;
}
.landing-foot-nav a {
  color: #f5f5f5;
  font-weight: 600;
  text-decoration: none;
}
.landing-foot-nav a:hover { color: var(--l-green-bright); text-decoration: underline; }
.landing-foot-copy { margin: 0; }

/* —— Responsive —— */
@media (max-width: 900px) {
  .landing-nav-toggle { display: inline-flex; }
  .landing-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(5, 5, 5, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: .5rem var(--l-pad-x) 1rem;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.5);
  }
  .landing-nav.is-open { display: flex; }
  .landing-nav a {
    padding: .75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: #a3a3a3;
  }
  .landing-nav a:hover,
  .landing-nav a.active,
  .landing-nav a[aria-current="page"] {
    color: #fff;
  }
  .landing-nav .landing-cta { margin-top: .5rem; width: 100%; color: #0a0a0a; }

  .landing-hero-inner { grid-template-columns: 1fr; }
  .landing-hero-visual { order: -1; min-height: 220px; }
  .landing-hero-art-wrap { width: 100%; border-radius: 18px; }
  .landing-hero-art-chips { gap: 0.35rem; }
  .landing-podium { height: 160px; }
  .landing-hero h1 { max-width: none; }
  .lt-body { grid-template-columns: 1fr; }
  .lt-podium { height: 140px; }

  .landing-trust-grid { grid-template-columns: 1fr 1fr; }
  .section-split,
  .landing-card-grid--3,
  .landing-steps,
  .landing-plan-grid { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .landing-trust-grid { grid-template-columns: 1fr; }
}

/* —— Login (fundo escuro Upya) —— */
body.login-page {
  min-height: 100vh;
  background:
    radial-gradient(ellipse 70% 45% at 0% 0%, rgba(154, 205, 50, 0.14), transparent 50%),
    radial-gradient(ellipse 50% 40% at 100% 100%, rgba(154, 205, 50, 0.06), transparent 45%),
    #050505;
  color: #f5f5f5;
  font-family: var(--l-font);
}
body.login-page .login-wrap {
  animation: login-in .45s ease both;
}
@keyframes login-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}
