/* ═══════════════════════════════════════════════
   FRONTPAGE.CSS — v1.2.0
   OkaneGroup Theme

   Changes from v1.1.0:
   - Hero: rounded corners, no header/nav elements
   - Social icons: #E1D8CB, repositioned higher
   - Horizontal scroll capsules (replaces sticky cards)
   - Fixed CTA button bottom-right
   - Sticky header disabled on home
   - Full width all sections
   ═══════════════════════════════════════════════ */


/* ═══ GLOBAL ═══ */
body.home {
  background: #181717;
}

/* Disable sticky header on home page */
body.home .navbar {
  display: none !important;
}


/* ═══ HERO — rounded container with margin, like slide cards ═══ */
.fp-hero {
  max-height: none;
  height: auto;
  padding: 0.5rem;
  background: #181717;
  display: block;
  overflow: visible;
}

.fp-hero__rounded {
  position: relative;
  width: 100%;
  height: calc(100vh - 1rem);
  height: calc(100svh - 1rem);
  min-height: 400px;
  border-radius: 50px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: clamp(15px, 1.5vw, 15px);
}

.fp-hero__slideshow {
  position: absolute;
  inset: -50px;
}

.fp-hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 2s ease;
}

.fp-hero__slide--active {
  opacity: 0.6;
}

.fp-hero__rounded .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #181717 100%);
  z-index: 1;
}

.fp-hero__rounded .hero-content {
  position: relative;
  z-index: 2;
  padding: 0;
}

.fp-hero .hero-okane-text {
  font-size: clamp(80px, 10.2vw, 155px);
  margin-left: -4px;
  margin-bottom: 10px;
}

.fp-hero .hero-subtitle {
  font-size: clamp(14px, 1.3vw, 20px);
  max-width: 600px;
  font-weight: 300;
}

/* Ensō inside rounded hero */
.fp-hero__rounded .hero-enso {
  position: absolute;
  bottom: 0;
  right: 0;
  width: clamp(280px, 45vw, 620px);
  z-index: var(--z-base);
  pointer-events: none;
  line-height: 0;
  overflow: hidden;
}

.fp-hero__rounded .enso-img {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0;
  will-change: filter, transform, mask-image, -webkit-mask-image;
}

/* Social icons — left side, stroke only, #E1D8CB */
.fp-hero-socials {
  position: absolute;
  left: clamp(12px, 1.5vw, 20px);
  top: 35%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.fp-hero-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.fp-hero-socials a:hover {
  opacity: 1;
  transform: scale(1.15);
}


/* ═══ SECTION 2 — COLOR-CHANGING TEXT ═══ */
.fp-text-reveal {
  background: #181717;
  padding: clamp(24px, 3vw, 40px) 0.5rem clamp(24px, 3vw, 40px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.fp-text-reveal__inner {
  width: 100%;
}

.fp-text-reveal__content h2 {
  font-family: var(--ok-font-primary);
  font-size: clamp(36px, 5.5vw, 82px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--ok-cream);
  margin: 0;
}

.ct-word {
  display: inline;
}


/* ═══ SECTION 3 — HORIZONTAL SCROLL (Capsules® pattern) ═══ */
.fp-hscroll {
  position: relative;
  background: #181717;
  overflow: hidden;
}

.fp-hscroll__track {
  display: flex;
  height: 100vh;
  will-change: transform;
}

/* Each slide = full viewport width */
.fp-slide {
  position: relative;
  flex-shrink: 0;
  height: 100vh;
}

/* Slide clickable links */
.fp-slide__link {
  display: block;
  position: absolute;
  inset: 0;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

/* Inner rounded container with padding */
.fp-slide__inner {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  right: 0.5rem;
  bottom: 0.5rem;
  border-radius: 50px;
  overflow: hidden;
}

/* Background image */
.fp-slide__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

/* Gradient overlays for text readability */
.fp-slide__inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 45%;
  background: linear-gradient(180deg, rgba(20, 15, 10, 0.45), transparent);
  z-index: 1;
  pointer-events: none;
}

.fp-slide__inner::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(0deg, rgba(20, 15, 10, 0.5), transparent);
  z-index: 1;
  pointer-events: none;
}

/* Top content: title + badge */
.fp-slide__top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 1.4em 1.6em;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  z-index: 3;
}

.fp-slide__title {
  font-family: var(--ok-font-primary);
  font-size: clamp(1.8em, 3.8vw, 3.2em);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--ok-cream);
  margin: 0;
}

.fp-slide__badge {
  display: inline-flex;
  align-items: center;
  background: rgba(225, 216, 203, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(225, 216, 203, 0.1);
  color: var(--ok-cream);
  padding: 0.35em 0.9em;
  border-radius: 100px;
  font-size: 0.75em;
  font-weight: 500;
  flex-shrink: 0;
}

/* Bottom content: description + number */
.fp-slide__bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.4em 1.6em;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  z-index: 3;
}

.fp-slide__desc {
  font-size: clamp(0.85em, 1.1vw, 1.05em);
  font-weight: 400;
  font-style: italic;
  color: rgba(225, 216, 203, 0.55);
  max-width: 28em;
  line-height: 1.6;
  margin: 0;
}

.fp-slide__num {
  font-size: 0.65em;
  font-weight: 500;
  color: rgba(225, 216, 203, 0.25);
}

/* Slide counter — fixed bottom-right */
.fp-slide-counter {
  position: fixed;
  bottom: 1.3em;
  right: 1.8em;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 0.15em;
  opacity: 0;
  transition: opacity 0.4s var(--ok-ease);
  pointer-events: none;
}

.fp-slide-counter.visible {
  opacity: 1;
}

.fp-slide-counter__current,
.fp-slide-counter__total {
  width: 2.1em;
  height: 2.1em;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68em;
  font-weight: 600;
}

.fp-slide-counter__current {
  background: var(--ok-cream);
  color: var(--ok-dark);
}

.fp-slide-counter__total {
  border: 1px solid rgba(225, 216, 203, 0.15);
  color: rgba(225, 216, 203, 0.35);
}


/* ═══ SECTION 4 — BLUR TEXT REVEAL ═══ */
.fp-blur-text {
  background: #181717;
  padding: clamp(24px, 3vw, 40px) 0.5rem clamp(8px, 1vw, 16px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.fp-blur-text__inner {
  width: 100%;
}

.fp-blur-text__inner h4 {
  font-family: var(--ok-font-primary);
  font-size: clamp(36px, 5.5vw, 82px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--ok-cream);
  margin: 0;
}


/* ═══ SECTION 5a — FOUNDERS PHOTO (static) ═══ */
.fp-founders {
  position: relative;
  width: 100%;
  background: #181717;
  padding: clamp(8px, 1vw, 16px) 0.5rem;
}

.fp-founders__img-wrapper {
  position: relative;
  width: 100%;
  height: 110vh;
  height: 110svh;
  border-radius: 50px;
  overflow: hidden;
}

.fp-founders__img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.fp-founders__content {
  position: absolute;
  bottom: clamp(24px, 3vw, 48px);
  left: clamp(24px, 3vw, 48px);
  z-index: 2;
}

.fp-founders__title {
  font-family: var(--ok-font-primary);
  font-size: clamp(2.5rem, 5.5vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--ok-cream);
  margin: 0 0 0.3em;
}

.fp-founders__desc {
  font-size: clamp(14px, 1.3vw, 20px);
  font-weight: 400;
  line-height: 1.5;
  color: var(--ok-cream-60);
  max-width: 550px;
  margin: 0;
}

/* Gradient overlay bottom for text readability */
.fp-founders__img-wrapper::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(0deg, rgba(20, 15, 10, 0.6), transparent);
  pointer-events: none;
}

/* Founders block wrapper — transparent on desktop */
.fp-founders-block {
  display: block;
  background: #181717;
}

/* Mobile title — hidden on desktop */
.fp-founders__title--mobile {
  display: none;
}


/* ═══ SECTION 5b — FOUNDERS GALLERY ═══ */
.fp-gallery {
  background: #181717;
  padding: 0 0.5rem;
  transition: background-color 0.6s ease;
}

.fp-gallery__inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(32px, 4vw, 64px);
  max-width: 1400px;
  margin: 0 auto;
  padding: clamp(40px, 5vw, 80px) clamp(16px, 2vw, 32px) clamp(80px, 8vw, 140px);
}

.fp-gallery__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fp-gallery__section {
  padding: clamp(80px, 12vw, 180px) 0;
}

.fp-gallery__section:first-child {
  padding-top: clamp(40px, 5vw, 80px);
}

.fp-gallery__section:last-child {
  padding-bottom: clamp(100px, 14vw, 200px);
}

.fp-gallery__mobile-img {
  display: none;
}

.fp-gallery__role {
  display: block;
  font-family: var(--ok-font-primary);
  font-size: clamp(11px, 0.9vw, 14px);
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(244, 239, 231, 0.4);
  margin-bottom: 8px;
}

.fp-gallery__name {
  font-family: var(--ok-font-primary);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: #F4EFE7;
  margin: 0 0 clamp(12px, 1.5vw, 20px);
}

.fp-gallery__desc {
  font-size: clamp(14px, 1.2vw, 18px);
  font-weight: 400;
  line-height: 1.6;
  color: rgba(244, 239, 231, 0.6);
  margin: 0 0 clamp(16px, 2vw, 24px);
  max-width: 520px;
}

.fp-gallery__photos {
  position: sticky;
  top: 10vh;
  height: 80vh;
  border-radius: 50px;
  overflow: hidden;
}

.fp-gallery__photo {
  position: absolute;
  inset: 0;
  visibility: hidden;
}

.fp-gallery__photo:first-child {
  visibility: visible;
}

.fp-gallery__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}



/* ═══ SECTION 6 — ASÍ ES OKANE ═══ */
.fp-asi-es {
  background: linear-gradient(180deg, #BFA386 0%, #B39474 100%);
  padding: clamp(60px, 8vw, 120px) var(--ok-gutter) 14%;
  color: #fff;
}

.fp-asi-es__header {
  max-width: 1200px;
  margin: 0 auto clamp(40px, 5vw, 64px);
}

.fp-asi-es__title {
  font-family: var(--ok-font-primary);
  font-size: clamp(48px, 7vw, 90px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 20px;
}

.fp-asi-es__intro {
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  max-width: 1000px;
}

.fp-asi-es__intro strong {
  font-weight: 700;
  color: #fff;
}

.fp-asi-es__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(24px, 3vw, 40px);
}

.fp-asi-es__features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 2.5vw, 32px);
}

.fp-asi-es__feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 16px;
}

.fp-asi-es__feature-head {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 10px;
}

.fp-asi-es__feature-head h3 {
  font-family: var(--ok-font-primary);
  font-size: clamp(17px, 1.7vw, 22px);
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin: 0;
}

.fp-asi-es__feature-num {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 400;
  flex-shrink: 0;
}

.fp-asi-es__feature p {
  font-size: clamp(14px, 1.3vw, 16px);
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.fp-asi-es__side {
  display: flex;
  flex-direction: column;
}

.fp-asi-es__side-label {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: clamp(16px, 2vw, 24px);
  color: #fff;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.fp-asi-es__side-label strong {
  font-size: clamp(20px, 2.2vw, 28px);
}

.fp-asi-es__side-img {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 0 0;
}

.sg-container {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
}

.sg-container svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  display: block;
}

.sg-node-hover {
  transform-box: fill-box;
  transform-origin: center;
  transition: transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
}

.sg-node-hover:hover {
  transform: scale(1.18);
}





/* ═══ SECTION 8 — ¿CÓMO EMPEZAMOS? ═══ */
.fp-como {
  background: linear-gradient(180deg, #181717 0%, #2C2826 100%);
  padding: clamp(60px, 8vw, 120px) 3% 6%;
  border-radius: 50px 50px 0 0;
  margin-top: -5.5%;
  position: relative;
  z-index: 4;
}

.fp-como__header {
  margin-bottom: clamp(40px, 5vw, 64px);
}

.fp-como__title {
  font-family: var(--ok-font-primary);
  font-size: clamp(48px, 7.5vw, 110px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--ok-cream);
  margin: 0 0 16px;
}

.fp-como__sub {
  font-size: clamp(16px, 1.6vw, 24px);
  color: rgba(225, 216, 203, 0.5);
  font-weight: 400;
  margin: 0;
}

.fp-como__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 4vw, 64px);
  margin-bottom: clamp(48px, 6vw, 80px);
}

.fp-como__steps-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(225, 216, 203, 0.4);
  margin-bottom: 24px;
}

.fp-como__step {
  padding: 0;
  position: relative;
}

.fp-como__step::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(225, 216, 203, 0.15);
}

.fp-como__step:first-child::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(225, 216, 203, 0.15);
}

.fp-como__step-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: clamp(18px, 2vw, 28px) 0;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
}

.fp-como__step-name {
  font-family: var(--ok-font-primary);
  font-size: clamp(18px, 2.2vw, 30px);
  font-weight: 400;
  color: var(--ok-cream);
  letter-spacing: -0.01em;
  flex: 1;
}

.fp-como__step-num {
  font-size: clamp(16px, 1.8vw, 24px);
  color: rgba(225, 216, 203, 0.3);
  font-weight: 400;
  margin-left: 12px;
}

.fp-como__step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(20px, 2vw, 28px);
  height: clamp(20px, 2vw, 28px);
  margin-left: 12px;
  color: rgba(225, 216, 203, 0.4);
  transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1), color 0.3s;
  flex-shrink: 0;
}

.fp-como__step-arrow svg {
  width: 100%;
  height: 100%;
}

.fp-como__accordion.is-open .fp-como__step-arrow {
  transform: rotate(180deg);
  color: rgba(225, 216, 203, 0.7);
}

.fp-como__step-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.76, 0, 0.24, 1), padding 0.5s ease;
  padding: 0;
}

.fp-como__accordion.is-open .fp-como__step-body {
  padding-bottom: clamp(18px, 2vw, 28px);
}

.fp-como__step-body p {
  font-family: var(--ok-font-primary);
  font-size: clamp(13px, 1.1vw, 16px);
  font-weight: 400;
  line-height: 1.65;
  color: rgba(225, 216, 203, 0.5);
  margin: 0 0 10px;
  max-width: 520px;
}

.fp-como__step-body p:last-child {
  margin-bottom: 0;
}

.fp-como__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.fp-como__text .boton-francoglobal {
  align-self: flex-start;
}

.fp-como__text p {
  font-size: clamp(20px, 2vw, 29px);
  line-height: 1.55;
  color: #B1A696;
  margin: 0 0 24px;
  max-width: 580px;
}

.fp-como__text p strong {
  color: var(--ok-cream);
  font-weight: 700;
}

/* Logo marquee with fade edges */
.fp-como__logos-wrap {
  position: relative;
  overflow: hidden;
  padding-top: clamp(32px, 4vw, 48px);
  border-top: 1px solid rgba(225, 216, 203, 0.08);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 15%, #000 85%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 15%, #000 85%, transparent 100%);
}

.fp-como__logos-track {
  display: flex;
  align-items: center;
  gap: clamp(48px, 6vw, 80px);
  width: max-content;
  will-change: transform;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

.fp-como__logos-track:active {
  cursor: grabbing;
}

.fp-como__logos-track img {
  height: clamp(28px, 3.5vw, 44px);
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  pointer-events: none;
  -webkit-user-drag: none;
  user-select: none;
}


/* ═══ SECTION 9 — STICKY CARDS (Capsules® stacking) ═══ */
.fp-sticky-cards {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 25svh;
  background: linear-gradient(180deg, #2C2826 0%, #181717 100%);
  padding-bottom: 0;
}

.fp-sc-card {
  position: relative;
  width: 100%;
  height: 100svh;
  padding: 0.5rem;
}

.fp-sc-card:first-child {
  margin-top: 0;
}

.fp-sc-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  will-change: transform;
}

.fp-sc-img {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 150px;
  overflow: hidden;
}

.fp-sc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(2);
  will-change: transform;
}

.fp-sc-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, #181717 0%, rgba(24, 23, 23, 0.85) 25%, rgba(24, 23, 23, 0.4) 50%, rgba(0, 0, 0, 0) 70%);
  z-index: 1;
  pointer-events: none;
  border-radius: inherit;
}

.fp-sc-content {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
  z-index: 2;
  padding: clamp(40px, 5vw, 80px) clamp(40px, 6vw, 100px);
}

.fp-sc-content--left {
  align-items: flex-start;
  text-align: left;
}

.fp-sc-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(225, 216, 203, 0.5);
  margin-bottom: 12px;
}

.fp-sc-title {
  width: 100%;
  display: flex;
  justify-content: center;
}

.fp-sc-title h2 {
  font-family: var(--ok-font-primary);
  font-size: clamp(32px, 4.5vw, 64px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #F4EFE7;
  margin: 0;
  max-width: 800px;
  text-align: center;
}

.fp-sc-desc {
  margin: 8px 0 24px;
  transform: translateX(40px);
  opacity: 0;
  display: flex;
  justify-content: center;
}

.fp-sc-desc p {
  font-size: clamp(14px, 1.3vw, 18px);
  font-weight: 400;
  line-height: 1.5;
  color: rgba(244, 239, 231, 0.55);
  max-width: 500px;
  margin: 0;
  text-align: center;
}

.fp-sc-card--last {
  padding-bottom: 0;
}

.fp-sc-card--last .fp-sc-wrapper {
  margin-bottom: 0;
}

/* Eliminate gap between sticky cards and next section */
.fp-sticky-cards {
  margin-bottom: -1px;
}

.fp-sc-btn {
  opacity: 0;
  transform: translateY(15px);
}

/* Word split for title animation */
.fp-sc-word {
  position: relative;
  overflow: hidden;
  display: inline-block;
}

.fp-sc-word span {
  transform: translateY(110%);
  display: inline-block;
  will-change: transform;
}

.fp-sc-word--space {
  width: 0.3em;
}

.fp-sc-word--space span {
  transform: none;
}

/* Ensure word-split titles stay centered */
.fp-sc-title h2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
}


/* ═══ STATEMENT SECTION — bigger text, matching homepage style ═══ */
body.home .statement-section {
  background: #181717;
  margin-top: 0;
  border-top: none;
}

body.home .statement-content {
  max-width: 1200px;
}

body.home .statement-heading {
  font-size: clamp(40px, 5.5vw, 82px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
}


/* ═══ FIXED MENU BUTTON — bottom right, not glued to edge ═══ */
.fp-fixed-cta {
  position: fixed;
  bottom: clamp(16px, 2vw, 28px);
  right: clamp(16px, 2vw, 28px);
  z-index: 999;
}

.fp-fixed-cta__btn {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

/* Hamburger icon inside the boton-francoglobal circle */
.fp-menu-icon {
  flex-direction: column !important;
  gap: 3px !important;
}

.fp-menu-icon span {
  display: block;
  width: 14px;
  height: 1.5px;
  background: var(--ok-btn-hover-text);
  border-radius: 1px;
}


/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .fp-asi-es__grid {
    grid-template-columns: 1fr;
  }

  .fp-slide__title {
    font-size: clamp(1.6em, 3.2vw, 2.5em);
  }
}

@media (max-width: 768px) {
  body {
    overflow-x: clip;
  }

  .fp-hero-socials {
    display: none;
  }

  /* ── Hero OKANE smaller on mobile ── */
  .fp-hero {
    overflow: hidden;
  }
  .fp-hero .hero-okane-text {
    font-size: clamp(48px, 14vw, 72px);
  }

  .fp-hero .hero-subtitle {
    font-size: clamp(12px, 3.5vw, 16px);
  }

  /* ── Border radius 15px on mobile ── */
  .fp-hero__rounded {
    border-radius: 15px;
  }

  .fp-slide__inner {
    top: 0.5rem;
    left: 0.5rem;
    right: 0.5rem;
    bottom: 0.5rem;
    border-radius: 15px;
  }


  .fp-sc-img {
    border-radius: 15px !important;
  }

  .fp-sc-img::after {
    border-radius: 15px;
  }

  /* ── Horizontal scroll: native on mobile ── */
  .fp-hscroll {
    overflow: clip;
  }

  .fp-hscroll__track {
    height: auto;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    gap: 8px;
    padding: 0 0.5rem;
  }

  .fp-hscroll__track::-webkit-scrollbar {
    display: none;
  }

  .fp-slide {
    height: 65svh;
    flex-shrink: 0;
    width: 85vw;
    scroll-snap-align: start;
  }

  .fp-slide__top,
  .fp-slide__bottom {
    padding: 1em 1.1em;
  }

  .fp-slide__title {
    font-size: clamp(1.1em, 5vw, 1.4em);
  }

  .fp-slide__desc {
    max-width: 16em;
    font-size: 0.65em;
  }

  .fp-slide-counter {
    right: 0.8em;
  }

  /* ── "Dos generaciones" — smaller so it fits 2 lines max ── */
  .fp-text-reveal {
    padding: 8px 0.5rem 4px;
  }

  .fp-text-reveal__content h2 {
    font-size: clamp(32px, 10vw, 52px);
    line-height: 1.1;
    letter-spacing: -0.03em;
  }

  /* ── "Detrás de Okane" ── */
  .fp-blur-text {
    padding: clamp(24px, 5vw, 40px) 0.5rem 4px;
  }

  .fp-blur-text__inner h4 {
    font-size: clamp(32px, 10vw, 52px);
    line-height: 1.15;
    letter-spacing: -0.02em;
  }

  /* ── Founders block: reorder on mobile ── */
  .fp-founders-block {
    display: flex;
    flex-direction: column;
  }

  .fp-founders-block .fp-founders {
    order: -1; /* photo above blur text */
  }

  /* Show mobile title, hide desktop overlay */
  .fp-founders__title--mobile {
    display: block;
    font-family: var(--ok-font-primary);
    font-size: clamp(32px, 10vw, 52px);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.05;
    color: var(--ok-cream);
    margin: 0 0 16px;
    padding-top: clamp(24px, 6vw, 48px);
  }

  .fp-founders__content {
    display: none; /* hide overlay on mobile */
  }

  .fp-founders__img-wrapper {
    height: 45vh;
    border-radius: 15px;
  }

  .fp-founders {
    padding: 4px 0.5rem 12px;
  }

  /* ── Founders gallery mobile ── */
  .fp-gallery {
    overflow-x: hidden;
  }

  .fp-gallery__inner {
    grid-template-columns: 1fr;
    padding: clamp(24px, 4vw, 40px) 0 clamp(48px, 8vw, 80px);
    gap: 0;
  }

  .fp-gallery__photos {
    display: none;
  }

  .fp-gallery__mobile-img {
    display: block;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
    aspect-ratio: 3/4;
  }

  .fp-gallery__mobile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }

  .fp-gallery__section {
    padding: clamp(48px, 10vw, 80px) 0;
  }

  .fp-gallery__section:first-child {
    padding-top: clamp(16px, 3vw, 32px);
  }

  .fp-gallery__section:last-child {
    padding-bottom: clamp(48px, 8vw, 80px);
  }

  .fp-gallery__name {
    font-size: clamp(32px, 10vw, 52px);
  }

  .fp-gallery__desc {
    font-size: clamp(14px, 3.8vw, 17px);
  }

  /* ── Asi es Okane ── */
  .fp-asi-es__features {
    grid-template-columns: 1fr;
  }

  .fp-asi-es__side {
    flex-direction: column;
  }

  .fp-asi-es__side-label {
    overflow: clip;
  }

  .fp-asi-es__side-img {
    overflow: clip;
  }

  .sg-container {
    max-width: 420px;
    margin: 0 auto;
    aspect-ratio: 9 / 10;
  }

  .fp-asi-es {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    padding-bottom: calc(14% + 15px);
  }

  .fp-asi-es__title {
    font-size: clamp(36px, 10vw, 52px);
  }

  .fp-asi-es__intro {
    font-size: clamp(16px, 4.5vw, 20px);
  }

  /* ── Como empezamos ── */
  .fp-como {
    margin-top: -6.5%;
    border-radius: 30px 30px 0 0;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .fp-como__grid {
    grid-template-columns: 1fr;
  }

  .fp-como__title {
    font-size: clamp(32px, 10vw, 52px);
  }

  .fp-como__text p {
    font-size: clamp(16px, 4.5vw, 20px);
  }

  .fp-como__sub {
    font-size: clamp(14px, 3.5vw, 18px);
  }

  .fp-como__step-name {
    font-size: clamp(15px, 4vw, 20px);
  }

  /* ── Sticky cards: CSS native sticky on mobile ── */
  .fp-sticky-cards {
    gap: 0;
  }

  .fp-sc-card {
    position: sticky;
    top: 0;
    height: 85svh;
    z-index: 1;
  }

  .fp-sc-card:nth-child(1) { z-index: 1; }
  .fp-sc-card:nth-child(2) { z-index: 2; }
  .fp-sc-card:nth-child(3) { z-index: 3; }
  .fp-sc-card:nth-child(4) { z-index: 4; }
  .fp-sc-card:nth-child(5) { z-index: 5; }

  .fp-sc-img {
    border-radius: 15px !important;
  }

  .fp-sc-img img {
    transform: scale(1) !important;
  }

  .fp-sc-title h2 {
    font-size: clamp(24px, 7vw, 40px);
  }

  .fp-sc-desc {
    width: 90%;
  }

  .fp-sc-content {
    padding: clamp(24px, 4vw, 40px) clamp(20px, 4vw, 40px);
  }

  /* ── Statement: align with rest of page ── */
  body.home .statement-section {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}

@media (min-width: 1440px) {
  .fp-text-reveal__inner,
  .fp-blur-text__inner {
    max-width: 1440px;
  }

  .fp-asi-es__header,
  .fp-asi-es__grid {
    max-width: 1440px;
  }

  .fp-como__header,
  .fp-como__grid {
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 1800px) {
  .fp-hero .hero-okane-text {
    font-size: clamp(155px, 10vw, 200px);
  }

  .fp-hero .hero-subtitle {
    font-size: clamp(20px, 1.2vw, 24px);
  }

  .fp-text-reveal__content h2,
  .fp-blur-text__inner h4 {
    font-size: clamp(82px, 5.5vw, 110px);
  }

  .fp-founders__title {
    font-size: clamp(5rem, 5.5vw, 6.5rem);
  }

  .fp-founders__desc {
    font-size: clamp(20px, 1.2vw, 24px);
    max-width: 650px;
  }

  .fp-slide__title {
    font-size: 3.8em;
  }

  .fp-slide__desc {
    font-size: 0.82em;
    max-width: 28em;
  }


  .fp-asi-es__title {
    font-size: clamp(90px, 7vw, 110px);
  }

  body.home .statement-heading {
    font-size: clamp(82px, 5.5vw, 110px);
  }

  .fp-como__title {
    font-size: clamp(110px, 7.5vw, 130px);
  }

  .fp-sc-title h2 {
    font-size: clamp(72px, 5vw, 88px);
  }
}

@media (min-width: 2200px) {
  .fp-hero .hero-okane-text {
    font-size: 220px;
  }

  .fp-text-reveal__content h2,
  .fp-blur-text__inner h4 {
    font-size: 120px;
  }

  .fp-founders__title {
    font-size: 7rem;
  }

  .fp-slide__title {
    font-size: 4.2em;
  }

  .fp-slide__inner {
    border-radius: 50px;
  }

  .fp-hero__rounded,
  .fp-founders__img-wrapper {
    border-radius: 50px;
  }

  body.home .statement-heading {
    font-size: 120px;
  }

  .fp-como__title {
    font-size: 140px;
  }

  .fp-sc-title h2 {
    font-size: 96px;
  }
}
