/* ═══════════════════════════════════════════════════
   ARTIVA FOUNDATION — artiva-foundation.css
   Versión: 1.0.0
═══════════════════════════════════════════════════ */

/* ── TOKENS FOUNDATION ── */
:root {
  --orange:       #f05a28;
  --orange-l:     #ff7a45;
  --orange-glow:  rgba(240,90,40,.10);
  --gray-l:       #b0b0b0;
  --border-md:    rgba(27,27,27,.12);
  --r:     16px;
  --r-lg:  24px;
  --r-xl:  32px;
  --sh-sm: 0 2px 12px rgba(27,27,27,.05);
  --sh-md: 0 8px 32px rgba(27,27,27,.09);
  --sh-or: 0 8px 28px rgba(240,90,40,.22);
}

/* ── UTILS ── */
.fnd-container { max-width: 1080px; margin: 0 auto; padding: 0 32px; }

.fnd-sh { margin-bottom: 56px; text-align: center; }
.fnd-sh .fnd-sub { margin: 0 auto; }

.fnd-slabel {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}
.fnd-stitle {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -.4px;
  margin-bottom: 14px;
}
.fnd-stitle strong { font-weight: 300; color: var(--orange); }
.fnd-sub {
  font-size: 15px;
  font-weight: 300;
  color: var(--gy);
  max-width: 500px;
  line-height: 1.7;
}

.fnd-reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.fnd-reveal.visible { opacity: 1; transform: none; }

/* ── HERO ── */
.fnd-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
}
.fnd-h-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(ellipse 70% 55% at 50% -5%, rgba(240,90,40,.10) 0%, transparent 65%),
              radial-gradient(ellipse 40% 35% at 85% 85%, rgba(240,90,40,.06) 0%, transparent 60%);
}
.fnd-h-dots {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: radial-gradient(circle, rgba(27,27,27,.11) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 70% 65% at 50% 50%, black 20%, transparent 75%);
}
.fnd-h-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1px solid var(--border-md);
  border-radius: 100px;
  padding: 5px 14px 5px 6px;
  font-size: 12px;
  font-weight: 400;
  color: var(--gy);
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}
.fnd-h-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
}
.fnd-h-dot svg { width: 10px; height: 10px; stroke: white; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.fnd-h-title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(52px, 10vw, 118px);
  font-weight: 400;
  line-height: .93;
  letter-spacing: -1px;
  color: var(--bk);
  position: relative;
  z-index: 1;
  margin-bottom: 26px;
}
.fnd-h-title .fnd-hl { color: var(--orange); }
.fnd-h-sub {
  font-size: 17px;
  font-weight: 300;
  color: var(--gy);
  max-width: 500px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
  margin-bottom: 44px;
}
.fnd-h-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.fnd-btn-p {
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  padding: 12px 26px;
  border-radius: 50px;
  border: none;
  background: var(--orange);
  color: white;
  cursor: pointer;
  text-decoration: none;
  box-shadow: var(--sh-or);
  transition: all .2s;
  display: inline-block;
}
.fnd-btn-p:hover { background: var(--orange-l); transform: translateY(-1px); }
.fnd-btn-g {
  font-family: inherit;
  font-size: 14px;
  font-weight: 400;
  padding: 12px 26px;
  border-radius: 50px;
  background: white;
  color: var(--bk);
  border: 1px solid var(--border-md);
  cursor: pointer;
  text-decoration: none;
  transition: all .2s;
  display: inline-block;
}
.fnd-btn-g:hover { border-color: var(--orange); color: var(--orange); }
.fnd-h-strip {
  position: relative;
  z-index: 1;
  margin-top: 68px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.fnd-h-strip p {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray-l);
}
.fnd-h-strip-row { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; justify-content: center; }
.fnd-h-pill {
  font-size: 12px;
  font-weight: 500;
  color: var(--gray-l);
  padding: 5px 12px;
  border-radius: 100px;
  border: 1px solid var(--border-md);
  background: white;
}

/* ── MARQUEE ── */
.fnd-mqbar { background: var(--orange); overflow: hidden; padding: 12px 0; }
.fnd-mqtrack {
  display: flex;
  gap: 48px;
  animation: fnd-mq 20s linear infinite;
  white-space: nowrap;
}
.fnd-mqi {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 16px;
}
.fnd-mqi::after { content: '·'; color: rgba(255,255,255,.35); }
@keyframes fnd-mq { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── ECOSYSTEM ── */
.fnd-ecosystem { background: white; padding: 96px 0; }
.fnd-brands-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.fnd-bc-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  transition: all .25s;
  position: relative;
  overflow: hidden;
}
.fnd-bc-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--orange);
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: all .3s;
}
.fnd-bc-card:hover {
  background: white;
  box-shadow: var(--sh-md);
  transform: translateY(-3px);
  border-color: rgba(240,90,40,.15);
}
.fnd-bc-card:hover::after { opacity: 1; transform: scaleX(1); }

.fnd-bc-card.fnd-ft {
  grid-column: span 3;
  flex-direction: row;
  gap: 28px;
  align-items: center;
  background: linear-gradient(135deg, #fff8f5 0%, white 100%);
  border-color: rgba(240,90,40,.22);
}
.fnd-bc-card.fnd-ft::after { opacity: 1; transform: scaleX(1); }

.fnd-bc-card.fnd-add {
  background: linear-gradient(135deg, var(--orange) 0%, #c74015 100%);
  border-color: transparent;
  cursor: pointer;
}
.fnd-bc-card.fnd-add:hover { box-shadow: var(--sh-or); transform: translateY(-3px); }
.fnd-bc-card.fnd-add::after { background: rgba(255,255,255,.3); }
.fnd-bc-card.fnd-add h3 { color: white; }
.fnd-bc-card.fnd-add p { color: rgba(255,255,255,.78); }
.fnd-bc-card.fnd-add .fnd-btag { color: white; background: rgba(255,255,255,.2); }

.fnd-bci {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: white;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  flex-shrink: 0;
}
.fnd-bc-card.fnd-ft .fnd-bci {
  width: 52px;
  height: 52px;
  background: var(--orange-glow);
  border-color: rgba(240,90,40,.14);
  margin-bottom: 0;
}
.fnd-bci svg { width: 20px; height: 20px; stroke: var(--bk); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.fnd-bc-card.fnd-ft .fnd-bci svg { stroke: var(--orange); }
.fnd-bbody { flex: 1; }
.fnd-bc-card h3 { font-size: 14px; font-weight: 600; color: var(--bk); margin-bottom: 6px; }
.fnd-bc-card p { font-size: 13px; font-weight: 300; color: var(--gy); line-height: 1.6; }
.fnd-bc-logo { height: 32px; width: auto; object-fit: contain; margin-bottom: 18px; display: block; }
.fnd-btag {
  display: inline-block;
  margin-top: 14px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--orange);
  background: var(--orange-glow);
  padding: 3px 10px;
  border-radius: 100px;
}
.fnd-bc-card.fnd-ft .fnd-btag { margin-top: 8px; }

.fnd-eco-cta {
  margin-top: 44px;
  background: var(--bk);
  border-radius: var(--r-xl);
  padding: 48px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
.fnd-eco-cta h3 { font-size: 22px; font-weight: 300; color: white; line-height: 1.3; }
.fnd-eco-cta h3 strong { font-weight: 300; color: var(--orange); }
.fnd-eco-cta p { font-size: 13px; font-weight: 300; color: rgba(255,255,255,.4); max-width: 260px; line-height: 1.65; margin-top: 6px; }

/* ── LAUNCHPAD ── */
.fnd-launchpad { background: var(--bg); padding: 96px 0; }
.fnd-lp-byline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.fnd-lp-by {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--gray-l);
}
.fnd-lp-by svg { width: 14px; height: 14px; stroke: var(--gray-l); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.fnd-lp-sep { color: var(--gray-l); opacity: .4; font-size: 14px; }

.fnd-lp-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 72px;
}
.fnd-lp-img {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--gl);
  height: 100%;
  min-height: 320px;
}
.fnd-lp-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.fnd-lp-right { display: flex; flex-direction: column; }
.fnd-lp-desc { font-size: 14px; font-weight: 300; color: var(--gy); line-height: 1.75; margin-bottom: 30px; }

.fnd-lp-steps { display: flex; flex-direction: column; gap: 4px; }
.fnd-lp-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 14px;
  border-radius: var(--r);
  border: 1px solid transparent;
  transition: all .25s;
}
.fnd-lp-step:hover { background: white; border-color: var(--border-md); box-shadow: var(--sh-sm); }
.fnd-lp-step:hover .fnd-ls-n { background: var(--orange); border-color: var(--orange); color: white; }
.fnd-ls-n {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--orange-glow);
  border: 1px solid rgba(240,90,40,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  color: var(--orange);
  transition: all .25s;
}
.fnd-ls-t h4 { font-size: 14px; font-weight: 500; color: var(--bk); margin-bottom: 3px; }
.fnd-ls-t p { font-size: 13px; font-weight: 300; color: var(--gy); line-height: 1.55; }

.fnd-planes-head { text-align: center; margin-bottom: 36px; }
.fnd-cpill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--orange-glow);
  border: 1px solid rgba(240,90,40,.2);
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 500;
  color: var(--orange);
  margin-bottom: 12px;
}
.fnd-cpill span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  display: inline-block;
  animation: fnd-pulse 1.5s infinite;
}
@keyframes fnd-pulse { 0%,100%{ opacity:1; transform:scale(1); } 50%{ opacity:.5; transform:scale(.85); } }
.fnd-planes-head h3 { font-size: 22px; font-weight: 300; color: var(--bk); margin-bottom: 6px; }
.fnd-planes-head h3 strong { font-weight: 300; color: var(--orange); }
.fnd-planes-head p { font-size: 13px; font-weight: 300; color: var(--gy); }

.fnd-planes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.fnd-plan {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: all .25s;
}
.fnd-plan:hover { box-shadow: var(--sh-md); transform: translateY(-3px); }
.fnd-plan.fnd-act {
  border-color: var(--orange);
  box-shadow: 0 0 0 1px var(--orange), 0 12px 40px rgba(240,90,40,.14);
}
.fnd-plan.fnd-act:hover {
  box-shadow: 0 0 0 1px var(--orange), 0 16px 48px rgba(240,90,40,.22);
  transform: translateY(-4px);
}
.fnd-plan.fnd-act .fnd-ptier { color: var(--orange); }
.fnd-plan.fnd-act .fnd-pfeats li svg { stroke: var(--orange); }

.fnd-plan.fnd-off { filter: saturate(.8); opacity: .85; pointer-events: none; }
.fnd-plan.fnd-off::before {
  content: 'Próximamente';
  position: absolute;
  top: 14px; right: 14px;
  font-size: 9px; font-weight: 600;
  letter-spacing: .8px; text-transform: uppercase;
  color: var(--orange);
  background: var(--orange-glow);
  border: 1px solid rgba(240,90,40,.14);
  padding: 3px 8px;
  border-radius: 100px;
}
.fnd-plan.fnd-dk {
  background: var(--bk);
  border-color: transparent;
}
.fnd-plan.fnd-dk .fnd-pname { color: white; }
.fnd-plan.fnd-dk .fnd-psub { color: rgba(255,255,255,.45); }
.fnd-plan.fnd-dk .fnd-ptier { color: var(--orange-l); }
.fnd-plan.fnd-dk .fnd-pline { background: rgba(255,255,255,.08); }
.fnd-plan.fnd-dk .fnd-pfeats li { color: rgba(255,255,255,.5); }
.fnd-plan.fnd-dk .fnd-pfeats li svg { stroke: rgba(255,255,255,.3); }
.fnd-plan.fnd-dk::before { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.12); color: rgba(255,255,255,.4); }

.fnd-ptier { font-size: 11px; font-weight: 600; color: var(--gray-l); letter-spacing: .5px; text-transform: uppercase; margin-bottom: 6px; }
.fnd-pname { font-size: 17px; font-weight: 500; color: var(--bk); margin-bottom: 4px; }
.fnd-psub { font-size: 12px; font-weight: 300; color: var(--gy); margin-bottom: 22px; }
.fnd-pline { height: 1px; background: var(--line); margin-bottom: 18px; }
.fnd-plan .fnd-pfeats { list-style: none; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.fnd-pfeats li { display: flex; gap: 9px; align-items: flex-start; font-size: 13px; font-weight: 300; color: var(--gy); line-height: 1.45; }
.fnd-pfeats li svg { flex-shrink: 0; width: 13px; height: 13px; margin-top: 3px; stroke: var(--gray-l); fill: none; stroke-width: 2.5; stroke-linecap: round; }
.fnd-pbtn {
  margin-top: 24px;
  display: block;
  text-align: center;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  padding: 11px 18px;
  border-radius: 50px;
  border: none;
  background: var(--bg);
  color: var(--gray-l);
  cursor: not-allowed;
  text-decoration: none;
}
.fnd-plan.fnd-act .fnd-pbtn { background: var(--orange); color: white; cursor: pointer; box-shadow: var(--sh-or); text-decoration: none; }
.fnd-plan.fnd-act .fnd-pbtn:hover { background: var(--orange-l); }

/* ── IMPACT ── */
.fnd-impact-grad {
  background: linear-gradient(135deg, var(--orange) 0%, #c74015 100%);
  padding: 72px 0;
}
.fnd-stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; }
.fnd-sbox { padding: 44px 28px; text-align: center; position: relative; }
.fnd-sbox + .fnd-sbox::before {
  content: '';
  position: absolute;
  left: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: rgba(255,255,255,.2);
}
.fnd-snum { font-family: 'Anton', sans-serif; font-size: 60px; color: white; line-height: 1; margin-bottom: 8px; }
.fnd-slbl { font-size: 13px; font-weight: 300; color: rgba(255,255,255,.75); }

.fnd-impact-wrap { background: white; padding: 64px 0 80px; }
.fnd-impact-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.fnd-ic {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 26px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: all .25s;
}
.fnd-ic:hover { border-color: rgba(240,90,40,.2); box-shadow: var(--sh-sm); transform: translateY(-2px); }
.fnd-ic-i {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: white;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .25s;
}
.fnd-ic:hover .fnd-ic-i { border-color: rgba(240,90,40,.2); background: var(--orange-glow); }
.fnd-ic-i img { width: 20px; height: 20px; object-fit: contain; display: block; transition: filter .25s; }
.fnd-ic:hover .fnd-ic-i img { filter: invert(42%) sepia(80%) saturate(600%) hue-rotate(346deg) brightness(95%) contrast(95%); }
.fnd-ic h3 { font-size: 14px; font-weight: 500; color: var(--bk); margin-bottom: 4px; }
.fnd-ic p { font-size: 13px; font-weight: 300; color: var(--gy); line-height: 1.6; }

/* ── FEATURES / BENTO ── */
.fnd-features { background: var(--bg); padding: 96px 0; }
.fnd-bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.fnd-bk {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 26px;
  transition: all .25s;
  position: relative;
  overflow: hidden;
}
.fnd-bk:hover { border-color: rgba(240,90,40,.18); box-shadow: var(--sh-md); transform: translateY(-2px); }
.fnd-bk.fnd-w2 { grid-column: span 2; }
.fnd-bk.fnd-tall { grid-row: span 2; display: flex; flex-direction: column; }
.fnd-bk.fnd-dk { background: var(--bk); border-color: transparent; }
.fnd-bk.fnd-ac { background: var(--orange); border-color: transparent; }

.fnd-bk-i {
  width: 36px; height: 36px;
  border-radius: 9px;
  background: var(--bg);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: all .25s;
}
.fnd-bk:not(.fnd-dk):not(.fnd-ac):hover .fnd-bk-i { border-color: rgba(240,90,40,.2); background: var(--orange-glow); }
.fnd-bk.fnd-dk .fnd-bk-i { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.1); }
.fnd-bk.fnd-ac .fnd-bk-i { background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.2); }
.fnd-bk-i img { width: 18px; height: 18px; object-fit: contain; display: block; transition: filter .25s; }
.fnd-bk:not(.fnd-dk):not(.fnd-ac):hover .fnd-bk-i img { filter: invert(42%) sepia(80%) saturate(600%) hue-rotate(346deg) brightness(95%) contrast(95%); }
.fnd-bk.fnd-dk .fnd-bk-i img,
.fnd-bk.fnd-ac .fnd-bk-i img { filter: invert(1) brightness(2); }

.fnd-bk h3 { font-size: 14px; font-weight: 500; color: var(--bk); margin-bottom: 5px; }
.fnd-bk.fnd-dk h3, .fnd-bk.fnd-ac h3 { color: white; }
.fnd-bk p { font-size: 13px; font-weight: 300; color: var(--gy); line-height: 1.6; }
.fnd-bk.fnd-dk p { color: rgba(255,255,255,.45); }
.fnd-bk.fnd-ac p { color: rgba(255,255,255,.78); }
.fnd-bk-img { margin-top: 18px; border-radius: 10px; overflow: hidden; height: 130px; background: var(--gl); flex: 1; }
.fnd-bk-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── PAWS ── */
.fnd-paws {
  background: var(--bk);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.fnd-paws::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240,90,40,.12) 0%, transparent 70%);
}
.fnd-paws-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.fnd-plbl { font-size: 11px; font-weight: 500; letter-spacing: 1.4px; text-transform: uppercase; color: #ff9a77; margin-bottom: 14px; display: block; }
.fnd-ptitle { font-size: clamp(26px, 3.5vw, 42px); font-weight: 300; color: white; line-height: 1.2; margin-bottom: 14px; }
.fnd-ptitle strong { font-weight: 300; color: var(--orange); }
.fnd-psub-p { font-size: 14px; font-weight: 300; color: rgba(255,255,255,.45); line-height: 1.75; }
.fnd-pmetrics { display: flex; gap: 32px; margin-top: 32px; }
.fnd-pm h4 { font-size: 28px; font-weight: 300; color: var(--orange); }
.fnd-pm p { font-size: 12px; font-weight: 300; color: rgba(255,255,255,.35); margin-top: 2px; }
.fnd-pimg { border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 5/4; background: #2a2a2a; }
.fnd-pimg img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── FAQ ── */
.fnd-faq { background: white; padding: 96px 0; }
.fnd-faq-list { display: flex; flex-direction: column; max-width: 720px; margin: 0 auto; }
.fnd-faq-item { border-bottom: 1px solid var(--line); }
.fnd-faq-item:first-child { border-top: 1px solid var(--line); }
.fnd-faq-btn {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 4px;
  text-align: left;
  font-family: inherit;
  transition: color .2s;
  color: var(--bk);
}
.fnd-faq-btn:hover { color: var(--orange); }
.fnd-faq-btn h4 { font-size: 15px; font-weight: 500; color: inherit; transition: color .2s; }
.fnd-faq-btn svg { flex-shrink: 0; width: 18px; height: 18px; stroke: var(--gray-l); fill: none; stroke-width: 2; stroke-linecap: round; transition: transform .3s, stroke .2s; }
.fnd-faq-btn:hover svg { stroke: var(--orange); }
.fnd-faq-item.open .fnd-faq-btn svg { transform: rotate(45deg); }
.fnd-faq-item.open .fnd-faq-btn h4 { color: var(--orange); }
.fnd-faq-body { display: none; padding: 0 4px 22px; }
.fnd-faq-item.open .fnd-faq-body { display: block; }
.fnd-faq-body p { font-size: 14px; font-weight: 300; color: var(--gy); line-height: 1.75; }

/* ── JOIN ── */
.fnd-join { background: var(--bg); padding: 96px 0; }
.fnd-join-box {
  background: linear-gradient(140deg, var(--orange) 0%, #c74015 100%);
  border-radius: var(--r-xl);
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.fnd-join-box::before { content: ''; position: absolute; top: -80px; right: -80px; width: 260px; height: 260px; border-radius: 50%; background: rgba(255,255,255,.07); }
.fnd-join-box::after  { content: ''; position: absolute; bottom: -50px; left: -50px; width: 200px; height: 200px; border-radius: 50%; background: rgba(255,255,255,.05); }
.fnd-join-box h2 { font-size: clamp(24px, 4.5vw, 44px); font-weight: 300; color: white; line-height: 1.2; margin-bottom: 14px; max-width: 480px; position: relative; z-index: 1; }
.fnd-join-box h2 strong { font-weight: 600; color: white; }
.fnd-join-box p { font-size: 15px; font-weight: 300; color: rgba(255,255,255,.65); margin-bottom: 40px; max-width: 380px; position: relative; z-index: 1; }
.fnd-j-btns { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; position: relative; z-index: 1; }
.fnd-btn-w { font-family: inherit; font-size: 14px; font-weight: 500; padding: 12px 26px; border-radius: 50px; border: none; background: white; color: var(--orange); cursor: pointer; text-decoration: none; transition: all .2s; display: inline-block; }
.fnd-btn-w:hover { background: var(--bg); transform: translateY(-1px); }
.fnd-btn-ow { font-family: inherit; font-size: 14px; font-weight: 400; padding: 12px 26px; border-radius: 50px; background: transparent; color: white; border: 1.5px solid rgba(255,255,255,.35); cursor: pointer; text-decoration: none; transition: all .2s; display: inline-block; }
.fnd-btn-ow:hover { border-color: white; background: rgba(255,255,255,.08); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .fnd-container { padding: 0 20px; }
  .fnd-hero { padding: 100px 20px 64px; } /* alineado con fnd-container */
  .fnd-brands-grid { grid-template-columns: 1fr 1fr; }
  .fnd-bc-card.fnd-ft { grid-column: span 2; }
  .fnd-lp-two { grid-template-columns: 1fr; }
  .fnd-lp-img { min-height: 260px; height: 260px; }
  .fnd-planes { grid-template-columns: 1fr; }
  .fnd-stat-row { grid-template-columns: 1fr; }
  .fnd-sbox + .fnd-sbox::before { display: none; }
  .fnd-impact-grid { grid-template-columns: 1fr; }
  .fnd-bento { grid-template-columns: 1fr; }
  .fnd-bk.fnd-w2, .fnd-bk.fnd-tall { grid-column: span 1; grid-row: span 1; }
  .fnd-paws-grid { grid-template-columns: 1fr; }
  .fnd-join-box { padding: 48px 28px; }
  .fnd-eco-cta { padding: 36px 28px; }
  .fnd-h-title { font-size: clamp(44px, 12vw, 80px); }
}

@media (max-width: 600px) {
  .fnd-brands-grid { grid-template-columns: 1fr; }
  .fnd-bc-card.fnd-ft { grid-column: span 1; flex-direction: column; }
  .fnd-h-title { font-size: clamp(40px, 13vw, 64px); }
  .fnd-pmetrics { flex-direction: column; gap: 20px; }
  /* Ajustes adicionales para móvil chico */
  .fnd-container { padding: 0 16px; }
  .fnd-hero { padding: 80px 16px 56px; }
  .fnd-h-title { font-size: clamp(36px, 13vw, 56px); }
  .fnd-hero-desc { font-size: 14px; }
  .fnd-ecosystem,
  .fnd-launchpad,
  .fnd-impact-wrap,
  .fnd-paws-wrap,
  .fnd-join-section { padding-left: 16px; padding-right: 16px; }
  .fnd-join-box { padding: 40px 16px; border-radius: 20px; }
  .fnd-eco-cta { padding: 28px 16px; border-radius: 16px; }
  .fnd-stitle { font-size: clamp(22px, 7vw, 30px); }
}

/* overflow-x global para mobile */
html, body { overflow-x: hidden; }
