:root{
  --bg:#070a08;
  --bg2:#0a1211;
  --card:#0c1615;
  --card2:#0f1d1b;
  --text:#e9f3f2;
  --muted:rgba(233,243,242,.72);
  --muted2:rgba(233,243,242,.58);
  --line:rgba(255,255,255,.08);

  --a:#234745;
  --b:#1B3836;

  --accent:#B8FF2C;
  --danger:#ff4d4d;

  --r12:12px;
  --r16:16px;
  --r20:20px;

  --shadow: 0 20px 60px rgba(0,0,0,.55);
  --shadow2: 0 12px 28px rgba(0,0,0,.35);

  --wrap: 1180px;

  --btnH: 46px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: Manrope, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:
    radial-gradient(900px 500px at 10% -10%, rgba(35,71,69,.35), transparent 60%),
    radial-gradient(900px 500px at 90% 10%, rgba(27,56,54,.35), transparent 55%),
    linear-gradient(180deg, var(--bg), #060807 60%, #050706);
  line-height:1.55;
}

img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
p{margin:0 0 12px}
ul,ol{margin:0 0 12px;padding-left:18px}
h1,h2,h3{margin:0 0 10px;line-height:1.15}
h1{font-size:44px}
h2{font-size:30px}
h3{font-size:18px}
@media (max-width:980px){
  h1{font-size:34px}
  h2{font-size:26px}
}

.wrap{max-width:var(--wrap);margin:0 auto;padding:0 18px}

.skip{
  position:absolute;left:-9999px;top:auto;width:1px;height:1px;overflow:hidden;
}
.skip:focus{
  left:18px;top:12px;width:auto;height:auto;z-index:999;
  padding:10px 12px;border-radius:10px;background:#0f1d1b;border:1px solid var(--line);
}

.muted{color:var(--muted)}
.mini-note{
  margin-top:14px;
  padding:12px 14px;
  border-radius:var(--r16);
  background:linear-gradient(180deg, rgba(35,71,69,.22), rgba(27,56,54,.18));
  border:1px solid rgba(184,255,44,.12);
}

.badge{
  display:inline-flex;align-items:center;gap:10px;
  padding:8px 12px;border-radius:999px;
  border:1px solid rgba(184,255,44,.12);
  background:rgba(12,22,21,.55);
  color:var(--muted);
  backdrop-filter: blur(10px);
}
.badge .dot{
  width:8px;height:8px;border-radius:99px;
  background:var(--accent);
  box-shadow:0 0 0 4px rgba(184,255,44,.14);
}

.btn{
  display:inline-flex;align-items:center;justify-content:center;
  height:var(--btnH);
  padding:0 16px;border-radius:14px;
  border:1px solid transparent;
  font-weight:700;
  letter-spacing:.2px;
  white-space:nowrap;
  transition:transform .15s ease, background .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.btn:active{transform:translateY(1px)}
.btn-primary{
  background:linear-gradient(135deg, rgba(184,255,44,.95), rgba(184,255,44,.75));
  color:#0a120f;
  border-color:rgba(184,255,44,.45);
  box-shadow:0 14px 30px rgba(184,255,44,.16);
}
.btn-primary:hover{box-shadow:0 18px 36px rgba(184,255,44,.22)}
.btn-ghost{
  background:rgba(12,22,21,.45);
  border-color:rgba(255,255,255,.10);
  color:var(--text);
}
.btn-ghost:hover{border-color:rgba(184,255,44,.18);background:rgba(12,22,21,.6)}
.btn-lg{height:56px;padding:0 20px;border-radius:16px}

.site-header{
  position:sticky;top:0;z-index:80;
  background:rgba(7,10,8,.55);
  border-bottom:1px solid rgba(255,255,255,.06);
  backdrop-filter: blur(12px);
}
.header-row{
  display:flex;align-items:center;gap:16px;
  padding:14px 0;
}
.brand{display:flex;align-items:center;gap:12px}
.brand-logo{height:32px;width:auto}
.nav{
  display:flex;gap:16px;align-items:center;
  margin-left:auto;margin-right:10px;
}
.nav a{
  font-weight:600;color:var(--muted);
  padding:8px 10px;border-radius:12px;
  transition:background .15s ease, color .15s ease;
}
.nav a:hover{background:rgba(35,71,69,.22);color:var(--text)}
.header-actions{display:flex;gap:10px;align-items:center}
.icon-btn{
  display:none;
  width:44px;height:44px;border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(12,22,21,.45);
}
.icon-burger{
  display:block;width:18px;height:2px;background:var(--text);
  margin:0 auto;position:relative;border-radius:2px;
}
.icon-burger:before,.icon-burger:after{
  content:"";position:absolute;left:0;right:0;height:2px;background:var(--text);border-radius:2px;
}
.icon-burger:before{top:-6px}
.icon-burger:after{top:6px}

@media (max-width:980px){
  .nav{display:none}
  .icon-btn{display:inline-flex;align-items:center;justify-content:center}
}

.mobile-menu{
  border-top:1px solid rgba(255,255,255,.06);
  background:rgba(7,10,8,.7);
}
.mobile-menu-inner{
  display:grid;gap:8px;
  padding:12px 0 16px;
}
.mobile-menu-inner a{
  padding:12px 12px;border-radius:14px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(12,22,21,.35);
  color:var(--text);
}
.mobile-menu-inner a:hover{border-color:rgba(184,255,44,.18);background:rgba(12,22,21,.55)}
.mobile-menu-inner .btn{width:100%}

.hero{
  position:relative;
  padding:34px 0 24px;
}
.hero-bg{
  position:absolute;inset:0;
  background:
    radial-gradient(900px 380px at 20% 0%, rgba(35,71,69,.25), transparent 60%),
    radial-gradient(900px 380px at 80% 30%, rgba(27,56,54,.22), transparent 60%);
  pointer-events:none;
}
.hero-grid{
  position:relative;
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:18px;
  align-items:start;
}
@media (max-width:980px){
  .hero-grid{grid-template-columns:1fr}
}

.hero-copy{
  padding:18px;
  border-radius:var(--r20);
  background:linear-gradient(180deg, rgba(12,22,21,.55), rgba(12,22,21,.35));
  border:1px solid rgba(255,255,255,.06);
  box-shadow:var(--shadow2);
}
.lead{font-size:18px;color:var(--muted);margin-top:10px}
.hero-cta{display:flex;gap:10px;flex-wrap:wrap;margin-top:14px}
.hero-cta .btn{min-width:180px}
@media (max-width:520px){
  .hero-cta .btn{width:100%}
}

.hero-panel{
  padding:18px;
  border-radius:var(--r20);
  background:linear-gradient(180deg, rgba(35,71,69,.22), rgba(27,56,54,.18));
  border:1px solid rgba(184,255,44,.10);
  box-shadow:var(--shadow2);
}
.panel-top{display:flex;justify-content:space-between;gap:14px;align-items:flex-start}
.panel-title p{color:var(--muted);margin:6px 0 0}
.panel-chip{
  height:30px;display:inline-flex;align-items:center;
  padding:0 10px;border-radius:999px;
  border:1px solid rgba(184,255,44,.16);
  background:rgba(12,22,21,.45);
  color:rgba(184,255,44,.95);
  font-weight:800;
}
.media{
  border-radius:var(--r16);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(12,22,21,.4);
}
.media img{
  width:100%;
  height:auto;
  object-fit:cover;
}

.stats{
  display:grid;grid-template-columns:1fr 1fr;
  gap:10px;
}
.stat{
  padding:12px;border-radius:var(--r16);
  border:1px solid rgba(255,255,255,.08);
  background:rgba(12,22,21,.35);
}
.stat-k{font-weight:900;font-size:18px}
.stat-t{color:var(--muted2);font-size:12px;margin-top:4px}

.panel-card{
  margin-top:14px;
  padding:14px;border-radius:var(--r16);
  border:1px solid rgba(255,255,255,.08);
  background:rgba(12,22,21,.35);
}

.section{padding:26px 0}
.section-alt{
  background:
    radial-gradient(900px 380px at 10% 0%, rgba(35,71,69,.20), transparent 60%),
    radial-gradient(900px 380px at 90% 30%, rgba(27,56,54,.18), transparent 60%);
  border-top:1px solid rgba(255,255,255,.05);
  border-bottom:1px solid rgba(255,255,255,.05);
}
.section-head p{color:var(--muted);max-width:900px}

.split{
  margin-top:16px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}
@media (max-width:980px){
  .split{grid-template-columns:1fr}
}

.content-block{
  padding:16px;
  border-radius:var(--r20);
  border:1px solid rgba(255,255,255,.06);
  background:rgba(12,22,21,.35);
  box-shadow:var(--shadow2);
}
.prose p, .prose li{color:var(--muted)}
.prose strong{color:var(--text)}

.grid-4{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:12px;
  margin-top:16px;
}
@media (max-width:980px){ .grid-4{grid-template-columns:1fr 1fr} }
@media (max-width:520px){ .grid-4{grid-template-columns:1fr} }

.feature{
  padding:14px;border-radius:var(--r20);
  border:1px solid rgba(255,255,255,.06);
  background:linear-gradient(180deg, rgba(12,22,21,.40), rgba(12,22,21,.28));
}
.feature-ic{
  width:44px;height:44px;border-radius:14px;
  display:flex;align-items:center;justify-content:center;
  background:rgba(35,71,69,.30);
  border:1px solid rgba(184,255,44,.10);
  margin-bottom:10px;
  font-size:20px;
}

.table-wrap{
  padding:0;
  border-radius:var(--r20);
  border:1px solid rgba(255,255,255,.06);
  overflow:hidden;
  background:rgba(12,22,21,.35);
  box-shadow:var(--shadow2);
}
.table{
  width:100%;
  border-collapse:collapse;
  font-size:14px;
}
.table th{
  text-align:left;
  padding:14px 14px;
  background:rgba(35,71,69,.30);
  border-bottom:1px solid rgba(255,255,255,.08);
  color:var(--text);
}
.table td{
  padding:12px 14px;
  border-bottom:1px solid rgba(255,255,255,.06);
  color:var(--muted);
  vertical-align:top;
}
.table tr:last-child td{border-bottom:none}

.check{list-style:none;padding-left:0;margin:10px 0 0}
.check li{
  position:relative;
  padding-left:26px;
  margin:10px 0;
  color:var(--muted);
}
.check li:before{
  content:"";
  position:absolute;left:0;top:7px;
  width:16px;height:16px;border-radius:6px;
  background:rgba(184,255,44,.20);
  border:1px solid rgba(184,255,44,.35);
  box-shadow:0 0 0 4px rgba(184,255,44,.06);
}

.callout{
  margin-top:14px;
  padding:16px;
  border-radius:var(--r20);
  border:1px solid rgba(184,255,44,.12);
  background:
    radial-gradient(600px 260px at 10% 0%, rgba(184,255,44,.10), transparent 70%),
    linear-gradient(180deg, rgba(35,71,69,.22), rgba(27,56,54,.16));
  box-shadow:var(--shadow2);
}
.callout-left p{margin:6px 0 0}

.grid-3{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
}
@media (max-width:980px){ .grid-3{grid-template-columns:1fr} }

.card{
  padding:16px;border-radius:var(--r20);
  border:1px solid rgba(255,255,255,.06);
  background:rgba(12,22,21,.35);
  box-shadow:var(--shadow2);
}

.info-card{
  padding:16px;border-radius:var(--r20);
  border:1px solid rgba(255,255,255,.06);
  background:rgba(12,22,21,.35);
}

.review{
  padding:16px;border-radius:var(--r20);
  border:1px solid rgba(255,255,255,.06);
  background:linear-gradient(180deg, rgba(12,22,21,.42), rgba(12,22,21,.28));
  box-shadow:var(--shadow2);
}
.stars{color:var(--accent);letter-spacing:1px;margin-bottom:8px}
.who{color:var(--muted2);margin-top:10px}

.accordion{display:grid;gap:10px}
.acc-item{
  border-radius:var(--r20);
  border:1px solid rgba(255,255,255,.06);
  background:rgba(12,22,21,.35);
  overflow:hidden;
}
.acc-item summary{
  cursor:pointer;
  padding:14px 16px;
  color:var(--text);
  font-weight:700;
  list-style:none;
}
.acc-item summary::-webkit-details-marker{display:none}
.acc-body{padding:0 16px 14px;color:var(--muted)}
.acc-item[open] summary{background:rgba(35,71,69,.22)}

.cta{
  padding:30px 0;
  border-top:1px solid rgba(255,255,255,.05);
  background:
    radial-gradient(900px 380px at 50% 0%, rgba(184,255,44,.10), transparent 60%),
    linear-gradient(180deg, rgba(12,22,21,.45), rgba(7,10,8,.0));
}
.cta-inner{
  display:flex;align-items:center;justify-content:space-between;gap:16px;
  padding:18px;border-radius:var(--r20);
  border:1px solid rgba(184,255,44,.12);
  background:linear-gradient(180deg, rgba(35,71,69,.22), rgba(27,56,54,.16));
}
@media (max-width:980px){
  .cta-inner{flex-direction:column;align-items:stretch}
}
.cta-actions{display:flex;gap:10px;flex-wrap:wrap}
@media (max-width:520px){
  .cta-actions .btn{width:100%}
}

.footer{
  padding:22px 0 10px;
  border-top:1px solid rgba(255,255,255,.06);
}
.footer-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:14px;
  padding-bottom:14px;
}
@media (max-width:980px){ .footer-grid{grid-template-columns:1fr} }
.footer-links{display:flex;gap:12px;flex-wrap:wrap;align-items:flex-start}
.footer-links a{color:var(--muted);padding:6px 10px;border-radius:12px;border:1px solid transparent}
.footer-links a:hover{border-color:rgba(184,255,44,.14);background:rgba(12,22,21,.35);color:var(--text)}
.footer-bottom{
  display:flex;justify-content:space-between;align-items:center;
  padding:10px 0;
  border-top:1px solid rgba(255,255,255,.05);
}
.to-top{
  width:40px;height:40px;border-radius:14px;
  display:flex;align-items:center;justify-content:center;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(12,22,21,.35);
}

/* Catfish banner */
#catfishBanner{
  left:14px;right:14px;bottom:14px;
  z-index:90;
  margin:0 auto;
  max-width:980px;
  border-radius:18px;
  border:1px solid rgba(184,255,44,.16);
  background:
    radial-gradient(600px 200px at 10% 0%, rgba(184,255,44,.12), transparent 70%),
    linear-gradient(180deg, rgba(12,22,21,.78), rgba(12,22,21,.62));
  box-shadow:var(--shadow);
}
@media (max-width:520px){
  #catfishBanner{left:10px;right:10px;bottom:10px}
}
#catfishBanner .toast-body{width:100%}
.toast{
  display:flex;gap:12px;align-items:flex-start;
  padding:14px;
}
.toast-ava{
  width:44px;height:44px;border-radius:16px;
  background:
    radial-gradient(18px 18px at 30% 30%, rgba(184,255,44,.55), transparent 70%),
    linear-gradient(180deg, rgba(35,71,69,.55), rgba(27,56,54,.55));
  border:1px solid rgba(184,255,44,.14);
  flex:0 0 auto;
}
.toast-body{min-width:0}
.toast-top{
  display:flex;align-items:center;gap:10px;
  font-weight:800;
}
.toast-name{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.toast-time{margin-left:auto;color:rgba(184,255,44,.9);font-weight:900;font-size:12px}
.toast-msg{color:var(--muted);margin-top:6px}
.toast-close{
  margin-left:6px;
  width:34px;height:34px;border-radius:12px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(0,0,0,.15);
  color:var(--text);
  cursor:pointer;
}

/* Exit modal */
.modal{
  position:fixed;inset:0;
  display:none;
  z-index:120;
}
.modal.is-open{display:block}
.modal-backdrop{
  position:absolute;inset:0;
  background:rgba(0,0,0,.62);
  backdrop-filter: blur(6px);
}
.modal-card{
  position:relative;
  width:min(980px, calc(100% - 24px));
  margin:60px auto 0;
  border-radius:22px;
  border:1px solid rgba(184,255,44,.16);
  background:
    radial-gradient(900px 260px at 0% 0%, rgba(184,255,44,.10), transparent 60%),
    linear-gradient(180deg, rgba(12,22,21,.92), rgba(12,22,21,.82));
  box-shadow:var(--shadow);
  padding:16px;
}
@media (max-width:520px){
  .modal-card{margin:16px auto 0}
}
.modal-head{
  display:flex;justify-content:space-between;gap:12px;align-items:flex-start;
}
.tag{
  display:inline-flex;
  padding:6px 10px;border-radius:999px;
  border:1px solid rgba(184,255,44,.18);
  background:rgba(35,71,69,.25);
  color:rgba(184,255,44,.95);
  font-weight:900;
  font-size:12px;
}
.modal-close{
  width:42px;height:42px;border-radius:16px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(0,0,0,.18);
  color:var(--text);
  cursor:pointer;
  font-size:22px;
  line-height:1;
}
.modal-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:14px;
  margin-top:14px;
}
@media (max-width:980px){
  .modal-grid{grid-template-columns:1fr}
}
.modal-perks{
  margin:0;padding-left:18px;color:var(--muted);
}
.modal-actions{
  display:flex;gap:10px;flex-wrap:wrap;margin-top:12px;
}
@media (max-width:520px){
  .modal-actions .btn{width:100%}
}

/* Ensure picture fallback works */
picture, source{display:block}

.slotok-hero{
  margin-top:16px;
  border-radius:22px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(12,22,21,.35);
  box-shadow: 0 12px 28px rgba(0,0,0,.35);
}

.slotok-media{
  display:block;
  width:100%;
  aspect-ratio: 16 / 7;
  background:rgba(0,0,0,.18);
}
@media (max-width:980px){
  .slotok-media{aspect-ratio: 4 / 5;}
}
.slotok-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.slotok-cta{
  display:flex;
  gap:10px;
  padding:14px;
  justify-content:center;
  flex-wrap:wrap;
  border-top:1px solid rgba(255,255,255,.06);
  background:linear-gradient(180deg, rgba(35,71,69,.18), rgba(27,56,54,.12));
}
.slotok-cta .btn{min-width:220px}
@media (max-width:520px){
  .slotok-cta{padding:12px}
  .slotok-cta .btn{width:100%}
}


.split-center{ grid-template-columns: 1fr; }
.split-center > .content-block{   padding:16px;
  border-radius:var(--r20);
  border:1px solid rgba(255,255,255,.06);
  background:rgba(12,22,21,.35);
  box-shadow:var(--shadow2);
} }
.lemonhub-section{
  padding: 2.5rem 0;
  background:
    radial-gradient(700px 280px at 85% 5%, rgba(184,255,44,.06), transparent 65%),
    radial-gradient(800px 320px at 12% 90%, rgba(35,71,69,.18), transparent 60%),
    linear-gradient(180deg, rgba(10,18,17,.55), rgba(7,10,8,.35));
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
  color: #e9f3f2;
  font-family: Manrope, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.6;
}

.lemonhub-wrap{
  max-width: 70rem;
  margin: 0 auto;
  padding: 0 1.125rem;
}

.lemonhub-head{
  text-align: left;
  margin-bottom: 1.75rem;
  padding: 1.25rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(184,255,44,.12);
  background: linear-gradient(160deg, rgba(35,71,69,.22), rgba(12,22,21,.48) 75%);
  position: relative;
  overflow: hidden;
}

.lemonhub-head::before{
  content: "";
  position: absolute;
  top: -40%;
  right: -10%;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,255,44,.10), transparent 60%);
  pointer-events: none;
}

.lemonhub-eyebrow{
  display: inline-block;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #B8FF2C;
  background: rgba(184,255,44,.08);
  border: 1px solid rgba(184,255,44,.22);
  margin-bottom: 0.75rem;
}

.lemonhub-section h2{
  font-size: 1.65rem;
  font-weight: 800;
  margin: 0 0 0.65rem;
  color: #f3fbfa;
  letter-spacing: -0.01em;
  position: relative;
}

.lemonhub-intro{
  margin: 0;
  color: rgba(233,243,242,.78);
  font-size: 1rem;
  max-width: 56rem;
  position: relative;
}

.lemonhub-block{
  margin-top: 1.25rem;
  padding: 1.35rem 1.25rem;
  border-radius: 1.1rem;
  border: 1px solid rgba(255,255,255,.07);
  background: linear-gradient(180deg, rgba(15,29,27,.52), rgba(12,22,21,.32));
  box-shadow: 0 10px 24px rgba(0,0,0,.28);
  position: relative;
}

.lemonhub-block--lead{
  border-left: 3px solid rgba(184,255,44,.45);
}

.lemonhub-block--final{
  background:
    radial-gradient(500px 200px at 100% 0%, rgba(184,255,44,.08), transparent 70%),
    linear-gradient(180deg, rgba(15,29,27,.6), rgba(12,22,21,.38));
  border-color: rgba(184,255,44,.14);
}

.lemonhub-block h3{
  font-size: 1.2rem;
  font-weight: 800;
  margin: 0 0 0.75rem;
  color: #f3fbfa;
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  letter-spacing: -0.005em;
}

.lemonhub-block h3::before{
  content: "";
  display: inline-block;
  width: 0.4rem;
  height: 1.1rem;
  margin-top: 0.25rem;
  border-radius: 2px;
  background: linear-gradient(180deg, #B8FF2C, rgba(184,255,44,.4));
  flex-shrink: 0;
}

.lemonhub-block h4{
  font-size: 1rem;
  font-weight: 700;
  margin: 1.1rem 0 0.55rem;
  color: #f3fbfa;
}

.lemonhub-block p{
  margin: 0 0 0.75rem;
  color: rgba(233,243,242,.78);
  font-size: 0.97rem;
}

.lemonhub-block p:last-child{
  margin-bottom: 0;
}

.lemonhub-block strong{
  color: #f3fbfa;
  font-weight: 700;
}

.lemonhub-block em{
  color: rgba(184,255,44,.88);
  font-style: normal;
  font-weight: 600;
}

.lemonhub-tablewrap{
  margin: 0.85rem 0 0.5rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(255,255,255,.07);
  overflow: hidden;
  background: rgba(7,10,8,.45);
  -webkit-overflow-scrolling: touch;
}

.lemonhub-table{
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  min-width: 30rem;
}

@media (max-width: 600px){
  .lemonhub-tablewrap{
    overflow-x: auto;
  }
}

.lemonhub-table thead th{
  padding: 0.85rem 0.85rem;
  text-align: left;
  font-weight: 700;
  color: #f3fbfa;
  background: linear-gradient(180deg, rgba(35,71,69,.55), rgba(27,56,54,.38));
  border-bottom: 1px solid rgba(184,255,44,.18);
  font-size: 0.83rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.lemonhub-table tbody td{
  padding: 0.75rem 0.85rem;
  border-bottom: 1px solid rgba(255,255,255,.05);
  color: rgba(233,243,242,.76);
  vertical-align: top;
}

.lemonhub-table tbody tr:nth-child(even) td{
  background: rgba(35,71,69,.08);
}

.lemonhub-table tbody tr:last-child td{
  border-bottom: none;
}

.lemonhub-table tbody tr:hover td{
  background: rgba(184,255,44,.04);
}

.lemonhub-checklist{
  list-style: none;
  padding: 0;
  margin: 0.85rem 0 0.5rem;
  display: grid;
  gap: 0.55rem;
}

.lemonhub-checklist li{
  position: relative;
  padding: 0.65rem 0.85rem 0.65rem 2.4rem;
  border-radius: 0.65rem;
  background: rgba(15,29,27,.55);
  border: 1px solid rgba(255,255,255,.05);
  color: rgba(233,243,242,.82);
  font-size: 0.94rem;
}

.lemonhub-checklist li::before{
  content: "";
  position: absolute;
  left: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.05rem;
  height: 1.05rem;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(184,255,44,.95), rgba(184,255,44,.4));
  box-shadow: 0 0 0 3px rgba(184,255,44,.08);
}

.lemonhub-rank{
  list-style: none;
  counter-reset: rank;
  padding: 0;
  margin: 0.85rem 0 0.5rem;
  display: grid;
  gap: 0.55rem;
}

.lemonhub-rank li{
  counter-increment: rank;
  position: relative;
  padding: 0.85rem 0.95rem 0.85rem 3.3rem;
  border-radius: 0.7rem;
  background: linear-gradient(180deg, rgba(35,71,69,.18), rgba(15,29,27,.55));
  border: 1px solid rgba(255,255,255,.06);
  color: rgba(233,243,242,.82);
  font-size: 0.95rem;
}

.lemonhub-rank li::before{
  content: counter(rank);
  position: absolute;
  left: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  color: #0a120f;
  background: linear-gradient(135deg, #B8FF2C, rgba(184,255,44,.7));
  box-shadow: 0 4px 10px rgba(184,255,44,.18);
}

.lemonhub-steps{
  list-style: none;
  counter-reset: stepc;
  padding: 0;
  margin: 0.85rem 0 0.5rem;
  display: grid;
  gap: 0.7rem;
}

.lemonhub-steps li{
  counter-increment: stepc;
  position: relative;
  padding: 0.95rem 1rem 0.95rem 3.3rem;
  border-radius: 0.85rem;
  background: rgba(12,22,21,.5);
  border: 1px solid rgba(255,255,255,.06);
  color: rgba(233,243,242,.82);
  font-size: 0.95rem;
}

.lemonhub-steps li::before{
  content: counter(stepc);
  position: absolute;
  left: 0.9rem;
  top: 0.95rem;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  color: #B8FF2C;
  background: rgba(184,255,44,.10);
  border: 1px solid rgba(184,255,44,.32);
}

.lemonhub-callout{
  margin: 0.85rem 0;
  padding: 1rem 1.1rem;
  border-radius: 0.85rem;
  background:
    radial-gradient(400px 160px at 0% 0%, rgba(184,255,44,.08), transparent 65%),
    linear-gradient(180deg, rgba(35,71,69,.30), rgba(27,56,54,.18));
  border: 1px solid rgba(184,255,44,.18);
  position: relative;
}

.lemonhub-callout h4{
  margin: 0 0 0.45rem;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #B8FF2C;
}

.lemonhub-callout p{
  margin: 0;
  color: rgba(233,243,242,.85);
  font-size: 0.95rem;
}

.lemonhub-note{
  margin-top: 1.1rem;
  padding: 0.95rem 1.05rem;
  border-radius: 0.8rem;
  background: rgba(7,10,8,.55);
  border-left: 3px solid rgba(184,255,44,.5);
  border-top: 1px solid rgba(255,255,255,.04);
  border-right: 1px solid rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.04);
}

.lemonhub-note p{
  margin: 0;
  font-size: 0.88rem;
  color: rgba(233,243,242,.74);
}

.lemonhub-note strong{
  color: #B8FF2C;
  font-weight: 800;
  letter-spacing: 0.02em;
}

@media (min-width: 48rem){
  .lemonhub-section{
    padding: 3.25rem 0;
  }
  .lemonhub-head{
    padding: 1.75rem 1.85rem;
  }
  .lemonhub-section h2{
    font-size: 2rem;
  }
  .lemonhub-intro{
    font-size: 1.05rem;
  }
  .lemonhub-block{
    padding: 1.65rem 1.6rem;
  }
  .lemonhub-block h3{
    font-size: 1.3rem;
  }
  .lemonhub-checklist{
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 64rem){
  .lemonhub-wrap{
    padding: 0 1.5rem;
  }
  .lemonhub-section h2{
    font-size: 2.25rem;
  }
  .lemonhub-block{
    padding: 1.85rem 1.85rem;
  }
}