:root {
  /* Paleta Bmatch — derivada del logo */
  --clr-primary: #5B8DEF;
  /* Azul principal */
  --clr-primary-dark: #3A6ED8;
  /* Azul oscuro */
  --clr-primary-light: #dce8ff;
  /* Azul claro */
  --clr-accent: #4DBFA3;
  /* Verde */
  --clr-accent-warm: #F2C94C;
  /* Amarillo */
  --clr-accent-coral: #E88B84;
  /* Coral */
  --clr-navy: #2D3A5C;
  /* Navy (texto fuerte) */
  --clr-dark: #0f1629;
  /* Fondo oscuro */
  --clr-dark-mid: #1a2444;
  /* Fondo medio */
  --clr-light: #f0f4fa;
  /* Fondo claro */
  --clr-white: #ffffff;
  --clr-text-dark: #2D3A5C;
  --clr-text-muted: #6b7a8d;
  --overlay-dark: rgba(15, 22, 41, 0.65);
  --overlay-darker: rgba(15, 22, 41, 0.82);
  --overlay-tinted: rgba(20, 30, 55, 0.72);
  --overlay-tinted-blue: rgba(13, 22, 50, 0.78);
  --overlay-green: rgba(10, 50, 60, 0.72);
  --font-base: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-size-base: 1rem;
  --line-height-base: 1.6;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --radius-sm: 0.5rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --radius-pill: 999px;
  --trans-fast: 150ms ease;
  --trans-base: 300ms ease;
  --trans-slow: 600ms ease;
  --section-min-h: 100svh;
  --section-pad: 5rem 1.25rem;
  --nav-h: 64px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-base);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  background: var(--clr-dark);
  color: var(--clr-white);
  overflow-x: hidden;
}

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

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

ul,
ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

:focus-visible {
  outline: 3px solid var(--clr-primary);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* NAV */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: transparent;
  transition: background var(--trans-base), backdrop-filter var(--trans-base), box-shadow var(--trans-base);
}

.site-nav.scrolled {
  background: rgba(15, 22, 41, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(91, 141, 239, 0.12);
}

.site-nav nav {
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.logo-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.logo-text {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--clr-white);
}

.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--clr-white);
}

.hamburger,
.hamburger::before,
.hamburger::after {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  transition: transform var(--trans-base), opacity var(--trans-base);
}

.hamburger {
  position: relative;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  left: 0;
}

.hamburger::before {
  top: -7px;
}

.hamburger::after {
  top: 7px;
}

.nav-toggle[aria-expanded="true"] .hamburger {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .hamburger::before {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-links {
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  background: rgba(15, 22, 41, 0.97);
  backdrop-filter: blur(16px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  display: flex;
  transform: translateX(100%);
  transition: transform var(--trans-base);
  z-index: 999;
}

.nav-links.open {
  transform: translateX(0);
}

.nav-link {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.75);
  transition: color var(--trans-fast);
  padding: 0.25rem 0.5rem;
}

.nav-link:hover,
.nav-link.active {
  color: var(--clr-primary);
}

.nav-link.nav-cta {
  background: var(--clr-primary);
  color: var(--clr-dark);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
}

.nav-link.nav-cta:hover {
  background: var(--clr-primary-dark);
  color: var(--clr-dark);
}

/* SECTIONS */
.section {
  position: relative;
  min-height: var(--section-min-h);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.parallax-bg {
  position: absolute;
  inset: -20%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  will-change: transform;
  z-index: 0;
}

.parallax-fg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(91, 141, 239, 0.08) 0%, transparent 70%);
  will-change: transform;
  z-index: 1;
  pointer-events: none;
}

.section-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.section-overlay--dark {
  background: var(--overlay-dark);
}

.section-overlay--dark-heavy {
  background: var(--overlay-darker);
}

.section-overlay--tinted {
  background: var(--overlay-tinted);
}

.section-overlay--tinted-blue {
  background: var(--overlay-tinted-blue);
}

.section-overlay--green {
  background: var(--overlay-green);
}

.section-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  padding: var(--section-pad);
  padding-top: calc(var(--nav-h) + 3rem);
  text-align: center;
}

.section-content--light {
  color: var(--clr-text-dark);
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-primary);
  margin-bottom: var(--space-sm);
}

.section-title {
  font-size: clamp(1.8rem, 6vw, 3.2rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-md);
  color: var(--clr-white);
}

.section-title--dark {
  color: var(--clr-text-dark);
}

.section-title--large {
  font-size: clamp(2rem, 7vw, 4rem);
}

.section-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255, 255, 255, 0.75);
  max-width: 500px;
  margin: 0 auto var(--space-lg);
}

.section-callout {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  font-style: italic;
  color: rgba(255, 255, 255, 0.7);
  max-width: 520px;
  margin: var(--space-md) auto 0;
  border-left: 3px solid var(--clr-primary);
  padding-left: var(--space-sm);
  text-align: left;
}

.disclaimer {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: var(--space-sm);
}

/* HERO */
.section--hero {
  min-height: 100svh;
  background-color: var(--clr-primary);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
}

.hero-bg-shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: radial-gradient(circle at top left, var(--clr-primary-light) 0%, transparent 60%),
    radial-gradient(circle at bottom right, rgba(232, 139, 132, 0.4) 0%, transparent 60%);
  opacity: 0.15;
}

.hero-bg-shape::before {
  content: '';
  position: absolute;
  top: -150px;
  left: -100px;
  width: 120%;
  height: 350px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0 0 50% 50%;
  transform: rotate(3deg);
  z-index: 1;
}

.hero-bg-shape::after {
  content: '';
  position: absolute;
  bottom: -150px;
  right: -100px;
  width: 120%;
  height: 350px;
  background: var(--clr-dark);
  border-radius: 50% 50% 0 0;
  transform: rotate(-5deg);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--nav-h) + 3rem);
  padding-bottom: 6rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-text-col {
  text-align: center;
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.15);
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  display: inline-block;
  margin-bottom: 1.5rem;
  letter-spacing: 0.1em;
}

.hero-title {
  font-size: clamp(2.5rem, 8vw, 3.2rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: var(--clr-white);
  margin-bottom: var(--space-md);
}

.hero-title--light {
  color: var(--clr-white);
}

.hero-subtitle {
  font-size: clamp(1.05rem, 3vw, 1.3rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-lg);
  line-height: 1.5;
  max-width: 540px;
  margin-inline: auto;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
}

.btn--store {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-pill);
  /* Pill shape like reference */
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.2;
  transition: transform var(--trans-base), box-shadow var(--trans-base), background var(--trans-fast);
  min-width: 180px;
  justify-content: center;
}

.btn--store span {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.btn--store small {
  display: block;
  font-size: 0.65rem;
  font-weight: 400;
  opacity: 0.85;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 0.1rem;
}

.btn--store:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}

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

.btn--dark {
  background: var(--clr-dark);
  color: var(--clr-white);
  border: 2px solid var(--clr-dark);
}

.btn--dark:hover {
  background: var(--clr-dark-mid);
  border-color: var(--clr-dark-mid);
}

.btn--outline {
  background: transparent;
  color: var(--clr-white);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--clr-white);
}

/* MOCKUP & CARDS */
.hero-image-col {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-mockup-wrapper {
  position: relative;
  display: inline-block;
  z-index: 3;
  width: 100%;
  /*max-width: 440px;*/
}

.hero-mockup-img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 35px 55px rgba(0, 0, 0, 0.4));
  transform: scale(1.05);
  /* Slight pop */
}

.floating-card {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--clr-white);
  padding: 1rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  color: var(--clr-text-dark);
  gap: 0.75rem;
  z-index: 4;
}

.float-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.float-icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(77, 191, 163, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.float-icon-rect {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  background: rgba(242, 201, 76, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.float-left {
  top: 20%;
  left: -20%;
}

.float-right {
  bottom: 25%;
  right: -20%;
}

@keyframes floatAnim {

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

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

.animate-float {
  animation: floatAnim 5s ease-in-out infinite;
}

.animate-float-delayed {
  animation: floatAnim 6s ease-in-out infinite 2.5s;
}

/* Desktop overrides */
@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr 1.15fr;
    /* Dale un poquitito más de espacio a la columna del celular */
    gap: 4rem;
  }

  .hero-text-col {
    text-align: left;
  }

  .hero-subtitle {
    margin-inline: 0;
  }

  .cta-group {
    justify-content: center;
  }

  .hero-bg-shape::after {
    bottom: -180px;
    transform: rotate(-8deg);
  }
}

/* PROBLEM SECTION GRID */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.problem-image-col {
  position: relative;
  display: flex;
  justify-content: center;
  order: 2;
  /* Mobile: image below text */
}

.problem-text-col {
  text-align: left;
  order: 1;
  /* Mobile: text above image */
}

.problem-img-wrapper {
  position: relative;
  width: 100%;
  max-width: 480px;
}

.problem-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.5));
}

.problem-badge {
  position: absolute;
  background: var(--clr-white);
  color: var(--clr-text-dark);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 5;
}

.pb-1 {
  top: 15%;
  right: -5%;
  color: var(--clr-accent-coral);
}

.pb-2 {
  bottom: 20%;
  left: -5%;
  color: var(--clr-accent);
}

.problem-title-impact {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.text-highlight {
  color: var(--clr-accent-coral);
  font-style: italic;
}

.problem-description {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* BULLETS */
.bullet-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  text-align: left;
  max-width: 500px;
}

.bullet-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.05);
  padding: 1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform var(--trans-base), background var(--trans-base);
}

.bullet-item:hover {
  transform: translateX(10px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.bullet-item strong {
  display: block;
  font-size: 1.1rem;
  color: var(--clr-white);
  margin-bottom: 0.2rem;
}

.bullet-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

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

  .problem-image-col {
    order: 1;
  }

  .problem-text-col {
    order: 2;
  }
}

/* VILLAIN SECTION FULL BG */
.section--villain {
  position: relative;
  background-color: var(--clr-accent);
  /* Verde Bmatch */
  color: var(--clr-dark);
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.villain-bg-shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.4) 0%, transparent 60%),
    radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.2) 0%, transparent 60%);
  opacity: 0.8;
}

.villain-bg-shape::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -10%;
  width: 120%;
  height: 350px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 0 0 50% 50%;
  transform: rotate(4deg);
  z-index: 1;
}

.villain-bg-shape::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -10%;
  width: 120%;
  height: 350px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50% 50% 0 0;
  transform: rotate(-4deg);
  z-index: 1;
}

/* VILLAIN GRID */
.villain-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.villain-text-col {
  text-align: left;
}

.eyebrow-coral {
  color: #ffffff;
  background: rgba(232, 139, 132, 0.15);
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-pill);
  font-size: 1rem;
  display: inline-block;
  margin-bottom: 1.5rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
}

.villain-title {
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--clr-text-dark);
  margin-bottom: 1.5rem;
  letter-spacing: -0.04em;
}

.text-glow {
  color: #ffffff;
  /*text-shadow: 0 0 20px rgba(255, 255, 255, 0.4);*/
}

.villain-subtitle {
  font-size: 1.25rem;
  color: rgba(45, 58, 92, 0.85);
  /* rgba(--clr-text-dark equivalent) */
  margin-bottom: 1.5rem;
  line-height: 1.6;
  max-width: 500px;
}

.villain-subtitle strong {
  color: var(--clr-text-dark);
}

.disclaimer-text {
  font-size: 0.85rem;
  color: rgba(45, 58, 92, 0.6);
  font-style: italic;
}

/* POLAR CHART */
.villain-stats-col {
  display: flex;
  justify-content: center;
}

.polar-chart-wrapper {
  position: relative;
  width: 100%;
  max-width: 700px;
  /* Aumentado sustancialmente para gr\u00e1fico extra grande */
  aspect-ratio: 1 / 1;
}

.polar-chart-svg {
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
}

@media (min-width: 900px) {
  .villain-grid {
    grid-template-columns: 1fr 1.4fr;
    /* Más espacio a la columna del gráfico */
    gap: 8rem;
    /* Mayor separación entre el texto y el gráfico */
  }
}

/* GUIDE SECTION PREMIUM BG */
.section--guide {
  position: relative;
  background-color: var(--clr-accent-coral);
  /* Rosa del Logotipo */
  color: var(--clr-text-dark);
  overflow: hidden;
}

.guide-bg-shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.5) 0%, transparent 60%),
    radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.2) 0%, transparent 60%);
  opacity: 0.8;
}

.guide-bg-shape::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -5%;
  width: 110%;
  height: 250px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 0 0 50% 50%;
  transform: rotate(3deg);
  z-index: 1;
}

.guide-bg-shape::after {
  content: '';
  position: absolute;
  bottom: -120px;
  left: -5%;
  width: 110%;
  height: 250px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50% 50% 0 0;
  transform: rotate(-3deg);
  z-index: 1;
}

/* TITULAR PREMIUM */
.premium-title-wrapper {
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.premium-eyebrow {
  color: var(--clr-white);
  background: rgba(255, 255, 255, 0.2);
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-pill);
  display: inline-block;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 1.5rem;
}

.guide-premium-title {
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--clr-text-dark);
  letter-spacing: -0.02em;
}

.guide-premium-title span {
  display: block;
}

.text-glow-green {
  color: var(--clr-white);
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.6);
}

/* TIMELINE ESCALONADA PREMIUM */
.premium-timeline {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
  z-index: 2;
  margin-bottom: 4rem;
}

/* Línea conectiva base para mobile */
.premium-timeline::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 40px;
  bottom: 0;
  width: 2px;
  background: rgba(255, 255, 255, 0.4);
  z-index: 0;
}

.premium-card {
  position: relative;
  display: flex;
  gap: 1.5rem;
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  /* Borde glass fuerte */
  border-radius: 20px;
  padding: 2rem;
  margin-left: 2rem;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s, border-color 0.4s;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
  text-align: left;
}

.premium-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1), inset 0 0 20px rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 1);
}

/* Conector Glow */
.premium-card::before {
  content: '';
  position: absolute;
  left: -2rem;
  top: 3rem;
  width: 2rem;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8));
}

.premium-card-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-text-dark);
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.4);
  transition: transform 0.4s;
}

.premium-card:hover .premium-card-icon {
  transform: scale(1.1) rotate(5deg);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
}

.premium-card-content {
  text-align: left;
}

.premium-card-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--clr-text-dark);
  margin-bottom: 0.5rem;
}

.premium-card-text {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(45, 58, 92, 0.85);
  /* Azul muy oscuro diluido */
}

.premium-microcopy {
  position: relative;
  z-index: 2;
  font-size: 1.25rem;
  color: var(--clr-text-dark);
  font-weight: 600;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  display: inline-block;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

@media (min-width: 900px) {
  .premium-timeline {
    flex-direction: row;
    gap: 3rem;
  }

  .premium-timeline::before {
    left: 4rem;
    right: 4rem;
    top: 54px;
    bottom: auto;
    width: auto;
    height: 2px;
  }

  .premium-card {
    flex-direction: column;
    margin-left: 0;
    margin-top: 2rem;
  }

  .premium-card::before {
    left: 50%;
    top: -2rem;
    width: 2px;
    height: 2rem;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.8));
  }

  .premium-card:nth-child(2) {
    margin-top: 6rem;
  }

  .premium-card:nth-child(3) {
    margin-top: 10rem;
  }

  .premium-card:nth-child(1)::before {
    height: 2rem;
  }

  .premium-card:nth-child(2)::before {
    height: 6rem;
    top: -6rem;
  }

  .premium-card:nth-child(3)::before {
    height: 10rem;
    top: -10rem;
  }
}

/* PLAN SECTION PREMIUM */
.section--plan-premium {
  position: relative;
  background-color: var(--clr-dark);
  /* Fondo azul noche profundo */
  color: var(--clr-white);
  padding: 8rem 0;
  /* Más aire para respiración visual */
  overflow: hidden;
}

/* Franja superior curva (transición desde Guía) */
.plan-bg-shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.plan-bg-shape::before {
  content: '';
  position: absolute;
  top: -120px;
  left: -5%;
  width: 110%;
  height: 250px;
  background-color: var(--clr-dark);
  border-radius: 0 0 50% 50%;
  transform: rotate(-2deg);
  z-index: 1;
}

.plan-bg-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center top, rgba(91, 141, 239, 0.12) 0%, var(--clr-dark) 70%);
  z-index: 0;
}

/* Textura granulada (grain sutil) */
.plan-particles {
  position: absolute;
  inset: 0;
  background-image: url('data:image/svg+xml,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)"/%3E%3C/svg%3E');
  opacity: 0.05;
  mix-blend-mode: overlay;
  z-index: 1;
  pointer-events: none;
}

/* TITULARES PLAN PREMIUM */
.plan-title-wrapper {
  margin-bottom: 6rem;
}

.plan-premium-title {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.plan-title-main {
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 900;
  color: var(--clr-white);
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.plan-title-sub {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  /* Elegante minimal */
  color: var(--clr-primary);
  /* Detalles secundarios azul eléctrico */
  letter-spacing: -0.01em;
}

.text-mint {
  color: var(--clr-accent);
}

/* TIMELINE PREMIUM */
.premium-step-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto 5rem;
}

/* Linea Central Muerta (Fondo) */
.premium-step-line {
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255, 255, 255, 0.05);
  /* Muy sutil */
  z-index: 0;
}

/* Linea Glow Animada */
.premium-step-glow-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent, var(--clr-accent) 50%, transparent);
  opacity: 0.5;
  background-size: 100% 200%;
  animation: flowLight 4s linear infinite;
}

@keyframes flowLight {
  0% {
    background-position: 0 -100%;
  }

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

.premium-step-item {
  position: relative;
  display: flex;
  gap: 2rem;
  margin-bottom: 4rem;
  z-index: 2;
  text-align: left;
}

.premium-step-item:last-child {
  margin-bottom: 0;
}

.step-visual {
  width: 50px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  padding-top: 2rem;
  /* Baja el nodo para alinearlo visualmente */
}

.step-node {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--clr-white);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
  position: relative;
  z-index: 2;
  animation: nodePulse 3s infinite ease-in-out;
  transition: all 0.3s ease;
}

@keyframes nodePulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }

  50% {
    transform: scale(1.4);
    opacity: 1;
  }

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

.step-content {
  flex: 1;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 1.5rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

/* Hover base sutil para el container outline */
.premium-step-item:hover .step-content {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.02);
}

/* --- CLASES DE JERARQUÍA --- */
/* Paso 1: Azul Eléctrico */
.step-blue .step-content {
  border-color: rgba(91, 141, 239, 0.3);
}

.step-blue:hover .step-content {
  border-color: rgba(91, 141, 239, 0.8);
  box-shadow: 0 8px 30px rgba(91, 141, 239, 0.1);
  background: rgba(91, 141, 239, 0.03);
}

.step-blue .step-node {
  background: var(--clr-primary);
  box-shadow: 0 0 15px rgba(91, 141, 239, 0.6);
}

.step-blue .step-number {
  color: var(--clr-primary);
}

/* Paso 2: Verde Menta */
.step-mint .step-content {
  border-color: rgba(77, 191, 163, 0.3);
}

.step-mint:hover .step-content {
  border-color: rgba(77, 191, 163, 0.8);
  box-shadow: 0 8px 30px rgba(77, 191, 163, 0.1);
  background: rgba(77, 191, 163, 0.03);
}

.step-mint .step-node {
  background: var(--clr-accent);
  box-shadow: 0 0 15px rgba(77, 191, 163, 0.6);
}

.step-mint .step-number {
  color: var(--clr-accent);
}

/* Paso 3: Coral Suave */
.step-coral .step-content {
  border-color: rgba(232, 139, 132, 0.3);
}

.step-coral:hover .step-content {
  border-color: rgba(232, 139, 132, 0.8);
  box-shadow: 0 8px 30px rgba(232, 139, 132, 0.1);
  background: rgba(232, 139, 132, 0.03);
}

.step-coral .step-node {
  background: var(--clr-accent-coral);
  box-shadow: 0 0 15px rgba(232, 139, 132, 0.6);
}

.step-coral .step-number {
  color: var(--clr-accent-coral);
}

.step-number {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  display: block;
  margin-bottom: 0.5rem;
  font-family: monospace;
}

.step-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--clr-white);
  margin-bottom: 0.8rem;
  letter-spacing: -0.01em;
}

.step-text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

/* LAYOUT 2 COLUMNAS (DESKTOP) */
@media (min-width: 900px) {
  .section--plan-premium .section-content {
    text-align: left !important;
  }

  .plan-grid-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
  }

  .plan-title-wrapper {
    margin-bottom: 2rem;
  }

  /* El gráfico se ajusta naturalmente bajo el título */
  .plan-premium-graphic {
    margin-top: 2rem;
  }

  /* TIMELINE EN FORMATO COLUMNA SIMPLE (No ZigZag) */
  .premium-step-timeline {
    margin: 0;
    padding-top: 0;
  }

  .premium-step-item {
    align-items: flex-start;
    margin-bottom: 3rem;
  }

  .premium-step-item:last-child {
    margin-bottom: 0;
  }

  /* Conservamos la estética de la tarjeta con aire */
  .step-content {
    padding: 2rem;
    width: auto;
    /* Reset width */
    flex: 1;
    /* Allow content to take available space */
  }

  /* Reset zig-zag specific styles */
  .premium-step-item:nth-child(even) {
    flex-direction: row;
    text-align: left;
  }

  .step-visual {
    position: relative;
    /* Reset position */
    left: auto;
    /* Reset left */
    transform: none;
    /* Reset transform */
    padding-top: 2rem;
    /* Restore original padding */
  }

  .premium-step-item:nth-child(even) .step-text {
    margin-left: 0;
    /* Reset margin */
  }
}

/* IMAGEN PREMIUM (Mockup / App) */
.plan-premium-image {
  position: relative;
  margin-top: 3rem;
  max-width: 420px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  /* Outline sutil */
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.plan-premium-image:hover {
  transform: translateY(-8px);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6), 0 0 30px rgba(91, 141, 239, 0.15);
  /* Resplandor azul eléctrico */
  border-color: rgba(255, 255, 255, 0.15);
}

.image-glow-bg {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(91, 141, 239, 0.2) 0%, transparent 70%);
  /* Glow azul eléctrico internno */
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.plan-hero-img {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 2;
  filter: contrast(1.05) brightness(0.95);
}

/* IMPACT SECTION */
.section--impact {
  position: relative;
  background-color: var(--clr-primary);
  /* Color base del Home */
  color: var(--clr-white);
  overflow: hidden;
  /* Corta el vector del hero-bg-shape */
}

/* --- FLECHAS DE NAVEGACIÓN SCROLL --- */
.scroll-down-arrow {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  z-index: 10;
  transition: all 0.3s ease;
  animation: bounceArrow 2.5s infinite;
}

.scroll-down-arrow svg {
  width: 24px;
  height: 24px;
}

.scroll-down-arrow:hover {
  animation-play-state: paused;
  transform: translateX(-50%) translateY(-5px);
}

.arrow-light {
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.arrow-light:hover {
  color: var(--clr-white);
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

.arrow-dark {
  color: rgba(45, 58, 92, 0.7);
  background: rgba(45, 58, 92, 0.05);
  border: 1px solid rgba(45, 58, 92, 0.1);
}

.arrow-dark:hover {
  color: var(--clr-text-dark);
  background: rgba(45, 58, 92, 0.15);
  border-color: rgba(45, 58, 92, 0.3);
}

@keyframes bounceArrow {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  40% {
    transform: translateX(-50%) translateY(-10px);
  }

  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* DESCARGA PREMIUM CTA SECTION */
.section--download {
  position: relative;
  color: var(--clr-white);
  padding: 6rem 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section--download .parallax-bg {
  filter: blur(10px) saturate(0.6);
  opacity: 0.6;
}

.section-overlay--dark-heavy {
  background: rgba(2, 12, 31, 0.85);
  /* Azul Noche pesado */
}

.download-premium-card {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  border: 2px solid var(--clr-accent);
  /* Menta brillante */
  border-radius: 24px;
  padding: 4rem 2rem;
  text-align: center;
  background: rgba(2, 12, 31, 0.4);
  box-shadow: 0 0 40px rgba(77, 191, 163, 0.15), inset 0 0 20px rgba(77, 191, 163, 0.05);
  /* Glow exterior e interior */
  z-index: 2;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.download-premium-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 50px rgba(77, 191, 163, 0.25), inset 0 0 30px rgba(77, 191, 163, 0.08);
}

.download-glow-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150%;
  height: 150%;
  background: radial-gradient(circle, rgba(91, 141, 239, 0.15) 0%, transparent 60%);
  /* Resplandor azul eléctrico fondo de caja */
  pointer-events: none;
  z-index: -1;
}

.download-title-premium {
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.download-title-main {
  color: var(--clr-accent);
  /* Verde Menta */
}

.download-title-sub {
  color: var(--clr-electric-blue);
  /* Azul Eléctrico */
  font-size: clamp(2rem, 4vw, 3.2rem);
  opacity: 0.9;
}

/* Microcopy Descarga */
.download-microcopy-bold {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--clr-white);
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}

.download-microcopy-sub {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
  max-width: 400px;
  margin: 0 auto;
}

/* Botones Premium Menta / Outline */
.btn--premium-menta {
  background: var(--clr-accent);
  color: var(--clr-dark);
  font-weight: 800;
  border: 1px solid var(--clr-accent);
  box-shadow: 0 0 15px rgba(77, 191, 163, 0.3);
  transition: all 0.3s ease;
}

.btn--premium-menta:hover {
  background: var(--clr-white);
  color: var(--clr-dark);
  border-color: var(--clr-white);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.btn--premium-outline {
  background: transparent;
  color: var(--clr-white);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.btn--premium-outline:hover {
  border-color: var(--clr-white);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* Adaptabilidad Mobile para Descargas Premium */
@media (max-width: 600px) {
  .download-premium-card {
    padding: 3rem 1.5rem;
    border-radius: 16px;
  }

  .download-title-premium {
    font-size: clamp(2.5rem, 10vw, 3rem);
    margin-bottom: 2.5rem;
  }

  .download-title-sub {
    font-size: clamp(1.8rem, 6vw, 2.2rem);
    line-height: 1.2;
  }

  .section--download .cta-group {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }

  .section--download .btn--store {
    width: 100%;
    justify-content: center;
  }
}

.metrics-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.metric {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  /* Borde blanco sutil */
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-md);
}

.metric-value {
  font-size: clamp(2.5rem, 8vw, 4rem);
  font-weight: 900;
  color: var(--clr-white);
  /* Texto blanco para resaltar contra el fondo primary */
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.metric-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* FAQ */
.section--faq {
  background: var(--clr-light);
  min-height: auto;
  padding: var(--space-2xl) 0;
}

.faq-list {
  max-width: 680px;
  margin: var(--space-lg) auto 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.faq-question {
  margin: 0;
}

.faq-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  padding: var(--space-md) 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--clr-text-dark);
  text-align: left;
  transition: color var(--trans-fast);
}

.faq-toggle:hover {
  color: var(--clr-primary-dark);
}

.faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform var(--trans-base), background var(--trans-fast);
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 2px;
}

.faq-icon::before {
  width: 10px;
  height: 2px;
}

.faq-icon::after {
  width: 2px;
  height: 10px;
  transition: transform var(--trans-base);
}

.faq-toggle[aria-expanded="true"] .faq-icon::after {
  transform: rotate(90deg);
}

.faq-toggle[aria-expanded="true"] .faq-icon {
  background: var(--clr-primary);
  border-color: var(--clr-primary);
  color: var(--clr-dark);
}

.faq-answer {
  font-size: 0.95rem;
  color: var(--clr-text-muted);
  line-height: 1.7;
  padding: 0 0 var(--space-md) 0;
  max-width: 580px;
}

/* FOOTER */
.site-footer {
  background: var(--clr-dark-mid);
  padding: var(--space-lg) var(--space-sm);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
}

.footer-brand {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--clr-white);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.footer-brand-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: inherit;
}

.footer-logo-icon {
  width: 28px;
  height: 28px;
}

.footer-links {
  display: flex;
  gap: var(--space-md);
}

.footer-link {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
  transition: color var(--trans-fast);
}

.footer-link:hover {
  color: var(--clr-primary);
}

/* FAB */
.fab-download {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 900;
  background: var(--clr-primary);
  color: var(--clr-dark);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 20px rgba(91, 141, 239, 0.4);
  white-space: nowrap;
  transition: opacity var(--trans-base), transform var(--trans-base), box-shadow var(--trans-base);
}

.fab-download:not([hidden]) {
  display: block;
}

.fab-download:hover {
  box-shadow: 0 8px 28px rgba(91, 141, 239, 0.55);
  transform: translateX(-50%) translateY(-2px);
}

/* ANIMATIONS */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.6s ease var(--anim-delay, 0s),
    transform 0.6s ease var(--anim-delay, 0s);
}

.animate-on-scroll.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .parallax-bg,
  .parallax-fg {
    transform: none !important;
  }

  .animate-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .scroll-hint__arrow {
    animation: none;
  }

  .meter-fill {
    transition: none;
  }
}

/* TABLET 600px+ */
@media (min-width:600px) {
  :root {
    --section-pad: 6rem 2rem;
  }

  .cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .metrics-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .nav-toggle {
    display: none;
  }

  .nav-links {
    position: static;
    inset: auto;
    background: transparent;
    backdrop-filter: none;
    flex-direction: row;
    gap: 0.25rem;
    transform: none;
    transition: none;
  }

  .nav-link {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.75);
  }

  .fab-download {
    display: none !important;
  }
}

/* DESKTOP 1024px+ */
@media (min-width:1024px) {
  :root {
    --section-pad: 7rem 2rem;
  }

  .section-content {
    max-width: 980px;
  }

  .hero-content {
    padding-top: calc(var(--nav-h) + 5rem);
  }

  .nav-link {
    font-size: 0.92rem;
  }
}

/* WIDE 1280px+ */
@media (min-width:1280px) {
  .section-content {
    max-width: 80%;
  }
}

/* UTILS */
.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;
}

.br-mobile {
  display: block;
}

@media (min-width:600px) {
  .br-mobile {
    display: none;
  }
}