:root {
  --bg: #020310;
  --bg-alt: #050518;
  --bg-soft: rgba(8, 8, 24, 0.85);
  --accent: #4b8cff;
  --accent-2: #a368ff;
  --accent-soft: rgba(75, 140, 255, 0.14);
  --text: #f7f7ff;
  --text-muted: #a3a3c2;
  --border-subtle: rgba(110, 110, 180, 0.4);
  --radius-lg: 20px;
  --radius-md: 14px;
  --shadow-soft: 0 24px 60px rgba(0, 0, 0, 0.9);
  --max-width: 1160px;
  --transition-fast: 0.18s ease-out;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top, #181833 0, #02010b 55%) fixed;
  overflow-x: hidden;
}

/* FONDO DE PARTICULAS */
#bg-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: -2;
}

.gradient-overlay {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 10% 0%, rgba(75, 140, 255, 0.25), transparent 60%),
    radial-gradient(circle at 85% 20%, rgba(163, 104, 255, 0.25), transparent 55%),
    radial-gradient(circle at 50% 100%, rgba(20, 200, 180, 0.18), transparent 55%);
  mix-blend-mode: screen;
  opacity: 0.8;
  z-index: -1;
}

/* GLASS */
.glass {
  background: linear-gradient(
      135deg,
      rgba(9, 9, 26, 0.88),
      rgba(9, 9, 26, 0.4)
    );
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(18px);
}

.glass-hover {
  background: radial-gradient(
      circle at top left,
      rgba(75, 140, 255, 0.16),
      transparent 60%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(163, 104, 255, 0.12),
      transparent 55%
    ),
    rgba(9, 9, 26, 0.9);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast),
    border-color var(--transition-fast),
    background var(--transition-fast);
}

.glass-hover:hover {
  transform: translateY(-4px) translateZ(0);
  box-shadow: var(--shadow-soft);
  border-color: rgba(75, 140, 255, 0.5);
}

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  margin: 14px auto 0;
  max-width: var(--max-width);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 18px;
}

.nav__brand {
  display: flex;
  flex-direction: column;
}

.nav__logo {
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.nav__tagline {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.83rem;
}

.nav__links a {
  color: var(--text-muted);
  text-decoration: none;
  position: relative;
  padding: 4px 0;
}

.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transition: width var(--transition-fast);
}

.nav__links a:hover {
  color: var(--text);
}

.nav__links a:hover::after {
  width: 100%;
}

.nav__cta {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: radial-gradient(
    circle at top left,
    rgba(75, 140, 255, 0.45),
    rgba(75, 140, 255, 0.1)
  );
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.75);
}

/* HERO */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 32px;
  max-width: var(--max-width);
  margin: 32px auto 0;
  padding: 24px 18px 40px;
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.hero__title {
  margin: 0;
  font-size: clamp(2.2rem, 3vw, 2.9rem);
  line-height: 1.08;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hero__title-gradient {
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.hero__subtitle {
  color: var(--text-muted);
  max-width: 36rem;
  font-size: 0.95rem;
}

.hero__cta-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.dot {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: var(--text-muted);
}

.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}

/* CHIP */
.chip {
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
}

/* HERO VISUAL */
.hero__visual {
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
}

.hero__card {
  min-width: 260px;
  max-width: 320px;
  border-radius: 18px;
  padding: 16px 18px;
  box-shadow: var(--shadow-soft);
}

.hero__card-title {
  margin: 0 0 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.hero__card-list {
  margin: 0;
  padding-left: 18px;
  font-size: 0.85rem;
  color: var(--text);
}

.hero__card-footer {
  margin-top: 10px;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* SECCIONES */
.section {
  max-width: var(--max-width);
  margin: 8px auto 0;
  padding: 24px 18px 38px;
}

.section--dark {
  border-radius: var(--radius-lg);
  background: linear-gradient(
    145deg,
    rgba(12, 12, 30, 0.9),
    rgba(6, 6, 18, 0.95)
  );
  box-shadow: var(--shadow-soft);
}

.section__header {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 24px;
}

.section__header h2 {
  font-size: 1.4rem;
}

.section__header p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* CARDS */
.cards {
  display: grid;
  gap: 18px;
}

.cards--grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.card {
  padding: 16px 18px;
}

.card h3 {
  margin: 0 0 6px;
  font-size: 1rem;
}

.card p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.card__short {
  margin-bottom: 6px;
}

/* PROYECTOS */
.card--project .card__head {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 6px;
}

.card__badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--accent-soft);
  color: var(--accent);
}

.card__tags {
  list-style: none;
  padding: 0;
  margin: 8px 0 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.card__tags li {
  font-size: 0.7rem;
  padding: 3px 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-muted);
}

.card__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}

.card__link {
  font-size: 0.78rem;
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.card__link:hover {
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-1px);
}

.card__link--muted {
  color: var(--text-muted);
  cursor: default;
}

.card__link--secondary {
  border-style: dashed;
  color: var(--text-muted);
}

/* STACK */
.stack-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 16px;
}

.stack-group {
  padding: 14px 14px 12px;
}

.stack-group h3 {
  margin: 0 0 8px;
  font-size: 0.9rem;
}

.stack-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.stack-group li::before {
  content: "• ";
  color: var(--accent);
}

/* LANDING */
.section--landing {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 24px;
  margin-top: 16px;
  border-radius: var(--radius-lg);
  padding: 26px 18px 32px;
  background: radial-gradient(circle at top left, #171733, #050510);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.landing__content {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.landing__bullets {
  margin: 0;
  padding-left: 18px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.landing__cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

.landing__note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.landing__side {
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
}

.landing__box {
  border-radius: var(--radius-md);
  padding: 16px 18px;
  font-size: 0.85rem;
}

.landing__box h3 {
  margin: 0 0 8px;
  font-size: 0.9rem;
}

.landing__box ul {
  margin: 0;
  padding-left: 18px;
}

/* AUTH */
.section--auth {
  margin-top: 24px;
}

.auth {
  max-width: 620px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  padding: 18px 18px 20px;
  box-shadow: var(--shadow-soft);
}

.auth__tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.auth__tab {
  flex: 1;
  border-radius: 999px;
  border: 0;
  padding: 7px 10px;
  font-size: 0.85rem;
  cursor: pointer;
  background: transparent;
  color: var(--text-muted);
  transition: background var(--transition-fast), color var(--transition-fast),
    transform var(--transition-fast);
}

.auth__tab--active {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  transform: translateY(-1px);
}

.auth__panels {
  position: relative;
}

.auth__panel {
  display: none;
  flex-direction: column;
  gap: 8px;
}

.auth__panel--active {
  display: flex;
}

.auth__options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  margin: 4px 0 8px;
}

.auth__remember {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--text-muted);
}

.auth__link {
  color: var(--accent);
  text-decoration: none;
  font-size: 0.8rem;
}

.auth__link:hover {
  text-decoration: underline;
}

.auth__note {
  margin: 4px 0 0;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* FORMULARIOS COMUNES */
.form__row {
  display: flex;
  gap: 12px;
  margin-bottom: 10px;
}

.form__field {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 10px;
}

.form__field label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.form__field input,
.form__field select,
.form__field textarea {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 10px;
  background: rgba(7, 7, 20, 0.9);
  color: var(--text);
  font: inherit;
}

.form__field input:focus,
.form__field select:focus,
.form__field textarea:focus {
  outline: none;
  border-color: var(--accent);
}

/* CONTACT */
.section--contact {
  margin-top: 24px;
}

.contact-form {
  border-radius: var(--radius-lg);
  padding: 20px 18px 22px;
  box-shadow: var(--shadow-soft);
  font-size: 0.9rem;
}

.btn--full {
  width: 100%;
  margin-top: 5px;
}

.contact-form__hint {
  margin: 8px 0 0;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* BOTONES */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    background var(--transition-fast),
    transform var(--transition-fast),
    box-shadow var(--transition-fast),
    border-color var(--transition-fast);
}

.btn--primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-color: rgba(255, 255, 255, 0.12);
  color: white;
  box-shadow: var(--shadow-soft);
}

.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.85);
}

.btn--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--text-muted);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

/* FOOTER */
.footer {
  max-width: var(--max-width);
  margin: 18px auto 24px;
  padding: 0 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.footer__brand {
  display: flex;
  flex-direction: column;
}

.footer__logo {
  font-weight: 600;
}

.footer__tagline {
  font-size: 0.7rem;
}

.footer__links {
  display: flex;
  gap: 12px;
}

.footer__links a {
  color: var(--text-muted);
  text-decoration: none;
}

.footer__links a:hover {
  color: var(--text);
}

/* ANIMACION REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.4s ease-out,
    transform 0.4s ease-out;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 860px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
    border-radius: 18px;
    padding-inline: 14px;
  }

  .nav__links {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .hero,
  .section--landing {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-inline: 16px;
  }

  .section {
    padding-inline: 16px;
  }

  .form__row {
    flex-direction: column;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}

/* CONTENT MODAL */
.content-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.content-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  cursor: pointer;
}

.content-modal__content {
  position: relative;
  max-width: 900px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 40px;
  z-index: 1;
  animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.content-modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.content-modal__close:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--accent);
}

.content-modal__image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: 24px;
}

.content-modal__header {
  margin-bottom: 24px;
}

.content-modal__header h2 {
  font-size: 2rem;
  margin: 12px 0;
  color: var(--text);
}

.content-modal__meta {
  display: flex;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.875rem;
}

.content-modal__body {
  color: var(--text);
  line-height: 1.8;
  font-size: 1.05rem;
}

.content-modal__body p {
  margin-bottom: 16px;
}

.content-modal__body h3 {
  margin-top: 24px;
  margin-bottom: 12px;
  color: var(--accent);
}

/* NOTIFICATIONS */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 16px 24px;
  border-radius: var(--radius-md);
  background: rgba(9, 9, 26, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  color: var(--text);
  font-weight: 500;
  z-index: 2000;
  transform: translateX(400px);
  transition: transform 0.3s ease-out;
  box-shadow: var(--shadow-soft);
  max-width: 400px;
}

.notification--show {
  transform: translateX(0);
}

.notification--success {
  border-color: rgba(16, 185, 129, 0.5);
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(9, 9, 26, 0.95));
}

.notification--error {
  border-color: rgba(239, 68, 68, 0.5);
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.2), rgba(9, 9, 26, 0.95));
}

.notification--info {
  border-color: rgba(75, 140, 255, 0.5);
  background: linear-gradient(135deg, rgba(75, 140, 255, 0.2), rgba(9, 9, 26, 0.95));
}

/* BADGES */
.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.badge-draft {
  background: rgba(245, 158, 11, 0.2);
  color: #fbbf24;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.badge-published {
  background: rgba(16, 185, 129, 0.2);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.badge-archived {
  background: rgba(156, 163, 175, 0.2);
  color: #9ca3af;
  border: 1px solid rgba(156, 163, 175, 0.3);
}

.badge-post, .badge-page, .badge-product {
  background: rgba(75, 140, 255, 0.2);
  color: var(--accent);
  border: 1px solid rgba(75, 140, 255, 0.3);
}

/* RESPONSIVE MODAL */
@media (max-width: 768px) {
  .content-modal__content {
    padding: 24px;
    max-height: 90vh;
  }

  .content-modal__header h2 {
    font-size: 1.5rem;
  }

  .content-modal__image {
    height: 200px;
  }

  .notification {
    top: 10px;
    right: 10px;
    left: 10px;
    max-width: none;
  }
}
.catalog-toolbar { display: flex; gap: .75rem; flex-wrap: wrap; margin: 1.5rem 0 2rem; }
.catalog-toolbar input, .catalog-toolbar select { min-height: 2.8rem; padding: .75rem 1rem; border: 1px solid rgba(148,163,184,.28); border-radius: .75rem; background: rgba(15,23,42,.72); color: #f8fafc; }
.catalog-toolbar input { flex: 1 1 18rem; }
.catalog-toolbar select { flex: 0 1 15rem; }
.application-card { min-height: 18rem; display: flex; flex-direction: column; }
.application-card__top { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.application-card__mark { display: grid; place-items: center; width: 2.75rem; height: 2.75rem; border-radius: .8rem; background: linear-gradient(135deg, #22d3ee, #6366f1); color: #07111f; font-weight: 800; }
.application-card__tech { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: auto; padding-top: 1rem; }
.application-card__tech span { padding: .28rem .55rem; border-radius: 999px; color: #cbd5e1; background: rgba(148,163,184,.12); font-size: .78rem; }
.catalog-empty { grid-column: 1 / -1; padding: 2rem; border: 1px dashed rgba(148,163,184,.35); border-radius: 1rem; color: #cbd5e1; }

/* LA-DSIGN product studio visual system */
:root { --bg: #071019; --bg-alt: #0b1720; --accent: #b7f36b; --accent-2: #72d6c4; --accent-soft: rgba(183,243,107,.13); --text: #f4f7ef; --text-muted: #9aa9ad; --max-width: 1240px; --shadow-soft: 0 28px 80px rgba(0,0,0,.38); }
body { background: #071019; background-image: linear-gradient(135deg, rgba(183,243,107,.04), transparent 35%), radial-gradient(circle at 82% 8%, rgba(114,214,196,.12), transparent 30%); letter-spacing: -.01em; }
.gradient-overlay { opacity: .46; mix-blend-mode: normal; background: radial-gradient(circle at 8% 0%, rgba(183,243,107,.11), transparent 32%), radial-gradient(circle at 92% 16%, rgba(114,214,196,.12), transparent 30%); }
.glass { background: rgba(10,24,31,.78); border-color: rgba(244,247,239,.1); border-radius: 18px; }
.nav { margin-top: 18px; padding: 14px 20px; border-radius: 14px; }
.nav__logo, .footer__logo { letter-spacing: -.06em; text-transform: none; font-size: 1.1rem; }
.nav__tagline { color: var(--accent); letter-spacing: .04em; }
.nav__links { gap: 22px; }
.nav__links a { color: #b4c0c1; }
.nav__cta { color: var(--bg) !important; background: var(--accent); border-color: var(--accent); font-weight: 700; padding: 8px 14px; }
.hero { min-height: 680px; align-items: center; margin-top: 38px; padding-top: 48px; padding-bottom: 72px; }
.hero__content { gap: 20px; max-width: 700px; }
.hero__eyebrow { color: var(--accent); font-size: .72rem; font-weight: 700; letter-spacing: .18em; }
.hero__title { font-size: clamp(3.3rem, 7vw, 6.7rem); letter-spacing: -.075em; line-height: .94; }
.hero__title-gradient { font-size: clamp(2.7rem, 5vw, 5rem); letter-spacing: -.09em; text-transform: none; color: var(--accent); background: none; }
.hero__subtitle { max-width: 38rem; font-size: 1.1rem; line-height: 1.65; color: #b5c1c2; }
.btn--primary { color: #071019; background: var(--accent); border-color: var(--accent); box-shadow: 0 12px 34px rgba(183,243,107,.15); }
.btn--primary:hover { background: #d0ff9b; }
.btn--ghost { border-color: rgba(244,247,239,.22); }
.chip { color: #c8d2d1; background: rgba(244,247,239,.04); border-color: rgba(244,247,239,.1); }
.hero__meta { color: #87999d; }
.hero__proof { display: flex; flex-wrap: wrap; gap: 34px; margin-top: 16px; padding-top: 22px; border-top: 1px solid rgba(244,247,239,.12); }
.hero__proof div { display: grid; gap: 4px; }
.hero__proof strong { color: var(--accent); font-size: 1.45rem; letter-spacing: -.05em; }
.hero__proof span { color: #839397; font-size: .72rem; }
.hero__visual { justify-content: center; }
.hero__product-board { width: min(100%, 430px); min-height: 430px; padding: 24px; border-radius: 24px; display: flex; flex-direction: column; justify-content: space-between; box-shadow: 0 30px 90px rgba(0,0,0,.42); background: linear-gradient(145deg, rgba(25,46,48,.95), rgba(10,24,31,.88)); }
.hero__board-top, .hero__board-footer { display: flex; align-items: center; gap: 8px; color: #8fa5a4; font-size: .66rem; letter-spacing: .11em; }
.hero__board-code { margin-left: auto; color: var(--accent); }
.status-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 15px var(--accent); }
.hero__board-core { padding: 72px 0 46px; }
.hero__board-kicker { display: block; margin-bottom: 14px; color: var(--accent); font-size: .72rem; text-transform: uppercase; letter-spacing: .16em; }
.hero__board-core strong { display: block; font-size: clamp(2rem,4vw,3rem); letter-spacing: -.07em; line-height: .98; }
.hero__board-core p { color: #a8b8b5; line-height: 1.5; }
.hero__board-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.hero__board-grid span { padding: 12px; border: 1px solid rgba(244,247,239,.1); border-radius: 10px; color: #c1cfca; font-size: .72rem; }
.hero__board-footer { padding-top: 16px; border-top: 1px solid rgba(244,247,239,.1); justify-content: space-between; }
.hero__board-footer span:last-child { color: var(--accent); }
.section { padding-top: 74px; padding-bottom: 74px; }
.section__header { max-width: 720px; margin-bottom: 30px; }
.section__header h2 { margin-bottom: 8px; font-size: clamp(2rem,4vw,3.4rem); letter-spacing: -.065em; line-height: 1; }
.section__header p { max-width: 620px; line-height: 1.6; font-size: 1rem; }
.section--dark { background: rgba(10,24,31,.6); border: 1px solid rgba(244,247,239,.07); }
.cards { gap: 12px; }
.card { padding: 22px; border-radius: 16px; }
.card h3 { font-size: 1.15rem; letter-spacing: -.025em; }
.glass-hover:hover { border-color: rgba(183,243,107,.38); box-shadow: 0 18px 50px rgba(0,0,0,.25); }
.catalog-toolbar input, .catalog-toolbar select { min-height: 44px; color: var(--text); background: rgba(244,247,239,.05); border-color: rgba(244,247,239,.14); border-radius: 10px; }
.catalog-toolbar input:focus, .catalog-toolbar select:focus { outline: 2px solid rgba(183,243,107,.35); border-color: var(--accent); }
.application-card { min-height: 250px; background: linear-gradient(145deg, rgba(20,38,42,.88), rgba(10,24,31,.72)); border: 1px solid rgba(244,247,239,.1); }
.application-card__top { margin-bottom: 22px; }
.application-card__mark { width: 38px; height: 38px; border-radius: 11px; color: var(--bg); background: var(--accent); font-size: .78rem; }
.application-card .card__eyebrow { color: var(--accent-2); font-size: .68rem; text-transform: uppercase; letter-spacing: .12em; }
.application-card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.application-card .card__detail { line-height: 1.55; }
.application-card__tech span { border: 1px solid rgba(244,247,239,.1); border-radius: 6px; color: #91a19f; background: transparent; font-size: .66rem; }
.badge { color: var(--accent); background: var(--accent-soft); border-color: rgba(183,243,107,.18); }
.section--landing { margin-top: 28px; background: linear-gradient(135deg, #18383a, #0b1720 65%); border-color: rgba(183,243,107,.2); }
.landing__content h2 { font-size: clamp(2rem,4vw,3.5rem); letter-spacing: -.06em; line-height: 1; }
@media (max-width: 820px) { .nav__links a:not(.nav__cta) { display: none; } .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 40px; } .hero__visual { justify-content: flex-start; } .hero__product-board { min-height: 350px; } }
.application-card__preview { position: relative; min-height: 126px; margin: -1.35rem -1.35rem 1.25rem; padding: 14px 16px; overflow: hidden; border-bottom: 1px solid rgba(244,247,239,.1); background: linear-gradient(135deg, rgba(183,243,107,.16), rgba(114,214,196,.08) 58%, rgba(8,17,26,.8)); }
.hero { opacity: 1 !important; transform: none !important; }
section, .section { opacity: 1 !important; transform: none !important; }
.application-card__preview::after { content: ''; position: absolute; width: 150px; height: 150px; right: -52px; top: -64px; border-radius: 50%; background: rgba(183,243,107,.15); filter: blur(2px); }
.preview--finanzas, .preview--seguridad { background: linear-gradient(135deg, rgba(114,214,196,.19), rgba(10,31,37,.8)); }
.preview--ia-y-desarrollo, .preview--plataformas-e-ia { background: linear-gradient(135deg, rgba(183,243,107,.2), rgba(35,30,61,.76)); }
.preview--generadores, .preview--dise-o { background: linear-gradient(135deg, rgba(224,185,255,.14), rgba(10,26,38,.82)); }
.preview__chrome { position: relative; z-index: 1; display: flex; align-items: center; gap: 5px; color: rgba(244,247,239,.48); font: 600 .52rem/1 var(--font-mono); letter-spacing: .12em; }
.preview__chrome span { width: 5px; height: 5px; border-radius: 50%; background: rgba(244,247,239,.38); }
.preview__chrome small { margin-left: auto; font-size: .48rem; }
.preview__dashboard { position: relative; z-index: 1; display: flex; align-items: center; gap: 8px; margin-top: 26px; color: var(--paper); font-size: .78rem; }
.preview__dashboard i { width: 24px; height: 7px; border-radius: 3px; background: rgba(244,247,239,.26); }
.preview__dashboard i:first-child { width: 36px; background: var(--accent); }
.preview__dashboard b { margin-left: auto; max-width: 46%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font: 500 .58rem/1.2 var(--font-mono); color: rgba(244,247,239,.7); }
.preview__bars { position: relative; z-index: 1; display: flex; align-items: end; gap: 5px; height: 28px; margin-top: 12px; }
.preview__bars em { display: block; width: 13px; height: 12px; border-radius: 2px 2px 0 0; background: rgba(114,214,196,.6); }
.preview__bars em:nth-child(2) { height: 22px; background: var(--accent); }
.preview__bars em:nth-child(3) { height: 16px; background: rgba(244,247,239,.5); }
.preview__bars em:nth-child(4) { height: 26px; background: rgba(114,214,196,.8); }
