/* ============================================================
   MulhAIcen v2.0 — Design System  (Template 2 art direction)
   Dark · Sky-Electric glow · Space Grotesk display · real imagery
   ============================================================ */

/* 1. TOKENS ------------------------------------------------- */
:root {
  --bg:            #0B0E14;
  --bg-2:          #0D1117;
  --surface:       #12161F;
  --surface-2:     #171C28;
  --accent:        #00AAFF;
  --accent-soft:   #4FC3FF;
  --accent-press:  #0090DB;
  --accent-ink:    #04121C;
  --text:          #F4F8FD;
  --text-2:        #A4AEBE;
  --text-3:        #6B7585;
  --border:        rgba(255,255,255,.08);
  --border-2:      rgba(255,255,255,.14);
  --border-accent: rgba(0,170,255,.45);
  --glow:          rgba(0,140,235,.45);

  --f-display: 'Space Grotesk', sans-serif;
  --f-body:    'Inter', sans-serif;
  --f-mono:    'JetBrains Mono', monospace;

  --ease: cubic-bezier(.2,.65,.2,1);
  --dur:  170ms;
  --dur-slow: 260ms;

  --container: 1180px;
  --gutter: clamp(1.15rem, 3vw, 1.75rem);
  --py: clamp(4.5rem, 8vw, 7.5rem);
  --nav-h: 72px;

  --r-pill: 999px;
  --r-card: 16px;
  --r-inner: 12px;
}

/* 2. RESET -------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
body {
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: var(--f-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
ul, ol { list-style: none; }

/* 3. SHARED ------------------------------------------------- */
.container { max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }

h1, h2, h3 {
  font-family: var(--f-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.serif {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
}
.txt-accent { color: var(--accent); font-weight: 600; }

.eyebrow {
  font-family: var(--f-mono);
  font-size: .8125rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent-soft);
}

.section-head { margin-bottom: clamp(2.5rem, 5vw, 3.75rem); max-width: 720px; }
.section-head .eyebrow { display: block; margin-bottom: 1rem; }
.section-head h2 { font-size: clamp(2rem, 3.6vw, 3rem); }
.section-head__sub { color: var(--text-2); font-size: 1.125rem; line-height: 1.7; margin-top: 1.25rem; max-width: 620px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .section-head__sub { margin-inline: auto; }

/* 4. BUTTONS ------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .8125rem 1.5rem;
  border-radius: var(--r-pill);
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  white-space: nowrap;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease),
              color var(--dur) var(--ease), transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.btn--lg { padding: 1rem 1.875rem; font-size: 1.0625rem; }
.btn--sm { padding: .625rem 1.125rem; font-size: .9375rem; }
.btn--primary {
  background: var(--accent);
  color: var(--accent-ink);
  box-shadow: 0 6px 24px -8px var(--glow);
}
.btn--primary:hover {
  background: var(--accent-soft);
  transform: translateY(-2px);
  box-shadow: 0 12px 34px -8px var(--glow);
}
.btn--ghost {
  background: rgba(255,255,255,.03);
  color: var(--text);
  border: 1px solid var(--border-2);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover { border-color: var(--border-accent); background: rgba(0,170,255,.08); transform: translateY(-2px); }

/* 5. NAV ---------------------------------------------------- */
.nav {
  position: fixed; inset: 0 0 auto 0;
  z-index: 100; height: var(--nav-h);
  display: flex; align-items: center;
  border-bottom: 1px solid transparent;
  transition: background var(--dur-slow) var(--ease), border-color var(--dur-slow) var(--ease);
}
.nav--solid {
  background: rgba(11,14,20,.82);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border-bottom-color: var(--border);
}
/* The open mobile menu is `position: fixed` INSIDE .nav, and a backdrop-filter
   makes its element the containing block for fixed descendants. With the nav
   scrolled (.nav--solid) the menu therefore sized itself to the 72px bar
   instead of the viewport, dumping the links on top of the page. Dropping the
   blur while the menu is open restores the viewport as the containing block.
   Must stay after .nav--solid — same specificity, source order decides. */
.nav--menu-open {
  background: var(--bg);
  backdrop-filter: none; -webkit-backdrop-filter: none;
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: var(--gutter); }
.nav__logo {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--f-display); font-weight: 700; font-size: 1.1875rem;
  letter-spacing: -0.02em; line-height: 1;
}
.nav__mark { width: 24px; height: 24px; }
.nav__logo .ai { color: var(--accent); }
.nav__links { display: flex; align-items: center; gap: 2.25rem; }
.nav__links a:not(.btn) { font-size: .9688rem; color: var(--text-2); transition: color var(--dur) var(--ease); }
.nav__links a:not(.btn):hover { color: var(--text); }
.nav__burger { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 40px; height: 40px; }
.nav__burger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all var(--dur) var(--ease); transform-origin: center; }
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* 6. HERO --------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  text-align: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; pointer-events: none; }
/* Contained preview — the film keeps its full 16:9 frame so its own captions
   stay readable and never collide with the hero copy. */
.hero__media { position: relative; }
.hero__frame { position: relative; }

/* Teaser: sits over the poster until the preview starts */
.hero__teaser {
  position: absolute; inset: 0;
  z-index: 2;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 1rem;
  width: 100%;
  padding: 1.5rem;
  border: 0;
  border-radius: var(--r-card);
  background: linear-gradient(180deg, rgba(6,8,12,.20) 0%, rgba(6,8,12,.48) 100%);
  cursor: pointer;
  transition: background var(--dur-slow) var(--ease);
}
.hero__teaser:hover { background: linear-gradient(180deg, rgba(6,8,12,.12) 0%, rgba(6,8,12,.4) 100%); }
.hero__teaser:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.hero__teaser-meta {
  display: flex; align-items: center; gap: .6rem;
  font-family: var(--f-body); font-size: .8125rem; font-weight: 500;
  color: var(--text);
  text-shadow: 0 1px 6px rgba(0,0,0,.6);
}
.hero__teaser-meta i {
  width: 3px; height: 3px; border-radius: 50%;
  background: currentColor; opacity: .55;
}
/* In flow, not absolute: with the <video> gone this is what gives the frame
   its height, and the play overlay positions against it. */
.hero__thumb {
  display: block;
  width: 100%;
  /* height:auto is required — the height="720" attribute is a presentational
     hint that otherwise wins and defeats the aspect-ratio */
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--r-card);
  border: 1px solid var(--border-2);
  background: #06080c;
  box-shadow: 0 24px 60px -20px rgba(0,0,0,.8);
}
.hero__teaser-play {
  display: grid; place-items: center;
  width: 60px; height: 60px; flex: 0 0 60px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-ink);
  box-shadow: 0 10px 34px -8px var(--glow);
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease);
}
.hero__teaser-play svg { width: 20px; height: 20px; margin-left: 2px; }
.hero__teaser:hover .hero__teaser-play { transform: scale(1.07); background: var(--accent-soft); }


/* Instruction, and only where it means anything — shown at the mobile breakpoint */
.hero__rotate {
  display: none;
  align-items: center; justify-content: center; gap: .45rem;
  margin-top: .85rem;
  font-size: .8125rem; line-height: 1.3;
  color: var(--text-3);
}
.hero__rotate svg { width: 15px; height: 15px; flex: 0 0 15px; }
.hero__glow {
  position: absolute;
  left: 50%; top: 56%;
  width: min(120vw, 1100px); height: min(120vw, 1100px);
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, var(--glow) 0%, rgba(0,140,235,.12) 36%, transparent 64%);
  filter: blur(10px);
}
.hero__fade {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% 38%, rgba(11,14,20,.55), transparent 70%),
    linear-gradient(to bottom, rgba(11,14,20,.35) 0%, transparent 25%, transparent 70%, var(--bg) 100%);
}
.hero__inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.12fr);
  grid-template-areas:
    "h1   media"
    "sub  media"
    "ctas media"
    "note media";
  align-content: center;
  column-gap: clamp(2rem, 3vw, 2.75rem);
  row-gap: 1.5rem;
  padding-block: 5rem;
  text-align: left;
}
/* row-gap owns the vertical rhythm now, so drop the stacked margins */
.hero__h1 { grid-area: h1; margin-bottom: 0; }
.hero__sub { grid-area: sub; margin-bottom: 0; }
.hero__ctas { grid-area: ctas; }
.hero__note { grid-area: note; font-size: .9375rem; color: var(--text-3); margin-top: -.25rem; }
.hero__media { grid-area: media; align-self: center; }
.badge {
  display: inline-flex; align-items: center; gap: .65rem;
  padding: .5rem 1rem;
  border: 1px solid var(--border-2);
  border-radius: var(--r-pill);
  background: rgba(255,255,255,.03);
  font-family: var(--f-mono); font-size: .75rem; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase; color: var(--text-2);
  margin-bottom: 2rem;
}
.badge__dot { width: 5px; height: 5px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 8px var(--accent); }
.hero__h1 {
  font-size: clamp(2.6rem, 5.2vw + .5rem, 4.6rem);
  max-width: 16ch;
  margin-bottom: 1.75rem;
}
.hero__serif {
  display: block;
  font-family: var(--f-display); font-style: italic; font-weight: 400;
  letter-spacing: -0.005em;
  color: var(--text);
  margin-top: .12em;
}
.hero__h1-sub {
  display: block;
  font-size: .56em;
  font-weight: 500;
  color: var(--text-2);
  letter-spacing: -.01em;
  margin-top: .25em;
}
.hero__h1-ia {
  color: var(--accent);
  font-style: normal;
  font-weight: 700;
}
.hero__sub {
  font-size: 1.25rem;
  line-height: 1.65;
  color: var(--text-2);
  max-width: 620px;
  margin-bottom: 2.5rem;
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: flex-start; align-items: center; }

/* Play affordance — sits beside the primary CTA, never competes with the H1 */

/* Inline takeover — the hero itself becomes the player */
.hero__player {
  position: absolute; inset: 0;
  z-index: 3;
  display: grid; place-items: center;
  background: rgba(6,8,12,.92);
  opacity: 0; visibility: hidden;
  transition: opacity .6s ease, visibility .6s;
}
.hero__player iframe {
  /* Hold 16:9 and centre it rather than filling the hero: on a tall phone a
     full-bleed iframe left the picture stranded in ~770px of black. Breaking
     the ratio on a short wide window is harmless — YouTube letterboxes
     internally, so the picture is never stretched or cropped. */
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 100%;
  border: 0;
  background: #06080c;
}
.hero__player-close {
  position: absolute;
  top: calc(var(--nav-h) + .75rem); right: 1.25rem;
  z-index: 4;
  display: grid; place-items: center;
  width: 42px; height: 42px;
  border: 1px solid var(--border-2);
  border-radius: 50%;
  background: rgba(13,17,23,.72);
  backdrop-filter: blur(8px);
  color: var(--text);
  cursor: pointer;
  transition: border-color .2s, background .2s;
}
.hero__player-close:hover { border-color: var(--accent); background: rgba(13,17,23,.9); }
.hero__player-close:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.hero__player-close svg { width: 15px; height: 15px; }

.hero.is-playing .hero__inner { opacity: 0; pointer-events: none; }
.hero.is-playing .hero__player { opacity: 1; visibility: visible; }
.hero__inner { transition: opacity .45s ease; }
/* the fixed ridge would draw a line across the playing film */
.hero.is-playing ~ .site-ridge { opacity: 0; }

@media (prefers-reduced-motion: reduce) {
  .hero__player, .hero__inner { transition: none; }
}

/* Mulhacén ridge — brand silhouette, always fixed at viewport bottom */
.site-ridge {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  pointer-events: none;
  transition: opacity .45s ease;
}
.site-ridge svg { display: block; width: 100%; height: auto; }
.site-ridge path {
  fill: none;
  stroke: var(--accent);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: .20;
  filter: drop-shadow(0 0 6px rgba(0,170,255,.35));
}
.peak-label {
  opacity: 0;
  transition: opacity 0.9s ease;
}
.site-ridge.labels-on .peak-label { opacity: .20; }

/* 7. TRUST / BUILT-WITH ------------------------------------ */
.trust { padding-block: clamp(2.5rem, 5vw, 4rem); border-bottom: 1px solid var(--border); }
.trust__label {
  text-align: center; font-family: var(--f-mono); font-size: .75rem; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase; color: var(--text-3); margin-bottom: 2rem;
}
.trust__logos {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: clamp(2rem, 5vw, 4rem);
}
.trust__logos img {
  height: 26px; width: auto;
  filter: grayscale(1) brightness(1.6); opacity: .5;
  transition: filter var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.trust__logos img:hover { filter: none; opacity: 1; }

/* 8. CASES -------------------------------------------------- */
.cases { padding-block: var(--py); }
.cases__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.case-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 1.875rem;
  display: flex; flex-direction: column; gap: 1rem;
  overflow: hidden;
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease), background var(--dur) var(--ease);
}
.case-card::after {
  content: ''; position: absolute; inset: 0 0 auto 0; height: 1px;
  background: var(--accent);
  opacity: 0; transition: opacity var(--dur-slow) var(--ease);
}
.case-card:hover { transform: translateY(-4px); border-color: var(--border-2); background: var(--surface-2); }
.case-card:hover::after { opacity: .7; }
.case-card__icon {
  width: 48px; height: 48px; border-radius: var(--r-inner);
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,170,255,.10); border: 1px solid var(--border-accent);
  color: var(--accent-soft);
}
.case-card__icon svg { width: 24px; height: 24px; }
.case-card__sector {
  font-family: var(--f-mono); font-size: .6875rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase; color: var(--accent-soft);
}
.case-card__title { font-size: 1.375rem; font-weight: 600; }
.case-card__desc { font-size: 1rem; color: var(--text-2); line-height: 1.6; flex: 1; }
.case-card__result {
  font-family: var(--f-display); font-size: 1.5rem; font-weight: 600; letter-spacing: -0.02em;
  padding-top: 1.125rem; border-top: 1px solid var(--border); line-height: 1.15;
}
.case-card__result-sub {
  display: block; margin-top: .4rem;
  font-family: var(--f-body); font-size: .8125rem; font-weight: 400; color: var(--text-2); letter-spacing: 0; line-height: 1.5;
}
.case-card__actions { display: flex; align-items: center; justify-content: space-between; gap: .75rem; flex-wrap: wrap; margin-top: .25rem; }
.case-card__video {
  display: inline-flex; align-items: center; gap: .45rem;
  font-size: .8125rem; font-weight: 500; color: var(--text-2);
  padding: .5rem .85rem; border: 1px solid var(--border-2); border-radius: var(--r-pill);
  transition: border-color var(--dur) var(--ease), color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.case-card__video svg { width: 11px; height: 11px; color: var(--accent); flex-shrink: 0; }
.case-card__video:hover { border-color: var(--border-accent); color: var(--text); background: rgba(0,170,255,.08); }
.case-card__cta {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .875rem; font-weight: 600; color: var(--accent-soft);
  transition: gap var(--dur) var(--ease);
}
.case-card__cta svg { width: 12px; height: 12px; transition: transform var(--dur) var(--ease); }
.case-card:hover .case-card__cta svg { transform: translateX(3px); }

/* 9. WHY US ------------------------------------------------- */
.why { padding-block: var(--py); border-top: 1px solid var(--border); }
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.pillar {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-card);
  padding: 2.25rem 2rem; text-align: center;
}
.pillar__icon {
  width: 56px; height: 56px; margin: 0 auto 1.5rem; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,170,255,.10); border: 1px solid var(--border-accent); color: var(--accent-soft);
}
.pillar__icon svg { width: 26px; height: 26px; }
.pillar__title { font-size: 1.25rem; font-weight: 600; margin-bottom: .75rem; }
.pillar__desc { color: var(--text-2); font-size: 1rem; line-height: 1.65; }

/* 10. PROOF / BENEMÉRITO ------------------------------------ */
.proof { padding-block: var(--py); border-top: 1px solid var(--border); }
.proof__inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: center; }
.proof__content .eyebrow { display: block; margin-bottom: 1rem; }
.proof__content h2 { font-size: clamp(1.875rem, 3.2vw, 2.75rem); margin-bottom: 1.5rem; }
.proof__lead { color: var(--text-2); font-size: 1.125rem; line-height: 1.7; margin-bottom: 2rem; }
.proof__metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-bottom: 2rem; }
.metric { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-inner); padding: 1.25rem; }
.metric__num { font-family: var(--f-display); font-size: 1.625rem; font-weight: 700; letter-spacing: -0.02em; line-height: 1; color: var(--text); margin-bottom: .5rem; }
.metric__label { font-size: .8125rem; color: var(--text-2); line-height: 1.45; }
.proof__quote {
  border-left: 2px solid var(--border-accent); padding-left: 1.25rem;
  color: var(--text-2); font-size: 1.0625rem; line-height: 1.6; margin-bottom: 2rem; font-style: italic;
}
.proof__media { display: flex; justify-content: center; }

.phone-frame {
  width: 100%; max-width: 320px; aspect-ratio: 9 / 18;
  background: var(--surface-2);
  border: 1px solid var(--border-2); border-radius: 32px;
  padding: 1rem; position: relative;
  display: flex; flex-direction: column; gap: .75rem;
  box-shadow: 0 30px 70px -30px rgba(0,0,0,.8), 0 0 60px -20px var(--glow);
}
.phone-frame__notch { width: 38%; height: 5px; background: rgba(255,255,255,.14); border-radius: 999px; margin: .25rem auto .5rem; }
.phone-frame__head { display: flex; align-items: center; gap: .65rem; padding: 0 .25rem .75rem; border-bottom: 1px solid var(--border); }
.phone-frame__avatar {
  width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0;
  background: var(--accent); color: var(--accent-ink);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-display); font-weight: 700; font-size: .9375rem;
}
.phone-frame__head strong { display: block; font-size: .875rem; font-weight: 600; }
.phone-frame__head small { font-size: .6875rem; color: var(--accent-soft); }
.phone-frame__chat { display: flex; flex-direction: column; gap: .55rem; padding: .5rem .25rem; flex: 1; }
.chat-bubble { padding: .6rem .8rem; font-size: .8125rem; line-height: 1.45; max-width: 86%; }
.chat-bubble--user { background: var(--surface-2); border: 1px solid var(--border); color: var(--text-2); align-self: flex-end; border-radius: 14px 14px 4px 14px; }
.chat-bubble--bot { background: rgba(0,170,255,.10); border: 1px solid var(--border-accent); color: var(--text); align-self: flex-start; border-radius: 14px 14px 14px 4px; }

/* 11. CAMPO BASE ------------------------------------------- */
.campo-base { padding-block: var(--py); border-top: 1px solid var(--border); }
.campo-base__inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: start; }
.campo-base__content .eyebrow { display: block; margin-bottom: 1rem; }
.campo-base__content h2 { font-size: clamp(1.875rem, 3.2vw, 2.75rem); margin-bottom: 1.5rem; }
.campo-base__content p { color: var(--text-2); font-size: 1.125rem; line-height: 1.7; margin-bottom: 2rem; }
.campo-base__trust {
  display: inline-flex; align-items: center; gap: .75rem;
  font-size: .9375rem; color: var(--text-2); line-height: 1.4;
  border: 1px solid var(--border); border-radius: var(--r-inner); padding: .875rem 1.125rem; margin-bottom: 2rem;
}
.campo-base__trust svg { color: var(--accent); flex-shrink: 0; }
/* Cota de precio — el 200 € marcado como una cota topográfica (vértice geodésico sobre curva de nivel) */
.cota { display: inline-flex; align-items: flex-end; gap: .75rem; position: relative; padding-top: 1.05rem; margin-bottom: 2rem; }
.cota::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; border-top: 1.5px dashed var(--border-accent); }
.cota__num { font-family: var(--f-display); font-weight: 700; font-size: 2.5rem; line-height: .9; color: var(--accent); letter-spacing: -.02em; }
.cota__cur { font-size: 1.25rem; font-weight: 500; vertical-align: super; margin-left: .12em; }
.cota__meta { display: inline-flex; align-items: center; gap: .4rem; padding-bottom: .4rem; }
.cota__tri { color: var(--accent); font-size: .7rem; line-height: 1; }
.cota__tag { font-family: var(--f-mono); font-size: .625rem; letter-spacing: .12em; text-transform: uppercase; color: var(--text-3); }
.phases { display: flex; flex-direction: column; padding-top: .5rem; }
.phase { display: flex; gap: 1.5rem; position: relative; }
.phase:not(:last-child)::after { content: ''; position: absolute; left: 20px; top: 42px; bottom: -8px; width: 1px; background: var(--border); }
.phase__dot {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  border: 1px solid var(--border); background: var(--surface);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-mono); font-size: .625rem; font-weight: 500; color: var(--text-3); letter-spacing: .03em;
}
.phase--active .phase__dot { border-color: var(--border-accent); color: var(--accent-soft); background: rgba(0,170,255,.06); }
.phase__body { padding-bottom: 2.25rem; }
.phase__alt { font-family: var(--f-mono); font-size: .625rem; letter-spacing: .12em; text-transform: uppercase; color: var(--text-3); margin-bottom: .35rem; }
.phase__name { font-family: var(--f-display); font-weight: 600; font-size: 1.0625rem; margin-bottom: .35rem; }
.phase__desc { font-size: .9688rem; color: var(--text-2); line-height: 1.55; }

/* 12. FAQ --------------------------------------------------- */
.faq { padding-block: var(--py); border-top: 1px solid var(--border); }
.faq__list { max-width: 760px; margin-inline: auto; display: flex; flex-direction: column; gap: .875rem; }
.faq__item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-inner); overflow: hidden; transition: border-color var(--dur) var(--ease); }
.faq__item[open] { border-color: var(--border-2); }
.faq__item summary {
  list-style: none; cursor: pointer; padding: 1.25rem 1.5rem;
  font-family: var(--f-display); font-weight: 600; font-size: 1.0625rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+'; font-family: var(--f-body); font-weight: 400; font-size: 1.5rem; color: var(--accent-soft);
  transition: transform var(--dur) var(--ease); flex-shrink: 0; line-height: 1;
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p { padding: 0 1.5rem 1.375rem; color: var(--text-2); font-size: 1rem; line-height: 1.65; }

/* 13. CTA BAND ---------------------------------------------- */
.cta-band { position: relative; padding-block: clamp(5rem, 9vw, 8rem); border-top: 1px solid var(--border); overflow: hidden; text-align: center; }
.cta-band__glow {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
  width: min(110vw, 900px); height: 500px;
  background: radial-gradient(ellipse, var(--glow) 0%, transparent 65%);
  filter: blur(14px); pointer-events: none;
}
.cta-band__inner { position: relative; z-index: 1; max-width: 760px; }
.cta-band h2 { font-size: clamp(2rem, 4.5vw, 3.25rem); margin-bottom: 1.25rem; }
.cta-band p { color: var(--text-2); font-size: 1.1875rem; line-height: 1.65; margin-bottom: 2.25rem; max-width: 600px; margin-inline: auto; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* 14. FOOTER ------------------------------------------------ */
.footer { padding-block: 4.5rem 2.75rem; border-top: 1px solid var(--border); }
.footer__top { display: grid; grid-template-columns: 1fr auto; gap: 4rem; align-items: start; margin-bottom: 3rem; }
.footer__wordmark { font-family: var(--f-display); font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 700; letter-spacing: -0.03em; line-height: 1; margin-bottom: .75rem; }
.footer__wordmark .ai { color: var(--accent); }
.footer__tagline { font-size: 1rem; color: var(--text-2); }
.footer__links { display: flex; flex-direction: column; align-items: flex-end; gap: .875rem; }
.footer__links a { font-size: .9688rem; color: var(--text-2); transition: color var(--dur) var(--ease); }
.footer__links a:hover { color: var(--text); }
.footer__bottom { padding-top: 2rem; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
.footer__legal { font-size: .875rem; color: var(--text-3); }
.footer__loc { font-family: var(--f-mono); font-size: .6875rem; letter-spacing: .1em; text-transform: uppercase; color: var(--text-3); }

/* 15. LIGHTBOX ---------------------------------------------- */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  display: flex; align-items: center; justify-content: center; padding: var(--gutter);
  background: rgba(7,9,14,.88); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  opacity: 0; pointer-events: none; transition: opacity var(--dur-slow) var(--ease);
}
.lightbox.is-open { opacity: 1; pointer-events: auto; }
.lightbox__panel { position: relative; width: min(330px, 86vw); transform: scale(.95); transition: transform var(--dur-slow) var(--ease); }
.lightbox.is-open .lightbox__panel { transform: scale(1); }
.lightbox__frame { aspect-ratio: 9 / 16; background: var(--surface); border: 1px solid var(--border-2); border-radius: var(--r-card); overflow: hidden; display: flex; align-items: center; justify-content: center; }
.lightbox__frame video { width: 100%; height: 100%; object-fit: cover; }
.lightbox__ph { text-align: center; padding: 2rem 1.5rem; color: var(--text-2); }
.lightbox__ph-icon { width: 52px; height: 52px; margin: 0 auto 1rem; border-radius: 50%; border: 1px solid var(--border-accent); display: flex; align-items: center; justify-content: center; color: var(--accent-soft); }
.lightbox__ph-icon svg { width: 18px; height: 18px; margin-left: 2px; }
.lightbox__ph strong { display: block; color: var(--text); font-family: var(--f-display); font-size: 1rem; margin-bottom: .375rem; }
.lightbox__ph span { font-size: .8125rem; line-height: 1.5; }
.lightbox__title { font-family: var(--f-mono); font-size: .6875rem; letter-spacing: .12em; text-transform: uppercase; color: var(--text-2); text-align: center; margin-top: 1rem; }
.lightbox__close { position: absolute; top: -3rem; right: 0; width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; color: var(--text-2); border: 1px solid var(--border-2); border-radius: var(--r-pill); background: var(--surface); transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease); }
.lightbox__close:hover { color: var(--text); border-color: var(--border-accent); }

/* 16. MOBILE ------------------------------------------------ */
@media (max-width: 940px) {
  /* Stack: headline, then the film, then the full paragraph. Putting the film
     directly under the H1 keeps it visible on short phones, where the H1 +
     6-line paragraph + CTAs would otherwise push it below the fold. */
  .hero { min-height: 0; }
  .hero__inner {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas: "h1" "media" "sub" "ctas" "note";
    row-gap: 1.5rem;
    text-align: center;
    padding-block: 2rem;
  }
  .hero__h1 { max-width: none; }
  .hero__sub { margin-inline: auto; }
  .hero__ctas { justify-content: center; }
  /* the rotate hint only earns its place on a phone */
  .hero__rotate { display: flex; }
  /* icon only — the frame is tight here and the label would crowd it */
      .nav__links {
    display: none; position: fixed; inset: 0; background: var(--bg);
    flex-direction: column; align-items: center; justify-content: center; gap: 2.25rem; z-index: 99;
  }
  .nav__links.is-open { display: flex; }
  .nav__links.is-open a:not(.btn) { font-size: 1.375rem; color: var(--text); }
  .nav__burger { display: flex; position: relative; z-index: 100; }

  .cases__grid { grid-template-columns: 1fr 1fr; }
  .pillars { grid-template-columns: 1fr; }
  .proof__inner { grid-template-columns: 1fr; gap: 3rem; }
  .proof__media { order: -1; }
  .campo-base__inner { grid-template-columns: 1fr; gap: 3rem; }
  .footer__top { grid-template-columns: 1fr; gap: 2rem; }
  .footer__links { align-items: flex-start; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 600px) {
  .cases__grid { grid-template-columns: 1fr; }
  .proof__metrics { grid-template-columns: 1fr; }
  .hero__ctas, .cta-band__actions { flex-direction: column; width: 100%; }
  .hero__ctas .btn, .cta-band__actions .btn { width: 100%; }
}

/* 17. MOTION ------------------------------------------------ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

/* 18. INNER PAGES ------------------------------------------ */

/* Shared page hero */
.page-hero {
  padding: calc(var(--nav-h) + clamp(3.5rem,7vw,5.5rem)) 0 clamp(3rem,5vw,4.5rem);
  border-bottom: 1px solid var(--border);
}
.page-hero--compact { padding-bottom: clamp(2rem,4vw,3rem); }
.page-hero__inner { max-width: 760px; display: flex; flex-direction: column; gap: 1.25rem; }
.page-hero__h1 {
  font-family: var(--f-display);
  font-size: clamp(2.2rem,4.5vw,3.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.02em;
}
.page-hero__h1 .hero__serif {
  display: block;
  font-size: .72em;
}
.page-hero__sub {
  color: var(--text-2);
  font-size: 1.125rem;
  line-height: 1.7;
  max-width: 620px;
}

/* casos.html — full grid spacing */
.casos-full { padding: var(--py) 0; }

/* como-empezamos.html — campo base card */
.cb-intro { padding: var(--py) 0 calc(var(--py) * .6); }
.cb-intro__card {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 3rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 2.5rem 3rem;
  align-items: start;
}
.cb-intro__price-block {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  border-right: 1px solid var(--border);
  padding-right: 2.5rem;
}
.cb-intro__price {
  font-family: var(--f-display);
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.04em;
  color: var(--accent);
}
.cb-intro__price span { font-size: 2rem; font-weight: 500; vertical-align: super; }
.cb-intro__price-note { font-size: .875rem; color: var(--text-3); }
.cb-intro__body { display: flex; flex-direction: column; gap: 1rem; }
.cb-intro__body p { color: var(--text-2); line-height: 1.75; }

/* Ridge / phases */
.ridge-section { padding: calc(var(--py) * .6) 0 var(--py); }
.ridge-svg { margin: 2.5rem 0 1rem; width: 100%; max-height: 180px; overflow: hidden; }
.ridge-svg svg { width: 100%; height: auto; }
.ridge-phases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.ridge-phase {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 1.5rem 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  transition: border-color var(--dur) var(--ease);
}
.ridge-phase:hover { border-color: var(--border-accent); }
.ridge-phase--summit { border-color: rgba(0,170,255,.2); }
.ridge-phase__alt {
  display: flex;
  align-items: baseline;
  gap: .5rem;
  flex-wrap: wrap;
  margin-bottom: .25rem;
}
.ridge-phase__elev {
  font-family: var(--f-mono);
  font-size: .8rem;
  color: var(--accent);
  margin-left: auto;
}
.ridge-phase h3 {
  font-family: var(--f-display);
  font-size: 1.2rem;
  font-weight: 700;
}
.ridge-phase p { color: var(--text-2); font-size: .9375rem; line-height: 1.65; }
.ridge-phase__tag {
  font-family: var(--f-mono);
  font-size: .75rem;
  color: var(--text-3);
  margin-top: auto;
  padding-top: .75rem;
}
.ridge-trust {
  text-align: center;
  color: var(--text-2);
  font-size: .9375rem;
  margin-top: 2.5rem;
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--r-inner);
  background: var(--surface);
  max-width: 560px;
  margin-inline: auto;
}
.cb-faq { padding-top: 0; }

/* trabajos.html — proof layout */
.proof-case { padding: var(--py) 0; }
.proof-case__layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 4rem;
  align-items: start;
}
.phone-frame {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 32px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 9/16;
  max-width: 280px;
  margin: 0 auto;
}
.phone-frame__screen--placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.phone-frame__ph-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  color: var(--text-3);
  font-size: .875rem;
  text-align: center;
  padding: 1.5rem;
}
.phone-annot {
  position: absolute;
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--r-inner);
  padding: .5rem .85rem;
  display: flex;
  flex-direction: column;
  gap: .1rem;
  left: 110%;
  white-space: nowrap;
}
.phone-annot--top { top: 15%; }
.phone-annot--bottom { bottom: 20%; }
.phone-annot__label { font-size: .7rem; color: var(--text-3); font-family: var(--f-mono); letter-spacing: .05em; text-transform: uppercase; }
.phone-annot__val { font-family: var(--f-display); font-size: 1.05rem; font-weight: 700; color: var(--accent); }
.proof-case__content { display: flex; flex-direction: column; gap: 1.25rem; }
.proof-case__title { font-size: clamp(1.8rem,3vw,2.5rem); font-weight: 700; }
.proof-case__tag { font-family: var(--f-mono); font-size: .8rem; color: var(--text-3); letter-spacing: .06em; text-transform: uppercase; margin-top: -.5rem; }
.proof-case__content p { color: var(--text-2); line-height: 1.75; }
.proof-case__honest {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 2px solid var(--border-accent);
  border-radius: var(--r-inner);
  padding: 1rem 1.25rem;
  margin-top: .5rem;
}
.proof-case__honest p { color: var(--text-2); font-size: .9375rem; line-height: 1.65; }
.proof-case__honest svg { flex-shrink: 0; margin-top: .15rem; }
.more-cases { padding: 0 0 var(--py); }
.more-cases__sectors {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 2rem;
  justify-content: center;
}
.sector-pill {
  display: inline-flex;
  padding: .5rem 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  font-size: .9rem;
  color: var(--text-2);
}

/* nosotros.html */
.about-story { padding: var(--py) 0; }
.about-story__layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 4rem;
  align-items: start;
}
.about-img-placeholder {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  aspect-ratio: 3/4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  color: var(--text-3);
  font-size: .875rem;
  text-align: center;
  padding: 2rem;
}
.about-story__coords {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: .25rem;
}
.about-story__coords p { font-family: var(--f-mono); font-size: .875rem; color: var(--text-2); }
.about-story__peak { color: var(--accent) !important; }
.about-story__text { display: flex; flex-direction: column; gap: 1.25rem; }
.about-story__text h2 { font-size: clamp(1.8rem,3vw,2.5rem); font-weight: 700; line-height: 1.15; }
.about-story__text p { color: var(--text-2); line-height: 1.75; }
.about-location { padding: 0 0 var(--py); }
.about-location__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-location__content { display: flex; flex-direction: column; gap: 1rem; }
.about-location__content h2 { font-size: clamp(1.6rem,2.8vw,2.2rem); font-weight: 700; line-height: 1.2; }
.about-location__content p { color: var(--text-2); line-height: 1.75; }
.about-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.about-stat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .3rem;
  transition: border-color var(--dur) var(--ease);
}
.about-stat:hover { border-color: var(--border-accent); }
.about-stat__val {
  font-family: var(--f-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.about-stat__label { font-size: .875rem; color: var(--text-2); }

/* contacto.html */
.contact-section { padding: var(--py) 0; }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 4rem;
  align-items: start;
}
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-form__field { display: flex; flex-direction: column; gap: .45rem; }
.contact-form__field label { font-size: .875rem; font-weight: 500; color: var(--text-2); }
.contact-form__opt { font-weight: 400; color: var(--text-3); }
.contact-form__field input,
.contact-form__field textarea {
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--r-inner);
  padding: .8125rem 1rem;
  color: var(--text);
  font-family: var(--f-body);
  font-size: 1rem;
  line-height: 1.5;
  transition: border-color var(--dur) var(--ease);
  resize: vertical;
}
.contact-form__field input:focus,
.contact-form__field textarea:focus {
  outline: none;
  border-color: var(--border-accent);
}
.contact-form__field input::placeholder,
.contact-form__field textarea::placeholder { color: var(--text-3); }
.contact-form__bot { display: none; }
.contact-form__privacy { font-size: .8125rem; color: var(--text-3); line-height: 1.6; }
.contact-form__privacy a { color: var(--text-2); text-decoration: underline; }
.contact-form__submit { align-self: flex-start; }
.contact-side { display: flex; flex-direction: column; gap: 2rem; }
.contact-alt {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.contact-alt p { color: var(--text-2); font-size: .9375rem; line-height: 1.65; }
.contact-alt__wa { gap: .75rem; }
.contact-trust {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 1.5rem;
}
.contact-trust__list {
  list-style: none;
  padding: 0;
  margin-top: .75rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.contact-trust__list li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .9375rem;
  color: var(--text-2);
  line-height: 1.5;
}
.contact-trust__list svg { flex-shrink: 0; margin-top: .15rem; }

/* Responsive — inner pages */
@media (max-width: 860px) {
  .cb-intro__card { grid-template-columns: 1fr; }
  .cb-intro__price-block { border-right: none; border-bottom: 1px solid var(--border); padding-right: 0; padding-bottom: 1.5rem; }
  .ridge-phases { grid-template-columns: 1fr; }
  .proof-case__layout { grid-template-columns: 1fr; }
  .phone-annot { display: none; }
  .about-story__layout { grid-template-columns: 1fr; }
  .about-location__inner { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-form__row { grid-template-columns: 1fr; }
}

/* 19. DECÁLOGO DEL MONTAÑERO ------------------------------- */

.nav__active:not(.btn) { color: var(--accent) !important; }

.decalogo-hero {
  position: relative;
  padding: calc(var(--nav-h) + clamp(3rem,6vw,5rem)) 0 clamp(3rem,6vw,5rem);
  overflow: hidden;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.decalogo-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 760px;
}
.decalogo-hero__h1 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(2.6rem,5.5vw,4rem);
  line-height: 1.1;
  letter-spacing: -.02em;
}
.decalogo-hero__h1 .hero__serif {
  display: block;
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2.8rem,6vw,4.4rem);
  color: var(--accent-soft);
}
.decalogo-hero__attribution {
  display: flex;
  flex-direction: column;
  gap: .9rem;
  max-width: 640px;
  color: var(--text-2);
  font-size: 1.05rem;
  line-height: 1.75;
  border-left: 2px solid var(--border-accent);
  padding-left: 1.25rem;
}
.decalogo-hero__attribution em { color: var(--text); font-style: italic; }
.decalogo-hero__topo {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.decalogo-hero__topo svg {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 70%;
  height: 100%;
  opacity: .7;
}

.decalogo-section { padding: var(--py) 0; }
.decalog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  list-style: none;
  padding: 0;
}

.decalog-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 1.75rem 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  gap: .85rem;
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.decalog-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-2px);
}
.decalog-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.decalog-card__num {
  font-family: var(--f-mono);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: -.03em;
  line-height: 1;
}
.decalog-card__peak {
  width: 48px;
  height: 36px;
  color: var(--border-2);
  flex-shrink: 0;
  transition: color var(--dur) var(--ease);
}
.decalog-card:hover .decalog-card__peak { color: var(--border-accent); }
.decalog-card__title {
  font-family: var(--f-display);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text);
}
.decalog-card__body {
  font-size: .9375rem;
  line-height: 1.7;
  color: var(--text-2);
  margin-top: auto;
}

.manifesto-teaser {
  padding: clamp(3rem,5vw,4.5rem) 0;
  border-top: 1px solid var(--border);
}
.manifesto-teaser__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.manifesto-teaser__text { max-width: 580px; }
.manifesto-teaser__text .eyebrow { margin-bottom: .6rem; }
.manifesto-teaser__text h2 {
  font-family: var(--f-display);
  font-size: clamp(1.5rem,2.8vw,2.2rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: .75rem;
}
.manifesto-teaser__text h2 .serif {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  color: var(--accent-soft);
}
.manifesto-teaser__text p { color: var(--text-2); font-size: 1rem; line-height: 1.7; }

@media (max-width: 680px) {
  .decalog-grid { grid-template-columns: 1fr; }
  .manifesto-teaser__inner { flex-direction: column; align-items: flex-start; }
  .decalogo-hero__topo { opacity: .3; }
}
