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

*{box-sizing:border-box}
html,body{min-height:100%}
body{
    margin:0;
    background:#111214;
    color:#f4f4f5;
    font-family:Inter,Arial,sans-serif;
    font-size:14px;
    letter-spacing:-.01em;
}
a{color:inherit;text-decoration:none}
button,input,select,textarea{font-family:inherit}
button{cursor:pointer}
::selection{background:#2563eb;color:#fff}

.top{
    width:min(1120px,calc(100% - 36px));
    height:72px;
    margin:20px auto 0;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:0 28px;
    background:rgba(26,27,29,.92);
    border:1px solid #24262b;
    border-radius:22px;
    box-shadow:0 20px 70px rgba(0,0,0,.38);
    position:relative;
    z-index:5;
}
.logo{
    display:flex;
    gap:10px;
    align-items:center;
    font-weight:800;
    font-size:20px;
    color:#fff;
    letter-spacing:-.04em;
}
.mark{
    width:24px;height:24px;background:#fff;
    clip-path:polygon(0 0,70% 0,100% 50%,70% 100%,0 100%);
}
.nav{display:flex;gap:24px;align-items:center;color:#c7c7cc;font-weight:700;font-size:13px}
.nav a:hover{color:#fff}

.btn{
    background:#fff;
    color:#050505;
    border:0;
    border-radius:10px;
    padding:11px 16px;
    font-weight:800;
    font-size:13px;
    cursor:pointer;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    transition:.16s ease;
}
.btn:hover{transform:translateY(-1px);box-shadow:0 12px 24px rgba(255,255,255,.08)}
.btn.primary{background:#2563eb;color:#fff}
.btn.primary:hover{background:#1d4ed8}
.btn.dark{background:#17181b;color:#fff;border:1px solid #2b2d33}
.btn.dark:hover{background:#1f2937;border-color:#2563eb}
.btn.red{background:#7f1d1d;color:#fff;border:1px solid #ef4444}
.btn.yellow{background:#713f12;color:#fff;border:1px solid #f59e0b}
.btn.small{padding:7px 10px;font-size:12px;border-radius:8px}
.btn:disabled{opacity:.65;cursor:not-allowed;transform:none;box-shadow:none}

.hero{
    min-height:720px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:80px 24px 70px;
    background:
      radial-gradient(circle at 50% 25%, rgba(37,99,235,.20), transparent 38%),
      linear-gradient(180deg,#121315 0%,#0e0f11 58%,#111214 100%);
}
.pill{
    display:inline-flex;
    align-items:center;
    border:1px solid #2a2d35;
    border-radius:999px;
    padding:10px 18px;
    color:#9ca3af;
    margin-bottom:34px;
    background:#17181b;
    font-size:13px;
    font-weight:700;
}
.hero-title{
    font-size:58px;
    line-height:1.05;
    margin:0 0 24px;
    font-weight:900;
    letter-spacing:-3px;
}
.hero p{
    font-size:20px;
    line-height:1.65;
    color:#a1a1aa;
    max-width:820px;
    margin:0 auto 42px;
}
.actions{display:flex;flex-direction:column;gap:14px;max-width:620px;margin:auto}

.auth-bg{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:38px 18px;
    background:
      radial-gradient(circle at 50% 0%, rgba(37,99,235,.16), transparent 38%),
      #111214;
}
.auth-card{
    width:100%;
    max-width:560px;
    border:1px solid #2a2c31;
    border-radius:18px;
    background:#18191c;
    padding:44px 38px;
    box-shadow:0 30px 80px rgba(0,0,0,.45);
}
.back{
    color:#858b96;
    text-transform:uppercase;
    font-weight:800;
    letter-spacing:3px;
    text-align:center;
    margin-bottom:34px;
    font-size:12px;
}
.back a:hover{color:#fff}
.auth-title{
    text-align:center;
    font-size:44px;
    font-weight:900;
    letter-spacing:-2.5px;
    line-height:1.05;
    margin:0 0 12px;
}
.auth-sub{text-align:center;color:#9ca3af;font-size:18px;margin-bottom:34px}
label{
    display:block;
    color:#8e96a3;
    font-weight:800;
    letter-spacing:2px;
    text-transform:uppercase;
    margin:14px 0 8px;
    font-size:11px;
}
.input,textarea,select{
    width:100%;
    background:#101113;
    border:1px solid #2b2d33;
    border-radius:9px;
    padding:13px 14px;
    color:#fff;
    font-size:14px;
    outline:none;
}
.input:focus,textarea:focus,select:focus{
    border-color:#2563eb;
    box-shadow:0 0 0 3px rgba(37,99,235,.18);
}
.alert{padding:13px 14px;border-radius:10px;margin-bottom:18px;font-size:13px;font-weight:700}
.err{background:#2b1111;border:1px solid #6b2222;color:#ffb4b4}
.ok{background:#102515;border:1px solid #1f7a37;color:#baffc8}
.auth-foot{text-align:center;color:#8d939e;margin-top:26px;font-size:15px}

.layout{display:flex;min-height:100vh;background:#111214}
.sidebar{
    width:230px;
    background:#18191c;
    border-right:1px solid #24262b;
    padding:22px 0 0;
    position:fixed;
    top:0;
    bottom:0;
    left:0;
    overflow:auto;
}
.sidebar .logo{
    padding:0 20px 18px;
    font-size:19px;
    border-bottom:1px solid #24262b;
}
.rolebox{
    margin:16px 18px;
    padding:10px;
    border:1px solid #2b2d33;
    border-radius:10px;
    color:#d1d5db;
    text-align:center;
    font-weight:800;
    font-size:13px;
}
.menu a{
    display:flex;
    align-items:center;
    padding:12px 20px;
    color:#c6c9d0;
    border-left:3px solid transparent;
    font-weight:700;
    font-size:13px;
    transition:.14s ease;
}
.menu a.active,.menu a:hover{
    background:#2563eb;
    color:#fff;
    border-left-color:#7dd3fc;
}
.main{
    margin-left:230px;
    flex:1;
    min-height:100vh;
    padding:28px 34px 72px;
    background:#111214;
}
.topbar{display:flex;justify-content:flex-end;margin-bottom:22px}
.appselect{display:flex;gap:10px;align-items:center}
.appselect label{margin:0;font-size:10px;color:#8b93a1}
.appselect select{width:260px;background:#18191c}

.head{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:24px;
    gap:16px;
}
.head h1{
    font-size:28px;
    margin:0;
    font-weight:900;
    letter-spacing:-1.3px;
}
.muted{color:#9ca3af}
.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
    gap:14px;
    margin-bottom:24px;
}
.card,.panel{
    background:#18191c;
    border:1px solid #282a2f;
    border-radius:14px;
    padding:20px;
    margin-bottom:20px;
}
.card h3{
    margin:0;
    color:#8b93a1;
    font-size:11px;
    text-transform:uppercase;
    letter-spacing:.08em;
}
.num{
    font-size:30px;
    font-weight:900;
    margin-top:9px;
    letter-spacing:-1px;
}
.panel h2{
    margin:0 0 15px;
    font-size:18px;
    letter-spacing:-.5px;
}
.table-wrap{overflow-x:auto}
.table{
    width:100%;
    border-collapse:collapse;
    min-width:820px;
}
.table th,.table td{
    padding:13px;
    border-bottom:1px solid #292b31;
    text-align:left;
    color:#cbd0d8;
    vertical-align:middle;
    font-size:13px;
}
.table th{
    color:#858d99;
    text-transform:uppercase;
    font-size:11px;
    letter-spacing:.07em;
}
.codebox{display:flex;gap:8px;align-items:center;max-width:440px}
.codebox code{
    display:block;
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
    background:#101113;
    border:1px solid #2b2d33;
    border-radius:8px;
    padding:8px 10px;
    max-width:320px;
    font-size:12px;
}
.modal{max-width:620px}
.badge{display:inline-block;padding:5px 9px;border-radius:999px;font-size:11px;font-weight:800}
.badge.ok{background:#052e16;color:#86efac;border:1px solid #166534}
.badge.bad{background:#450a0a;color:#fecaca;border:1px solid #991b1b}
.badge.warn{background:#451a03;color:#fed7aa;border:1px solid #9a3412}
.actions-row{display:flex;gap:7px;flex-wrap:wrap}
.copy-msg{
    position:fixed;
    bottom:18px;
    right:18px;
    background:#fff;
    color:#000;
    padding:12px 16px;
    border-radius:8px;
    font-weight:900;
    display:none;
    z-index:99;
}
pre{
    white-space:pre-wrap;
    background:#101113;
    border:1px solid #2b2d33;
    padding:18px;
    border-radius:10px;
    color:#ddd;
    overflow:auto;
}
.grid2{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:14px}
.check{
    display:flex;
    gap:10px;
    align-items:center;
    background:#101113;
    border:1px solid #2b2d33;
    border-radius:9px;
    padding:11px 12px;
    color:#fff;
    text-transform:none;
    letter-spacing:0;
    font-size:13px;
}
.check input{width:18px;height:18px}
.masked{letter-spacing:2px;color:#cfcfcf}
.help{font-size:12px;color:#8c95a3;margin-top:6px;line-height:1.45}
.footer{
    position:fixed;
    left:230px;
    right:0;
    bottom:0;
    height:48px;
    background:#18191c;
    border-top:1px solid #24262b;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#727a86;
    font-size:12px;
    z-index:4;
}
.pricing-hero{
    padding:36px 0 10px;
    text-align:center;
}
.pricing-hero h1{
    font-size:44px;
    line-height:1.05;
    margin:0;
    letter-spacing:-2.4px;
    font-weight:900;
}
.pricing-hero p{
    margin:14px auto 0;
    max-width:640px;
    color:#9ca3af;
    line-height:1.6;
    font-size:16px;
}
.pricing-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
    margin-top:28px;
}
.price-card{
    background:#18191c;
    border:1px solid #2a2c31;
    border-radius:20px;
    padding:30px 26px;
    min-height:280px;
    position:relative;
    box-shadow:0 24px 70px rgba(0,0,0,.22);
}
.price-card.popular{border-color:#2563eb;background:linear-gradient(180deg,rgba(37,99,235,.22),#18191c 55%)}
.price-card h2{font-size:22px;margin:0 0 10px;font-weight:900}
.price-card .desc{color:#9ca3af;line-height:1.45;margin-bottom:22px}
.price-card .price{font-size:40px;font-weight:900;letter-spacing:-2px;margin:8px 0}
.price-card .per{color:#9ca3af;font-size:13px}
.popular-badge{
    position:absolute;
    top:-16px;
    left:50%;
    transform:translateX(-50%);
    background:#2563eb;
    color:#fff;
    border-radius:999px;
    padding:8px 22px;
    font-size:12px;
    font-weight:900;
}
.purchase-wrap{
    min-height:calc(100vh - 48px);
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:44px;
    align-items:center;
    padding:70px 7vw;
    background:#111214;
}
.purchase-left h1{
    font-size:46px;
    letter-spacing:-2.5px;
    line-height:1.05;
    margin:0 0 24px;
    font-weight:900;
}
.purchase-left p{font-size:18px;line-height:1.7;color:#9ca3af;max-width:560px}
.purchase-card{
    background:#18191c;
    border:1px solid #2a2c31;
    border-radius:22px;
    padding:32px;
    box-shadow:0 24px 80px rgba(0,0,0,.28);
}
.purchase-card .btn{width:100%;margin-top:14px}
.warning{
    background:#331c1f;
    border:1px solid #7f1d1d;
    color:#fecaca;
    border-radius:14px;
    padding:18px;
    margin-top:28px;
    line-height:1.55;
    font-size:13px;
}
hr.sep{border:0;border-top:1px solid #2a2c31;margin:28px 0}
@media(max-width:850px){
    .purchase-wrap{grid-template-columns:1fr;padding:38px 20px}
    .purchase-left h1{font-size:34px}
}
@media(max-width:760px){
    .top{width:calc(100% - 20px);padding:0 16px}
    .hero-title{font-size:42px;letter-spacing:-2px}
    .hero p{font-size:17px}
    .sidebar{position:relative;width:100%;height:auto}
    .layout{display:block}
    .main{margin-left:0;padding:22px 18px 70px}
    .footer{left:0}
    .head{align-items:flex-start;flex-direction:column}
    .appselect{width:100%;flex-direction:column;align-items:stretch}
    .appselect select{width:100%}
}


/* ===========================
   CruuzAuth v21 Premium UI
   Visual-only upgrade
   =========================== */
:root{
  --bg:#0b0d10;
  --bg2:#0f1117;
  --panel:#17191f;
  --panel2:#1b1e26;
  --border:#2a2f3a;
  --text:#f5f7fb;
  --muted:#8f9bad;
  --blue:#2563eb;
  --blue2:#3b82f6;
  --cyan:#38bdf8;
  --green:#22c55e;
  --red:#ef4444;
  --yellow:#f59e0b;
  --shadow:0 20px 60px rgba(0,0,0,.36);
}
body{
  background:
    radial-gradient(circle at 28% -10%, rgba(37,99,235,.16), transparent 34%),
    radial-gradient(circle at 85% 12%, rgba(56,189,248,.06), transparent 30%),
    var(--bg);
  color:var(--text);
  font-size:13px;
}
.layout{background:transparent}
.sidebar{
  width:238px;
  background:rgba(18,20,26,.88);
  backdrop-filter:blur(18px);
  border-right:1px solid rgba(255,255,255,.07);
  box-shadow:12px 0 40px rgba(0,0,0,.22);
}
.sidebar .logo{
  height:58px;
  padding:0 18px;
  font-size:18px;
  letter-spacing:-.03em;
  justify-content:flex-start;
}
.mark{width:25px;height:25px;background:linear-gradient(135deg,#fff,#dbeafe)}
.rolebox{
  background:#10131a;
  border-color:#293140;
  color:#e5e7eb;
  border-radius:12px;
  padding:11px 12px;
}
.menu{padding:4px 10px 14px}
.menu a{
  border-left:0;
  border-radius:10px;
  padding:11px 12px;
  margin:3px 0;
  gap:10px;
  font-weight:800;
  color:#bec7d5;
}
.menu a .nav-ico{
  width:21px;
  text-align:center;
  opacity:.85;
  filter:saturate(.9);
}
.menu a.active{
  background:linear-gradient(135deg,var(--blue),#1d4ed8);
  color:#fff;
  box-shadow:0 10px 24px rgba(37,99,235,.24);
}
.menu a:hover{
  background:#202633;
  color:#fff;
  transform:translateX(2px);
}
.menu a.active:hover{background:linear-gradient(135deg,var(--blue),#1d4ed8)}
.main{
  margin-left:238px;
  background:transparent;
  padding:25px 30px 76px;
}
.topbar{
  position:sticky;
  top:0;
  z-index:6;
  margin:-25px -30px 24px;
  padding:18px 30px;
  background:linear-gradient(180deg,rgba(11,13,16,.94),rgba(11,13,16,.72));
  backdrop-filter:blur(16px);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.appselect label{letter-spacing:.24em;color:#93a4bd}
.appselect select{
  height:44px;
  border-radius:12px;
  background:#12151c;
  border-color:#2b3342;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.03);
}
.head h1{
  font-size:26px;
  letter-spacing:-1px;
}
.head .muted{font-size:13px}
.btn{
  border-radius:10px;
  min-height:34px;
  box-shadow:none;
}
.btn:hover{transform:translateY(-1px)}
.btn.primary,.btn:not(.dark):not(.red):not(.yellow){
  background:linear-gradient(135deg,#fff,#eef4ff);
}
.btn.dark{
  background:#151922;
  border-color:#2a3343;
}
.btn.dark:hover{
  background:#1e2634;
  border-color:#3b82f6;
}
.btn.red{background:#991b1b;border-color:#ef4444}
.btn.yellow{background:#8a520d;border-color:#f59e0b}
.btn.loading{opacity:.65;cursor:wait}
.cards{grid-template-columns:repeat(auto-fit,minmax(190px,1fr));gap:14px}
.card,.panel,.doc-card,.price-card,.purchase-card{
  background:linear-gradient(180deg,rgba(27,30,38,.96),rgba(18,20,26,.96));
  border:1px solid rgba(255,255,255,.075);
  border-radius:16px;
  box-shadow:var(--shadow);
}
.card{
  padding:18px;
  position:relative;
  overflow:hidden;
}
.card:before{
  content:'';
  position:absolute;
  inset:auto -30px -55px auto;
  width:120px;height:120px;
  background:radial-gradient(circle,rgba(37,99,235,.18),transparent 62%);
}
.card h3,.table th{
  color:#91a4bd;
  letter-spacing:.12em;
}
.num{
  font-size:28px;
  line-height:1;
}
.stat-icon{
  width:34px;height:34px;
  border-radius:11px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:#101827;
  border:1px solid #263247;
  color:#93c5fd;
  margin-bottom:12px;
}
.stat-row{display:flex;justify-content:space-between;gap:12px;align-items:center}
.mini-chart{height:26px;display:flex;align-items:flex-end;gap:4px;margin-top:12px}
.mini-chart span{display:block;width:12px;border-radius:999px;background:linear-gradient(180deg,#3b82f6,#1d4ed8);opacity:.75}
.table-toolbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  margin:0 0 14px;
}
.searchbox{
  flex:1;
  display:flex;
  align-items:center;
  gap:8px;
  padding:0 12px;
  background:#10131a;
  border:1px solid #2b3342;
  border-radius:11px;
  color:#7d8da4;
  min-height:42px;
}
.searchbox input{
  width:100%;
  background:transparent;
  border:0;
  outline:0;
  color:#fff;
}
.status-filter{
  width:150px;
  min-height:42px;
  border-radius:11px;
}
.table{
  min-width:780px;
}
.table th,.table td{
  padding:12px 14px;
  border-bottom:1px solid rgba(255,255,255,.07);
}
.table tr:not(:first-child):hover td{
  background:rgba(37,99,235,.045);
}
.table tr:last-child td{border-bottom:0}
.badge{
  font-size:11px;
  padding:6px 10px;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.08);
}
.action-toggle{
  width:36px;
  height:32px;
  font-size:20px;
  padding:0!important;
}
.action-menu{
  display:none;
  position:absolute;
  right:0;
  z-index:30;
  min-width:210px;
  margin-top:8px;
  background:#0f131a;
  border:1px solid #2b3342;
  border-radius:14px;
  padding:8px;
  box-shadow:0 24px 70px rgba(0,0,0,.45);
}
td:has(.action-toggle){position:relative}
.action-menu.open{display:block}
.action-menu .actions-row{
  display:flex;
  flex-direction:column;
  gap:6px;
}
.action-menu .actions-row .btn,
.action-menu .actions-row form,
.action-menu .actions-row form .btn{
  width:100%;
}
.action-menu .actions-row .btn{
  justify-content:flex-start;
}
.input,textarea,select{
  background:#10131a;
  border-color:#2b3342;
  border-radius:11px;
  min-height:42px;
}
label{
  color:#93a4bd;
  letter-spacing:.14em;
}
[id$="Modal"]{
  backdrop-filter:blur(8px);
}
.modal{
  max-width:720px!important;
  border-radius:18px;
  box-shadow:0 28px 100px rgba(0,0,0,.55);
}
.codebox code, pre{
  background:#090c11;
  border-color:#273244;
  color:#e7edf7;
}
.copy-msg{
  background:#2563eb;
  color:#fff;
  border:1px solid rgba(255,255,255,.18);
}
.footer{
  left:238px;
  height:44px;
  background:rgba(18,20,26,.94);
  backdrop-filter:blur(14px);
  border-top-color:rgba(255,255,255,.07);
}
.pricing-hero{
  padding-top:18px;
}
.pricing-hero h1{
  font-size:42px;
  background:linear-gradient(90deg,#fff,#93c5fd);
  -webkit-background-clip:text;
  color:transparent;
}
.price-card{
  padding:28px 26px;
  transition:.18s ease;
}
.price-card:hover{
  transform:translateY(-3px);
  border-color:#3b82f6;
}
.price-card.popular{
  background:linear-gradient(180deg,rgba(37,99,235,.25),rgba(27,30,38,.98) 54%,rgba(18,20,26,.98));
}
.popular-badge{
  background:linear-gradient(135deg,#3b82f6,#2563eb);
}
.api-tabs{display:flex;gap:8px;flex-wrap:wrap;margin:10px 0 18px}
.api-tab{
  border:1px solid #2b3342;
  background:#111722;
  color:#cbd5e1;
  border-radius:999px;
  padding:9px 14px;
  font-weight:900;
}
.api-tab.active{background:#2563eb;color:#fff;border-color:#2563eb}
.api-section.hidden{display:none}
.user-avatar{
  width:30px;height:30px;border-radius:999px;
  display:inline-flex;align-items:center;justify-content:center;
  background:#172554;color:#bfdbfe;border:1px solid #1d4ed8;
  font-weight:900;margin-right:9px;
}
@media(max-width:820px){
  .sidebar{position:relative;width:100%;height:auto;padding:12px}
  .sidebar .logo{border-bottom:0}
  .menu{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:6px;padding:6px 0}
  .menu a{margin:0}
  .layout{display:block}
  .main{margin-left:0;padding:18px 14px 72px}
  .topbar{margin:-18px -14px 18px;padding:12px 14px}
  .footer{left:0}
  .table-toolbar{flex-direction:column;align-items:stretch}
  .status-filter{width:100%}
  .table-wrap{overflow:visible}
  .table{min-width:0;border-collapse:separate;border-spacing:0 12px}
  .table tr:first-child{display:none}
  .table tr{display:block;background:#151922;border:1px solid #273244;border-radius:14px;padding:10px;margin-bottom:12px}
  .table td{display:flex;justify-content:space-between;gap:14px;border:0;padding:9px 6px;word-break:break-word}
  .table td:before{content:attr(data-label);color:#91a4bd;font-weight:900;text-transform:uppercase;font-size:10px;letter-spacing:.1em}
  .codebox{max-width:100%;justify-content:flex-end}
  .codebox code{max-width:150px}
  .action-menu{right:8px}
}


/* ===========================
   CruuzAuth v22 Contrast Fix
   Fix botones blancos con texto invisible
   =========================== */

/* Botones principales siempre legibles */
.price-card .btn:not(.dark):not(.red):not(.yellow),
.purchase-card .btn:not(.dark):not(.red):not(.yellow),
.pricing-grid .btn:not(.dark):not(.red):not(.yellow),
.auth-card .btn:not(.dark):not(.red):not(.yellow),
.top .btn,
.nav .btn,
a.btn.primary,
button.btn.primary{
    background:linear-gradient(135deg,#2563eb,#1d4ed8) !important;
    color:#ffffff !important;
    border:1px solid rgba(96,165,250,.45) !important;
    text-shadow:none !important;
}

/* Botones secundarios oscuros */
.price-card .btn.dark,
.purchase-card .btn.dark,
.pricing-grid .btn.dark{
    background:#111827 !important;
    color:#f8fafc !important;
    border:1px solid #334155 !important;
}

/* Disabled / bloqueados: texto visible */
.btn:disabled,
.btn[disabled],
button:disabled,
button[disabled],
a.btn.disabled{
    background:#2b313c !important;
    color:#cbd5e1 !important;
    border:1px solid #3b4556 !important;
    opacity:1 !important;
    cursor:not-allowed !important;
    text-shadow:none !important;
    box-shadow:none !important;
    transform:none !important;
}

/* Evitar texto blanco sobre fondo blanco por estilos heredados */
.btn:not(.dark):not(.red):not(.yellow):not(.primary){
    color:#0b0d10;
}
.price-card .btn:not(.dark):not(.red):not(.yellow),
.purchase-card .btn:not(.dark):not(.red):not(.yellow){
    color:#fff !important;
}

/* Hover con contraste */
.price-card .btn:not(.dark):not(.red):not(.yellow):hover,
.purchase-card .btn:not(.dark):not(.red):not(.yellow):hover,
.top .btn:hover{
    background:linear-gradient(135deg,#3b82f6,#2563eb) !important;
    color:#fff !important;
}

/* Inputs/selects mantienen texto visible */
input, select, textarea{
    color:#f8fafc !important;
}
select option{
    background:#111827;
    color:#f8fafc;
}


/* =========================================================
   CruuzAuth v23 Premium UI Features
   Visual + UX upgrade, no DB schema changes required
   ========================================================= */

:root{
  --accent:#2563eb;
  --accent2:#3b82f6;
  --accentSoft:rgba(37,99,235,.18);
}
body.theme-purple{--accent:#8b5cf6;--accent2:#a78bfa;--accentSoft:rgba(139,92,246,.18)}
body.theme-emerald{--accent:#10b981;--accent2:#34d399;--accentSoft:rgba(16,185,129,.18)}
body.theme-red{--accent:#ef4444;--accent2:#fb7185;--accentSoft:rgba(239,68,68,.18)}

body:before{
  content:"";
  position:fixed;
  inset:-40%;
  z-index:-1;
  background:
    radial-gradient(circle at 20% 18%, var(--accentSoft), transparent 28%),
    radial-gradient(circle at 88% 6%, rgba(56,189,248,.08), transparent 24%),
    radial-gradient(circle at 50% 100%, rgba(255,255,255,.035), transparent 22%);
  animation:cruuzGlow 16s ease-in-out infinite alternate;
  pointer-events:none;
}
@keyframes cruuzGlow{
  0%{transform:translate3d(-1.4%,0,0) scale(1)}
  50%{transform:translate3d(1.6%,1.2%,0) scale(1.03)}
  100%{transform:translate3d(0,-1.3%,0) scale(1.01)}
}

.card .stat-icon,.dash-card .stat-icon{
  width:42px!important;height:42px!important;
  font-size:19px!important;
  border-radius:14px!important;
  background:linear-gradient(135deg,var(--accentSoft),rgba(15,23,42,.82))!important;
  border-color:rgba(96,165,250,.28)!important;
  color:#dbeafe!important;
  box-shadow:0 14px 32px rgba(0,0,0,.24), inset 0 1px 0 rgba(255,255,255,.06);
}
.card,.panel,.price-card,.doc-card{
  box-shadow:0 20px 60px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.03);
}
.card:hover,.price-card:hover{
  transform:translateY(-2px);
  border-color:rgba(96,165,250,.38);
  transition:.18s ease;
}
.mini-chart span{
  animation:barPulse 2.8s ease-in-out infinite alternate;
  background:linear-gradient(180deg,var(--accent2),var(--accent))!important;
}
.mini-chart span:nth-child(2){animation-delay:.2s}
.mini-chart span:nth-child(3){animation-delay:.4s}
.mini-chart span:nth-child(4){animation-delay:.6s}
.mini-chart span:nth-child(5){animation-delay:.8s}
@keyframes barPulse{from{opacity:.55;transform:scaleY(.86)}to{opacity:1;transform:scaleY(1.08)}}

.table-toolbar{display:flex;gap:12px;align-items:center;justify-content:space-between;margin:0 0 14px;flex-wrap:wrap}
.searchbox{min-width:240px;flex:1;display:flex;align-items:center;gap:8px;background:#10131a;border:1px solid #2b3342;border-radius:12px;padding:0 12px;height:42px;color:#91a4bd}
.searchbox input{background:transparent;border:0;outline:0;color:#fff;width:100%;height:100%}
.status-filter,.page-size{width:auto;min-width:135px;height:42px}
.table thead th,.table tr:first-child th{position:sticky;top:0;background:#181b22;z-index:2}
.table th.sortable{cursor:pointer;user-select:none}
.table th.sortable:after{content:" ↕";opacity:.35;font-size:10px}
.table th.sorted-asc:after{content:" ↑";opacity:1}
.table th.sorted-desc:after{content:" ↓";opacity:1}
.table tr[data-hidden="1"]{display:none!important}
.table-pager{display:flex;align-items:center;justify-content:flex-end;gap:8px;margin-top:12px;color:#9ca3af}
.table-pager button{min-width:34px;height:32px}
.bulkbar{display:none;align-items:center;gap:10px;background:#101827;border:1px solid #1d4ed8;border-radius:12px;padding:10px 12px;margin-bottom:12px;color:#dbeafe}
.bulkbar.show{display:flex}
.row-check{width:16px;height:16px}

.action-wrap{position:relative;display:inline-flex}
.action-dot,.action-toggle{
  width:34px;height:32px;padding:0!important;border-radius:10px!important;
  justify-content:center!important;font-size:20px!important;line-height:1!important;
}
.action-menu{
  display:none;position:absolute;right:0;top:38px;z-index:80;min-width:215px;
  background:#0f131a;border:1px solid #2b3342;border-radius:14px;padding:8px;
  box-shadow:0 24px 70px rgba(0,0,0,.52);
}
.action-menu.open{display:block}
.action-menu .actions-row{display:flex;flex-direction:column;gap:6px}
.action-menu .btn,.action-menu form,.action-menu form .btn{width:100%;justify-content:flex-start}

.profile-card{
  display:grid;grid-template-columns:1.1fr .9fr;gap:18px;
}
.profile-kv{display:grid;grid-template-columns:150px 1fr;gap:10px 14px;font-size:13px}
.profile-kv b{color:#91a4bd;text-transform:uppercase;font-size:11px;letter-spacing:.08em}
.timeline{display:flex;flex-direction:column;gap:10px;max-height:380px;overflow:auto}
.timeline-item{padding:12px;border:1px solid #273244;border-radius:12px;background:#10131a}
.timeline-item .t{font-weight:900}
.timeline-item .m{color:#9ca3af;font-size:12px;margin-top:4px}

.theme-picker{display:flex;gap:8px;align-items:center;margin:10px 18px 16px;justify-content:center}
.theme-dot{width:18px;height:18px;border-radius:999px;border:2px solid rgba(255,255,255,.25);cursor:pointer}
.theme-dot.blue{background:#2563eb}.theme-dot.purple{background:#8b5cf6}.theme-dot.emerald{background:#10b981}.theme-dot.red{background:#ef4444}
.theme-dot.active{outline:2px solid #fff;outline-offset:2px}

.toast-wrap{position:fixed;right:18px;top:18px;z-index:9999;display:flex;flex-direction:column;gap:10px}
.toast{min-width:260px;max-width:360px;padding:13px 14px;border-radius:14px;background:#111827;border:1px solid #334155;color:#fff;box-shadow:0 18px 60px rgba(0,0,0,.38);animation:toastIn .22s ease}
.toast.success{border-color:#16a34a;background:#052e16}.toast.error{border-color:#dc2626;background:#3b0a0a}.toast.warning{border-color:#f59e0b;background:#3b2504}.toast.info{border-color:#2563eb;background:#0b1d42}
@keyframes toastIn{from{opacity:0;transform:translateY(-8px)}to{opacity:1;transform:translateY(0)}}

.mobile-toggle{display:none}
.sidebar-backdrop{display:none}
.api-lang-tabs{display:flex;gap:8px;flex-wrap:wrap;margin:16px 0}
.api-lang-tab{border:1px solid #2b3342;background:#111722;color:#cbd5e1;border-radius:999px;padding:9px 14px;font-weight:900;cursor:pointer}
.api-lang-tab.active{background:var(--accent);border-color:var(--accent);color:#fff}
.api-lang-section{display:none}.api-lang-section.active{display:block}

.billing-toggle{display:inline-flex;border:1px solid #2b3342;border-radius:999px;padding:4px;background:#111722;margin:18px auto 0}
.billing-toggle button{border:0;background:transparent;color:#9ca3af;padding:9px 16px;border-radius:999px;font-weight:900}
.billing-toggle button.active{background:var(--accent);color:#fff}

.manager-avatar,.user-avatar{
  width:32px;height:32px;border-radius:999px;display:inline-flex;align-items:center;justify-content:center;
  background:linear-gradient(135deg,var(--accent),#0f172a);color:#fff;border:1px solid rgba(255,255,255,.14);
  font-weight:900;margin-right:9px;
}

@media(max-width:820px){
  .mobile-toggle{display:inline-flex;position:fixed;top:12px;left:12px;z-index:1001;background:#111827;border:1px solid #334155;color:#fff;border-radius:10px;width:42px;height:38px;align-items:center;justify-content:center}
  .sidebar{position:fixed!important;transform:translateX(-105%);transition:.2s ease;z-index:1000;width:280px!important}
  body.sidebar-open .sidebar{transform:translateX(0)}
  .sidebar-backdrop{display:none;position:fixed;inset:0;background:rgba(0,0,0,.55);z-index:999}
  body.sidebar-open .sidebar-backdrop{display:block}
  .main{margin-left:0!important;padding-top:62px!important}
  .footer{left:0!important}
  [id$="Modal"]{padding:0!important}
  .modal{max-width:none!important;width:100%!important;height:100vh!important;border-radius:0!important;overflow:auto}
  .profile-card{grid-template-columns:1fr}
  .profile-kv{grid-template-columns:1fr}
}


/* v25 stable billing/purchase fix */
.billing-toggle{display:inline-flex;border:1px solid #2b3342;border-radius:999px;padding:4px;background:#111722;margin:18px auto 0}
.billing-toggle button{border:0;background:transparent;color:#9ca3af;padding:9px 16px;border-radius:999px;font-weight:900;cursor:pointer}
.billing-toggle button.active{background:var(--accent,#2563eb);color:#fff}
.price-card .btn.primary,
.price-card a.btn.primary{
    background:linear-gradient(135deg,var(--accent,#2563eb),var(--accent2,#3b82f6))!important;
    color:#fff!important;
    border:1px solid rgba(96,165,250,.45)!important;
}


/* ===========================
   v26 Admin Panel Premium
   =========================== */
.admin-body .sidebar,
.admin-sidebar{
    width:238px;
    background:rgba(18,20,26,.94);
    backdrop-filter:blur(18px);
}
.admin-main{margin-left:238px}
.admin-metric-cards{grid-template-columns:repeat(auto-fit,minmax(165px,1fr))}
.badge.premium{background:linear-gradient(135deg,#4338ca,#7c3aed);color:#fff;border:1px solid #a78bfa}
.badge.info{background:#0b1d42;color:#bfdbfe;border:1px solid #2563eb}
.admin-dev-table td{vertical-align:middle}
.link-profile{font-weight:900;color:#fff}
.link-profile:hover{color:#93c5fd}
.admin-edit-modal label{margin-top:10px}
.admin-edit-modal .check{margin-top:12px}
@media(max-width:820px){
    .admin-main{margin-left:0}
    .admin-dev-table td{display:flex!important}
}


/* ===========================
   v27 Premium Landing Page
   =========================== */
.landing-body{
    background:#0b0d11;
    overflow-x:hidden;
}
.landing-top{
    position:sticky;
    top:18px;
    margin-top:18px;
    backdrop-filter:blur(18px);
    background:rgba(24,27,34,.72);
}
.landing-nav{gap:22px}
.landing-menu-btn{
    display:none;
    background:#111827;
    color:#fff;
    border:1px solid #334155;
    border-radius:10px;
    width:42px;
    height:38px;
    font-weight:900;
}
.btn.big{
    padding:14px 20px;
    border-radius:13px;
    font-size:14px;
}
.landing-hero{
    position:relative;
    min-height:760px;
    padding:110px 24px 70px;
    background:
      radial-gradient(circle at 48% 16%, rgba(37,99,235,.22), transparent 34%),
      radial-gradient(circle at 78% 24%, rgba(124,58,237,.12), transparent 28%),
      linear-gradient(180deg,#0b0d11 0%,#10131a 60%,#0b0d11 100%);
}
.landing-glow{
    position:absolute;
    inset:0;
    pointer-events:none;
    background:
      radial-gradient(circle at 30% 40%, rgba(59,130,246,.12), transparent 30%),
      radial-gradient(circle at 72% 50%, rgba(147,51,234,.12), transparent 32%);
    filter:blur(2px);
    animation:landingGlow 12s ease-in-out infinite alternate;
}
@keyframes landingGlow{
    from{opacity:.65;transform:translateY(0)}
    to{opacity:1;transform:translateY(-18px)}
}
.landing-hero-inner{
    width:min(1120px,calc(100% - 20px));
    margin:0 auto;
    display:grid;
    grid-template-columns:1.02fr .98fr;
    gap:48px;
    align-items:center;
    position:relative;
    z-index:1;
}
.landing-copy{text-align:left}
.landing-copy .pill{
    margin-bottom:26px;
    background:rgba(24,27,34,.78);
    box-shadow:0 20px 60px rgba(0,0,0,.28);
}
.landing-copy .hero-title{
    font-size:64px;
    max-width:690px;
    letter-spacing:-4px;
    line-height:.96;
    margin-bottom:24px;
    background:linear-gradient(180deg,#fff 20%,#c8d4ff 100%);
    -webkit-background-clip:text;
    background-clip:text;
    color:transparent;
}
.landing-copy p{
    color:#a8b0c2;
    max-width:650px;
    font-size:20px;
    line-height:1.65;
    margin:0 0 30px;
}
.landing-actions{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
    align-items:center;
}
.trust-row{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-top:24px;
}
.trust-row span{
    border:1px solid #263044;
    background:rgba(15,23,42,.72);
    color:#b9c6dd;
    border-radius:999px;
    padding:8px 12px;
    font-weight:800;
    font-size:12px;
}
.mockup-wrap{
    perspective:1400px;
}
.mockup-card{
    background:linear-gradient(180deg,rgba(24,27,34,.98),rgba(12,15,22,.98));
    border:1px solid rgba(96,165,250,.25);
    border-radius:24px;
    padding:18px;
    box-shadow:
      0 40px 120px rgba(0,0,0,.58),
      0 0 90px rgba(37,99,235,.16),
      inset 0 1px 0 rgba(255,255,255,.06);
    transform:rotateY(-8deg) rotateX(5deg);
}
.mockup-top{
    height:42px;
    display:flex;
    align-items:center;
    gap:8px;
    border-bottom:1px solid #283244;
    margin-bottom:18px;
    color:#dbeafe;
}
.mockup-top span{
    width:10px;height:10px;border-radius:50%;background:#334155;
}
.mockup-top span:nth-child(1){background:#ef4444}
.mockup-top span:nth-child(2){background:#f59e0b}
.mockup-top span:nth-child(3){background:#22c55e}
.mockup-top b{margin-left:auto;font-size:12px;color:#94a3b8}
.mockup-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:12px;
    margin-bottom:14px;
}
.mock-stat{
    background:#111827;
    border:1px solid #263244;
    border-radius:16px;
    padding:14px;
}
.mock-stat small{
    color:#8fa1bb;
    display:block;
    font-size:10px;
    text-transform:uppercase;
    letter-spacing:.08em;
    font-weight:900;
}
.mock-stat strong{
    display:block;
    color:#fff;
    font-size:26px;
    margin:7px 0 12px;
}
.mock-stat i{
    display:block;
    height:7px;
    width:70%;
    border-radius:999px;
    background:linear-gradient(90deg,#2563eb,#60a5fa);
}
.mock-table{
    background:#0b0f16;
    border:1px solid #263244;
    border-radius:16px;
    overflow:hidden;
}
.mock-table div{
    display:grid;
    grid-template-columns:1fr .7fr .7fr;
    gap:12px;
    padding:14px 16px;
    border-bottom:1px solid #1f2937;
    color:#cbd5e1;
    font-size:12px;
}
.mock-table div:last-child{border-bottom:0}
.mock-table b{
    color:#8fa1bb;
    font-size:10px;
    letter-spacing:.08em;
}
.ok-dot,.warn-dot{
    font-style:normal;
    border-radius:999px;
    padding:4px 8px;
    font-weight:900;
    font-size:11px;
    width:max-content;
}
.ok-dot{background:#052e16;color:#86efac;border:1px solid #15803d}
.warn-dot{background:#3b2504;color:#fde68a;border:1px solid #f59e0b}
.landing-features{
    width:min(1120px,calc(100% - 36px));
    margin:0 auto;
    padding:70px 0;
}
.section-head{
    text-align:center;
    max-width:760px;
    margin:0 auto 32px;
}
.section-head h2{
    font-size:38px;
    letter-spacing:-2px;
    margin:0 0 10px;
}
.section-head p{
    color:#9ca3af;
    font-size:17px;
}
.feature-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
}
.feature-card{
    background:linear-gradient(180deg,rgba(24,27,34,.96),rgba(15,18,25,.96));
    border:1px solid #263044;
    border-radius:20px;
    padding:24px;
    box-shadow:0 24px 80px rgba(0,0,0,.28);
}
.feature-card:hover{
    border-color:rgba(96,165,250,.38);
    transform:translateY(-2px);
    transition:.18s ease;
}
.feature-icon{
    width:46px;height:46px;
    display:flex;align-items:center;justify-content:center;
    background:rgba(37,99,235,.14);
    border:1px solid rgba(96,165,250,.25);
    border-radius:15px;
    margin-bottom:18px;
    font-size:22px;
}
.feature-card h3{
    font-size:20px;
    margin:0 0 10px;
}
.feature-card p{
    color:#9ca3af;
    line-height:1.55;
    margin:0;
}
.landing-cta{
    width:min(1120px,calc(100% - 36px));
    margin:0 auto 70px;
    background:
      radial-gradient(circle at 20% 30%,rgba(37,99,235,.22),transparent 30%),
      linear-gradient(135deg,#111827,#0b0f16);
    border:1px solid #263044;
    border-radius:24px;
    padding:34px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    box-shadow:0 28px 90px rgba(0,0,0,.35);
}
.landing-cta h2{
    font-size:30px;
    letter-spacing:-1.6px;
    margin:0 0 8px;
}
.landing-cta p{
    color:#9ca3af;
    margin:0;
}
.landing-footer{
    min-height:76px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#111318;
    border-top:1px solid #242b38;
    color:#727a86;
    font-size:12px;
}
@media(max-width:960px){
    .landing-hero-inner{
        grid-template-columns:1fr;
        text-align:center;
    }
    .landing-copy{text-align:center}
    .landing-copy .hero-title{
        margin-left:auto;
        margin-right:auto;
        font-size:52px;
    }
    .landing-copy p{margin-left:auto;margin-right:auto}
    .landing-actions,.trust-row{justify-content:center}
    .mockup-card{transform:none}
    .feature-grid{grid-template-columns:1fr}
    .landing-cta{flex-direction:column;text-align:center}
}
@media(max-width:720px){
    .landing-menu-btn{display:inline-flex;align-items:center;justify-content:center}
    .landing-top{height:auto;min-height:68px;padding:14px 16px;width:calc(100% - 24px)}
    .landing-nav{
        display:none;
        position:absolute;
        left:14px;
        right:14px;
        top:76px;
        background:#111827;
        border:1px solid #263044;
        border-radius:18px;
        padding:14px;
        flex-direction:column;
        align-items:stretch;
        z-index:30;
    }
    body.landing-nav-open .landing-nav{display:flex}
    .landing-nav .btn{width:100%}
    .landing-hero{
        padding-top:76px;
        min-height:auto;
    }
    .landing-copy .hero-title{
        font-size:40px;
        letter-spacing:-2.2px;
    }
    .landing-copy p{font-size:17px}
    .mockup-grid{grid-template-columns:1fr}
    .mock-table div{grid-template-columns:1fr;gap:6px}
}


/* ===========================
   v28 Premium Auth Pages
   =========================== */
.auth-premium-bg{
    min-height:100vh;
    background:
      radial-gradient(circle at 18% 12%, rgba(37,99,235,.18), transparent 28%),
      radial-gradient(circle at 82% 18%, rgba(124,58,237,.12), transparent 28%),
      linear-gradient(180deg,#0b0d11 0%,#101216 58%,#0b0d11 100%);
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    padding:36px 18px 76px;
}
.auth-premium-shell{
    width:min(980px,100%);
}
.auth-premium-card{
    display:grid;
    grid-template-columns:1.08fr .92fr;
    min-height:560px;
    background:rgba(24,27,34,.92);
    border:1px solid rgba(255,255,255,.08);
    border-radius:26px;
    overflow:hidden;
    box-shadow:
      0 40px 120px rgba(0,0,0,.52),
      inset 0 1px 0 rgba(255,255,255,.04);
    backdrop-filter:blur(18px);
}
.auth-form-side{
    padding:40px;
}
.auth-benefit-side{
    padding:34px;
    background:
      radial-gradient(circle at 40% 20%, rgba(37,99,235,.28), transparent 34%),
      linear-gradient(180deg,#111827,#0b0f16);
    border-left:1px solid rgba(255,255,255,.07);
    display:flex;
    align-items:center;
}
.auth-logo{
    display:inline-flex;
    align-items:center;
    gap:10px;
    font-weight:900;
    font-size:20px;
    margin-bottom:28px;
}
.auth-back{
    display:block;
    color:#8c96aa;
    text-transform:uppercase;
    font-size:11px;
    letter-spacing:.18em;
    font-weight:900;
    margin-bottom:20px;
}
.auth-back:hover{color:#fff}
.auth-heading{
    font-size:42px;
    line-height:1.02;
    letter-spacing:-2.4px;
    margin:0 0 12px;
    color:#fff;
}
.auth-desc{
    color:#a8b0c2;
    font-size:17px;
    margin:0 0 26px;
}
.auth-premium-form label,
.label-row label{
    display:block;
    margin:14px 0 8px;
    color:#92a4bf;
    font-weight:900;
    font-size:11px;
    letter-spacing:.15em;
    text-transform:uppercase;
}
.label-row{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
}
.label-row a{
    color:#93c5fd;
    font-size:12px;
    font-weight:800;
    margin-top:12px;
}
.input-icon{
    position:relative;
}
.input-icon span{
    position:absolute;
    left:14px;
    top:50%;
    transform:translateY(-50%);
    opacity:.72;
    z-index:1;
}
.input-icon .input{
    padding-left:46px;
    height:46px;
    background:#0d1118;
    border-color:#29364d;
    border-radius:12px;
}
.input-icon .input:focus{
    border-color:#3b82f6;
    box-shadow:0 0 0 4px rgba(37,99,235,.18);
}
.auth-submit{
    width:100%;
    margin-top:26px;
    height:48px;
    border-radius:12px;
    background:linear-gradient(135deg,#2563eb,#3b82f6)!important;
    color:#fff!important;
    box-shadow:0 16px 40px rgba(37,99,235,.24);
}
.auth-foot.premium{
    text-align:center;
    color:#9ca3af;
    margin-top:24px;
}
.auth-foot.premium a{color:#fff}
.auth-preview{
    width:100%;
    border:1px solid rgba(96,165,250,.26);
    background:rgba(12,17,26,.72);
    border-radius:22px;
    padding:24px;
    box-shadow:0 30px 90px rgba(0,0,0,.34);
}
.auth-preview-top{
    display:flex;
    gap:8px;
    margin-bottom:26px;
}
.auth-preview-top span{
    width:10px;height:10px;border-radius:50%;background:#334155;
}
.auth-preview-top span:nth-child(1){background:#ef4444}
.auth-preview-top span:nth-child(2){background:#f59e0b}
.auth-preview-top span:nth-child(3){background:#22c55e}
.auth-preview h2{
    margin:0 0 10px;
    font-size:24px;
    letter-spacing:-1px;
}
.auth-preview p{
    color:#a8b0c2;
    line-height:1.55;
    margin:0 0 20px;
}
.auth-preview-stats{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:12px;
    margin-bottom:18px;
}
.auth-preview-stats div{
    background:#111827;
    border:1px solid #263244;
    border-radius:16px;
    padding:16px;
}
.auth-preview-stats b{
    display:block;
    font-size:32px;
}
.auth-preview-stats small{
    color:#93a4bb;
    font-weight:800;
}
.auth-preview ul{
    margin:0;
    padding-left:18px;
    color:#cbd5e1;
    line-height:1.9;
    font-weight:700;
}
.auth-checklist{
    display:grid;
    gap:10px;
    margin:20px 0;
}
.auth-checklist div{
    background:#111827;
    border:1px solid #263244;
    border-radius:14px;
    padding:13px 14px;
    font-weight:900;
    color:#dbeafe;
}
.auth-preview-mini{
    display:flex;
    align-items:flex-end;
    gap:8px;
    height:54px;
    margin-top:22px;
}
.auth-preview-mini span{
    width:28px;
    border-radius:999px;
    background:linear-gradient(180deg,#60a5fa,#2563eb);
}
.auth-preview-mini span:nth-child(1){height:22px}
.auth-preview-mini span:nth-child(2){height:34px}
.auth-preview-mini span:nth-child(3){height:46px}
.auth-preview-mini span:nth-child(4){height:30px}
.auth-premium-footer{
    position:fixed;
    bottom:16px;
    left:0;
    right:0;
    text-align:center;
    color:#727a86;
    font-size:12px;
    pointer-events:none;
}
@media(max-width:860px){
    .auth-premium-bg{
        justify-content:flex-start;
        padding-top:24px;
    }
    .auth-premium-card{
        grid-template-columns:1fr;
    }
    .auth-benefit-side{
        border-left:0;
        border-top:1px solid rgba(255,255,255,.07);
    }
    .auth-form-side,.auth-benefit-side{
        padding:28px;
    }
    .auth-heading{
        font-size:34px;
    }
    .auth-premium-footer{
        position:static;
        margin-top:20px;
    }
}
@media(max-width:520px){
    .auth-form-side,.auth-benefit-side{padding:22px}
    .auth-heading{font-size:30px}
    .auth-desc{font-size:15px}
    .auth-preview-stats{grid-template-columns:1fr}
}
