/* ============================================================
   STRATI — Sitio Web · Sistema de diseño
   Paleta de marca · Gold #FBBF24 exclusivo de CTAs
   ============================================================ */

:root {
  /* Brand */
  --orange: #F48940;
  --orange-light: #FFA14B;
  --red: #EA5B45;
  --black: #242526;
  --grey: #575757;
  --grey-light: #E8E7E7;
  --grey-bg: #FAFAFA;
  --white: #FFFFFF;
  --ink: #1A1A1B;

  /* CTA — gold, exclusive */
  --cta: #FBBF24;
  --cta-hover: #F59E0B;
  --cta-text: #242526;

  /* Fonts */
  --serif: 'Fraunces', Georgia, 'Times New Roman', serif;
  --sans: 'Cabinet Grotesk', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: ui-monospace, 'SF Mono', Menlo, monospace;

  /* Layout */
  --max: 1240px;
  --max-narrow: 920px;
  --gutter: clamp(22px, 5vw, 88px);

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: var(--sans); color: var(--black); background: var(--white);
  line-height: 1.6; font-size: 17px; overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
::selection { background: var(--orange); color: var(--white); }

/* ============ LAYOUT ============ */
.wrap { max-width: var(--max); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }
.wrap-wide { max-width: var(--max-wide); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }
.wrap-narrow { max-width: var(--max-narrow); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }
.wrap-bleed { width: 100%; padding-left: clamp(20px, 3vw, 56px); padding-right: clamp(20px, 3vw, 56px); }
.section { padding: clamp(80px, 11vw, 170px) 0; }
.section-tight { padding: clamp(56px, 7vw, 100px) 0; }
.divider { height: 1px; background: var(--grey-light); }

/* ============ TYPOGRAPHY ============ */
.eyebrow {
  font-family: var(--sans); font-size: 12px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--orange);
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 22px;
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; background: var(--orange); display: inline-block;
}
.eyebrow.no-line::before { display: none; }
.eyebrow .num { color: var(--grey); }

h1, h2, h3 { font-weight: 400; letter-spacing: -0.02em; }

.h-display {
  font-family: var(--serif); font-size: clamp(42px, 6.4vw, 86px); line-height: 1.02;
  letter-spacing: -0.025em; font-variation-settings: "opsz" 144;
}
.h-1 {
  font-family: var(--serif); font-size: clamp(38px, 5vw, 64px); line-height: 1.06;
  letter-spacing: -0.022em; font-variation-settings: "opsz" 120;
}
.h-2 {
  font-family: var(--serif); font-size: clamp(30px, 3.8vw, 50px); line-height: 1.1;
  letter-spacing: -0.018em; font-variation-settings: "opsz" 96;
}
.h-3 {
  font-family: var(--sans); font-weight: 700; font-size: clamp(20px, 2vw, 26px);
  line-height: 1.28; letter-spacing: -0.01em;
}
em.accent { font-style: italic; color: var(--orange); }
.serif-em { font-family: var(--serif); font-style: italic; }

.lead {
  font-size: clamp(18px, 1.8vw, 22px); line-height: 1.55; color: var(--grey); font-weight: 400;
}
.body { font-size: 17px; line-height: 1.7; color: var(--grey); }
.body strong { color: var(--black); font-weight: 600; }
.body + .body { margin-top: 18px; }
.muted { color: var(--grey); }
.small { font-size: 13px; color: var(--grey); }

/* ============ BUTTONS — gold exclusive ============ */
.btn {
  display: inline-flex; align-items: center; gap: 11px;
  font-family: var(--sans); font-size: 15px; font-weight: 700; letter-spacing: 0.005em;
  text-decoration: none; cursor: pointer; border: none;
  padding: 17px 34px; border-radius: 999px;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.btn-cta {
  background: var(--cta); color: var(--cta-text);
  box-shadow: 0 4px 18px rgba(251, 191, 36, 0.32);
}
.btn-cta:hover { background: var(--cta-hover); transform: translateY(-2px); box-shadow: 0 8px 26px rgba(251, 191, 36, 0.4); }
.btn-cta::after { content: "→"; transition: transform 0.25s var(--ease); }
.btn-cta:hover::after { transform: translateX(4px); }
.btn-cta.lg { font-size: 16px; padding: 20px 42px; }

.btn-ghost {
  background: transparent; color: var(--black);
  border: 1.5px solid var(--grey-light);
}
.btn-ghost:hover { border-color: var(--black); transform: translateY(-2px); }
.btn-ghost.on-dark { color: var(--white); border-color: rgba(255,255,255,0.32); }
.btn-ghost.on-dark:hover { border-color: var(--white); background: rgba(255,255,255,0.06); }

.link-arrow {
  font-family: var(--sans); font-weight: 600; font-size: 15px; color: var(--black);
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  border-bottom: 1.5px solid var(--orange); padding-bottom: 3px;
  transition: gap 0.2s var(--ease);
}
.link-arrow:hover { gap: 13px; }
.link-arrow::after { content: "→"; color: var(--orange); }

/* ============ NAV ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav-inner {
  max-width: var(--max); margin: 0 auto; padding: 18px var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: 28px;
}
.nav-logo { position: relative; display: inline-flex; align-items: center; }
.nav-logo img { height: 30px; width: auto; display: block; transition: opacity 0.35s var(--ease); }
.nav-logo .logo-light { filter: brightness(0) invert(1); opacity: 0; }
.nav-logo .logo-dark { position: absolute; left: 0; top: 50%; transform: translateY(-50%); opacity: 1; }
.nav-menu { display: flex; align-items: center; gap: 6px; }
.nav-link {
  font-family: var(--sans); font-size: 14.5px; font-weight: 500; text-decoration: none;
  padding: 9px 15px; border-radius: 999px; transition: background 0.2s var(--ease), color 0.2s var(--ease);
  position: relative;
}
.nav-link:hover { background: rgba(0,0,0,0.05); }
.nav-cta-sm {
  font-family: var(--sans); font-size: 14px; font-weight: 700;
  background: var(--cta); color: var(--cta-text); text-decoration: none;
  padding: 11px 22px; border-radius: 999px;
  transition: transform 0.22s var(--ease), background 0.22s var(--ease);
}
.nav-cta-sm:hover { background: var(--cta-hover); transform: translateY(-1px); }

/* Nav — transparent over dark hero */
.nav.over-hero { background: transparent; }
.nav.over-hero .nav-link { color: var(--white); }
.nav.over-hero .nav-link:hover { background: rgba(255,255,255,0.12); }
.nav.over-hero .nav-logo .logo-light { opacity: 1; }
.nav.over-hero .nav-logo .logo-dark { opacity: 0; }
/* Nav — scrolled / solid */
.nav.scrolled {
  background: rgba(255,255,255,0.94);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom-color: var(--grey-light);
}
.nav.scrolled .nav-link { color: var(--black); }
.nav.scrolled .nav-logo .logo-light { opacity: 0; }
.nav.scrolled .nav-logo .logo-dark { opacity: 1; }

/* dropdown */
.nav-has-drop { position: relative; }
.nav-drop {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--white); border: 1px solid var(--grey-light); border-radius: 12px;
  padding: 8px; min-width: 248px; box-shadow: 0 16px 40px rgba(0,0,0,0.12);
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: all 0.22s var(--ease);
}
.nav-has-drop:hover .nav-drop { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-drop a {
  display: block; padding: 12px 14px; border-radius: 8px; text-decoration: none;
  color: var(--black); font-size: 14.5px; font-weight: 500; transition: background 0.18s var(--ease);
}
.nav-drop a:hover { background: var(--grey-bg); }
.nav-drop a .d-sub { display: block; font-size: 12.5px; color: var(--grey); font-weight: 400; margin-top: 2px; }

/* mobile nav */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: currentColor; margin: 5px 0; transition: 0.25s var(--ease); }
.nav.over-hero .nav-toggle { color: var(--white); }
.nav.scrolled .nav-toggle { color: var(--black); }
@media (max-width: 940px) {
  .nav-menu { display: none; }
  .nav-toggle { display: block; }
}
.mobile-menu {
  position: fixed; inset: 0; z-index: 99; background: var(--white);
  display: flex; flex-direction: column; justify-content: center; gap: 6px;
  padding: var(--gutter); transform: translateX(100%);
  transition: transform 0.4s var(--ease);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  font-family: var(--serif); font-size: 30px; color: var(--black); text-decoration: none;
  padding: 12px 0; border-bottom: 1px solid var(--grey-light);
}
.mobile-menu .btn { margin-top: 24px; align-self: flex-start; }

/* ============ HERO ============ */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  color: var(--white); overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media video, .hero-media img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(26,26,27,0.55) 0%, rgba(26,26,27,0.45) 45%, rgba(26,26,27,0.82) 100%);
}
.hero-content { position: relative; z-index: 2; width: 100%; padding-top: 80px; padding-bottom: 60px; }
.hero h1 { max-width: 16ch; }
.hero .lead { color: rgba(255,255,255,0.86); max-width: 52ch; margin-top: 30px; }
.hero-actions { margin-top: 44px; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.hero-cta-note { font-size: 13.5px; color: rgba(255,255,255,0.66); }
.hero-scroll {
  position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%); z-index: 2;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.6);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.hero-scroll .line { width: 1px; height: 44px; background: rgba(255,255,255,0.4); animation: scrollLine 2.2s var(--ease) infinite; }
@keyframes scrollLine { 0%,100% { transform: scaleY(0.3); transform-origin: top; } 50% { transform: scaleY(1); } }

/* ============ HERO (interior pages — shorter) ============ */
.hero-sm {
  position: relative; padding: 190px 0 clamp(70px,9vw,120px);
  background: var(--ink); color: var(--white); overflow: hidden;
}
.hero-sm .eyebrow { color: var(--orange-light); }
.hero-sm h1 { max-width: 20ch; }
.hero-sm .lead { color: rgba(255,255,255,0.82); margin-top: 26px; max-width: 56ch; }
.hero-sm-bg {
  position: absolute; inset: 0; z-index: 0; opacity: 0.28;
  background-size: cover; background-position: center;
}
.hero-sm .wrap { position: relative; z-index: 1; }

/* ============ IMAGE PLACEHOLDER ============ */
.imgslot {
  position: relative; background: var(--grey-bg);
  border: 1px dashed rgba(244,137,64,0.45); border-radius: 6px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 30px; color: var(--grey); overflow: hidden;
}
.imgslot::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(135deg, transparent 47%, rgba(244,137,64,0.06) 48%, rgba(244,137,64,0.06) 52%, transparent 53%);
  background-size: 28px 28px;
}
.imgslot > * { position: relative; }
.imgslot .tag {
  font-family: var(--mono); font-size: 10px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--white); background: var(--orange);
  padding: 4px 10px; border-radius: 999px; margin-bottom: 14px;
}
.imgslot .ttl { font-family: var(--serif); font-style: italic; font-size: 17px; color: var(--black); margin-bottom: 6px; }
.imgslot .spec { font-size: 12px; line-height: 1.5; max-width: 320px; }
.imgslot.ratio-21-9 { aspect-ratio: 21/9; }
.imgslot.ratio-16-9 { aspect-ratio: 16/9; }
.imgslot.ratio-4-3  { aspect-ratio: 4/3; }
.imgslot.ratio-1-1  { aspect-ratio: 1/1; }
.imgslot.fill { position: absolute; inset: 0; border-radius: 0; }

/* ============ PARALLAX BAND ============ */
.parallax {
  position: relative; color: var(--white); overflow: hidden;
  padding: clamp(110px, 16vw, 220px) 0;
}
.parallax-bg {
  position: absolute; inset: -12% 0; z-index: 0;
  background-size: cover; background-position: center;
  will-change: transform;
}
.parallax-overlay { position: absolute; inset: 0; z-index: 1; background: rgba(26,26,27,0.72); }
.parallax .wrap { position: relative; z-index: 2; }

/* ============ GRIDS ============ */
.split { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(36px,5vw,90px); align-items: start; }
.split.center { align-items: center; }
.split.even { grid-template-columns: 1fr 1fr; }
@media (max-width: 860px) { .split, .split.even { grid-template-columns: 1fr; gap: 40px; } }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 980px) { .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* ============ VALUE CARDS ============ */
.vcard {
  padding: 36px 30px; border: 1px solid var(--grey-light); border-radius: 14px;
  background: var(--white); transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.vcard:hover { transform: translateY(-4px); border-color: var(--orange); box-shadow: 0 18px 40px rgba(0,0,0,0.07); }
.vcard .vnum {
  font-family: var(--serif); font-style: italic; font-size: 30px; color: var(--orange); display: block; margin-bottom: 16px;
}
.vcard h3 { margin-bottom: 12px; }
.vcard p { font-size: 15px; line-height: 1.62; color: var(--grey); }

/* ============ STEP / PLAN ============ */
.steps { display: grid; gap: 1px; background: var(--grey-light); border-block: 1px solid var(--grey-light); }
.step {
  background: var(--white); padding: 38px 0; display: grid;
  grid-template-columns: 92px 1fr 1.6fr; gap: 34px; align-items: start;
}
.step .snum { font-family: var(--serif); font-style: italic; font-size: 44px; color: var(--orange); line-height: 1; }
.step h3 { padding-top: 4px; }
.step p { font-size: 15.5px; line-height: 1.65; color: var(--grey); }
@media (max-width: 740px) {
  .step { grid-template-columns: 64px 1fr; gap: 16px 20px; }
  .step p { grid-column: 1 / -1; }
}

/* ============ FOUNDERS ============ */
.founders { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
@media (max-width: 980px) { .founders { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .founders { grid-template-columns: 1fr; } }
.founder .portrait {
  width: 100%; aspect-ratio: 4/5; border-radius: 12px; overflow: hidden;
  background: var(--grey-light); margin-bottom: 20px;
}
.founder .portrait img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.04); transition: filter 0.5s var(--ease); }
.founder:hover .portrait img { filter: grayscale(0) contrast(1); }
.founder .role {
  font-family: var(--sans); font-size: 11px; font-weight: 700; letter-spacing: 0.13em;
  text-transform: uppercase; color: var(--orange); margin-bottom: 7px;
}
.founder .fname { font-family: var(--serif); font-size: 25px; margin-bottom: 12px; }
.founder p { font-size: 14px; line-height: 1.6; color: var(--grey); }

/* ============ STAGES ============ */
.stage {
  border: 1px solid var(--grey-light); border-radius: 14px; overflow: hidden;
  background: var(--white); transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.stage:hover { transform: translateY(-4px); box-shadow: 0 18px 38px rgba(0,0,0,0.08); }
.stage .stage-img { aspect-ratio: 3/2; background: var(--ink); display: flex; align-items: center; justify-content: center; }
.stage .stage-img img { width: 100%; height: 100%; object-fit: contain; padding: 30px; }
.stage .stage-body { padding: 24px 22px 28px; }
.stage .stage-tag {
  font-family: var(--sans); font-size: 11px; font-weight: 700; letter-spacing: 0.13em;
  text-transform: uppercase; color: var(--orange); margin-bottom: 8px;
}
.stage h3 { font-size: 21px; margin-bottom: 8px; }
.stage p { font-size: 14px; color: var(--grey); }

/* ============ TESTIMONIALS ============ */
.tcard {
  border: 1px solid var(--grey-light); border-radius: 14px; padding: 32px 28px;
  background: var(--white); display: flex; flex-direction: column; gap: 16px;
}
.tcard .stars { color: var(--cta); letter-spacing: 2px; font-size: 14px; }
.tcard .quote { font-family: var(--serif); font-size: 19px; line-height: 1.4; color: var(--black); }
.tcard .who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.tcard .who img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.tcard .who .wname { font-weight: 700; font-size: 14px; }

/* ============ CTA BLOCK ============ */
.cta-band {
  background: var(--ink); color: var(--white); text-align: center;
  padding: clamp(80px, 12vw, 150px) 0; position: relative; overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; width: 540px; height: 540px; border-radius: 50%;
  background: radial-gradient(circle, rgba(244,137,64,0.28) 0%, transparent 70%);
  top: -180px; right: -120px; filter: blur(40px);
}
.cta-band .wrap-narrow { position: relative; z-index: 1; }
.cta-band h2 { margin-bottom: 22px; }
.cta-band p { color: rgba(255,255,255,0.78); max-width: 48ch; margin: 0 auto 38px; font-size: 18px; }

/* ============ MANIFESTO ============ */
.manifesto-quote {
  font-family: var(--serif); font-style: italic; font-size: clamp(26px, 3.6vw, 44px);
  line-height: 1.22; letter-spacing: -0.015em; text-align: center; max-width: 22ch; margin: 0 auto;
}
.manifesto-quote .accent { color: var(--orange-light); }

/* ============ FOOTER ============ */
.footer { background: var(--ink); color: rgba(255,255,255,0.62); padding: 80px 0 40px; }
.footer-top { display: grid; grid-template-columns: 1.8fr 1fr 1fr; gap: 56px; }
@media (max-width: 820px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 480px) { .footer-top { grid-template-columns: 1fr; } }
.footer-brand img { height: 30px; filter: brightness(0) invert(1); margin-bottom: 18px; }
.footer-brand .tag { font-family: var(--serif); font-style: italic; color: var(--orange-light); font-size: 17px; }
.footer-col h4 {
  font-family: var(--sans); font-size: 12px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--white); margin-bottom: 18px;
}
.footer-col a, .footer-col span {
  display: block; font-size: 14px; color: rgba(255,255,255,0.62); text-decoration: none;
  margin-bottom: 11px; transition: color 0.2s var(--ease);
}
.footer-col a:hover { color: var(--cta); }
.footer-bottom {
  margin-top: 64px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap;
  font-size: 12.5px; color: rgba(255,255,255,0.45);
}
.footer-legal a { color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.2s var(--ease); }
.footer-legal a:hover { color: var(--cta); }

/* ============ SCROLL ANIMATIONS ============ */
/* Content is VISIBLE by default. The hidden/animated state only activates
   once JS confirms it is alive (html.reveal-on). If JS never runs, text stays
   visible — no blank page. A head-script failsafe also force-reveals if app.js fails. */
.reveal { opacity: 1; transform: none; }
html.reveal-on .reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out); }
html.reveal-on .reveal.in { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }
@media (prefers-reduced-motion: reduce) {
  html.reveal-on .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .hero-scroll .line { animation: none; }
}

/* ============ UTILITIES ============ */
.center { text-align: center; }
.mt-s { margin-top: 18px; } .mt-m { margin-top: 32px; } .mt-l { margin-top: 52px; }
.mb-m { margin-bottom: 32px; } .mb-l { margin-bottom: 52px; }
.maxw-prose { max-width: 60ch; }
.section-head { max-width: 760px; margin-bottom: clamp(44px, 6vw, 72px); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.on-dark { color: var(--white); }
.on-dark .lead, .on-dark .body { color: rgba(255,255,255,0.78); }
.on-dark .body strong { color: var(--white); }
.bg-grey { background: var(--grey-bg); }
.bg-ink { background: var(--ink); color: var(--white); }

/* dev badge */
.devbadge {
  position: fixed; bottom: 18px; left: 18px; z-index: 200;
  background: var(--ink); color: var(--white); font-family: var(--sans);
  font-size: 10.5px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 7px 13px; border-radius: 999px; box-shadow: 0 4px 14px rgba(0,0,0,0.2);
}
.devbadge .dot { display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--cta); margin-right: 7px; vertical-align: middle; }


/* ===== mobile hero fix — CTA sizing + scroll-cue overlap ===== */
@media (max-width: 680px) {
  .hero-scroll { display: none; }
  .hero-content { padding-top: 64px; padding-bottom: 54px; }
  .hero h1 { max-width: 100%; }
  .hero-actions { gap: 14px; margin-top: 30px; }
  .hero .btn-cta.lg { font-size: 14.5px; padding: 15px 26px; }
  .hero-cta-note { font-size: 12.5px; }
}

/* ===== orange gradient bands — deck look (home brand moments) ===== */
.grad-band, .cta-band.grad {
  background:
    radial-gradient(58% 76% at 23% 16%, rgba(234,91,69,0.55) 0%, rgba(234,91,69,0) 62%),
    linear-gradient(135deg, #EE6F2B 0%, #F48940 52%, #F89A4B 100%);
}
.grad-band {
  position: relative; overflow: hidden; color: var(--ink);
  padding: clamp(104px, 15vw, 190px) 0;
}
.grad-band .wrap { position: relative; z-index: 1; }
.grad-band .manifesto-quote { color: var(--ink); }
.grad-band .manifesto-quote .accent { color: var(--white); }
.cta-band.grad { color: var(--ink); }
.cta-band.grad::before { display: none; }
.cta-band.grad p { color: rgba(26,26,27,0.82); }
.cta-band.grad .accent { color: var(--white); }
.cta-band.grad .btn-cta, .grad-band .btn-cta { box-shadow: 0 10px 26px rgba(26,26,27,0.22); }

/* ============================================================
   PREMIUM UPGRADES — v4 polish pass
   ============================================================ */

/* ---- Site-wide grain texture (subtle premium feel) ---- */
.grain { position: relative; }
.grain::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.55 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: 0.07; mix-blend-mode: multiply;
}
.grain-light::after { mix-blend-mode: screen; opacity: 0.05; }

/* ---- Hero authority strip (stat row under CTA) ---- */
.hero-trust {
  margin-top: 38px; padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,0.16);
  display: flex; flex-wrap: wrap; gap: clamp(22px, 4vw, 56px); align-items: center;
  max-width: 640px;
}
.hero-trust .ts {
  display: flex; flex-direction: column; gap: 4px;
  font-family: var(--sans); color: rgba(255,255,255,0.92);
}
.hero-trust .ts .n {
  font-family: var(--serif); font-style: italic; font-size: clamp(26px, 3vw, 36px);
  font-weight: 500; color: var(--orange-light); line-height: 1; letter-spacing: -0.01em;
}
.hero-trust .ts .l {
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.62);
}
@media (max-width: 680px) {
  .hero-trust { margin-top: 28px; padding-top: 20px; gap: 22px; }
  .hero-trust .ts .n { font-size: 22px; }
  .hero-trust .ts .l { font-size: 10px; }
}

/* ---- Section 01 mega-figure layout ---- */
.dx-section {
  display: grid; grid-template-columns: 0.32fr 1fr; gap: clamp(28px, 5vw, 80px);
  align-items: start;
}
@media (max-width: 880px) { .dx-section { grid-template-columns: 1fr; gap: 28px; } }
.dx-figure {
  font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: clamp(120px, 18vw, 220px); line-height: 0.9;
  color: var(--orange); letter-spacing: -0.04em;
  position: relative; padding-left: 28px;
}
.dx-figure::before {
  content: ""; position: absolute; left: 0; top: 8%; bottom: 6%;
  width: 2px; background: linear-gradient(180deg, var(--orange) 0%, transparent 100%);
}
.dx-figure .dx-tag {
  display: block; font-family: var(--sans); font-style: normal;
  font-size: 11px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--orange); margin-top: 18px; line-height: 1.4;
}
@media (max-width: 880px) { .dx-figure { font-size: 88px; padding-left: 18px; } }

/* ---- Cost-tags (chips) for Sección 01 ---- */
.cost-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.cost-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 16px; background: rgba(244,137,64,0.07);
  border: 1px solid rgba(244,137,64,0.28); border-radius: 999px;
  font-family: var(--sans); font-size: 13.5px; font-weight: 500; color: var(--black);
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease);
}
.cost-tag::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--orange);
  flex-shrink: 0;
}
.cost-tag:hover { background: rgba(244,137,64,0.13); border-color: var(--orange); }

/* ---- Full-bleed Manifesto v2 (display moment) ---- */
.manifesto-fullbleed {
  position: relative; overflow: hidden;
  padding: clamp(110px, 16vw, 200px) 0;
  background: var(--ink);
  color: var(--white);
}
.manifesto-fullbleed::before {
  content: ""; position: absolute; inset: -10% -5%;
  background:
    radial-gradient(45% 60% at 20% 30%, rgba(244,137,64,0.32) 0%, transparent 60%),
    radial-gradient(40% 55% at 82% 70%, rgba(234,91,69,0.22) 0%, transparent 65%);
  filter: blur(60px);
  animation: ambientShift 18s ease-in-out infinite alternate;
}
.manifesto-fullbleed::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.5 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: 0.05; mix-blend-mode: overlay;
}
@keyframes ambientShift {
  0% { transform: translate(0,0) scale(1); }
  100% { transform: translate(3%,-2%) scale(1.06); }
}
.manifesto-fullbleed .wrap { position: relative; z-index: 2; }
.manifesto-fullbleed .mf-eyebrow {
  display: inline-block; font-family: var(--sans); font-size: 11px; font-weight: 700;
  letter-spacing: 0.32em; text-transform: uppercase; color: var(--orange-light);
  margin-bottom: 38px; padding: 7px 16px; border: 1px solid rgba(255,161,75,0.4);
  border-radius: 999px;
}
.manifesto-fullbleed .mf-quote {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(34px, 5.6vw, 78px); line-height: 1.08;
  letter-spacing: -0.025em; color: var(--white);
  max-width: 24ch; margin: 0 auto;
  font-variation-settings: "opsz" 120;
}
.manifesto-fullbleed .mf-quote .accent {
  color: var(--orange-light); font-style: italic;
  background: linear-gradient(90deg, var(--orange-light) 0%, #FFD699 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.manifesto-fullbleed .mf-attr {
  margin-top: 44px; font-family: var(--sans); font-size: 12px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.55);
}
.manifesto-fullbleed .mf-attr .dash { display: inline-block; width: 28px; height: 1px; background: rgba(255,255,255,0.4); vertical-align: middle; margin-right: 12px; }

/* ---- Refined Pilar cards (premium hover, accent rail) ---- */
.pilar-card {
  position: relative; display: flex; flex-direction: column;
  padding: 38px 30px 32px; border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.045) 0%, rgba(255,255,255,0.015) 100%);
  border: 1px solid rgba(255,255,255,0.10);
  transition: transform 0.5s var(--ease), border-color 0.4s var(--ease), background 0.4s var(--ease);
  overflow: hidden;
}
.pilar-card::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(180deg, var(--orange) 0%, transparent 100%);
  opacity: 0; transition: opacity 0.4s var(--ease);
}
.pilar-card:hover {
  transform: translateY(-6px); border-color: rgba(255,161,75,0.4);
  background: linear-gradient(180deg, rgba(255,161,75,0.06) 0%, rgba(255,255,255,0.02) 100%);
}
.pilar-card:hover::before { opacity: 1; }
.pilar-card .pn {
  font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: 44px; line-height: 1; color: var(--orange-light);
  margin-bottom: 18px; letter-spacing: -0.03em;
}
.pilar-card .ptag {
  display: inline-block; font-family: var(--sans); font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--orange-light);
  margin-bottom: 14px; padding-bottom: 12px; border-bottom: 1px solid rgba(255,161,75,0.22);
  align-self: flex-start;
}
.pilar-card h3.pttl {
  font-family: var(--serif); font-size: 30px; font-weight: 500; font-style: italic;
  line-height: 1.15; letter-spacing: -0.015em; color: var(--white); margin-bottom: 16px;
}
.pilar-card .pbody {
  font-size: 15px; line-height: 1.62; color: rgba(255,255,255,0.74); margin: 0 0 24px;
}
.pilar-card .poutcome {
  margin-top: auto; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.10);
  display: flex; gap: 12px; align-items: flex-start;
}
.pilar-card .poutcome .arrow {
  flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%;
  border: 1.5px solid var(--orange-light); display: flex; align-items: center; justify-content: center;
  color: var(--orange-light); font-size: 11px; font-weight: 700;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.pilar-card:hover .poutcome .arrow { background: var(--orange-light); color: var(--ink); }
.pilar-card .poutcome p {
  font-family: var(--serif); font-style: italic; font-size: 14.5px; line-height: 1.5;
  color: rgba(255,255,255,0.92); margin: 0;
}

/* ---- Asymmetric Stakes layout ---- */
.stakes-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(20px, 3vw, 36px); align-items: stretch; }
@media (max-width: 820px) { .stakes-grid { grid-template-columns: 1fr; } }
.stake {
  padding: 38px 32px; border-radius: 18px; display: flex; flex-direction: column;
  transition: transform 0.4s var(--ease);
}
.stake-solo {
  background: var(--grey-bg); border: 1px solid var(--grey-light); color: var(--grey);
}
.stake-comu {
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, #FFFAF4 0%, var(--white) 100%);
  border: 1.5px solid var(--orange);
  box-shadow: 0 24px 56px rgba(244,137,64,0.14);
}
.stake-comu::before {
  content: ""; position: absolute; top: -80px; right: -80px; width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(244,137,64,0.18) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.stake .stake-eye {
  font-family: var(--sans); font-size: 11px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase; margin-bottom: 22px;
  display: flex; align-items: center; gap: 10px;
}
.stake .stake-eye::before { content: ""; width: 22px; height: 1.5px; background: currentColor; }
.stake-solo .stake-eye { color: var(--grey); }
.stake-comu .stake-eye { color: var(--orange); }
.stake .stake-h {
  font-family: var(--serif); font-style: italic; font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.2; letter-spacing: -0.015em; margin-bottom: 22px;
  color: inherit;
}
.stake-comu .stake-h { color: var(--black); }
.stake ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; position: relative; z-index: 1; }
.stake ul li {
  font-family: var(--sans); font-size: 15px; line-height: 1.55;
  display: flex; gap: 12px; align-items: flex-start;
}
.stake-solo ul li::before {
  content: ""; flex-shrink: 0; width: 16px; height: 1.5px; background: var(--grey);
  margin-top: 11px;
}
.stake-comu ul li::before {
  content: "✓"; flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%;
  background: var(--orange); color: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; margin-top: 1px;
}
.stake-comu ul li { color: var(--black); }

/* ---- Refined monogram avatars ---- */
.tmono {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--white); border: 1.5px solid var(--orange);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: 19px; color: var(--orange); flex-shrink: 0;
  letter-spacing: -0.02em;
}

/* ---- Testimonial card lift ---- */
.tcard-v2 {
  position: relative; padding: 34px 30px 30px; background: var(--white);
  border: 1px solid var(--grey-light); border-radius: 16px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.tcard-v2:hover {
  transform: translateY(-6px); border-color: rgba(244,137,64,0.5);
  box-shadow: 0 24px 48px rgba(0,0,0,0.08);
}
.tcard-v2 .tq {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: 64px; line-height: 0.6; color: var(--orange);
  position: absolute; top: 22px; left: 28px; opacity: 0.45;
}
.tcard-v2 .tbody {
  font-family: var(--serif); font-style: italic; font-size: 16.5px;
  line-height: 1.55; color: var(--black); margin: 32px 0 24px;
}
.tcard-v2 .twho { display: flex; align-items: center; gap: 14px; }
.tcard-v2 .twho .tname {
  font-family: var(--sans); font-size: 13px; font-weight: 700;
  letter-spacing: 0.04em; color: var(--black); margin-bottom: 3px;
}
.tcard-v2 .twho .trole {
  font-family: var(--sans); font-size: 12.5px; color: var(--grey);
}

/* ---- Founders portrait — square, slightly raised on hover ---- */
.founder .portrait { transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease); }
.founder:hover .portrait { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.10); }

/* ---- Hero overlay polish + scroll cue subtle ---- */
.hero-overlay {
  background:
    linear-gradient(180deg, rgba(26,26,27,0.55) 0%, rgba(26,26,27,0.28) 40%, rgba(26,26,27,0.62) 100%),
    linear-gradient(120deg, rgba(26,26,27,0.45) 0%, rgba(26,26,27,0.18) 60%);
}

/* ---- Section eyebrow with gold rule (for premium polish) ---- */
.sec-marker {
  display: inline-flex; align-items: center; gap: 12px; margin-bottom: 22px;
  font-family: var(--sans); font-size: 11.5px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--orange);
}
.sec-marker::before { content: ""; width: 28px; height: 1.5px; background: var(--orange); }
.sec-marker.on-dark { color: var(--orange-light); }
.sec-marker.on-dark::before { background: var(--orange-light); }

/* ---- Closing CTA refined ---- */
.cta-close {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--serif); font-style: italic; font-size: 17px;
  color: var(--ink); margin-top: 28px; opacity: 0.86;
}
.cta-close::before, .cta-close::after { content: ""; width: 24px; height: 1px; background: rgba(26,26,27,0.34); }

/* ============================================================
   RESTART — Editorial rhythm pass · v5
   Goals: edge-to-edge, real rhythm, fun to read
   ============================================================ */

/* ---- Editorial Section 01 (full-width, wide spread, 2-col rhythm) ---- */
.edx {
  padding: clamp(96px, 12vw, 180px) 0 clamp(80px, 10vw, 140px);
  position: relative; overflow: hidden;
}
.edx-head {
  display: grid; grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(32px, 5vw, 80px); align-items: end;
  margin-bottom: clamp(48px, 6vw, 80px);
}
@media (max-width: 880px) { .edx-head { grid-template-columns: 1fr; gap: 28px; } }
.edx-eye {
  display: flex; align-items: center; gap: 18px;
  font-family: var(--sans); font-size: 12px; font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--orange);
}
.edx-eye .num {
  font-family: var(--serif); font-style: italic; font-size: 56px;
  font-weight: 500; color: var(--orange); line-height: 1; letter-spacing: -0.03em;
}
.edx-eye .lbl { line-height: 1.4; }
.edx-h {
  font-family: var(--serif); font-size: clamp(40px, 5.6vw, 78px);
  line-height: 1.02; letter-spacing: -0.025em; color: var(--black);
  font-variation-settings: "opsz" 144; max-width: 18ch;
}
.edx-h em.accent { font-style: italic; color: var(--orange); }

.edx-flow {
  columns: 2; column-gap: clamp(40px, 5vw, 72px);
  font-family: var(--sans); font-size: 17.5px; line-height: 1.65;
  color: var(--grey);
}
.edx-flow p { margin: 0 0 18px; break-inside: avoid; }
.edx-flow p:first-child::first-letter {
  font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: 64px; line-height: 0.85; float: left;
  color: var(--orange); margin: 8px 12px 0 -2px;
}
.edx-flow strong { color: var(--black); font-weight: 600; }
.edx-flow .pull {
  font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: clamp(22px, 2.4vw, 30px); line-height: 1.25;
  color: var(--black); break-inside: avoid;
  margin: 8px 0 22px; padding-left: 22px;
  border-left: 3px solid var(--orange);
  letter-spacing: -0.012em;
}
@media (max-width: 760px) {
  .edx-flow { columns: 1; font-size: 16.5px; }
  .edx-flow p:first-child::first-letter { font-size: 52px; }
}

.edx-tags {
  margin-top: clamp(48px, 6vw, 80px);
  padding-top: 32px; border-top: 1px solid var(--grey-light);
  display: flex; flex-wrap: wrap; gap: 14px 22px; align-items: baseline;
}
.edx-tags .tlbl {
  font-family: var(--sans); font-size: 11px; font-weight: 700;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--orange);
  margin-right: 12px;
}
.edx-tags .tchip {
  font-family: var(--serif); font-style: italic; font-size: 19px;
  color: var(--black); line-height: 1.3;
}
.edx-tags .tchip:not(:last-of-type)::after {
  content: "·"; margin-left: 22px; color: var(--orange); font-weight: 700;
}

/* ---- Wider grids for full-width feel ---- */
.grid-3-wide { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2.4vw, 32px); }
.grid-4-wide { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(18px, 2vw, 28px); }
@media (max-width: 980px) { .grid-3-wide, .grid-4-wide { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .grid-3-wide, .grid-4-wide { grid-template-columns: 1fr; } }

/* ---- Section header (wider, more dramatic) ---- */
.sec-head-wide {
  display: grid; grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(28px, 4vw, 64px); align-items: end;
  margin-bottom: clamp(56px, 6vw, 80px);
}
@media (max-width: 880px) { .sec-head-wide { grid-template-columns: 1fr; gap: 24px; } }
.sec-head-wide .sec-marker { margin-bottom: 0; align-self: flex-end; }
.sec-head-wide h2 { margin: 0; max-width: 18ch; }

/* ---- Stakes wider + bolder ---- */
.stake { padding: clamp(40px, 4vw, 56px) clamp(32px, 3.5vw, 48px); }
.stake-comu .stake-h { font-size: clamp(26px, 3vw, 36px); }
.stake .stake-h { font-size: clamp(24px, 2.8vw, 32px); }

/* ---- Founders breathable ---- */
.founders { gap: clamp(24px, 3vw, 40px); }

/* ---- Manifesto: tighter padding when needed but keep dramatic ---- */
.manifesto-fullbleed .mf-quote { max-width: 20ch; }
