/* SHOOW.APP — Landing styles (hallmark, alineado con la app) */
:root {
  --brand: #31bc83;
  --brand-dark: #279a6b;
  --brand-light: #e8f8f1;
  --brand-muted: #f0faf5;
  --brand-glow: rgba(49, 188, 131, 0.22);
  --ink: #1c1917;
  --ink-soft: #44403c;
  --muted: #78716c;
  --text: var(--ink);
  --text-muted: var(--muted);
  --surface: #f7f6f3;
  --bg: #ffffff;
  --bg-alt: var(--surface);
  --border: rgba(28, 25, 23, 0.1);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 24px;
  --shadow: 0 1px 2px rgba(28, 25, 23, 0.04), 0 8px 24px rgba(28, 25, 23, 0.06);
  --shadow-lg: 0 4px 14px rgba(49, 188, 131, 0.12), 0 20px 50px rgba(28, 25, 23, 0.08);
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-display: "Fraunces", Georgia, serif;
  --header-h: 64px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
.cta-block h2 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
}

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

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

.container {
  width: min(1120px, 100% - 2rem);
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.text-brand {
  color: var(--brand);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 12px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s, box-shadow 0.2s;
}

.btn--outline {
  background: transparent;
  color: var(--ink-soft);
  border-color: var(--border);
}

.btn--outline:hover {
  border-color: rgba(28, 25, 23, 0.2);
  background: #fff;
  color: var(--ink);
}

.btn:active {
  transform: scale(0.98);
}

.btn--primary {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
  box-shadow: 0 2px 8px var(--brand-glow);
}

.btn--primary:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn--ghost:hover {
  border-color: var(--brand);
  color: var(--brand-dark);
}

.btn--sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn--lg {
  padding: 0.85rem 1.5rem;
  font-size: 1rem;
}

.btn--block {
  width: 100%;
  justify-content: center;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 246, 243, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6) inset;
  transition: box-shadow 0.25s, background 0.25s;
}

.header.is-scrolled {
  background: rgba(247, 246, 243, 0.96);
  box-shadow: 0 4px 24px rgba(28, 25, 23, 0.08);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  padding: 0.5rem 0;
  gap: 1rem;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.header__greeting {
  display: none;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
  max-width: 10rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.header__greeting strong {
  color: var(--ink);
  font-weight: 600;
}

.header__logout {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  font: inherit;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.header__logout:hover {
  color: var(--ink);
}

.logo img {
  height: 20px;
  width: auto;
  max-width: 120px;
}

.nav {
  display: none;
  gap: 2rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-muted);
}

.nav a:hover {
  color: var(--brand);
}

.header__cta-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.header__cta-group .btn--sm {
  padding: 0.45rem 0.75rem;
  font-size: 0.8125rem;
}

/* User menu (authenticated) */
.user-menu {
  position: relative;
}

.user-menu__toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.65rem;
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ink-soft);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  max-width: 9rem;
}

.user-menu__toggle span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.user-menu__toggle:hover {
  border-color: rgba(28, 25, 23, 0.2);
  color: var(--ink);
}

.user-menu__chevron {
  flex-shrink: 0;
  width: 0.65rem;
  height: 0.65rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 0.2s;
}

.user-menu.is-open .user-menu__chevron {
  transform: rotate(-135deg) translateY(1px);
}

.user-menu__panel {
  position: absolute;
  right: 0;
  top: calc(100% + 0.35rem);
  z-index: 50;
  min-width: 12rem;
  padding: 0.35rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  display: none;
}

.user-menu.is-open .user-menu__panel {
  display: block;
}

.user-menu__panel a,
.user-menu__panel button {
  display: block;
  width: 100%;
  padding: 0.55rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-align: left;
  color: var(--ink-soft);
  border: none;
  background: none;
  border-radius: 8px;
  cursor: pointer;
  font-family: inherit;
}

.user-menu__panel a:hover,
.user-menu__panel button:hover {
  background: var(--brand-muted);
  color: var(--ink);
}

.user-menu__panel form {
  margin: 0;
}

.user-menu__divider {
  height: 1px;
  margin: 0.25rem 0;
  background: var(--border);
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem 1rem 1.25rem;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav a {
  padding: 0.5rem 0;
  font-weight: 500;
  color: var(--text-muted);
}

.mobile-nav a:hover {
  color: var(--brand);
}

.mobile-nav__auth {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 0.5rem;
  margin-top: 0.25rem;
  border-top: 1px solid var(--border);
}

.mobile-nav__greeting {
  margin: 0;
  font-size: 0.875rem;
  color: var(--muted);
}

.mobile-nav__greeting strong {
  color: var(--ink);
}

.mobile-nav__logout-form {
  margin: 0;
}

@media (min-width: 768px) {
  .nav {
    display: flex;
  }

  .header__greeting {
    display: block;
  }

  .header__actions {
    gap: 0.75rem;
  }

  .header__cta-group .btn--sm {
    padding: 0.65rem 1.25rem;
    font-size: 0.9375rem;
  }

  .user-menu__toggle {
    max-width: 11rem;
    font-size: 0.875rem;
  }

  .menu-toggle,
  .mobile-nav {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .user-menu__toggle {
    max-width: 7.5rem;
  }
}

/* Hero */
.hero {
  padding: 3.5rem 0 4.5rem;
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(49, 188, 131, 0.14), transparent 55%),
    linear-gradient(180deg, var(--brand-muted) 0%, var(--surface) 70%);
  overflow: hidden;
}

.hero__grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

.badge {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.35rem 0.85rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--brand-dark);
  background: #fff;
  border: 1px solid rgba(49, 188, 131, 0.35);
  border-radius: 100px;
}

.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.1rem, 5vw, 3rem);
  font-weight: 600;
  line-height: 1.12;
}

.hero__title-line {
  display: block;
}

.hero__lead {
  margin: 0 0 1.75rem;
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 32rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.hero__trust {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.hero__trust li::before {
  content: "✓ ";
  color: var(--brand);
  font-weight: 700;
}

.founder-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1.25rem;
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #92400e;
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 100px;
  max-width: 100%;
}

.founder-badge__dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #fbbf24;
  flex-shrink: 0;
  animation: founder-pulse 2s ease-in-out infinite;
}

@keyframes founder-pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.35;
  }
}

.founder-badge--compact {
  margin: 0 0 0.75rem;
  padding: 0.35rem 0.75rem;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  justify-content: center;
  width: fit-content;
  max-width: 100%;
}

.pricing__pro-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__trust--inline {
  margin-top: 0;
}

/* Mockup */
.mockup {
  background: #fff;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(28, 25, 23, 0.08);
  overflow: hidden;
}

.mockup__bar {
  display: flex;
  gap: 6px;
  padding: 12px 16px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}

.mockup__bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cbd5e1;
}

.mockup__bar span:first-child {
  background: #f87171;
}

.mockup__bar span:nth-child(2) {
  background: #fbbf24;
}

.mockup__bar span:nth-child(3) {
  background: var(--brand);
}

.mockup__body {
  padding: 1.25rem;
}

.mockup__row--header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.pill {
  display: inline-block;
  padding: 0.2rem 0.55rem;
  font-size: 0.6875rem;
  font-weight: 600;
  border-radius: 100px;
}

.pill--green {
  background: var(--brand-light);
  color: var(--brand-dark);
}

.pill--paid {
  background: var(--brand-light);
  color: var(--brand-dark);
}

.pill--pending {
  background: #fef3c7;
  color: #b45309;
  font-size: 0.625rem;
  white-space: nowrap;
}

.pill--ok {
  background: #e0e7ff;
  color: #4338ca;
}

.mockup__card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 1rem;
  margin-bottom: 0.5rem;
  background: var(--bg-alt);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.mockup__card:last-child {
  margin-bottom: 0;
}

.mockup__card strong {
  display: block;
  font-size: 0.9375rem;
}

.mockup__card span:not(.pill) {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* Pain section */
.pain {
  padding: 4rem 0;
  background: var(--ink);
  color: #fff;
}

.pain__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.pain__title {
  margin: 0;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 600;
  color: #e7e5e4;
}

.pain__grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .pain__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.pain__stat {
  text-align: center;
  padding: 1.5rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
}

.pain__value {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  color: var(--brand);
  line-height: 1.15;
}

.pain__label {
  margin: 0;
  font-size: 0.9375rem;
  color: #a8a29e;
  line-height: 1.45;
}

.pain__subtitle {
  margin: 0 auto;
  max-width: 40rem;
  text-align: center;
  font-size: 1.125rem;
  font-weight: 500;
  color: #d6d3d1;
  line-height: 1.55;
}

/* Compare */
.compare__grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .compare__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

.compare__col {
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.compare__col--without {
  background: #fff;
}

.compare__col--with {
  background: var(--brand-muted);
  border-color: rgba(49, 188, 131, 0.35);
  box-shadow: 0 8px 32px var(--brand-glow);
}

.compare__heading {
  margin: 0 0 1.25rem;
  font-size: 1.125rem;
  font-weight: 700;
}

.compare__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.compare__list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.compare__list li:last-child {
  margin-bottom: 0;
}

.compare__col--without .compare__list li::before {
  content: "✗";
  position: absolute;
  left: 0;
  color: #b91c1c;
  font-weight: 700;
}

.compare__col--with .compare__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--brand);
  font-weight: 700;
}

.compare__col--with .compare__list li {
  color: var(--ink-soft);
}

/* Testimonials */
.testimonials__grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .testimonials__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial {
  display: flex;
  flex-direction: column;
  padding: 1.75rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.testimonial:hover {
  border-color: rgba(49, 188, 131, 0.35);
  box-shadow: 0 12px 36px var(--brand-glow);
}

.testimonial__stars {
  margin-bottom: 1rem;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  color: #f59e0b;
}

.testimonial__quote {
  margin: 0 0 1.25rem;
  flex: 1;
}

.testimonial__quote p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.testimonial__name {
  display: block;
  font-style: normal;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--ink);
}

.testimonial__role {
  margin: 0.15rem 0 0;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* Sector pain cards */
.sector-pain {
  background: #fff;
}

.sector-pain__grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .sector-pain__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.sector-pain__card {
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.sector-pain__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 0.75rem;
  color: var(--brand);
}

.sector-pain__icon .icon {
  width: 1.5rem;
  height: 1.5rem;
}

.sector-pain__card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.125rem;
  font-family: var(--font);
  font-weight: 700;
  color: var(--ink);
}

.sector-pain__quote {
  margin: 0 0 1rem;
  font-size: 0.875rem;
  font-style: italic;
  color: var(--muted);
  line-height: 1.55;
}

.sector-pain__solution {
  margin: 0;
  font-size: 0.875rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

.sector-pain__footnote {
  margin: 2.5rem 0 0;
  text-align: center;
  font-size: 0.875rem;
  color: var(--muted);
}

/* FAQ */
.faq__inner {
  max-width: 42rem;
  margin-inline: auto;
}

.faq__list {
  border-top: 1px solid var(--border);
}

.faq__item {
  border-bottom: 1px solid var(--border);
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__question::after {
  content: "+";
  flex-shrink: 0;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--brand);
  transition: transform 0.2s ease;
}

.faq__item[open] .faq__question::after {
  transform: rotate(45deg);
}

.faq__question:hover {
  color: var(--brand-dark);
}

.faq__answer {
  margin: 0 0 1.25rem;
  padding-right: 1.5rem;
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.65;
}

.cta-block__trust {
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
}

.cta-block__trust li::before {
  content: "✓ ";
  color: var(--brand-light);
  font-weight: 700;
}

/* Sectors (legacy tag cloud — unused on landing) */
.sectors {
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
}

.sectors__label {
  margin: 0 0 1rem;
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.sectors__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 0.75rem;
}

.sectors__list span {
  padding: 0.4rem 0.9rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--bg-alt);
  border-radius: 100px;
  border: 1px solid var(--border);
}

/* Philosophy */
.philosophy {
  padding: 3.5rem 0;
}

.philosophy__inner {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.philosophy__mark {
  flex-shrink: 0;
}

.icon {
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  color: var(--brand);
}

.icon--lg {
  width: 3rem;
  height: 3rem;
}

.philosophy h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 700;
}

.philosophy p {
  margin: 0;
  color: #94a3b8;
  font-size: 1rem;
  line-height: 1.65;
}

@media (max-width: 600px) {
  .philosophy__inner {
    flex-direction: column;
    padding: 1.5rem;
  }
}

/* Sections */
.section {
  padding: 4.5rem 0;
}

.section--alt {
  background: var(--bg-alt);
}

.section__eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brand);
}

.section__header {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 3rem;
}

.section__header h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 600;
}

.section__header p {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.0625rem;
}

/* Steps */
.steps {
  display: grid;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 768px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: stretch;
  }
}

@media (min-width: 900px) {
  .steps {
    position: relative;
    gap: 2.5rem;
  }

  .steps::before {
    content: "";
    position: absolute;
    top: 3.25rem;
    left: calc(16.666% + 1.5rem);
    right: calc(16.666% + 1.5rem);
    height: 2px;
    background: linear-gradient(
      90deg,
      rgba(49, 188, 131, 0.15) 0%,
      rgba(49, 188, 131, 0.45) 50%,
      rgba(49, 188, 131, 0.15) 100%
    );
    pointer-events: none;
    z-index: 0;
  }

  .step {
    position: relative;
    z-index: 1;
  }
}

.step {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.75rem;
  background: #fff;
  border: 1px solid rgba(28, 25, 23, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.step:hover {
  border-color: rgba(49, 188, 131, 0.35);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(49, 188, 131, 0.08);
}

.step__head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.step__num {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  background: var(--brand);
  border-radius: 10px;
}

.step__icon {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  background: var(--brand-muted);
  border: 1px solid rgba(49, 188, 131, 0.25);
  border-radius: var(--radius);
}

.step__icon .icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--brand);
}

.step h3 {
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
  font-weight: 700;
}

.step p {
  margin: 0;
  flex: 1;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--text-muted);
}

/* Features */
.features {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.feature {
  padding: 1.5rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.feature:hover {
  border-color: rgba(49, 188, 131, 0.4);
  box-shadow: 0 8px 30px var(--brand-glow);
}

.feature__icon {
  margin-bottom: 0.75rem;
}

.feature__badge {
  display: inline-block;
  margin-bottom: 0.75rem;
  padding: 0.2rem 0.55rem;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 100px;
}

.feature--soon {
  opacity: 0.85;
  background: var(--bg-alt);
}

.feature--soon .feature__icon .icon {
  color: var(--text-muted);
}

.roadmap {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}

.roadmap__title {
  margin: 0 0 0.5rem;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  text-align: center;
}

.roadmap__intro {
  margin: 0 auto 1.5rem;
  max-width: 36rem;
  text-align: center;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.roadmap__grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 600px) {
  .roadmap__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .roadmap__grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: none;
    margin-inline: 0;
  }
}

.roadmap__cta {
  margin: 2rem 0 0;
  text-align: center;
}

.feature h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  font-weight: 700;
}

.feature p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Pricing */
.pricing {
  display: grid;
  gap: 1.5rem;
  max-width: 920px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .pricing {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
  }
}

.pricing-card {
  width: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 2rem;
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.pricing-card > .btn,
.pricing-card > .signup-form {
  margin-top: auto;
}

.pricing-card .signup-form {
  flex-direction: column;
}

.pricing-card .signup-form input {
  width: 100%;
  border: 1px solid var(--border);
}

.pricing-card .signup-form input:focus {
  box-shadow: 0 0 0 3px var(--brand-glow);
}

.pricing-card .signup-form .btn--primary {
  background: var(--brand);
  border-color: var(--brand);
  width: 100%;
}

.pricing-card .signup-form .btn--primary:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
}

.pricing-card > .cta-block__fine {
  margin-top: 0.75rem;
  text-align: center;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.pricing-card--featured {
  border-color: var(--brand);
  box-shadow: 0 12px 40px var(--brand-glow);
}

.pricing-card--pro {
  border-color: var(--ink);
  box-shadow: var(--shadow-lg);
}

.pricing-card--waitlist {
  opacity: 0.92;
  border-style: dashed;
  border-color: rgba(28, 25, 23, 0.25);
  background: var(--bg-alt);
}

.pricing-card__badge--waitlist {
  color: var(--ink-soft);
  background: rgba(28, 25, 23, 0.08);
  border: 1px solid var(--border);
}

.pricing-card__features--pro li {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.35rem 0.75rem;
}

.pricing-card__feature-soon {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  background: rgba(28, 25, 23, 0.06);
  padding: 0.15rem 0.45rem;
  border-radius: 100px;
  flex-shrink: 0;
}

.pricing-card__feature-label {
  flex: 1;
  min-width: 0;
}

.pricing-card__badge--offer {
  color: #fff;
  background: var(--ink);
}

.pricing-card__amount--strike {
  display: block;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: line-through;
  letter-spacing: normal;
  margin-bottom: 0.15rem;
}

.pricing-card__price .pricing-card__amount:not(.pricing-card__amount--strike) {
  display: inline;
}

.pricing-card__badge {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.3rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--brand-dark);
  background: var(--brand-light);
  border-radius: 100px;
}

.pricing-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
}

.pricing-card__price {
  margin: 0 0 0.25rem;
}

.pricing-card__amount {
  font-size: 2.75rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
}

.pricing-card__period {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
}

.pricing-card__tagline {
  margin: 0 0 1.5rem;
  color: var(--text-muted);
  font-size: 0.9375rem;
}

.pricing-card__features {
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
}

.pricing-card__features li {
  position: relative;
  padding: 0.4rem 0 0.4rem 1.5rem;
  font-size: 0.9375rem;
}

.pricing-card__features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--brand);
  font-weight: 700;
}

.pricing-card__commission {
  padding: 1rem 1.15rem;
  margin-bottom: 1.5rem;
  background: var(--brand-light);
  border-radius: var(--radius);
  border: 1px solid rgba(49, 188, 131, 0.2);
}

.pricing-card__commission strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.875rem;
  color: var(--brand-dark);
}

.pricing-card__commission p {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.pricing__note {
  margin: 2rem auto 0;
  max-width: 32rem;
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* CTA block */
.cta-block {
  padding: 4rem 0 5rem;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: #fff;
}

.cta-block__inner {
  text-align: center;
  max-width: 32rem;
  margin: 0 auto;
}

.cta-block h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.5rem, 4vw, 2.1rem);
  font-weight: 600;
}

.cta-block__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.cta-block .btn--ghost-on-brand {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

.cta-block .btn--ghost-on-brand:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #fff;
}

.cta-block > .container > p,
.cta-block__inner > p:not(.cta-block__fine) {
  margin: 0 0 1.75rem;
  opacity: 0.9;
}

.signup-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 480px) {
  .signup-form {
    flex-direction: row;
  }
}

.signup-form input {
  flex: 1;
  padding: 0.85rem 1rem;
  font-family: inherit;
  font-size: 1rem;
  border: none;
  border-radius: 10px;
  outline: none;
}

.signup-form input:focus {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.4);
}

.signup-form .btn--primary {
  background: var(--text);
  border-color: var(--text);
  white-space: nowrap;
}

.signup-form .btn--primary:hover {
  background: #1e293b;
  border-color: #1e293b;
}

.cta-block__fine {
  margin: 1rem 0 0;
  font-size: 0.8125rem;
  opacity: 0.75;
}

/* Footer */
.footer {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  background: var(--bg-alt);
}

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

.logo--footer img {
  height: 16px;
  width: auto;
  max-width: 96px;
  opacity: 0.9;
}

.footer__copy {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.footer__nav {
  display: flex;
  gap: 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
}

.footer__nav a:hover {
  color: var(--brand);
}

/* Legal pages */
.header--legal {
  border-bottom: 1px solid var(--border);
}

.legal {
  padding: 3rem 0 4rem;
  background: var(--bg);
}

.legal__inner {
  max-width: 720px;
}

.legal h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  color: var(--ink);
}

.legal__updated {
  margin: 0 0 2rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.legal section {
  margin-bottom: 2rem;
}

.legal h2 {
  margin: 0 0 0.75rem;
  font-size: 1.125rem;
  font-family: var(--font);
  font-weight: 600;
  color: var(--ink);
}

.legal p,
.legal li {
  color: var(--ink-soft);
}

.legal ul {
  margin: 0.5rem 0 0;
  padding-left: 1.25rem;
}

.legal a {
  color: var(--brand-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal a:hover {
  color: var(--brand);
}

/* Scroll reveal — solo oculta si JS está activo (html.js en landing) */
html.js [data-reveal]:not(.is-visible) {
  opacity: 0;
  transform: translateY(20px);
}

[data-reveal] {
  transition: opacity 0.55s ease, transform 0.55s ease;
}

html.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html.js [data-reveal]:not(.is-visible) {
    opacity: 1;
    transform: none;
  }

  [data-reveal] {
    transition: none;
  }
}

/* Toast */
.toast {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  z-index: 200;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  max-width: min(420px, calc(100% - 2rem));
  padding: 1rem 1.25rem;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  transform: translate(-50%, 120%);
  transition: transform 0.35s ease;
}

.toast.is-visible {
  transform: translate(-50%, 0);
}

.toast p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.5;
  flex: 1;
}

.toast__close {
  flex-shrink: 0;
  padding: 0;
  border: none;
  background: transparent;
  color: #a8a29e;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
}

.toast__close:hover {
  color: #fff;
}
