@font-face {
  font-family: 'Darker Grotesque';
  src: url('./assets/fonts/DarkerGrotesque-VariableFont_wght.ttf') format('truetype');
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #F7F7F7;
  --panel: #081a10;
  --panel-2: rgba(227, 252, 237, 0.06);
  --border: rgba(93, 244, 161, 0.12);
  --text: #03130A;
  --muted: rgba(3, 19, 10, 0.72);
  --muted-2: rgba(3, 19, 10, 0.55);
  --brand: #5df4a1;
  --ink: #03130A;
  --shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  --radius-xl: 22px;
  --radius-lg: 18px;
  --radius-md: 14px;
  --container: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family:
    'Darker Grotesque',
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 900;
}

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

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  background: var(--brand);
  color: var(--ink);
  padding: 10px 12px;
  border-radius: 12px;
  font-weight: 800;
  z-index: 100;
}

.skip-link:focus {
  left: 12px;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin-inline: auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bg);
  color: var(--ink);
}

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

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

.brand__logo {
  width: 220px;
  max-width: 55vw;
  height: auto;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 10px;
  border-radius: 12px;
  cursor: pointer;
}

.nav-toggle__bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 99px;
}

.nav-toggle__bar + .nav-toggle__bar {
  margin-top: 5px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav__link {
  font-size: 18px;
  font-weight: 700;
  color: rgba(3, 19, 10, 0.78);
  padding: 8px 10px;
  border-radius: 12px;
}

.nav__link:hover {
  color: rgba(3, 19, 10, 0.95);
  background: rgba(3, 19, 10, 0.06);
}

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

.header .nav__actions {
  justify-content: flex-end;
  flex-wrap: wrap;
}

.header .btn--ghost {
  background: var(--panel);
  border-color: rgba(3, 19, 10, 0.40);
  color: var(--bg);
}



.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 12px 16px;
  font-weight: 900;
  letter-spacing: 0.02em;
  border: 1px solid rgba(227, 252, 237, 0.10);
  background: rgba(227, 252, 237, 0.04);
  color: var(--text);
  box-shadow: none;
  line-height: 1;
  font-size: 18px;
  white-space: nowrap;
}

.btn--lg {
  padding: 14px 18px;
  font-size: 20px;
}

.btn--primary {
  background: var(--brand);
  color: var(--ink);
  border-color: rgba(93, 244, 161, 0.55);
}

.btn--ghost {
  background: rgba(227, 252, 237, 0.04);
  color: var(--text);
  border-color: rgba(227, 252, 237, 0.12);
}

.btn:hover {
  transform: translateY(-1px);
  transition: transform 150ms ease, background 150ms ease, border-color 150ms ease;
}

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

.hero {
  position: relative;
  overflow: hidden;
  padding: 40px 0 22px;
}

.hero--inicio {
  padding: 34px 0 44px;
}

.inicio__copy {
  max-width: 560px;
}

.inicio__brand {
  font-size: clamp(42px, 4.4vw, 64px);
  line-height: 0.9;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.inicio__title {
  margin: 10px 0 10px;
  font-size: clamp(30px, 2.8vw, 40px);
  line-height: 1;
  letter-spacing: -0.02em;
}

.inicio__text {
  margin: 0;
  font-size: 18px;
  line-height: 1.35;
  color: var(--text);
  max-width: 56ch;
  font-weight: bold;
}

.inicio__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}

.inicio__btn {
  padding: 16px 36px;
  min-width: 220px;
}

.inicio__arrow {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brand);
  color: var(--ink);
  border: 1px solid rgba(93, 244, 161, 0.55);
}

.inicio__media {
  display: flex;
  justify-content: flex-end;
}

.inicio__image {
  width: 100%;
  max-width: 560px;
  height: auto;
  border-radius: 28px;
  object-fit: cover;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 18px;
  color: var(--ink);
  margin: 0 0 10px;
}

.hero__title {
  margin: 0 0 10px;
  font-size: clamp(40px, 3.4vw, 62px);
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.hero__subtitle {
  margin: 0 0 18px;
  font-size: 20px;
  line-height: 1.4;
  color: var(--muted);
  max-width: 54ch;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(93, 244, 161, 0.14);
  background: rgba(227, 252, 237, 0.04);
  font-weight: 800;
  font-size: 16px;
  color: rgba(3, 19, 10, 0.82);
}

.hero__visual {
  position: relative;
}

.photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
}

.photo-grid__item {
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(93, 244, 161, 0.10);
  background: #0a2116;
}

.photo-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-grid__item--tall {
  grid-row: span 2;
}

.hero__glow {
  position: absolute;
  inset: -40% -20% auto -20%;
  height: 520px;
  pointer-events: none;
}

.section {
  padding: 56px 0;
}

.producto {
  padding: 46px 0;
}

.producto__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
  align-items: center;
}

.producto__media {
  border-radius: 34px;
  background: rgba(93, 244, 161, 0.12);
  padding: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.producto__image {
  width: 100%;
  max-width: 620px;
  height: auto;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.producto__title {
  margin: 0;
  font-size: 2em;
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.producto__text {
  margin: 12px 0 0;
  font-size: 18px;
  line-height: 1.45;
  color: var(--text);
  max-width: 56ch;
  font-weight: bold;
}
.beneficios {
  padding: 46px 0;
}

.beneficios__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: center;
}

.beneficios__list {
  display: grid;
  gap: 18px;
}

.beneficio {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: start;
}

.beneficio__bullet {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--brand);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.beneficio__title {
  margin: 0;
  font-size: 26px;
  line-height: 1.05;
  font-weight: 900;
}

.beneficio__text {
  margin: 6px 0 0;
  font-size: 16px;
  line-height: 1.4;
  color: var(--text);
  max-width: 62ch;
  font-weight: bold;
}

.beneficios__media {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.beneficios__badge {
  position: absolute;
  left: 18px;
  top: 18px;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--brand);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(93, 244, 161, 0.55);
}

.beneficios__image {
  width: 100%;
  max-width: 540px;
  height: auto;
  border-radius: 34px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.negocios {
  padding: 46px 0;
}

.negocios__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  align-items: center;
}

.negocios__media {
  position: relative;
  display: flex;
  justify-content: flex-start;
}

.negocios__badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--brand);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(93, 244, 161, 0.55);
}

.negocios__image {
  width: 100%;
  max-width: 520px;
  height: auto;
  border-radius: 34px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.negocios__title {
  margin: 0;
  font-size: 26px;
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.negocios__text {
  margin: 12px 0 0;
  font-size: 16px;
  line-height: 1.45;
  color: var(--text);
  max-width: 62ch;
  font-weight: bold;
}

.negocios__items {
  margin-top: 22px;
  display: grid;
  gap: 18px;
}

.negocio-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: start;
}

.negocio-item__bullet {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--brand);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.negocio-item__title {
  margin: 0;
  font-size: 22px;
  line-height: 1.05;
  font-weight: 900;
}

.negocio-item__text {
  margin: 6px 0 0;
  font-size: 16px;
  line-height: 1.4;
  color: var(--text);
  max-width: 62ch;
  font-weight: bold;
}


.section__head {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.section__title {
  margin: 0;
  font-size: clamp(32px, 2.4vw, 44px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.section__subtitle {
  margin: 0;
  font-size: 18px;
  line-height: 1.45;
  color: var(--muted);
  max-width: 70ch;
}

.showcase {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  align-items: start;
}

.showcase__frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: rgba(227, 252, 237, 0.06);
  border: 1px solid rgba(93, 244, 161, 0.10);
  box-shadow: var(--shadow);
}

.feature-list {
  display: grid;
  gap: 14px;
}

.feature {
  display: grid;
  grid-template-columns: 12px 1fr;
  gap: 12px;
  padding: 14px 14px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(93, 244, 161, 0.10);
  background: rgba(227, 252, 237, 0.04);
}

.feature__dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--brand);
  margin-top: 6px;
  box-shadow: 0 0 0 6px rgba(93, 244, 161, 0.12);
}

.feature__title {
  margin: 0;
  font-weight: 900;
  font-size: 22px;
  line-height: 1.05;
}

.feature__text {
  margin: 6px 0 0;
  font-size: 18px;
  color: var(--muted);
  line-height: 1.35;
}

.section--cta {
  padding: 44px 0 64px;
}

.cta-card {
  min-height: 220px;
  border-radius: 40px;
  background-color: var(--brand);
  background-image: url('./assets/Recurso 15.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: var(--shadow);
  padding: 24px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.cta-card__overlay {
  width: 100%;
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 16px;
}

.cta-card__title {
  margin: 0;
  font-size: 28px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}

.cta-card__actions {
  display: flex;
  justify-content: center;
  margin-top: 0;
}

.cta-card__button {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--bg);
  min-width: 220px;
}

.footer {
  margin-top: 24px;
  background: #001c12;
  padding: 44px 0;
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer__brand {
  display: grid;
  gap: 10px;
}

.footer__logo {
  width: 260px;
  max-width: 100%;
  height: auto;
}

.footer__text {
  margin: 0;
  color: rgba(247, 247, 247, 0.78);
  font-size: 18px;
  font-weight: 700;
}

.footer__socials {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer__social-icon {
  width: 48px;
  height: 48px;
  display: block;
}

@media (max-width: 980px) {
  .header__inner {
    justify-content: center;
  }
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .producto__grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .beneficios__grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .beneficios__media {
    justify-content: center;
  }

  .negocios__grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .negocios__media {
    justify-content: center;
  }

  .inicio__media {
    justify-content: center;
  }

  .inicio__actions {
    justify-content: center;
  }

  .showcase {
    grid-template-columns: 1fr;
  }

  .cta-card {
    min-height: 190px;
  }

  .cta-card__overlay {
    gap: 14px;
  }

  .footer__inner {
    align-items: flex-start;
  }


@media (max-width: 820px) {
  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    gap: 0;
  }

  .nav {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 66px;
    border-radius: 18px;
    border: 1px solid rgba(93, 244, 161, 0.14);
    background: rgba(8, 26, 16, 0.96);
    padding: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    box-shadow: var(--shadow);
  }

  .nav[data-open='true'] {
    display: flex;
  }

  .nav__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .nav__link {
    font-size: 20px;
    padding: 10px 12px;
  }

  .hero__cta .btn,
  .cta-card__actions .btn {
    width: 100%;
  }
}
}

/* Header mobile: rejilla 2x2 (logo + demo / miembro + admin) */
@media (max-width: 820px) {
  .header__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      'brand demo'
      'member admin';
    align-items: center;
    justify-content: stretch;
    gap: 12px;
  }

  .header__inner .brand {
    grid-area: brand;
    min-width: 0;
  }

  .header__inner .brand__logo {
    width: 100%;
    max-width: 180px;
  }

  /* Los botones participan directamente en la rejilla del header */
  .header .nav__actions {
    display: contents;
  }

  .header .nav__actions .btn {
    width: 100%;
    min-width: 0;
    font-size: 13px;
    letter-spacing: 0.01em;
    padding: 11px 10px;
  }

  .header .nav__actions .btn--primary {
    grid-area: demo;
  }

  .header .nav__actions .btn--ghost:nth-of-type(1) {
    grid-area: member;
  }

  .header .nav__actions .btn--ghost:nth-of-type(2) {
    grid-area: admin;
  }
}
