/* Rafónica — hoja de estilos del sitio público
   Traducido 1:1 desde el diseño de Claude Design (raf-nica-v2/project/Rafonica.dc.html) */

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Schibsted Grotesk', sans-serif;
  color: #37352F;
  background: #FBFBFA;
  -webkit-font-smoothing: antialiased;
}
a { color: #37352F; text-decoration: none; }
img, svg { max-width: 100%; }
::selection { background: #EAFF77; color: #1A1A19; }

.wrap { max-width: 1200px; margin: 0 auto; padding-left: 30px; padding-right: 30px; }

/* ---------- keyframes ---------- */
@keyframes rf-rise { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
@keyframes rf-float { 0%,100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-16px) rotate(3deg); } }
@keyframes rf-floatB { 0%,100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(14px) rotate(-4deg); } }
@keyframes rf-drift { 0% { transform: translate(0,0) scale(1); } 33% { transform: translate(3%,-4%) scale(1.06); } 66% { transform: translate(-3%,3%) scale(0.97); } 100% { transform: translate(0,0) scale(1); } }
@keyframes rf-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes rf-travel { 0% { left: 6%; } 8% { left: 6%; } 46% { left: 92%; } 54% { left: 92%; } 92% { left: 6%; } 100% { left: 6%; } }
@keyframes rf-pulse { 0% { transform: scale(0.6); opacity: 0.6; } 100% { transform: scale(2.4); opacity: 0; } }
@keyframes rf-spin { to { transform: rotate(360deg); } }
@keyframes rf-blink { 0%,100% { opacity: 1; } 50% { opacity: 0.25; } }

/* ---------- reveal-on-scroll ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1);
}
[data-reveal].is-visible { opacity: 1; transform: none; }

/* ---------- nav ---------- */
.rf-nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251,251,250,0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(55,53,47,0.09);
  display: flex; align-items: center; justify-content: space-between;
  padding: 15px 30px;
}
.rf-nav-logo { display: flex; align-items: center; }
.rf-nav-logo svg { display: block; width: 132px; height: auto; color: #1A1A19; }
.rf-nav-links { display: flex; align-items: center; gap: 30px; font-size: 14.5px; font-weight: 500; }
.rf-navlink { opacity: 0.82; transition: opacity .2s; }
.rf-navlink:hover { opacity: 1; }
.rf-btn-wa {
  background: #1A1A19; color: #fff; padding: 9px 17px; border-radius: 10px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 8px; box-shadow: 0 2px 6px rgba(26,26,25,0.18);
  transition: background .2s;
}
.rf-btn-wa:hover { background: #37352F; }
.rf-dot { width: 7px; height: 7px; border-radius: 999px; background: #EAFF77; display: inline-block; flex: none; }

/* ---------- generic buttons ---------- */
.rf-btn-primary {
  background: #1A1A19; color: #fff; padding: 15px 24px; border-radius: 12px; font-weight: 600; font-size: 16px;
  display: inline-flex; align-items: center; gap: 10px; box-shadow: 0 6px 18px rgba(26,26,25,0.22);
  transition: background .2s, transform .2s;
}
.rf-btn-primary:hover { background: #37352F; transform: translateY(-1px); }
.rf-btn-secondary {
  background: #fff; color: #1A1A19; border: 1px solid rgba(55,53,47,0.18); padding: 15px 24px; border-radius: 12px;
  font-weight: 600; font-size: 16px; display: inline-flex; align-items: center; gap: 10px;
  box-shadow: 0 2px 8px rgba(55,53,47,0.05); transition: border-color .2s, transform .2s;
}
.rf-btn-secondary:hover { border-color: #1A1A19; transform: translateY(-1px); }
.rf-dot-lg { width: 9px; height: 9px; border-radius: 999px; background: #EAFF77; display: inline-block; flex: none; }
.rf-dot-blue { background: #7777FF; }
.rf-dot-pink { background: #FF7792; }

/* ---------- hero ---------- */
.rf-hero { position: relative; overflow: hidden; border-bottom: 1px solid rgba(55,53,47,0.09); }
.rf-hero-mesh { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.rf-hero-mesh span { position: absolute; filter: blur(6px); }
.rf-hero-blob-1 { width: 620px; height: 620px; top: -220px; right: -140px; background: radial-gradient(circle at 50% 50%, rgba(119,119,255,0.28), rgba(119,119,255,0) 68%); animation: rf-drift 18s ease-in-out infinite; }
.rf-hero-blob-2 { width: 520px; height: 520px; top: 40px; right: 220px; background: radial-gradient(circle at 50% 50%, rgba(255,119,146,0.24), rgba(255,119,146,0) 66%); animation: rf-drift 22s ease-in-out infinite reverse; }
.rf-hero-blob-3 { width: 460px; height: 460px; bottom: -220px; left: -120px; background: radial-gradient(circle at 50% 50%, rgba(234,255,119,0.34), rgba(234,255,119,0) 64%); animation: rf-drift 20s ease-in-out infinite; }

.rf-hero-grid {
  position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; padding: 92px 30px 96px;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center;
}
.rf-badge {
  display: inline-flex; align-items: center; gap: 9px; background: rgba(255,255,255,0.7);
  border: 1px solid rgba(55,53,47,0.12); backdrop-filter: blur(6px); padding: 6px 12px 6px 8px;
  border-radius: 999px; font-size: 13px; font-weight: 500; color: #37352F; margin-bottom: 26px;
  animation: rf-rise 0.6s ease both;
}
.rf-badge-tag {
  display: inline-flex; align-items: center; gap: 5px; background: #1A1A19; color: #EAFF77;
  font-family: 'Space Mono', monospace; font-size: 10px; letter-spacing: 0.06em; padding: 3px 8px; border-radius: 999px;
}
.rf-hero h1 {
  font-size: 66px; line-height: 1.02; letter-spacing: -0.032em; font-weight: 700; color: #1A1A19;
  margin: 0 0 24px; animation: rf-rise 0.7s ease both; animation-delay: 0.05s;
}
.rf-highlight {
  position: relative; white-space: nowrap;
  background-image: linear-gradient(101deg, rgba(234,255,119,0) 1%, #EAFF77 2%, #EAFF77 98%, rgba(234,255,119,0) 99%);
  background-repeat: no-repeat; background-size: 100% 42%; background-position: 0 82%; padding: 0 .04em;
}
.rf-italic { font-family: 'Newsreader', serif; font-style: italic; font-weight: 400; }
.rf-hero p.rf-lead {
  font-size: 19.5px; line-height: 1.55; color: #504E49; max-width: 31em; margin: 0 0 34px;
  animation: rf-rise 0.7s ease both; animation-delay: 0.12s;
}
.rf-hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 30px; animation: rf-rise 0.7s ease both; animation-delay: 0.18s; }
.rf-trustline { display: flex; gap: 22px; flex-wrap: wrap; font-size: 13.5px; color: #787774; animation: rf-rise 0.7s ease both; animation-delay: 0.24s; }
.rf-trustline span { display: inline-flex; align-items: center; gap: 7px; }
.rf-trustline i { width: 6px; height: 6px; border-radius: 999px; display: inline-block; }

/* matchmaking diagram */
.rf-diagram-wrap { position: relative; animation: rf-rise 0.8s ease both; animation-delay: 0.15s; }
.rf-diagram {
  position: relative; background: rgba(255,255,255,0.72); backdrop-filter: blur(10px);
  border: 1px solid rgba(55,53,47,0.10); border-radius: 22px; padding: 30px 26px;
  box-shadow: 0 24px 60px -22px rgba(55,53,47,0.28), 0 2px 8px rgba(55,53,47,0.06);
}
.rf-diagram-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 26px; }
.rf-diagram-label { font-family: 'Space Mono', monospace; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: #787774; }
.rf-diagram-live { display: inline-flex; align-items: center; gap: 6px; font-family: 'Space Mono', monospace; font-size: 11px; color: #504E49; }
.rf-diagram-live i { width: 7px; height: 7px; border-radius: 999px; background: #34c759; display: inline-block; animation: rf-blink 1.6s ease-in-out infinite; }
.rf-flow-row { position: relative; display: flex; align-items: center; justify-content: space-between; padding: 6px 4px 2px; }
.rf-flow-track { position: absolute; left: 12%; right: 12%; top: 30px; height: 2px; background: linear-gradient(90deg, #7777FF, #FF7792); border-radius: 2px; opacity: 0.5; }
.rf-flow-particle-track { position: absolute; left: 6%; right: 6%; top: 24px; height: 14px; overflow: hidden; }
.rf-flow-particle { position: absolute; top: 4px; width: 8px; height: 8px; border-radius: 999px; background: #1A1A19; box-shadow: 0 0 0 3px rgba(234,255,119,0.9); animation: rf-travel 5.2s cubic-bezier(.5,0,.5,1) infinite; }
.rf-node { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 9px; width: 96px; }
.rf-node-badge { position: relative; width: 60px; height: 60px; border-radius: 16px; display: flex; align-items: center; justify-content: center; color: #1A1A19; font-weight: 700; font-size: 20px; }
.rf-node-badge.creator { background: linear-gradient(135deg, #FF7792, #EAFF77); box-shadow: 0 8px 20px -6px rgba(255,119,146,0.6); }
.rf-node-badge.business { background: linear-gradient(135deg, #7777FF, #EAFF77); box-shadow: 0 8px 20px -6px rgba(119,119,255,0.6); }
.rf-node-ring { position: absolute; inset: 0; border-radius: 16px; border: 2px solid #FF7792; animation: rf-pulse 2.6s ease-out infinite; }
.rf-node-ring.business { border-color: #7777FF; animation-delay: 1.3s; }
.rf-node-name { font-size: 12px; font-weight: 600; color: #1A1A19; text-align: center; }
.rf-node-center { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 9px; }
.rf-node-center-badge { width: 46px; height: 46px; border-radius: 999px; background: #1A1A19; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 20px -6px rgba(26,26,25,0.55); }
.rf-node-center-badge span { width: 20px; height: 20px; border-radius: 6px; background: linear-gradient(135deg, #7777FF, #FF7792, #EAFF77); display: block; animation: rf-spin 6s linear infinite; }
.rf-node-center-name { font-size: 11px; font-weight: 600; color: #787774; }
.rf-agreements { margin-top: 26px; display: flex; flex-direction: column; gap: 9px; }
.rf-agreement-row {
  display: flex; align-items: center; gap: 10px; background: #FBFBFA; border: 1px solid rgba(55,53,47,0.08);
  border-radius: 11px; padding: 11px 13px;
}
.rf-check {
  flex: none; width: 20px; height: 20px; border-radius: 6px; background: #EAFF77; display: inline-flex;
  align-items: center; justify-content: center; font-size: 12px; color: #1A1A19;
}
.rf-agreement-row span.rf-agreement-text { font-size: 13.5px; color: #37352F; }
.rf-agreement-row span.rf-agreement-tag { margin-left: auto; font-family: 'Space Mono', monospace; font-size: 11px; color: #787774; }
.rf-chip {
  position: absolute; background: #fff; border: 1px solid rgba(55,53,47,0.10); border-radius: 12px;
  padding: 9px 13px; box-shadow: 0 10px 24px -10px rgba(55,53,47,0.35); font-size: 12.5px; font-weight: 600;
  color: #1A1A19; display: flex; align-items: center; gap: 8px;
}
.rf-chip-a { top: -18px; left: -22px; animation: rf-float 6s ease-in-out infinite; }
.rf-chip-b { bottom: 26px; right: -26px; animation: rf-floatB 7s ease-in-out infinite; }

/* ---------- marquee ---------- */
.rf-marquee-section { border-bottom: 1px solid rgba(55,53,47,0.09); background: #1A1A19; overflow: hidden; padding: 16px 0; }
.rf-marquee-track { display: flex; width: max-content; animation: rf-marquee 26s linear infinite; }
.rf-marquee-group { display: flex; align-items: center; gap: 30px; padding-right: 30px; }
.rf-marquee-item { display: inline-flex; align-items: center; gap: 30px; }
.rf-marquee-item span.rf-marquee-text { font-family: 'Newsreader', serif; font-style: italic; font-size: 21px; color: #FBFBFA; white-space: nowrap; }
.rf-marquee-item span.rf-marquee-dot { width: 5px; height: 5px; border-radius: 999px; background: #EAFF77; flex: none; }

/* ---------- sections generic ---------- */
.rf-section { border-bottom: 1px solid rgba(55,53,47,0.09); }
.rf-section.bg-white { background: #fff; }
.rf-section.bg-ivory { background: #FBFBFA; }
.rf-section.bg-dark { background: #1A1A19; color: #fff; }
.rf-section-inner { max-width: 1200px; margin: 0 auto; padding: 92px 30px; }
.rf-eyebrow { font-family: 'Space Mono', monospace; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; display: block; margin-bottom: 16px; }
.eyebrow-blue { color: #7777FF; }
.eyebrow-pink { color: #FF7792; }
.eyebrow-yellow { color: #EAFF77; }
.rf-h2-lead { max-width: 40em; margin-bottom: 52px; }
.rf-h2 { font-size: 44px; line-height: 1.06; letter-spacing: -0.028em; font-weight: 700; color: #1A1A19; margin: 0 0 16px; }
.bg-dark .rf-h2 { color: #fff; }
.rf-h2-sub { font-size: 18px; line-height: 1.55; color: #504E49; margin: 0; }
.bg-dark .rf-h2-sub { color: #b8b6b1; }

/* ---------- proceso ---------- */
.rf-grid4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.rf-step-card {
  background: #FBFBFA; border: 1px solid rgba(55,53,47,0.09); border-radius: 18px; padding: 26px 22px;
  transition: box-shadow .3s, transform .3s;
}
.rf-step-card:hover { box-shadow: 0 18px 40px -20px rgba(55,53,47,0.35); transform: translateY(-3px); }
.rf-step-num {
  width: 42px; height: 42px; border-radius: 12px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; font-family: 'Space Mono', monospace; font-weight: 700; font-size: 15px;
}
.rf-step-card h3 { font-size: 20px; font-weight: 700; color: #1A1A19; margin: 0 0 8px; }
.rf-step-card p { font-size: 14.5px; line-height: 1.5; color: #504E49; margin: 0; }
.rf-free-banner {
  margin-top: 22px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  background: linear-gradient(120deg, rgba(234,255,119,0.55), rgba(234,255,119,0.14));
  border: 1px solid rgba(55,53,47,0.12); border-radius: 16px; padding: 18px 22px;
}
.rf-pill-tag {
  flex: none; display: inline-flex; align-items: center; gap: 8px; font-family: 'Space Mono', monospace; font-size: 11px;
  letter-spacing: 0.08em; text-transform: uppercase; color: #1A1A19; background: #EAFF77; padding: 6px 12px; border-radius: 999px;
}
.rf-free-banner p { margin: 0; font-size: 15.5px; line-height: 1.5; color: #37352F; flex: 1; min-width: 15em; }

/* ---------- creadores teaser ---------- */
.rf-teaser-panel {
  position: relative; overflow: hidden; border: 1px dashed rgba(55,53,47,0.28); border-radius: 22px;
  padding: 46px 40px; background: linear-gradient(180deg, #fff, #FBFBFA);
}
.rf-teaser-glow {
  position: absolute; top: -60px; right: -40px; width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(234,255,119,0.4), rgba(234,255,119,0) 68%); filter: blur(4px); pointer-events: none;
}
.rf-teaser-top { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.rf-soon-badge {
  display: inline-flex; align-items: center; gap: 8px; font-family: 'Space Mono', monospace; font-size: 11px;
  letter-spacing: 0.1em; text-transform: uppercase; color: #504E49; background: #fff; border: 1px solid rgba(55,53,47,0.12);
  padding: 5px 11px; border-radius: 999px; margin-bottom: 18px;
}
.rf-soon-badge i { width: 7px; height: 7px; border-radius: 999px; background: #FF7792; display: inline-block; animation: rf-blink 1.6s ease-in-out infinite; }
.rf-teaser-top h2 { font-size: 34px; line-height: 1.08; letter-spacing: -0.022em; font-weight: 700; color: #1A1A19; margin: 0 0 12px; }
.rf-teaser-top p { font-size: 17px; line-height: 1.55; color: #504E49; margin: 0; }
.rf-ghost-grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 34px; }
.rf-ghost-card {
  height: 96px; border-radius: 14px; background: #fff; border: 1px solid rgba(55,53,47,0.08);
  display: flex; align-items: center; gap: 12px; padding: 0 16px;
}
.rf-ghost-avatar { width: 40px; height: 40px; border-radius: 11px; background: repeating-linear-gradient(45deg,#f1f1ef,#f1f1ef 6px,#e9e9e6 6px,#e9e9e6 12px); flex: none; }
.rf-ghost-lines { flex: 1; display: flex; flex-direction: column; gap: 7px; }
.rf-ghost-lines span { height: 9px; border-radius: 5px; background: #ecebe8; display: block; }
.rf-ghost-lines span:last-child { height: 8px; background: #f1f1ef; }

/* ---------- split sections (creadores / negocios / vision) ---------- */
.rf-split { display: grid; gap: 60px; align-items: center; }
.rf-split.rev { grid-template-columns: 1.08fr 0.92fr; }
.rf-split.fwd { grid-template-columns: 0.92fr 1.08fr; }

.rf-profile-card {
  position: relative; background: #FBFBFA; border: 1px solid rgba(55,53,47,0.10); border-radius: 20px; padding: 24px;
  box-shadow: 0 24px 60px -28px rgba(55,53,47,0.4);
}
.rf-profile-head { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.rf-profile-avatar {
  flex: none; width: 58px; height: 58px; border-radius: 16px; background: linear-gradient(135deg, #FF7792, #EAFF77);
  display: flex; align-items: center; justify-content: center; font-weight: 700; color: #1A1A19; font-size: 18px;
}
.rf-profile-name { font-size: 17px; font-weight: 700; color: #1A1A19; }
.rf-profile-sub { font-family: 'Space Mono', monospace; font-size: 11px; color: #787774; }
.rf-profile-verified { margin-left: auto; background: #EAFF77; border-radius: 999px; padding: 5px 11px; font-family: 'Space Mono', monospace; font-size: 10px; font-weight: 700; color: #1A1A19; }
.rf-stat-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 9px; margin-bottom: 18px; }
.rf-stat-box { background: #fff; border: 1px solid rgba(55,53,47,0.08); border-radius: 12px; padding: 13px 10px; }
.rf-stat-num { font-size: 22px; font-weight: 700; color: #1A1A19; }
.rf-stat-label { font-family: 'Space Mono', monospace; font-size: 10px; color: #787774; text-transform: uppercase; letter-spacing: 0.05em; }
.rf-trust-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.rf-trust-row span:first-child { font-family: 'Space Mono', monospace; font-size: 11px; color: #787774; text-transform: uppercase; letter-spacing: 0.06em; }
.rf-trust-row span:last-child { font-size: 13px; font-weight: 700; color: #1A1A19; }
.rf-trust-bar { height: 10px; border-radius: 999px; background: #EDEDEB; overflow: hidden; }
.rf-trust-bar span { display: block; height: 100%; border-radius: 999px; background: linear-gradient(90deg, #7777FF, #EAFF77); }

.rf-checklist-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; }
.rf-checklist { display: flex; flex-direction: column; gap: 13px; }
.rf-check-item { display: flex; align-items: flex-start; gap: 11px; }
.rf-check-item span.rf-check-text { font-size: 15px; color: #37352F; }
.rf-checklist .rf-check-item span.rf-check-text { font-size: 16px; }

.rf-free-pill {
  display: inline-flex; align-items: center; gap: 10px; align-self: flex-start;
  background: linear-gradient(120deg, rgba(234,255,119,0.6), rgba(234,255,119,0.16));
  border: 1px solid rgba(55,53,47,0.12); border-radius: 999px; padding: 8px 15px 8px 8px; margin-bottom: 18px;
}
.rf-free-pill span.rf-free-tag { font-family: 'Space Mono', monospace; font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: #1A1A19; background: #EAFF77; padding: 4px 10px; border-radius: 999px; }
.rf-free-pill span.rf-free-text { font-size: 14px; font-weight: 600; color: #1A1A19; }

.rf-brief-card { background: #fff; border: 1px solid rgba(55,53,47,0.10); border-radius: 20px; padding: 26px; box-shadow: 0 24px 60px -28px rgba(55,53,47,0.4); }
.rf-brief-head { display: flex; justify-content: space-between; align-items: baseline; border-bottom: 1px dashed rgba(55,53,47,0.2); padding-bottom: 13px; margin-bottom: 18px; }
.rf-brief-head span:first-child { font-family: 'Space Mono', monospace; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: #504E49; }
.rf-brief-head span:last-child { font-family: 'Space Mono', monospace; font-size: 11px; color: #787774; }
.rf-brief-label { font-family: 'Space Mono', monospace; font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; color: #787774; margin-bottom: 8px; }
.rf-brief-amount { font-size: 32px; font-weight: 700; color: #1A1A19; margin-bottom: 3px; }
.rf-brief-amount .dash { color: #b9b8b4; font-weight: 500; }
.rf-brief-sub { font-family: 'Space Mono', monospace; font-size: 12px; color: #787774; margin-bottom: 20px; }
.rf-brief-bar { height: 10px; border-radius: 999px; background: #EDEDEB; overflow: hidden; margin-bottom: 20px; }
.rf-brief-bar span { display: block; width: 38%; height: 100%; border-radius: 999px; background: linear-gradient(90deg, #7777FF, #EAFF77); }
.rf-brief-rows { display: flex; flex-direction: column; gap: 12px; font-size: 14px; }
.rf-brief-row { display: flex; justify-content: space-between; border-bottom: 1px dotted rgba(55,53,47,0.18); padding-bottom: 9px; }
.rf-brief-row:last-child { border-bottom: none; padding-bottom: 0; }
.rf-brief-row span:first-child { color: #787774; }
.rf-brief-row span:last-child { font-weight: 600; color: #1A1A19; }
.rf-brief-row .rf-none-tag { font-weight: 700; background: #EAFF77; padding: 1px 8px; border-radius: 6px; }

/* ---------- valores ---------- */
.rf-grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.rf-value-card { border: 1px solid rgba(255,255,255,0.14); border-radius: 18px; padding: 30px 26px; background: rgba(255,255,255,0.03); }
.rf-value-num { width: 40px; height: 40px; border-radius: 11px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; font-weight: 700; font-family: 'Space Mono', monospace; }
.rf-value-card h3 { font-size: 23px; font-weight: 700; margin: 0 0 10px; color: #fff; }
.rf-value-card p { font-size: 15.5px; line-height: 1.55; color: #b8b6b1; margin: 0; }

/* ---------- vision / stats ---------- */
.rf-stat-panel {
  border: 1px solid rgba(55,53,47,0.10); border-radius: 22px; padding: 44px 40px; text-align: center;
  background: linear-gradient(180deg, #FBFBFA, #fff); box-shadow: 0 24px 60px -30px rgba(55,53,47,0.35);
}
.rf-stat-big {
  font-size: 104px; font-weight: 800; line-height: 1; letter-spacing: -0.04em;
  background: linear-gradient(135deg, #7777FF, #FF7792); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.rf-stat-panel .rf-stat-caption { font-family: 'Space Mono', monospace; font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: #1A1A19; margin-top: 14px; }
.rf-stat-panel .rf-stat-note { font-family: 'Space Mono', monospace; font-size: 12px; color: #787774; margin-top: 6px; }

/* ---------- cta final ---------- */
.rf-cta-final { position: relative; overflow: hidden; border-bottom: 1px solid rgba(55,53,47,0.09); background: #FBFBFA; }
.rf-cta-final .rf-hero-mesh span { filter: blur(6px); }
.rf-cta-blob-1 { width: 560px; height: 560px; top: -180px; left: 50%; transform: translateX(-50%); background: radial-gradient(circle, rgba(234,255,119,0.34), rgba(234,255,119,0) 66%); animation: rf-drift 20s ease-in-out infinite; }
.rf-cta-blob-2 { width: 420px; height: 420px; bottom: -200px; left: 10%; background: radial-gradient(circle, rgba(119,119,255,0.24), rgba(119,119,255,0) 66%); animation: rf-drift 24s ease-in-out infinite reverse; }
.rf-cta-blob-3 { width: 420px; height: 420px; bottom: -200px; right: 10%; background: radial-gradient(circle, rgba(255,119,146,0.22), rgba(255,119,146,0) 66%); animation: rf-drift 22s ease-in-out infinite; }
.rf-cta-inner { position: relative; z-index: 1; max-width: 900px; margin: 0 auto; padding: 108px 30px; text-align: center; }
.rf-cta-eyebrow { font-family: 'Space Mono', monospace; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: #787774; display: block; margin-bottom: 24px; }
.rf-cta-inner h2 { font-size: 62px; line-height: 1.02; letter-spacing: -0.03em; font-weight: 700; color: #1A1A19; margin: 0 0 22px; }
.rf-cta-inner p { font-size: 19.5px; line-height: 1.5; color: #504E49; margin: 0 auto 38px; max-width: 30em; }
.rf-cta-ctas { display: flex; gap: 13px; justify-content: center; flex-wrap: wrap; }
.rf-btn-primary.lg, .rf-btn-secondary.lg { padding: 17px 30px; border-radius: 13px; font-size: 18px; }
.rf-btn-primary.lg { box-shadow: 0 10px 26px rgba(26,26,25,0.25); }

/* ---------- footer ---------- */
.rf-footer { background: #1A1A19; color: #fff; }
.rf-footer-top { max-width: 1200px; margin: 0 auto; padding: 56px 30px; display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; flex-wrap: wrap; }
.rf-footer-brand { max-width: 25em; }
.rf-footer-logo { margin-bottom: 16px; }
.rf-footer-logo svg { display: block; width: 150px; height: auto; color: #fff; }
.rf-footer-brand p { font-size: 14px; line-height: 1.55; color: #9c9a95; margin: 0; }
.rf-footer-cols { display: flex; gap: 56px; flex-wrap: wrap; }
.rf-footer-col { display: flex; flex-direction: column; gap: 11px; }
.rf-footer-col-title { font-family: 'Space Mono', monospace; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: #787774; margin-bottom: 4px; }
.rf-footer-col a { color: #e8e7e4; font-size: 14px; transition: color .2s; }
.rf-footer-col a:hover { color: #EAFF77; }
.rf-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding: 18px 30px; max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-family: 'Space Mono', monospace;
  font-size: 11px; color: #787774; letter-spacing: 0.03em;
}

/* ---------- nosotros: portrait ---------- */
.rf-eyebrow-line { display: inline-flex; align-items: center; gap: 10px; }
.rf-eyebrow-line .bar { width: 24px; height: 1.5px; background: #FF7792; display: inline-block; }
.rf-portrait {
  position: relative; aspect-ratio: 4 / 5; border-radius: 22px; overflow: hidden;
  box-shadow: 0 24px 60px -30px rgba(55,53,47,0.35);
}
.rf-portrait img { width: 100%; height: 100%; object-fit: cover; display: block; }
.rf-portrait-placeholder {
  position: relative; aspect-ratio: 4 / 5; border-radius: 22px; border: 1.5px dashed rgba(55,53,47,0.28);
  background: linear-gradient(150deg, #fff, #F3F3F1); display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 12px; text-align: center; padding: 30px; box-shadow: 0 24px 60px -30px rgba(55,53,47,0.35);
}

/* ---------- nosotros: story ---------- */
.rf-story { max-width: 760px; margin: 0 auto; padding: 92px 30px; }
.rf-story h2 { font-size: 40px; line-height: 1.08; letter-spacing: -0.026em; font-weight: 700; color: #1A1A19; margin: 0 0 28px; }
.rf-story-body { font-size: 19px; line-height: 1.7; color: #37352F; }
.rf-story-body p { margin: 0 0 22px; }
.rf-quote {
  margin: 34px 0; padding: 4px 0 4px 26px; border-left: 3px solid #EAFF77;
  font-family: 'Newsreader', serif; font-style: italic; font-size: 26px; line-height: 1.35; color: #1A1A19;
}

/* ---------- nosotros: beliefs (light variant of value cards) ---------- */
.rf-value-card.light { background: #fff; border: 1px solid rgba(55,53,47,0.09); }
.rf-value-card.light h3 { color: #1A1A19; }
.rf-value-card.light p { color: #504E49; }

/* ---------- páginas legales (aviso de privacidad) ---------- */
.rf-legal { max-width: 46rem; margin: 0 auto; padding: 64px 30px 96px; }
.rf-legal-header { border-bottom: 1px solid rgba(55,53,47,0.14); padding-bottom: 28px; margin-bottom: 40px; }
.rf-legal-header h1 {
  font-size: 46px; line-height: 1.05; letter-spacing: -0.03em; font-weight: 700;
  color: #1A1A19; margin: 0 0 12px;
}
.rf-legal-meta { font-family: 'Space Mono', monospace; font-size: 12px; letter-spacing: 0.06em; color: #787774; margin: 0; }
.rf-legal h2 {
  font-size: 26px; line-height: 1.2; letter-spacing: -0.02em; font-weight: 700;
  color: #1A1A19; margin: 48px 0 14px; scroll-margin-top: 90px;
}
.rf-legal p { font-size: 17px; line-height: 1.68; color: #37352F; margin: 0 0 18px; }
.rf-legal ul, .rf-legal ol { font-size: 17px; line-height: 1.68; color: #37352F; margin: 0 0 18px; padding-left: 1.3em; }
.rf-legal li { margin-bottom: 9px; }
.rf-legal strong { color: #1A1A19; font-weight: 600; }
.rf-legal a { color: #1A1A19; text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(55,53,47,0.35); }
.rf-legal a:hover { text-decoration-color: #1A1A19; }

.rf-legal-contact {
  background: #fff; border: 1px solid rgba(55,53,47,0.12); border-left: 3px solid #7777FF;
  border-radius: 14px; padding: 20px 22px; margin: 26px 0;
}
.rf-legal-contact .etiqueta {
  font-family: 'Space Mono', monospace; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: #787774; margin: 0 0 12px;
}
.rf-legal-contact p { margin: 0 0 7px; font-size: 16px; }
.rf-legal-contact p:last-child { margin-bottom: 0; }

.rf-legal-highlight {
  background: linear-gradient(120deg, rgba(234,255,119,0.5), rgba(234,255,119,0.14));
  border: 1px solid rgba(55,53,47,0.12); border-radius: 14px; padding: 20px 22px; margin: 26px 0;
}
.rf-legal-highlight p { margin: 0; }

.rf-legal-footer {
  margin-top: 56px; padding-top: 24px; border-top: 1px solid rgba(55,53,47,0.14);
  font-family: 'Space Mono', monospace; font-size: 12px; color: #787774;
}

@media (max-width: 600px) {
  .rf-legal-header h1 { font-size: 34px; }
  .rf-legal h2 { font-size: 22px; }
}

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .rf-hero-grid, .rf-split, .rf-grid3, .rf-grid4 { grid-template-columns: 1fr !important; }
  .rf-hero-grid { gap: 30px !important; padding-top: 44px !important; padding-bottom: 52px !important; }
  .rf-navlink { display: none !important; }
  .rf-nav { padding-top: 12px !important; padding-bottom: 12px !important; }
}
@media (max-width: 600px) {
  .rf-ghost-grid { grid-template-columns: 1fr 1fr !important; }
  .rf-section h2, .rf-teaser-top h2 { font-size: 32px !important; }
  .rf-hero h1 { font-size: 40px !important; }
  .rf-nav { padding-left: 18px !important; padding-right: 18px !important; }
  .rf-cta-inner h2 { font-size: 40px !important; }
  .rf-stat-big { font-size: 72px !important; }
}
