/* Black + red/yellow theme (logo-matched), minimal + sleek */
.rl-landing{
  --bg:#070707;
  --panel: rgba(255,255,255,.06);
  --line: rgba(255,255,255,.10);
  --text:#f7f7f7;
  --muted: rgba(247,247,247,.72);

  --red:#ff2a2a;
  --yellow:#ffd100;

  min-height: 100vh;
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  background:
    radial-gradient(850px 520px at 18% 12%, rgba(255,42,42,.20), transparent 60%),
    radial-gradient(850px 520px at 82% 20%, rgba(255,209,0,.16), transparent 60%),
    linear-gradient(180deg, #050505, #0a0a0a 55%, #050505);
}

.rl-landing *{ box-sizing:border-box; }
.rl-landing a{ color:inherit; text-decoration:none; }

.rl-topbar{
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px 16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
}

.rl-brand{
  display:flex;
  align-items:center;
  gap: 12px;
  min-width: 0;
}

.rl-logo{
  width: 46px;
  height: 46px;
  border-radius: 16px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 18px 45px rgba(0,0,0,.55);
}

.rl-brandtext{ min-width: 0; }
.rl-title{
  font-weight: 950;
  letter-spacing: .2px;
  font-size: 16px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 60vw;
}
.rl-subtitle{
  margin-top: 2px;
  font-size: 12px;
  color: var(--muted);
}

.rl-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 10px 14px;
  border-radius: 14px;
  font-weight: 950;
  letter-spacing: .2px;
  color: #120f0a;
  background: linear-gradient(90deg, var(--red), var(--yellow));
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 20px 50px rgba(0,0,0,.55);
  transition: transform .12s ease, filter .12s ease;
}
.rl-cta:hover{ transform: translateY(-1px); filter: brightness(1.05); }

.rl-hero{
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 16px 10px;
}

.rl-heroCard{
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
  border-radius: 22px;
  padding: 30px 24px;
  box-shadow: 0 28px 80px rgba(0,0,0,.65);
  position: relative;
  overflow: hidden;
}

.rl-heroCard:before{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(720px 260px at 22% 0%, rgba(255,42,42,.22), transparent 60%),
    radial-gradient(720px 260px at 86% 10%, rgba(255,209,0,.16), transparent 60%);
  pointer-events:none;
}
.rl-heroCard > *{ position:relative; }

.rl-badge{
  display:inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.35);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,209,0,.9);
}

.rl-heroCard h1{
  margin: 14px 0 10px;
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.02;
  letter-spacing: -.02em;
}

.rl-lead{
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 64ch;
}

.rl-bullets{
  list-style:none;
  padding:0;
  margin: 0 0 18px;
  display:grid;
  gap: 10px;
  max-width: 64ch;
}

.rl-bullets li{
  display:flex;
  align-items:center;
  gap: 10px;
  color: rgba(247,247,247,.88);
}

.rl-bullets .dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--yellow);
  box-shadow: 0 0 22px rgba(255,209,0,.35);
  flex: 0 0 auto;
}

.rl-actions{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items:center;
}

.rl-ctaBig{
  padding: 12px 18px;
  border-radius: 16px;
}

.rl-ghost{
  color: var(--muted);
  font-weight: 900;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.25);
  transition: border-color .12s ease, color .12s ease;
}
.rl-ghost:hover{
  color: var(--text);
  border-color: rgba(255,255,255,.22);
}

.rl-footer{
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px 16px 34px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 12px;
  color: var(--muted);
  font-size: 12px;
}
.rl-footer .sep{ margin: 0 6px; }
.rl-footLink{
  color: var(--muted);
  border-bottom: 1px dashed rgba(255,255,255,.18);
}
.rl-footLink:hover{ color: var(--text); }
