.hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 38px;
}

.hero::after {
  position: absolute;
  z-index: -1;
  top: 8%;
  left: 50%;
  width: 840px;
  height: 840px;
  border: 1px solid rgba(94, 185, 255, 0.08);
  border-radius: 50%;
  content: "";
  transform: translateX(5%);
}

.hero-orb {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(12px);
}

.hero-orb-one {
  top: -280px;
  right: -260px;
  width: 680px;
  height: 680px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.18), transparent 67%);
}

.hero-orb-two {
  bottom: 120px;
  left: -340px;
  width: 720px;
  height: 720px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.12), transparent 67%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(430px, 0.97fr);
  align-items: center;
  gap: 66px;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.announcement {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 12px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-pill);
  color: #cde9ff;
  background: var(--primary-soft);
  font-size: 0.76rem;
  font-weight: 850;
  transition:
    border-color var(--transition),
    transform var(--transition);
}

html[data-theme="light"] .announcement {
  color: #155a94;
}

.announcement:hover {
  border-color: var(--primary);
  transform: translateY(-1px);
}

.announcement-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 5px rgba(74, 222, 128, 0.1);
}

.announcement svg {
  width: 15px;
  height: 15px;
}

.hero h1 {
  max-width: 800px;
  margin-top: 23px;
  font-size: clamp(4rem, 7.4vw, 7.1rem);
  line-height: 0.89;
  letter-spacing: -0.065em;
}

.hero h1 span {
  display: block;
  color: transparent;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-copy {
  max-width: 720px;
  margin-top: 24px;
  color: var(--muted-strong);
  font-size: 1.07rem;
  line-height: 1.8;
}

.hero-search {
  display: flex;
  align-items: center;
  gap: 11px;
  max-width: 720px;
  margin-top: 30px;
  padding: 8px;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  background: color-mix(in srgb, var(--surface-solid) 88%, transparent);
  box-shadow: var(--shadow-medium);
  backdrop-filter: blur(14px);
}

.hero-search > span {
  margin-left: 7px;
  color: var(--muted);
}

.hero-search > span svg {
  width: 20px;
  height: 20px;
}

.hero-search input {
  min-width: 0;
  min-height: 48px;
  flex: 1;
  border: 0;
  outline: 0;
  color: var(--text);
  background: transparent;
}

.hero-search input::placeholder {
  color: var(--muted);
}

.popular-searches {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 13px;
  color: var(--muted);
  font-size: 0.77rem;
}

.popular-searches > span {
  font-weight: 800;
}

.popular-searches button {
  padding: 0;
  color: var(--muted-strong);
  background: transparent;
  cursor: pointer;
}

.popular-searches button:hover {
  color: var(--primary);
}

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

.hero-trust {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 23px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
}

.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-trust [data-icon] {
  color: var(--success);
}

.hero-visual {
  position: relative;
  min-height: 590px;
}

.visual-glow {
  position: absolute;
  inset: 11% 4% 9%;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(49, 143, 255, 0.25), rgba(139, 92, 246, 0.09) 46%, transparent 72%);
  filter: blur(22px);
}

.dashboard-card {
  position: absolute;
  z-index: 2;
  inset: 45px 20px 55px;
  overflow: hidden;
  border: 1px solid rgba(148, 174, 207, 0.22);
  border-radius: 29px;
  background: var(--gradient-surface);
  box-shadow: var(--shadow-large);
  transform: perspective(1200px) rotateY(-5deg) rotateX(2deg) rotateZ(1.2deg);
  transition: transform var(--transition-slow);
}

.hero-visual:hover .dashboard-card {
  transform: perspective(1200px) rotateY(-2deg) rotateX(1deg) rotateZ(0.5deg) translateY(-4px);
}

.dashboard-topbar {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 56px;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
}

.window-dots {
  display: flex;
  gap: 6px;
}

.window-dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fb7185;
}

.window-dots i:nth-child(2) {
  background: #fbbf24;
}

.window-dots i:nth-child(3) {
  background: #4ade80;
}

.dashboard-url {
  min-width: 0;
  flex: 1;
  padding: 7px 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 9px;
  color: var(--muted);
  background: rgba(0, 0, 0, 0.08);
  font-size: 0.72rem;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dashboard-secure {
  color: var(--success);
}

.dashboard-body {
  padding: 25px;
}

.dashboard-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.dashboard-heading > div {
  display: grid;
}

.dashboard-heading span {
  color: var(--muted);
  font-size: 0.72rem;
}

.dashboard-heading strong {
  margin-top: 3px;
  font-size: 1.2rem;
}

.dashboard-avatar {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 13px;
  color: #d9efff !important;
  background: var(--primary-soft);
  font-weight: 900;
}

.dashboard-search {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 20px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 13px;
  color: var(--muted);
  background: rgba(0, 0, 0, 0.08);
  font-size: 0.78rem;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px;
  margin-top: 16px;
}

.dashboard-tool {
  display: grid;
  min-height: 118px;
  align-content: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
}

.dashboard-tool > span {
  width: 34px;
  height: 34px;
  margin-bottom: 12px;
  border-radius: 10px;
}

.dashboard-tool strong {
  font-size: 0.86rem;
}

.dashboard-tool small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.67rem;
}

.dashboard-tool.is-red > span {
  color: #fb7185;
  background: rgba(251, 113, 133, 0.12);
}

.dashboard-tool.is-green > span {
  color: #4ade80;
  background: rgba(74, 222, 128, 0.12);
}

.dashboard-tool.is-pink > span {
  color: #f472b6;
  background: rgba(244, 114, 182, 0.12);
}

.dashboard-tool.is-purple > span {
  color: #c4b5fd;
  background: rgba(139, 92, 246, 0.13);
}

.dashboard-progress {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 15px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: linear-gradient(100deg, rgba(94, 185, 255, 0.08), rgba(139, 92, 246, 0.08));
}

.dashboard-progress > div {
  display: grid;
}

.dashboard-progress span {
  color: var(--muted);
  font-size: 0.66rem;
}

.dashboard-progress strong {
  margin-top: 3px;
  font-size: 0.8rem;
}

.dashboard-badge {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  color: #d9efff !important;
  background: var(--primary-soft);
  font-size: 0.8rem !important;
  font-weight: 950;
}

.floating-card {
  position: absolute;
  z-index: 4;
  display: flex;
  width: 230px;
  align-items: center;
  gap: 12px;
  padding: 15px;
  border: 1px solid rgba(148, 174, 207, 0.22);
  border-radius: 18px;
  background: color-mix(in srgb, var(--surface-solid) 92%, transparent);
  box-shadow: var(--shadow-medium);
  backdrop-filter: blur(16px);
}

.floating-card-left {
  bottom: 18px;
  left: -10px;
  transform: rotate(-4deg);
}

.floating-card-right {
  top: 15px;
  right: -10px;
  transform: rotate(4deg);
}

.floating-icon {
  width: 42px;
  height: 42px;
  border-radius: 13px;
}

.floating-icon.is-blue {
  color: var(--primary);
  background: var(--primary-soft);
}

.floating-icon.is-purple {
  color: #c4b5fd;
  background: rgba(139, 92, 246, 0.13);
}

.floating-card div {
  display: grid;
  min-width: 0;
}

.floating-card strong {
  font-size: 0.78rem;
}

.floating-card small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.65rem;
  line-height: 1.35;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 42px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.stat-card {
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: var(--surface-light);
}

.stat-card strong {
  display: block;
  color: var(--text);
  font-size: 1.55rem;
  line-height: 1;
}

.stat-card span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.76rem;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 15px;
}

.category-card {
  min-height: 245px;
  padding: 22px;
  border-radius: var(--radius-lg);
}

.category-card > * {
  position: relative;
  z-index: 1;
}

.category-card .card-icon {
  width: 50px;
  height: 50px;
  border-radius: 16px;
}

.category-card h3 {
  margin-top: 18px;
}

.category-brand {
  display: block;
  margin-top: 5px;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.category-card p {
  margin-top: 11px;
  font-size: 0.82rem;
  line-height: 1.65;
}

.category-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 18px;
}

.category-count {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
}

.category-arrow {
  width: 33px;
  height: 33px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--muted-strong);
  transition:
    color var(--transition),
    border-color var(--transition),
    transform var(--transition);
}

.category-card:hover .category-arrow {
  color: var(--accent);
  border-color: color-mix(in srgb, var(--accent) 45%, var(--line));
  transform: translateX(3px);
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.tool-card {
  min-height: 215px;
  padding: 22px;
  border-radius: var(--radius-lg);
}

.tool-card > * {
  position: relative;
  z-index: 1;
}

.tool-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.tool-icon {
  width: 48px;
  height: 48px;
  border-radius: 15px;
}

.tool-card h3 {
  margin-top: 19px;
}

.tool-card p {
  min-height: 52px;
  margin-top: 9px;
  font-size: 0.83rem;
  line-height: 1.65;
}

.tool-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
}

.tool-category {
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 900;
}

.tool-action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted-strong);
  font-size: 0.75rem;
  font-weight: 850;
}

.tool-action svg {
  width: 14px;
  height: 14px;
  transition: transform var(--transition);
}

.tool-card:hover .tool-action svg {
  transform: translateX(3px);
}

.ecosystem-section {
  overflow: hidden;
}

.ecosystem-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(480px, 1.05fr);
  align-items: center;
  gap: 80px;
}

.ecosystem-content h2 {
  margin-top: 14px;
}

.ecosystem-content > p {
  max-width: 680px;
  margin-top: 21px;
  font-size: 1rem;
  line-height: 1.8;
}

.ecosystem-points {
  display: grid;
  gap: 14px;
  margin: 28px 0;
}

.ecosystem-points > div {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: var(--surface-light);
}

.ecosystem-points > div > span {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  color: var(--primary);
  background: var(--primary-soft);
}

.ecosystem-points strong {
  display: block;
  margin-top: 1px;
}

.ecosystem-points p {
  margin-top: 4px;
  font-size: 0.82rem;
  line-height: 1.6;
}

.brand-universe {
  position: relative;
  min-height: 570px;
  border: 1px solid var(--line);
  border-radius: 38px;
  background:
    radial-gradient(circle at center, rgba(94, 185, 255, 0.13), transparent 31%),
    radial-gradient(circle at 70% 20%, rgba(139, 92, 246, 0.1), transparent 30%),
    var(--surface-light);
  box-shadow: var(--shadow-medium);
}

.brand-core {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 50%;
  display: grid;
  width: 180px;
  height: 180px;
  place-items: center;
  align-content: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: var(--gradient-surface);
  box-shadow: 0 30px 80px rgba(49, 143, 255, 0.22);
  transform: translate(-50%, -50%);
}

.brand-core strong {
  margin-top: 12px;
  font-size: 0.87rem;
  letter-spacing: 0.05em;
}

.brand-core small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.67rem;
}

.orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px dashed rgba(94, 185, 255, 0.18);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orbit-one {
  width: 340px;
  height: 340px;
}

.orbit-two {
  width: 510px;
  height: 510px;
}

.orbit-brand {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: color-mix(in srgb, var(--surface-solid) 92%, transparent);
  box-shadow: var(--shadow-small);
  backdrop-filter: blur(12px);
}

.orbit-brand > span {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  color: var(--orbit-accent);
  background: color-mix(in srgb, var(--orbit-accent) 13%, transparent);
}

.orbit-brand strong {
  font-size: 0.75rem;
}

.orbit-pdf {
  --orbit-accent: #fb7185;
  top: 12%;
  left: 16%;
}

.orbit-image {
  --orbit-accent: #4ade80;
  top: 14%;
  right: 12%;
}

.orbit-qr {
  --orbit-accent: #f472b6;
  top: 45%;
  right: 4%;
}

.orbit-ai {
  --orbit-accent: #c4b5fd;
  right: 17%;
  bottom: 10%;
}

.orbit-business {
  --orbit-accent: #38bdf8;
  bottom: 12%;
  left: 12%;
}

.orbit-dev {
  --orbit-accent: #2dd4bf;
  top: 48%;
  left: 3%;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 42px;
}

.step-card {
  min-height: 285px;
  padding: 25px;
  border-radius: var(--radius-lg);
}

.step-card > * {
  position: relative;
  z-index: 1;
}

.step-number {
  position: absolute;
  top: 20px;
  right: 22px;
  color: var(--line-strong);
  font-size: 2.6rem;
  font-weight: 950;
  line-height: 1;
}

.step-icon {
  width: 50px;
  height: 50px;
  border-radius: 16px;
}

.step-card h3 {
  margin-top: 60px;
  font-size: 1.25rem;
}

.step-card p {
  margin-top: 11px;
  line-height: 1.7;
}

.benefit-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 52px;
  align-items: center;
  padding: 45px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 32px;
  background:
    radial-gradient(circle at 100% 0%, rgba(139, 92, 246, 0.19), transparent 34%),
    radial-gradient(circle at 0% 100%, rgba(34, 211, 238, 0.1), transparent 32%),
    var(--gradient-surface);
  box-shadow: var(--shadow-large);
}

.benefit-copy h2 {
  margin-top: 13px;
  font-size: clamp(2.2rem, 4vw, 3.7rem);
}

.benefit-copy p {
  margin-top: 18px;
  line-height: 1.75;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
}

.benefit-grid article {
  min-height: 170px;
  padding: 19px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
}

.benefit-grid article > span {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  color: var(--primary);
  background: var(--primary-soft);
}

.benefit-grid strong {
  display: block;
  margin-top: 20px;
}

.benefit-grid p {
  margin-top: 6px;
  font-size: 0.79rem;
  line-height: 1.55;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: 78px;
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: calc(var(--header-height) + 30px);
}

.faq-intro h2 {
  margin-top: 13px;
}

.faq-intro > p {
  margin-top: 18px;
  line-height: 1.75;
}

.faq-intro .text-link {
  margin-top: 23px;
}

.faq-list {
  display: grid;
  gap: 11px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
}

.faq-item button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px;
  color: var(--text);
  background: transparent;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.faq-item button > span:last-child {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--muted-strong);
  transition: transform var(--transition);
}

.faq-item button[aria-expanded="true"] > span:last-child {
  color: var(--primary);
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 20px 20px;
}

.faq-answer p {
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 0.88rem;
  line-height: 1.7;
}

.final-cta-section {
  padding-top: 72px;
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding: 42px;
  overflow: hidden;
  border-radius: 32px;
  color: #f8fbff;
  background:
    radial-gradient(circle at 92% 0%, rgba(255, 255, 255, 0.2), transparent 30%),
    linear-gradient(120deg, #1669b2 0%, #3667d8 48%, #7144c8 100%);
  box-shadow: 0 34px 90px rgba(49, 95, 190, 0.32);
}

.final-cta .eyebrow {
  color: #c7edff;
}

.final-cta h2 {
  max-width: 760px;
  margin-top: 12px;
  font-size: clamp(2.1rem, 4vw, 3.8rem);
}

.final-cta p {
  max-width: 680px;
  margin-top: 13px;
  color: rgba(255, 255, 255, 0.77);
}


/* =========================================================
   XIPALAPLUTS · HOME MODERNA CLARA V2
   ========================================================= */
html[data-theme="light"] .hero {
  padding-top: 72px;
}

html[data-theme="light"] .hero::after {
  border-color: rgba(37, 99, 235, 0.06);
}

html[data-theme="light"] .hero-orb-one {
  background: radial-gradient(circle, rgba(124,58,237,.12), transparent 67%);
}

html[data-theme="light"] .hero-orb-two {
  background: radial-gradient(circle, rgba(14,165,233,.11), transparent 67%);
}

html[data-theme="light"] .announcement {
  color: #1e4f8b;
  border-color: rgba(37,99,235,.18);
  background: rgba(255,255,255,.78);
  box-shadow: 0 9px 24px rgba(30,64,110,.06);
  backdrop-filter: blur(14px);
}

html[data-theme="light"] .hero h1 {
  color: #0f172a;
  text-shadow: 0 1px 0 rgba(255,255,255,.8);
}

html[data-theme="light"] .hero-copy {
  color: #53657b;
}

html[data-theme="light"] .hero-search {
  border-color: rgba(37,99,235,.18);
  background: rgba(255,255,255,.96);
  box-shadow: 0 24px 55px rgba(30,64,110,.12);
}

html[data-theme="light"] .popular-searches button {
  padding: 5px 9px;
  border: 1px solid rgba(37,64,102,.08);
  border-radius: 999px;
  background: rgba(255,255,255,.72);
}

html[data-theme="light"] .popular-searches button:hover {
  border-color: rgba(37,99,235,.2);
  background: #ffffff;
}

html[data-theme="light"] .dashboard-card {
  border-color: rgba(37,99,235,.12);
  background: linear-gradient(160deg, rgba(255,255,255,.99), rgba(242,247,255,.98));
  box-shadow: 0 42px 95px rgba(30,64,110,.18);
}

html[data-theme="light"] .dashboard-topbar {
  background: rgba(241,246,252,.92);
}

html[data-theme="light"] .dashboard-search,
html[data-theme="light"] .dashboard-tool,
html[data-theme="light"] .dashboard-progress,
html[data-theme="light"] .floating-card,
html[data-theme="light"] .stat-card,
html[data-theme="light"] .ecosystem-points > div,
html[data-theme="light"] .faq-item {
  border-color: rgba(37,64,102,.09);
  background: rgba(255,255,255,.92);
  box-shadow: 0 10px 28px rgba(30,64,110,.055);
}

html[data-theme="light"] .floating-card {
  backdrop-filter: blur(18px);
}

html[data-theme="light"] .stat-card {
  min-height: 94px;
  display: grid;
  align-content: center;
}

html[data-theme="light"] .category-card {
  background:
    radial-gradient(circle at 100% 0%, color-mix(in srgb, var(--accent) 9%, transparent), transparent 45%),
    rgba(255,255,255,.96);
}

html[data-theme="light"] .tool-card {
  background:
    linear-gradient(155deg, rgba(255,255,255,.99), rgba(248,250,255,.96));
}

html[data-theme="light"] .brand-universe {
  border-color: rgba(37,99,235,.12);
  background:
    radial-gradient(circle at center, rgba(37,99,235,.10), transparent 31%),
    radial-gradient(circle at 70% 20%, rgba(124,58,237,.08), transparent 30%),
    rgba(255,255,255,.88);
  box-shadow: 0 28px 70px rgba(30,64,110,.12);
}

html[data-theme="light"] .benefit-panel {
  border-color: rgba(37,99,235,.18);
  background:
    radial-gradient(circle at 100% 0%, rgba(124,58,237,.10), transparent 34%),
    radial-gradient(circle at 0% 100%, rgba(14,165,233,.08), transparent 32%),
    linear-gradient(155deg, #ffffff, #f2f6fd);
  box-shadow: 0 30px 75px rgba(30,64,110,.13);
}

html[data-theme="light"] .benefit-grid article {
  border-color: rgba(37,64,102,.09);
  background: rgba(255,255,255,.86);
  box-shadow: 0 10px 28px rgba(30,64,110,.05);
}

html[data-theme="light"] .faq-item:hover {
  border-color: rgba(37,99,235,.20);
}

html[data-theme="light"] .final-cta {
  background:
    radial-gradient(circle at 92% 0%, rgba(255,255,255,.24), transparent 30%),
    linear-gradient(120deg, #0f86c8 0%, #315fd3 50%, #7442bf 100%);
  box-shadow: 0 32px 78px rgba(49,95,190,.26);
}

@media (max-width: 700px) {
  html[data-theme="light"] .hero {
    padding-top: 46px;
  }

  html[data-theme="light"] .hero-search {
    padding: 7px;
  }

  html[data-theme="light"] .dashboard-card {
    box-shadow: 0 28px 65px rgba(30,64,110,.16);
  }
}

/* =========================================================
   XIPALAPLUTS · HOME CLARA PREMIUM V3
   Fondo claro + texto azul marino + secciones oscuras.
   ========================================================= */
html[data-theme="light"] .hero {
  padding-top: 78px;
}

html[data-theme="light"] .hero h1 {
  color: #0b1b33;
  text-shadow: none;
}

html[data-theme="light"] .hero-copy {
  color: #5d6f86;
}

html[data-theme="light"] .announcement {
  color: #2159a6;
  border-color: rgba(37, 99, 235, 0.16);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 10px 28px rgba(29, 56, 94, 0.07);
}

html[data-theme="light"] .hero-search {
  border-color: rgba(37, 99, 235, 0.17);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 25px 60px rgba(31, 67, 117, 0.13);
}

html[data-theme="light"] .hero-search input {
  color: #0b1b33;
}

html[data-theme="light"] .popular-searches button {
  color: #35506e;
  border-color: rgba(31, 57, 94, 0.10);
  background: rgba(255, 255, 255, 0.74);
}

html[data-theme="light"] .hero-trust {
  color: #52657d;
}

html[data-theme="light"] .dashboard-card {
  border-color: rgba(31, 57, 94, 0.13);
  background: linear-gradient(155deg, #ffffff 0%, #f3f7fc 100%);
  box-shadow: 0 42px 100px rgba(31, 55, 91, 0.19);
}

html[data-theme="light"] .dashboard-topbar {
  background: rgba(244, 247, 252, 0.92);
}

html[data-theme="light"] .dashboard-url,
html[data-theme="light"] .dashboard-search {
  color: #687a90;
  border-color: rgba(31, 57, 94, 0.10);
  background: #ffffff;
}

html[data-theme="light"] .floating-card {
  color: #0b1b33;
  border-color: rgba(31, 57, 94, 0.12);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 22px 55px rgba(31, 55, 91, 0.14);
}

html[data-theme="light"] .stat-card {
  border-color: rgba(31, 57, 94, 0.10);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 32px rgba(31, 55, 91, 0.065);
}

html[data-theme="light"] .stat-card strong {
  color: #0b1b33;
}

/* Sección oscura de contraste: el ecosistema XIPA */
html[data-theme="light"] .ecosystem-section {
  color: #f8fbff;
  border-block: 1px solid rgba(148, 163, 184, 0.12);
  background:
    radial-gradient(circle at 88% 12%, rgba(124, 58, 237, 0.24), transparent 31rem),
    radial-gradient(circle at 8% 92%, rgba(34, 211, 238, 0.11), transparent 28rem),
    linear-gradient(145deg, #071426 0%, #0b1d35 53%, #111d3c 100%);
}

html[data-theme="light"] .ecosystem-section h2,
html[data-theme="light"] .ecosystem-section h3,
html[data-theme="light"] .ecosystem-section strong {
  color: #ffffff;
}

html[data-theme="light"] .ecosystem-section p {
  color: #a9b9ce;
}

html[data-theme="light"] .ecosystem-section .eyebrow {
  color: #9ed9ff;
  border-color: rgba(125, 211, 252, 0.22);
  background: rgba(56, 189, 248, 0.08);
}

html[data-theme="light"] .ecosystem-points > div {
  border-color: rgba(148, 163, 184, 0.15);
  background: rgba(255, 255, 255, 0.045);
}

html[data-theme="light"] .ecosystem-points > div > span {
  color: #7dd3fc;
  background: rgba(56, 189, 248, 0.10);
}

html[data-theme="light"] .brand-universe {
  filter: drop-shadow(0 38px 60px rgba(0, 0, 0, 0.24));
}

html[data-theme="light"] .brand-core,
html[data-theme="light"] .orbit-brand {
  color: #ffffff;
  border-color: rgba(148, 163, 184, 0.17);
  background: rgba(14, 33, 58, 0.92);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.23);
}

html[data-theme="light"] .brand-core small {
  color: #9fb0c8;
}

html[data-theme="light"] .orbit {
  border-color: rgba(125, 211, 252, 0.14);
}

/* Bloque de beneficios más luminoso */
html[data-theme="light"] .benefit-panel {
  border-color: rgba(37, 99, 235, 0.18);
  background:
    radial-gradient(circle at 100% 0%, rgba(124, 58, 237, 0.13), transparent 34%),
    radial-gradient(circle at 0% 100%, rgba(34, 211, 238, 0.10), transparent 32%),
    linear-gradient(145deg, #ffffff 0%, #edf4ff 100%);
  box-shadow: 0 34px 85px rgba(31, 63, 109, 0.14);
}

html[data-theme="light"] .benefit-grid article {
  border-color: rgba(31, 57, 94, 0.10);
  background: rgba(255, 255, 255, 0.80);
}

html[data-theme="light"] .final-cta {
  background:
    radial-gradient(circle at 92% 0%, rgba(255, 255, 255, 0.18), transparent 30%),
    linear-gradient(120deg, #0d4fad 0%, #2f63d4 48%, #6d3fc0 100%);
  box-shadow: 0 34px 88px rgba(43, 78, 169, 0.30);
}

html[data-theme="light"] .final-cta h2 {
  color: #ffffff;
}

html[data-theme="light"] .final-cta .button-light {
  color: #163052;
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(7, 20, 38, 0.16);
}

/* En móvil conservamos la claridad y reducimos el ruido visual. */
@media (max-width: 700px) {
  html[data-theme="light"] .hero {
    padding-top: 52px;
  }

  html[data-theme="light"] .floating-card {
    background: rgba(255, 255, 255, 0.97);
  }

  html[data-theme="light"] .ecosystem-section {
    background:
      radial-gradient(circle at 85% 8%, rgba(124, 58, 237, 0.20), transparent 24rem),
      linear-gradient(160deg, #071426 0%, #0c1d36 100%);
  }
}
