/* ══════════════════════════════════════════════
   StackManager · Landing
   Línea gráfica oficial (igual que la app Flutter):
   fondo #0A0A0A · superficie #141414 · tarjeta #1C1C1E
   dorado #D4AF37 · dorado claro #F3D775 · dorado oscuro #9C7C1E
   ══════════════════════════════════════════════ */
:root {
  --ink: #0a0a0a;
  --ink-soft: #070707;
  --surface: #141414;
  --card: #1c1c1e;
  --gold: #d4af37;
  --gold-light: #f3d775;
  --gold-dark: #9c7c1e;
  --gold-gradient: linear-gradient(135deg, #9c7c1e 0%, #d4af37 45%, #f3d775 100%);
  --card-gradient: linear-gradient(180deg, #1e1e1e 0%, #121212 100%);
  --silver: #c0c0c0;
  --muted: #9a9a9a;
  --white: #ffffff;
  --border: rgba(255, 255, 255, 0.1);
  --border-gold: rgba(212, 175, 55, 0.35);
  --radius: 20px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu,
    Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--ink);
  color: var(--white);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  overflow-x: hidden;
}

::selection { background: rgba(212, 175, 55, 0.35); }

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.container.narrow { max-width: 860px; }

.gold-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.gold-link { color: var(--gold-light); font-weight: 600; }
.gold-link:hover { text-decoration: underline; }
.muted { color: var(--silver); }
.sm-text { font-size: 14px; margin-top: 12px; }

/* ── Botones ─────────────────────────────── */
.btn-gold, .btn-black, .btn-outline-gold, .btn-outline-black, .btn-login {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 28px; border-radius: 14px;
  font-weight: 700; font-size: 15px;
  transition: transform 0.15s ease, filter 0.2s ease, background 0.2s ease;
  cursor: pointer; border: none;
}
.btn-gold { background: var(--gold-gradient); color: #000; box-shadow: 0 0 24px rgba(212,175,55,.25); }
.btn-gold:hover { filter: brightness(1.1); transform: translateY(-1px); }
.btn-black { background: #000; color: var(--gold-light); }
.btn-black:hover { background: #111; }
.btn-outline-gold { border: 1px solid rgba(212,175,55,.6); color: var(--gold-light); background: transparent; }
.btn-outline-gold:hover { background: rgba(212,175,55,.1); }
.btn-outline-black { border: 2px solid rgba(0,0,0,.7); color: #000; }
.btn-outline-black:hover { background: rgba(0,0,0,.08); }
.btn-login { color: rgba(255,255,255,.85); padding: 10px 16px; font-weight: 600; }
.btn-login:hover { color: var(--gold-light); }
.btn-sm { padding: 10px 20px; font-size: 14px; border-radius: 12px; }
.btn-block { display: flex; width: 100%; }

/* ── Header ──────────────────────────────── */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: rgba(10,10,10,.85);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.25s ease;
}
.header.scrolled { box-shadow: 0 8px 30px rgba(0,0,0,.5); }
.header-inner { height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo { width: 40px; height: 40px; object-fit: contain; filter: drop-shadow(0 0 14px rgba(212,175,55,.45)); }
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-name { font-weight: 800; letter-spacing: 0.22em; font-size: 15px; }
.brand-name.sm { font-size: 13px; }
.brand-sub { font-size: 10px; letter-spacing: 0.3em; color: var(--gold); margin-top: 3px; }

.nav { display: none; gap: 32px; font-size: 14px; color: var(--silver); }
.nav a:hover { color: var(--gold-light); }
@media (min-width: 1024px) { .nav { display: flex; } }

.header-actions { display: none; align-items: center; gap: 6px; }
@media (min-width: 640px) { .header-actions { display: flex; } }

.menu-btn { background: none; border: none; color: var(--silver); padding: 8px; cursor: pointer; }
@media (min-width: 640px) { .menu-btn { display: none; } }

.mobile-menu { display: none; border-top: 1px solid var(--border); background: rgba(20,20,20,.97); padding: 16px 24px 22px; }
.mobile-menu.open { display: block; }
.mobile-menu > a { display: block; padding: 10px 0; color: var(--silver); font-size: 15px; }
.mobile-menu-actions { display: flex; gap: 12px; padding-top: 12px; }
.mobile-menu-actions a { flex: 1; text-align: center; padding: 12px; border-radius: 12px; font-weight: 700; }

/* ── Hero ────────────────────────────────── */
.hero { position: relative; padding-top: 68px; }
.hero-glow {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 60% 42% at 50% 0%, rgba(212,175,55,.16), transparent);
}
.hero-grid {
  position: relative; display: grid; gap: 56px; align-items: center;
  padding-top: 56px; padding-bottom: 64px;
}
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1.05fr 0.95fr; padding-top: 88px; padding-bottom: 88px; } }

.badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 16px; border-radius: 999px;
  border: 1px solid rgba(212,175,55,.4); background: rgba(212,175,55,.1);
  color: var(--gold-light); font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
}
.badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold-light); animation: pulse 1.6s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.35; } }

.hero-copy h1 { margin-top: 24px; font-size: clamp(38px, 6vw, 58px); line-height: 1.08; letter-spacing: -0.02em; font-weight: 800; }
.lead { margin-top: 20px; font-size: 18px; color: rgba(192,192,192,.92); max-width: 560px; }
.lead strong { color: #fff; }

.store-row { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 12px; }
.store-btn {
  display: flex; align-items: center; gap: 12px;
  background: #000; border: 1px solid rgba(255,255,255,.2);
  border-radius: 16px; padding: 13px 20px; min-width: 190px;
  transition: border-color 0.2s ease, transform 0.15s ease;
}
.store-btn:hover { border-color: rgba(212,175,55,.6); transform: translateY(-1px); }
.store-icon { width: 28px; height: 28px; color: #fff; flex-shrink: 0; }
.store-btn span { display: flex; flex-direction: column; line-height: 1.3; text-align: left; }
.store-btn small { font-size: 11px; color: var(--muted); }
.store-btn strong { font-size: 16px; }

.login-hint { margin-top: 16px; font-size: 14px; color: var(--muted); }

.hero-stats {
  margin-top: 36px; padding-top: 28px; border-top: 1px solid var(--border);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 440px;
}
.hero-stats dt { font-size: 26px; font-weight: 800; background: var(--gold-gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-stats dd { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }

/* Mockup teléfono */
.hero-visual { position: relative; display: flex; justify-content: center; }
@media (min-width: 1024px) { .hero-visual { justify-content: flex-end; padding-right: 24px; } }
.phone-glow { position: absolute; width: 380px; height: 380px; border-radius: 50%; background: rgba(212,175,55,.14); filter: blur(100px); }
.phone {
  position: relative; width: 300px; border-radius: 38px; padding: 12px;
  border: 1px solid rgba(212,175,55,.4); background: var(--card-gradient);
  box-shadow: 0 18px 40px rgba(0,0,0,.45);
}
@media (min-width: 640px) { .phone { width: 320px; } }
.phone-screen { border-radius: 28px; background: var(--ink); overflow: hidden; }
.phone-head { padding: 22px 20px 16px; text-align: center; border-bottom: 1px solid var(--border); }
.phone-head img { width: 62px; height: 62px; object-fit: contain; margin: 0 auto; }
.phone-title { margin-top: 8px; font-size: 11px; letter-spacing: 0.25em; font-weight: 800; }
.phone-sub { font-size: 9px; letter-spacing: 0.2em; color: var(--gold); }
.phone-body { padding: 18px; display: flex; flex-direction: column; gap: 14px; }
.qr-card { border: 1px solid rgba(212,175,55,.4); background: var(--surface); border-radius: 16px; padding: 16px; text-align: center; }
.qr-title { font-size: 13px; font-weight: 700; }
.qr-sub { font-size: 11px; color: var(--muted); }
.qr-box { margin: 12px auto 0; width: 128px; height: 128px; background: #fff; border-radius: 12px; padding: 8px; }
.qr-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; width: 100%; height: 100%; }
.qr-grid i { border-radius: 1px; background: rgba(0,0,0,.12); }
.qr-grid i.on { background: #000; }
.qr-id { display: inline-block; margin-top: 12px; font-size: 11px; font-weight: 800; letter-spacing: 0.14em; color: var(--gold-light); border: 1px solid rgba(212,175,55,.5); border-radius: 8px; padding: 4px 12px; }
.live-card { display: flex; align-items: center; gap: 12px; background: var(--gold-gradient); color: #000; border-radius: 16px; padding: 14px 16px; }
.live-icon { font-size: 24px; font-weight: 900; }
.live-card strong, .menu-card strong { display: block; font-size: 14px; }
.live-card small, .menu-card small { display: block; font-size: 12px; opacity: 0.75; }
.menu-card { display: flex; align-items: center; gap: 12px; background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 14px 16px; }
.menu-icon { font-size: 20px; color: var(--gold); }

.float-card {
  position: absolute; background: rgba(20,20,20,.95); border-radius: 14px;
  padding: 10px 16px; box-shadow: 0 18px 40px rgba(0,0,0,.45);
  display: none;
}
.float-card small { display: block; font-size: 11px; color: var(--muted); }
.float-card strong { font-size: 16px; }
.float-card em { font-style: normal; font-size: 11px; color: var(--gold); }
.float-top { border: 1px solid rgba(212,175,55,.4); top: 40px; left: 0; }
.float-bottom { border: 1px solid var(--border); bottom: 56px; right: 0; }
@media (min-width: 640px) { .float-card { display: block; } }

/* Cinta */
.strip { border-top: 1px solid rgba(212,175,55,.25); border-bottom: 1px solid rgba(212,175,55,.25); background: rgba(20,20,20,.6); }
.strip-inner { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 20px; padding-top: 16px; padding-bottom: 16px; font-size: 12px; letter-spacing: 0.25em; font-weight: 700; color: rgba(243,215,117,.9); }
.strip-inner i { color: rgba(212,175,55,.4); font-style: normal; }

/* ── Secciones ───────────────────────────── */
.section { padding: 80px 0; }
.section-tight { padding-bottom: 80px; }
.section-alt { background: rgba(20,20,20,.4); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section h2, .section-tight h2 { text-align: center; font-size: clamp(28px, 4vw, 38px); font-weight: 800; letter-spacing: -0.01em; }
.eyebrow { text-align: center; font-size: 12px; font-weight: 800; letter-spacing: 0.3em; color: var(--gold); }
.eyebrow + h2 { margin-top: 12px; }
.section-sub { text-align: center; color: var(--silver); max-width: 640px; margin: 16px auto 0; }

.grid-3 { margin-top: 48px; display: grid; gap: 20px; }
@media (min-width: 640px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }
.grid-2 { margin-top: 48px; display: grid; gap: 20px; }
@media (min-width: 768px) { .grid-2 { grid-template-columns: repeat(2, 1fr); } }

.feature {
  background: var(--card-gradient); border: 1px solid rgba(212,175,55,.25);
  border-radius: 24px; padding: 28px; box-shadow: 0 18px 40px rgba(0,0,0,.45);
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.feature:hover { transform: translateY(-4px); border-color: rgba(212,175,55,.6); }
.feature-icon {
  width: 48px; height: 48px; border-radius: 12px; background: var(--gold-gradient);
  display: flex; align-items: center; justify-content: center;
  color: #000; font-size: 20px; font-weight: 900;
}
.feature h3 { margin-top: 20px; font-size: 18px; }
.feature p { margin-top: 8px; font-size: 14px; color: rgba(192,192,192,.88); }

/* Roles */
.role {
  background: var(--card-gradient); border: 1px solid rgba(212,175,55,.25);
  border-radius: 24px; padding: 28px; box-shadow: 0 18px 40px rgba(0,0,0,.45);
  display: flex; flex-direction: column; transition: transform 0.25s ease;
}
.role:hover { transform: translateY(-4px); }
.role-featured { background: var(--gold-gradient); color: #000; border: none; box-shadow: 0 0 50px rgba(212,175,55,.35); }
.role-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.role-head h3 { font-size: 20px; font-weight: 800; }
.tag { font-size: 11px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; border: 1px solid rgba(212,175,55,.5); color: var(--gold-light); border-radius: 999px; padding: 4px 12px; }
.tag-dark { background: #000; color: var(--gold-light); border: none; }
.role-desc { margin-top: 4px; font-size: 14px; color: var(--muted); }
.role-featured .role-desc { color: rgba(0,0,0,.65); }
.role ul { margin: 20px 0 24px; display: flex; flex-direction: column; gap: 10px; font-size: 14px; font-weight: 500; }
.role ul li { display: flex; gap: 10px; color: var(--silver); }
.role-featured ul li { color: rgba(0,0,0,.85); }
.role ul li::before { content: "✓"; color: var(--gold); font-weight: 800; }
.role-featured ul li::before { color: #000; }
.role .btn-block { margin-top: auto; }

/* Pasos */
.step { background: var(--card); border: 1px solid var(--border); border-radius: 24px; padding: 28px; }
.step-num { font-size: 48px; font-weight: 900; }
.step h3 { margin-top: 10px; font-size: 18px; }
.step p { margin-top: 8px; font-size: 14px; color: rgba(192,192,192,.88); }

/* Descargar */
.download-panel {
  position: relative; overflow: hidden; border: 1px solid rgba(212,175,55,.4);
  background: var(--card-gradient); border-radius: 32px; padding: 36px;
  box-shadow: 0 0 50px rgba(212,175,55,.2);
}
@media (min-width: 768px) { .download-panel { padding: 56px; } }
.download-glow { position: absolute; top: -96px; right: -96px; width: 380px; height: 380px; border-radius: 50%; background: rgba(212,175,55,.14); filter: blur(100px); }
.download-grid { position: relative; display: grid; gap: 36px; align-items: center; }
@media (min-width: 1024px) { .download-grid { grid-template-columns: 1.1fr 0.9fr; } }
.download-logo { width: 80px; height: 80px; object-fit: contain; filter: drop-shadow(0 0 20px rgba(212,175,55,.5)); }
.download-grid h2 { margin-top: 18px; font-size: clamp(26px, 4vw, 36px); font-weight: 800; text-align: left; }
.download-grid .store-row { margin-top: 26px; }
.check-list { display: flex; flex-direction: column; gap: 14px; }
.check-list li { display: flex; gap: 14px; background: rgba(10,10,10,.6); border: 1px solid var(--border); border-radius: 16px; padding: 18px 20px; font-size: 14px; color: var(--silver); }
.check-list li span { color: var(--gold); font-size: 20px; line-height: 1.2; }
.check-list strong { color: #fff; }

/* Planes */
.plans { align-items: stretch; }
.plan { background: var(--card); border: 1px solid var(--border); border-radius: 24px; padding: 32px; }
.plan h3 { font-size: 20px; font-weight: 800; }
.plan h3 small { font-size: 13px; font-weight: 700; }
.price { margin-top: 14px; font-size: 38px; font-weight: 900; }
.price small { font-size: 14px; color: var(--muted); font-weight: 500; }
.plan ul { margin: 22px 0 28px; display: flex; flex-direction: column; gap: 10px; font-size: 14px; color: var(--silver); }
.plan-featured-wrap { position: relative; background: var(--gold-gradient); border-radius: 24px; padding: 1.5px; box-shadow: 0 0 50px rgba(212,175,55,.35); }
.popular { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); font-size: 11px; font-weight: 900; letter-spacing: 0.14em; background: #000; color: var(--gold-light); border: 1px solid rgba(212,175,55,.6); border-radius: 999px; padding: 4px 16px; white-space: nowrap; }
.plan-dark { background: var(--ink); border: none; height: 100%; }

/* FAQ */
.faq { margin-top: 40px; display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid var(--border); background: rgba(28,28,30,.6); border-radius: 16px; overflow: hidden; transition: border-color 0.2s ease; }
.faq-item.open { border-color: rgba(212,175,55,.6); background: var(--card); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; background: none; border: none; color: #fff; font: inherit; font-weight: 600; font-size: 15px; text-align: left; padding: 20px 24px; cursor: pointer; }
.faq-icon { flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%; border: 1px solid rgba(255,255,255,.2); display: flex; align-items: center; justify-content: center; font-size: 20px; color: var(--muted); transition: transform 0.25s ease, color 0.2s, border-color 0.2s; }
.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--gold); border-color: var(--gold); }
.faq-a { display: none; padding: 0 24px 24px; font-size: 14px; color: var(--silver); }
.faq-item.open .faq-a { display: block; }

/* CTA final */
.final-cta { background: var(--gold-gradient); color: #000; border-radius: 32px; padding: 48px 32px; text-align: center; box-shadow: 0 0 50px rgba(212,175,55,.35); }
@media (min-width: 768px) { .final-cta { padding: 60px 56px; } }
.final-cta img { width: 80px; height: 80px; object-fit: contain; margin: 0 auto; }
.final-cta h2 { margin-top: 16px; font-size: clamp(28px, 4.5vw, 40px); font-weight: 900; line-height: 1.15; }
.final-cta p { margin-top: 10px; color: rgba(0,0,0,.68); font-weight: 500; }
.final-cta-actions { margin-top: 28px; display: flex; flex-direction: column; gap: 12px; justify-content: center; }
@media (min-width: 640px) { .final-cta-actions { flex-direction: row; } }

/* Footer */
.footer { border-top: 1px solid var(--border); background: var(--ink-soft); }
.footer-grid { display: grid; gap: 36px; padding-top: 56px; padding-bottom: 48px; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.footer h4 { font-size: 12px; font-weight: 800; letter-spacing: 0.25em; color: var(--gold); }
.footer ul { margin-top: 16px; display: flex; flex-direction: column; gap: 10px; font-size: 14px; color: var(--silver); }
.footer ul a:hover { color: var(--gold-light); }
.footer-bottom { border-top: 1px solid var(--border); }
.footer-bottom-inner { display: flex; flex-direction: column; gap: 6px; padding-top: 20px; padding-bottom: 20px; font-size: 12px; color: var(--muted); }
@media (min-width: 640px) { .footer-bottom-inner { flex-direction: row; justify-content: space-between; } }

/* Anclas con header fijo */
section[id] { scroll-margin-top: 80px; }

/* ── Pago con Kushki ─────────────────────── */
.env-note { text-align: center; margin-top: 14px; font-size: 14px; color: var(--silver); display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap; }
.test-badge { font-size: 11px; font-weight: 900; letter-spacing: 0.14em; background: rgba(212,175,55,.14); color: var(--gold-light); border: 1px solid rgba(212,175,55,.55); border-radius: 999px; padding: 5px 14px; }
.test-badge.live { background: rgba(46,125,50,.18); color: #7ddf8a; border-color: rgba(46,125,50,.6); }

.pay-grid { margin-top: 44px; display: grid; gap: 20px; align-items: start; }
@media (min-width: 960px) { .pay-grid { grid-template-columns: 0.9fr 1.1fr; } }

.pay-summary { background: var(--card-gradient); border: 1px solid rgba(212,175,55,.4); border-radius: 24px; padding: 32px; box-shadow: 0 18px 40px rgba(0,0,0,.45); }
.pay-summary h3 { font-size: 19px; font-weight: 800; }
.pay-summary ul { margin: 20px 0; display: flex; flex-direction: column; gap: 10px; font-size: 14px; color: var(--silver); }
.hint-box { background: rgba(10,10,10,.6); border: 1px dashed rgba(212,175,55,.5); border-radius: 16px; padding: 16px 18px; font-size: 13px; color: var(--silver); display: flex; flex-direction: column; gap: 6px; }
.hint-box strong { color: var(--gold-light); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; }
.hint-box code { font-size: 17px; font-weight: 800; letter-spacing: 0.06em; color: #fff; font-family: ui-monospace, monospace; }

.pay-form { background: var(--card); border: 1px solid var(--border); border-radius: 24px; padding: 32px; }
@media (max-width: 560px) { .pay-form, .pay-summary { padding: 24px 20px; } }
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; flex: 1; }
.field-row { display: flex; gap: 14px; }
.field-row .field { margin-bottom: 16px; }
.field-doc-type { max-width: 96px; }
.field label { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--silver); }
.field input, .field select {
  background: #1e1e1e; border: 1px solid rgba(255,255,255,.12); border-radius: 14px;
  color: #fff; font: inherit; font-size: 15px; padding: 13px 16px; width: 100%;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.field input::placeholder { color: var(--muted); }
.field input:focus, .field select:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212,175,55,.18); }
.field select option { background: #1e1e1e; }
.form-error { display: none; color: #ff9d9d; font-size: 14px; font-weight: 600; margin: 4px 0 14px; }
.form-error.show { display: block; }
.secure-note { margin-top: 14px; text-align: center; font-size: 12px; color: var(--muted); }
.pay-result { margin-top: 18px; border-radius: 16px; padding: 18px 20px; font-size: 14px; }
.pay-result.success { background: rgba(46,125,50,.14); border: 1px solid rgba(46,125,50,.55); color: #c9f0cd; }
.pay-result.error { background: rgba(183,28,28,.12); border: 1px solid rgba(183,28,28,.55); color: #ffc9c9; }
.pay-result strong { display: block; font-size: 15px; margin-bottom: 4px; }
.pay-result code { font-family: ui-monospace, monospace; }
.btn-gold[disabled] { opacity: 0.65; cursor: wait; transform: none; }
