/* ============================================================
   ONE — Plataforma de Evaluación DISC
   Stylesheet principal
   ============================================================ */

:root{
  --c-black:#000000;
  --c-ink:#1a181d;
  --c-white:#fefeff;
  --c-pink:#e17bd7;
  --c-cyan:#6be1e3;
  --c-gold:#e4c76a;
  --c-slate:#a4a8c0;
  --c-mist:#c6c9d7;

  /* DISC Colors */
  --disc-d:#e05454;
  --disc-i:#e4c76a;
  --disc-s:#4ecb71;
  --disc-c:#5498e0;

  --font-title: "Exo 2", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --font-sub: "Futura", "Futura PT", "Avenir", "Trebuchet MS", "Segoe UI", Arial, sans-serif;

  --container: 1180px;
  --radius-xl: 28px;
  --radius-lg: 18px;
  --shadow-soft: 0 18px 60px rgba(0,0,0,.55);
  --glass: rgba(254,254,255,.08);
  --glass2: rgba(254,254,255,.12);
  --stroke: rgba(198,201,215,.25);
}

*{box-sizing:border-box}
html { height: 100%; scroll-behavior: smooth; }

body {
  min-height: 100vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  background-color: var(--c-black);
  color: var(--c-white);
  font-family: var(--font-sub);
  overflow-x: hidden;
}

a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }
.hidden { display: none !important; }


/* ════════════════════════════════════════════
   BACKGROUND
   ════════════════════════════════════════════ */

.bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: 
    radial-gradient(1200px 700px at 70% 25%, rgba(225,123,215,.18), transparent 55%),
    radial-gradient(1100px 700px at 80% 60%, rgba(107,225,227,.14), transparent 55%),
    radial-gradient(900px 600px at 20% 70%, rgba(228,199,106,.10), transparent 60%),
    linear-gradient(180deg, var(--c-black), var(--c-ink));
}

.bg::before{
  content:"";
  position:absolute;
  inset:-10%;
  background:
    radial-gradient(circle at 25% 20%, rgba(107,225,227,.12), transparent 40%),
    radial-gradient(circle at 80% 35%, rgba(225,123,215,.12), transparent 38%),
    radial-gradient(circle at 55% 85%, rgba(228,199,106,.10), transparent 45%);
  filter: blur(18px);
  opacity:.95;
}

.hex{
  position:absolute;
  inset:-20%;
  opacity:.16;
  filter: drop-shadow(0 0 12px rgba(107,225,227,.15));
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='260' height='150' viewBox='0 0 260 150'%3E%3Cg fill='none' stroke='%23c6c9d7' stroke-opacity='0.85' stroke-width='1'%3E%3Cpath d='M50 20l20-12 20 12v24l-20 12-20-12z'/%3E%3Cpath d='M120 20l20-12 20 12v24l-20 12-20-12z'/%3E%3Cpath d='M190 20l20-12 20 12v24l-20 12-20-12z'/%3E%3Cpath d='M85 55l20-12 20 12v24l-20 12-20-12z'/%3E%3Cpath d='M155 55l20-12 20 12v24l-20 12-20-12z'/%3E%3Cpath d='M50 90l20-12 20 12v24l-20 12-20-12z'/%3E%3Cpath d='M120 90l20-12 20 12v24l-20 12-20-12z'/%3E%3Cpath d='M190 90l20-12 20 12v24l-20 12-20-12z'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 260px 150px;
  background-repeat: repeat;
  transform: rotate(-8deg);
  mix-blend-mode: screen;
}

canvas#stars{
  position:absolute;
  inset:0;
  opacity:1;
}

.wrap {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  flex: 1;
}


/* ════════════════════════════════════════════
   HEADER
   ════════════════════════════════════════════ */

header{
  width:100%;
  padding:26px 22px 8px;
  position:sticky;
  top:0;
  z-index:5;
  background: linear-gradient(180deg, rgba(0,0,0,.35), transparent);
  backdrop-filter: blur(10px);
}
header.scrolled{
  background: rgba(0,0,0,.35);
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
  border-bottom: 1px solid rgba(198,201,215,.10);
}

.nav{
  max-width: var(--container);
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  user-select:none;
}
.brand .mark{
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-image: url('./img/one-iconocolor.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  box-shadow: 0 0 0 1px rgba(198,201,215,.18), 0 0 40px rgba(107,225,227,.18);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.brand .mark::after{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(circle at 30% 30%, rgba(254,254,255,.14), transparent 55%);
  pointer-events:none;
}
.brand .name{
  font-family: var(--font-title);
  letter-spacing:.04em;
  font-weight:800;
  font-size:22px;
  line-height:1.1;
}
.brand .sub{
  display:block;
  font-family: var(--font-sub);
  font-weight:500;
  font-size:12px;
  color: rgba(198,201,215,.85);
  letter-spacing:.02em;
  margin-top:2px;
}

nav a{
  color: rgba(254,254,255,.78);
  text-decoration:none;
  font-family: var(--font-sub);
  font-weight:500;
  letter-spacing:.02em;
  padding:10px 12px;
  border-radius:999px;
  transition: background .2s ease, color .2s ease;
}
nav a:hover{
  color: var(--c-white);
  background: rgba(254,254,255,.06);
}

.header-cta a.btn-link{
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:46px;
  padding: 10px 18px;
  border-radius:999px;
  border:1px solid rgba(225,123,215,.35);
  color: var(--c-white);
  background: rgba(254,254,255,.06);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 40px rgba(0,0,0,.25);
  font-family: var(--font-sub);
  font-weight:600;
  letter-spacing:.02em;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
  overflow:hidden;
  user-select:none;
  cursor: pointer;
}
.header-cta a.btn-link::before{
  content:"";
  position:absolute;
  inset:-2px;
  border-radius:999px;
  opacity:.75;
  filter: blur(10px);
  z-index:0;
  background: radial-gradient(circle at 20% 50%, rgba(225,123,215,.55), transparent 55%),
              radial-gradient(circle at 80% 50%, rgba(225,123,215,.30), transparent 60%);
}
.header-cta a.btn-link > span{ position:relative; z-index:1; }
.header-cta a.btn-link:hover{
  transform: translateY(-1px);
  border-color: rgba(198,201,215,.36);
  background: rgba(254,254,255,.085);
  box-shadow: 0 16px 55px rgba(0,0,0,.35);
}


/* ════════════════════════════════════════════
   MAIN & HERO
   ════════════════════════════════════════════ */

main {
  flex: 1;
  width: 100%;
  padding: 0 22px 60px;
}

.hero{
  max-width: var(--container);
  margin:0 auto;
  width:100%;
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 28px;
  align-items:center;
  min-height: calc(100vh - 100px);
  padding: 22px 0;
}

.copy{ padding:14px 0; }

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius:999px;
  background: rgba(254,254,255,.06);
  border:1px solid rgba(198,201,215,.18);
  color: rgba(254,254,255,.78);
  font-size:14px;
  letter-spacing:.04em;
  backdrop-filter: blur(10px);
}
.dot{
  width:8px;height:8px;border-radius:999px;
  background: var(--c-cyan);
  box-shadow: 0 0 18px rgba(107,225,227,.55);
}
.dot-pink{
  background: var(--c-pink);
  box-shadow: 0 0 18px rgba(225,123,215,.55);
}
.dot-gold{
  background: var(--c-gold);
  box-shadow: 0 0 18px rgba(228,199,106,.55);
}

h1{
  font-family: var(--font-title);
  font-size: clamp(42px, 5vw, 66px);
  line-height: 1.05;
  margin: 18px 0 14px;
  letter-spacing:-.02em;
  text-shadow: 0 10px 40px rgba(0,0,0,.55);
}

.grad-cyan{
  background: linear-gradient(90deg, var(--c-cyan), rgba(107,225,227,.65));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.grad-pink{
  background: linear-gradient(90deg, var(--c-pink), rgba(225,123,215,.65));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.grad-gold{
  background: linear-gradient(90deg, var(--c-gold), rgba(228,199,106,.65));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}

.lead{
  max-width: 52ch;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(198,201,215,.92);
  margin: 0 0 26px;
}

.cta{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  align-items:center;
}

.btn{
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:56px;
  padding: 14px 26px;
  border-radius:999px;
  border:1px solid rgba(198,201,215,.22);
  color: var(--c-white);
  background: rgba(254,254,255,.06);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 40px rgba(0,0,0,.35);
  cursor:pointer;
  font-family: var(--font-sub);
  font-weight:600;
  letter-spacing:.02em;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
  overflow:hidden;
  user-select:none;
}
.btn:hover{
  transform: translateY(-1px);
  border-color: rgba(198,201,215,.36);
  background: rgba(254,254,255,.085);
  box-shadow: 0 16px 55px rgba(0,0,0,.45);
}
.btn:active{ transform: translateY(0px) scale(.99); }

.btn.primary::before,
.btn.secondary::before{
  content:"";
  position:absolute;
  inset:-2px;
  border-radius:999px;
  opacity:.75;
  filter: blur(10px);
  z-index:0;
}
.btn.primary::before{
  background: radial-gradient(circle at 20% 50%, rgba(107,225,227,.55), transparent 55%),
              radial-gradient(circle at 80% 50%, rgba(107,225,227,.30), transparent 60%);
}
.btn.secondary::before{
  background: radial-gradient(circle at 20% 50%, rgba(225,123,215,.55), transparent 55%),
              radial-gradient(circle at 80% 50%, rgba(225,123,215,.30), transparent 60%);
}
.btn > span{ position:relative; z-index:1; }
.btn.primary{ border-color: rgba(107,225,227,.35); }
.btn.secondary{ border-color: rgba(225,123,215,.35); }

.hint{
  margin-top:18px;
  font-size:13px;
  color: rgba(164,168,192,.95);
}


/* ════════════════════════════════════════════
   VISUAL PANEL (Hero right)
   ════════════════════════════════════════════ */

.visual{
  position:relative;
  min-height: 520px;
  border-radius: var(--radius-xl);
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow: var(--shadow-soft);
  background:
    radial-gradient(900px 600px at 70% 35%, rgba(225,123,215,.20), transparent 55%),
    radial-gradient(900px 600px at 45% 60%, rgba(107,225,227,.18), transparent 60%),
    linear-gradient(180deg, rgba(254,254,255,.06), rgba(26,24,29,.55));
  border: 1px solid rgba(198,201,215,.18);
  backdrop-filter: blur(16px);
}

.hud{
  position:absolute;
  inset:0;
  background:
    linear-gradient(to right, rgba(107,225,227,.0), rgba(107,225,227,.22), rgba(107,225,227,.0)) 10% 35% / 60% 1px no-repeat,
    linear-gradient(to right, rgba(225,123,215,.0), rgba(225,123,215,.18), rgba(225,123,215,.0)) 15% 62% / 70% 1px no-repeat,
    radial-gradient(circle at 85% 78%, rgba(228,199,106,.10), transparent 42%);
  opacity:.9;
  pointer-events:none;
  mix-blend-mode: screen;
}

.visual::after{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(circle at 70% 30%, rgba(254,254,255,.12), transparent 45%);
  pointer-events:none;
}

.feature-grid{
  position:relative;
  z-index:1;
  width:min(640px, 92%);
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:18px;
  padding:26px;
}

.feature-card{
  border-radius: 18px;
  background: rgba(254,254,255,.06);
  border: 1px solid rgba(198,201,215,.20);
  box-shadow: 0 18px 60px rgba(0,0,0,.35);
  padding:22px 22px 20px;
  backdrop-filter: blur(14px);
  min-height: 140px;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.feature-card:hover{
  transform: translateY(-2px);
  background: rgba(254,254,255,.075);
  border-color: rgba(198,201,215,.32);
  box-shadow: 0 22px 70px rgba(0,0,0,.45);
}

.feature-top{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:10px;
}

.feature-ico{
  width:40px;
  height:40px;
  border-radius: 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  border: 1px solid rgba(198,201,215,.18);
  box-shadow: 0 0 0 1px rgba(0,0,0,.12), 0 12px 30px rgba(0,0,0,.22);
  flex: 0 0 auto;
}

/* DISC letter badges in hero */
.disc-d { background: rgba(224,84,84,.20); border-color: rgba(224,84,84,.35); }
.disc-i { background: rgba(228,199,106,.20); border-color: rgba(228,199,106,.35); }
.disc-s { background: rgba(78,203,113,.20); border-color: rgba(78,203,113,.35); }
.disc-c { background: rgba(84,152,224,.20); border-color: rgba(84,152,224,.35); }

.disc-letter{
  font-family: var(--font-title);
  font-weight:800;
  font-size:20px;
  line-height:1;
}
.disc-d .disc-letter { color: var(--disc-d); }
.disc-i .disc-letter { color: var(--disc-i); }
.disc-s .disc-letter { color: var(--disc-s); }
.disc-c .disc-letter { color: var(--disc-c); }

.feature-title{
  font-family: var(--font-title);
  font-weight:700;
  letter-spacing:-.01em;
  font-size:18px;
  line-height:1.2;
  margin:0;
}
.feature-text{
  margin:0;
  color: rgba(198,201,215,.88);
  font-size:14px;
  line-height:1.6;
}


/* ════════════════════════════════════════════
   SECTIONS (scroll pages)
   ════════════════════════════════════════════ */

.section{
  max-width: var(--container);
  margin: 0 auto;
  padding: 80px 0;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .6s ease, transform .6s ease;
}
.section.visible{
  opacity: 1;
  transform: translateY(0);
}

.section-container{ width: 100%; }

.section-header{
  margin-bottom: 48px;
}

.section-title{
  font-family: var(--font-title);
  font-size: clamp(30px, 3.5vw, 46px);
  line-height: 1.1;
  margin: 16px 0 14px;
  letter-spacing:-.02em;
}

.section-lead{
  max-width: 62ch;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(198,201,215,.85);
  margin: 0;
}


/* ── ¿Qué es DISC? grid ── */

.info-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.info-card{
  border-radius: var(--radius-lg);
  background: var(--glass);
  border: 1px solid var(--stroke);
  padding: 28px 24px;
  backdrop-filter: blur(14px);
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.info-card:hover{
  transform: translateY(-3px);
  background: var(--glass2);
  border-color: rgba(198,201,215,.35);
}

.info-icon{
  font-size: 28px;
  margin-bottom: 14px;
}

.info-title{
  font-family: var(--font-title);
  font-weight:700;
  font-size: 18px;
  margin: 0 0 10px;
}

.info-text{
  font-size: 14px;
  line-height: 1.65;
  color: rgba(198,201,215,.85);
  margin: 0;
}


/* ── Los 4 Estilos grid ── */

.styles-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.style-card{
  border-radius: var(--radius-lg);
  background: var(--glass);
  border: 1px solid var(--stroke);
  backdrop-filter: blur(14px);
  overflow: hidden;
  transition: transform .18s ease, border-color .18s ease;
}
.style-card:hover{
  transform: translateY(-3px);
}

.style-d:hover { border-color: rgba(224,84,84,.45); }
.style-i:hover { border-color: rgba(228,199,106,.45); }
.style-s:hover { border-color: rgba(78,203,113,.45); }
.style-c:hover { border-color: rgba(84,152,224,.45); }

.style-header{
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 24px 18px;
}

.style-badge{
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 24px;
  flex-shrink: 0;
}

.badge-d { background: rgba(224,84,84,.18); color: var(--disc-d); border: 1px solid rgba(224,84,84,.3); }
.badge-i { background: rgba(228,199,106,.18); color: var(--disc-i); border: 1px solid rgba(228,199,106,.3); }
.badge-s { background: rgba(78,203,113,.18); color: var(--disc-s); border: 1px solid rgba(78,203,113,.3); }
.badge-c { background: rgba(84,152,224,.18); color: var(--disc-c); border: 1px solid rgba(84,152,224,.3); }

.style-name{
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 20px;
  margin: 0;
}

.style-aka{
  font-size: 13px;
  color: var(--c-slate);
  margin: 2px 0 0;
}

.style-body{
  padding: 0 24px 24px;
}

.style-stat{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-right: 16px;
  margin-bottom: 10px;
  font-size: 13px;
}

.stat-label{
  color: rgba(198,201,215,.6);
}

.stat-value{
  font-weight: 700;
  color: var(--c-white);
}

.stat-d { color: var(--disc-d); }
.stat-i { color: var(--disc-i); }
.stat-s { color: var(--disc-s); }
.stat-c { color: var(--disc-c); }

.style-desc{
  font-size: 14px;
  line-height: 1.65;
  color: rgba(198,201,215,.85);
  margin: 8px 0 14px;
}

.style-fear{
  font-size: 13px;
  padding: 10px 14px;
  border-radius: 10px;
  background: rgba(254,254,255,.04);
  border: 1px solid rgba(198,201,215,.12);
  color: rgba(198,201,215,.75);
  line-height: 1.5;
}

.fear-label{
  font-weight: 700;
  color: var(--c-pink);
  margin-right: 4px;
}


/* ── Cómo Funciona (steps) ── */

.steps-grid{
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 40px;
}

.step-card{
  flex: 1;
  border-radius: var(--radius-lg);
  background: var(--glass);
  border: 1px solid var(--stroke);
  padding: 28px 24px;
  backdrop-filter: blur(14px);
  transition: transform .18s ease, background .18s ease;
}
.step-card:hover{
  transform: translateY(-3px);
  background: var(--glass2);
}

.step-number{
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 36px;
  background: linear-gradient(135deg, var(--c-cyan), var(--c-pink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 14px;
  line-height: 1;
}

.step-title{
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 18px;
  margin: 0 0 10px;
}

.step-text{
  font-size: 14px;
  line-height: 1.65;
  color: rgba(198,201,215,.85);
  margin: 0;
}

.step-connector{
  width: 40px;
  min-width: 40px;
  height: 2px;
  background: linear-gradient(90deg, rgba(107,225,227,.4), rgba(225,123,215,.4));
  align-self: center;
  margin-top: -20px;
  border-radius: 2px;
}

.cta-center{
  text-align: center;
}


/* ════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════ */

.premium-footer {
  margin-top: auto;
  flex-shrink: 0;
  width: 100%;
  border-top: 3px solid #ff69b4;
  background: #000000 !important;
  padding: 18px 0;
  position: relative;
  z-index: 10;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.85;
}

.footer-logo-letra {
  height: 18px;
  width: auto;
  vertical-align: middle;
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.developed-txt {
  font-size: 12px;
  letter-spacing: 1px;
  opacity: 0.7;
}

.dev-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.dev-link:hover {
  opacity: 0.8;
  transform: translateY(-1px);
}

.dev-logo-one {
  height: 22px;
  width: auto;
}

.by-txt {
  margin: 0 6px;
  font-style: italic;
  opacity: 0.7;
  font-size: 13px;
}

.dev-logo-escencial {
  height: 24px;
  width: auto;
}


/* ════════════════════════════════════════════
   LOGIN MODAL
   ════════════════════════════════════════════ */

.login-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0,0,0,.85);
  backdrop-filter: blur(10px);
}
.login-modal.active { display: flex; }

.login-card {
  max-width: 450px;
  width: 100%;
  background: rgba(254,254,255,.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(198,201,215,.25);
  border-radius: 28px;
  padding: 40px;
  box-shadow: 0 18px 60px rgba(0,0,0,.55);
  position: relative;
}

.login-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: rgba(198,201,215,.6);
  font-size: 24px;
  cursor: pointer;
  padding: 5px;
  line-height: 1;
  transition: color 0.2s ease;
}
.login-close:hover { color: var(--c-white); }

.login-logo {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: rgba(254,254,255,.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 1px rgba(198,201,215,.18), 0 0 40px rgba(107,225,227,.18);
}
.login-logo img { width: 60%; height: 60%; object-fit: contain; }

.login-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
  font-family: var(--font-title);
  margin-bottom: 8px;
}

.login-subtitle {
  text-align: center;
  font-size: 0.95rem;
  color: rgba(198,201,215,.7);
  margin-bottom: 24px;
}

.mode-badge {
  display: block;
  width: fit-content;
  margin: 0 auto 24px;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.mode-user {
  background: rgba(107,225,227,.15);
  color: #6be1e3;
  border: 1px solid rgba(107,225,227,.35);
}

.mode-admin {
  background: rgba(225,123,215,.15);
  color: #e17bd7;
  border: 1px solid rgba(225,123,215,.35);
}

.alert {
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 14px;
  margin-bottom: 12px;
}

.alert-error {
  background: rgba(220,38,38,.15);
  color: #fca5a5;
  border: 1px solid rgba(220,38,38,.3);
}

.alert-success {
  background: rgba(5,150,105,.15);
  color: #86efac;
  border: 1px solid rgba(5,150,105,.3);
}

.form-group { margin-bottom: 20px; }

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: rgba(198,201,215,.9);
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  font-size: 15px;
  font-family: var(--font-sub);
  background: rgba(254,254,255,.05);
  border: 1px solid rgba(198,201,215,.2);
  border-radius: 12px;
  color: #fff;
  transition: all 0.2s ease;
}
.form-input::placeholder { color: rgba(198,201,215,.4); }
.form-input:focus {
  outline: none;
  border-color: rgba(107,225,227,.55);
  box-shadow: 0 0 0 3px rgba(107,225,227,.14);
  background: rgba(254,254,255,.075);
}

.btn-login {
  width: 100%;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 800;
  font-family: var(--font-sub);
  border-radius: 999px;
  color: #fff;
  background: rgba(254,254,255,.06);
  border: 1px solid rgba(107,225,227,.35);
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 10px 40px rgba(0,0,0,.35);
}
.btn-login:hover:not(:disabled) {
  transform: translateY(-2px);
  border-color: rgba(107,225,227,.55);
  box-shadow: 0 0 0 1px rgba(107,225,227,.35), 0 16px 55px rgba(0,0,0,.45), 0 0 40px rgba(107,225,227,.25);
}
.btn-login:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.switch-mode {
  text-align: center;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(198,201,215,.15);
}
.switch-mode button {
  background: none;
  border: none;
  color: #6be1e3;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.2s ease;
  font-family: var(--font-sub);
}
.switch-mode button:hover {
  color: #e17bd7;
  text-decoration: underline;
}

.loading-text {
  text-align: center;
  color: #6be1e3;
  font-size: 14px;
  margin-top: 12px;
}


/* ════════════════════════════════════════════
   SCROLLBAR
   ════════════════════════════════════════════ */

::-webkit-scrollbar { width: 12px; height: 12px; }
::-webkit-scrollbar-track { background: var(--c-black); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--c-cyan), var(--c-pink));
  border-radius: 99px;
  border: 3px solid var(--c-black);
  background-clip: content-box;
}
::-webkit-scrollbar-thumb:hover {
  border: 2px solid var(--c-black);
}
html {
  scrollbar-width: thin;
  scrollbar-color: var(--c-pink) var(--c-black);
}


/* ════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════ */

@media (max-width: 980px){
  .hero{ grid-template-columns: 1fr; }
  .visual{ min-height: 460px; }
  header{ padding-top: 18px; }
  .nav{ gap:12px; }
  .feature-grid{ width:min(720px, 96%); }
  .styles-grid{ grid-template-columns: 1fr; }
  .info-grid{ grid-template-columns: 1fr; }
  .steps-grid{ flex-direction: column; gap: 16px; }
  .step-connector{ width: 2px; height: 30px; min-width: unset; align-self: center; margin-top: 0; }
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  .footer-left, .footer-right {
    flex-wrap: wrap;
    justify-content: center;
  }
  .developed-txt {
    width: 100%;
    margin-bottom: 5px;
  }
}

@media (max-width: 560px){
  nav{ display:none; }
  .eyebrow{ font-size: 13px; }
  .lead{ font-size: 16px; }
  .btn{ width: 100%; justify-content:center; }
  .feature-grid{ grid-template-columns: 1fr; padding:18px; }
  .brand .name{ font-size:18px; }
  .login-card { padding: 32px 24px; }
  .login-title { font-size: 1.75rem; }
  .section{ padding: 50px 0; }
}

@media (max-width: 480px){
  .login-card { padding: 28px 20px; }
}

@media (prefers-reduced-motion: reduce){
  .btn, nav a, .feature-card, .style-card, .info-card, .step-card, .section { transition:none !important; }
  .section { opacity: 1; transform: none; }
}