/* Xtrategic Platform home — faithful to the supplied reference, without decorative AI-pattern markers. */
.xp-section {
  position: relative;
  padding: 112px 0;
}

.section-head {
  max-width: 760px;
  margin: 0 auto 58px;
  text-align: center;
}

.section-head h2 {
  margin: 0 0 18px;
  color: var(--xp-blue-deep);
  font: 700 clamp(34px, 4vw, 54px) / 1.09 'Manrope', sans-serif;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.section-head p {
  max-width: 710px;
  margin: 0 auto;
  color: var(--xp-muted);
  font-size: 17px;
  line-height: 1.7;
}

.xp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 50px;
  padding: 14px 20px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  transition: transform .25s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.xp-button:hover { transform: translateY(-2px); }
.xp-button--primary { background: var(--xp-orange); color: #2d2a23; box-shadow: 0 12px 30px rgba(250, 160, 2, .22); }
.xp-button--primary:hover { background: #ffad19; color: #2d2a23; box-shadow: 0 16px 35px rgba(250, 160, 2, .3); }
.xp-button--secondary { border-color: #ccd8db; background: rgba(255, 255, 255, .68); color: var(--xp-blue-deep); }
.xp-button--secondary:hover { border-color: var(--xp-blue); background: #fff; color: var(--xp-blue-deep); }
.xp-button--light { background: #fff; color: var(--xp-blue-deep); }
.xp-button--light:hover { background: var(--xp-blue-pale); color: var(--xp-blue-deep); }
.xp-button--outline-light { border-color: rgba(255, 255, 255, .3); background: transparent; color: #fff; }
.xp-button--outline-light:hover { border-color: #fff; background: rgba(255, 255, 255, .08); color: #fff; }

/* Hero */
.xp-hero {
  position: relative;
  overflow: hidden;
  padding: 102px 0 0;
  background: linear-gradient(135deg, #f9fbfa 0%, #f5f7f4 50%, #edf4f6 100%);
}

.xp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: .42;
  background-image: linear-gradient(rgba(53, 95, 114, .035) 1px, transparent 1px), linear-gradient(90deg, rgba(53, 95, 114, .035) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, #000, transparent 84%);
}

.hero-glow {
  position: absolute;
  top: -230px;
  right: -200px;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(88, 137, 157, .22), rgba(88, 137, 157, 0) 69%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: 40px;
  min-height: 550px;
}

.hero-copy { min-width: 0; padding-bottom: 84px; }

.hero-copy h1 {
  max-width: 700px;
  margin: 0 0 18px;
  color: var(--xp-blue-deep);
  /* Manrope necesita >= 1.28 de leading para que los descendentes queden dentro de la
     caja de línea; con menos, el resaltado de la línea siguiente los tapa al seleccionar. */
  font: 700 clamp(43px, 4.7vw, 68px) / 1.28 'Manrope', sans-serif;
  letter-spacing: -0.035em;
}

.hero-copy h1 span {
  color: var(--xp-blue-dark);
}

.hero-subtitle {
  max-width: 640px;
  margin: 0 0 32px;
  color: var(--xp-muted);
  font-size: 18px;
  line-height: 1.72;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.dashboard-stage {
  position: relative;
  z-index: 2;
  min-width: 0;
  transform: perspective(1200px) rotateY(-3deg) rotateX(1deg);
  transform-origin: center;
}

.dashboard-orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(88, 137, 157, .28);
  border-radius: 50%;
}

.dashboard-orbit--one { top: -57px; left: 40px; width: 480px; height: 480px; }
.dashboard-orbit--two { top: 3px; left: 100px; width: 360px; height: 360px; }

.dashboard-window {
  overflow: hidden;
  border: 1px solid rgba(215, 225, 227, .9);
  border-radius: 17px;
  background: #fff;
  box-shadow: 0 30px 80px rgba(31, 67, 81, .18);
}

.dashboard-stage--capture {
  margin: 0;
}

.dashboard-capture-window {
  position: relative;
  overflow: hidden;
  aspect-ratio: 8 / 5;
  border: 1px solid var(--xp-line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 30px 80px rgba(31, 67, 81, .18);
}

.dashboard-capture-window img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.window-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 36px;
  padding: 0 14px;
  border-bottom: 1px solid #e7ecec;
  color: #6f8086;
  font-size: 7px;
  font-weight: 600;
}

.window-brand { justify-self: start; color: var(--xp-blue-dark); font: 700 7px/1 'Manrope', sans-serif; letter-spacing: .08em; }
.window-bar > span { justify-self: center; }
.window-bar > small { display: flex; align-items: center; gap: 5px; justify-self: end; color: #617970; font-size: 6px; }
.window-bar > small span { padding-right: 5px; border-right: 1px solid #d9e2e1; color: #65797f; }
.window-bar > small i { margin-right: 3px; }
.window-body { display: flex; min-height: 405px; background: #f8faf9; }

.mini-sidebar {
  display: flex;
  flex: 0 0 48px;
  flex-direction: column;
  align-items: center;
  gap: 19px;
  padding: 13px 0;
  background: var(--xp-blue-deep);
  color: #86a3ae;
  font-size: 9px;
}

.mini-sidebar > i.active { color: #fff; }
.mini-logo { display: flex; align-items: flex-end; gap: 2px; width: 18px; height: 18px; margin-bottom: 2px; }
.mini-logo i { width: 4px; border-radius: 1px; background: #fff; }
.mini-logo i:first-child { height: 8px; }
.mini-logo i:nth-child(2) { height: 14px; }
.mini-logo i:nth-child(3) { height: 11px; background: var(--xp-orange); }
.mini-avatar { display: grid; place-items: center; width: 20px; height: 20px; margin-top: auto; border-radius: 50%; background: #fff; color: var(--xp-blue-deep); font-size: 5px; font-weight: 700; }

.dash-content { flex: 1; min-width: 0; padding: 21px 19px; }
.dash-top { display: flex; align-items: center; justify-content: space-between; }
.dash-top > div { display: flex; flex-direction: column; gap: 6px; }
.dash-top small { color: #93a0a4; font-size: 6px; }
.dash-top strong { color: var(--xp-blue-deep); font: 700 15px/1.1 'Manrope', sans-serif; }
.status { display: flex; align-items: center; gap: 5px; padding: 6px 8px; border-radius: 9px; background: #edf5f0; color: #507862; font-size: 6px; font-weight: 700; }
.status i { width: 4px; height: 4px; border-radius: 50%; background: #5b9471; }
.dash-tabs { display: flex; gap: 22px; margin-top: 21px; border-bottom: 1px solid #e2e8e8; color: #9ba7aa; font-size: 6px; }
.dash-tabs span, .dash-tabs b { padding-bottom: 9px; white-space: nowrap; }
.dash-tabs b { border-bottom: 2px solid var(--xp-orange); color: var(--xp-blue-deep); font-weight: 700; }
.metric-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 12px; }
.metric-card, .chart-card, .priority-card { border: 1px solid #edf0ef; border-radius: 9px; background: #fff; }
.metric-card { min-height: 87px; padding: 12px; }
.metric-card > span { display: block; color: #87969b; font-size: 5px; }
.metric-card > strong { display: block; margin-top: 9px; color: var(--xp-blue-deep); font: 700 16px/1 'Manrope', sans-serif; }
.metric-card > small { display: block; margin-top: 6px; color: #8c9a9e; font-size: 5px; }
.metric-card .metric-date small { color: var(--xp-orange-dark); font-size: 6px; }
.micro-progress { height: 3px; margin-top: 11px; overflow: hidden; border-radius: 3px; background: #e4e9e8; }
.micro-progress i { display: block; height: 100%; background: var(--xp-orange); }
.dash-lower { display: grid; grid-template-columns: 1.65fr 1fr; gap: 8px; margin-top: 8px; }
.chart-card, .priority-card { min-height: 145px; padding: 12px; }
.card-title { display: flex; justify-content: space-between; color: var(--xp-blue-deep); font-size: 6px; font-weight: 700; }
.card-title small { color: #9ca8ab; font-size: 5px; font-weight: 500; }
.chart-area { display: flex; align-items: flex-end; gap: 7px; height: 91px; padding-top: 15px; border-bottom: 1px solid #e1e6e5; }
.chart-area i { flex: 1; border-radius: 3px 3px 0 0; background: #7ea6b7; }
.chart-area i:nth-last-child(-n+2) { background: var(--xp-orange); }
.priority-card p { position: relative; display: grid; grid-template-columns: 1fr auto; gap: 8px; margin: 14px 0 0; padding-bottom: 8px; color: #78898f; font-size: 5px; }
.priority-card p i { position: absolute; right: 0; bottom: 0; left: 0; height: 2px; background: linear-gradient(90deg, var(--xp-blue) var(--priority), #e4e9e8 var(--priority)); }
.priority-card p b { color: var(--xp-blue-deep); }

.floating-card { position: absolute; z-index: 3; display: flex; align-items: center; gap: 10px; min-width: 176px; padding: 11px 13px; border: 1px solid #edf1f0; border-radius: 11px; background: rgba(255, 255, 255, .96); box-shadow: 0 16px 36px rgba(31, 67, 81, .14); }
.floating-card > i { display: grid; place-items: center; width: 28px; height: 28px; border-radius: 7px; background: #fff0d4; color: var(--xp-orange-dark); font-size: 10px; }
.floating-card span { display: flex; flex-direction: column; gap: 3px; }
.floating-card small { color: #8b999d; font-size: 5px; }
.floating-card b { color: var(--xp-blue-deep); font-size: 7px; }
.floating-card--meeting { bottom: 42px; left: -36px; }
.floating-card--report { top: 61px; right: -18px; }

.hero-marquee { position: relative; z-index: 2; height: 71px; border-top: 1px solid #dfe7e7; background: rgba(255, 255, 255, .56); }
.marquee-inner { display: grid; grid-template-columns: repeat(6, 1fr); align-items: center; height: 100%; }
.marquee-inner span { display: grid; place-items: center; height: 28px; padding: 0 12px; border-left: 1px solid #dce5e7; color: #6d7e84; font-size: 10px; font-weight: 700; letter-spacing: .13em; text-align: center; text-transform: uppercase; }
.marquee-inner span:first-child { border-left: 0; }

/* Home audience gateway */
.home-audiences { background: var(--xp-ivory); }
.home-audience-split { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--xp-line); border-bottom: 1px solid var(--xp-line); }
.home-audience-path { display: flex; flex-direction: column; min-height: 520px; padding: 54px 58px 50px 0; }
.home-audience-path--company { padding-right: 0; padding-left: 58px; border-left: 1px solid var(--xp-line); }
.home-audience-path h3 { max-width: 530px; margin: 0 0 19px; color: var(--xp-blue-deep); font: 700 clamp(29px, 3vw, 42px) / 1.1 'Manrope', sans-serif; letter-spacing: -.03em; text-wrap: balance; }
.home-audience-path > p { max-width: 58ch; margin: 0; color: var(--xp-muted); font-size: 14px; line-height: 1.75; }
.home-audience-path ul { display: grid; grid-template-columns: 1fr 1fr; gap: 0 24px; margin: 30px 0 36px; padding: 0; border-top: 1px solid var(--xp-line); list-style: none; }
.home-audience-path li { min-height: 54px; padding: 17px 0 12px; border-bottom: 1px solid var(--xp-line); color: #52666d; font-size: 11px; font-weight: 600; line-height: 1.45; }
.home-audience-link { display: inline-flex; align-items: center; gap: 10px; align-self: flex-start; min-height: 44px; margin-top: auto; color: var(--xp-blue-deep); font-size: 12px; font-weight: 700; text-decoration: none; }
.home-audience-link i { color: var(--xp-orange-dark); transition: transform .2s ease; }
.home-audience-link:hover { color: var(--xp-blue-dark); }
.home-audience-link:hover i { transform: translateX(4px); }
.home-principle { max-width: 850px; margin: 38px auto 0; color: var(--xp-muted); font-size: 14px; line-height: 1.72; text-align: center; }
.home-principle strong { color: var(--xp-blue-deep); }

/* Method */
.method { overflow: hidden; background: var(--xp-blue-pale); }
.method-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: 25px; }
.method-list { display: flex; flex-direction: column; gap: 8px; }
.method-list button { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 12px; width: 100%; min-height: 60px; padding: 0 19px; border: 1px solid transparent; border-radius: 11px; background: rgba(255, 255, 255, .58); color: #667b83; text-align: left; cursor: pointer; transition: background .2s ease, border-color .2s ease, color .2s ease; }
.method-list button b { font-size: 13px; font-weight: 600; }
.method-list button i { color: #9aa9ad; font-size: 9px; opacity: 0; }
.method-list button:hover { border-color: #cfdddf; background: #fff; color: var(--xp-blue-deep); }
.method-list button.active { border-color: #ccdadd; background: #fff; color: var(--xp-blue-deep); box-shadow: 0 10px 24px rgba(31, 67, 81, .08); }
.method-list button.active i { color: var(--xp-orange-dark); opacity: 1; }
.method-detail { display: grid; grid-template-columns: 1fr 1fr; min-height: 490px; overflow: hidden; border-radius: var(--xp-radius); background: #fff; box-shadow: var(--xp-shadow); }
.method-visual { position: relative; display: grid; place-items: center; min-height: 490px; overflow: hidden; background: var(--xp-blue-deep); background-image: radial-gradient(rgba(255, 255, 255, .12) 1px, transparent 1px); background-size: 20px 20px; }
.method-rings { position: relative; display: grid; place-items: center; width: 180px; height: 180px; }
.method-rings i { position: absolute; border: 1px solid rgba(255, 255, 255, .17); border-radius: 50%; }
.method-rings i:first-child { inset: 0; }
.method-rings i:nth-child(2) { inset: 28px; }
.method-rings i:nth-child(3) { inset: 54px; }
.method-rings b { width: 44px; height: 44px; border-radius: 50%; background: var(--xp-orange); box-shadow: 0 0 0 12px rgba(250, 160, 2, .13); }
.method-rings::after { content: ''; position: absolute; top: 50%; left: 50%; width: 50%; height: 1px; background: var(--xp-orange); transform-origin: left; animation: method-scan 12s linear infinite; }
@keyframes method-scan { to { transform: rotate(360deg); } }
.method-tag { position: absolute; right: 20px; bottom: 22px; padding: 9px 12px; border-radius: 8px; background: #fff; color: var(--xp-blue-deep); font-size: 9px; font-weight: 700; }
.method-copy { min-width: 0; padding: 58px 48px 34px; background: #fff; color: var(--xp-ink); }
.method-pane h3 { max-width: 500px; margin: 0 0 19px; color: var(--xp-blue-deep); font: 700 31px/1.13 'Manrope', sans-serif; letter-spacing: -.03em; text-wrap: balance; }
.method-pane > p { max-width: 57ch; margin: 0; color: var(--xp-muted); font-size: 14px; line-height: 1.75; }
.method-progress { height: 3px; margin-top: 72px; overflow: hidden; background: #e9eceb; }
.method-progress i { display: block; width: 100%; height: 100%; background: var(--xp-orange); transform-origin: left; transition: transform .32s ease; }
.method-nav-controls { display: flex; justify-content: space-between; margin-top: 26px; }
.method-nav-controls button { display: inline-flex; align-items: center; justify-content: center; gap: 7px; min-width: 44px; min-height: 44px; padding: 0 8px; border: 0; background: transparent; color: var(--xp-blue-deep); font-size: 11px; font-weight: 700; cursor: pointer; }
.method-nav-controls button:disabled { color: #b8c0c2; cursor: default; }

/* Tools */
.tools { background: var(--xp-ivory); }
.tools-heading-row { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 40px; margin-bottom: 52px; }
.tools-heading-row .section-head { margin: 0; text-align: left; }
.tools-heading-row .section-head p { margin: 0; }
.filter-tabs { display: flex; padding: 4px; border-radius: 10px; background: #e9efee; }
.filter-tabs button { min-height: 44px; padding: 10px 13px; border: 0; border-radius: 7px; background: transparent; color: #52666d; font-size: 11px; font-weight: 700; cursor: pointer; }
.filter-tabs button.active { background: #fff; color: var(--xp-blue-deep); box-shadow: 0 3px 10px rgba(41, 70, 81, .08); }
.tool-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.tool-card { position: relative; min-height: 270px; padding: 27px; border: 1px solid var(--xp-line); border-radius: 16px; background: #fff; transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease; }
.tool-card:hover { transform: translateY(-5px); border-color: rgba(88, 137, 157, .48); box-shadow: 0 18px 38px rgba(31, 67, 81, .08); }
.tool-card[hidden] { display: none; }
.tool-icon { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 12px; background: var(--xp-blue-pale); color: var(--xp-blue-dark); font-size: 19px; }
.tool-card h3 { margin: 30px 0 12px; color: var(--xp-blue-deep); font: 700 18px/1.28 'Manrope', sans-serif; letter-spacing: -.02em; }
.tool-card p { margin: 0; color: var(--xp-muted); font-size: 12px; line-height: 1.68; }

/* Results */
.results { background: #fff; }
.deliverable-grid { display: grid; grid-template-columns: repeat(4, 1fr); overflow: hidden; border: 1px solid var(--xp-line); border-radius: 16px; }
.deliverable-grid article { min-height: 148px; padding: 25px; border-right: 1px solid var(--xp-line); border-bottom: 1px solid var(--xp-line); }
.deliverable-grid article:nth-child(4n) { border-right: 0; }
.deliverable-grid article:nth-child(n+5) { border-bottom: 0; }
.deliverable-grid article > span { color: var(--xp-blue-dark); font-size: 18px; }
.deliverable-grid article p { max-width: 180px; margin: 24px 24px 0 0; color: var(--xp-ink); font-size: 12px; font-weight: 700; line-height: 1.48; }
.results-showcase { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 88px; margin-top: 88px; padding: 62px; overflow: hidden; border-radius: var(--xp-radius); background: var(--xp-paper); }
.report-stack { position: relative; height: 385px; perspective: 1000px; }
.report { position: absolute; top: 50%; left: 50%; width: 280px; height: 365px; border-radius: 5px; background: #fff; box-shadow: 0 25px 55px rgba(38, 65, 75, .14); }
.report--back { background: #e3edef; transform: translate(-38%, -48%) rotate(10deg); }
.report--middle { transform: translate(-59%, -49%) rotate(-7deg); }
.report--front { padding: 28px; transform: translate(-50%, -50%); }
/* Portada real capturada del plan estrategico: hojas en proporcion A4 (210:297). */
.report-stack--cover .report { width: 272px; height: 385px; }
.report--cover { padding: 0; overflow: hidden; box-shadow: 0 32px 64px rgba(38, 65, 75, .22); }
.report--cover img { display: block; width: 100%; height: 100%; border-radius: inherit; object-fit: cover; }
.report-brand { display: flex; justify-content: space-between; color: var(--xp-blue-deep); font-size: 14px; }
.report-brand span { color: #839196; font-size: 6px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.report h3 { margin: 44px 0 19px; color: var(--xp-blue-deep); font: 700 17px/1.2 'Manrope', sans-serif; }
.report-line { height: 4px; margin-top: 7px; border-radius: 2px; background: #e7ebea; }
.report-line.short { width: 63%; }
.report-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 5px; margin: 24px 0; }
.report-stats span { display: flex; flex-direction: column; padding: 9px 5px; border-radius: 4px; background: #f4f7f6; color: #839094; font-size: 5px; }
.report-stats b { color: var(--xp-blue-deep); font-size: 12px; }
.report-chart { display: flex; align-items: flex-end; gap: 7px; height: 75px; border-bottom: 1px solid #e4e8e7; }
.report-chart i { flex: 1; border-radius: 2px 2px 0 0; background: var(--xp-blue); }
.report-chart i:first-child { height: 30%; opacity: .55; }
.report-chart i:nth-child(2) { height: 48%; opacity: .66; }
.report-chart i:nth-child(3) { height: 42%; opacity: .72; }
.report-chart i:nth-child(4) { height: 76%; opacity: .83; }
.report-chart i:nth-child(5) { height: 92%; background: var(--xp-orange); }
.showcase-copy h3 { margin: 0 0 18px; color: var(--xp-blue-deep); font: 700 36px/1.09 'Manrope', sans-serif; letter-spacing: -.035em; text-wrap: balance; }
.showcase-copy > p { margin: 0; color: var(--xp-muted); font-size: 14px; line-height: 1.75; }
.showcase-copy ul { display: flex; flex-direction: column; gap: 13px; margin: 27px 0 0; padding: 0; list-style: none; }
.showcase-copy li { padding: 2px 0 2px 14px; border-left: 1px solid #cbdcdf; color: #53666d; font-size: 12px; line-height: 1.5; }

/* Final CTA */
.final-cta { padding-top: 18px; }
.cta-panel { position: relative; display: grid; grid-template-columns: 1.2fr .8fr; align-items: center; gap: 68px; overflow: hidden; padding: 62px 68px; border-radius: var(--xp-radius); background: var(--xp-blue-deep); color: #fff; }
.cta-panel::after { content: ''; position: absolute; top: -150px; right: -110px; width: 440px; height: 440px; border: 1px solid rgba(255, 255, 255, .08); border-radius: 50%; box-shadow: 0 0 0 70px rgba(255, 255, 255, .02), 0 0 0 140px rgba(255, 255, 255, .015); }
.cta-panel > div { position: relative; z-index: 2; }
.cta-panel h2 { max-width: 650px; margin: 0 0 17px; color: #fff; font: 700 43px/1.06 'Manrope', sans-serif; letter-spacing: -.035em; text-wrap: balance; }
.cta-panel p { max-width: 63ch; margin: 0; color: #b5cad1; font-size: 14px; line-height: 1.7; }
.cta-actions { display: flex; flex-direction: column; align-items: stretch; gap: 10px; }
.demo-link { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 10px; color: #c6d7dc; font-size: 11px; font-weight: 600; text-decoration: none; }
.demo-link:hover { color: #fff; }
.home-final-cta { padding-top: 96px; }

/* Public landing pages */
.landing-hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 86px;
  background: linear-gradient(135deg, #f9fbfa 0%, #f5f7f4 52%, #edf4f6 100%);
}

.landing-hero::after {
  content: '';
  position: absolute;
  top: -320px;
  right: -260px;
  width: 720px;
  height: 720px;
  border: 1px solid rgba(88, 137, 157, .15);
  border-radius: 50%;
  box-shadow: 0 0 0 92px rgba(88, 137, 157, .035), 0 0 0 184px rgba(88, 137, 157, .02);
}

.landing-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: 54px;
  min-height: 520px;
}

.landing-hero-copy { position: relative; z-index: 2; }
.landing-hero-copy h1,
.about-landing-copy h1 {
  max-width: 760px;
  margin: 0 0 17px;
  color: var(--xp-blue-deep);
  font: 700 clamp(43px, 4.65vw, 67px) / 1.28 'Manrope', sans-serif;
  letter-spacing: -.035em;
  text-wrap: balance;
}
.landing-hero-copy > p,
.about-landing-copy > p {
  max-width: 680px;
  margin: 0 0 32px;
  color: var(--xp-muted);
  font-size: 17px;
  line-height: 1.72;
}
.landing-hero .dashboard-stage { transform: perspective(1200px) rotateY(-3deg) rotateX(1deg) scale(.96); }
.audience-landing-hero--company { background: linear-gradient(135deg, #fbfbf8 0%, #f8f5ed 55%, #edf4f6 100%); }
.audience-demo { min-width: 0; }
.audience-demo-context { margin: 0 0 12px; color: var(--xp-blue-dark); font-size: 12px; font-weight: 700; }
.audience-demo .dashboard-stage { width: 100%; }

.problem-section { background: #fff; }
.problem-grid { display: grid; grid-template-columns: .96fr 1.04fr; align-items: start; gap: 92px; }
.problem-grid h2 { max-width: 560px; margin: 0; color: var(--xp-blue-deep); font: 700 clamp(34px, 3.5vw, 48px) / 1.1 'Manrope', sans-serif; letter-spacing: -.03em; text-wrap: balance; }
.problem-grid p { max-width: 62ch; margin: 8px 0 0; color: var(--xp-muted); font-size: 16px; line-height: 1.8; }

.value-section { background: var(--xp-ivory); }
.benefit-list { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--xp-line); }
.benefit-list article { display: grid; grid-template-columns: 48px 1fr; gap: 20px; min-height: 166px; padding: 30px 34px 30px 0; border-bottom: 1px solid var(--xp-line); }
.benefit-list article:nth-child(even) { padding-right: 0; padding-left: 34px; border-left: 1px solid var(--xp-line); }
.benefit-icon { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 11px; background: var(--xp-blue-pale); color: var(--xp-blue-dark); font-size: 17px; }
.benefit-list h3 { margin: 1px 0 9px; color: var(--xp-blue-deep); font: 700 19px/1.28 'Manrope', sans-serif; letter-spacing: -.02em; }
.benefit-list p { max-width: 48ch; margin: 0; color: var(--xp-muted); font-size: 13px; line-height: 1.7; }

.quote-section { padding: 88px 0; background: var(--xp-blue-deep); color: #fff; text-align: center; }
.quote-section blockquote { max-width: 920px; margin: 0 auto 20px; font: 700 clamp(34px, 4vw, 52px)/1.14 'Manrope', sans-serif; letter-spacing: -.035em; text-wrap: balance; }
.quote-section p { max-width: 720px; margin: 0 auto; color: #b5cad1; font-size: 15px; line-height: 1.72; }

.workflow-section { overflow: hidden; background: #fff; }
.workflow-line { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 31px 0; border-top: 1px solid var(--xp-line); border-bottom: 1px solid var(--xp-line); }
.workflow-line span { flex: 1; color: var(--xp-blue-deep); font-size: 12px; font-weight: 700; line-height: 1.45; text-align: center; }
.workflow-line > i { flex: 0 0 auto; color: #9cb0b7; font-size: 10px; }
.workflow-line--company { gap: 9px; }
.workflow-line--company span { font-size: 11px; }

.support-section { background: var(--xp-blue-pale); }
.support-panel { display: grid; grid-template-columns: .75fr 1.25fr; align-items: center; gap: 84px; padding: 68px; border-radius: 16px; background: #fff; box-shadow: var(--xp-shadow); }
.support-visual { display: flex; align-items: center; justify-content: center; min-height: 220px; }
.support-avatar { display: grid; place-items: center; width: 88px; height: 88px; border-radius: 50%; background: var(--xp-blue-deep); color: #fff; font: 700 22px/1 'Manrope', sans-serif; box-shadow: 0 16px 34px rgba(23, 59, 75, .18); }
.support-avatar--team { background: #fff; color: var(--xp-blue-deep); box-shadow: 0 16px 34px rgba(23, 59, 75, .12); }
.support-visual > i { width: 86px; height: 1px; background: var(--xp-orange); }
.support-panel h2 { max-width: 650px; margin: 0 0 19px; color: var(--xp-blue-deep); font: 700 clamp(32px, 3.4vw, 46px)/1.1 'Manrope', sans-serif; letter-spacing: -.03em; text-wrap: balance; }
.support-panel p { max-width: 68ch; margin: 0 0 14px; color: var(--xp-muted); font-size: 14px; line-height: 1.75; }

.landing-final-cta { padding-top: 18px; }
.landing-tools { background: #fff; }

.landing-hero-grid--method { grid-template-columns: 1fr .9fr; }
.method-hero-visual { display: flex; flex-direction: column; width: min(100%, 430px); margin-left: auto; padding: 34px 40px; border-radius: 16px; background: var(--xp-blue-deep); box-shadow: var(--xp-shadow); }
.method-hero-visual span { padding: 13px 0; color: #fff; font: 600 15px/1.3 'Manrope', sans-serif; }
.method-hero-visual i { width: 1px; height: 22px; margin-left: 7px; background: rgba(255, 255, 255, .24); }
.method-hero-visual i:nth-of-type(3) { background: var(--xp-orange); }

.landing-hero-grid--results { min-height: 500px; }
.landing-report-stack { width: min(100%, 500px); margin-left: auto; }
.landing-results { background: #fff; }
.results-showcase--copy { grid-template-columns: .82fr 1.18fr; }
.showcase-statement { display: flex; flex-direction: column; gap: 13px; padding: 8px 18px; }
.showcase-statement span { padding: 13px 0; border-bottom: 1px solid #dce4e4; color: var(--xp-blue-deep); font: 700 20px/1.2 'Manrope', sans-serif; }
.showcase-statement > i { align-self: flex-end; color: var(--xp-orange-dark); font-size: 11px; transform: rotate(90deg); }

.about-landing-hero { min-height: 520px; display: grid; align-items: center; }
.about-landing-copy { position: relative; z-index: 1; max-width: 980px; text-align: center; }
.about-landing-copy h1, .about-landing-copy p { margin-right: auto; margin-left: auto; }
.story-section { background: #fff; }
.story-grid { display: grid; grid-template-columns: .82fr 1.18fr; align-items: center; gap: 90px; }
.story-visual { display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 430px; border-radius: 16px; background: var(--xp-blue-deep); color: #fff; box-shadow: var(--xp-shadow); }
.story-visual span { font: 700 22px/1.2 'Manrope', sans-serif; }
.story-visual i { width: 1px; height: 56px; margin: 12px 0; background: var(--xp-orange); }
.story-copy h2, .about-support h2 { margin: 0 0 21px; color: var(--xp-blue-deep); font: 700 clamp(34px, 3.8vw, 50px)/1.1 'Manrope', sans-serif; letter-spacing: -.03em; text-wrap: balance; }
.story-copy > p, .about-support p { max-width: 68ch; margin: 0 0 16px; color: var(--xp-muted); font-size: 15px; line-height: 1.78; }
.story-values { display: grid; grid-template-columns: 1fr 1fr; margin-top: 28px; border-top: 1px solid var(--xp-line); }
.story-values span { padding: 14px 0; border-bottom: 1px solid var(--xp-line); color: var(--xp-blue-deep); font-size: 12px; font-weight: 700; }
.story-values span:nth-child(even) { padding-left: 22px; border-left: 1px solid var(--xp-line); }
.about-support { background: var(--xp-blue-pale); }
.about-support-grid { display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; gap: 80px; }

/* Access dialog */
.access-dialog { width: min(920px, calc(100% - 34px)); max-height: calc(100vh - 34px); padding: 0; overflow: auto; border: 0; border-radius: 18px; background: #fff; color: var(--xp-ink); box-shadow: 0 40px 110px rgba(7, 29, 38, .42); }
.access-dialog::backdrop { background: rgba(9, 34, 44, .74); backdrop-filter: blur(7px); }
.dialog-close { position: absolute; z-index: 3; top: 16px; right: 16px; display: grid; place-items: center; width: 44px; height: 44px; border: 0; border-radius: 50%; background: rgba(236, 241, 240, .9); color: var(--xp-blue-deep); cursor: pointer; }
.access-layout { display: grid; grid-template-columns: .78fr 1.22fr; min-height: 590px; }
.access-context { position: relative; overflow: hidden; padding: 60px 42px; background: var(--xp-blue-deep); color: #fff; }
.access-context::after { content: ''; position: absolute; right: -170px; bottom: -180px; width: 420px; height: 420px; border: 1px solid rgba(255, 255, 255, .11); border-radius: 50%; box-shadow: 0 0 0 55px rgba(255, 255, 255, .03), 0 0 0 110px rgba(255, 255, 255, .02); }
.access-mark { position: relative; z-index: 1; display: grid; place-items: center; width: 48px; height: 48px; border-radius: 12px; background: var(--xp-orange); color: var(--xp-blue-deep); }
.access-context h2 { position: relative; z-index: 1; margin: 34px 0 18px; color: #fff; font: 700 33px/1.08 'Manrope', sans-serif; letter-spacing: -.035em; text-wrap: balance; }
.access-context > p { position: relative; z-index: 1; margin: 0; color: #b5cad1; font-size: 13px; line-height: 1.7; }
.access-context ul { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 14px; margin: 36px 0 0; padding: 0; list-style: none; }
.access-context li { padding-left: 12px; border-left: 1px solid rgba(250, 160, 2, .75); color: #d6e2e5; font-size: 11px; line-height: 1.5; }
.access-form-wrap { padding: 52px 48px 40px; }
.auth-tabs { display: flex; gap: 24px; margin-bottom: 30px; border-bottom: 1px solid var(--xp-line); }
.auth-tabs button { position: relative; display: inline-flex; align-items: center; min-height: 44px; padding: 0 0 12px; border: 0; background: transparent; color: #65777d; font-size: 11px; font-weight: 700; cursor: pointer; }
.auth-tabs button.active { color: var(--xp-blue-deep); }
.auth-tabs button.active::after { content: ''; position: absolute; right: 0; bottom: -1px; left: 0; height: 2px; background: var(--xp-orange); }
.auth-form { animation: form-in .26s cubic-bezier(.16, 1, .3, 1); }
@keyframes form-in { from { transform: translateY(8px); opacity: .4; } to { transform: none; opacity: 1; } }
.auth-form[hidden] { display: none; }
.auth-form label { display: block; margin: 14px 0 7px; color: #53666d; font-size: 10px; font-weight: 700; }
.auth-form input[type='text'], .auth-form input[type='email'], .auth-form input[type='password'] { width: 100%; height: 45px; padding: 0 12px; border: 1px solid #dbe3e2; border-radius: 8px; background: #fbfcfb; color: var(--xp-ink); font: 12px 'Inter', sans-serif; caret-color: var(--xp-orange-dark); }
.auth-form input::placeholder { color: #586b72; }
.auth-form input:focus { border-color: var(--xp-blue); outline: 3px solid rgba(88, 137, 157, .14); background: #fff; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.terms-check { display: flex !important; align-items: flex-start; gap: 8px; margin: 16px 0 0 !important; font-weight: 500 !important; line-height: 1.5; }
.terms-check input { margin-top: 2px; accent-color: var(--xp-orange-dark); }
.terms-check span { color: #52666d; font-size: 9px; }
.terms-check a { color: var(--xp-blue-dark); }
.auth-submit { width: 100%; margin-top: 20px; }
.auth-submit:disabled { cursor: wait; opacity: .65; transform: none; box-shadow: none; }
.auth-alert { margin-bottom: 16px; padding: 11px 12px; border-radius: 8px; font-size: 10px; font-weight: 600; line-height: 1.5; }
.auth-alert--error { background: #fff1df; color: #714b0c; }
.auth-alert--success { background: #e8f3ed; color: #37634a; }

@media (max-width: 1120px) {
  .xp-hero { padding-top: 82px; }
  .hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-copy { max-width: 820px; padding-bottom: 8px; }
  .hero-copy h1 { max-width: 800px; }
  .dashboard-stage { width: min(720px, 92%); margin: 10px auto 0; }
  .hero-marquee { margin-top: 72px; }
  .tool-grid { grid-template-columns: repeat(2, 1fr); }
  .dashboard-orbit { display: none; }
  .landing-hero-grid { grid-template-columns: 1fr; min-height: 0; }
  .landing-hero-copy { max-width: 820px; }
  .landing-hero .dashboard-stage { width: min(720px, 92%); margin: 22px auto 0; transform: none; }
  .landing-report-stack { margin: 28px auto 0; }
}

@media (max-width: 820px) {
  .xp-section { padding: 78px 0; }
  .hero-copy h1 { font-size: clamp(43px, 9.5vw, 64px); }
  .dashboard-stage { width: 100%; transform: none; }
  .floating-card--meeting { left: -3px; }
  .floating-card--report { right: -3px; }
  .marquee-inner { grid-template-columns: repeat(3, 1fr); }
  .hero-marquee { height: auto; padding: 16px 0; }
  .marquee-inner span { min-height: 34px; }
  .marquee-inner span:nth-child(4) { border-left: 0; }
  .home-audience-split { grid-template-columns: 1fr; }
  .home-audience-path,
  .home-audience-path--company { min-height: 0; padding: 46px 0; border-left: 0; }
  .home-audience-path--company { border-top: 1px solid var(--xp-line); }
  .home-audience-path ul { grid-template-columns: 1fr; }
  .results-showcase, .cta-panel, .access-layout { grid-template-columns: 1fr; }
  .method-layout { grid-template-columns: 1fr; }
  .method-list { display: grid; grid-template-columns: repeat(4, 1fr); }
  .method-list button { min-height: 48px; padding: 0 12px; text-align: center; }
  .method-list button i { display: none; }
  .method-detail { grid-template-columns: 1fr; }
  .method-visual { min-height: 300px; }
  .method-copy { padding: 40px 32px 30px; }
  .tools-heading-row { grid-template-columns: 1fr; align-items: start; }
  .filter-tabs { width: max-content; max-width: 100%; }
  .deliverable-grid { grid-template-columns: 1fr 1fr; }
  .deliverable-grid article:nth-child(2n) { border-right: 0; }
  .deliverable-grid article:nth-child(n+5) { border-bottom: 1px solid var(--xp-line); }
  .deliverable-grid article:nth-child(n+7) { border-bottom: 0; }
  .results-showcase { gap: 30px; padding: 36px 28px; }
  .cta-panel { gap: 30px; padding: 48px 36px; }
  .access-context { display: none; }
  .access-layout { min-height: 0; }
  .landing-hero { padding: 72px 0; }
  .landing-hero-copy h1, .about-landing-copy h1 { font-size: clamp(42px, 8.5vw, 58px); }
  .problem-grid, .support-panel, .story-grid, .about-support-grid { grid-template-columns: 1fr; gap: 42px; }
  .benefit-list { grid-template-columns: 1fr; }
  .benefit-list article, .benefit-list article:nth-child(even) { padding: 26px 0; border-left: 0; }
  .workflow-line { justify-content: flex-start; overflow-x: auto; padding-bottom: 36px; }
  .workflow-line span { flex: 0 0 132px; }
  .support-panel { padding: 44px 34px; }
  .story-visual { min-height: 340px; }
  .results-showcase--copy { grid-template-columns: 1fr; }
  .about-landing-hero { min-height: 440px; }
}

@media (max-width: 560px) {
  .xp-section { padding: 66px 0; }
  .section-head { margin-bottom: 40px; }
  .section-head h2 { font-size: 36px; }
  .section-head p { font-size: 15px; }
  .xp-hero { padding-top: 66px; }
  .hero-copy h1 { font-size: clamp(40px, 12.3vw, 52px); line-height: 1.28; }
  .hero-subtitle { font-size: 15px; }
  .hero-actions, .hero-actions .xp-button { width: 100%; }
  .dashboard-stage { margin-top: 20px; }
  .dashboard-capture-window { border-radius: 12px; }
  .window-bar { grid-template-columns: auto 1fr; height: auto; min-height: 38px; }
  .window-bar > span { justify-self: center; }
  .window-bar > small { grid-column: 1 / -1; justify-self: end; padding: 0 10px 7px; }
  .window-body { min-height: 360px; }
  .mini-sidebar { flex-basis: 40px; gap: 18px; }
  .dash-content { padding: 16px 12px; }
  .dash-tabs { gap: 13px; overflow: hidden; }
  .metric-grid { grid-template-columns: 1fr 1fr; }
  .metric-card:nth-child(3) { display: none; }
  .dash-lower { grid-template-columns: 1fr; }
  .priority-card, .floating-card { display: none; }
  .hero-marquee { margin-top: 44px; }
  .marquee-inner { grid-template-columns: repeat(2, 1fr); }
  .marquee-inner span:nth-child(odd) { border-left: 0; }
  .marquee-inner span:nth-child(4) { border-left: 1px solid #dce5e7; }
  .home-audience-path,
  .home-audience-path--company { min-height: 0; padding: 40px 0; border-left: 0; }
  .home-audience-path--company { border-top: 1px solid var(--xp-line); }
  .home-audience-path h3 { font-size: 34px; }
  .home-audience-path ul { margin-bottom: 28px; }
  .home-audience-link { margin-top: 0; }
  .method-list { grid-template-columns: 1fr 1fr; }
  .method-visual { min-height: 250px; }
  .method-rings { transform: scale(.78); }
  .method-copy { padding: 34px 24px 27px; }
  .method-pane h3 { font-size: 26px; }
  .method-progress { margin-top: 42px; }
  .tool-grid { grid-template-columns: 1fr; }
  .tool-card { min-height: 225px; }
  .deliverable-grid article { min-height: 130px; padding: 18px; }
  .report-stack { margin: -20px; transform: scale(.84); }
  .showcase-copy h3 { font-size: 30px; }
  .cta-panel h2 { font-size: 34px; }
  .access-form-wrap { padding: 48px 22px 28px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .auth-tabs { gap: 16px; }
  .home-final-cta { padding-top: 66px; }
  .landing-hero { padding: 58px 0 62px; }
  .landing-hero-copy h1, .about-landing-copy h1 { font-size: 40px; }
  .landing-hero-copy > p, .about-landing-copy > p { font-size: 15px; }
  .landing-hero .dashboard-stage { width: 100%; margin-top: 34px; }
  .problem-grid { gap: 24px; }
  .problem-grid h2 { font-size: 34px; }
  .problem-grid p { font-size: 15px; }
  .benefit-list article { grid-template-columns: 42px 1fr; gap: 15px; }
  .quote-section { padding: 68px 0; }
  .quote-section blockquote { font-size: 32px; }
  .workflow-line { flex-direction: column; align-items: stretch; gap: 10px; overflow: visible; }
  .workflow-line span { flex: none; padding: 12px 0; border-bottom: 1px solid var(--xp-line); text-align: left; }
  .workflow-line > i { align-self: center; transform: rotate(90deg); }
  .support-panel { padding: 34px 24px; }
  .support-visual { min-height: 160px; }
  .support-avatar { width: 70px; height: 70px; font-size: 18px; }
  .support-visual > i { width: 54px; }
  .method-hero-visual { padding: 26px 30px; }
  .landing-report-stack { transform: scale(.86); }
  .story-visual { min-height: 300px; }
  .story-copy h2, .about-support h2 { font-size: 34px; }
}

@media (prefers-reduced-motion: reduce) {
  .method-rings::after { animation: none; }
  .auth-form { animation: none; }
  .xp-button:hover,
  .tool-card:hover { transform: none; }
}
