/* ==========================================================================
   Gis Landing Page Styles — Apple Human Interface & Minimalist Premium Design
   Principles: Optical Typography, Translucent Materials, Spring Physics, Restraint
   Shared GIS tokens and existing commercial components remain in styles.css.
   ========================================================================== */

.landing-optimized {
  --landing-gutter: clamp(28px, 4.5vw, 80px);
  --landing-accent: #0071e3; /* Apple Signature Pro Blue */
  --landing-accent-hover: #0077ed;
  --landing-accent-tint: rgba(0, 113, 227, 0.08);
  --apple-bg: #fbfbfd;
  --apple-text-primary: #1d1d1f;
  --apple-text-secondary: #6e6e73;
  --apple-text-tertiary: #86868b;
  --apple-card-bg: rgba(255, 255, 255, 0.88);
  --apple-card-border: rgba(0, 0, 0, 0.06);
  --apple-card-border-top: rgba(255, 255, 255, 0.95);
  --apple-shadow-subtle: 0 2px 8px -2px rgba(0, 0, 0, 0.04), 0 12px 24px -8px rgba(0, 0, 0, 0.04);
  --apple-shadow-hover: 0 6px 16px -4px rgba(0, 0, 0, 0.06), 0 20px 40px -12px rgba(0, 0, 0, 0.08);
  --spring-easing: cubic-bezier(0.16, 1, 0.3, 1);
  --smooth-easing: cubic-bezier(0.4, 0, 0.2, 1);

  /* Apple System Typography with Optical Sizing */
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", "SF Pro", "Inter", -system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--apple-text-primary);
}

html[data-theme="light"] .landing-optimized {
  --landing-accent: #0071e3;
}

/* ==========================================================================
   Apple Accent System: Context, Attention, Decisions & Privacy
   ========================================================================== */
.landing-optimized .tone-cyan {
  --card-accent: #0071e3;
  --card-tint: #f0f6ff;
  --card-glow: rgba(0, 113, 227, 0.12);
}
.landing-optimized .tone-amber {
  --card-accent: #b25000;
  --card-tint: #fff8f0;
  --card-glow: rgba(178, 80, 0, 0.12);
}
.landing-optimized .tone-emerald {
  --card-accent: #1e7e34;
  --card-tint: #f2fbf4;
  --card-glow: rgba(30, 126, 52, 0.12);
}
.landing-optimized .tone-purple {
  --card-accent: #6e39b5;
  --card-tint: #f8f4ff;
  --card-glow: rgba(110, 57, 181, 0.12);
}

/* ==========================================================================
   Apple Micro-Animations (Springs & Subtle Living Physics)
   ========================================================================== */
@keyframes radarPing {
  0% { transform: scale(0.97); box-shadow: 0 0 0 0 rgba(178, 80, 0, 0.4); }
  70% { transform: scale(1); box-shadow: 0 0 0 5px rgba(178, 80, 0, 0); }
  100% { transform: scale(0.97); box-shadow: 0 0 0 0 rgba(178, 80, 0, 0); }
}

@keyframes livePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.92); }
}

@keyframes pulseEmerald {
  0%, 100% { opacity: 1; filter: drop-shadow(0 0 0 rgba(16, 185, 129, 0)); }
  50% { opacity: 0.88; filter: drop-shadow(0 0 6px rgba(16, 185, 129, 0.4)); }
}

@keyframes shimmerGlow {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes radarAmber {
  0% { box-shadow: 0 0 0 0 rgba(178, 80, 0, 0.5); }
  70% { box-shadow: 0 0 0 7px rgba(178, 80, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(178, 80, 0, 0); }
}

/* ==========================================================================
   Apple Scroll Reveal Animation (Slow, Elegant Entry on Scroll)
   ========================================================================== */
.landing-optimized .reveal-init {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s var(--smooth-easing), transform 0.85s var(--spring-easing);
  will-change: opacity, transform;
}

.landing-optimized .reveal-init.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger Delays for child cards and elements */
.landing-optimized .overview-grid .overview-card:nth-child(1) { transition-delay: 0.04s; }
.landing-optimized .overview-grid .overview-card:nth-child(2) { transition-delay: 0.12s; }
.landing-optimized .overview-grid .overview-card:nth-child(3) { transition-delay: 0.20s; }
.landing-optimized .overview-grid .overview-card:nth-child(4) { transition-delay: 0.28s; }

.landing-optimized .direction-steps .direction-card:nth-child(1) { transition-delay: 0.05s; }
.landing-optimized .direction-steps .direction-card:nth-child(2) { transition-delay: 0.14s; }
.landing-optimized .direction-steps .direction-card:nth-child(3) { transition-delay: 0.22s; }
.landing-optimized .direction-steps .direction-card:nth-child(4) { transition-delay: 0.30s; }
.landing-optimized .direction-steps .direction-card:nth-child(5) { transition-delay: 0.38s; }

.landing-optimized .confidence-principles > div:nth-child(1) { transition-delay: 0.04s; }
.landing-optimized .confidence-principles > div:nth-child(2) { transition-delay: 0.12s; }
.landing-optimized .confidence-principles > div:nth-child(3) { transition-delay: 0.20s; }
.landing-optimized .confidence-principles > div:nth-child(4) { transition-delay: 0.28s; }
.landing-optimized .confidence-principles > div:nth-child(5) { transition-delay: 0.36s; }


/* ==========================================================================
   Apple Frosted Glass & Bento Surfaces
   ========================================================================== */
.landing-optimized .landing-surface {
  position: relative;
  border: 1px solid var(--apple-card-border);
  border-top: 1px solid var(--apple-card-border-top);
  border-radius: 22px;
  background: var(--apple-card-bg);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  box-shadow: var(--apple-shadow-subtle);
  transition: transform 0.32s var(--spring-easing), box-shadow 0.32s var(--spring-easing), border-color 0.32s ease;
}

.landing-optimized .landing-surface:hover {
  transform: translateY(-3px);
  box-shadow: var(--apple-shadow-hover);
  border-color: color-mix(in srgb, var(--card-accent) 26%, rgba(0, 0, 0, 0.1));
}

.landing-optimized :is(button, a, .overview-card, .direction-card, .price-card):active {
  transform: scale(0.985);
  transition: transform 100ms ease-out;
}

.highlight-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.landing-optimized .feature-icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--card-accent) 18%, rgba(255, 255, 255, 0.8));
  color: var(--card-accent);
  background: var(--card-tint);
  box-shadow: 0 2px 8px -2px color-mix(in srgb, var(--card-accent) 22%, transparent);
  transition: transform 0.25s var(--spring-easing);
}

.landing-optimized .landing-surface:hover .feature-icon {
  transform: scale(1.06);
}

.landing-optimized .feature-icon svg {
  width: 20px;
  height: 20px;
  color: inherit;
}

.landing-optimized .highlight-top :is(.eyebrow, .step-number) {
  margin: 0;
  padding: 5px 11px;
  border: 1px solid color-mix(in srgb, var(--card-accent) 18%, rgba(255, 255, 255, 0.9));
  border-radius: 980px;
  background: var(--card-tint);
  color: var(--card-accent) !important;
  font: 600 10.5px/1.4 -apple-system, BlinkMacSystemFont, "SF Pro Text", system-ui, sans-serif;
  letter-spacing: .04em;
  text-align: right;
}

.landing-optimized [hidden] { display: none !important; }

/* Skip Link */
.landing-optimized .skip-link { top: -100px; transform: none; }
.landing-optimized .skip-link:focus { top: 12px; }

/* Section Layout & Optical Typography Scale */
.landing-optimized main > .section:not(.scroll-manifesto):not(.hero):not(.final) {
  width: 100%;
  max-width: none;
  min-height: 100vh;
  margin: 0;
  padding: clamp(96px, 11vh, 148px) var(--landing-gutter);
  box-sizing: border-box;
  overflow: visible;
  scroll-margin-top: 0;
}

.landing-optimized main > .pricing {
  width: 100%;
  max-width: none;
  margin: 0;
  min-height: 100vh;
  padding: clamp(96px, 11vh, 148px) var(--landing-gutter);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.landing-optimized :where(main > section:not(.scroll-manifesto), dialog) :is(h1, h2, h3, p) {
  text-wrap: pretty;
}

.landing-optimized :is(h2, h3) {
  color: var(--apple-text-primary);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro", system-ui, sans-serif;
}

.landing-optimized h2 {
  margin: 0 0 16px;
  font-size: clamp(32px, 3.3vw, 46px);
  line-height: 1.12;
  letter-spacing: -0.026em;
  font-weight: 700;
}

.landing-optimized h2 span {
  color: var(--landing-accent);
  background: none;
  -webkit-text-fill-color: currentColor;
}

.landing-optimized :where(main > section:not(.scroll-manifesto), dialog) p {
  color: var(--apple-text-secondary);
  font-size: 15.5px;
  line-height: 1.62;
  letter-spacing: -0.008em;
}

.landing-optimized .eyebrow,
.landing-optimized :is(.section-head, .final-copy, .direction-sidebar, .conversation-confidence-sidebar, .pricing-intro, .faq-sidebar, .overview-head) .eyebrow,
.landing-optimized main > .section .eyebrow,
.landing-optimized dialog .eyebrow {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro", system-ui, sans-serif !important;
  color: var(--landing-accent, #0071e3) !important;
  font-size: 11.5px !important;
  line-height: 1.4 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  font-weight: 700 !important;
  margin: 0 0 12px !important;
  padding: 0 !important;
  border: 0 !important;
  background: none !important;
  border-radius: 0 !important;
  max-width: 100% !important;
  display: inline-block !important;
}

.landing-optimized .section-head {
  max-width: none;
  min-width: 0;
  margin: 0 0 36px;
  position: static;
}

.landing-optimized :is(.section-head, .final-copy) h2,
.landing-optimized main > .section .section-head h2,
.landing-optimized .overview-head h2,
.landing-optimized .direction-sidebar h2,
.landing-optimized .conversation-confidence-sidebar h2,
.landing-optimized .pricing-intro .section-head h2,
.landing-optimized .faq-sidebar h2,
.landing-optimized .final .final-copy h2 {
  font-size: clamp(32px, 3.3vw, 46px) !important;
  line-height: 1.12 !important;
  letter-spacing: -0.026em !important;
  font-weight: 700 !important;
  max-width: none !important;
  margin: 0 0 14px !important;
}

.landing-optimized :is(.price-card, .pricing-truth, .faq-list details, .final-actions) {
  opacity: 1;
  transform: none;
  filter: none;
  pointer-events: auto;
  will-change: auto;
}

.landing-optimized [id] { scroll-margin-top: 100px; }
.landing-optimized #inicio { --landing-gutter: clamp(18px, 7vw, 112px); scroll-margin-top: 0; }
.landing-optimized .manifesto-shell { grid-template-rows: minmax(0, 1fr) auto; }

.landing-optimized :is(button, a, summary, input, select, textarea):focus-visible {
  outline: 3px solid rgba(0, 113, 227, 0.4);
  outline-offset: 3px;
}

.landing-optimized :is(.primary-btn, .secondary-btn) {
  min-height: 48px;
  font-size: 14.5px;
  letter-spacing: -0.01em;
  border-radius: 980px; /* Apple signature pill buttons */
  font-weight: 600;
  transition: transform 0.2s var(--spring-easing), box-shadow 0.2s var(--spring-easing), background-color 0.2s ease;
}

.landing-optimized .primary-btn {
  background: #0071e3;
  color: #ffffff;
  box-shadow: 0 4px 14px -4px rgba(0, 113, 227, 0.45);
}

.landing-optimized .primary-btn:hover {
  background: #0077ed;
  box-shadow: 0 6px 20px -4px rgba(0, 113, 227, 0.55);
}

.landing-optimized .secondary-btn {
  background: rgba(0, 0, 0, 0.05);
  color: var(--apple-text-primary);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.landing-optimized .secondary-btn:hover {
  background: rgba(0, 0, 0, 0.08);
}

.landing-optimized .nav-links { position: static; transform: none; }
.landing-optimized .nav {
  max-width: none;
  width: calc(100% - (clamp(28px, 4.5vw, 80px) * 2));
  margin: 0 auto;
  padding: 8px 18px 8px 24px;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
}

.landing-app-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  min-height: 44px;
  color: var(--apple-text-secondary);
  font-size: 13.5px;
  letter-spacing: -0.008em;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.landing-app-link:hover { color: var(--apple-text-primary); }

/* ==========================================================================
   Section 1: Overview & Pipeline (#que-es-gis)
   ========================================================================== */
.landing-optimized main > .gis-overview {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: clamp(96px, 11vh, 148px) var(--landing-gutter);
  box-sizing: border-box;
}
.overview-shell {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  box-sizing: border-box;
}
.overview-head { text-align: center; width: 100%; max-width: 100%; margin: 0 0 28px; }
.overview-head h2 { width: 100%; max-width: 100%; text-align: center; margin: 0 0 14px; }
.overview-lead { font-size: 15.5px; line-height: 1.62; color: var(--apple-text-secondary); width: 100%; max-width: 100%; margin: 0 auto; text-align: center; }
.overview-lead strong { color: var(--apple-text-primary); }

.overview-pipeline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(12px);
  padding: 14px 22px;
  border-radius: 18px;
  border: 1px solid rgba(47, 91, 255, 0.12);
  box-shadow: 0 6px 20px -8px rgba(0, 0, 0, 0.06);
  box-sizing: border-box;
}
.pipeline-step {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
}
.pipeline-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--panel2);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--muted-bright);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.pipeline-step.active .pipeline-icon {
  background: #eff9ff;
  border-color: #b8d8ee;
  color: #0369a1;
  box-shadow: 0 2px 10px -2px rgba(3, 105, 161, 0.3);
}
.pipeline-step.success .pipeline-icon {
  background: #effbf5;
  border-color: #b5e1ce;
  color: #047857;
}
.pipeline-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.pipeline-step-header { display: flex; align-items: center; gap: 6px; }
.pipeline-text strong { font-size: 12.5px; color: var(--text); line-height: 1.25; white-space: nowrap; }
.pipeline-text span { font-size: 10.5px; color: var(--muted); line-height: 1.25; }
.pipeline-micro-badge {
  font: 700 9px/1 var(--font-body);
  padding: 2px 6px;
  border-radius: 4px;
  background: var(--panel2);
  color: var(--muted-bright);
  border: 1px solid var(--line);
  letter-spacing: 0.02em;
}
.pipeline-micro-badge.pulse {
  background: #eff9ff;
  color: #0369a1;
  border-color: #b8d8ee;
  animation: radarPing 3s infinite ease-in-out;
}
.pipeline-micro-badge.success {
  background: #effbf5;
  color: #047857;
  border-color: #b5e1ce;
}
.pipeline-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  flex-shrink: 0;
}

.overview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  width: 100%;
}
.overview-card {
  padding: 26px 24px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
  min-width: 0;
}
.card-head-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 2px;
}
.overview-card .feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--card-tint, #eff9ff);
  color: var(--card-accent, #0369a1);
  border: 1px solid color-mix(in srgb, var(--card-accent, #0369a1) 25%, transparent);
}
.overview-card .feature-icon svg { width: 18px; height: 18px; }
.overview-tag {
  font: 700 9.5px/1.2 var(--font-body);
  padding: 3px 8px;
  border-radius: 6px;
  background: var(--card-tint);
  color: var(--card-accent);
  border: 1px solid color-mix(in srgb, var(--card-accent) 24%, transparent);
  letter-spacing: 0.03em;
}
.overview-card strong { font-size: 14.5px; color: var(--apple-text-primary); line-height: 1.35; font-weight: 700; }
.overview-card p { font-size: 13.5px; line-height: 1.55; color: var(--apple-text-secondary); margin: 0; }
.pharma-chip {
  font: 700 9.5px/1 var(--font-body);
  padding: 3px 8px;
  border-radius: 6px;
  background: #f5f3ff;
  color: #7c3aed;
  border: 1px solid #ddd6fe;
  letter-spacing: .02em;
}

/* Micro-graphics & Animations for Overview Cards */
.card-mini-graphic {
  margin-top: auto;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 11px;
}
.card-mesh-nodes {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding: 4px 0;
}
.card-mesh-nodes::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, #0071e3, #10b981, #f59e0b, #7c3aed);
  z-index: 1;
  opacity: 0.5;
}
.mesh-node {
  position: relative;
  z-index: 2;
  font-size: 9.5px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 6px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.06);
  color: var(--apple-text-primary);
}
.mesh-node.active {
  border-color: #0071e3;
  color: #0071e3;
  animation: radarPing 2.5s infinite ease-in-out;
}
.cpm-timeline-mini {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cpm-radar-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff8eb;
  border: 1px solid #fde68a;
  border-radius: 6px;
  padding: 4px 8px;
  color: #b25000;
  font-size: 10.5px;
  font-weight: 600;
}
.cpm-radar-bar span:first-child {
  display: flex;
  align-items: center;
  gap: 4px;
}
.quick-report-meter {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.report-track {
  height: 7px;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}
.report-fill-anim {
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, #10b981, #059669);
  border-radius: 4px;
  animation: fillProgress 3s infinite ease-in-out;
}
@keyframes fillProgress {
  0% { width: 15%; opacity: 0.7; }
  50% { width: 100%; opacity: 1; }
  100% { width: 100%; opacity: 0.9; }
}
.report-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10.5px;
  font-weight: 600;
  color: #047857;
}
.audit-seal-mini {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f5f3ff;
  border: 1px solid #ddd6fe;
  border-radius: 6px;
  padding: 4px 8px;
  font-size: 10px;
  font-weight: 600;
  color: #7c3aed;
}

/* ==========================================================================
   Section 2: Direction Flow (#capacidades)
   ========================================================================== */
.landing-optimized main > .section.direction-flow,
.landing-optimized main > #capacidades,
.landing-optimized main > .direction-flow,
.landing-optimized .direction-flow {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: 64px;
  align-items: start;
  align-content: start;
}
.landing-optimized .direction-sidebar {
  position: sticky;
  top: 110px;
  align-self: start;
  margin-bottom: 0;
  text-align: left;
}
.landing-optimized .direction-sidebar .eyebrow {
  display: inline-block;
  margin-bottom: 12px;
}
.direction-lead {
  font-size: 15.5px;
  line-height: 1.62;
  color: var(--apple-text-secondary);
  max-width: 44ch;
  margin: 14px 0 0;
  letter-spacing: -0.008em;
  text-wrap: pretty;
}

.sidebar-kpi-highlight {
  margin-top: 24px;
  padding: 18px 22px;
  border-radius: 18px;
}
.kpi-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.kpi-mini-num {
  display: block;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--card-accent);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", system-ui, sans-serif;
}
.kpi-mini-lbl {
  display: block;
  font-size: 11.5px;
  color: var(--apple-text-secondary);
  line-height: 1.38;
  margin-top: 3px;
  letter-spacing: -0.005em;
}

.direction-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin: 0;
  padding: 0;
}
.direction-card {
  display: flex;
  flex-direction: column;
  padding: 30px 28px;
  border-radius: 22px;
  min-width: 0;
}
.step-number {
  color: var(--landing-accent);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", system-ui, sans-serif;
}
.direction-card h3 {
  font-size: 22px;
  margin: 0 0 10px;
  font-weight: 700;
  letter-spacing: -0.018em;
  line-height: 1.25;
}
.direction-card .card-desc {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--apple-text-secondary);
  margin: 0 0 22px;
  min-height: auto;
  letter-spacing: -0.006em;
}

.direction-preview-box {
  margin-top: auto;
  padding: 18px 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid color-mix(in srgb, var(--card-accent) 20%, rgba(0, 0, 0, 0.06));
  box-shadow: 0 4px 16px -6px color-mix(in srgb, var(--card-accent) 18%, transparent);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.dp-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11.5px;
}
.dp-badge {
  font: 600 10.5px/1.4 -apple-system, BlinkMacSystemFont, "SF Pro Text", system-ui, sans-serif;
  padding: 4px 10px;
  border-radius: 6px;
  letter-spacing: .02em;
}
.dp-badge-cyan { background: #eff6ff; color: #0071e3; border: 1px solid #bfdbfe; }
.dp-badge-amber {
  background: #fff8eb;
  color: #b25000;
  border: 1px solid #fde68a;
  animation: radarPing 3s infinite ease-in-out;
}
.dp-badge-emerald { background: #f0fdf4; color: #1e7e34; border: 1px solid #bbf7d0; }
.dp-time { font-size: 11px; color: var(--apple-text-tertiary); font-weight: 500; }
.dp-content { display: flex; flex-direction: column; gap: 8px; font-size: 13px; }
.dp-summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.dp-summary-row strong { font-size: 14px; color: var(--apple-text-primary); font-weight: 600; }
.dp-task-count {
  font: 600 10.5px/1.2 -apple-system, BlinkMacSystemFont, "SF Pro Text", system-ui, sans-serif;
  padding: 3px 8px;
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.04);
  color: var(--apple-text-secondary);
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.dp-task-count.risk { background: #fff8eb; color: #b25000; border-color: #fde68a; }
.dp-task-count.success { background: #f0fdf4; color: #1e7e34; border-color: #bbf7d0; }
.dp-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--apple-text-secondary);
  font-size: 12.5px;
  line-height: 1.45;
}
.dp-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.dp-dot.cyan { background: #0071e3; }
.dp-dot.amber { background: #b25000; }
.dp-dot.emerald { background: #1e7e34; }
.dp-impact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  border-radius: 8px;
  background: #fff8eb;
  border: 1px solid #fde68a;
  font-size: 12px;
  color: #92400e;
}
.dp-impact strong { color: #b25000; font-size: 12.5px; font-weight: 600; }
.dp-btn-preview {
  padding: 8px 14px;
  border-radius: 980px;
  background: #1e7e34;
  color: #ffffff;
  font-weight: 600;
  font-size: 12px;
  text-align: center;
  box-shadow: 0 2px 8px -2px rgba(30, 126, 52, 0.4);
  transition: transform 0.2s var(--spring-easing), background-color 0.2s ease;
  cursor: pointer;
}
.dp-btn-preview:hover {
  background: #248a3d;
  transform: translateY(-1px);
}
.dp-footer {
  padding-top: 10px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 11px;
}
.dp-footer span { color: var(--apple-text-tertiary); }
.dp-footer strong { color: var(--apple-text-primary); font-size: 12px; font-weight: 600; }

.dp-tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 4px 0;
}
.dp-tag-chip {
  font-size: 11px;
  font-weight: 500;
  padding: 3px 8px;
  border-radius: 6px;
  background: rgba(0, 113, 227, 0.06);
  color: #0071e3;
  border: 1px solid rgba(0, 113, 227, 0.14);
}
/* Visual Gantt Chart Styles */
.dp-gantt-visual-box {
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 16px -6px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
}
.dp-gantt-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  background: #f8fafc;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 11px;
}
.dp-gantt-badges {
  display: flex;
  align-items: center;
  gap: 6px;
}
.dp-gantt-chip {
  font-size: 10px;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 4px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: var(--apple-text-secondary);
}
.dp-gantt-chip.active {
  background: #eff6ff;
  color: #0071e3;
  border-color: #bfdbfe;
}
.dp-gantt-timeline-head {
  display: grid;
  grid-template-columns: 100px repeat(5, 1fr);
  padding: 6px 12px;
  background: #f1f5f9;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 10px;
  font-weight: 600;
  color: var(--apple-text-tertiary);
  text-align: center;
}
.dp-gantt-timeline-head span:first-child {
  text-align: left;
}
.dp-gantt-board {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 8px 12px;
  gap: 8px;
}
.dp-gantt-grid-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 112px;
  right: 12px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  pointer-events: none;
}
.dp-gantt-col-track {
  border-right: 1px dashed rgba(0, 0, 0, 0.06);
  height: 100%;
}
.dp-gantt-today-marker {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 58%;
  border-left: 2px solid #ef4444;
  z-index: 4;
}
.dp-gantt-today-badge {
  position: absolute;
  top: 2px;
  left: -13px;
  background: #ef4444;
  color: #ffffff;
  font-size: 8px;
  font-weight: 700;
  padding: 1px 4px;
  border-radius: 3px;
  text-transform: uppercase;
}
.dp-gantt-row-item {
  position: relative;
  display: grid;
  grid-template-columns: 100px 1fr;
  align-items: center;
  height: 24px;
  z-index: 2;
}
.dp-gantt-task-name {
  font-size: 11px;
  font-weight: 600;
  color: var(--apple-text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-right: 6px;
}
.dp-gantt-track-area {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}
.dp-gantt-bar-item {
  position: absolute;
  height: 18px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6px;
  font-size: 9.5px;
  font-weight: 600;
  color: #ffffff;
  white-space: nowrap;
  box-shadow: 0 2px 6px -2px rgba(0, 0, 0, 0.25);
}
.dp-gantt-bar-item.emerald {
  background: linear-gradient(90deg, #10b981, #059669);
  left: 0%;
  width: 38%;
}
.dp-gantt-bar-item.amber-critical {
  background: linear-gradient(90deg, #f59e0b, #d97706);
  border: 1.5px solid #b45309;
  left: 30%;
  width: 48%;
  box-shadow: 0 0 12px -2px rgba(217, 119, 6, 0.5);
  animation: radarPing 3s infinite ease-in-out;
}
.dp-gantt-bar-item.purple {
  background: linear-gradient(90deg, #8b5cf6, #7c3aed);
  left: 54%;
  width: 32%;
}
.dp-gantt-milestone-diamond {
  position: absolute;
  left: 92%;
  width: 14px;
  height: 14px;
  background: #2563eb;
  transform: rotate(45deg);
  border: 2px solid #ffffff;
  box-shadow: 0 2px 6px rgba(37, 99, 235, 0.4);
}
.dp-split-roles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 4px 0;
}
.dp-role-col {
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.04);
  font-size: 11.5px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.dp-role-title {
  font-weight: 600;
  font-size: 11px;
  color: var(--apple-text-primary);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Optimization Recovery Meter (Step 03) */
.dp-recovery-meter {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: rgba(0, 0, 0, 0.02);
  border-radius: 10px;
  padding: 8px 10px;
  border: 1px solid rgba(0, 0, 0, 0.04);
}
.dp-rec-row {
  display: grid;
  grid-template-columns: 80px 1fr 60px;
  align-items: center;
  gap: 8px;
  font-size: 11px;
}
.dp-rec-label { color: var(--apple-text-secondary); font-weight: 500; }
.dp-rec-track {
  height: 7px;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 4px;
  overflow: hidden;
}
.dp-rec-fill {
  height: 100%;
  border-radius: 4px;
  background: #94a3b8;
}
.dp-rec-fill.active-rec {
  background: linear-gradient(90deg, #10b981, #059669);
  animation: pulseEmerald 3s infinite ease-in-out;
}
.dp-rec-val { font-weight: 600; font-size: 11px; text-align: right; color: var(--apple-text-primary); }

/* Executive Health Gauge (Step 04 Legacy) */
.dp-health-gauge {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 10px;
  border-radius: 10px;
  background: rgba(245, 158, 11, 0.06);
  border: 1px solid rgba(245, 158, 11, 0.2);
}
.dp-gauge-info {
  display: flex;
  align-items: center;
  gap: 8px;
}
.dp-gauge-badge {
  font-size: 14px;
  font-weight: 700;
  color: #b25000;
  padding: 2px 6px;
  background: #ffffff;
  border-radius: 6px;
  border: 1px solid #fde68a;
}
.dp-gauge-text {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--apple-text-primary);
}

/* Step 04: Pre-Committee Notification & Email Alert Graphic */
.dp-mail-visual-box {
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 16px -6px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 10px 12px;
}
.dp-mail-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 11px;
}
.dp-mail-sender-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--apple-text-primary);
}
.dp-mail-avatar {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  background: #0071e3;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
}
.dp-mail-dispatch-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 980px;
  background: #fff8eb;
  color: #b25000;
  border: 1px solid #fde68a;
}
.dp-mail-pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #b25000;
  animation: radarAmber 2.4s infinite ease-in-out;
}
.dp-mail-subject {
  font-size: 12px;
  font-weight: 600;
  color: var(--apple-text-primary);
  line-height: 1.35;
}
.dp-mail-alert-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 8px;
  background: #fffdf7;
  border: 1px solid #fed7aa;
  font-size: 11px;
  color: #9a3412;
}
.dp-mail-alert-tag {
  font-weight: 700;
  font-size: 10px;
  padding: 1px 5px;
  border-radius: 4px;
  background: #ffedd5;
  color: #c2410c;
  border: 1px solid #fdba74;
  white-space: nowrap;
}
.dp-mail-stats-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 10.5px;
  color: var(--apple-text-secondary);
  padding-top: 4px;
  border-top: 1px dashed rgba(0, 0, 0, 0.08);
}
.dp-mail-stats-row strong {
  color: #1e7e34;
  font-weight: 600;
}

/* Step 05: Financial Intelligence & Profitability Graphic */
.dp-fin-visual-box {
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 16px -6px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 10px 12px;
}
.dp-fin-kpi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.dp-fin-kpi-cell {
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  padding: 6px 7px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.dp-fin-kpi-lbl {
  font-size: 9.5px;
  color: var(--apple-text-tertiary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .02em;
}
.dp-fin-kpi-val {
  font-size: 12.5px;
  font-weight: 700;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", system-ui, sans-serif;
  letter-spacing: -0.01em;
}
.dp-fin-kpi-val.positive {
  color: #059669;
}
.dp-fin-kpi-val.alert {
  color: #d97706;
}
.dp-fin-kpi-val.neutral {
  color: #2563eb;
}
.dp-fin-meter-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.dp-fin-meter-labels {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 10.5px;
  color: var(--apple-text-secondary);
}
.dp-fin-meter-labels strong {
  color: #059669;
}
.dp-fin-track {
  height: 8px;
  border-radius: 980px;
  background: rgba(0, 0, 0, 0.06);
  overflow: hidden;
  position: relative;
}
.dp-fin-bar {
  height: 100%;
  width: 76%;
  border-radius: 980px;
  background: linear-gradient(90deg, #10b981 0%, #059669 50%, #34d399 100%);
  background-size: 200% 100%;
  animation: shimmerGlow 3.5s infinite linear;
  box-shadow: 0 0 10px -1px rgba(16, 185, 129, 0.4);
}
.dp-fin-tag-row {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
}
.dp-fin-tag {
  font-size: 9.5px;
  font-weight: 600;
  padding: 1px 6px;
  border-radius: 4px;
  background: #f0fdf4;
  color: #166534;
  border: 1px solid #bbf7d0;
}

/* Customer Benefit Callouts for Section 3 (IA Gobernada - CEO & PM Perspective) */
.benefit-gain-loss-box {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 12px 0 16px;
  padding: 10px 13px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 8px -2px rgba(0, 0, 0, 0.03);
  font-size: 11.5px;
  line-height: 1.5;
}
.benefit-gain-loss-box .bgl-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.benefit-gain-loss-box .bgl-icon {
  font-size: 13px;
  line-height: 1.2;
  flex-shrink: 0;
}
.benefit-gain-loss-box .bgl-text {
  color: var(--apple-text-secondary);
}
.benefit-gain-loss-box .bgl-item.company strong {
  color: #0071e3;
  font-weight: 600;
}
.benefit-gain-loss-box .bgl-item.leader strong {
  color: #1e7e34;
  font-weight: 600;
}
.sidebar-benefit-card {
  margin-top: 22px;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(0, 113, 227, 0.04);
  border: 1px solid rgba(0, 113, 227, 0.12);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sidebar-benefit-header {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: #0071e3;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.sidebar-benefit-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 12px;
  line-height: 1.48;
  color: var(--apple-text-secondary);
}
.sidebar-benefit-item strong {
  color: var(--apple-text-primary);
  font-size: 12px;
}

/* Versus Mini Grid: Gis (Director IA) vs Traditional Task Tools */
.versus-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 12px 0 14px;
}
.versus-col {
  padding: 10px 12px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 11px;
  line-height: 1.45;
}
.versus-col.traditional {
  background: rgba(239, 68, 68, 0.04);
  border: 1px solid rgba(239, 68, 68, 0.14);
}
.versus-col.gis {
  background: rgba(16, 185, 129, 0.05);
  border: 1px solid rgba(16, 185, 129, 0.18);
}
.versus-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.versus-col.traditional .versus-tag {
  color: #b91c1c;
}
.versus-col.gis .versus-tag {
  color: #047857;
}
.versus-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.versus-col li {
  display: flex;
  align-items: flex-start;
  gap: 5px;
  color: var(--apple-text-secondary);
}

/* Graphics for Confidence Cards (Section 3) */
.confidence-mini-graphic {
  margin: 6px 0;
  padding: 8px 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
}
.crypto-cipher-flow {
  display: flex;
  align-items: center;
  gap: 6px;
  width: 100%;
  justify-content: space-between;
  font-size: 10.5px;
}
.crypto-tag-raw {
  font-weight: 600;
  color: #7c3aed;
  background: #f5f3ff;
  padding: 2px 6px;
  border-radius: 4px;
  border: 1px solid #ddd6fe;
}
.crypto-tag-hash {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 9.5px;
  color: #059669;
  background: #ecfdf5;
  padding: 2px 6px;
  border-radius: 4px;
  border: 1px solid #a7f3d0;
}
.audit-log-badge {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-size: 11px;
}
.audit-log-badge strong {
  font-size: 11px;
  color: #0369a1;
  font-family: ui-monospace, monospace;
}
.toggle-approval-mock {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.toggle-btn-mock {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
  background: #effbf5;
  color: #047857;
  border: 1px solid #b5e1ce;
  display: flex;
  align-items: center;
  gap: 4px;
}
.seats-calc-mini {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.seats-pill {
  font-size: 10.5px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 4px;
  background: #fff8eb;
  color: #b25000;
  border: 1px solid #fde68a;
}

/* ==========================================================================
   Section 3: Conversation & Confidence Grid (#arquitectura)
   ========================================================================== */
.landing-optimized main > .conversation-confidence-section { display: block; }
.conversation-confidence-grid {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: 64px;
  align-items: start;
  align-content: start;
}
.landing-optimized .conversation-confidence-sidebar {
  position: sticky;
  top: 110px;
  align-self: start;
  margin-bottom: 0;
  text-align: left;
}
.conversation-confidence-sidebar .eyebrow {
  display: inline-block;
  margin-bottom: 12px;
}
.conversation-confidence-sidebar h2 {
  margin: 0 0 14px;
}
.conversation-confidence-lead {
  font-size: 15.5px;
  line-height: 1.62;
  color: var(--apple-text-secondary);
  max-width: 44ch;
  margin: 14px 0 0;
  letter-spacing: -0.008em;
}
.conversation-confidence-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
  min-width: 0;
}
.conversation-panel, .confidence-panel {
  display: flex;
  flex-direction: column;
  gap: 28px;
  min-width: 0;
}

.context-chips {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 2px;
}
.context-chips span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border: 1px solid rgba(0, 113, 227, 0.2);
  border-radius: 980px;
  background: rgba(0, 113, 227, 0.06);
  padding: 5px 11px;
  color: #0071e3;
  font-size: 11px;
  font-weight: 600;
  transition: transform 0.2s var(--spring-easing), background-color 0.2s ease;
}
.context-chips span:hover {
  transform: translateY(-1px);
  background: rgba(0, 113, 227, 0.1);
}
.context-chips span:nth-child(3n) { border-color: rgba(30, 126, 52, 0.22); background: rgba(30, 126, 52, 0.06); color: #1e7e34; }
.context-chips span:nth-child(3n+2) { border-color: rgba(110, 57, 181, 0.22); background: rgba(110, 57, 181, 0.06); color: #6e39b5; }
.chip-icon { color: inherit; }

.conversation-demo {
  border: 1px solid var(--apple-card-border);
  background: #ffffff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--apple-shadow-subtle);
  min-width: 0;
}
.landing-optimized .conversation-demo .preview-top {
  background: #f8fafc;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.preview-brand-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}
.preview-brand { font-size: 20px; font-weight: 700; letter-spacing: -0.02em; font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", system-ui, sans-serif; }
.preview-brand > span { font-size: 12px; font-weight: 500; color: var(--apple-text-secondary); margin-left: 6px; }
.ai-runtime-pill {
  font: 600 9.5px/1 -apple-system, BlinkMacSystemFont, "SF Pro Text", system-ui, sans-serif;
  padding: 3px 8px;
  border-radius: 6px;
  background: #0071e3;
  color: #ffffff;
  letter-spacing: 0.03em;
}
.conversation-demo .example-label {
  padding: 4px 9px;
  border: 1px solid rgba(0, 113, 227, 0.2);
  border-radius: 980px;
  color: #0071e3;
  background: white;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.conversation-body { padding: 18px 20px; }
.landing-optimized .arch-question {
  width: fit-content;
  max-width: calc(100% - 20px);
  margin: 0 0 12px auto;
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.45;
  padding: 8px 14px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: var(--apple-text-primary);
  background: #f4f4f6;
  border-radius: 16px 16px 4px 16px;
}
.conversation-answer { display: flex; gap: 10px; align-items: start; }
.conversation-demo .conversation-answer > div {
  padding: 12px 15px;
  border: 1px solid #fde68a;
  border-radius: 14px;
  background: #fffdfa;
}
.answer-avatar {
  display: inline-grid;
  place-items: center;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #0071e3;
  color: white;
  font-weight: 700;
  font-size: 12px;
}
.conversation-answer strong { color: var(--apple-text-primary); font-size: 13.5px; line-height: 1.35; font-weight: 600; }
.conversation-answer p { font-size: 13px; margin: 4px 0 0; line-height: 1.45; color: var(--apple-text-secondary); }
.landing-optimized .arch-sources {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding-left: 38px;
  margin: 6px 0 12px;
}
.landing-optimized .arch-sources span {
  color: var(--apple-text-secondary);
  background: #f4f4f6;
  border: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 10.5px;
  padding: 3px 8px;
  border-radius: 6px;
  font-weight: 500;
}
.question-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding-top: 12px;
  align-items: center;
}
.question-options button {
  display: inline-flex;
  align-items: center;
  width: auto;
  flex: 0 1 auto;
  min-height: 32px;
  padding: 5px 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #f4f4f6;
  color: var(--apple-text-secondary);
  font: 500 12px/1.35 -apple-system, BlinkMacSystemFont, "SF Pro Text", system-ui, sans-serif;
  border-radius: 980px;
  cursor: pointer;
  text-align: left;
  transition: all 0.18s ease;
}
.question-options button[aria-pressed="true"], .question-options button:hover {
  border-color: rgba(0, 113, 227, 0.35);
  background: #eff6ff;
  color: #0071e3;
  font-weight: 600;
}

/* Confidence Principles — Vertical Scroll Stack */
.confidence-principles {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
.confidence-principles > div {
  padding: 30px 28px;
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.principle-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
}
.trust-badge {
  font: 600 10.5px/1.2 -apple-system, BlinkMacSystemFont, "SF Pro Text", system-ui, sans-serif;
  padding: 4px 9px;
  border-radius: 6px;
  background: var(--card-tint);
  color: var(--card-accent);
  border: 1px solid color-mix(in srgb, var(--card-accent) 20%, transparent);
  letter-spacing: .02em;
}
.confidence-principles svg { width: 20px; height: 20px; color: var(--landing-accent); }
.confidence-principles h3 { font-size: 17px; line-height: 1.3; margin: 0; font-weight: 700; letter-spacing: -0.015em; }
.confidence-principles p { margin: 0; font-size: 13.5px; line-height: 1.55; color: var(--apple-text-secondary); }
.confidence-proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
.confidence-proof-row span {
  font: 600 11px/1.4 -apple-system, BlinkMacSystemFont, "SF Pro Text", system-ui, sans-serif;
  color: var(--apple-text-secondary);
  background: rgba(0, 0, 0, 0.035);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 6px;
  padding: 3px 8px;
  letter-spacing: -0.005em;
}
.confidence-principles code {
  font-size: 11.5px;
  padding: 2px 5px;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.confidence-trust-box {
  padding: 16px 22px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--apple-card-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
  transition: transform 0.2s var(--spring-easing), border-color 0.2s ease;
}
.confidence-trust-box:hover {
  transform: translateY(-2px);
  border-color: var(--landing-accent);
}

.confidence-trust-box .text-link {
  font-size: 13px;
  font-weight: 600;
  gap: 6px;
  min-height: 36px;
  padding: 4px 0;
}
.text-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  min-height: 36px;
  padding: 4px 0;
  border: 0;
  background: none;
  color: var(--landing-accent);
  font: 600 13px/1.5 -apple-system, BlinkMacSystemFont, "SF Pro Text", system-ui, sans-serif;
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.text-link:hover { opacity: 0.82; }

/* ==========================================================================
   Section 4: Pricing & Calculator (#precios)
   ========================================================================== */
.landing-optimized .pricing,
.landing-optimized main > .pricing {
  width: 100%;
  max-width: none;
  margin: 0;
  min-height: 100vh;
  padding: clamp(28px, 3.8vh, 44px) var(--landing-gutter);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.landing-optimized .pricing-intro {
  width: 100%;
  max-width: 100%;
  margin-bottom: 10px;
}
.landing-optimized .pricing-intro .section-head {
  width: 100%;
  max-width: 100%;
  text-align: center;
  margin-bottom: 0;
}
.landing-optimized .pricing-intro .section-head h2 {
  width: 100%;
  max-width: 100%;
  text-align: center;
  margin: 0 0 4px !important;
}
.landing-optimized .pricing-intro .section-head > p:not(.eyebrow),
.landing-optimized .pricing-lead {
  width: 100%;
  max-width: 84ch;
  font-size: 15.5px !important;
  line-height: 1.62 !important;
  color: var(--apple-text-secondary) !important;
  margin: 0 auto;
  text-align: center;
  letter-spacing: -0.008em;
}

/* Unified Master Card: Dirección con IA + Calculadora */
.landing-optimized .pricing-unified-card {
  width: 100%;
  max-width: 100%;
  padding: clamp(20px, 3vw, 28px);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-top: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 12px 36px -10px rgba(0, 113, 227, 0.08), 0 2px 10px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.unified-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding-bottom: 14px;
  margin-bottom: 18px;
  gap: 16px;
  flex-wrap: wrap;
}

.unified-header-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.unified-header-left h3 {
  font-size: 20px !important;
  font-weight: 700 !important;
  margin: 3px 0 0 !important;
  letter-spacing: -0.02em !important;
  color: var(--apple-text-primary) !important;
}

.unified-header-rate {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  padding: 8px 14px;
  background: rgba(0, 113, 227, 0.05);
  border: 1px solid rgba(0, 113, 227, 0.14);
  border-radius: 12px;
}

.unified-header-rate .rate-badge-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  color: #0071e3;
}

.unified-header-rate strong {
  font-size: 24px;
  font-weight: 800;
  color: #0071e3;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.unified-header-rate span {
  font-size: 11px;
  color: var(--apple-text-secondary);
  line-height: 1.2;
}

.unified-card-body {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.92fr);
  gap: 24px;
  align-items: stretch;
  width: 100%;
}

.unified-calc-col {
  display: flex;
  flex-direction: column;
  min-width: 0;
  gap: 14px;
}

.unified-features-col {
  display: flex;
  flex-direction: column;
  min-width: 0;
  border-left: 1px solid rgba(0, 0, 0, 0.06);
  padding-left: 24px;
  gap: 12px;
}

/* Control Group */
.calc-control-group {
  background: #f8fafc;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.calc-user-counter-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.calc-counter-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.calc-counter-label {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--apple-text-primary);
}

.calc-counter-hint {
  font-size: 11px;
  color: var(--apple-text-tertiary);
}

.calc-counter-stepper {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #ffffff;
  padding: 4px 6px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.calc-counter-btn {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: #f4f6f8;
  color: var(--apple-text-primary);
  font-size: 18px;
  font-weight: 700;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 0.18s var(--spring-easing);
  line-height: 1;
  user-select: none;
}

.calc-counter-btn:hover {
  background: #0071e3;
  border-color: #0071e3;
  color: #ffffff;
  transform: scale(1.06);
}

.calc-counter-btn:active {
  transform: scale(0.94);
}

.calc-input-wrapper {
  display: flex;
  align-items: baseline;
  gap: 4px;
  padding: 0 4px;
}

#calcUsersInput {
  width: 38px;
  height: 30px;
  text-align: center;
  font-family: inherit;
  font-size: 17px;
  font-weight: 800;
  border: none;
  background: transparent;
  color: #0071e3;
  outline: none;
  padding: 0;
  margin: 0;
  -moz-appearance: textfield;
}

#calcUsersInput::-webkit-outer-spin-button,
#calcUsersInput::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.calc-input-unit {
  font-size: 12px;
  font-weight: 600;
  color: var(--apple-text-secondary);
}

/* Slider */
.calc-slider-wrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

#calcUsersSlider {
  width: 100%;
  height: 8px;
  -webkit-appearance: none;
  appearance: none;
  background: linear-gradient(to right, #0071e3 0%, #0071e3 var(--slider-fill-pct, 8%), rgba(0, 0, 0, 0.08) var(--slider-fill-pct, 8%), rgba(0, 0, 0, 0.08) 100%);
  border-radius: 6px;
  outline: none;
  cursor: pointer;
  transition: background 0.1s ease;
}

#calcUsersSlider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #ffffff;
  border: 3px solid #0071e3;
  box-shadow: 0 2px 8px rgba(0, 113, 227, 0.35);
  cursor: pointer;
  transition: transform 0.15s var(--spring-easing), box-shadow 0.15s ease;
}

#calcUsersSlider::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #ffffff;
  border: 3px solid #0071e3;
  box-shadow: 0 2px 8px rgba(0, 113, 227, 0.35);
  cursor: pointer;
}

#calcUsersSlider::-webkit-slider-thumb:hover {
  transform: scale(1.18);
  box-shadow: 0 3px 12px rgba(0, 113, 227, 0.45);
}

#calcUsersSlider::-webkit-slider-thumb:active {
  transform: scale(1.1);
}

.calc-slider-ticks {
  position: relative;
  height: 16px;
  margin: 2px 10px 0 10px;
}

.calc-slider-ticks .tick-mark {
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  font-size: 10.5px;
  font-weight: 600;
  color: var(--apple-text-tertiary);
  cursor: pointer;
  user-select: none;
  transition: color 0.15s ease, font-weight 0.15s ease;
  white-space: nowrap;
}

.calc-slider-ticks .tick-mark[data-tick="1"] {
  left: 0%;
  transform: translateX(0);
}

.calc-slider-ticks .tick-mark[data-tick="5"] {
  left: 8.16%;
}

.calc-slider-ticks .tick-mark[data-tick="10"] {
  left: 18.37%;
}

.calc-slider-ticks .tick-mark[data-tick="20"] {
  left: 38.78%;
}

.calc-slider-ticks .tick-mark[data-tick="30"] {
  left: 59.18%;
}

.calc-slider-ticks .tick-mark[data-tick="50"] {
  left: 100%;
  transform: translateX(-100%);
}

.calc-slider-ticks .tick-mark:hover {
  color: #0071e3;
}

.calc-slider-ticks .tick-mark.active-tick {
  color: #0071e3;
  font-weight: 800;
}

/* Presets */
.calc-presets-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
  padding-top: 6px;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.calc-presets-title {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--apple-text-secondary);
}

.calc-presets {
  display: flex;
  gap: 6px;
}

.calc-preset-btn {
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 600;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #ffffff;
  color: var(--apple-text-primary);
  cursor: pointer;
  transition: all 0.2s var(--spring-easing);
}

.calc-preset-btn:hover {
  border-color: #0071e3;
  color: #0071e3;
  transform: translateY(-1px);
}

.calc-preset-btn.active {
  background: #0071e3 !important;
  border-color: #0071e3 !important;
  color: #ffffff !important;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(0, 113, 227, 0.25);
}

/* Tiers Reference Grid */
.calc-tiers-reference {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.calc-tier-pills {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 5px;
}

.calc-tier-pill {
  padding: 6px 4px;
  text-align: center;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 9px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  transition: all 0.2s var(--spring-easing);
  line-height: 1.15;
}

.calc-tier-pill .tier-range {
  font-size: 10.5px;
  color: var(--apple-text-secondary);
  font-weight: 600;
  white-space: nowrap;
}

.calc-tier-pill .tier-pill-values {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 3px;
  flex-wrap: wrap;
}

.calc-tier-pill .tier-discount {
  font-size: 11.5px;
  font-weight: 800;
  color: #1e7e34;
}

.calc-tier-pill .tier-rate {
  font-size: 9.5px;
  font-weight: 600;
  color: var(--apple-text-tertiary);
  white-space: nowrap;
}

.calc-tier-pill.active-tier {
  border-color: #0071e3;
  background: rgba(0, 113, 227, 0.06);
  box-shadow: 0 1px 6px rgba(0, 113, 227, 0.15);
}

.calc-tier-pill.active-tier .tier-range {
  color: #0071e3;
  font-weight: 700;
}

.calc-tier-pill.active-tier .tier-discount {
  color: #0071e3;
}

.calc-tier-pill.active-tier .tier-rate {
  color: #0071e3;
}

/* Results Panel - Compact & Integrated */
.calc-results-panel {
  background: #f8fafc;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Savings Banner - Streamlined Single-Line Pill */
.calc-savings-banner {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 5px 10px;
  border-radius: 8px;
  background: rgba(30, 126, 52, 0.09);
  border: 1px solid rgba(30, 126, 52, 0.22);
  animation: livePulse 2.5s infinite ease-in-out;
}

.savings-badge-icon {
  font-size: 14px;
  line-height: 1;
}

.savings-badge-amount {
  font-size: 12px;
  font-weight: 700;
  color: #1e7e34;
  letter-spacing: -0.01em;
}

.calc-result-main {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.calc-result-monthly {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.calc-value-big {
  font-size: clamp(24px, 2.8vw, 30px);
  font-weight: 800;
  color: var(--apple-text-primary);
  line-height: 1;
  letter-spacing: -0.03em;
}

.calc-period-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--apple-text-secondary);
}

.calc-result-annual {
  text-align: right;
  display: flex;
  align-items: baseline;
  gap: 5px;
  font-size: 13px;
  color: var(--apple-text-secondary);
}

.calc-annual-label {
  font-weight: 500;
  color: var(--apple-text-secondary);
}

#calcAnnualTotal {
  font-weight: 700;
  color: var(--apple-text-primary);
}

.calc-detail-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11.5px;
  color: var(--apple-text-secondary);
}

.calc-detail-item strong {
  font-weight: 700;
  color: var(--apple-text-primary);
}

.calc-formula-text {
  font-family: monospace;
  font-size: 11px;
  color: var(--apple-text-secondary) !important;
}

/* Scale Notice */
.calc-scale-notice {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(178, 80, 0, 0.08);
  border: 1px solid rgba(178, 80, 0, 0.2);
}

.scale-notice-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.scale-notice-text strong {
  font-size: 11px;
  color: #b25000;
}

.scale-notice-text span {
  font-size: 10px;
  color: var(--apple-text-secondary);
}

.calc-scale-notice .secondary-btn.small {
  padding: 4px 8px;
  font-size: 10.5px;
  white-space: nowrap;
}

/* Features & Transparency Col */
.features-box {
  background: #f8fafc;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.features-box-header {
  display: flex;
  align-items: center;
  gap: 8px;
}

.features-box-pill {
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 2px 6px;
  border-radius: 6px;
  background: #0071e3;
  color: #ffffff;
}

.features-box-title {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--apple-text-primary);
}

.price-features-list {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.price-feature-item {
  display: grid;
  grid-template-columns: 16px minmax(0, 1fr);
  gap: 8px;
  align-items: start;
  font-size: 11.5px;
  line-height: 1.35;
  color: var(--apple-text-secondary);
}

.price-feature-item strong {
  color: var(--apple-text-primary);
  font-weight: 600;
}

.feature-check {
  color: #1e7e34;
  font-weight: 800;
  font-size: 12.5px;
  line-height: 1.2;
}

/* Highlight box: Collaborators 100% Free */
.calc-collaborators-highlight {
  background: linear-gradient(135deg, rgba(30, 126, 52, 0.08), rgba(30, 126, 52, 0.03));
  border: 1px solid rgba(30, 126, 52, 0.2);
  border-radius: 12px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.collab-badge-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
}

.collab-badge {
  font-size: 9.5px;
  font-weight: 800;
  padding: 2px 5px;
  border-radius: 5px;
  background: #1e7e34;
  color: #ffffff;
  letter-spacing: 0.04em;
}

.collab-badge-wrap strong {
  font-size: 11.5px;
  color: #1e7e34;
}

.calc-collaborators-highlight p {
  font-size: 11px;
  color: var(--apple-text-secondary);
  line-height: 1.35;
  margin: 0;
}

.pricing-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: auto;
  align-items: center;
}

.pricing-actions .primary-btn,
.pricing-actions .secondary-btn {
  min-height: 38px;
  padding: 7px 12px;
  font-size: 12px;
}

.pricing-actions small {
  grid-column: 1 / -1;
  color: var(--apple-text-tertiary);
  font-size: 10px;
  text-align: center;
}

.landing-optimized .sec-card-badge { white-space: normal; line-height: 1.3; text-align: right; font-size: 9px; }

.landing-optimized :is(.price-card-hero, .pricing-calc-card):hover { transform: none; }
.landing-optimized :is(.price-card-hero, .pricing-calc-card, .price-card):hover .arch-icon-wrap {
  background: var(--card-accent, #1e7e34) !important;
  border-color: var(--card-accent, #1e7e34) !important;
}
.landing-optimized :is(.price-card-hero, .pricing-calc-card, .price-card):hover .arch-icon-wrap svg,
.landing-optimized :is(.price-card-hero, .pricing-calc-card, .price-card):hover .arch-icon-wrap svg * {
  color: #ffffff !important;
  stroke: #ffffff !important;
}
.landing-optimized .price-card-hero::before { display: none; }

/* ==========================================================================
   Commercial Tray & Unified Pricing Panel
   ========================================================================== */
.pricing-commercial-panel {
  width: 100%;
  max-width: 100%;
  margin: 6px auto 0;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 16px -4px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  gap: 6px;
  box-sizing: border-box;
}

/* Symmetric Dual-Role Summary Bar */
.pricing-roles-summary-bar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  width: 100%;
  box-sizing: border-box;
}

.role-summary-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 6px -2px rgba(0, 0, 0, 0.02);
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.role-summary-item p {
  font-size: 10.5px;
  line-height: 1.25;
  margin: 0;
}

.role-summary-item:hover {
  border-color: rgba(0, 113, 227, 0.25);
  box-shadow: 0 4px 12px -2px rgba(0, 113, 227, 0.06);
}

.role-summary-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
}

.role-summary-tag strong {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--apple-text-primary);
  letter-spacing: -0.01em;
}

.role-icon-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.role-icon-dot.user {
  background: #0071e3;
  box-shadow: 0 0 0 2px rgba(0, 113, 227, 0.2);
}

.role-icon-dot.collab {
  background: #10b981;
  box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.2);
}

.role-type-pill {
  font-size: 9px;
  font-weight: 700;
  padding: 1px 5px;
  border-radius: 4px;
  letter-spacing: 0.02em;
}

.role-type-pill.user {
  background: #eff6ff;
  color: #0071e3;
  border: 1px solid rgba(0, 113, 227, 0.2);
}

.role-type-pill.collab {
  background: #ecfdf5;
  color: #059669;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

/* Accordions for Role Permissions & Founding Program */
.pricing-commercial-accordions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  width: 100%;
  box-sizing: border-box;
}

.commercial-details {
  border-radius: 9px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  background: #ffffff;
  transition: all 0.2s cubic-bezier(0.25, 1, 0.5, 1);
  overflow: hidden;
  width: 100%;
  margin: 0;
  box-sizing: border-box;
}

.commercial-details:hover {
  border-color: rgba(0, 113, 227, 0.25);
  box-shadow: 0 4px 12px -2px rgba(0, 0, 0, 0.04);
}

.commercial-details[open] {
  grid-column: 1 / -1;
  border-color: rgba(0, 113, 227, 0.35);
  box-shadow: 0 6px 18px -4px rgba(0, 0, 0, 0.06);
}

.commercial-details summary {
  list-style: none;
  cursor: pointer;
  padding: 6px 10px;
  user-select: none;
  display: block;
  outline: none;
  border-radius: 9px;
  transition: background 0.15s ease;
}

.commercial-details summary::-webkit-details-marker {
  display: none;
}

.commercial-details summary:hover {
  background: rgba(0, 113, 227, 0.02);
}

.commercial-details[open] summary {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 11px 11px 0 0;
  background: rgba(0, 0, 0, 0.015);
}

.accordion-summary-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.accordion-summary-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.accordion-icon {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  background: #eff6ff;
  color: #0071e3;
  flex-shrink: 0;
}

.accordion-icon.founding {
  background: #f5f3ff;
  color: #7c3aed;
}

.accordion-icon .ui-icon {
  width: 13px;
  height: 13px;
}

.accordion-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--apple-text-primary);
  letter-spacing: -0.01em;
}

.accordion-summary-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.accordion-chip {
  font-size: 10px;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.04);
  color: var(--apple-text-secondary);
}

.accordion-chip.founding {
  background: #f5f3ff;
  color: #7c3aed;
  border: 1px solid #ddd6fe;
}

.accordion-chevron {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--apple-text-tertiary);
  transition: transform 0.25s cubic-bezier(0.25, 1, 0.5, 1);
}

.commercial-details[open] .accordion-chevron {
  transform: rotate(180deg);
  color: #0071e3;
}

.commercial-details .pricing-roles-section,
.commercial-details .founding-program-wrapper {
  padding: 14px 16px 16px;
  margin: 0;
}

/* High-Contrast Badges for Founding Customer Banner */
.founding-badge {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 5px 11px;
  border-radius: 6px;
  background: #f3e8ff;
  color: #6b21a8;
  border: 1px solid #d8b4fe;
  display: inline-flex;
  align-items: center;
}

.founding-slots {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 5px 11px;
  border-radius: 6px;
  background: #fef3c7;
  color: #92400e;
  border: 1px solid #fde68a;
  display: inline-flex;
  align-items: center;
}

html[data-theme="dark"] .founding-badge {
  background: rgba(168, 85, 247, 0.25);
  color: #e9d5ff;
  border-color: rgba(168, 85, 247, 0.45);
}

html[data-theme="dark"] .founding-slots {
  background: rgba(245, 158, 11, 0.25);
  color: #fde68a;
  border-color: rgba(245, 158, 11, 0.45);
}

/* Pricing Truth within Panel */
.pricing-commercial-panel .pricing-truth {
  font-size: 11.5px;
  color: var(--apple-text-tertiary);
  text-align: center;
  margin: 2px 0 0;
  padding-top: 6px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  line-height: 1.4;
}

@media (max-width: 860px) {
  .pricing-roles-summary-bar {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .role-summary-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .role-summary-item p {
    text-align: left;
  }
  .accordion-summary-content {
    flex-wrap: wrap;
    gap: 6px;
  }
}

/* Enhanced Role Cards inside Accordion */
.pricing-roles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.role-card {
  padding: 18px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: rgba(0, 0, 0, 0.015);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.role-card-user {
  border-color: rgba(0, 113, 227, 0.18);
  background: rgba(0, 113, 227, 0.02);
}

.role-card-collaborator {
  border-color: rgba(16, 185, 129, 0.18);
  background: rgba(16, 185, 129, 0.02);
}

.role-card-header h3 {
  font-size: 15px;
  font-weight: 700;
  margin: 4px 0 4px;
  color: var(--apple-text-primary);
}

.role-card-header p {
  font-size: 12px;
  line-height: 1.45;
  color: var(--apple-text-secondary);
  margin: 0;
}

.role-features-list {
  display: flex;
  flex-direction: column;
  gap: 7px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.role-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 11.5px;
  line-height: 1.4;
  color: var(--apple-text-primary);
}

.role-features-list li span {
  font-weight: 700;
  color: #0071e3;
  flex-shrink: 0;
}

.role-card-collaborator .role-features-list li span {
  color: #047857;
}

.pricing-truth {
  font-size: 11.5px;
  color: var(--apple-text-tertiary);
  text-align: center;
  margin: 14px 0 0;
}

.landing-optimized main > .section.faq,
.landing-optimized main > #faq,
.landing-optimized main > .faq,
.landing-optimized .faq {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: 64px;
  align-items: start;
  align-content: start;
}
.landing-optimized .faq-sidebar {
  position: sticky;
  top: 110px;
  align-self: start;
  margin-bottom: 0;
}
.landing-optimized .faq-lead { font-size: 15.5px; line-height: 1.62; color: var(--apple-text-secondary); margin: 0 0 24px; max-width: 38ch; letter-spacing: -0.008em; }
.landing-optimized .faq-help-card { padding: 26px; border-radius: 20px; margin-top: 12px; }
.landing-optimized .faq-help-card h3 { font-size: 18px; margin: 0 0 10px; font-weight: 600; letter-spacing: -0.015em; }
.landing-optimized .faq-help-card p { font-size: 13.5px; line-height: 1.55; margin: 0 0 18px; color: var(--apple-text-secondary); }
.landing-optimized .faq-help-footer { margin-top: 14px; padding-top: 12px; border-top: 1px solid rgba(0, 0, 0, 0.06); display: flex; align-items: center; justify-content: space-between; }
.landing-optimized .faq-help-footer .text-link { min-height: auto; padding: 0; font-size: 12.5px; }
.landing-optimized .faq-list { display: block; min-width: 0; padding: 8px 24px; }
.landing-optimized .faq .faq-list details {
  background: transparent;
  box-shadow: none;
  border: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 0;
  margin: 0;
  padding: 0;
  transform: none;
  opacity: 1;
  filter: none;
  transition: background-color 0.2s ease;
}
.landing-optimized .faq .faq-list details:last-child { border-bottom: 0; }
.landing-optimized .faq .faq-list details[open] { background: #eff6ff; }
.landing-optimized .faq .faq-list details[open] > summary { color: #0071e3 !important; font-weight: 600; }
.landing-optimized .faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 56px;
  padding: 17px 28px 17px 0;
  font-size: 14.5px;
  line-height: 1.5;
  letter-spacing: -0.01em;
  cursor: pointer;
}
.landing-optimized .faq-q-text { flex: 1; }
.landing-optimized .faq-cat-badge {
  font: 600 10px/1 -apple-system, BlinkMacSystemFont, "SF Pro Text", system-ui, sans-serif;
  padding: 4px 8px;
  border-radius: 6px;
  background: var(--card-tint, #eff6ff);
  color: var(--card-accent, #0071e3);
  border: 1px solid color-mix(in srgb, var(--card-accent, #0071e3) 20%, white);
  white-space: nowrap;
  letter-spacing: .03em;
}
.landing-optimized .faq-list details p { font-size: 14px; margin: 0; padding: 0 8px 20px 0; line-height: 1.6; color: var(--apple-text-secondary); }
.landing-optimized .faq .faq-list .faq-more {
  margin-top: 4px;
  border-bottom: 0;
}
.landing-optimized .faq .faq-list .faq-more > summary {
  color: var(--landing-accent);
  font-weight: 600;
}
.landing-optimized .faq .faq-list .faq-more[open] { background: transparent; }
.landing-optimized .faq-more-items {
  margin: 0 -12px;
  padding: 0 12px 8px;
  border: 1px solid rgba(0, 113, 227, 0.12);
  border-radius: 14px;
  background: rgba(239, 246, 255, 0.55);
}

/* ==========================================================================
   Section 6: Final CTA & Footer (#empezar)
   ========================================================================== */
.landing-optimized main > .section.final:not(.scroll-manifesto) {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: clamp(60px, 7vh, 96px) var(--landing-gutter) 32px;
  box-sizing: border-box;
  scroll-margin-top: 0;
}
.final-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr);
  gap: 48px;
  align-items: center;
  padding: clamp(32px, 5vw, 56px);
  border: 1px solid rgba(0, 113, 227, 0.2);
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(0, 113, 227, 0.06), #ffffff);
  box-shadow: 0 12px 36px -12px rgba(0, 113, 227, 0.12);
  text-align: left;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.landing-optimized .final-copy { min-width: 0; margin: 0; }
.landing-optimized .final .final-copy h2 {
  font-size: clamp(32px, 3.3vw, 46px);
  line-height: 1.12;
  letter-spacing: -0.026em;
  max-width: 20ch;
  margin: 0 0 24px;
}
.landing-optimized .final-description { font-size: 15.5px; max-width: 48ch; margin: 0; line-height: 1.62; color: var(--apple-text-secondary); letter-spacing: -0.008em; }
.landing-optimized .final-actions {
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
  overflow: visible;
}
.landing-optimized .final-note { font-size: 12px; max-width: 48ch; margin: 16px 0 0; color: var(--apple-text-tertiary); }
.final-agenda { min-width: 0; padding-left: 32px; border-left: 1px solid rgba(0, 0, 0, 0.06); }
.final-agenda h3 { font-size: 22px; line-height: 1.35; margin: 0 0 24px; font-weight: 700; letter-spacing: -0.018em; }
.final-agenda ol { list-style: none; margin: 0; padding: 0; }
.final-agenda li {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 12px;
  padding: 18px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.final-agenda li:last-child { padding-bottom: 0; }
.final-agenda li > span {
  font: 700 13px/1.7 -apple-system, BlinkMacSystemFont, "SF Pro Text", system-ui, sans-serif;
  color: var(--landing-accent);
}
.final-agenda strong { font-size: 14.5px; line-height: 1.5; color: var(--apple-text-primary); font-weight: 600; }
.final-agenda li p { font-size: 13px; margin: 4px 0 0; color: var(--apple-text-secondary); }

.landing-optimized .site-footer {
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  margin-top: 40px;
  padding-top: 32px;
}
.footer-identity { display: grid; gap: 8px; max-width: 32ch; }
.landing-optimized .site-footer nav {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 6px 24px;
}
.landing-optimized .site-footer nav a {
  justify-content: flex-start;
  color: var(--apple-text-secondary);
  font-size: 13px;
  text-decoration: none;
  transition: color 0.2s ease;
}
.landing-optimized .site-footer nav a:hover { color: var(--landing-accent); }
.landing-optimized .site-footer > small {
  grid-column: 1 / -1;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  color: var(--apple-text-tertiary);
}

/* ==========================================================================
   Modals & Tour / Comparison
   ========================================================================== */
.landing-optimized :is(.modal, .experience-dialog) {
  color: var(--apple-text-primary);
  background: #ffffff;
  border: 1px solid var(--apple-card-border);
  border-radius: 22px;
  padding: 0;
  margin: auto;
  overscroll-behavior: contain;
  box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.15);
}
.landing-optimized .modal {
  width: min(650px, calc(100% - 32px));
  height: auto;
  max-height: calc(100dvh - 32px);
}
.landing-optimized .modal[open] { display: block; }
.landing-optimized .modal-card {
  background: #ffffff;
  width: 100%;
  max-height: none;
  border: 0;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
}
.landing-optimized .modal-close {
  position: sticky;
  top: 0;
  float: right;
  z-index: 2;
  background: #f4f4f6;
  color: var(--apple-text-primary);
  min-width: 44px;
  min-height: 44px;
}
.landing-optimized :is(.modal, .experience-dialog)::backdrop {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(12px);
}
.experience-dialog {
  width: min(1040px, calc(100% - 40px));
  max-height: calc(100dvh - 40px);
}
.experience-dialog[open] { display: flex; flex-direction: column; }
.experience-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  background: #ffffff;
  flex-shrink: 0;
}
.landing-optimized .experience-header h2 { font-size: 18px; margin: 0; font-weight: 600; letter-spacing: -0.015em; }
.experience-close {
  flex: 0 0 44px;
  height: 44px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 50%;
  color: var(--apple-text-primary);
  background: #f4f4f6;
  font-size: 26px;
  cursor: pointer;
}
.experience-body { overflow-y: auto; padding: 28px; overscroll-behavior: contain; }
.experience-body p { font-size: 14.5px; color: var(--apple-text-secondary); }
.experience-body h3 { font-size: 24px; margin: 16px 0; font-weight: 700; letter-spacing: -0.02em; }
.experience-loading { padding: 40px 0; }
.tour-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.tour-meta p { margin: 0; font-size: 12.5px; }
.tour-nav { display: flex; gap: 8px; }
.tour-nav button {
  min-height: 44px;
  padding: 8px 16px;
  border-radius: 980px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #ffffff;
  color: var(--apple-text-secondary);
  cursor: pointer;
  font-size: 13.5px;
  font-weight: 500;
}
.tour-nav button[aria-current="step"] {
  color: var(--apple-text-primary);
  border-color: var(--landing-accent);
  background: #eff6ff;
  font-weight: 600;
}
.tour-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 26px; align-items: start; }
.tour-screen { border: 1px solid rgba(0, 0, 0, 0.06); background: #ffffff; padding: 24px; border-radius: 18px; }
.tour-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 24px; }
.tour-kpis span { display: block; font-size: 11.5px; color: var(--apple-text-secondary); }
.tour-kpis strong { display: block; font-size: 26px; font-weight: 700; letter-spacing: -0.025em; margin-bottom: 5px; color: var(--apple-text-primary); }
.tour-project {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding: 12px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  font-size: 12.5px;
}
.tour-project span { color: var(--apple-text-secondary); }
.tour-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 22px; }
.tour-proposal { border-left: 3px solid var(--landing-accent); padding: 2px 18px; margin: 20px 0; }
.tour-proposal h4 { margin: 10px 0; font-size: 16px; font-weight: 600; }
.comparison-intro-note { border-left: 2px solid var(--landing-accent); padding-left: 16px; }
.comparison-criteria { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin: 24px 0; }
.comparison-criteria article { padding: 20px; border: 1px solid rgba(0, 0, 0, 0.06); border-radius: 14px; background: #ffffff; }
.comparison-criteria h3 { font-size: 16px; margin: 0 0 10px; font-weight: 600; }
.comparison-criteria p { margin: 0; font-size: 13.5px; color: var(--apple-text-secondary); }
.comparison-references { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; padding: 0; list-style: none; }
.comparison-references a { color: var(--landing-accent); display: inline-flex; align-items: center; min-height: 44px; font-size: 13.5px; font-weight: 500; }
.comparison-references p { margin: 0; font-size: 12.5px; }
.landing-optimized :is(.experience-body, .faq-list, .commercial-details) { overflow-wrap: anywhere; }

/* ==========================================================================
   Responsive Breakpoints & Layout Guarantees
   ========================================================================== */
@media (max-width: 1050px) {
  .landing-optimized .nav-links { position: absolute; transform: none; }
  .landing-optimized main > :is(.gis-overview, .direction-flow, .faq) { gap: 32px; }
  .conversation-confidence-grid { gap: 32px; }
  .conversation-body { padding: 20px; }
  .preview-top { padding: 16px 20px; }
}

@media (max-width: 960px) {
  .landing-optimized main > .section.direction-flow,
  .landing-optimized main > #capacidades,
  .landing-optimized main > .direction-flow,
  .landing-optimized .direction-flow,
  .landing-optimized main > .section.faq,
  .landing-optimized main > #faq,
  .landing-optimized main > .faq,
  .landing-optimized .faq {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 36px !important;
  }
  .conversation-confidence-grid {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 36px !important;
  }
  .landing-optimized main > .section:not(.scroll-manifesto):not(.hero) {
    min-height: 0;
    padding-block: 60px;
    scroll-margin-top: 80px;
  }
  .landing-optimized :is(.faq-sidebar, .direction-sidebar, .conversation-confidence-sidebar) {
    position: static !important;
    top: auto !important;
    margin-bottom: 0 !important;
  }
  .conversation-confidence-content { gap: 24px; }
  .confidence-principles { grid-template-columns: 1fr; }
  .overview-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
  .overview-pipeline { flex-direction: column; align-items: stretch; gap: 12px; }
  .pipeline-arrow { display: none; }
  .pipeline-text strong { white-space: normal; }
  .direction-steps { gap: 24px; }
  .direction-steps h3 { font-size: 20px; }
  .direction-card .card-desc { min-height: auto; }
  .final-panel { grid-template-columns: minmax(0, 1fr); gap: 32px; }
  .final-agenda { padding: 28px 0 0; border-left: 0; border-top: 1px solid rgba(0, 0, 0, 0.06); }
  .landing-optimized .final .final-copy h2 { max-width: 24ch; }
  .unified-card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .unified-header-rate {
    text-align: left;
    align-items: flex-start;
  }
  .unified-card-body {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .unified-features-col {
    border-left: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding-left: 0;
    padding-top: 14px;
  }
  .pricing-roles-summary-bar,
  .pricing-commercial-accordions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .landing-optimized { --landing-gutter: 22px; }
  .landing-optimized main > .section:not(.scroll-manifesto):not(.hero) {
    min-height: 0;
    padding-block: 48px;
    scroll-margin-top: 72px;
  }
  .landing-optimized main > :is(.direction-flow, .faq) {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .conversation-confidence-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .landing-optimized .nav { padding-left: 14px; width: calc(100% - 20px); }
  .landing-optimized .nav-demo { display: none; }
  .landing-optimized .nav-actions { gap: 5px; }
  .landing-optimized .brand { gap: 6px; }
  .landing-optimized .brand svg { width: 28px; height: 28px; }
  .direction-steps { grid-template-columns: 1fr; gap: 20px; }
  .direction-steps li { padding: 24px; }
  .direction-steps h3 { margin: 0 0 8px; }
  .confidence-principles { gap: 16px; }
  .confidence-principles h3 { font-size: 15px; }
  .landing-optimized .pricing-main-grid { grid-template-columns: 1fr; gap: 20px; }
  .landing-optimized :is(.price-card-hero, .pricing-calc-card) { padding: 22px; }
  .landing-optimized .calc-control-group { padding: 14px; }
  .landing-optimized .calc-user-counter { flex-wrap: wrap; }
  .landing-optimized .section-head { margin-bottom: 22px; }
  .landing-optimized .faq .section-head { margin-bottom: 0; }
  .landing-optimized .faq-list { padding: 4px 18px; }
  .landing-optimized .site-footer { grid-template-columns: minmax(0, 1fr); margin-top: 32px; text-align: left; }
  .landing-optimized .site-footer :is(.brand, nav) { justify-content: start; }
  .landing-optimized .site-footer nav { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 4px 16px; }
  .landing-optimized .site-footer nav a { font-size: 12px; line-height: 1.5; }
  .landing-optimized .site-footer p { max-width: 30ch; margin: 0; }
  .experience-dialog { width: calc(100% - 16px); max-height: calc(100dvh - 16px); border-radius: 16px; }
  .experience-header { padding: 12px 16px; }
  .experience-body { padding: 20px 16px; }
  .tour-grid, .comparison-criteria, .comparison-references { grid-template-columns: 1fr; }
  .tour-grid { gap: 12px; }
  .tour-screen { padding: 18px; }
  .tour-nav { width: 100%; }
  .tour-nav button { flex: 1; padding: 8px 6px; }
  .landing-optimized .modal-card { padding: 22px; }
}

@media (max-width: 480px) {
  .overview-grid { grid-template-columns: 1fr; gap: 12px; }
  .landing-optimized .calc-tier-pills { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 6px; }
  .confidence-principles { grid-template-columns: 1fr; }
  .confidence-principles > div { display: flex; flex-direction: column; gap: 6px; }
  .landing-optimized .calc-detail-item { flex-direction: column; gap: 4px; }
  .landing-optimized .calc-detail-item strong { text-align: left; }
  .landing-optimized .calc-scale-notice { flex-direction: column; align-items: stretch; }
  .landing-optimized .arch-question { max-width: 100%; }
  .landing-optimized .faq-cat-badge { display: none; }
  .dp-fin-kpi-grid { gap: 4px; }
  .dp-fin-kpi-cell { padding: 6px 4px; }
  .dp-fin-kpi-lbl { font-size: 8px; letter-spacing: 0; }
  .dp-fin-kpi-val { font-size: 11.5px; }
  .dp-mail-visual-box, .dp-fin-visual-box { padding: 8px 10px; }
  .versus-mini-grid { grid-template-columns: 1fr; gap: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .landing-optimized *, .landing-optimized *::before, .landing-optimized *::after {
    animation: none !important;
    transition: none !important;
  }
  .landing-optimized .cursor-glow { display: none; }
}
