/* ============================================================
   WEALTH GENESIS MENTORSHIP
   Financial Precision Luxury — Design System
   Fonts: Cormorant Garant · Syne · JetBrains Mono
   ============================================================ */

/* ── Design Tokens ── */
:root {
  /* Colors — warm dark palette */
  --bg-deep:     #080705;
  --bg-dark:     #0E0C09;
  --bg-section:  #131108;
  --bg-alt:      #191610;
  --bg-card:     #1C1913;

  /* Gold — refined, not garish */
  --gold:        #C9A55A;
  --gold-light:  #DFC280;
  --gold-pale:   #EDD9A8;
  --gold-dim:    rgba(201, 165, 90, 0.18);
  --gold-border: rgba(201, 165, 90, 0.22);
  --gold-glow:   rgba(201, 165, 90, 0.08);

  /* Text — warm cream tones */
  --cream:       #EDE8DF;
  --cream-70:    rgba(237, 232, 223, 0.70);
  --cream-40:    rgba(237, 232, 223, 0.40);
  --cream-20:    rgba(237, 232, 223, 0.12);

  /* Borders */
  --border:       rgba(201, 165, 90, 0.20);
  --border-sub:   rgba(237, 232, 223, 0.07);
  --border-faint: rgba(237, 232, 223, 0.04);

  /* Fonts */
  --f-display: 'Cormorant Garant', Georgia, 'Times New Roman', serif;
  --f-ui:      'Syne', system-ui, sans-serif;
  --f-mono:    'JetBrains Mono', 'Courier New', monospace;

  /* Spacing */
  --sp-xs:  0.5rem;
  --sp-sm:  1rem;
  --sp-md:  2rem;
  --sp-lg:  4rem;
  --sp-xl:  7rem;
  --sp-2xl: 11rem;

  /* Layout */
  --max-w: 1200px;
  --ease:  cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--f-ui);
  background: var(--bg-deep);
  color: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Layout ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

/* ── Typography Utilities ── */
.section-label {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.section-title {
  font-family: var(--f-display);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 600;
  line-height: 1.08;
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.section-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-light);
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--f-ui);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bg-deep);
  background: var(--gold);
  padding: 0.85rem 2rem;
  border: none;
  cursor: pointer;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
  transition: background 0.2s var(--ease), transform 0.2s var(--ease), box-shadow 0.2s;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201, 165, 90, 0.30);
}

.btn-primary.btn-lg {
  font-size: 0.9rem;
  padding: 1.05rem 2.6rem;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.btn-text {
  display: inline-flex;
  align-items: center;
  font-family: var(--f-ui);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--cream-70);
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.btn-text:hover {
  color: var(--gold-light);
  border-color: var(--gold-light);
}

/* ── Reveal Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Scroll Progress ── */
.scroll-bar {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  z-index: 9999;
  pointer-events: none;
  transition: width 0.1s linear;
}

/* ── Site Header (Sticky) ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: var(--bg-deep);
}

/* ── Announcement Bar ── */
.announce-bar {
  background: var(--gold);
  padding: 0.55rem 1rem;
  overflow: hidden;
  max-height: 44px;
  transition: max-height 0.4s var(--ease), opacity 0.3s, padding 0.3s;
  opacity: 1;
}

.site-header.compact .announce-bar {
  max-height: 0;
  opacity: 0;
  padding: 0 1rem;
}

.announce-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-family: var(--f-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--bg-deep);
  flex-wrap: wrap;
}

.announce-pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--bg-deep);
  opacity: 0.5;
  animation: pulse-dot 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.4); }
}

.announce-dot { opacity: 0.35; }

.announce-inner a {
  font-weight: 800;
  border-bottom: 1px solid rgba(8, 7, 5, 0.4);
  color: var(--bg-deep);
  transition: opacity 0.2s;
}

.announce-inner a:hover { opacity: 0.65; }

/* ── Navbar ── */
.navbar {
  border-bottom: 1px solid transparent;
  transition: background 0.35s var(--ease), border-color 0.35s, backdrop-filter 0.35s;
}

.site-header.compact .navbar {
  background: rgba(8, 7, 5, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--border-sub);
}

.nav-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 56px;
  width: auto;
  transition: height 0.3s var(--ease);
}

/* Al hacer scroll, el header se compacta — el logo se achica un pelín
   para mantener proporción y dejar más espacio visual a la nav. */
.site-header.compact .nav-logo img {
  height: 44px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.75rem;
  list-style: none;
}

.nav-links a {
  font-family: var(--f-ui);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--cream-70);
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--gold-light); }

.nav-links .nav-cta {
  color: var(--gold);
  border: 1px solid var(--gold-border);
  padding: 0.5rem 1.25rem;
  transition: background 0.2s, color 0.2s;
}

.nav-links .nav-cta:hover {
  background: var(--gold);
  color: var(--bg-deep);
  border-color: var(--gold);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--cream);
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav */
.nav-mobile {
  display: none;
  background: rgba(8, 7, 5, 0.98);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-sub);
  padding: 1.5rem clamp(1.25rem, 4vw, 2.5rem) 2rem;
}

.nav-mobile.open { display: block; }

.nav-mobile ul {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  list-style: none;
}

.nav-mobile a {
  display: block;
  font-family: var(--f-ui);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--cream-70);
  transition: color 0.2s;
}

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

.nav-mobile .nav-cta {
  color: var(--gold);
  border: 1px solid var(--gold-border);
  padding: 0.75rem 1.5rem;
  text-align: center;
  margin-top: 0.5rem;
}

/* ── Hero ── */
.hero {
  padding: clamp(4rem, 9vw, 7rem) 0 clamp(5rem, 9vw, 8rem);
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 112px);
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 55%;
  height: 130%;
  background: radial-gradient(ellipse at 70% 40%, var(--gold-glow) 0%, transparent 65%);
  pointer-events: none;
}

/* Subtle noise texture overlay */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
}

.hero-container {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.top-brand-banner {
  width: 100%;
  text-align: center;
  padding: 2.2rem 1rem 1.4rem;
  position: relative;
  z-index: 10;
  overflow: hidden;
}

/* frosted glass strip behind the text */
.top-brand-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(180, 210, 255, 0.04) 0%,
    rgba(255, 255, 255, 0.03) 50%,
    transparent 100%
  );
  backdrop-filter: blur(0px);
  pointer-events: none;
}

/* animated shimmer sweep */
.top-brand-banner::after {
  content: '';
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255, 255, 255, 0.07) 45%,
    rgba(201, 165, 90, 0.12) 50%,
    rgba(255, 255, 255, 0.07) 55%,
    transparent 100%
  );
  animation: bannerShimmer 5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes bannerShimmer {
  0%   { left: -60%; }
  100% { left: 120%; }
}

.top-brand-banner span {
  font-family: var(--f-display);
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  position: relative;

  /* glass-crystal gradient text */
  background: linear-gradient(
    135deg,
    #e8f2ff   0%,
    #ffffff   18%,
    #c8deff   30%,
    #ffffff   42%,
    #DFC280   54%,
    #ffffff   66%,
    #b8d0f5   78%,
    #ffffff   90%,
    #e8f2ff   100%
  );
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: glassTextFlow 8s linear infinite;

  /* depth: soft glow below */
  filter: drop-shadow(0 2px 24px rgba(180, 210, 255, 0.18))
          drop-shadow(0 0px 8px rgba(201, 165, 90, 0.15));
}

@keyframes glassTextFlow {
  0%   { background-position: 0%   center; }
  100% { background-position: 300% center; }
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.eyebrow-line {
  display: block;
  width: 36px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.hero-eyebrow span:last-child {
  font-family: var(--f-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-headline {
  font-family: var(--f-display);
  font-size: clamp(4rem, 9vw, 7.5rem);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: 2rem;
}

.hero-headline em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-light);
}

.hero-desc {
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
  line-height: 1.78;
  color: var(--cream-70);
  margin-bottom: 2.5rem;
  max-width: 460px;
}

/* Data stats — terminal style */
.hero-data {
  display: inline-flex;
  align-items: stretch;
  border: 1px solid var(--border);
  background: rgba(201, 165, 90, 0.03);
  margin-bottom: 2.5rem;
}

.data-item {
  display: flex;
  flex-direction: column;
  padding: 0.9rem 1.4rem;
  gap: 0.2rem;
}

.data-sep {
  width: 1px;
  background: var(--border);
  flex-shrink: 0;
}

.data-val {
  font-family: var(--f-mono);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.data-label {
  font-family: var(--f-ui);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-40);
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

/* Hero Visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-frame {
  position: relative;
  width: 100%;
  max-width: 480px;
}

/* Decorative double-border frame */
.hero-frame::before {
  content: '';
  position: absolute;
  inset: -1px;
  border: 1px solid var(--border);
  z-index: 2;
  pointer-events: none;
}

.hero-frame::after {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1px solid var(--gold-dim);
  z-index: 2;
  pointer-events: none;
}

.hero-img {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
}

.hero-badge {
  position: absolute;
  bottom: -1.25rem;
  right: -1.25rem;
  background: var(--gold);
  color: var(--bg-deep);
  padding: 0.85rem 1.1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 3;
  gap: 0.1rem;
}

.badge-num {
  font-family: var(--f-mono);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}

.badge-label {
  font-family: var(--f-ui);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.7;
}

/* ── Market Ticker ── */
.ticker-strip {
  background: var(--bg-alt);
  border-top: 1px solid var(--border-sub);
  border-bottom: 1px solid var(--border-sub);
  padding: 0.8rem 0;
  overflow: hidden;
  position: relative;
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  white-space: nowrap;
  animation: ticker-scroll 40s linear infinite;
  will-change: transform;
}

.ticker-track span {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-40);
  flex-shrink: 0;
}

.t-sep {
  color: var(--gold) !important;
  font-size: 0.45rem !important;
  opacity: 0.7;
}

@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Features Section ── */
.features-section {
  padding: var(--sp-xl) 0;
  background: var(--bg-dark);
  position: relative;
}

.features-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.section-header { margin-bottom: 4rem; }

/* Editorial numbered grid — not uniform cards */
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border-sub);
}

.feat-item {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 2.5rem;
  border-bottom: 1px solid var(--border-sub);
  border-right: 1px solid var(--border-sub);
  position: relative;
  transition: background 0.3s var(--ease);
  cursor: default;
}

/* Remove right border on even items (right column) */
.feat-item:nth-child(even) { border-right: none; }

/* Remove bottom border on last two items */
.feat-item:nth-last-child(-n+2) { border-bottom: none; }

.feat-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold-dim);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.feat-item:hover::after { opacity: 1; }

.feat-num {
  font-family: var(--f-mono);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  color: var(--gold);
  opacity: 0.25;
  flex-shrink: 0;
  width: 60px;
  transition: opacity 0.3s;
  letter-spacing: -0.02em;
}

.feat-item:hover .feat-num { opacity: 0.9; }

.feat-body h3 {
  font-family: var(--f-display);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.6rem;
  line-height: 1.2;
}

.feat-body p {
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--cream-70);
}

/* ── Method Section ── */
.method-section {
  padding: var(--sp-xl) 0;
  background: var(--bg-section);
  position: relative;
}

.method-section::before,
.method-section::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.method-section::before { top: 0; }
.method-section::after { bottom: 0; }

.method-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.method-quote {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  font-weight: 300;
  color: var(--gold-pale);
  border-left: 2px solid var(--gold);
  padding-left: 1.5rem;
  margin: 1.5rem 0 2.5rem;
  line-height: 1.55;
  quotes: none;
}

.method-list {
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
  margin-bottom: 2.5rem;
  list-style: none;
}

.method-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 0.92rem;
  color: var(--cream-70);
  line-height: 1.6;
}

.m-check {
  font-family: var(--f-mono);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.method-right {
  position: relative;
}

.method-right img {
  width: 100%;
  height: auto;
  border: 1px solid var(--border-sub);
}

.method-caption {
  margin-top: 1.75rem;
  padding: 1.4rem 1.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border-sub);
  border-left: 2px solid var(--gold-dim);
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--cream-70);
  line-height: 1.65;
}

/* ── Markets Section ── */
.markets-section {
  padding: var(--sp-xl) 0;
  background: var(--bg-dark);
}

.markets-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.market-card {
  background: var(--bg-card);
  border: 1px solid var(--border-sub);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.35s var(--ease);
}

.market-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-5px);
}

.market-img {
  height: 200px;
  overflow: hidden;
  background: var(--bg-deep);
  border-bottom: 1px solid var(--border-sub);
  display: flex;
  align-items: center;
  justify-content: center;
}

.market-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1.5rem;
  transition: transform 0.4s var(--ease);
}

.market-card:hover .market-img img {
  transform: scale(1.05);
}

.market-body {
  padding: 2rem;
}

.market-ticker-label {
  font-family: var(--f-mono);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.market-body h3 {
  font-family: var(--f-display);
  font-size: clamp(1.3rem, 2.2vw, 1.6rem);
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.market-body p {
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--cream-70);
  margin-bottom: 1.25rem;
}

.market-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.market-tags span {
  font-family: var(--f-mono);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-border);
  padding: 0.28rem 0.7rem;
}

/* ── Community Section ── */
.community-section {
  padding: var(--sp-xl) 0;
  background: var(--bg-section);
  position: relative;
}

.community-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.community-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.community-img img {
  width: 100%;
  height: auto;
  border: 1px solid var(--border-sub);
}

.community-content p {
  font-size: 0.97rem;
  line-height: 1.8;
  color: var(--cream-70);
  margin-bottom: 2.5rem;
}

.comm-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.comm-feat {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.comm-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  background: var(--gold-dim);
  flex-shrink: 0;
  font-size: 1.15rem;
}

.comm-feat strong {
  display: block;
  font-family: var(--f-ui);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.3rem;
  letter-spacing: 0.02em;
}

.comm-feat p {
  font-size: 0.83rem;
  line-height: 1.65;
  color: var(--cream-70);
  margin: 0;
}

/* ── Pricing Section ── */
.pricing-section {
  padding: var(--sp-xl) 0;
  background: var(--bg-deep);
  position: relative;
}

.pricing-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.pricing-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.pricing-intro p {
  font-size: 0.97rem;
  line-height: 1.8;
  color: var(--cream-70);
  margin-bottom: 2rem;
  margin-top: 0.5rem;
}

.trust-row {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--f-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-70);
}

.trust-icon {
  color: var(--gold);
  font-size: 0.6rem;
}

/* Pricing card */
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 2.75rem;
  position: relative;
}

.pricing-top-line {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-bottom: 2.25rem;
  padding-bottom: 2.25rem;
  border-bottom: 1px solid var(--border-sub);
}

.pf-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.88rem;
  color: var(--cream-70);
}

.pf-check {
  font-family: var(--f-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
  width: 16px;
}

.pricing-action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.9rem;
}

.pricing-note {
  font-family: var(--f-mono);
  font-size: 0.67rem;
  letter-spacing: 0.06em;
  color: var(--cream-40);
}

/* ── Final CTA Section ── */
.final-cta-section {
  padding: var(--sp-xl) 0;
  background: var(--bg-alt);
  position: relative;
  text-align: center;
}

.final-cta-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.final-cta-inner {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.final-title {
  font-family: var(--f-display);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.06;
  color: var(--cream);
}

.final-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-light);
}

.final-cta-inner p {
  font-size: 0.97rem;
  color: var(--cream-70);
  max-width: 440px;
  line-height: 1.75;
}

/* ── Footer ── */
.footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--border-sub);
  padding: 4rem 0 0;
}

.footer-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border-sub);
}

.footer-brand img {
  height: 96px;
  width: auto;
  margin-bottom: 1.25rem;
}

.footer-brand p {
  font-size: 0.83rem;
  color: var(--cream-40);
  line-height: 1.75;
  max-width: 260px;
  margin-bottom: 1.5rem;
}

.footer-socials {
  display: flex;
  gap: 0.6rem;
}

.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--border-sub);
  font-family: var(--f-mono);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--cream-40);
  transition: border-color 0.2s, color 0.2s;
}

.footer-socials a:hover {
  border-color: var(--gold-border);
  color: var(--gold);
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-col h4 {
  font-family: var(--f-mono);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  list-style: none;
}

.footer-col a {
  font-size: 0.83rem;
  color: var(--cream-40);
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--gold-light); }

.footer-bottom {
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-bottom span {
  font-family: var(--f-mono);
  font-size: 0.64rem;
  letter-spacing: 0.05em;
  color: var(--cream-20);
}

.footer-disclaimer { font-style: italic; }

/* ── WhatsApp Float ── */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 52px;
  height: 52px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 400;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}

.wa-float:hover {
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5);
}

/* ── Keyframes ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Responsive — 1024px ── */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .hero-headline {
    font-size: clamp(3.5rem, 10vw, 5.5rem);
  }

  .hero-visual {
    order: -1;
  }

  .hero-frame {
    max-width: 360px;
    margin: 0 auto;
  }

  .hero-desc { max-width: 100%; }

  .method-grid,
  .community-grid,
  .pricing-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .markets-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* ── Responsive — 768px ── */
@media (max-width: 768px) {
  :root {
    --sp-xl: 5rem;
  }

  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .announce-inner {
    font-size: 0.64rem;
    gap: 0.5rem;
    line-height: 1.4;
  }

  /* Mobile: permitir que la barra crezca cuando el texto envuelve a varias líneas.
     En desktop tiene max-height:44px para mantenerla compacta, pero en mobile esa
     altura recortaba el texto cuando el flex-wrap rompía a 2-3 líneas. */
  .announce-bar {
    max-height: none;
    padding: 0.7rem 1rem;
  }

  .hero {
    padding-top: 3.5rem;
    padding-bottom: 4rem;
    min-height: unset;
  }

  .hero-data { width: 100%; }
  .data-item { flex: 1; padding: 0.75rem 1rem; }

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

  .feat-item {
    border-right: none !important;
  }

  .feat-item:nth-last-child(-n+2) {
    border-bottom: 1px solid var(--border-sub);
  }

  .feat-item:last-child {
    border-bottom: none;
  }

  .pricing-card { padding: 2rem; }

  .footer-nav {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  /* Mobile: logo del footer (lockup con texto) un poco más compacto */
  .footer-brand img { height: 84px; }

  /* Mobile: logo del navbar un pelín más chico para no apretar el toggle */
  .nav-logo img { height: 48px; }
  .site-header.compact .nav-logo img { height: 40px; }

  /* Mobile: la cita del mentor con padding lateral cómodo */
  .method-quote {
    font-size: 1.1rem;
    padding: 1.5rem 1.25rem;
  }

  /* Mobile: encabezados de "Para Quién" alineados con margen seguro */
  #para-quien .feat-body h3 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
  }
}

/* ── Responsive — 480px ── */
@media (max-width: 480px) {
  .hero-ctas {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-data {
    flex-direction: column;
    border: 1px solid var(--border);
    width: auto;
    display: flex;
  }

  .data-sep {
    width: auto;
    height: 1px;
    background: var(--border);
  }

  .data-item { padding: 0.75rem 1.25rem; }

  .footer-nav {
    grid-template-columns: 1fr;
  }

  .announce-inner span:nth-child(5),
  .announce-inner span:nth-child(6) {
    display: none;
  }

  /* Pantallas pequeñas: footer logo aún más compacto */
  .footer-brand img { height: 72px; }

  /* Pantallas pequeñas: WhatsApp FAB más cerca del borde para no chocar con CTAs */
  .wa-float {
    bottom: 1.25rem;
    right: 1.25rem;
    width: 48px;
    height: 48px;
  }
}
