/* ─────────────────────────────────────────────
   STUP — Design system v2
   Editorial, bold, hexagon-architectural
   ───────────────────────────────────────────── */

:root {
  /* Paletă */
  --honey:        #E8A330;
  --honey-deep:   #B87716;
  --honey-soft:   #F5C842;
  --honey-glow:   #FFD56B;
  --black:        #141414;
  --black-soft:   #2A2520;
  --cream:        #FCF4E0;
  --cream-warm:   #F8EAC2;
  --cream-soft:   #FFFBED;
  --paper:        #FFFDF6;
  --ink-mute:     #6B5D4A;
  --ink-faint:    #A89980;
  --line:         rgba(20, 20, 20, 0.08);
  --line-honey:   rgba(232, 163, 48, 0.25);

  /* Gradient */
  --grad-honey:   linear-gradient(135deg, #F5C842 0%, #E8A330 55%, #B87716 100%);
  --grad-warm:    linear-gradient(180deg, #FCF4E0 0%, #FFFBED 100%);
  --grad-dark:    linear-gradient(140deg, #141414 0%, #2A2520 100%);

  /* Spacing */
  --gutter:       4rem;
  --max:          1280px;
  --max-narrow:   860px;
  --pad-y:        7rem;
  --pad-y-sm:     4.5rem;

  /* Type */
  --display:      clamp(2.1rem, 4vw, 3.6rem);
  --display-sm:   clamp(1.8rem, 3.2vw, 2.8rem);
  --h2:           clamp(1.7rem, 3vw, 2.6rem);
  --h3:           clamp(1.2rem, 1.6vw, 1.55rem);

  --shadow-soft:  0 20px 60px -20px rgba(184, 119, 22, 0.25);
  --shadow-bold:  0 30px 80px -25px rgba(20, 20, 20, 0.4);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; }

::selection { background: var(--honey); color: var(--black); }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--cream);
  color: var(--black);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4, .display {
  font-family: 'Manrope', system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

p { font-size: 1.05rem; }
em { font-style: italic; color: var(--honey-deep); }

/* ───── LAYOUT ───── */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.wrap-narrow { max-width: var(--max-narrow); margin: 0 auto; padding: 0 var(--gutter); }
section { padding: var(--pad-y) 0; position: relative; }
section.tight { padding: var(--pad-y-sm) 0; }

/* Backgrounds */
.bg-cream  { background: var(--cream); }
.bg-paper  { background: var(--paper); }
.bg-black  { background: var(--black); color: var(--cream); }
.bg-honey  { background: var(--honey); color: var(--black); }
.bg-grad-warm { background: var(--grad-warm); }
.bg-cream-warm { background: var(--cream-warm); }

.bg-black h2, .bg-black h3 { color: var(--cream); }

/* ───── KICKER / EYEBROW ───── */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--honey-deep);
  margin-bottom: 1.5rem;
}
.kicker::before {
  content: '';
  width: 28px;
  height: 1px;
  background: currentColor;
  display: inline-block;
}
.bg-black .kicker { color: var(--honey-soft); }
.bg-honey .kicker { color: var(--black); }

/* ───── NAV ───── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(252, 244, 224, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-honey);
  padding: 1.1rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex; align-items: center; gap: 0.6rem;
  text-decoration: none;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.05em;
  color: var(--black);
}
.logo svg { width: 32px; height: 36px; }
.nav-links {
  display: flex; gap: 2.2rem; list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--black);
  font-weight: 500;
  font-size: 0.94rem;
  position: relative;
  padding: 0.3rem 0;
  transition: color .15s;
  white-space: nowrap;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 50%; right: 50%; bottom: -2px;
  height: 2px; background: var(--honey);
  transition: left .2s ease, right .2s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--honey-deep); }
.nav-links a:hover::after, .nav-links a.active::after { left: 0; right: 0; }

.nav-toggle { display: none; background: transparent; border: 0; padding: 0.4rem; cursor: pointer; }
.nav-toggle svg { width: 28px; height: 28px; stroke: var(--black); }

/* ───── BUTTON ───── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.55rem;
  background: var(--black);
  color: var(--cream);
  text-decoration: none;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.005em;
  border-radius: 10px;
  border: 0;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s;
  line-height: 1;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-bold); background: var(--black-soft); }
.btn .arr { transition: transform .18s ease; }
.btn:hover .arr { transform: translateX(3px); }

.btn-honey { background: var(--honey); color: var(--black); }
.btn-honey:hover { background: var(--honey-deep); color: var(--cream); }
.btn-ghost { background: transparent; color: var(--black); border: 2px solid var(--black); padding: 0.78rem 1.45rem; }
.btn-ghost:hover { background: var(--black); color: var(--cream); }
.bg-black .btn-ghost { color: var(--cream); border-color: var(--cream); }
.bg-black .btn-ghost:hover { background: var(--cream); color: var(--black); }
.bg-honey .btn { background: var(--black); color: var(--honey-soft); }
.bg-honey .btn:hover { background: var(--black-soft); }

/* ───── HERO ───── */
.hero {
  padding: 5rem var(--gutter) 6rem;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
}
.hero h1 {
  font-size: var(--display);
  margin-bottom: 1.4rem;
  letter-spacing: -0.035em;
  line-height: 1.02;
  max-width: 16ch;
}
.hero h1 .underline { position: relative; white-space: nowrap; }
.hero h1 .underline::after {
  content: '';
  position: absolute;
  left: -2%; right: -2%; bottom: 0.05em;
  height: 0.18em;
  background: var(--honey);
  z-index: -1;
  border-radius: 4px;
}
.hero h1 em {
  font-style: normal;
  color: var(--honey-deep);
}
.hero .lead {
  font-size: clamp(1.05rem, 1.2vw, 1.2rem);
  line-height: 1.5;
  color: var(--ink-mute);
  max-width: 520px;
  margin-bottom: 2.2rem;
  font-weight: 400;
}
.hero-cta { display: flex; gap: 0.9rem; flex-wrap: wrap; align-items: center; }
.hero-meta {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
  color: var(--ink-mute);
}
.hero-meta::before {
  content: '';
  width: 36px;
  height: 1px;
  background: var(--honey);
}

.hero.compact { padding: 3.5rem var(--gutter) 4.5rem; }
.hero.compact .hero-grid { grid-template-columns: 1fr; max-width: var(--max-narrow); }
.hero.compact h1 { font-size: var(--display-sm); max-width: 14ch; }
.hero.compact .lead { max-width: 620px; font-size: 1.2rem; }

/* Hero hexagon cluster */
.hex-cluster {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 520px;
  margin-left: auto;
}
.hex-cluster svg { width: 100%; height: 100%; overflow: visible; }
.hex-cluster .hex-pulse { animation: pulse 4s ease-in-out infinite; transform-origin: center; }
.hex-cluster .hex-pulse-2 { animation: pulse 4s ease-in-out infinite; animation-delay: 1.3s; transform-origin: center; }
.hex-cluster .hex-pulse-3 { animation: pulse 4s ease-in-out infinite; animation-delay: 2.6s; transform-origin: center; }

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.55; }
}

/* Big background hex on cream */
.bg-hex-watermark {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.bg-hex-watermark svg { width: 100%; height: 100%; }

/* ───── DISPLAY HEADINGS ───── */
.display-h2 {
  font-size: var(--h2);
  margin-bottom: 1.5rem;
  max-width: 18ch;
}
.section-intro {
  font-size: 1.2rem;
  color: var(--ink-mute);
  max-width: 56ch;
  margin-bottom: 0;
  line-height: 1.55;
}
.bg-black .section-intro { color: rgba(252, 244, 224, 0.65); }
.bg-honey .section-intro { color: var(--black-soft); }

.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 4rem;
}
.section-head.center { grid-template-columns: 1fr; text-align: center; max-width: var(--max-narrow); margin-left: auto; margin-right: auto; margin-bottom: 3.5rem; }
.section-head.center .section-intro { margin: 0 auto; }

/* ───── STATS BOLD ───── */
.stats-bold {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 2rem;
}
.stat-bold {
  padding: 2.2rem 1.5rem 2.2rem 0;
  border-left: 1px solid var(--line);
  padding-left: 1.5rem;
}
.stat-bold:first-child { border-left: 0; padding-left: 0; }
.stat-bold .num {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  color: var(--honey-deep);
  margin-bottom: 0.7rem;
}
.stat-bold .lbl {
  font-size: 0.95rem;
  color: var(--ink-mute);
  line-height: 1.4;
  max-width: 22ch;
}
.bg-black .stat-bold { border-color: rgba(252, 244, 224, 0.1); }
.bg-black .stat-bold .num { color: var(--honey-soft); }
.bg-black .stat-bold .lbl { color: rgba(252, 244, 224, 0.65); }

/* ───── PROCESS / NUMBERED EDITORIAL ───── */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  counter-reset: step;
}
.step {
  position: relative;
  padding-top: 2rem;
  border-top: 1px solid var(--black);
}
.step::before {
  counter-increment: step;
  content: '0' counter(step);
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: var(--honey-deep);
  position: absolute;
  top: -1.6rem;
  left: 0;
  background: inherit;
  padding-right: 0.6rem;
}
.step h3 {
  font-size: 1.5rem;
  margin-bottom: 0.7rem;
  letter-spacing: -0.025em;
}
.step p { color: var(--ink-mute); font-size: 0.98rem; }

/* ───── PROCESS HEX — CANONIC 4 PAȘI ───── */
.process-hex {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
  margin-top: 1.5rem;
}
.step-hex {
  background: var(--cream-warm);
  border-radius: 22px;
  padding: 2rem 1.6rem 1.8rem;
  position: relative;
  display: flex;
  flex-direction: column;
}
.step-hex .hex-num {
  position: relative;
  width: 56px;
  height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.6rem;
}
.step-hex .hex-num svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.step-hex .hex-num b {
  position: relative;
  z-index: 1;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--black);
  letter-spacing: -0.02em;
}
.step-hex h3 {
  font-size: 1.15rem;
  margin-bottom: 0.55rem;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.step-hex p {
  color: var(--ink-mute);
  font-size: 0.92rem;
  line-height: 1.5;
}

/* ───── ROLES — EDITORIAL TWO-COL ───── */
.role {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 4rem;
  padding: 3.5rem 0;
  border-top: 1px solid var(--line);
  align-items: start;
}
.role:first-of-type { border-top: 0; padding-top: 1rem; }
.role-tag {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--honey-deep);
}
.role-num {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 5rem;
  line-height: 0.9;
  letter-spacing: -0.06em;
  color: var(--honey);
  margin-top: 0.5rem;
}
.role h3 {
  font-size: clamp(1.7rem, 2.4vw, 2.4rem);
  margin-bottom: 1rem;
  max-width: 22ch;
  letter-spacing: -0.03em;
}
.role p { color: var(--ink-mute); font-size: 1.08rem; max-width: 58ch; margin-bottom: 1rem; }
.role .role-link {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  color: var(--honey-deep);
  text-decoration: none;
  font-size: 0.97rem;
  letter-spacing: -0.005em;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 2px solid var(--honey);
  padding-bottom: 0.15rem;
  transition: color .15s, border-color .15s;
}
.role .role-link:hover { color: var(--black); border-color: var(--black); }

/* ───── MANIFEST — FULL BLEED HONEY ───── */
.manifest {
  padding: 8rem var(--gutter);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.manifest .text {
  position: relative;
  z-index: 2;
  max-width: 18ch;
  margin: 0 auto;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(2.4rem, 6vw, 5.2rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--black);
}
.manifest .sig {
  position: relative; z-index: 2;
  margin-top: 3rem;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}
.manifest .hex-bg {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  pointer-events: none;
}

/* ───── SUB-BRAND CARDS — EDITORIAL ───── */
.sub-brands {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.sub-brand {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 2.2rem 2rem 2rem;
  text-decoration: none;
  color: var(--black);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, border-color .25s, box-shadow .25s;
  min-height: 320px;
}
.sub-brand:hover {
  transform: translateY(-6px);
  border-color: var(--honey);
  box-shadow: var(--shadow-soft);
}
.sub-brand::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 140px; height: 160px;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 110'%3E%3Cpath d='M50 5L92 28v54L50 105L8 82V28z' fill='%23E8A330' opacity='0.18'/%3E%3C/svg%3E") center/contain no-repeat;
  transition: transform .35s ease;
}
.sub-brand:hover::before { transform: rotate(15deg) scale(1.05); }
.sub-brand .badge {
  font-family: 'Manrope';
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--honey-deep);
  margin-bottom: 1.4rem;
  position: relative;
  z-index: 1;
}
.sub-brand h3 {
  font-size: 1.85rem;
  margin-bottom: 0.8rem;
  letter-spacing: -0.03em;
  position: relative;
  z-index: 1;
}
.sub-brand p {
  color: var(--ink-mute);
  font-size: 0.96rem;
  line-height: 1.5;
  flex: 1;
  position: relative;
  z-index: 1;
}
.sub-brand .when {
  margin-top: 1.4rem;
  font-family: 'Manrope';
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  color: var(--black);
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.sub-brand .when::after {
  content: '→';
  transition: transform .2s;
}
.sub-brand:hover .when::after { transform: translateX(4px); }

/* ───── PARTNERS — TICKER MARQUEE ───── */
.marquee {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  margin-top: 3rem;
}
.marquee-track {
  display: inline-flex;
  gap: 4rem;
  animation: scroll 35s linear infinite;
  padding-right: 4rem;
}
.marquee-item {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  letter-spacing: -0.02em;
  color: var(--ink-mute);
  flex-shrink: 0;
}
.marquee-item span { color: var(--honey-deep); }
@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee::before, .marquee::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.marquee::before { left: 0;  background: linear-gradient(90deg, var(--cream), transparent); }
.marquee::after  { right: 0; background: linear-gradient(-90deg, var(--cream), transparent); }
.bg-black .marquee::before { background: linear-gradient(90deg, var(--black), transparent); }
.bg-black .marquee::after  { background: linear-gradient(-90deg, var(--black), transparent); }
.bg-black .marquee-item { color: rgba(252, 244, 224, 0.55); }
.bg-black .marquee-item span { color: var(--honey-soft); }

/* ───── NEWSLETTER CTA — BIG BOLD ───── */
.cta-mega {
  background: var(--black);
  color: var(--cream);
  padding: 6rem var(--gutter);
  position: relative;
  overflow: hidden;
}
.cta-mega .wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  position: relative;
  z-index: 2;
}
.cta-mega h2 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 1.2rem;
  max-width: 14ch;
  color: var(--cream);
}
.cta-mega .copy { color: rgba(252, 244, 224, 0.7); font-size: 1.1rem; max-width: 44ch; }
.cta-form {
  display: flex; flex-direction: column; gap: 0.8rem;
}
.cta-form .row { display: flex; gap: 0.6rem; }
.cta-form input[type="email"] {
  flex: 1;
  padding: 1.2rem 1.4rem;
  background: rgba(252, 244, 224, 0.05);
  border: 1px solid rgba(252, 244, 224, 0.2);
  border-radius: 999px;
  color: var(--cream);
  font-family: inherit;
  font-size: 1rem;
  outline: none;
  transition: border-color .15s, background .15s;
}
.cta-form input[type="email"]:focus {
  border-color: var(--honey);
  background: rgba(252, 244, 224, 0.08);
}
.cta-form input::placeholder { color: rgba(252, 244, 224, 0.4); }
.cta-form button { background: var(--honey); color: var(--black); }
.cta-form button:hover { background: var(--honey-soft); }
.cta-note { color: rgba(252, 244, 224, 0.45); font-size: 0.82rem; }
.cta-mega .hex-bg {
  position: absolute;
  right: -120px; top: -80px;
  width: 600px; height: 680px;
  opacity: 0.06;
  pointer-events: none;
}

/* ───── FAQ ───── */
.faq { max-width: 760px; margin: 3rem 0 0; }
.faq details {
  border-top: 1px solid var(--line);
  padding: 1.6rem 0;
  cursor: pointer;
}
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary {
  font-family: 'Manrope';
  font-weight: 700;
  font-size: 1.2rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  letter-spacing: -0.01em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '';
  width: 14px; height: 14px;
  border-right: 2px solid var(--honey-deep);
  border-bottom: 2px solid var(--honey-deep);
  transform: rotate(45deg);
  transition: transform .2s ease;
  flex-shrink: 0;
}
.faq details[open] summary::after { transform: rotate(-135deg); margin-top: 6px; }
.faq details > div {
  margin-top: 1rem;
  color: var(--ink-mute);
  font-size: 1.02rem;
  padding-right: 2rem;
  line-height: 1.6;
}

/* ───── DEMO ZONES — INDEXED EDITORIAL ───── */
.zones { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; }
.zone {
  padding: 3rem 2.5rem;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  position: relative;
}
.zone:nth-child(-n+2) { border-top: 0; }
.zone:nth-child(odd) { border-left: 0; }
.zone .num {
  font-family: 'Manrope';
  font-weight: 800;
  font-size: 5rem;
  line-height: 0.85;
  color: var(--honey);
  letter-spacing: -0.06em;
  margin-bottom: 1rem;
}
.zone h3 {
  font-size: 1.8rem;
  margin-bottom: 0.7rem;
  letter-spacing: -0.025em;
}
.zone .why { color: var(--ink-mute); font-size: 1rem; margin-bottom: 1rem; max-width: 38ch; }
.zone .who {
  font-size: 0.88rem;
  color: var(--ink-faint);
  font-family: 'Manrope';
  font-weight: 600;
  letter-spacing: -0.005em;
}
.zone .who strong { color: var(--black); font-weight: 700; }
.zone.featured {
  background: var(--cream-warm);
}
.zone.featured::before {
  content: 'cel mai important';
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  font-family: 'Manrope';
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--honey-deep);
}

/* ───── TIMELINE EDITORIAL ───── */
.timeline-ed { margin-top: 1.5rem; }
.timeline-ed .item {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 3rem;
  padding: 2rem 0;
  border-top: 1px solid var(--line);
  align-items: start;
}
.timeline-ed .item:last-child { border-bottom: 1px solid var(--line); }
.timeline-ed .when {
  font-family: 'Manrope';
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--honey-deep);
}
.timeline-ed h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  letter-spacing: -0.025em;
}
.timeline-ed p { color: var(--ink-mute); font-size: 1rem; }
.bg-black .timeline-ed .item { border-color: rgba(252, 244, 224, 0.12); }
.bg-black .timeline-ed .when { color: var(--honey-soft); }
.bg-black .timeline-ed p { color: rgba(252, 244, 224, 0.7); }

/* ───── TIERS ───── */
.tiers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
  margin-top: 3rem;
}
.tier {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 2rem 1.7rem;
  display: flex;
  flex-direction: column;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.tier:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); border-color: var(--honey); }
.tier.featured {
  background: var(--black);
  color: var(--cream);
  border-color: var(--black);
  position: relative;
  overflow: hidden;
}
.tier.featured::after {
  content: 'Recomandat';
  position: absolute;
  top: 1.2rem; right: 1.2rem;
  background: var(--honey);
  color: var(--black);
  font-family: 'Manrope';
  font-weight: 700;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
}
.tier h3 { font-size: 1.4rem; margin-bottom: 0.4rem; letter-spacing: -0.025em; }
.tier .desc { color: var(--ink-mute); font-size: 0.9rem; margin-bottom: 1.4rem; }
.tier.featured .desc { color: rgba(252, 244, 224, 0.6); }
.tier .price {
  font-family: 'Manrope';
  font-weight: 800;
  font-size: 2.2rem;
  letter-spacing: -0.04em;
  margin-bottom: 0.3rem;
  color: var(--honey-deep);
  line-height: 1;
}
.tier.featured .price { color: var(--honey-soft); }
.tier .price small { font-size: 0.85rem; font-weight: 500; color: var(--ink-mute); display: block; margin-top: 0.4rem; }
.tier.featured .price small { color: rgba(252, 244, 224, 0.55); }
.tier ul { list-style: none; flex: 1; margin: 1.4rem 0; }
.tier ul li {
  padding: 0.5rem 0 0.5rem 1.5rem;
  position: relative;
  font-size: 0.93rem;
  line-height: 1.5;
}
.tier ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.85rem;
  width: 8px; height: 8px;
  background: var(--honey);
  transform: rotate(45deg);
}
.tier .btn { width: 100%; justify-content: center; }

/* ───── FOOTER ───── */
footer {
  background: var(--black);
  color: var(--cream);
  padding: 5rem var(--gutter) 2.5rem;
}
.foot-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}
.foot-brand p {
  color: rgba(252, 244, 224, 0.6);
  font-size: 0.96rem;
  margin-top: 1.2rem;
  max-width: 320px;
  line-height: 1.55;
}
.foot-grid h4 {
  font-family: 'Manrope';
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--honey-soft);
  margin-bottom: 1.2rem;
}
.foot-grid ul { list-style: none; }
.foot-grid ul li { margin-bottom: 0.6rem; }
.foot-grid a {
  color: rgba(252, 244, 224, 0.7);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color .15s;
}
.foot-grid a:hover { color: var(--honey-soft); }
.foot-bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(252, 244, 224, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(252, 244, 224, 0.4);
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ───── EDITORIAL PULL QUOTE ───── */
.pull {
  font-family: 'Manrope';
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: -0.025em;
  max-width: 24ch;
  margin: 4rem 0;
  padding-left: 2rem;
  border-left: 4px solid var(--honey);
}
.pull em { color: var(--honey-deep); font-style: normal; }

/* ───── BRIEF PREVIEW SPREAD ───── */
.spread {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-top: 3rem;
  background: linear-gradient(180deg, var(--cream-warm) 0%, var(--cream) 100%);
  padding: 2.5rem;
  border-radius: 22px;
  border: 1px solid var(--line-honey);
}
.brief-page {
  background: var(--paper);
  border-radius: 12px;
  padding: 2rem 1.7rem;
  box-shadow: 0 4px 24px rgba(20, 20, 20, 0.06);
  font-size: 0.92rem;
}
.brief-page-header {
  display: flex;
  justify-content: space-between;
  border-bottom: 3px solid var(--honey);
  padding-bottom: 0.7rem;
  margin-bottom: 1.2rem;
  font-family: 'Manrope';
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
  color: var(--black);
}
.brief-page h3 { font-size: 1.2rem; margin-bottom: 0.5rem; letter-spacing: -0.02em; }
.brief-page h4 {
  font-family: 'Manrope';
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--honey-deep);
  margin: 1.2rem 0 0.4rem;
  font-weight: 800;
}
.brief-page p {
  font-size: 0.86rem;
  color: var(--ink-mute);
  margin-bottom: 0.6rem;
  line-height: 1.55;
}

/* ───── CONTACT GRID ───── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-top: 3rem;
}
.contact-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.8rem 1.6rem;
  transition: border-color .15s, transform .15s;
}
.contact-card:hover { border-color: var(--honey); transform: translateY(-2px); }
.contact-card .label {
  font-family: 'Manrope';
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--honey-deep);
  font-weight: 700;
  margin-bottom: 0.7rem;
}
.contact-card .value {
  font-family: 'Manrope';
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.015em;
}
.contact-card a { color: var(--black); text-decoration: none; }
.contact-card a:hover { color: var(--honey-deep); }

/* ───── YES/NO TWO COLS ───── */
.twocol-stance {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 3rem;
}
.stance {
  padding: 2.5rem;
  border-radius: 0;
}
.stance.yes {
  background: var(--cream-warm);
  border-radius: 22px 0 0 22px;
}
.stance.no {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 0 22px 22px 0;
}
.stance h3 {
  font-family: 'Manrope';
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 1.5rem;
  color: var(--honey-deep);
}
.stance.no h3 { color: var(--ink-faint); }
.stance ul { list-style: none; }
.stance ul li {
  padding: 0.7rem 0;
  font-family: 'Manrope';
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.015em;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  line-height: 1.4;
}
.stance ul li:first-child { border-top: 0; }
.stance ul li::before {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  margin-top: 0.15rem;
}
.stance.yes ul li::before {
  content: '✓';
  background: var(--honey);
  color: var(--black);
}
.stance.no ul li::before {
  content: '✕';
  background: var(--ink-faint);
  color: var(--paper);
}

/* ───── ROLE TABLE EDITORIAL ───── */
.tbl-wrap { margin-top: 2.5rem; overflow-x: auto; }
table.role-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
}
table.role-table th {
  background: var(--black);
  color: var(--honey-soft);
  padding: 1.1rem 1.2rem;
  text-align: left;
  font-family: 'Manrope';
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
table.role-table td {
  padding: 1.3rem 1.2rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  line-height: 1.5;
}
table.role-table td:first-child {
  font-family: 'Manrope';
  font-weight: 700;
  color: var(--honey-deep);
  width: 32%;
  font-size: 0.97rem;
}
table.role-table tr:last-child td { border-bottom: 0; background: var(--cream-warm); }
table.role-table tr:last-child td:first-child { color: var(--black); }

/* ───── RESPONSIVE ───── */
@media (max-width: 1080px) {
  :root { --gutter: 2.5rem; --pad-y: 5rem; --pad-y-sm: 3.5rem; }
  .hero-grid { grid-template-columns: 1fr; }
  .hex-cluster { max-width: 380px; margin: 0 auto; }
  .stats-bold { grid-template-columns: repeat(2, 1fr); }
  .stat-bold:nth-child(3) { border-left: 0; padding-left: 0; }
  .process { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 2rem; }
  .process-hex { grid-template-columns: repeat(2, 1fr); }
  .sub-brands { grid-template-columns: repeat(2, 1fr); }
  .tiers { grid-template-columns: repeat(2, 1fr); }
  .role { grid-template-columns: 1fr; gap: 1.5rem; padding: 3rem 0; }
  .section-head { grid-template-columns: 1fr; gap: 2rem; }
  .cta-mega .wrap { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .zones { grid-template-columns: 1fr; }
  .zone { border-left: 0; }
  .zone:nth-child(2) { border-top: 1px solid var(--line); }
  .timeline-ed .item { grid-template-columns: 1fr; gap: 0.5rem; }
  .twocol-stance { grid-template-columns: 1fr; }
  .stance.yes { border-radius: 22px 22px 0 0; }
  .stance.no  { border-radius: 0 0 22px 22px; }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 960px) {
  .nav { position: relative; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 1.5rem var(--gutter);
    gap: 1rem;
    border-bottom: 1px solid var(--line-honey);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
}
@media (max-width: 720px) {
  :root { --gutter: 1.4rem; --pad-y: 4rem; }
  .nav { padding: 0.9rem var(--gutter); }
  .stats-bold { grid-template-columns: 1fr; }
  .stat-bold { border-left: 0 !important; padding-left: 0 !important; border-top: 1px solid var(--line); }
  .stat-bold:first-child { border-top: 0; }
  .process { grid-template-columns: 1fr; gap: 2.5rem; }
  .process-hex { grid-template-columns: 1fr; }
  .sub-brands { grid-template-columns: 1fr; }
  .tiers { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; gap: 2rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { justify-content: center; }
  .spread { grid-template-columns: 1fr; padding: 1.2rem; }
  .marquee-item { font-size: 1.2rem; }
}
