/* ============================================
   HOME PAGE — Athos-inspired redesign
   Space Grotesk geometric display font
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  --font-display: 'Space Grotesk', sans-serif;
  --color-dark-surface: #0e0e11;
  --color-dark-card: #15151a;
  --color-dark-border: rgba(255,255,255,0.08);
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-card: 20px;
}

.home-page {
  background: #fff;
}

/* ---- New reveal-up animation ---- */
.js-ready .reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.75s cubic-bezier(.22,.68,0,1.2), transform 0.75s cubic-bezier(.22,.68,0,1.2);
  transition-delay: var(--delay, 0ms);
}
.js-ready .reveal-up.active {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   CONSUMO-STYLE NAVBAR — clean, airy, minimal
   ============================================ */
.home-page .navbar,
.inner-page .navbar {
  padding: 0.35rem 0;
  border-bottom: 1px solid transparent;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: background 0.3s, border-color 0.3s;
}
.home-page .navbar.scrolled,
.inner-page .navbar.scrolled {
  background: rgba(255,255,255,0.95);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  box-shadow: none;
}

/* Logo: smaller, Consumo-like */
.home-page .nav-logo,
.inner-page .nav-logo { height: 52px !important; width: auto !important; object-fit: contain; }

/* Nav links: lighter, tighter, Consumo-minimal */
.home-page .nav-link,
.inner-page .nav-link {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 400;
  color: #333 !important;
  letter-spacing: 0;
  white-space: nowrap;
  padding: 0.35rem 0.75rem !important;
  transition: color 0.15s;
}
.home-page .nav-link:hover,
.inner-page .nav-link:hover { color: #000 !important; }
.home-page .nav-link.active,
.inner-page .nav-link.active { color: var(--color-primary) !important; font-weight: 500; }

/* Dropdown toggle arrow */
.home-page .dropdown-toggle::after,
.inner-page .dropdown-toggle::after { opacity: 0.5; }

/* CTA button: Consumo dark pill */
.home-page .nav-btn,
.inner-page .nav-btn {
  background: #0e0e11 !important;
  color: #fff !important;
  border-radius: 100px !important;
  padding: 0.5rem 1.25rem !important;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0;
  margin-left: 0.5rem;
  transition: background 0.2s, transform 0.15s;
  line-height: 1.4;
}
.home-page .nav-btn:hover,
.inner-page .nav-btn:hover {
  background: #2d2d35 !important;
  color: #fff !important;
  transform: none;
}

/* ============================================
   HERO V2
   ============================================ */
.hero-v2 {
  padding-top: 130px;
  padding-bottom: 80px;
  overflow: hidden;
  /* Consumo-style gradient: white at top, brand-blue tint at bottom (like Consumo's yellow) */
  background: linear-gradient(180deg,
    #ffffff 0%,
    #f4f8fe 28%,
    #e4effa 55%,
    #cfe0f6 80%,
    #bdd4f2 100%
  );
}
.hero-v2-inner {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 1rem 64px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f0f0f5;
  border: 1px solid #e0e0ea;
  border-radius: 100px;
  padding: 6px 18px;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 500;
  color: #555;
  letter-spacing: 0.02em;
  margin-bottom: 28px;
}
.hero-badge-pill {
  background: #0e0e11;
  color: #fff;
  border-radius: 100px;
  padding: 2px 10px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.hero-v2-heading {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6.5vw, 5.5rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.04em;
  color: #0e0e11;
  margin-bottom: 28px;
}
.hero-v2-heading em {
  font-style: normal;
  color: var(--color-primary);
}
.hero-v2-sub {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.65;
  font-weight: 400;
}
.hero-v2-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---- Buttons V2 ---- */
.btn-v2-primary {
  display: inline-flex;
  align-items: center;
  background: var(--color-dark-surface);
  color: #fff !important;
  border-radius: 100px;
  padding: 14px 28px;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn-v2-primary:hover {
  background: #2d2d35;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}
.btn-v2-ghost {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: #0e0e11 !important;
  border-radius: 100px;
  padding: 14px 24px;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
  border: 1.5px solid #d1d5db;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.btn-v2-ghost:hover {
  border-color: #0e0e11;
  background: #f9f9fb;
  transform: translateY(-2px);
}
.btn-v2-outline-white {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: #fff !important;
  border-radius: 100px;
  padding: 12px 24px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.35);
  transition: border-color 0.2s, background 0.2s;
  margin-top: 28px;
}
.btn-v2-outline-white:hover {
  border-color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.08);
}
.btn-v2-white-solid {
  display: inline-flex;
  align-items: center;
  background: #fff !important;
  color: #194F8F !important;
  border-radius: 100px;
  padding: 16px 32px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn-v2-white-solid:hover {
  background: #194F8F !important;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(25,79,143,0.35);
}

/* ---- Hero Image ---- */
.hero-v2-image-wrap {
  padding: 0 1rem;
}
.hero-v2-image-frame {
  position: relative;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  overflow: hidden;
  box-shadow: 0 -8px 60px rgba(0,0,0,0.08);
  border: 1px solid #e8e8f0;
  border-bottom: none;
  max-height: 520px;
}
.hero-v2-image {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}
.hero-v2-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14,14,17,0.45) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 36px;
}
.hero-v2-stat-card {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-radius: 14px;
  padding: 18px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 200px;
  border: 1px solid rgba(255,255,255,0.8);
}
.stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
}
.stat-label {
  font-size: 0.8rem;
  color: #6b7280;
  font-weight: 500;
  max-width: 140px;
  line-height: 1.35;
}

/* ============================================
   MARQUEE SECTION
   ============================================ */
.marquee-section {
  background: var(--color-dark-surface);
  padding: 22px 0;
  display: flex;
  align-items: center;
  gap: 32px;
  overflow: hidden;
}
.marquee-label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
  white-space: nowrap;
  padding-left: 2rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  flex-shrink: 0;
}
.marquee-track-wrap {
  overflow: hidden;
  flex: 1;
  mask-image: linear-gradient(to right, transparent 0, black 80px, black calc(100% - 80px), transparent 100%);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: marqueeScroll 28s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  padding: 0 20px;
  letter-spacing: 0.01em;
}
.marquee-dot {
  color: var(--color-primary) !important;
  padding: 0 4px !important;
  font-size: 1.2rem !important;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================
   DARK SPLIT SECTION
   ============================================ */
.split-dark-section {
  background: var(--color-dark-surface);
  padding: 96px 0;
}
.split-dark-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.eyebrow-light {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: var(--color-primary);
  display: block;
  margin-bottom: 16px;
  font-family: var(--font-display);
}
.split-dark-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.75rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.split-dark-body {
  font-family: var(--font-body);
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.split-dark-body p { margin-bottom: 14px; }
.split-dark-body .fw-semibold { color: #fff; }
.split-dark-image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.split-dark-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.88) saturate(0.9);
  transition: transform 0.6s ease, filter 0.4s ease;
}
.split-dark-image-wrap:hover .split-dark-image {
  transform: scale(1.03);
  filter: brightness(1) saturate(1);
}

/* ============================================
   SECTION TYPOGRAPHY (v2)
   ============================================ */
.section-padding-v2 { padding: 100px 0; }
.bg-v2-soft { background: #f7f7fb; }
.section-header { margin-bottom: 56px; }
.eyebrow {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 14px;
  display: block;
}
.section-heading-v2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 700;
  color: #0e0e11;
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1.05rem;
  color: #6b7280;
  max-width: 560px;
  line-height: 1.6;
  margin: 0 auto;
}

/* ============================================
   INDUSTRY CARDS (photo + dark overlay)
   ============================================ */
.industry-card {
  display: block;
  text-decoration: none;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: #0e0e11;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}
.industry-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.18);
}
.industry-card-image-wrap {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.industry-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
  filter: brightness(0.75) saturate(0.8);
}
.industry-card:hover .industry-card-image {
  transform: scale(1.05);
}
.industry-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 30%, rgba(14,14,17,0.85) 100%);
}
.industry-card-body {
  padding: 24px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.industry-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  letter-spacing: -0.02em;
}
.industry-card-body p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.55;
  margin: 0;
}
.card-arrow {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.35);
  margin-top: 6px;
  display: block;
  transition: color 0.2s, transform 0.2s;
}
.industry-card:hover .card-arrow {
  color: #fff;
  transform: translateX(4px);
}

/* ============================================
   SYSTEMS LIST (numbered)
   ============================================ */
.systems-list {
  display: flex;
  flex-direction: column;
}
.system-item {
  display: grid;
  grid-template-columns: 52px 1fr 32px;
  gap: 20px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid #e8e8f0;
  text-decoration: none;
  transition: background 0.2s;
  border-radius: 8px;
  margin: 0 -12px;
  padding-left: 12px;
  padding-right: 12px;
}
.system-item:first-child { border-top: 1px solid #e8e8f0; }
.system-item:hover {
  background: #f7f7fb;
}
.system-number {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.05em;
  padding-top: 3px;
}
.system-content h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: #0e0e11;
  margin: 0 0 6px;
  letter-spacing: -0.015em;
  line-height: 1.2;
}
.system-content p {
  font-size: 0.9rem;
  color: #6b7280;
  margin: 0;
  line-height: 1.55;
}
.system-arrow {
  font-size: 1rem;
  color: #d1d5db;
  padding-top: 3px;
  transition: color 0.2s, transform 0.2s;
  text-align: right;
}
.system-item:hover .system-arrow {
  color: var(--color-primary);
  transform: translateX(4px);
}

/* ============================================
   PROOF BAR
   ============================================ */
.proof-bar-section {
  padding: 96px 0;
  background: #fff;
  border-top: 1px solid #f0f0f5;
  border-bottom: 1px solid #f0f0f5;
}
.proof-bar-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.proof-bar-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 700;
  color: #0e0e11;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
  line-height: 1.1;
}
.proof-bar-section .eyebrow { margin-bottom: 12px; }
.proof-bar-section p {
  font-size: 1rem;
  color: #6b7280;
  line-height: 1.65;
  max-width: 440px;
  margin-bottom: 8px;
}
.proof-stats {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.proof-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-left: 24px;
  border-left: 3px solid var(--color-primary);
}
.proof-stat-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: #0e0e11;
  line-height: 1;
  letter-spacing: -0.04em;
}
.proof-stat-label {
  font-size: 0.88rem;
  color: #9ca3af;
  font-weight: 500;
}

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta-v2 {
  background: var(--color-primary);
  padding: 120px 0;
}
.final-cta-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 0 1.5rem;
}
.final-cta-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 24px;
}
.final-cta-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.final-cta-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.final-cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.final-cta-note {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin: 0;
  font-family: var(--font-display);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
  .split-dark-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .split-dark-image-wrap { aspect-ratio: 16/7; }
  .proof-bar-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .proof-stats { flex-direction: row; gap: 24px; }
  .proof-stat { padding-left: 16px; }
  .proof-stat-number { font-size: 2.2rem; }
}

@media (max-width: 767px) {
  .hero-v2 { padding-top: 110px; }
  .hero-v2-heading { font-size: 2.2rem; }
  .hero-v2-image { height: 300px; }
  .section-padding-v2 { padding: 64px 0; }
  .split-dark-section { padding: 64px 0; }
  .proof-bar-section { padding: 64px 0; }
  .final-cta-v2 { padding: 80px 0; }
  .system-item { grid-template-columns: 40px 1fr 24px; gap: 14px; }
  .proof-stats { flex-direction: column; gap: 20px; }
  .marquee-label { display: none; }
}

/* ============================================
   NEW HOME SECTIONS (v2 additions)
   ============================================ */

/* --- Tension stanza (dramatic line-break copy) --- */
.tension-lines {
  color: rgba(255,255,255,0.65);
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 2;
  margin-bottom: 8px;
}
.tension-lines .stanza { display: block; margin-bottom: 14px; }
.tension-lines .line { display: block; }
.tension-punch {
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  margin-top: 20px;
  line-height: 1.5;
}

/* --- Positioning section --- */
.positioning-section {
  background: #fff;
  padding: 96px 0;
  border-top: 1px solid #f0f0f5;
}
.positioning-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  padding: 0 1.5rem;
}
.positioning-statement {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  color: #0e0e11;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}
.positioning-statement .de-emphasize {
  color: #9ca3af;
}
.positioning-body {
  font-size: 1.05rem;
  color: #6b7280;
  max-width: 640px;
  margin: 0 auto 16px;
  line-height: 1.7;
}
.positioning-emphasis {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: #0e0e11;
  max-width: 480px;
  margin: 20px auto 0;
  line-height: 1.55;
}
.positioning-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #e8e8f0;
  border: 1px solid #e8e8f0;
  border-radius: 16px;
  overflow: hidden;
  margin-top: 56px;
}
.positioning-pillar {
  background: #fff;
  padding: 32px 28px;
  text-align: left;
}
.pillar-number {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 12px;
}
.pillar-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: #0e0e11;
  margin-bottom: 8px;
}
.pillar-desc {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.55;
  margin: 0;
}

/* --- Thinking editorial card --- */
.thinking-section {
  background: #f7f7fb;
  padding: 96px 0;
  border-top: 1px solid #ebebf3;
}
.thinking-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.thinking-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0e0e11;
  color: rgba(255,255,255,0.6);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.thinking-heading {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 700;
  color: #0e0e11;
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}
.thinking-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.thinking-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.5;
  font-family: var(--font-display);
  font-weight: 500;
}
.thinking-list li::before {
  content: '—';
  color: var(--color-primary);
  flex-shrink: 0;
  font-weight: 700;
}
.thinking-card-img {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.thinking-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.thinking-card-img:hover img { transform: scale(1.03); }

/* --- Execution Architecture section --- */
.exec-arch-section {
  background: var(--color-dark-surface);
  padding: 96px 0;
}
.exec-arch-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.exec-arch-heading {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3vw, 2.75rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}
.exec-arch-body {
  color: rgba(255,255,255,0.55);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 28px;
}
.exec-arch-punch {
  color: rgba(255,255,255,0.9);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.55;
}
.exec-arch-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.exec-arch-item {
  display: flex;
  gap: 16px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.exec-arch-item:first-child { padding-top: 0; }
.exec-arch-item:last-child { border-bottom: none; }
.exec-arch-icon {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.exec-arch-item-body h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 4px;
}
.exec-arch-item-body p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  margin: 0;
  line-height: 1.5;
}

/* --- Scarcity section --- */
.scarcity-section {
  background: #fff;
  padding: 96px 0;
}
.scarcity-frame {
  max-width: 760px;
  margin: 0 auto;
  border: 1px solid #e8e8f0;
  border-radius: 24px;
  padding: 64px;
  text-align: center;
  background: #fafafa;
  position: relative;
  overflow: hidden;
}
.scarcity-frame::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 2px;
  background: var(--color-primary);
  border-radius: 0 0 2px 2px;
}
.scarcity-eyebrow {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 20px;
  display: block;
}
.scarcity-heading {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  font-weight: 700;
  color: #0e0e11;
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}
.scarcity-body {
  font-size: 1rem;
  color: #6b7280;
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 12px;
}
.scarcity-closer {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: #0e0e11;
  margin-top: 16px;
  line-height: 1.5;
}

/* ============================================
   RESPONSIVE ADDITIONS
   ============================================ */
@media (max-width: 991px) {
  .positioning-pillars { grid-template-columns: 1fr; }
  .thinking-inner { grid-template-columns: 1fr; }
  .exec-arch-inner { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 767px) {
  .positioning-section, .thinking-section, .exec-arch-section,
  .scarcity-section { padding: 64px 0; }
  .scarcity-frame { padding: 40px 24px; }
}

/* ============================================================
   CONSUMO BENTO CARDS — Hero + Feature + Pillars
   ============================================================ */

/* ---- Hero Bento Grid ---- */
.hero-bento {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 14px;
  max-width: 900px;
  margin: 0 auto;
}

/* Dark card (left) */
.hbento-dark {
  background: #0e0e11;
  border-radius: 22px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  min-height: 340px;
}
.hbento-icon-wrap {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 24px;
}
.hbento-heading {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
}
.hbento-body {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin-bottom: 28px;
  flex: 1;
}
.hbento-cta {
  display: inline-flex;
  align-items: center;
  background: #fff;
  color: #0e0e11 !important;
  border-radius: 100px;
  padding: 10px 20px;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  align-self: flex-start;
  transition: background 0.2s, transform 0.18s;
}
.hbento-cta:hover {
  background: #f0f0f5;
  transform: translateY(-1px);
}

/* Dashboard card (right) */
.hbento-dashboard {
  background: #fff;
  border-radius: 22px;
  padding: 32px 28px;
  border: 1.5px solid #e8e8f0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 340px;
}
.hbento-dash-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}
.hbento-dash-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: #0e0e11;
}
.hbento-dash-live {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 500;
  color: #22c55e;
  letter-spacing: 0.01em;
}
.hbento-dash-rows {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.hbento-dash-row {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f9f9fb;
  border: 1px solid #e8e8f0;
  border-radius: 12px;
  padding: 12px 16px;
}
.hbento-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.hbento-dot.green { background: #22c55e; }
.hbento-dot.amber { background: #f59e0b; }
.hbento-dash-name {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
  flex: 1;
}
.hbento-dash-score {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
}
.hbento-dash-score.green-txt { color: #16a34a; }
.hbento-dash-score.amber-txt { color: #d97706; }
.green-txt { color: #16a34a; }
.amber-txt { color: #d97706; }
.hbento-fix {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  color: #fff;
  background: var(--color-primary);
  border-radius: 100px;
  padding: 3px 10px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s;
}
.hbento-fix:hover { background: var(--color-primary-dark); color: #fff; }
.hbento-stat {
  display: flex;
  align-items: baseline;
  gap: 10px;
  border-top: 1px solid #e8e8f0;
  padding-top: 16px;
}
.hbento-stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
  letter-spacing: -0.04em;
}
.hbento-stat-label {
  font-family: var(--font-display);
  font-size: 0.82rem;
  color: #9ca3af;
  font-weight: 500;
  line-height: 1.35;
}

/* ---- Feature Bento (Positioning section) ---- */
.feature-bento {
  margin: 48px 0 24px;
}
.fbento-wide-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #0e0e11;
  border-radius: 22px;
  overflow: hidden;
  min-height: 320px;
}
.fbento-wide-left {
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
}
.fbento-icon-wrap {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 24px;
}
.fbento-heading {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.18;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}
.fbento-body {
  font-family: var(--font-display);
  font-size: 0.925rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  margin-bottom: 32px;
  flex: 1;
}
.fbento-cta {
  display: inline-flex;
  align-items: center;
  background: #fff;
  color: #0e0e11 !important;
  border-radius: 100px;
  padding: 11px 22px;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  align-self: flex-start;
  transition: background 0.2s, transform 0.18s;
}
.fbento-cta:hover {
  background: #f0f0f5;
  transform: translateY(-1px);
}
.fbento-wide-right {
  padding: 40px 36px;
  background: linear-gradient(135deg, rgba(25,79,143,0.12) 0%, rgba(25,79,143,0.04) 100%);
  border-left: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
}
.fbento-metrics-panel {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}
.fbento-metric-row {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.9);
  border-radius: 14px;
  padding: 14px 18px;
  backdrop-filter: blur(8px);
}
.fbento-metric-row.highlight {
  background: rgba(255,255,255,0.95);
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}
.fbento-sector-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.fbento-sector-dot.navy { background: var(--color-primary); }
.fbento-sector-dot.amber-d { background: #f59e0b; }
.fbento-sector {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 500;
  color: #1a1a2e;
  flex: 1;
}
.fbento-pct {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
}
.fbento-fix-sm {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  color: #fff;
  background: var(--color-primary);
  border-radius: 100px;
  padding: 3px 10px;
  text-decoration: none;
  white-space: nowrap;
}
.fbento-fix-sm:hover { color: #fff; background: var(--color-primary-dark); }

/* ---- Pillars Bento (3-col grid) ---- */
.pillars-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 14px;
}
.pillar-bento-card {
  background: #fff;
  border: 1.5px solid #e8e8f0;
  border-radius: 18px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.pillar-bento-card:hover {
  border-color: rgba(25,79,143,0.3);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.07);
}
.pillar-bento-num {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.08em;
}
.pillar-bento-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: #0e0e11;
  margin: 0;
  line-height: 1.2;
}
.pillar-bento-desc {
  font-family: var(--font-display);
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}
.pillar-bento-link {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  margin-top: 8px;
  transition: gap 0.15s;
  display: inline-flex;
  align-items: center;
}
.pillar-bento-link:hover { color: var(--color-primary-dark); }

/* ---- Thinking split card (Consumo-style) ---- */
.thinking-split-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fff;
  border: 1.5px solid #e8e8f0;
  border-radius: 22px;
  overflow: hidden;
  min-height: 400px;
}
.thinking-split-left {
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
}
.thinking-split-right {
  overflow: hidden;
}
.thinking-split-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.92) saturate(0.9);
  transition: transform 0.6s ease;
}
.thinking-split-card:hover .thinking-split-right img {
  transform: scale(1.03);
}
.thinking-punch {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: #0e0e11;
  margin-bottom: 28px;
  line-height: 1.55;
  flex: 1;
}
.thinking-punch span {
  color: #6b7280;
  font-weight: 400;
  display: block;
}

/* ---- Positioning section header ---- */
.positioning-header {
  max-width: 720px;
  text-align: center;
  margin: 0 auto 0;
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
  .hero-bento { grid-template-columns: 1fr; max-width: 560px; }
  .fbento-wide-card { grid-template-columns: 1fr; }
  .fbento-wide-right { border-left: none; border-top: 1px solid rgba(255,255,255,0.06); }
  .pillars-bento { grid-template-columns: 1fr; }
  .thinking-split-card { grid-template-columns: 1fr; }
  .thinking-split-right { min-height: 260px; }
}
@media (max-width: 767px) {
  .hbento-dark, .hbento-dashboard { min-height: 280px; }
  .fbento-wide-left { padding: 36px 28px; }
}

