:root {
  --bg: #070c13;
  --bg2: #050812;
  --text: #e8edf6;
  --muted: rgba(232, 237, 246, .70);
  --muted2: rgba(232, 237, 246, .55);

  --primary: #22c55e;
  --primary2: #38bdf8;

  --border: rgba(255, 255, 255, .10);
  --border2: rgba(255, 255, 255, .08);
  --shadow: 0 28px 90px rgba(0, 0, 0, .55);
  --shadow2: 0 14px 45px rgba(0, 0, 0, .40);

  --radius: 18px;
  --radius2: 14px;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  /* Single Unique Color (Visible Greenish-Teal Semi-Dark) */
  background: linear-gradient(180deg, #134e4a 0%, #042f2e 100%);
  background-attachment: fixed;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button {
  font-family: inherit;
}

/* =======================
   CONTAINER (fix real)
   - No metas padding vertical aquí
======================= */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* =======================
   Noise
======================= */
.bg-noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  opacity: .07;
  mix-blend-mode: overlay;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='190' height='190'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='190' height='190' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
}

/* =======================
   TOPBAR (glass)
======================= */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: linear-gradient(180deg, rgba(6, 10, 18, .78), rgba(6, 10, 18, .35));
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 250px;
}

.brand__mark {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 900;
  color: #03130b;
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  box-shadow: 0 18px 45px rgba(34, 197, 94, .18);
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.08;
}

.brand__name {
  font-weight: 900;
  letter-spacing: .3px;
}

.brand__tag {
  font-size: 12px;
  color: rgba(232, 237, 246, .58);
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .08);
  background: rgba(255, 255, 255, .035);
  box-shadow: 0 14px 40px rgba(0, 0, 0, .25);
}

.nav__link {
  font-size: 13px;
  color: rgba(232, 237, 246, .78);
  padding: 10px 12px;
  border-radius: 999px;
  transition: .18s ease;
}

.nav__link:hover {
  color: rgba(232, 237, 246, .98);
  background: rgba(255, 255, 255, .05);
}

.topbar__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, .03);
  color: rgba(232, 237, 246, .92);
  font-weight: 800;
  font-size: 13px;
  cursor: pointer;
  transition: .18s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .20);
}

.btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, .055);
}

.btn--ghost {
  background: rgba(255, 255, 255, .02);
}

.btn--primary {
  border: none;
  color: #04140b;
  background: linear-gradient(135deg, var(--primary), #16a34a);
  box-shadow: 0 18px 55px rgba(34, 197, 94, .22);
}

.btn--big {
  padding: 12px 16px;
  border-radius: 16px;
}

.w-full {
  width: 100%;
}

/* Hamburger + mobile */
.hamburger {
  display: none;
  width: 46px;
  height: 44px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(255, 255, 255, .03);
  cursor: pointer;
}

.hamburger span {
  display: block;
  height: 2px;
  width: 18px;
  margin: 4px auto;
  background: rgba(232, 237, 246, .88);
  border-radius: 2px;
  transition: .18s ease;
}

.hamburger--open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.hamburger--open span:nth-child(2) {
  opacity: 0;
}

.hamburger--open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, .06);
  background: rgba(6, 10, 18, .55);
}

.mobile__inner {
  display: grid;
  gap: 10px;
  padding: 16px 0 18px;
}

.mobile__link {
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .08);
  color: rgba(232, 237, 246, .82);
  background: rgba(255, 255, 255, .02);
}

.mobile__cta {
  display: grid;
  gap: 10px;
  margin-top: 6px;
}

.mobile--open {
  display: block;
}

@media (max-width: 920px) {
  .nav {
    display: none;
  }

  .hamburger {
    display: inline-block;
  }

  .brand {
    min-width: auto;
  }
}

/* =======================
   SECTIONS (te faltaba)
======================= */
.section {
  padding: clamp(2.5rem, 5vw, 3.5rem) 0;
}

.section--tight {
  padding: 1.5rem 0;
}

.section__head {
  max-width: 720px;
  margin-bottom: 1.5rem;
}

.section__title {
  margin: 0 0 .6rem;
  font-size: 34px;
  letter-spacing: -0.02em;
}

.section__subtitle {
  margin: 0;
  color: rgba(232, 237, 246, .70);
  line-height: 1.65;
  max-width: 720px;
}

/* =======================
   HERO
======================= */
.hero {
  position: relative;
  padding: clamp(2rem, 4vw, 2.5rem) 0 1.25rem;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(900px 520px at 18% 15%, rgba(34, 197, 94, .22), transparent 62%),
    radial-gradient(780px 520px at 70% 18%, rgba(56, 189, 248, .18), transparent 62%),
    radial-gradient(1200px 900px at 50% 45%, rgba(0, 0, 0, .55), transparent 55%);
  filter: blur(18px);
  opacity: .75;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 34px;
  align-items: center;
}

@media (max-width: 980px) {
  .hero__inner {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    justify-content: center;
    margin-top: 40px;
  }
}

.hero__content {
  max-width: 620px;
}

/* Drastically Enhanced Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 99px;
  border: 1px solid rgba(16, 185, 129, 0.4);
  background: rgba(16, 185, 129, 0.08);
  color: #6ee7b7;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.2);
  margin-bottom: 24px;
}

.badge__sep {
  opacity: 0.6;
  margin: 0 4px;
}

.hero__title {
  margin: 10px 0 16px;
  font-size: clamp(48px, 6vw, 76px);
  /* Much Bigger */
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-weight: 800;
}

.hero__accent,
.hero-rainbow {
  background: linear-gradient(135deg, #22c55e 0%, #06b6d4 50%, #3b82f6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  padding-right: 0.1em;
  /* Avoid clipping */
  text-shadow: 0 0 30px rgba(34, 197, 94, 0.3);
  /* Glow text */
}

.hero__subtitle {
  margin: 0 0 24px;
  color: rgba(232, 237, 246, .85);
  /* Whiter text */
  font-size: 18px;
  /* Bigger sub */
  line-height: 1.7;
  max-width: 580px;
}

.hero__cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.hero__proof {
  margin-top: 18px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.proof-pill {
  padding: .5rem .8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .06);
  font-size: .95rem;
  color: rgba(232, 237, 246, .9);
  font-weight: 500;
}

.trust {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(232, 237, 246, .65);
  font-size: 13px;
}

.trust__dots span {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .2);
  margin-right: 6px;
}

.hero__visual {
  display: flex;
  justify-content: flex-end;
  animation: float 5s ease-in-out infinite;
  /* Speed up slightly */
  filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.5));
  /* Deep depth shadow */
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }

  /* Stronger float */

  100% {
    transform: translateY(0px);
  }
}

/* =======================
   CORE CARD (AHORA SÍ con tus clases del HTML)
======================= */
.core-card {
  width: 100%;
  max-width: 520px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, .10);
  background:
    radial-gradient(120% 120% at 15% 10%, rgba(34, 197, 94, .12), transparent 55%),
    radial-gradient(120% 120% at 85% 10%, rgba(56, 189, 248, .10), transparent 55%),
    linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .02));
  box-shadow: var(--shadow);
  padding: 18px;
  position: relative;
  overflow: hidden;
}

.core-card__lines {
  position: absolute;
  inset: -45%;
  background:
    radial-gradient(closest-side, rgba(34, 197, 94, .20), transparent 70%),
    radial-gradient(closest-side, rgba(56, 189, 248, .16), transparent 70%);
  filter: blur(34px);
  opacity: .62;
  pointer-events: none;
}

.core-card__top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}

.core-chip {
  font-weight: 900;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(0, 0, 0, .16);
}

.core-status {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(232, 237, 246, .70);
  font-size: 12px;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(34, 197, 94, .92);
  box-shadow: 0 0 0 7px rgba(34, 197, 94, .12);
}

.core-main {
  position: relative;
  z-index: 1;
  padding: 14px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, .08);
  background: rgba(0, 0, 0, .14);
  box-shadow: var(--shadow2);
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
}

.core-bubble {
  width: 54px;
  height: 54px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(255, 255, 255, .04);
}

.core-title {
  font-weight: 900;
  font-size: 16px;
}

.core-sub {
  font-size: 12px;
  color: rgba(232, 237, 246, .62);
}

.core-mini {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.core-side {
  position: relative;
  z-index: 1;
  margin-top: 12px;
}

.mini-card {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, .08);
  background: rgba(0, 0, 0, .16);
  box-shadow: var(--shadow2);
}

.mini-card--glass {
  background:
    radial-gradient(120% 120% at 18% 25%, rgba(34, 197, 94, .14), transparent 60%),
    rgba(0, 0, 0, .14);
  border-color: rgba(34, 197, 94, .18);
}

.mini-ico {
  width: 42px;
  height: 42px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(255, 255, 255, .04);
}

.mini-title {
  font-weight: 900;
}

.mini-sub {
  font-size: 12px;
  color: rgba(232, 237, 246, .62);
  margin-top: 2px;
}

/* responsive para la card */
@media (max-width: 520px) {
  .core-mini {
    grid-template-columns: 1fr;
  }
}

/* =======================
   LOGO BAR (nuevo)
======================= */
.logo-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, .08);
  background: rgba(255, 255, 255, .03);
}

.logo-bar__label {
  opacity: .8;
}

.logo-bar__items {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  justify-content: flex-end;
}

.logo-pill {
  padding: .4rem .65rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(0, 0, 0, .18);
  font-size: .9rem;
  opacity: .9;
}

/* =======================
   FEATURE CARDS
======================= */
.cards {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (max-width: 980px) {
  .cards {
    grid-template-columns: 1fr;
  }
}

.feature {
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .08);
  background: rgba(255, 255, 255, .03);
  box-shadow: var(--shadow2);
}

.feature__icon {
  width: 46px;
  height: 46px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, .18);
  border: 1px solid rgba(255, 255, 255, .10);
  margin-bottom: 12px;
}

.feature__title {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 900;
}

.feature__text {
  margin: 0 0 12px;
  color: rgba(232, 237, 246, .70);
  line-height: 1.65;
}

.feature__link {
  display: inline-flex;
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .08);
  background: rgba(0, 0, 0, .16);
  color: rgba(232, 237, 246, .86);
}

.feature__link:hover {
  background: rgba(255, 255, 255, .05);
}

/* =======================
   WORKFLOW
======================= */
.workflow {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 26px;
  align-items: center;
}

@media (max-width: 980px) {
  .workflow {
    grid-template-columns: 1fr;
  }
}

.workflow__list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 10px;
}

.bullet {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 10px;
  margin-right: 10px;
  background: rgba(34, 197, 94, .14);
  border: 1px solid rgba(34, 197, 94, .22);
  font-weight: 900;
}

.workflow__cta {
  margin-top: 16px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Flow card mock */
.flow-card {
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, .10);
  background:
    radial-gradient(120% 120% at 15% 10%, rgba(56, 189, 248, .10), transparent 55%),
    linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .02));
  box-shadow: var(--shadow);
  padding: 16px;
}

.flow-top {
  display: flex;
  gap: 6px;
  margin-bottom: 12px;
  opacity: .75;
}

.flow-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .18);
}

.flow-grid {
  display: grid;
  gap: 12px;
}

.flow-node {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, .08);
  background: rgba(0, 0, 0, .16);
  box-shadow: var(--shadow2);
}

.flow-ico {
  width: 42px;
  height: 42px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(255, 255, 255, .04);
}

.flow-title {
  font-weight: 900;
}

.flow-sub {
  font-size: 12px;
  color: rgba(232, 237, 246, .62);
  margin-top: 2px;
}

.flow-line {
  height: 10px;
  border-left: 2px dashed rgba(255, 255, 255, .14);
  margin-left: 22px;
}

/* =======================
   PRICING
======================= */
.pricing {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (max-width: 980px) {
  .pricing {
    grid-template-columns: 1fr;
  }
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  /* Top Highlight */
  background: linear-gradient(145deg, rgba(30, 41, 59, 0.4), rgba(15, 23, 42, 0.8));
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
}

.price-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px -10px rgba(0, 0, 0, 0.6);
  border-color: rgba(255, 255, 255, 0.2);
}

.price-card--hot {
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-top: 1px solid rgba(34, 197, 94, 0.5);
  background:
    radial-gradient(circle at top right, rgba(34, 197, 94, 0.15), transparent 70%),
    linear-gradient(180deg, rgba(6, 78, 59, 0.4), rgba(2, 44, 34, 0.8));
  box-shadow: 0 25px 60px -10px rgba(16, 185, 129, 0.15);
  transform: scale(1.04);
  /* Make it bigger */
  z-index: 2;
}

.price-card--hot:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 40px 80px -10px rgba(16, 185, 129, 0.25);
  border-color: rgba(34, 197, 94, 0.6);
}

.price-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 99px;
  background: linear-gradient(135deg, #22c55e, #10b981);
  color: #fff;
  box-shadow: 0 4px 10px rgba(34, 197, 94, 0.3);
}

.price-head {
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  /* Sep line */
  padding-bottom: 20px;
}

.price-name {
  font-size: 18px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 8px;
}

.price-value {
  font-size: 42px;
  /* Bigger */
  font-weight: 800;
  color: #fff;
  letter-spacing: -1px;
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.price-per {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}

.price-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
  /* Push button down */
}

.price-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: rgba(232, 237, 246, 0.7);
}

.price-list li::before {
  content: "check";
  font-family: 'Material Symbols Outlined';
  font-size: 18px;
  color: #4ade80;
  background: rgba(34, 197, 94, 0.15);
  border-radius: 50%;
  padding: 2px;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
}

/* =======================
   FOOTER
======================= */
.footer {
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, .06);
  background: linear-gradient(180deg, rgba(6, 10, 18, .22), rgba(6, 10, 18, .45));
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
  padding: 22px 0;
}

@media (max-width: 920px) {
  .footer__inner {
    grid-template-columns: 1fr;
  }
}

.footer__brand {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.footer__logo {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 900;
  color: #04140b;
  background: linear-gradient(135deg, var(--primary), var(--primary2));
}

.footer__name {
  font-weight: 900;
  margin-bottom: 2px;
}

.footer__desc {
  color: rgba(232, 237, 246, .60);
  font-size: 13px;
  line-height: 1.55;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  align-content: flex-start;
}

@media (max-width: 920px) {
  .footer__links {
    justify-content: flex-start;
  }
}

.footer__links a {
  font-size: 13px;
  color: rgba(232, 237, 246, .68);
  padding: 8px 10px;
  border-radius: 12px;
}

.footer__links a:hover {
  color: rgba(232, 237, 246, .95);
  background: rgba(255, 255, 255, .04);
}

.footer__meta {
  grid-column: 1 / -1;
  display: flex;
  gap: 10px;
  align-items: center;
  color: rgba(232, 237, 246, .52);
  font-size: 12px;
}

.dot-sep {
  opacity: .6;
}

/* =========================
   TUNE HERO (Paso 1)
   - Más jerarquía
   - Menos “ancho muerto”
   - CTA más fuerte
========================= */

/* El texto se ve más contundente */
.hero__content {
  max-width: 560px;
}

/* Un poquito más de aire arriba (se ve más premium) */
.hero {
  padding: clamp(2.5rem, 6vw, 3.5rem) 0 1.5rem;
}

/* Título con mejor escala en distintas pantallas */
.hero__title {
  font-size: clamp(42px, 5.4vw, 66px);
  letter-spacing: -0.035em;
}

/* Subtítulo más legible y “pro” */
.hero__subtitle {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(232, 237, 246, .74);
  max-width: 520px;
}

/* Botón principal domina más */
.btn--primary.btn--big {
  padding: 14px 20px;
  font-size: 14px;
}

/* Botón secundario acompaña sin competir */
.btn--ghost.btn--big {
  opacity: .88;
}

/* Mejor separación entre CTA y proof */
.hero__cta {
  margin-top: 10px;
}

.hero__proof {
  margin-top: 14px;
  gap: 8px;
}

/* =========================
   Paso 2A — Status “vivo”
========================= */

/* puntito con pulso suave */
.status-dot {
  position: relative;
  animation: statusPulse 2.4s ease-out infinite;
}

/* aro externo que se expande */
.status-dot::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 999px;
  border: 2px solid rgba(34, 197, 94, .25);
  opacity: 0;
  transform: scale(.7);
  animation: ringPulse 2.4s ease-out infinite;
}

@keyframes statusPulse {
  0% {
    transform: scale(1);
  }

  35% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes ringPulse {
  0% {
    opacity: .0;
    transform: scale(.7);
  }

  25% {
    opacity: .55;
  }

  70% {
    opacity: 0;
    transform: scale(1.25);
  }

  100% {
    opacity: 0;
    transform: scale(1.25);
  }
}

/* respeta usuarios con “reduce motion” */
@media (prefers-reduced-motion: reduce) {

  .status-dot,
  .status-dot::after {
    animation: none !important;
  }
}

/* =========================
   Paso 2B — Core Card más “premium”
   (profundidad + borde + hover)
========================= */

.core-card {
  /* sombra más real */
  box-shadow:
    0 40px 140px rgba(0, 0, 0, .72),
    0 18px 60px rgba(0, 0, 0, .45),
    inset 0 1px 0 rgba(255, 255, 255, .06);

  /* borde más fino, menos “gris” */
  border: 1px solid rgba(255, 255, 255, .08);

  /* transición para hover */
  transition: transform .22s ease, box-shadow .22s ease;
}

/* al pasar el mouse, se eleva poquito */
.core-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 55px 170px rgba(0, 0, 0, .78),
    0 22px 70px rgba(0, 0, 0, .52),
    inset 0 1px 0 rgba(255, 255, 255, .07);
}

/* mini-cards más “vidrio” y consistentes */
.mini-card {
  background: rgba(0, 0, 0, .14);
  border: 1px solid rgba(255, 255, 255, .08);
  transition: transform .18s ease, background .18s ease;
}

.mini-card:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, .04);
}

/* el bloque grande (core-main) más definido */
.core-main {
  border: 1px solid rgba(255, 255, 255, .10);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(0, 0, 0, .14));
}

/* =========================
   Paso 3 — Feature cards más premium
========================= */

/* grid con mejor separación */
.cards {
  gap: 18px;
}

/* tarjeta base */
.feature {
  position: relative;
  overflow: hidden;

  border: 1px solid rgba(255, 255, 255, .08);
  background:
    radial-gradient(120% 120% at 15% 10%, rgba(56, 189, 248, .08), transparent 55%),
    linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .02));

  box-shadow: 0 18px 60px rgba(0, 0, 0, .38);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

/* brillo suave al hover */
.feature::after {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(closest-side, rgba(34, 197, 94, .16), transparent 70%),
    radial-gradient(closest-side, rgba(56, 189, 248, .12), transparent 70%);
  filter: blur(30px);
  opacity: 0;
  transition: opacity .22s ease;
  pointer-events: none;
}

.feature:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, .12);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .55);
}

.feature:hover::after {
  opacity: .9;
}

/* iconito más “badge” */
.feature__icon {
  width: 50px;
  height: 50px;
  border-radius: 18px;
  background: rgba(0, 0, 0, .18);
  border: 1px solid rgba(255, 255, 255, .10);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06);
}

/* títulos y texto con mejor jerarquía */
.feature__title {
  font-size: 19px;
  margin: 2px 0 8px;
  letter-spacing: -0.01em;
}

.feature__text {
  color: rgba(232, 237, 246, .72);
  font-size: 14.5px;
  line-height: 1.7;
}

/* link más pro (parece acción) */
.feature__link {
  margin-top: 4px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(0, 0, 0, .16);
  transition: background .18s ease, transform .18s ease;
}

.feature__link:hover {
  background: rgba(255, 255, 255, .06);
  transform: translateY(-1px);
}

/* =========================
   Paso 4 — Pricing más “SaaS”
========================= */

.pricing {
  gap: 18px;
}

/* tarjetas con más profundidad */
.price-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .08);
  background:
    radial-gradient(120% 120% at 15% 10%, rgba(56, 189, 248, .08), transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .02));
  box-shadow: 0 18px 60px rgba(0, 0, 0, .42);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.price-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, .12);
  box-shadow: 0 32px 95px rgba(0, 0, 0, .58);
}

/* lista más limpia */
.price-list {
  margin-top: 10px;
}

.price-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.6;
}

/* POPULAR: que “salte” sin ser escandaloso */
.price-card--hot {
  border-color: rgba(34, 197, 94, .22);
  background:
    radial-gradient(120% 120% at 20% 12%, rgba(34, 197, 94, .18), transparent 58%),
    radial-gradient(120% 120% at 85% 10%, rgba(56, 189, 248, .12), transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .02));
  box-shadow:
    0 44px 140px rgba(0, 0, 0, .70),
    0 18px 70px rgba(34, 197, 94, .10),
    inset 0 1px 0 rgba(255, 255, 255, .06);
}

/* badge más pro */
.price-badge {
  font-size: 11px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(34, 197, 94, .14);
  border: 1px solid rgba(34, 197, 94, .28);
  box-shadow: 0 16px 40px rgba(34, 197, 94, .14);
}

/* precio con mejor jerarquía */
.price-value {
  font-size: 34px;
  letter-spacing: -0.03em;
}

.price-per {
  opacity: .75;
}

/* botón dentro de pricing: que llene y se vea consistente */
.price-card .btn {
  margin-top: 10px;
}

/* responsive: que el plan popular quede arriba en móvil */
@media (max-width: 980px) {
  .price-card--hot {
    order: -1;
  }
}


/* =========================
   Paso 5 — Workflow / Lienzo más “builder”
========================= */

/* card del flujo más tipo “canvas” */
.flow-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .09);
  background:
    radial-gradient(120% 120% at 15% 10%, rgba(56, 189, 248, .12), transparent 55%),
    radial-gradient(120% 120% at 85% 10%, rgba(34, 197, 94, .10), transparent 55%),
    linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(0, 0, 0, .10));
  box-shadow:
    0 40px 140px rgba(0, 0, 0, .70),
    inset 0 1px 0 rgba(255, 255, 255, .06);
}

/* grid de “cuadritos” estilo canvas */
.flow-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: .22;
  pointer-events: none;
}

/* glow suave detrás */
.flow-card::after {
  content: "";
  position: absolute;
  inset: -35%;
  background:
    radial-gradient(closest-side, rgba(34, 197, 94, .16), transparent 70%),
    radial-gradient(closest-side, rgba(56, 189, 248, .14), transparent 70%);
  filter: blur(34px);
  opacity: .55;
  pointer-events: none;
}

/* asegura que el contenido quede arriba */
.flow-top,
.flow-grid {
  position: relative;
  z-index: 1;
}

/* nodos más pro */
.flow-node {
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(0, 0, 0, .18);
  box-shadow:
    0 18px 55px rgba(0, 0, 0, .45),
    inset 0 1px 0 rgba(255, 255, 255, .06);
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.flow-node:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .04);
}

/* iconos un poco más “glassy” */
.flow-ico {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .02));
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06);
}

/* línea conectora más elegante */
.flow-line {
  height: 18px;
  margin-left: 22px;
  border-left: 2px dashed rgba(255, 255, 255, .18);
  opacity: .85;
}

/* puntos del "window chrome" más bonitos */
.flow-dot {
  background: rgba(255, 255, 255, .16);
}

/* =========================
   Paso 6 — Scroll pro (anchors + header sticky)
========================= */

/* scroll suave en toda la página */
html {
  scroll-behavior: smooth;
}

/* compensación para que #features, #workflow, etc. no queden tapados por el header */
:target {
  scroll-margin-top: 92px;
  /* ajusta si tu topbar es más alta */
}

/* por si entras directo a secciones desde links */
section[id] {
  scroll-margin-top: 92px;
}

/* mejora de enfoque (accesibilidad) al navegar con teclado */
a:focus-visible,
button:focus-visible {
  outline: 2px solid rgba(56, 189, 248, .65);
  outline-offset: 3px;
  border-radius: 12px;
}

/* usuarios que prefieren menos movimiento */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

.brand__mark {
  overflow: hidden;
  /* para que el logo respete el borde redondeado */
}

.brand__logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* o "cover" si quieres que llene más */
  display: block;
}

/* LOGO real (sin fondo pintado detrás) */
.brand__mark {
  background: transparent !important;
  box-shadow: none !important;
  border: 1px solid rgba(255, 255, 255, .10);
  overflow: hidden;
}

.brand__logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transform: scale(1.10);
  /* para que se vea más llenito */
}

/* Badge separator */
.badge__sep {
  opacity: .55;
  margin: 0 10px;
}

/* Pills sin emojis */
.proof-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(56, 189, 248, .75);
  box-shadow: 0 0 0 6px rgba(56, 189, 248, .10);
}

/* Íconos “profesionales” (sin emoji) */
.core-bubble {
  position: relative;
  overflow: hidden;
}

.core-icon,
.mini-ico {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .10);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06);
}

/* Core icon (sistema) */
.core-icon--sys::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 10px;
  border: 2px solid rgba(34, 197, 94, .65);
}

/* Inventory (caja) */
.mini-ico--inv::before {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  top: 14px;
  bottom: 14px;
  border-radius: 8px;
  border: 2px solid rgba(255, 255, 255, .55);
}

/* Web (globo) */
.mini-ico--web::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 999px;
  border: 2px solid rgba(56, 189, 248, .65);
}

.mini-ico--web::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  top: 50%;
  height: 2px;
  transform: translateY(-50%);
  background: rgba(56, 189, 248, .55);
  border-radius: 2px;
}

/* POS (tarjeta) */
.mini-ico--pos::before {
  content: "";
  position: absolute;
  left: 11px;
  right: 11px;
  top: 14px;
  bottom: 14px;
  border-radius: 10px;
  border: 2px solid rgba(34, 197, 94, .55);
}

.mini-ico--pos::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  top: 20px;
  height: 2px;
  background: rgba(34, 197, 94, .55);
  border-radius: 2px;
}

/* =========================
   ICONOS PRO (sin emojis)
   - Dibujo con CSS
========================= */

/* base para los iconos */
.core-icon,
.mini-ico {
  position: relative;
  overflow: hidden;
}

/* --- CORE (sistema / grid) --- */
.core-icon--sys::before {
  content: "";
  position: absolute;
  inset: 11px;
  border-radius: 10px;
  border: 2px solid rgba(34, 197, 94, .65);
}

.core-icon--sys::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  top: 50%;
  height: 2px;
  transform: translateY(-50%);
  background: rgba(34, 197, 94, .55);
  box-shadow:
    0 -10px 0 rgba(34, 197, 94, .35),
    0 10px 0 rgba(34, 197, 94, .35);
}

/* --- Inventory (caja) --- */
.mini-ico--inv::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 8px;
  border: 2px solid rgba(255, 255, 255, .55);
}

.mini-ico--inv::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  top: 20px;
  height: 2px;
  background: rgba(255, 255, 255, .35);
}

/* --- Web (globo) --- */
.mini-ico--web::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 999px;
  border: 2px solid rgba(56, 189, 248, .65);
}

.mini-ico--web::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  top: 50%;
  height: 2px;
  transform: translateY(-50%);
  background: rgba(56, 189, 248, .55);
  box-shadow:
    0 -8px 0 rgba(56, 189, 248, .22),
    0 8px 0 rgba(56, 189, 248, .22);
}

/* --- POS (tarjeta) --- */
.mini-ico--pos::before {
  content: "";
  position: absolute;
  left: 11px;
  right: 11px;
  top: 14px;
  bottom: 14px;
  border-radius: 10px;
  border: 2px solid rgba(34, 197, 94, .55);
}

.mini-ico--pos::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  top: 22px;
  height: 2px;
  background: rgba(34, 197, 94, .45);
  box-shadow: 0 8px 0 rgba(34, 197, 94, .22);
}

/* =========================
   Dashboard upgrade (Core Card)
========================= */

/* números tipo dashboard */
.kpi__val,
.mini-sub {
  font-variant-numeric: tabular-nums;
}

/* Core KPIs */
.core-kpis {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 10px;
}

.kpi {
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, .08);
  background: rgba(0, 0, 0, .16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .05);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.kpi__label {
  color: rgba(232, 237, 246, .62);
  font-size: 12px;
  font-weight: 700;
}

.kpi__val {
  font-weight: 900;
  letter-spacing: -0.02em;
}

/* Barra de progreso (Inventory sync) */
.bar {
  margin-top: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .08);
}

.bar i {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(34, 197, 94, .85), rgba(56, 189, 248, .70));
  box-shadow: 0 0 18px rgba(34, 197, 94, .18);
}

/* Sparkline simple (Web Traffic) */
.spark {
  margin-top: 8px;
  height: 18px;
  display: flex;
  gap: 4px;
  align-items: flex-end;
}

.spark span {
  flex: 1;
  border-radius: 6px;
  background: rgba(56, 189, 248, .22);
  border: 1px solid rgba(56, 189, 248, .18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .05);
}

.spark span:nth-child(1) {
  height: 6px;
}

.spark span:nth-child(2) {
  height: 10px;
}

.spark span:nth-child(3) {
  height: 8px;
}

.spark span:nth-child(4) {
  height: 14px;
}

.spark span:nth-child(5) {
  height: 11px;
}

.spark span:nth-child(6) {
  height: 16px;
  background: rgba(34, 197, 94, .18);
  border-color: rgba(34, 197, 94, .18);
}

/* Mini cards: un poquito más “moderno” */
.mini-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, .04), rgba(0, 0, 0, .14));
}

:root {
  --bg: #08131a;
  --text: #e8edf6;
  --muted: rgba(232, 237, 246, .70);
  --muted2: rgba(232, 237, 246, .55);

  --border: rgba(255, 255, 255, .10);
  --border2: rgba(255, 255, 255, .08);

  --shadow: 0 20px 60px rgba(0, 0, 0, .45);
  --shadow2: 0 25px 90px rgba(0, 0, 0, .55);

  /* tu paleta verdosa + acento cian */
  --primary: #22c55e;
  --primary2: #38bdf8;

  --radius: 18px;
  --radius2: 14px;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);

  /* Fondo “pro” como mockup */
  background:
    radial-gradient(1100px 620px at 20% 10%, rgba(56, 189, 248, .20), transparent 58%),
    radial-gradient(980px 560px at 80% 18%, rgba(34, 197, 94, .18), transparent 60%),
    radial-gradient(820px 520px at 55% 40%, rgba(34, 197, 94, .08), transparent 70%),
    linear-gradient(180deg, #050a12 0%, var(--bg) 70%);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button {
  font-family: inherit;
}

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

/* =========================
   Textura / Ruido (opcional)
========================= */
.bg-noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  opacity: .06;
  mix-blend-mode: overlay;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
}

/* ==========================================
   Grid Overlay (para login/signup tipo mock)
   Úsalo con: <div class="grid-bg"></div>
========================================== */
.grid-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .35;
  background:
    linear-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .06) 1px, transparent 1px);
  background-size: 44px 44px;
  /* “vignette” suave */
  -webkit-mask-image: radial-gradient(700px 420px at 50% 30%, #000 35%, transparent 70%);
  mask-image: radial-gradient(700px 420px at 50% 30%, #000 35%, transparent 70%);
}

/* =======================
   TOPBAR
======================= */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: linear-gradient(180deg, rgba(6, 10, 20, .78), rgba(6, 10, 20, .28));
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 240px;
}

.brand__mark {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 900;
  color: #061a12;
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  box-shadow: 0 16px 40px rgba(34, 197, 94, .18);
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand__name {
  font-weight: 900;
  letter-spacing: .2px;
}

.brand__tag {
  font-size: 12px;
  color: rgba(234, 240, 255, .58);
}

/* pill nav */
.nav {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 6px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .08);
  background: rgba(255, 255, 255, .03);
}

.nav__link {
  font-size: 13px;
  color: rgba(234, 240, 255, .72);
  padding: 10px 12px;
  border-radius: 999px;
  transition: .18s ease;
}

.nav__link:hover {
  color: rgba(234, 240, 255, .95);
  background: rgba(255, 255, 255, .05);
}

.topbar__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* botones */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, .03);
  color: rgba(234, 240, 255, .92);
  font-weight: 800;
  font-size: 13px;
  cursor: pointer;
  transition: .18s ease;
}

.btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, .06);
}

.btn--ghost {
  background: rgba(255, 255, 255, .02);
}

.btn--primary {
  border: none;
  color: #061a12;
  background: linear-gradient(135deg, var(--primary), #16a34a);
  box-shadow: 0 18px 45px rgba(34, 197, 94, .22);
}

.btn--big {
  padding: 12px 16px;
  border-radius: 18px;
}

.w-full {
  width: 100%;
}

/* hamburger / mobile */
.hamburger {
  display: none;
  width: 44px;
  height: 42px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(255, 255, 255, .03);
  cursor: pointer;
}

.hamburger span {
  display: block;
  height: 2px;
  width: 18px;
  margin: 4px auto;
  background: rgba(234, 240, 255, .85);
  border-radius: 2px;
  transition: .18s ease;
}

.hamburger--open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.hamburger--open span:nth-child(2) {
  opacity: 0;
}

.hamburger--open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, .06);
  background: rgba(6, 10, 20, .60);
}

.mobile__inner {
  display: grid;
  gap: 10px;
  padding: 16px 0 18px;
}

.mobile__link {
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, .08);
  color: rgba(234, 240, 255, .80);
  background: rgba(255, 255, 255, .02);
}

.mobile__cta {
  display: grid;
  gap: 10px;
  margin-top: 6px;
}

.mobile--open {
  display: block;
}

@media (max-width: 920px) {
  .nav {
    display: none;
  }

  .hamburger {
    display: inline-block;
  }

  .brand {
    min-width: auto;
  }
}

/* =======================
   HERO (Landing)
======================= */
.hero {
  padding: 46px 0 18px;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 30px;
  align-items: start;
}

@media (max-width: 980px) {
  .hero__inner {
    grid-template-columns: 1fr;
  }
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(255, 255, 255, .03);
  color: rgba(234, 240, 255, .70);
  font-size: 12px;
}

.hero__title {
  margin: 16px 0 12px;
  font-size: 58px;
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-weight: 900;
}

@media (max-width: 520px) {
  .hero__title {
    font-size: 40px;
  }
}

.hero__accent {
  background: linear-gradient(90deg, var(--primary), var(--primary2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__subtitle {
  margin: 0 0 18px;
  color: rgba(234, 240, 255, .72);
  font-size: 16px;
  line-height: 1.65;
  max-width: 560px;
}

.hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.trust {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(234, 240, 255, .55);
  font-size: 12px;
}

.trust__dots span {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .14);
  margin-right: 6px;
}

/* visual derecha */
.hero__visual {
  display: flex;
  justify-content: flex-end;
  padding-top: 6px;
}

/* Core card (glass) */
.core-card {
  width: 100%;
  max-width: 460px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, .10);
  background:
    radial-gradient(120% 160% at 20% 20%, rgba(34, 197, 94, .12), transparent 55%),
    radial-gradient(120% 160% at 80% 35%, rgba(56, 189, 248, .10), transparent 55%),
    linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .02));
  box-shadow: var(--shadow2);
  padding: 16px;
  position: relative;
  overflow: hidden;
}

.core-card__lines {
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(closest-side, rgba(34, 197, 94, .14), transparent 70%),
    radial-gradient(closest-side, rgba(56, 189, 248, .12), transparent 70%);
  filter: blur(34px);
  opacity: .60;
  pointer-events: none;
}

.core-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  position: relative;
  z-index: 1;
  margin-bottom: 12px;
}

.core-card__chip {
  font-weight: 900;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(0, 0, 0, .18);
}

.core-card__status {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(234, 240, 255, .70);
  font-size: 12px;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(34, 197, 94, .92);
  box-shadow: 0 0 0 6px rgba(34, 197, 94, .12);
}

.core-card__grid {
  display: grid;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.node {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 12px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, .09);
  background: rgba(0, 0, 0, .16);
}

.node--primary {
  border-color: rgba(34, 197, 94, .18);
  background:
    radial-gradient(120% 120% at 20% 30%, rgba(34, 197, 94, .14), transparent 60%),
    rgba(0, 0, 0, .14);
}

.node__icon {
  width: 38px;
  height: 38px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(255, 255, 255, .04);
}

.node__name {
  font-weight: 900;
}

.node__meta {
  font-size: 12px;
  color: rgba(234, 240, 255, .62);
}

/* =======================
   FOOTER
======================= */
.footer {
  margin-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, .06);
  background: linear-gradient(180deg, rgba(6, 10, 20, .22), rgba(6, 10, 20, .50));
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
  padding: 22px 0;
}

@media (max-width: 920px) {
  .footer__inner {
    grid-template-columns: 1fr;
  }
}

.footer__brand {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.footer__logo {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 900;
  color: #061a12;
  background: linear-gradient(135deg, var(--primary), var(--primary2));
}

.footer__name {
  font-weight: 900;
  margin-bottom: 2px;
}

.footer__desc {
  color: rgba(234, 240, 255, .65);
  font-size: 13px;
  line-height: 1.5;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-content: flex-start;
  justify-content: flex-end;
}

@media (max-width: 920px) {
  .footer__links {
    justify-content: flex-start;
  }
}

.footer__links a {
  font-size: 13px;
  color: rgba(234, 240, 255, .70);
  padding: 8px 10px;
  border-radius: 12px;
}

.footer__links a:hover {
  color: rgba(234, 240, 255, .95);
  background: rgba(255, 255, 255, .04);
}

.footer__meta {
  grid-column: 1 / -1;
  display: flex;
  gap: 10px;
  align-items: center;
  color: rgba(234, 240, 255, .55);
  font-size: 12px;
}

.dot-sep {
  opacity: .6;
}

/* =======================
   AUTH (login/signup) - reusable
   Úsalo con:
   <div class="grid-bg"></div>
   <div class="auth-page">...</div>
======================= */
.auth-page {
  min-height: calc(100vh - 140px);
  display: grid;
  place-items: center;
  padding: 34px 0;
}

.auth-shell {
  width: 100%;
  max-width: 520px;
  padding: 18px;
}

.auth-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.auth-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: .2px;
}

.auth-mark {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 900;
  color: #061a12;
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  box-shadow: 0 16px 40px rgba(34, 197, 94, .20);
}

.auth-support {
  font-size: 13px;
  color: rgba(234, 240, 255, .70);
}

.auth-support:hover {
  color: rgba(234, 240, 255, .95);
}

.auth-card {
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, .10);
  background:
    radial-gradient(120% 160% at 20% 20%, rgba(34, 197, 94, .12), transparent 55%),
    radial-gradient(120% 160% at 80% 40%, rgba(56, 189, 248, .10), transparent 55%),
    linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .02));
  box-shadow: var(--shadow2);
  padding: 22px;
  position: relative;
  overflow: hidden;
}

.auth-card::after {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(closest-side, rgba(34, 197, 94, .12), transparent 70%),
    radial-gradient(closest-side, rgba(56, 189, 248, .10), transparent 70%);
  filter: blur(32px);
  opacity: .60;
  pointer-events: none;
}

.auth-card>* {
  position: relative;
  z-index: 1;
}

.auth-title {
  margin: 6px 0 6px;
  font-weight: 900;
  font-size: 30px;
  letter-spacing: -0.02em;
}

.auth-sub {
  margin: 0 0 18px;
  color: rgba(234, 240, 255, .70);
  line-height: 1.55;
}

.auth-err {
  margin: 0 0 12px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 90, 122, .35);
  background: rgba(255, 90, 122, .10);
  color: rgba(255, 170, 190, .95);
  font-weight: 800;
  font-size: 13px;
}

.field {
  margin: 12px 0;
}

.field label {
  display: block;
  font-size: 12px;
  color: rgba(234, 240, 255, .75);
  margin-bottom: 7px;
}

.input {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(0, 0, 0, .18);
}

.input span {
  opacity: .70;
  font-size: 14px;
  user-select: none;
}

.input input {
  width: 100%;
  border: 0;
  outline: none;
  background: transparent;
  color: rgba(234, 240, 255, .95);
  font-size: 14px;
}

.input:focus-within {
  border-color: rgba(34, 197, 94, .35);
  box-shadow: 0 0 0 4px rgba(34, 197, 94, .10);
}

.hint {
  margin-top: 6px;
  font-size: 12px;
  color: rgba(234, 240, 255, .55);
  line-height: 1.35;
}

.auth-btn {
  width: 100%;
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 18px;
  border: none;
  color: #061a12;
  font-weight: 900;
  cursor: pointer;
  background: linear-gradient(135deg, var(--primary), #16a34a);
  box-shadow: 0 18px 45px rgba(34, 197, 94, .22);
  transition: .18s ease;
}

.auth-btn:hover {
  transform: translateY(-1px);
}

.divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 16px 0 12px;
  color: rgba(234, 240, 255, .45);
  font-size: 12px;
}

.divider::before,
.divider::after {
  content: "";
  height: 1px;
  flex: 1;
  background: rgba(255, 255, 255, .10);
}

.oauth {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

@media (max-width: 520px) {
  .oauth {
    grid-template-columns: 1fr;
  }
}

.oauth-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 12px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .03);
  color: rgba(234, 240, 255, .92);
  font-weight: 800;
  cursor: not-allowed;
  opacity: .70;
}

.auth-links {
  margin-top: 14px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: rgba(234, 240, 255, .65);
  font-size: 13px;
}

.auth-links a {
  color: rgba(56, 189, 248, .95);
}

.auth-links a:hover {
  text-decoration: underline;
}

/* small helpers */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@media (max-width: 520px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }
}

/* =======================
   AUTH polish (override)
   Pegar al final del CSS
======================= */

/* Fondo tipo mockup (si usas <div class="grid-bg"></div>) */
.grid-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(1100px 600px at 20% -10%, rgba(34, 197, 94, .18), transparent 55%),
    radial-gradient(900px 520px at 90% 10%, rgba(34, 197, 94, .10), transparent 60%),
    radial-gradient(700px 520px at 60% 110%, rgba(56, 189, 248, .10), transparent 60%),
    linear-gradient(180deg, rgba(6, 10, 16, .40), rgba(6, 10, 16, .72)),
    #05090c;
}

.grid-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .16;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, .10) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, .10) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(closest-side at 50% 30%, black 0%, transparent 70%);
}

/* Alineación general */
.auth-page {
  min-height: calc(100vh - 120px);
  padding: 46px 0;
}

.auth-shell {
  max-width: 520px;
  padding: 18px;
}

/* Barra superior más sutil */
.auth-top {
  margin-bottom: 16px;
}

.auth-support {
  font-size: 12.5px;
  opacity: .9;
}

/* Tarjeta glass real + más “mockup” */
.auth-card {
  border-radius: 26px;
  padding: 26px;
  background: rgba(12, 22, 28, .58);
  border: 1px solid rgba(255, 255, 255, .10);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .55);
}

/* Brillos internos más controlados (menos “manchas grandes”) */
.auth-card::after {
  inset: -60%;
  opacity: .55;
  filter: blur(40px);
}

/* Tipografía */
.auth-title {
  font-size: 32px;
  letter-spacing: -0.03em;
  margin: 4px 0 8px;
}

.auth-sub {
  margin: 0 0 20px;
  font-size: 14px;
  color: rgba(234, 240, 255, .68);
}

/* Labels más finos */
.field label {
  font-size: 12px;
  margin-bottom: 8px;
  color: rgba(234, 240, 255, .72);
}

/* Inputs más tipo mockup: menos negro, más glass */
.input {
  padding: 13px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .10);
  transition: .18s ease;
}

.input span {
  opacity: .75;
}

.input input {
  font-size: 14px;
}

.input:hover {
  border-color: rgba(255, 255, 255, .16);
}

.input:focus-within {
  border-color: rgba(34, 197, 94, .45);
  box-shadow:
    0 0 0 4px rgba(34, 197, 94, .12),
    0 10px 35px rgba(0, 0, 0, .35);
}

/* Botón principal más “pill” y pro */
.auth-btn {
  margin-top: 16px;
  padding: 13px 16px;
  border-radius: 999px;
  font-size: 14px;
  letter-spacing: .2px;
  box-shadow:
    0 18px 45px rgba(34, 197, 94, .22),
    0 0 0 1px rgba(255, 255, 255, .06) inset;
}

.auth-btn:hover {
  transform: translateY(-1px);
  box-shadow:
    0 22px 60px rgba(34, 197, 94, .26),
    0 0 0 1px rgba(255, 255, 255, .08) inset;
}

.auth-btn:active {
  transform: translateY(0px);
}

/* Divider y OAuth más limpios */
.divider {
  margin: 18px 0 14px;
  font-size: 12px;
  color: rgba(234, 240, 255, .42);
}

.oauth-btn {
  border-radius: 999px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .10);
}

/* Links */
.auth-links {
  margin-top: 16px;
  font-size: 13px;
}

.auth-links a {
  color: rgba(120, 210, 255, .95);
}

/* Mobile */
@media (max-width: 520px) {
  .auth-card {
    padding: 22px;
  }

  .auth-title {
    font-size: 28px;
  }
}


/*apartado de colores arcoiris en el titulo del css*/
.hero-rainbow {
  background: linear-gradient(90deg,
      #22c55e 0%,
      #34d399 18%,
      #2dd4bf 38%,
      #38bdf8 60%,
      #22c55e 85%,
      #34d399 100%);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: heroHue 6s ease-in-out infinite;
}

@keyframes heroHue {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* accesibilidad */
@media (prefers-reduced-motion: reduce) {
  .hero-rainbow {
    animation: none;
  }
}