@import url("https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Geist:wght@300;400;500;600;700&family=Geist+Mono:wght@500;600&family=Outfit:wght@400;500;600;700&display=swap");

:root {
  --ink: #0e1726;
  --ink-soft: #253249;
  --muted: #68748a;
  --line: rgba(14, 23, 38, 0.12);
  --paper: #f8faff;
  --white: #fff;
  --ice: #eef4ff;
  --ice-deep: #dfeaff;
  --blue: #4d6bff;
  --blue-dark: #2e49da;
  --lime: #b8ff5a;
  --lime-dark: #8ce42f;
  --green: #23b66d;
  --green-dark: #0b7747;
  --violet: #8b6cf5;
  --coral: #ff806b;
  --yellow: #ffd667;
  --font: "Geist", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --display: "Outfit", "Geist", ui-sans-serif, system-ui, sans-serif;
  --mono: "Geist Mono", ui-monospace, SFMono-Regular, Consolas, monospace;
  --serif: "DM Serif Display", Georgia, serif;
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --shadow: 0 32px 90px rgba(48, 77, 140, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

button,
a {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

mark {
  background: none;
  color: inherit;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 0.8rem 1rem;
  transform: translateY(-180%);
  border-radius: 10px;
  background: var(--ink);
  color: white;
}

.skip-link:focus {
  transform: translateY(0);
}

.ambient-bg {
  position: fixed;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.ambient-bg i {
  position: absolute;
  width: 40vw;
  height: 40vw;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.14;
}

.ambient-bg i:nth-child(1) {
  top: -20vw;
  left: -10vw;
  background: var(--blue);
}

.ambient-bg i:nth-child(2) {
  top: 25vh;
  right: -25vw;
  background: #81aaff;
}

.ambient-bg i:nth-child(3) {
  bottom: -25vw;
  left: 30vw;
  background: var(--lime);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 16px;
  left: 50%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: min(1320px, calc(100% - 32px));
  min-height: 72px;
  padding: 10px 12px 10px 18px;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 40px rgba(50, 70, 120, 0.08);
  backdrop-filter: blur(24px);
  transition: min-height 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.site-header.scrolled {
  min-height: 64px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 48px rgba(31, 45, 80, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
}

.brand-symbol {
  position: relative;
  display: block;
  width: 30px;
  height: 30px;
  transform: rotate(-10deg);
}

.brand-symbol i {
  position: absolute;
  left: 2px;
  width: 26px;
  height: 9px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: white;
}

.brand-symbol i:nth-child(1) {
  top: 1px;
}

.brand-symbol i:nth-child(2) {
  top: 10px;
}

.brand-symbol i:nth-child(3) {
  top: 19px;
}

.brand-symbol.large {
  width: 54px;
  height: 54px;
}

.brand-symbol.large i {
  left: 3px;
  width: 48px;
  height: 16px;
  border-width: 3px;
}

.brand-symbol.large i:nth-child(1) {
  top: 0;
}

.brand-symbol.large i:nth-child(2) {
  top: 17px;
}

.brand-symbol.large i:nth-child(3) {
  top: 34px;
}

.brand-name {
  font-family: var(--display);
  font-size: 1.27rem;
  font-weight: 700;
  letter-spacing: -0.055em;
}

.brand-name span {
  color: var(--blue);
}

.brand-version {
  padding: 0.27rem 0.42rem;
  border-radius: 6px;
  background: var(--lime);
  font-family: var(--mono);
  font-size: 0.55rem;
  letter-spacing: 0.08em;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(1rem, 2.4vw, 2.15rem);
}

.main-nav a {
  position: relative;
  padding: 0.65rem 0;
  color: #435068;
  font-size: 0.88rem;
  font-weight: 500;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--blue);
  content: "";
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.login-link {
  font-size: 0.86rem;
  font-weight: 600;
}

.header-button {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 0.84rem 0.92rem 0.84rem 1.15rem;
  border-radius: 12px;
  background: var(--ink);
  color: white;
  font-size: 0.82rem;
  font-weight: 600;
  transition: transform 180ms ease, background 180ms ease;
}

.header-button i {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 7px;
  background: var(--lime);
  color: var(--ink);
  font-style: normal;
}

.header-button:hover {
  transform: translateY(-2px);
  background: var(--blue);
}

.menu-toggle {
  display: none;
}

.page {
  overflow: clip;
}

.section-shell {
  width: min(1240px, calc(100% - 40px));
  margin-inline: auto;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.micro-label,
.eyebrow {
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.13em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.62rem 0.82rem;
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 8px 28px rgba(62, 86, 135, 0.08);
  backdrop-filter: blur(12px);
}

.eyebrow > i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime-dark);
  box-shadow: 0 0 0 5px rgba(184, 255, 90, 0.25);
}

.home-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(600px, 1.1fr);
  align-items: center;
  min-height: 850px;
  padding: 140px max(32px, calc((100vw - 1320px) / 2)) 80px;
  background:
    radial-gradient(circle at 12% 62%, rgba(255, 255, 255, 0.92) 0, rgba(255, 255, 255, 0) 32%),
    linear-gradient(135deg, #f9fbff 8%, #edf3ff 48%, #dce9ff 100%);
}

.home-hero::before {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(77, 107, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(77, 107, 255, 0.12) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to right, black, transparent 75%);
  content: "";
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.hero-copy h1,
.estate-hero-copy h1 {
  max-width: 700px;
  margin: 1.6rem 0 1.35rem;
  font-family: var(--display);
  font-size: clamp(3.9rem, 6vw, 6.75rem);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: -0.065em;
}

.hero-copy h1 mark {
  position: relative;
  z-index: 0;
  white-space: nowrap;
}

.hero-copy h1 mark::before {
  position: absolute;
  z-index: -1;
  right: -0.05em;
  bottom: 0.02em;
  left: -0.05em;
  height: 0.38em;
  transform: rotate(-1.4deg);
  border-radius: 0.08em;
  background: var(--lime);
  content: "";
}

.hero-lead,
.estate-hero-copy > p {
  max-width: 600px;
  margin: 0;
  color: #526076;
  font-size: 1.08rem;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  min-height: 52px;
  padding: 0.9rem 1.2rem;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: transform 180ms ease, box-shadow 180ms ease, color 180ms ease, background 180ms ease;
}

.button span {
  font-size: 1rem;
}

.button:hover {
  transform: translateY(-2px);
}

.button-lime {
  background: var(--lime);
  box-shadow: 0 14px 34px rgba(140, 228, 47, 0.22);
}

.button-lime:hover {
  box-shadow: 0 18px 40px rgba(140, 228, 47, 0.34);
}

.button-ghost {
  border-color: rgba(14, 23, 38, 0.28);
  background: rgba(255, 255, 255, 0.42);
}

.button-ghost:hover {
  background: white;
}

.button-dark {
  background: var(--ink);
  color: white;
}

.button-green {
  background: var(--green);
  color: white;
  box-shadow: 0 16px 34px rgba(35, 182, 109, 0.2);
}

.button-green:hover {
  background: var(--green-dark);
}

.hero-assurance {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  margin-top: 1.45rem;
  color: #607087;
  font-size: 0.77rem;
}

.hero-assurance span {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
}

.hero-assurance i {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  background: white;
  color: var(--blue);
  font-size: 0.65rem;
  font-style: normal;
}

.command-center {
  position: relative;
  z-index: 2;
  width: min(790px, 56vw);
  margin-left: -1rem;
  perspective: 1400px;
}

.command-glow {
  position: absolute;
  inset: 5% -5% -8% 8%;
  border-radius: 50%;
  background: rgba(77, 107, 255, 0.36);
  filter: blur(75px);
}

.command-window {
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr;
  min-height: 490px;
  overflow: hidden;
  transform: rotateY(-5deg) rotateX(1.5deg);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 25px;
  background: rgba(251, 253, 255, 0.92);
  box-shadow: 0 48px 100px rgba(47, 72, 127, 0.26);
  backdrop-filter: blur(16px);
}

.command-window aside {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 0.68rem;
  padding: 1.1rem 0.65rem;
  background: var(--ink);
}

.mini-brand {
  position: relative;
  display: block;
  width: 25px;
  height: 28px;
  margin-bottom: 1.5rem;
}

.mini-brand i {
  position: absolute;
  left: 2px;
  width: 21px;
  height: 8px;
  border: 1.6px solid white;
  border-radius: 50%;
}

.mini-brand i:nth-child(1) {
  top: 1px;
}

.mini-brand i:nth-child(2) {
  top: 9px;
}

.mini-brand i:nth-child(3) {
  top: 17px;
}

.command-window aside > b {
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  border-radius: 9px;
  color: #718097;
  font-size: 0.85rem;
}

.command-window aside > b.selected {
  background: var(--blue);
  color: white;
}

.command-window aside > em {
  display: grid;
  width: 34px;
  height: 34px;
  margin-top: auto;
  place-items: center;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  font-size: 0.65rem;
  font-style: normal;
  font-weight: 700;
}

.command-body {
  padding: 1.35rem;
}

.command-header {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 0.55rem;
}

.command-header div {
  display: grid;
  gap: 0.3rem;
}

.command-header small {
  color: #8793a7;
  font-family: var(--mono);
  font-size: 0.52rem;
  letter-spacing: 0.08em;
}

.command-header strong {
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 600;
}

.command-header > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: white;
  font-size: 0.7rem;
}

.command-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
  margin-top: 1.35rem;
}

.command-stats article {
  display: grid;
  padding: 0.95rem;
  border: 1px solid rgba(14, 23, 38, 0.08);
  border-radius: 13px;
  background: white;
}

.command-stats small {
  color: #7b879a;
  font-size: 0.59rem;
}

.command-stats strong {
  margin: 0.4rem 0;
  font-family: var(--display);
  font-size: 1.7rem;
}

.command-stats i {
  width: max-content;
  padding: 0.22rem 0.38rem;
  border-radius: 5px;
  font-size: 0.49rem;
  font-style: normal;
}

.command-stats i.lime {
  background: #e9ffd0;
  color: #477d15;
}

.command-stats i.blue {
  background: #e7ecff;
  color: #3d56c7;
}

.command-stats i.coral {
  background: #ffebe7;
  color: #b94736;
}

.command-content {
  display: grid;
  grid-template-columns: 1.45fr 0.8fr;
  gap: 0.7rem;
  margin-top: 0.7rem;
}

.today-panel,
.pulse-panel {
  padding: 1rem;
  border: 1px solid rgba(14, 23, 38, 0.08);
  border-radius: 13px;
  background: white;
}

.panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.8rem;
  font-size: 0.65rem;
}

.panel-title span {
  color: var(--blue);
  font-size: 0.52rem;
}

.task-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.65rem;
  padding: 0.7rem 0;
  border-top: 1px solid rgba(14, 23, 38, 0.07);
}

.avatar {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 8px;
  font-size: 0.52rem;
  font-style: normal;
}

.avatar.lime {
  background: #ddffb4;
}

.avatar.blue {
  background: #dae3ff;
}

.avatar.violet {
  background: #e5ddff;
}

.avatar.coral {
  background: #ffe0da;
}

.task-row div {
  display: grid;
  gap: 0.2rem;
}

.task-row b {
  font-size: 0.59rem;
}

.task-row small {
  color: #8390a3;
  font-size: 0.51rem;
}

.task-row em {
  color: #708096;
  font-size: 0.5rem;
  font-style: normal;
}

.pulse-chart,
.insight-chart {
  display: flex;
  align-items: end;
  gap: 0.35rem;
  height: 122px;
  padding: 0.8rem 0 0;
}

.pulse-chart i,
.insight-chart i {
  width: 100%;
  height: var(--h);
  border-radius: 3px 3px 0 0;
  background: linear-gradient(to top, var(--blue), #91a5ff);
}

.pulse-panel > small {
  color: #8390a3;
  font-size: 0.5rem;
}

.floating-note {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.7rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 20px 45px rgba(47, 72, 127, 0.2);
  backdrop-filter: blur(14px);
}

.floating-note > i,
.floating-note > span {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border-radius: 9px;
  background: var(--lime);
  font-size: 0.7rem;
  font-style: normal;
}

.floating-note div {
  display: grid;
  gap: 0.18rem;
}

.floating-note small {
  color: #8290a4;
  font-size: 0.5rem;
}

.floating-note b {
  font-size: 0.62rem;
}

.note-one {
  right: -2%;
  bottom: 12%;
}

.note-two {
  top: 22%;
  left: -7%;
}

.note-two > span {
  background: var(--blue);
  color: white;
}

.word-rail {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 4vw, 4rem);
  min-height: 80px;
  overflow: hidden;
  background: var(--ink);
  color: white;
  font-family: var(--mono);
  font-size: clamp(0.65rem, 1vw, 0.78rem);
  letter-spacing: 0.13em;
  white-space: nowrap;
}

.word-rail i {
  color: var(--lime);
  font-size: 1.1rem;
  font-style: normal;
}

.market-problem,
.system-section,
.bento-section,
.implementation-section,
.plans-section,
.faq-section,
.scope-section,
.estate-plans {
  padding-top: clamp(6rem, 10vw, 10rem);
  padding-bottom: clamp(6rem, 10vw, 10rem);
}

.split-heading {
  display: grid;
  grid-template-columns: 1.12fr 0.68fr;
  align-items: end;
  gap: clamp(2rem, 8vw, 8rem);
}

.split-heading h2,
.section-intro h2,
.faq-heading h2,
.portal-copy h2,
.message-copy h2,
.domain-copy h2,
.footer-spotlight h2,
.closing-banner h2,
.scope-card h2 {
  margin: 0.9rem 0 0;
  font-family: var(--display);
  font-size: clamp(2.6rem, 4.8vw, 4.7rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.055em;
}

.split-heading > p,
.section-intro > p,
.faq-heading > p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 4rem;
}

.problem-card {
  position: relative;
  min-height: 370px;
  overflow: hidden;
  padding: 1.6rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: white;
}

.problem-card > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-family: var(--mono);
  font-size: 0.56rem;
}

.problem-card h3 {
  margin: 2rem 0 0.7rem;
  font-family: var(--display);
  font-size: 1.65rem;
  letter-spacing: -0.035em;
}

.problem-card p {
  max-width: 310px;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.problem-card.featured {
  border-color: transparent;
  background: var(--blue);
  color: white;
}

.problem-card.featured p {
  color: rgba(255, 255, 255, 0.72);
}

.problem-card.featured > span {
  border-color: rgba(255, 255, 255, 0.25);
}

.problem-signal {
  position: absolute;
  right: 1.6rem;
  bottom: 1.6rem;
  left: 1.6rem;
  height: 105px;
}

.signal-inbox i {
  position: absolute;
  right: 0;
  left: 0;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #f6f8fd;
  box-shadow: 0 12px 24px rgba(40, 58, 96, 0.07);
}

.signal-inbox i:nth-child(1) {
  bottom: 0;
}

.signal-inbox i:nth-child(2) {
  bottom: 18px;
  transform: scale(0.92);
}

.signal-inbox i:nth-child(3) {
  bottom: 36px;
  transform: scale(0.82);
}

.signal-stack {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.signal-stack i {
  position: absolute;
  width: 116px;
  height: 78px;
  border: 1px solid white;
  border-radius: 13px;
  background: var(--ice-deep);
  box-shadow: var(--shadow);
}

.signal-stack i:nth-child(1) {
  transform: translateX(-40px) rotate(-9deg);
  background: #e3ffbd;
}

.signal-stack i:nth-child(2) {
  z-index: 2;
  background: #dbe4ff;
}

.signal-stack i:nth-child(3) {
  transform: translateX(40px) rotate(9deg);
  background: #ece5ff;
}

.next-action {
  position: absolute;
  right: 1.6rem;
  bottom: 1.6rem;
  left: 1.6rem;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 1rem;
  border-radius: 14px;
  background: white;
  color: var(--ink);
}

.next-action b {
  font-size: 0.66rem;
}

.next-action small {
  grid-column: 1;
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.65rem;
}

.next-action i {
  grid-row: 1 / 3;
  grid-column: 2;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 9px;
  background: var(--lime);
  font-style: normal;
}

.system-section {
  border-radius: 40px;
  background: var(--ice);
}

.section-intro {
  max-width: 800px;
}

.section-intro.centered {
  margin-inline: auto;
  text-align: center;
}

.section-intro.centered > p {
  max-width: 650px;
  margin: 1.2rem auto 0;
}

.system-orbit {
  position: relative;
  min-height: 620px;
  margin-top: 5rem;
  background:
    radial-gradient(circle at center, rgba(77, 107, 255, 0.11), transparent 33%),
    repeating-radial-gradient(circle at center, transparent 0 116px, rgba(77, 107, 255, 0.1) 117px 118px);
}

.orbit-core {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 190px;
  height: 190px;
  place-items: center;
  align-content: center;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(77, 107, 255, 0.22);
  border-radius: 50%;
  background: white;
  box-shadow: 0 35px 80px rgba(54, 79, 135, 0.2);
}

.orbit-core strong {
  margin-top: 1rem;
  font-family: var(--display);
  font-size: 1.4rem;
}

.orbit-core small {
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.62rem;
}

.orbit-card {
  position: absolute;
  width: 245px;
  min-height: 170px;
  padding: 1.25rem;
  border: 1px solid rgba(14, 23, 38, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 50px rgba(57, 79, 127, 0.1);
}

.orbit-card > b {
  float: right;
  font-family: var(--mono);
  font-size: 0.56rem;
}

.orbit-card > span {
  color: var(--blue);
  font-family: var(--mono);
  font-size: 0.55rem;
  letter-spacing: 0.1em;
}

.orbit-card h3 {
  margin: 1rem 0 0.4rem;
  font-family: var(--display);
  font-size: 1.5rem;
}

.orbit-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.55;
}

.orbit-one {
  top: 3%;
  left: 9%;
}

.orbit-two {
  top: 7%;
  right: 8%;
}

.orbit-three {
  right: 10%;
  bottom: 2%;
}

.orbit-four {
  bottom: 0;
  left: 10%;
}

.bento-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1rem;
  margin-top: 4rem;
}

.bento-card {
  overflow: hidden;
  padding: 1.6rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: white;
}

.card-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.card-heading span {
  color: var(--blue);
  font-family: var(--mono);
  font-size: 0.56rem;
  letter-spacing: 0.1em;
}

.card-heading b {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 600;
}

.bento-pipeline {
  min-height: 370px;
  background: var(--ink);
  color: white;
}

.bento-pipeline .card-heading span {
  color: var(--lime);
}

.mini-pipeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
}

.pipe-column {
  display: grid;
  align-content: start;
  gap: 0.55rem;
}

.pipe-column > span {
  display: flex;
  justify-content: space-between;
  color: #8f9aae;
  font-family: var(--mono);
  font-size: 0.52rem;
}

.pipe-column > span b {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 5px;
  background: #253047;
  color: white;
}

.pipe-column > i {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 64px;
  padding: 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: #172236;
  font-style: normal;
}

.pipe-column > i small {
  font-size: 0.57rem;
}

.pipe-column > i.pipe-empty {
  border-style: dashed;
  background: transparent;
}

.bento-context {
  min-height: 370px;
  background: linear-gradient(150deg, #f1edff, white);
}

.context-person {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem;
  border-radius: 14px;
  background: white;
  box-shadow: 0 12px 30px rgba(84, 63, 157, 0.08);
}

.context-person > i {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 12px;
  background: #ded4ff;
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 700;
}

.context-person > div {
  display: grid;
  gap: 0.2rem;
}

.context-person strong {
  font-size: 0.72rem;
}

.context-person small,
.context-person em {
  color: var(--muted);
  font-size: 0.58rem;
  font-style: normal;
}

.context-timeline {
  display: grid;
  gap: 0.85rem;
  padding: 1.25rem 0.7rem 0;
}

.context-timeline > span {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 0.65rem;
}

.context-timeline i {
  grid-row: 1 / 3;
  width: 9px;
  height: 9px;
  margin-top: 0.18rem;
  border: 2px solid white;
  border-radius: 50%;
  background: var(--violet);
  box-shadow: 0 0 0 1px var(--violet);
}

.context-timeline b {
  font-size: 0.65rem;
}

.context-timeline small {
  margin-top: 0.2rem;
  color: var(--muted);
  font-size: 0.56rem;
}

.bento-roles {
  min-height: 340px;
}

.role-list {
  display: grid;
}

.role-list > span {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0 0.7rem;
  padding: 0.75rem 0;
  border-top: 1px solid var(--line);
}

.role-list > span > i {
  grid-row: 1 / 3;
}

.role-list b {
  font-size: 0.68rem;
}

.role-list small {
  color: var(--muted);
  font-size: 0.57rem;
}

.role-list em {
  grid-row: 1 / 3;
  grid-column: 3;
  padding: 0.3rem 0.45rem;
  border-radius: 7px;
  background: var(--ice);
  color: var(--blue);
  font-size: 0.54rem;
  font-style: normal;
}

.bento-focus {
  display: flex;
  min-height: 340px;
  flex-direction: column;
  background: var(--lime);
}

.bento-focus blockquote {
  max-width: 520px;
  margin: 2.5rem 0 2rem;
  font-family: var(--serif);
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  font-style: italic;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.focus-meter {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-top: auto;
}

.focus-meter i {
  grid-column: 1 / -1;
  height: 7px;
  border-radius: 99px;
  background: linear-gradient(to right, var(--ink) 0 76%, rgba(14, 23, 38, 0.18) 76%);
}

.focus-meter span {
  font-family: var(--mono);
  font-size: 0.52rem;
}

.bento-insight {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 330px;
  background: linear-gradient(120deg, #e9efff, white);
}

.bento-insight .card-heading {
  grid-column: 1 / -1;
}

.bento-insight .insight-chart {
  height: 200px;
  padding-right: 2rem;
}

.bento-insight p {
  align-self: center;
  max-width: 430px;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.solutions-section {
  padding: clamp(6rem, 10vw, 10rem) 0;
  border-radius: 40px;
  background: var(--ink);
  color: white;
}

.split-heading.light > p {
  color: #9ba8bc;
}

.solution-showcase {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 1rem;
  margin-top: 4rem;
}

.solution-card {
  display: flex;
  min-height: 560px;
  flex-direction: column;
  padding: 1.4rem;
  overflow: hidden;
  border-radius: var(--radius-md);
  color: var(--ink);
}

.solution-card.estate {
  background: #dfffbb;
}

.solution-card.health {
  background: #dce5ff;
}

.solution-card.services {
  background: #ede7ff;
}

.solution-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.09em;
}

.solution-top i {
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  border: 1px solid rgba(14, 23, 38, 0.18);
  border-radius: 50%;
  font-style: normal;
}

.solution-visual {
  display: grid;
  min-height: 270px;
  margin: 2.3rem -0.2rem 1.8rem;
  place-items: center;
}

.solution-card h3 {
  margin: auto 0 0.6rem;
  font-family: var(--display);
  font-size: 2rem;
  letter-spacing: -0.045em;
}

.solution-card h3 em {
  font-family: var(--serif);
  font-weight: 400;
}

.solution-card p {
  margin: 0;
  color: #536077;
  font-size: 0.82rem;
  line-height: 1.6;
}

.mini-portal-window {
  width: 100%;
  max-width: 400px;
  overflow: hidden;
  transform: rotate(-3deg);
  border: 5px solid white;
  border-radius: 14px;
  background: white;
  box-shadow: 0 22px 50px rgba(45, 80, 28, 0.15);
}

.mini-browserbar {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 24px;
  padding: 0 7px;
  background: #f1f4f8;
}

.mini-browserbar i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #b5c0cf;
}

.mini-browserbar span {
  margin-left: 5px;
  color: #7a8799;
  font-size: 0.4rem;
}

.mini-property-hero {
  min-height: 122px;
  padding: 1.3rem;
  background:
    linear-gradient(rgba(15, 37, 31, 0.18), rgba(15, 37, 31, 0.38)),
    linear-gradient(130deg, #adc5b9 0 38%, #6c887a 38% 64%, #d0b184 64%);
  color: white;
}

.mini-property-hero b {
  display: block;
  font-family: var(--display);
  font-size: 1.1rem;
  line-height: 1;
}

.mini-property-hero span {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.34rem 0.55rem;
  border-radius: 5px;
  background: var(--lime);
  color: var(--ink);
  font-size: 0.4rem;
}

.mini-property-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.35rem;
  padding: 0.55rem;
}

.mini-property-row i {
  height: 50px;
  border-radius: 5px;
  background: linear-gradient(145deg, #d3b58c 0 45%, #667d73 45%);
}

.mini-property-row i:nth-child(2) {
  background: linear-gradient(130deg, #d8c2a9 0 38%, #7f9ca4 38%);
}

.mini-property-row i:nth-child(3) {
  background: linear-gradient(155deg, #b7c3ae 0 48%, #5c7770 48%);
}

.mini-calendar {
  position: relative;
  display: grid;
  width: 100%;
  height: 240px;
  padding: 1rem;
  border-radius: 17px;
  background:
    linear-gradient(rgba(77, 107, 255, 0.1) 1px, transparent 1px) 0 48px / 100% 42px,
    white;
  box-shadow: 0 20px 50px rgba(67, 82, 133, 0.14);
}

.mini-calendar > div {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  height: 30px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.45rem;
  text-align: center;
}

.mini-calendar > i {
  position: absolute;
  top: calc(60px + (var(--x) * 35px));
  left: 16px;
  width: calc((100% - 32px) * var(--w) / 5);
  padding: 0.5rem;
  transform: translateX(calc((var(--x) - 1) * 12%));
  border-left: 3px solid var(--blue);
  border-radius: 6px;
  background: #e7ecff;
  color: #455577;
  font-size: 0.45rem;
  font-style: normal;
}

.mini-services-board {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.45rem;
  width: 100%;
  height: 240px;
  padding: 0.9rem;
  transform: rotate(2deg);
  border-radius: 17px;
  background: white;
  box-shadow: 0 20px 50px rgba(68, 51, 126, 0.14);
}

.mini-services-board > span {
  display: grid;
  align-content: start;
  gap: 0.45rem;
}

.mini-services-board b {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.45rem;
}

.mini-services-board i {
  height: 48px;
  border: 1px solid #e4def9;
  border-radius: 7px;
  background: #f7f4ff;
}

.implementation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 4.5rem;
  border-top: 1px solid var(--line);
}

.implementation-grid article {
  position: relative;
  min-height: 290px;
  padding: 1.5rem 2rem 1.5rem 0;
}

.implementation-grid article:not(:last-child) {
  border-right: 1px solid var(--line);
}

.implementation-grid article:not(:first-child) {
  padding-left: 2rem;
}

.implementation-grid span {
  font-family: var(--mono);
  font-size: 0.58rem;
}

.implementation-grid i {
  display: block;
  width: 12px;
  height: 12px;
  margin-top: 1.2rem;
  border: 3px solid var(--paper);
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 1px var(--blue);
}

.implementation-grid h3 {
  margin: 3.2rem 0 0.65rem;
  font-family: var(--display);
  font-size: 1.55rem;
}

.implementation-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.65;
}

.plans-section {
  border-top: 1px solid var(--line);
}

.plans-grid,
.estate-plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 4rem;
}

.plan-card,
.estate-plan {
  position: relative;
  display: flex;
  min-height: 470px;
  flex-direction: column;
  padding: 1.6rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: white;
}

.plan-card.recommended {
  border-color: var(--blue);
  background: var(--blue);
  color: white;
  box-shadow: 0 30px 70px rgba(77, 107, 255, 0.22);
}

.plan-badge {
  position: absolute;
  top: 1.15rem;
  right: 1.15rem;
  padding: 0.35rem 0.5rem;
  border-radius: 6px;
  background: var(--lime);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 0.5rem;
  letter-spacing: 0.08em;
}

.plan-type {
  width: max-content;
  padding: 0.4rem 0.55rem;
  border-radius: 7px;
  background: var(--ice);
  color: var(--blue);
  font-family: var(--mono);
  font-size: 0.55rem;
  letter-spacing: 0.1em;
}

.plan-card.recommended .plan-type {
  background: rgba(255, 255, 255, 0.13);
  color: white;
}

.plan-card h3,
.estate-plan h3 {
  margin: 2rem 0 0.65rem;
  font-family: var(--display);
  font-size: 1.75rem;
  letter-spacing: -0.04em;
}

.plan-card > p,
.estate-plan > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.6;
}

.plan-card.recommended > p {
  color: rgba(255, 255, 255, 0.72);
}

.plan-card ul,
.estate-plan ul {
  display: grid;
  gap: 0.75rem;
  margin: 2rem 0;
  padding: 0;
  list-style: none;
}

.plan-card li,
.estate-plan li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.77rem;
}

.plan-card li::before,
.estate-plan li::before {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  content: "✓";
  font-size: 0.55rem;
}

.plan-card > a,
.estate-plan > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding: 0.9rem 0;
  border-top: 1px solid var(--line);
  font-size: 0.78rem;
  font-weight: 600;
}

.plan-card.recommended > a {
  border-top-color: rgba(255, 255, 255, 0.18);
}

.plans-note {
  max-width: 720px;
  margin: 1.3rem auto 0;
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.6;
  text-align: center;
}

.faq-section {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(3rem, 8vw, 8rem);
  border-top: 1px solid var(--line);
}

.faq-heading {
  align-self: start;
  position: sticky;
  top: 120px;
}

.faq-heading h2 {
  font-size: clamp(2.5rem, 4vw, 4rem);
}

.faq-heading p {
  max-width: 420px;
  margin-top: 1.2rem;
}

.faq-heading a {
  display: inline-block;
  margin-top: 1.4rem;
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 600;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item button {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  width: 100%;
  padding: 1.4rem 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.faq-item button span {
  color: var(--blue);
  font-family: var(--mono);
  font-size: 0.55rem;
}

.faq-item button b {
  padding-right: 1rem;
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 600;
}

.faq-item button i {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 1rem;
  font-style: normal;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 260ms ease;
}

.faq-answer > p {
  overflow: hidden;
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer p {
  margin: 0;
  padding: 0 3rem 1.5rem 42px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.7;
}

.closing-banner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 2rem;
  margin-bottom: 7rem;
  padding: clamp(3rem, 7vw, 6rem);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #dfe9ff, #f3f7ff 58%, #e8ffd0);
}

.closing-banner h2 mark {
  font-family: var(--serif);
  font-style: italic;
}

.closing-banner p {
  max-width: 650px;
  margin: 1.2rem 0 0;
  color: var(--muted);
  line-height: 1.7;
}

/* Estate */

body[data-route="inmuebles"] .brand-name span,
body[data-route="inmuebles"] .main-nav a::after {
  color: var(--green);
}

body[data-route="inmuebles"] .main-nav a::after {
  background: var(--green);
}

body[data-route="inmuebles"] .brand-version {
  background: #c7f7db;
}

body[data-route="inmuebles"] .header-button {
  background: var(--green-dark);
}

.estate-hero {
  position: relative;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  min-height: 910px;
  padding: 145px max(32px, calc((100vw - 1320px) / 2)) 80px;
  background:
    radial-gradient(circle at 5% 60%, rgba(255, 255, 255, 0.92), transparent 35%),
    linear-gradient(135deg, #f9fffc 0%, #edfff5 38%, #daf1ff 100%);
}

.estate-hero::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 58%;
  height: 100%;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(35, 182, 109, 0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(35, 182, 109, 0.11) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: linear-gradient(to left, black, transparent);
  content: "";
}

.estate-hero-copy {
  position: relative;
  z-index: 3;
  max-width: 620px;
}

.breadcrumb {
  display: block;
  width: max-content;
  margin-bottom: 2.2rem;
  color: #6d7c8b;
  font-family: var(--mono);
  font-size: 0.62rem;
}

.breadcrumb b {
  color: var(--green-dark);
}

.eyebrow.estate > i {
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(35, 182, 109, 0.16);
}

.estate-hero-copy h1 {
  font-size: clamp(3.8rem, 5.65vw, 6.4rem);
}

.estate-hero-copy h1 mark {
  position: relative;
  color: var(--green-dark);
  font-family: var(--serif);
  font-style: italic;
  white-space: nowrap;
}

.estate-hero-copy h1 mark::after {
  position: absolute;
  right: 0;
  bottom: -0.05em;
  left: 0;
  height: 0.08em;
  border-radius: 99px;
  background: var(--lime);
  content: "";
}

.estate-domain {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  width: max-content;
  max-width: 100%;
  margin-top: 1.6rem;
  padding: 0.65rem 0.8rem;
  border: 1px solid rgba(14, 23, 38, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.58);
}

.domain-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(35, 182, 109, 0.12);
}

.estate-domain div {
  display: grid;
  gap: 0.1rem;
}

.estate-domain small {
  color: var(--muted);
  font-size: 0.52rem;
}

.estate-domain strong {
  font-size: 0.7rem;
}

.estate-domain > i {
  padding-left: 0.7rem;
  border-left: 1px solid var(--line);
  color: var(--green-dark);
  font-size: 0.58rem;
  font-style: normal;
}

.estate-product {
  position: relative;
  z-index: 2;
  width: min(850px, 60vw);
  margin-left: -1rem;
  perspective: 1400px;
}

.estate-portal-window {
  position: relative;
  min-height: 535px;
  overflow: hidden;
  transform: rotateY(-4deg) rotateX(1deg);
  border: 6px solid white;
  border-radius: 25px;
  background: white;
  box-shadow: 0 50px 100px rgba(45, 103, 77, 0.22);
}

.estate-browserbar,
.showcase-browserbar {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 35px;
  padding: 0 0.7rem;
  background: #f0f3f6;
}

.estate-browserbar i,
.showcase-browserbar i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #bac3ce;
}

.estate-browserbar span,
.showcase-browserbar span {
  width: 48%;
  margin: 0 auto;
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
  background: white;
  color: #7c8794;
  font-size: 0.48rem;
  text-align: center;
}

.estate-browserbar b {
  font-size: 0.6rem;
}

.estate-site-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  padding: 0.8rem 1.1rem;
  font-size: 0.53rem;
}

.estate-site-nav strong {
  margin-right: auto;
  font-family: var(--display);
  font-size: 0.85rem;
}

.estate-site-nav strong span {
  color: var(--green);
}

.estate-site-nav button {
  padding: 0.4rem 0.65rem;
  border: 0;
  border-radius: 6px;
  background: var(--green-dark);
  color: white;
  font-size: 0.48rem;
}

.estate-site-hero {
  min-height: 235px;
  padding: 3rem 2.1rem 1.5rem;
  background:
    linear-gradient(90deg, rgba(13, 39, 31, 0.72), rgba(13, 39, 31, 0.05)),
    linear-gradient(135deg, #5f786d 0 38%, #d3b184 38% 48%, #9a7251 48% 66%, #73909a 66%);
  color: white;
}

.estate-site-hero > small {
  font-family: var(--mono);
  font-size: 0.48rem;
  letter-spacing: 0.1em;
}

.estate-site-hero h2 {
  margin: 0.65rem 0 1.3rem;
  font-family: var(--serif);
  font-size: 2.1rem;
  font-weight: 400;
}

.estate-search {
  display: grid;
  grid-template-columns: repeat(3, 1fr) auto;
  align-items: center;
  max-width: 610px;
  padding: 0.4rem;
  border-radius: 9px;
  background: white;
  color: var(--ink);
}

.estate-search span {
  display: grid;
  gap: 0.18rem;
  padding: 0.2rem 0.55rem;
  border-right: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.42rem;
}

.estate-search span b {
  color: var(--ink);
  font-size: 0.48rem;
}

.estate-search button {
  padding: 0.55rem 0.7rem;
  border: 0;
  border-radius: 7px;
  background: var(--lime);
  font-size: 0.48rem;
}

.estate-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
  padding: 0.9rem;
}

.estate-cards article {
  position: relative;
  display: grid;
  gap: 0.2rem;
}

.property-art {
  position: relative;
  display: block;
  overflow: hidden;
  background-color: #adc1c4;
}

.property-art::before,
.property-art::after {
  position: absolute;
  content: "";
}

.property-art::before {
  right: 8%;
  bottom: 15%;
  width: 68%;
  height: 54%;
  border: 3px solid rgba(255, 255, 255, 0.82);
  background:
    linear-gradient(90deg, transparent 0 48%, rgba(255, 255, 255, 0.8) 48% 51%, transparent 51%),
    linear-gradient(135deg, #8d7159, #d7c1a5);
  box-shadow: -34px 12px 0 -10px rgba(236, 230, 218, 0.94);
}

.property-art::after {
  right: 0;
  bottom: 0;
  left: 0;
  height: 22%;
  background: linear-gradient(100deg, #486c55, #96ad82);
}

.art-one {
  background: linear-gradient(160deg, #adcbd9 0 50%, #d3b78f 50%);
}

.art-two {
  background: linear-gradient(160deg, #9ac1d1 0 48%, #e2c5a2 48%);
}

.art-two::before {
  width: 74%;
  height: 58%;
  background:
    linear-gradient(90deg, transparent 0 32%, rgba(255, 255, 255, 0.8) 32% 35%, transparent 35% 66%, rgba(255, 255, 255, 0.8) 66% 69%, transparent 69%),
    linear-gradient(135deg, #a26c4f, #d8ba98);
}

.art-three {
  background: linear-gradient(160deg, #b9d1d9 0 54%, #b59b78 54%);
}

.art-three::before {
  right: 16%;
  width: 60%;
  background: linear-gradient(135deg, #6b756d, #c7b091);
  box-shadow: 33px 11px 0 -13px rgba(243, 238, 225, 0.94);
}

.estate-cards .property-art {
  height: 92px;
  border-radius: 7px;
}

.estate-cards article > span {
  position: absolute;
  top: 0.35rem;
  left: 0.35rem;
  padding: 0.22rem 0.35rem;
  border-radius: 4px;
  background: white;
  color: var(--green-dark);
  font-family: var(--mono);
  font-size: 0.36rem;
}

.estate-cards article > b {
  font-size: 0.55rem;
}

.estate-cards article > small {
  color: var(--muted);
  font-size: 0.43rem;
}

.estate-phone {
  position: absolute;
  right: 1%;
  bottom: -7%;
  width: 194px;
  min-height: 390px;
  padding: 0.7rem;
  border: 7px solid var(--ink);
  border-radius: 28px;
  background: white;
  box-shadow: 0 36px 70px rgba(35, 61, 50, 0.26);
}

.phone-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.3rem 0.2rem 0.65rem;
  font-size: 0.47rem;
}

.phone-bar i {
  width: 14px;
}

.phone-property {
  height: 138px;
  border-radius: 11px;
}

.phone-status {
  display: inline-block;
  margin-top: 0.7rem;
  padding: 0.22rem 0.35rem;
  border-radius: 5px;
  background: #ddf8e9;
  color: var(--green-dark);
  font-family: var(--mono);
  font-size: 0.38rem;
}

.estate-phone h3 {
  margin: 0.5rem 0 0.2rem;
  font-family: var(--display);
  font-size: 1rem;
}

.estate-phone > strong {
  font-size: 0.7rem;
}

.estate-phone > strong small {
  color: var(--muted);
  font-size: 0.42rem;
}

.phone-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.3rem;
  margin-top: 0.65rem;
  padding: 0.55rem 0;
  border-block: 1px solid var(--line);
}

.phone-features span {
  display: grid;
  font-size: 0.58rem;
  font-weight: 600;
}

.phone-features small {
  color: var(--muted);
  font-size: 0.38rem;
  font-weight: 400;
}

.estate-phone button {
  width: 100%;
  margin-top: 0.7rem;
  padding: 0.65rem;
  border: 0;
  border-radius: 8px;
  background: var(--green);
  color: white;
  font-size: 0.48rem;
}

.estate-lead-toast {
  position: absolute;
  top: 14%;
  left: -5%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.7rem;
  padding: 0.75rem;
  border: 1px solid white;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 22px 48px rgba(37, 75, 59, 0.18);
  backdrop-filter: blur(14px);
}

.estate-lead-toast > i {
  display: grid;
  width: 33px;
  height: 33px;
  place-items: center;
  border-radius: 9px;
  background: var(--lime);
  font-style: normal;
}

.estate-lead-toast div {
  display: grid;
  gap: 0.18rem;
}

.estate-lead-toast small {
  color: var(--green-dark);
  font-family: var(--mono);
  font-size: 0.42rem;
  letter-spacing: 0.07em;
}

.estate-lead-toast b {
  font-size: 0.57rem;
}

.estate-lead-toast > span {
  color: var(--muted);
  font-size: 0.44rem;
}

.estate-proofbar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--green-dark);
  color: white;
}

.estate-proofbar > span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-height: 82px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.72rem;
  font-weight: 500;
}

.estate-proofbar b {
  color: var(--lime);
  font-family: var(--mono);
  font-size: 0.55rem;
}

.estate-positioning,
.estate-groups,
.lead-context,
.brand-domain {
  padding-top: clamp(6rem, 10vw, 10rem);
  padding-bottom: clamp(6rem, 10vw, 10rem);
}

.connection-diagram {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  margin-top: 4rem;
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: white;
}

.connection-diagram article {
  min-height: 245px;
  padding: 1.4rem;
  border-radius: 18px;
  background: var(--ice);
}

.connection-diagram article:nth-of-type(2) {
  background: #effff5;
}

.connection-diagram article:nth-of-type(3) {
  background: #f0ebff;
}

.diagram-icon {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 1.8rem;
  place-items: center;
  border-radius: 12px;
  background: white;
  font-size: 1rem;
}

.connection-diagram article > small {
  display: block;
  color: var(--green-dark);
  font-family: var(--mono);
  font-size: 0.52rem;
  letter-spacing: 0.1em;
}

.connection-diagram article > strong {
  display: block;
  margin-top: 0.7rem;
  font-family: var(--display);
  font-size: 1.35rem;
}

.connection-diagram article > p {
  margin: 0.55rem 0 0;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.55;
}

.diagram-link {
  display: grid;
  justify-items: center;
  gap: 0.3rem;
  color: var(--green);
  font-style: normal;
}

.diagram-link small {
  font-family: var(--mono);
  font-size: 0.42rem;
  letter-spacing: 0.08em;
}

.estate-group-list {
  display: grid;
  gap: 1rem;
  margin-top: 4rem;
}

.estate-group {
  display: grid;
  grid-template-columns: 88px 1.05fr 0.95fr;
  align-items: center;
  gap: 2rem;
  min-height: 300px;
  padding: 2rem;
  border-radius: var(--radius-md);
}

.estate-group.tone-lime {
  background: #e6ffc6;
}

.estate-group.tone-blue {
  background: #e1e9ff;
}

.estate-group.tone-violet {
  background: #ece5ff;
}

.estate-group.tone-coral {
  background: #ffe7e1;
}

.group-number {
  align-self: stretch;
  padding-top: 0.5rem;
  border-right: 1px solid rgba(14, 23, 38, 0.14);
  font-family: var(--mono);
  font-size: 0.65rem;
}

.group-copy > span {
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
}

.group-copy h3 {
  max-width: 490px;
  margin: 1rem 0 0.7rem;
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.group-copy p {
  max-width: 520px;
  margin: 0;
  color: #566277;
  font-size: 0.82rem;
  line-height: 1.6;
}

.estate-group ul {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding: 1.2rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.6);
  list-style: none;
}

.estate-group li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  color: #3e4a5e;
  font-size: 0.72rem;
  line-height: 1.45;
}

.estate-group li i {
  display: grid;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  background: white;
  color: var(--green-dark);
  font-size: 0.52rem;
  font-style: normal;
}

.portal-deepdive {
  padding: clamp(6rem, 10vw, 10rem) 0;
  overflow: hidden;
  border-radius: 40px;
  background: var(--ink);
  color: white;
}

.portal-deepdive .section-shell {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: center;
  gap: clamp(2rem, 7vw, 7rem);
}

.portal-copy h2 {
  font-size: clamp(2.8rem, 4.8vw, 4.7rem);
}

.portal-copy > p {
  margin: 1.2rem 0 0;
  color: #a4afc1;
  line-height: 1.7;
}

.portal-benefits {
  display: grid;
  gap: 1rem;
  margin-top: 2.5rem;
}

.portal-benefits > span {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 0 0.7rem;
}

.portal-benefits i {
  grid-row: 1 / 3;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 8px;
  background: #243047;
  color: var(--lime);
  font-family: var(--mono);
  font-size: 0.48rem;
  font-style: normal;
}

.portal-benefits b {
  font-size: 0.72rem;
}

.portal-benefits small {
  margin-top: 0.25rem;
  color: #8e9aaf;
  font-size: 0.6rem;
}

.browser-showcase {
  min-width: 750px;
  overflow: hidden;
  transform: rotate(2deg);
  border: 6px solid white;
  border-radius: 22px;
  background: white;
  color: var(--ink);
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.35);
}

.showcase-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 0.8rem 1rem;
  font-size: 0.48rem;
}

.showcase-nav strong {
  margin-right: auto;
  font-family: var(--display);
  font-size: 0.8rem;
}

.showcase-nav button {
  padding: 0.35rem 0.55rem;
  border: 0;
  border-radius: 5px;
  background: var(--green);
  color: white;
  font-size: 0.45rem;
}

.showcase-content {
  padding: 1.5rem;
  background: #f5f7f5;
}

.showcase-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
}

.showcase-title small {
  color: var(--green-dark);
  font-family: var(--mono);
  font-size: 0.4rem;
  letter-spacing: 0.1em;
}

.showcase-title h3 {
  margin: 0.35rem 0 0;
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 400;
}

.showcase-title > span {
  color: var(--muted);
  font-size: 0.45rem;
}

.showcase-filters {
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 0.45rem;
  margin-top: 1rem;
  padding: 0.5rem;
  border-radius: 9px;
  background: white;
}

.showcase-filters span,
.showcase-filters b {
  padding: 0.45rem;
  border-radius: 5px;
  background: #f5f7f8;
  color: var(--muted);
  font-size: 0.43rem;
}

.showcase-filters b {
  background: var(--green-dark);
  color: white;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
  margin-top: 0.8rem;
}

.showcase-grid article {
  position: relative;
  padding: 0.45rem;
  border-radius: 9px;
  background: white;
}

.showcase-grid .property-art {
  height: 130px;
  border-radius: 7px;
}

.showcase-grid article > span {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  padding: 0.22rem 0.35rem;
  border-radius: 4px;
  background: white;
  color: var(--green-dark);
  font-family: var(--mono);
  font-size: 0.34rem;
}

.showcase-grid h4 {
  margin: 0.55rem 0 0.2rem;
  font-family: var(--display);
  font-size: 0.65rem;
}

.showcase-grid p {
  margin: 0 0 0.5rem;
  color: var(--muted);
  font-size: 0.42rem;
}

.showcase-grid article > b {
  font-size: 0.52rem;
}

.lead-context-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1rem;
  margin-top: 4rem;
}

.lead-profile,
.lead-actions,
.lead-stages {
  padding: 1.6rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: white;
}

.lead-profile {
  grid-row: span 2;
}

.lead-profile-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.8rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--line);
}

.lead-profile-head > i {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 13px;
  background: #ddf8e9;
  color: var(--green-dark);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 700;
}

.lead-profile-head div {
  display: grid;
  gap: 0.2rem;
}

.lead-profile-head strong {
  font-size: 0.8rem;
}

.lead-profile-head small {
  color: var(--muted);
  font-size: 0.62rem;
}

.lead-profile-head > b {
  padding: 0.35rem 0.5rem;
  border-radius: 6px;
  background: var(--lime);
  font-family: var(--mono);
  font-size: 0.5rem;
}

.lead-profile > p {
  margin: 1.5rem 0;
  padding: 1rem;
  border-radius: 14px;
  background: var(--ice);
  font-family: var(--serif);
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.4;
}

.lead-profile dl {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
  margin: 0;
}

.lead-profile dl div {
  display: grid;
  gap: 0.3rem;
  padding: 0.9rem;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.lead-profile dt {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.48rem;
  letter-spacing: 0.08em;
}

.lead-profile dd {
  margin: 0;
  font-size: 0.67rem;
  font-weight: 600;
}

.lead-actions {
  background: #e7ffd0;
}

.lead-actions h3,
.lead-stages h3 {
  margin: 0.7rem 0 1.3rem;
  font-family: var(--display);
  font-size: 1.55rem;
  letter-spacing: -0.035em;
}

.action-buttons {
  display: grid;
  gap: 0.55rem;
}

.action-buttons > span {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 0.65rem;
  padding: 0.7rem;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.72);
}

.action-buttons > span > i {
  grid-row: 1 / 3;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 9px;
  background: white;
  font-style: normal;
}

.action-buttons b {
  font-size: 0.66rem;
}

.action-buttons small {
  margin-top: 0.18rem;
  color: var(--muted);
  font-size: 0.55rem;
}

.action-buttons .action-whatsapp {
  background: var(--green);
  color: white;
}

.action-buttons .action-whatsapp small {
  color: rgba(255, 255, 255, 0.72);
}

.stage-line {
  display: flex;
  gap: 0;
  margin: 1.4rem 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.stage-line span {
  display: grid;
  flex: 1;
  gap: 0.3rem;
  padding: 0.65rem 0.3rem;
  border-right: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.48rem;
  text-align: center;
}

.stage-line span:last-child {
  border: 0;
}

.stage-line i {
  width: 7px;
  height: 7px;
  margin: auto;
  border-radius: 50%;
  background: #cbd1da;
}

.stage-line span.active {
  background: #ddf8e9;
  color: var(--green-dark);
}

.stage-line span.active i {
  background: var(--green);
}

.lead-stages > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.55;
}

.message-section {
  padding: clamp(6rem, 10vw, 10rem) 0;
  border-radius: 40px;
  background:
    radial-gradient(circle at 90% 15%, rgba(139, 108, 245, 0.22), transparent 28%),
    linear-gradient(135deg, #f1ecff, #fdfcff 55%, #e8ffd4);
}

.message-section .section-shell {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
}

.message-copy h2 {
  font-size: clamp(2.8rem, 4.8vw, 4.6rem);
}

.message-copy > p {
  margin: 1.2rem 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.message-copy ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.7rem;
  margin: 2rem 0;
  padding: 0;
  list-style: none;
}

.message-copy li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
}

.message-copy li i {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: white;
  font-size: 0.55rem;
  font-style: normal;
}

.whatsapp-card {
  max-width: 590px;
  margin-left: auto;
  padding: 1rem;
  transform: rotate(1deg);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 25px;
  background: #ece7df;
  box-shadow: 0 35px 80px rgba(75, 57, 126, 0.16);
}

.whatsapp-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.7rem;
  margin: -1rem -1rem 0.8rem;
  padding: 0.85rem 1rem;
  border-radius: 25px 25px 0 0;
  background: white;
}

.whatsapp-top > i {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: white;
  font-size: 0.62rem;
  font-style: normal;
}

.whatsapp-top div {
  display: grid;
  gap: 0.2rem;
}

.whatsapp-top strong {
  font-size: 0.73rem;
}

.whatsapp-top small {
  color: var(--green);
  font-size: 0.55rem;
}

.whatsapp-day {
  width: max-content;
  margin: 0.6rem auto;
  padding: 0.3rem 0.6rem;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--muted);
  font-size: 0.52rem;
}

.chat-bubble {
  position: relative;
  max-width: 88%;
  margin-left: auto;
  padding: 1.2rem;
  border-radius: 16px 3px 16px 16px;
  background: #d9ffd3;
  box-shadow: 0 8px 24px rgba(46, 83, 52, 0.08);
}

.chat-bubble p {
  margin: 0 0 1rem;
  font-size: 0.82rem;
  line-height: 1.45;
}

.chat-bubble p:last-of-type {
  margin-bottom: 0.5rem;
}

.chat-bubble > small {
  display: block;
  color: #7a877b;
  font-size: 0.52rem;
  text-align: right;
}

.chat-bubble > small b {
  color: #2f8fe4;
}

.brand-domain {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
}

.domain-copy > p {
  max-width: 520px;
  margin: 1.2rem 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.domain-options {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0.8rem;
}

.domain-option {
  min-height: 250px;
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: white;
}

.domain-option.recommended {
  border: 0;
  background: var(--green-dark);
  color: white;
}

.domain-option > span {
  font-family: var(--mono);
  font-size: 0.5rem;
  letter-spacing: 0.1em;
}

.domain-option > strong {
  display: block;
  margin: 2rem 0 0.6rem;
  overflow-wrap: anywhere;
  font-family: var(--display);
  font-size: 1.35rem;
}

.domain-option > strong span {
  color: var(--green);
}

.domain-option.recommended > strong span {
  color: var(--lime);
}

.domain-option > p {
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.5;
}

.domain-option.recommended > p {
  color: rgba(255, 255, 255, 0.7);
}

.domain-option > i {
  display: inline-block;
  margin-top: 1.2rem;
  padding: 0.35rem 0.5rem;
  border-radius: 6px;
  background: var(--ice);
  color: var(--green-dark);
  font-size: 0.52rem;
  font-style: normal;
}

.domain-option.recommended > i {
  background: var(--lime);
  color: var(--ink);
}

.domain-arrow {
  color: var(--green);
}

.scope-card {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 4rem;
  padding: clamp(2rem, 5vw, 4.5rem);
  border-radius: var(--radius-lg);
  background: var(--ink);
  color: white;
}

.scope-card h2 {
  font-size: clamp(2.5rem, 4vw, 4rem);
}

.scope-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.scope-columns > div {
  display: grid;
  align-content: start;
  gap: 0.75rem;
  padding: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
}

.scope-columns strong {
  margin-bottom: 0.5rem;
  color: var(--lime);
  font-family: var(--mono);
  font-size: 0.5rem;
  letter-spacing: 0.09em;
}

.scope-columns span {
  color: #b0bbca;
  font-size: 0.7rem;
}

.estate-plans {
  border-top: 1px solid var(--line);
}

.estate-plan > span {
  color: var(--green-dark);
  font-family: var(--mono);
  font-size: 0.57rem;
  letter-spacing: 0.1em;
}

.estate-plan.featured {
  border: 0;
  background: var(--green-dark);
  color: white;
  box-shadow: 0 30px 70px rgba(11, 119, 71, 0.2);
}

.estate-plan.featured > span {
  color: var(--lime);
}

.estate-plan.featured > p {
  color: rgba(255, 255, 255, 0.72);
}

.estate-plan.featured > a {
  border-top-color: rgba(255, 255, 255, 0.17);
}

.estate-closing {
  position: relative;
  min-height: 540px;
  margin-bottom: 7rem;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--ice);
}

.estate-closing img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.estate-closing::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(239, 246, 255, 0.98) 0 38%, rgba(239, 246, 255, 0.74) 54%, transparent 72%);
  content: "";
}

.estate-closing > div {
  position: relative;
  z-index: 2;
  max-width: 520px;
  padding: clamp(2rem, 6vw, 5rem);
}

.estate-closing h2 {
  margin: 1rem 0;
  font-family: var(--display);
  font-size: clamp(2.7rem, 4.7vw, 4.6rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.estate-closing p {
  color: var(--muted);
  line-height: 1.7;
}

/* Footer */

.site-footer {
  width: min(1380px, calc(100% - 32px));
  margin: 0 auto 16px;
  overflow: hidden;
  border-radius: 32px;
  background: linear-gradient(135deg, #e7efff, #f7f9ff 56%, #e7ffd1);
}

.footer-spotlight {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(3rem, 7vw, 6rem);
  border-bottom: 1px solid rgba(14, 23, 38, 0.1);
}

.footer-spotlight h2 {
  font-size: clamp(2.8rem, 5vw, 5rem);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr repeat(3, 0.7fr);
  gap: 3rem;
  padding: 4rem clamp(2rem, 6vw, 5rem);
}

.footer-brand p {
  margin: 1.4rem 0 0.5rem;
  font-size: 0.76rem;
}

.footer-brand small {
  display: block;
  max-width: 320px;
  color: var(--muted);
  font-size: 0.65rem;
  line-height: 1.55;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 0.85rem;
}

.footer-column strong {
  margin-bottom: 0.35rem;
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
}

.footer-column a {
  width: max-content;
  color: var(--muted);
  font-size: 0.7rem;
}

.footer-column a:hover {
  color: var(--blue);
}

.noindex-chip {
  width: max-content;
  margin-top: 0.5rem;
  padding: 0.35rem 0.5rem;
  border-radius: 6px;
  background: rgba(14, 23, 38, 0.08);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.48rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin: 0 clamp(2rem, 6vw, 5rem);
  padding: 1.4rem 0;
  border-top: 1px solid rgba(14, 23, 38, 0.1);
  color: var(--muted);
  font-size: 0.62rem;
}

/* Responsive */

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: auto auto 1fr;
  }

  .main-nav {
    position: fixed;
    top: 88px;
    right: 16px;
    left: 16px;
    display: none;
    min-height: calc(100vh - 104px);
    padding: 2rem;
    flex-direction: column;
    justify-content: flex-start;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 30px 80px rgba(30, 45, 75, 0.2);
  }

  .menu-open .main-nav {
    display: flex;
  }

  .main-nav a {
    padding: 1rem 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--display);
    font-size: 1.5rem;
  }

  .menu-toggle {
    display: grid;
    grid-template-columns: 20px auto;
    align-items: center;
    gap: 0 0.5rem;
    order: 2;
    margin-left: 1rem;
    padding: 0.6rem;
    border: 1px solid var(--line);
    border-radius: 9px;
    background: white;
  }

  .menu-toggle span {
    grid-column: 1;
    display: block;
    width: 18px;
    height: 1px;
    background: var(--ink);
  }

  .menu-toggle b {
    grid-row: 1 / 3;
    grid-column: 2;
    font-size: 0.65rem;
  }

  .header-actions {
    justify-self: end;
  }

  .home-hero,
  .estate-hero {
    grid-template-columns: 1fr;
    gap: 4rem;
    padding-top: 160px;
  }

  .home-hero {
    min-height: auto;
  }

  .hero-copy,
  .estate-hero-copy {
    max-width: 760px;
  }

  .command-center,
  .estate-product {
    width: min(850px, 90vw);
    margin: 0 auto;
  }

  .estate-hero {
    min-height: auto;
    padding-bottom: 130px;
  }

  .solution-showcase {
    grid-template-columns: 1fr 1fr;
  }

  .solution-card.estate {
    grid-column: 1 / -1;
  }

  .portal-deepdive .section-shell {
    grid-template-columns: 1fr;
  }

  .portal-copy {
    max-width: 700px;
  }

  .browser-showcase {
    min-width: 0;
    width: 100%;
  }
}

@media (max-width: 860px) {
  .section-shell {
    width: min(100% - 28px, 680px);
  }

  .header-actions .login-link {
    display: none;
  }

  .header-button {
    padding-left: 0.9rem;
  }

  .split-heading,
  .faq-section,
  .message-section .section-shell,
  .brand-domain,
  .scope-card {
    grid-template-columns: 1fr;
  }

  .split-heading {
    align-items: start;
    gap: 1.4rem;
  }

  .problem-grid,
  .plans-grid,
  .estate-plan-grid {
    grid-template-columns: 1fr;
  }

  .problem-card {
    min-height: 320px;
  }

  .system-orbit {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    min-height: auto;
    background: none;
  }

  .orbit-core {
    position: static;
    grid-column: 1 / -1;
    width: 170px;
    height: 170px;
    margin: 0 auto 1rem;
    transform: none;
  }

  .orbit-card {
    position: static;
    width: auto;
  }

  .bento-grid,
  .lead-context-grid {
    grid-template-columns: 1fr;
  }

  .bento-insight {
    grid-column: auto;
  }

  .solution-showcase {
    grid-template-columns: 1fr;
  }

  .solution-card.estate {
    grid-column: auto;
  }

  .solution-card {
    min-height: 500px;
  }

  .implementation-grid {
    grid-template-columns: 1fr;
  }

  .implementation-grid article {
    min-height: auto;
    padding: 1.5rem 0 2.5rem !important;
    border-right: 0 !important;
    border-bottom: 1px solid var(--line);
  }

  .implementation-grid h3 {
    margin-top: 1.5rem;
  }

  .faq-heading {
    position: static;
  }

  .closing-banner {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .estate-proofbar {
    grid-template-columns: repeat(2, 1fr);
  }

  .estate-proofbar span:nth-child(2) {
    border-right: 0;
  }

  .estate-proofbar span:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .connection-diagram {
    grid-template-columns: 1fr;
  }

  .diagram-link {
    transform: rotate(90deg);
  }

  .estate-group {
    grid-template-columns: 50px 1fr;
  }

  .estate-group ul {
    grid-column: 2;
  }

  .lead-profile {
    grid-row: auto;
  }

  .message-copy {
    max-width: 680px;
  }

  .whatsapp-card {
    margin: 0 auto;
  }

  .domain-options {
    grid-template-columns: 1fr;
  }

  .domain-arrow {
    transform: rotate(90deg);
    text-align: center;
  }

  .scope-columns {
    grid-template-columns: 1fr;
  }

  .estate-closing {
    min-height: 680px;
  }

  .estate-closing img {
    object-position: 62% center;
  }

  .estate-closing::after {
    background: linear-gradient(180deg, rgba(239, 246, 255, 0.98) 0 45%, rgba(239, 246, 255, 0.7) 68%, transparent);
  }

  .footer-spotlight {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr;
  }
}

@media (max-width: 620px) {
  .site-header {
    top: 9px;
    width: calc(100% - 18px);
    min-height: 62px;
    padding: 8px 9px 8px 12px;
  }

  .brand-symbol {
    width: 25px;
    height: 25px;
  }

  .brand-symbol i {
    width: 22px;
    height: 8px;
  }

  .brand-symbol i:nth-child(2) {
    top: 8px;
  }

  .brand-symbol i:nth-child(3) {
    top: 15px;
  }

  .brand-name {
    font-size: 1.05rem;
  }

  .brand-version {
    display: none;
  }

  .menu-toggle {
    order: initial;
    margin-left: auto;
  }

  .menu-toggle b {
    display: none;
  }

  .header-actions {
    margin-left: 0.45rem;
  }

  .header-button {
    min-height: 42px;
    padding: 0.55rem 0.6rem 0.55rem 0.8rem;
  }

  .header-button i {
    display: none;
  }

  .header-button span {
    font-size: 0.68rem;
  }

  .main-nav {
    top: 79px;
    right: 9px;
    left: 9px;
    min-height: calc(100vh - 88px);
  }

  .home-hero,
  .estate-hero {
    gap: 3rem;
    padding: 125px 14px 60px;
  }

  .hero-copy h1,
  .estate-hero-copy h1 {
    font-size: clamp(3.15rem, 16vw, 4.6rem);
  }

  .hero-copy h1 mark,
  .estate-hero-copy h1 mark {
    white-space: normal;
  }

  .hero-lead,
  .estate-hero-copy > p {
    font-size: 0.95rem;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-assurance {
    display: grid;
  }

  .command-center,
  .estate-product {
    width: 100%;
  }

  .command-window {
    grid-template-columns: 42px 1fr;
    min-height: 390px;
    transform: none;
    border-radius: 18px;
  }

  .command-window aside {
    padding-inline: 0.35rem;
  }

  .command-window aside > b {
    width: 29px;
    height: 29px;
  }

  .command-body {
    padding: 0.8rem;
  }

  .command-header strong {
    font-size: 1rem;
  }

  .command-header > span:nth-last-child(2) {
    display: none;
  }

  .command-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .command-stats article:last-child {
    display: none;
  }

  .command-content {
    grid-template-columns: 1fr;
  }

  .pulse-panel {
    display: none;
  }

  .floating-note {
    display: none;
  }

  .word-rail {
    justify-content: flex-start;
    padding: 0 1rem;
  }

  .market-problem,
  .system-section,
  .bento-section,
  .implementation-section,
  .plans-section,
  .faq-section,
  .scope-section,
  .estate-plans,
  .estate-positioning,
  .estate-groups,
  .lead-context,
  .brand-domain {
    padding-top: 5.5rem;
    padding-bottom: 5.5rem;
  }

  .split-heading h2,
  .section-intro h2,
  .faq-heading h2,
  .portal-copy h2,
  .message-copy h2,
  .domain-copy h2,
  .scope-card h2 {
    font-size: 2.55rem;
  }

  .system-section,
  .solutions-section,
  .portal-deepdive,
  .message-section {
    border-radius: 25px;
  }

  .system-orbit {
    grid-template-columns: 1fr;
  }

  .orbit-core {
    grid-column: auto;
  }

  .bento-card {
    padding: 1.2rem;
  }

  .card-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .mini-pipeline {
    grid-template-columns: 1fr;
  }

  .pipe-column:nth-child(3) {
    display: none;
  }

  .bento-insight {
    grid-template-columns: 1fr;
  }

  .bento-insight .insight-chart {
    height: 150px;
    padding-right: 0;
  }

  .solution-card {
    min-height: 455px;
  }

  .plans-grid,
  .estate-plan-grid {
    margin-top: 2.5rem;
  }

  .plan-card,
  .estate-plan {
    min-height: 430px;
  }

  .faq-item button {
    grid-template-columns: 30px 1fr auto;
  }

  .faq-answer p {
    padding-left: 30px;
  }

  .closing-banner {
    width: calc(100% - 28px);
    margin-bottom: 4rem;
    padding: 2rem;
  }

  .estate-product {
    padding-bottom: 90px;
  }

  .estate-portal-window {
    min-height: 420px;
    transform: none;
    border-width: 4px;
    border-radius: 18px;
  }

  .estate-site-nav {
    gap: 0.6rem;
  }

  .estate-site-nav span:nth-of-type(n + 3) {
    display: none;
  }

  .estate-site-hero {
    min-height: 205px;
    padding: 2rem 1rem;
  }

  .estate-site-hero h2 {
    font-size: 1.55rem;
  }

  .estate-search {
    grid-template-columns: 1fr auto;
  }

  .estate-search span:nth-child(n + 2) {
    display: none;
  }

  .estate-cards article:nth-child(3) {
    display: none;
  }

  .estate-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .estate-phone {
    right: 8px;
    bottom: 0;
    width: 155px;
    min-height: 315px;
    border-width: 5px;
    border-radius: 23px;
  }

  .phone-property {
    height: 94px;
  }

  .phone-features {
    display: none;
  }

  .estate-lead-toast {
    top: auto;
    right: 64px;
    bottom: 34px;
    left: 0;
  }

  .estate-lead-toast > span {
    display: none;
  }

  .estate-domain {
    width: 100%;
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .estate-domain > i {
    width: 100%;
    padding: 0.6rem 0 0 1.65rem;
    border: 0;
  }

  .estate-proofbar {
    grid-template-columns: 1fr;
  }

  .estate-proofbar > span {
    min-height: 58px;
    justify-content: flex-start;
    padding-left: 1.5rem;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .connection-diagram {
    padding: 1rem;
  }

  .estate-group {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    padding: 1.4rem;
  }

  .group-number {
    padding-bottom: 0.8rem;
    border-right: 0;
    border-bottom: 1px solid rgba(14, 23, 38, 0.14);
  }

  .estate-group ul {
    grid-column: auto;
  }

  .browser-showcase {
    transform: none;
    border-width: 4px;
  }

  .showcase-nav span {
    display: none;
  }

  .showcase-filters {
    grid-template-columns: 1fr auto;
  }

  .showcase-filters span:nth-child(n + 2) {
    display: none;
  }

  .showcase-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .showcase-grid article:nth-child(3) {
    display: none;
  }

  .showcase-grid .property-art {
    height: 100px;
  }

  .lead-profile dl {
    grid-template-columns: 1fr;
  }

  .stage-line span {
    font-size: 0;
  }

  .stage-line i {
    margin: auto;
  }

  .message-section .section-shell {
    width: calc(100% - 28px);
  }

  .message-copy ul {
    grid-template-columns: 1fr;
  }

  .chat-bubble {
    max-width: 96%;
  }

  .chat-bubble p {
    font-size: 0.72rem;
  }

  .scope-card {
    gap: 2rem;
    padding: 1.5rem;
  }

  .estate-closing {
    width: calc(100% - 28px);
    min-height: 620px;
    margin-bottom: 4rem;
  }

  .estate-closing > div {
    padding: 2rem;
  }

  .estate-closing h2 {
    font-size: 2.6rem;
  }

  .site-footer {
    width: calc(100% - 18px);
    border-radius: 24px;
  }

  .footer-spotlight,
  .footer-grid {
    padding: 2rem 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem 1.5rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    gap: 1rem;
    margin: 0 1.5rem;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* ==========================================================================
   V3 · Dirección visual inspirada en Mi Vitrina
   Fondo nocturno, halo violeta, tipografía Outfit/Geist y superficies glass.
   ========================================================================== */

:root {
  --v3-bg: #07070f;
  --v3-bg-deep: #050510;
  --v3-surface: rgba(20, 18, 38, 0.55);
  --v3-surface-strong: rgba(20, 18, 38, 0.82);
  --v3-border: rgba(255, 255, 255, 0.08);
  --v3-border-hover: rgba(167, 139, 250, 0.45);
  --v3-text: #fff;
  --v3-secondary: rgba(255, 255, 255, 0.72);
  --v3-muted: rgba(255, 255, 255, 0.52);
  --v3-accent: #a78bfa;
  --v3-accent-light: #c4b5fd;
  --v3-accent-solid: #6c6cf0;
  --v3-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

body {
  background: var(--v3-bg);
  color: var(--v3-text);
}

.ambient-bg {
  z-index: -2;
  background: radial-gradient(120% 80% at 50% 0, #110b29 0%, var(--v3-bg) 55%, var(--v3-bg-deep) 100%);
}

.ambient-bg::before {
  position: absolute;
  inset: 0;
  opacity: 0.8;
  background:
    radial-gradient(42% 40% at 16% 20%, rgba(108, 108, 240, 0.2), transparent 72%),
    radial-gradient(38% 44% at 82% 30%, rgba(140, 100, 245, 0.15), transparent 75%),
    radial-gradient(48% 34% at 50% 82%, rgba(108, 108, 240, 0.08), transparent 75%);
  content: "";
}

.ambient-bg::after {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.043) 0.9px, transparent 0);
  background-size: 28px 28px;
  mask-image: radial-gradient(90% 60% at 50% 35%, #000 30%, transparent 80%);
  content: "";
}

.ambient-bg > i {
  width: 34vw;
  height: 34vw;
  opacity: 0.16;
  filter: blur(130px);
}

.ambient-bg > i:nth-child(1) {
  top: -14vw;
  left: 2vw;
  background: #6c6cf0;
}

.ambient-bg > i:nth-child(2) {
  top: 22vh;
  right: -10vw;
  background: #8c64f5;
}

.ambient-bg > i:nth-child(3) {
  bottom: -20vw;
  left: 38vw;
  background: #6c6cf0;
}

.site-header {
  top: 0;
  width: 100%;
  min-height: 72px;
  padding: 18px max(28px, calc((100vw - 1180px) / 2));
  border: 0;
  border-bottom: 1px solid transparent;
  border-radius: 0;
  background: linear-gradient(#08071299, #08071200);
  box-shadow: none;
  backdrop-filter: none;
}

.site-header.scrolled {
  min-height: 68px;
  border-bottom-color: rgba(255, 255, 255, 0.06);
  background: rgba(8, 7, 18, 0.78);
  box-shadow: none;
  backdrop-filter: blur(18px) saturate(1.4);
}

.brand-symbol i {
  border-color: rgba(255, 255, 255, 0.9);
  background: transparent;
}

.brand-name {
  color: white;
  font-size: 1.19rem;
  letter-spacing: -0.04em;
}

.brand-name span,
body[data-route="inmuebles"] .brand-name span {
  color: var(--v3-accent);
}

.brand-version,
body[data-route="inmuebles"] .brand-version {
  border: 1px solid rgba(167, 139, 250, 0.26);
  background: rgba(167, 139, 250, 0.12);
  color: var(--v3-accent-light);
}

.main-nav {
  gap: 26px;
  margin-left: 28px;
  justify-content: flex-start;
}

.main-nav a {
  padding: 6px 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13.5px;
  letter-spacing: -0.005em;
  transition: color 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: white;
}

.main-nav a::after,
body[data-route="inmuebles"] .main-nav a::after {
  display: none;
}

.header-actions {
  gap: 18px;
}

.login-link {
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
}

.header-button,
body[data-route="inmuebles"] .header-button {
  gap: 0.65rem;
  padding: 10px 12px 10px 16px;
  border-radius: 999px;
  background: linear-gradient(#8a78ff 0%, #6c6cf0 100%);
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.25),
    inset 0 -1px rgba(0, 0, 0, 0.18),
    0 8px 24px rgba(108, 108, 240, 0.32);
  font-size: 13px;
}

.header-button i {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  color: white;
}

.header-button:hover,
body[data-route="inmuebles"] .header-button:hover {
  background: linear-gradient(#947fff, #7373f5);
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.3),
    inset 0 -1px rgba(0, 0, 0, 0.18),
    0 12px 36px rgba(140, 120, 255, 0.55);
}

.section-shell {
  width: min(1128px, calc(100% - 48px));
}

.home-hero,
.estate-hero {
  width: min(1180px, 100%);
  min-height: 720px;
  margin: 0 auto;
  padding: 128px 28px 56px;
  gap: 56px;
  background: transparent;
}

.home-hero {
  grid-template-columns: 1.1fr 1fr;
}

.estate-hero {
  grid-template-columns: 1fr 1.08fr;
}

.home-hero::before,
.estate-hero::before {
  inset: -40% -20%;
  width: auto;
  height: auto;
  opacity: 1;
  background:
    radial-gradient(55% 50% at 20% 40%, rgba(108, 108, 240, 0.11), transparent 75%),
    radial-gradient(50% 55% at 80% 30%, rgba(140, 100, 245, 0.09), transparent 75%),
    radial-gradient(60% 45% at 50% 80%, rgba(108, 108, 240, 0.07), transparent 75%);
  mask-image: none;
}

.hero-copy,
.estate-hero-copy {
  max-width: 540px;
}

.breadcrumb {
  margin-bottom: 1.6rem;
  color: var(--v3-muted);
}

.breadcrumb b {
  color: var(--v3-accent-light);
}

.eyebrow,
.eyebrow.estate {
  gap: 8px;
  margin-bottom: 0;
  padding: 6px 12px 6px 10px;
  border-color: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: none;
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--font);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0;
  backdrop-filter: blur(12px);
}

.eyebrow > i,
.eyebrow.estate > i {
  width: 6px;
  height: 6px;
  background: var(--v3-accent-light);
  box-shadow: 0 0 18px rgba(167, 139, 250, 0.72);
}

.hero-copy h1,
.estate-hero-copy h1 {
  max-width: 560px;
  margin: 28px 0 0;
  color: transparent;
  background: linear-gradient(#fff 0%, rgba(255, 255, 255, 0.78) 100%);
  background-clip: text;
  font-size: clamp(2.4rem, 4vw, 3.25rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.hero-copy h1 mark,
.estate-hero-copy h1 mark {
  position: static;
  color: var(--v3-accent-light);
  background: none;
  background-clip: initial;
  font-family: var(--display);
  font-style: normal;
  -webkit-text-fill-color: var(--v3-accent-light);
}

.hero-copy h1 mark::before,
.estate-hero-copy h1 mark::after {
  display: none;
}

.hero-lead,
.estate-hero-copy > p {
  max-width: 460px;
  margin-top: 26px;
  color: var(--v3-secondary);
  font-size: 17.5px;
  line-height: 1.55;
}

.v3-url {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: 100%;
  margin-top: 28px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  transition: border-color 0.24s var(--v3-ease), background 0.24s var(--v3-ease);
  backdrop-filter: blur(14px);
}

.v3-url:hover {
  border-color: rgba(167, 139, 250, 0.3);
  background: rgba(255, 255, 255, 0.055);
}

.v3-url > div {
  display: inline-flex;
  align-items: baseline;
  min-width: 0;
  padding: 8px 14px;
  white-space: nowrap;
}

.v3-url span {
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--mono);
  font-size: 14px;
}

.v3-url b {
  color: var(--v3-accent-light);
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 500;
}

.v3-url i {
  color: var(--v3-accent);
  font-size: 14px;
  font-style: normal;
  animation: v3Cursor 1s steps(2, end) infinite;
}

.v3-url > a {
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(#8a78ff 0%, #6c6cf0 100%);
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.25),
    inset 0 -1px rgba(0, 0, 0, 0.18),
    0 8px 24px rgba(108, 108, 240, 0.32);
  color: white;
  font-size: 13.5px;
  font-weight: 600;
  white-space: nowrap;
}

.v3-url > a:hover {
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.3),
    inset 0 -1px rgba(0, 0, 0, 0.18),
    0 12px 36px rgba(140, 120, 255, 0.55);
}

.v3-secondary-link {
  display: flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  margin-top: 14px;
  color: var(--v3-muted);
  font-size: 12px;
}

.v3-secondary-link:hover {
  color: white;
}

.hero-assurance {
  margin-top: 18px;
  color: var(--v3-muted);
}

.hero-assurance i {
  border: 1px solid var(--v3-border);
  background: rgba(255, 255, 255, 0.05);
  color: var(--v3-accent-light);
}

.command-center,
.estate-product {
  width: min(590px, 48vw);
  margin-left: 0;
}

.command-glow {
  inset: 5% -8% -8% 8%;
  opacity: 0.68;
  background: rgba(108, 108, 240, 0.34);
  filter: blur(70px);
}

.command-window {
  min-height: 430px;
  transform: rotateY(-8deg) rotateX(4deg) rotate(-1.5deg);
  border-color: rgba(167, 139, 250, 0.16);
  border-radius: 24px;
  box-shadow:
    0 0 0 1px rgba(108, 108, 240, 0.08),
    0 35px 70px rgba(0, 0, 0, 0.42),
    0 15px 34px rgba(108, 108, 240, 0.12);
}

.note-one,
.note-two,
.estate-lead-toast {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(20, 18, 38, 0.84);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.38);
  color: white;
}

.floating-note small,
.estate-lead-toast > span {
  color: var(--v3-muted);
}

.floating-note > i,
.floating-note > span,
.estate-lead-toast > i {
  background: linear-gradient(#8a78ff, #6c6cf0);
  color: white;
}

.estate-portal-window {
  min-height: 500px;
  transform: rotateY(-8deg) rotateX(4deg) rotate(1.2deg);
  border-color: #171626;
  border-radius: 24px;
  box-shadow:
    0 0 0 1px rgba(167, 139, 250, 0.14),
    0 38px 85px rgba(0, 0, 0, 0.48),
    0 15px 34px rgba(108, 108, 240, 0.14);
}

.estate-phone {
  border-color: #171626;
  box-shadow:
    0 0 0 1px rgba(167, 139, 250, 0.16),
    0 34px 72px rgba(0, 0, 0, 0.48);
}

.estate-domain {
  border-color: var(--v3-border);
  background: rgba(255, 255, 255, 0.035);
  color: white;
  backdrop-filter: blur(12px);
}

.estate-domain small,
.estate-domain > i {
  color: var(--v3-muted);
}

.domain-dot {
  background: var(--v3-accent);
  box-shadow: 0 0 0 5px rgba(167, 139, 250, 0.12);
}

.word-rail,
.estate-proofbar {
  width: min(1128px, calc(100% - 48px));
  min-height: 72px;
  margin: 0 auto;
  border-block: 1px solid var(--v3-border);
  background: transparent;
  color: var(--v3-secondary);
}

.word-rail i,
.estate-proofbar b {
  color: var(--v3-accent-light);
}

.estate-proofbar > span {
  border-color: var(--v3-border);
}

.market-problem,
.system-section,
.bento-section,
.implementation-section,
.plans-section,
.faq-section,
.scope-section,
.estate-plans,
.estate-positioning,
.estate-groups,
.lead-context,
.brand-domain {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.micro-label,
.group-copy > span,
.plan-type,
.estate-plan > span {
  color: var(--v3-accent-light);
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 0.15em;
}

.split-heading h2,
.section-intro h2,
.faq-heading h2,
.portal-copy h2,
.message-copy h2,
.domain-copy h2,
.scope-card h2,
.footer-spotlight h2,
.closing-banner h2,
.estate-closing h2 {
  color: white;
  font-size: clamp(2rem, 3.7vw, 2.75rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.split-heading > p,
.section-intro > p,
.faq-heading > p,
.portal-copy > p,
.message-copy > p,
.domain-copy > p {
  color: var(--v3-secondary);
  font-size: 0.94rem;
  line-height: 1.65;
}

.market-problem,
.bento-section,
.implementation-section,
.plans-section,
.faq-section,
.estate-positioning,
.estate-groups,
.lead-context,
.brand-domain,
.estate-plans {
  border-bottom: 1px solid transparent;
  background-image: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: 100% 1px;
}

.problem-grid,
.bento-grid,
.solution-showcase,
.plans-grid,
.estate-plan-grid,
.lead-context-grid,
.estate-group-list {
  gap: 20px;
}

.problem-card,
.orbit-card,
.bento-card,
.solution-card,
.plan-card,
.estate-plan,
.estate-group,
.lead-profile,
.lead-actions,
.lead-stages {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--v3-border);
  border-radius: 20px;
  background: var(--v3-surface);
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.04),
    0 12px 36px rgba(0, 0, 0, 0.35);
  color: white;
  backdrop-filter: blur(14px);
  transition:
    transform 0.3s cubic-bezier(0.23, 1, 0.32, 1),
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.problem-card::before,
.orbit-card::before,
.bento-card::before,
.solution-card::before,
.plan-card::before,
.estate-plan::before,
.estate-group::before,
.lead-profile::before,
.lead-actions::before,
.lead-stages::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  opacity: 0;
  border-radius: inherit;
  background: radial-gradient(600px circle at var(--x) var(--y), rgba(167, 139, 250, 0.12), transparent 40%);
  pointer-events: none;
  content: "";
  transition: opacity 0.3s ease;
}

.problem-card.is-hovered,
.orbit-card.is-hovered,
.bento-card.is-hovered,
.solution-card.is-hovered,
.plan-card.is-hovered,
.estate-plan.is-hovered,
.estate-group.is-hovered,
.lead-profile.is-hovered,
.lead-actions.is-hovered,
.lead-stages.is-hovered {
  transform: translateY(-2px);
  border-color: var(--v3-border-hover);
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.06),
    0 12px 40px rgba(140, 120, 255, 0.2),
    0 4px 24px rgba(0, 0, 0, 0.4);
}

.problem-card.is-hovered::before,
.orbit-card.is-hovered::before,
.bento-card.is-hovered::before,
.solution-card.is-hovered::before,
.plan-card.is-hovered::before,
.estate-plan.is-hovered::before,
.estate-group.is-hovered::before,
.lead-profile.is-hovered::before,
.lead-actions.is-hovered::before,
.lead-stages.is-hovered::before {
  opacity: 1;
}

.problem-card > *,
.orbit-card > *,
.bento-card > *,
.solution-card > *,
.plan-card > *,
.estate-plan > *,
.estate-group > *,
.lead-profile > *,
.lead-actions > *,
.lead-stages > * {
  position: relative;
  z-index: 1;
}

.problem-card,
.problem-card.featured {
  min-height: 335px;
  padding: 28px;
  background: var(--v3-surface);
}

.problem-card > span {
  border-color: var(--v3-border);
  color: var(--v3-accent-light);
}

.problem-card h3,
.orbit-card h3,
.implementation-grid h3,
.lead-actions h3,
.lead-stages h3 {
  color: white;
  font-family: var(--display);
  font-weight: 700;
}

.problem-card p,
.problem-card.featured p,
.orbit-card p,
.implementation-grid p,
.lead-stages > p {
  color: var(--v3-secondary);
}

.signal-inbox i,
.next-action,
.signal-stack i {
  border-color: var(--v3-border);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.24);
  color: white;
}

.signal-stack i:nth-child(1) {
  background: rgba(167, 139, 250, 0.18);
}

.signal-stack i:nth-child(2) {
  background: rgba(108, 108, 240, 0.22);
}

.signal-stack i:nth-child(3) {
  background: rgba(196, 181, 253, 0.14);
}

.next-action small {
  color: var(--v3-muted);
}

.next-action i {
  background: linear-gradient(#8a78ff, #6c6cf0);
  color: white;
}

.system-section,
.solutions-section,
.portal-deepdive,
.message-section {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
  border: 1px solid var(--v3-border);
  border-radius: 24px;
  background:
    radial-gradient(55% 65% at 50% 44%, rgba(108, 108, 240, 0.1), transparent 72%),
    rgba(20, 18, 38, 0.34);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.03);
}

.system-orbit {
  background:
    radial-gradient(circle at center, rgba(108, 108, 240, 0.11), transparent 34%),
    repeating-radial-gradient(circle at center, transparent 0 116px, rgba(255, 255, 255, 0.055) 117px 118px);
}

.orbit-core {
  border-color: rgba(167, 139, 250, 0.26);
  background: #11101f;
  box-shadow:
    0 0 60px rgba(108, 108, 240, 0.22),
    0 30px 75px rgba(0, 0, 0, 0.42);
}

.orbit-core small,
.orbit-card > span {
  color: var(--v3-muted);
}

.orbit-card {
  background: rgba(20, 18, 38, 0.76);
}

.card-heading span {
  color: var(--v3-accent-light);
}

.card-heading b,
.bento-title {
  color: white;
}

.bento-card,
.bento-pipeline,
.bento-context,
.bento-roles,
.bento-insight {
  background: var(--v3-surface);
}

.bento-focus {
  background: linear-gradient(145deg, rgba(108, 108, 240, 0.84), rgba(104, 77, 170, 0.64));
}

.bento-focus .micro-label,
.bento-pipeline .card-heading span {
  color: white;
}

.context-person,
.role-list > span,
.today-panel,
.pulse-panel {
  border-color: var(--v3-border);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
  color: white;
}

.context-person small,
.context-person em,
.context-timeline small,
.role-list small,
.bento-insight p {
  color: var(--v3-secondary);
}

.role-list em {
  background: rgba(167, 139, 250, 0.12);
  color: var(--v3-accent-light);
}

.insight-chart i,
.pulse-chart i {
  background: linear-gradient(to top, #6c6cf0, #b3a4ff);
}

.solutions-section,
.portal-deepdive {
  padding: 8rem 0;
  color: white;
}

.solution-card.estate,
.solution-card.health,
.solution-card.services {
  background: var(--v3-surface);
  color: white;
}

.solution-card h3,
.solution-card p,
.solution-top {
  color: white;
}

.solution-card p {
  color: var(--v3-secondary);
}

.solution-top i {
  border-color: var(--v3-border);
}

.implementation-grid {
  border-top-color: var(--v3-border);
}

.implementation-grid article:not(:last-child) {
  border-right-color: var(--v3-border);
}

.implementation-grid i {
  border-color: var(--v3-bg);
  background: var(--v3-accent);
  box-shadow: 0 0 0 1px var(--v3-accent);
}

.plans-section,
.faq-section,
.estate-plans {
  border-top-color: var(--v3-border);
}

.plan-card.recommended,
.estate-plan.featured {
  border-color: rgba(167, 139, 250, 0.32);
  background: linear-gradient(155deg, rgba(108, 108, 240, 0.42), rgba(20, 18, 38, 0.82));
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.06),
    0 18px 50px rgba(108, 108, 240, 0.18);
}

.plan-badge {
  background: var(--v3-accent-light);
}

.plan-type,
.plan-card.recommended .plan-type {
  border: 1px solid rgba(167, 139, 250, 0.18);
  background: rgba(167, 139, 250, 0.1);
  color: var(--v3-accent-light);
}

.plan-card > p,
.estate-plan > p,
.plan-card.recommended > p,
.estate-plan.featured > p {
  color: var(--v3-secondary);
}

.plan-card li::before,
.estate-plan li::before {
  background: rgba(167, 139, 250, 0.16);
  color: var(--v3-accent-light);
}

.plan-card > a,
.estate-plan > a {
  border-top-color: var(--v3-border);
  color: var(--v3-accent-light);
}

.plans-note {
  color: var(--v3-muted);
}

.faq-list,
.faq-item {
  border-color: transparent;
  background-image: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: 100% 1px;
}

.faq-item button {
  color: rgba(255, 255, 255, 0.92);
}

.faq-item button span,
.faq-heading a {
  color: var(--v3-accent-light);
}

.faq-item button i {
  border-color: var(--v3-border);
  color: var(--v3-muted);
}

.faq-answer p {
  color: var(--v3-secondary);
}

.closing-banner {
  border: 1px solid var(--v3-border);
  background:
    radial-gradient(50% 100% at 50% 100%, rgba(108, 108, 240, 0.18), transparent 75%),
    rgba(20, 18, 38, 0.55);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.04);
}

.closing-banner p {
  color: var(--v3-secondary);
}

.closing-banner h2 mark {
  color: var(--v3-accent-light);
  font-family: var(--display);
  font-style: normal;
}

.button-lime,
.button-green,
.button-dark {
  border: 0;
  background: linear-gradient(#8a78ff 0%, #6c6cf0 100%);
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.25),
    inset 0 -1px rgba(0, 0, 0, 0.18),
    0 8px 24px rgba(108, 108, 240, 0.32);
  color: white;
}

.button-lime:hover,
.button-green:hover,
.button-dark:hover {
  background: linear-gradient(#947fff, #7373f5);
  box-shadow: 0 12px 36px rgba(140, 120, 255, 0.45);
}

.button-ghost {
  border-color: var(--v3-border);
  background: rgba(255, 255, 255, 0.04);
  color: white;
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* V3 Inmuebles */

.connection-diagram {
  border-color: var(--v3-border);
  background: rgba(20, 18, 38, 0.34);
}

.connection-diagram article,
.connection-diagram article:nth-of-type(2),
.connection-diagram article:nth-of-type(3) {
  border: 1px solid var(--v3-border);
  background: rgba(255, 255, 255, 0.035);
}

.diagram-icon {
  background: rgba(167, 139, 250, 0.12);
  color: var(--v3-accent-light);
}

.connection-diagram article > small,
.diagram-link {
  color: var(--v3-accent-light);
}

.connection-diagram article > strong {
  color: white;
}

.connection-diagram article > p {
  color: var(--v3-secondary);
}

.estate-group.tone-lime,
.estate-group.tone-blue,
.estate-group.tone-violet,
.estate-group.tone-coral {
  background: var(--v3-surface);
}

.group-number {
  border-color: var(--v3-border);
  color: var(--v3-accent-light);
}

.group-copy h3 {
  color: white;
}

.group-copy p,
.estate-group li {
  color: var(--v3-secondary);
}

.estate-group ul {
  background: rgba(255, 255, 255, 0.035);
}

.estate-group li i {
  background: rgba(167, 139, 250, 0.14);
  color: var(--v3-accent-light);
}

.portal-deepdive .section-shell {
  width: min(1128px, calc(100% - 48px));
}

.portal-copy > p,
.portal-benefits small {
  color: var(--v3-secondary);
}

.portal-benefits i {
  background: rgba(167, 139, 250, 0.14);
  color: var(--v3-accent-light);
}

.lead-profile,
.lead-actions,
.lead-stages {
  background: var(--v3-surface);
}

.lead-profile-head {
  border-color: var(--v3-border);
}

.lead-profile-head > i {
  background: rgba(167, 139, 250, 0.14);
  color: var(--v3-accent-light);
}

.lead-profile-head small {
  color: var(--v3-muted);
}

.lead-profile-head > b {
  background: rgba(167, 139, 250, 0.16);
  color: var(--v3-accent-light);
}

.lead-profile > p {
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.92);
}

.lead-profile dl div {
  border-color: var(--v3-border);
}

.lead-profile dt {
  color: var(--v3-muted);
}

.action-buttons > span {
  background: rgba(255, 255, 255, 0.045);
}

.action-buttons > span > i {
  background: rgba(167, 139, 250, 0.12);
  color: var(--v3-accent-light);
}

.action-buttons small {
  color: var(--v3-muted);
}

.action-buttons .action-whatsapp {
  background: linear-gradient(#8a78ff, #6c6cf0);
}

.stage-line {
  border-color: var(--v3-border);
}

.stage-line span {
  border-color: var(--v3-border);
  color: var(--v3-muted);
}

.stage-line span.active {
  background: rgba(167, 139, 250, 0.14);
  color: var(--v3-accent-light);
}

.stage-line span.active i {
  background: var(--v3-accent);
}

.message-section {
  background:
    radial-gradient(50% 65% at 80% 30%, rgba(140, 100, 245, 0.14), transparent 75%),
    rgba(20, 18, 38, 0.34);
}

.message-section .section-shell {
  width: min(1072px, calc(100% - 48px));
}

.message-copy li {
  color: var(--v3-secondary);
}

.message-copy li i {
  background: rgba(167, 139, 250, 0.15);
  color: var(--v3-accent-light);
}

.whatsapp-card {
  border-color: var(--v3-border);
  background: #0c0c16;
  box-shadow:
    0 0 0 1px rgba(167, 139, 250, 0.08),
    0 35px 80px rgba(0, 0, 0, 0.44);
}

.whatsapp-top {
  background: #151422;
}

.whatsapp-top > i {
  background: linear-gradient(#8a78ff, #6c6cf0);
}

.whatsapp-day {
  background: rgba(255, 255, 255, 0.06);
  color: var(--v3-muted);
}

.chat-bubble {
  background: #28223f;
  color: white;
}

.domain-option,
.domain-option.recommended {
  border: 1px solid var(--v3-border);
  background: var(--v3-surface);
  color: white;
}

.domain-option > strong span,
.domain-option.recommended > strong span {
  color: var(--v3-accent-light);
}

.domain-option > p,
.domain-option.recommended > p {
  color: var(--v3-secondary);
}

.domain-option > i,
.domain-option.recommended > i {
  background: rgba(167, 139, 250, 0.14);
  color: var(--v3-accent-light);
}

.domain-arrow {
  color: var(--v3-accent-light);
}

.scope-card {
  border: 1px solid var(--v3-border);
  background:
    radial-gradient(55% 80% at 0 0, rgba(108, 108, 240, 0.12), transparent 70%),
    var(--v3-surface);
}

.scope-columns > div {
  border-color: var(--v3-border);
  background: rgba(255, 255, 255, 0.035);
}

.scope-columns strong {
  color: var(--v3-accent-light);
}

.estate-closing {
  border: 1px solid var(--v3-border);
  background: var(--v3-surface);
}

.estate-closing::after {
  background: linear-gradient(90deg, rgba(7, 7, 15, 0.98) 0 42%, rgba(7, 7, 15, 0.78) 58%, rgba(7, 7, 15, 0.18) 82%);
}

.estate-closing p {
  color: var(--v3-secondary);
}

/* V3 Footer */

.site-footer {
  width: min(1180px, calc(100% - 48px));
  margin-bottom: 24px;
  border: 1px solid var(--v3-border);
  border-radius: 24px;
  background:
    radial-gradient(50% 80% at 50% 0, rgba(108, 108, 240, 0.13), transparent 75%),
    rgba(20, 18, 38, 0.42);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.03);
}

.footer-spotlight,
.footer-bottom {
  border-color: var(--v3-border);
}

.footer-brand p,
.footer-brand small,
.footer-column a,
.footer-bottom {
  color: var(--v3-secondary);
}

.footer-column strong {
  color: white;
}

.footer-column a:hover {
  color: var(--v3-accent-light);
}

.noindex-chip {
  border: 1px solid var(--v3-border);
  background: rgba(167, 139, 250, 0.08);
  color: var(--v3-accent-light);
}

@keyframes v3Cursor {
  50% {
    opacity: 0;
  }
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: auto auto 1fr;
    padding-inline: 18px;
  }

  .main-nav {
    top: 72px;
    right: 18px;
    left: 18px;
    margin-left: 0;
    border: 1px solid var(--v3-border);
    background: rgba(8, 7, 18, 0.97);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(18px);
  }

  .main-nav a {
    border-bottom-color: var(--v3-border);
    color: var(--v3-secondary);
  }

  .menu-toggle {
    border-color: var(--v3-border);
    background: rgba(255, 255, 255, 0.05);
    color: white;
  }

  .menu-toggle span {
    background: white;
  }

  .home-hero,
  .estate-hero {
    grid-template-columns: 1fr;
    gap: 44px;
    min-height: auto;
    padding-top: 132px;
  }

  .hero-copy,
  .estate-hero-copy {
    max-width: 650px;
    margin-inline: auto;
    text-align: center;
  }

  .hero-copy h1,
  .estate-hero-copy h1,
  .hero-lead,
  .estate-hero-copy > p {
    margin-right: auto;
    margin-left: auto;
  }

  .eyebrow,
  .v3-url {
    margin-right: auto;
    margin-left: auto;
  }

  .v3-secondary-link,
  .breadcrumb {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-assurance {
    justify-content: center;
  }

  .command-center,
  .estate-product {
    width: min(700px, 90vw);
    margin-inline: auto;
  }
}

@media (max-width: 860px) {
  .section-shell,
  .portal-deepdive .section-shell,
  .message-section .section-shell {
    width: min(680px, calc(100% - 36px));
  }

  .system-section,
  .solutions-section,
  .portal-deepdive,
  .message-section {
    width: calc(100% - 24px);
  }

  .word-rail,
  .estate-proofbar,
  .site-footer {
    width: calc(100% - 36px);
  }

  .system-orbit {
    background: none;
  }

  .orbit-core {
    background: #11101f;
  }
}

@media (max-width: 620px) {
  .site-header {
    top: 0;
    width: 100%;
    padding: 10px 12px;
    background: rgba(8, 7, 18, 0.86);
    backdrop-filter: blur(18px);
  }

  .main-nav {
    top: 63px;
    right: 9px;
    left: 9px;
  }

  .home-hero,
  .estate-hero {
    padding: 105px 22px 48px;
  }

  .hero-copy h1,
  .estate-hero-copy h1 {
    font-size: clamp(2.15rem, 10.5vw, 2.8rem);
  }

  .hero-lead,
  .estate-hero-copy > p {
    font-size: 1rem;
  }

  .v3-url {
    display: flex;
    width: 100%;
    padding: 8px;
    border-radius: 18px;
    flex-direction: column;
    gap: 6px;
  }

  .v3-url > div {
    width: 100%;
    padding: 10px 14px;
    overflow: hidden;
  }

  .v3-url > a {
    width: 100%;
    padding: 12px 16px;
    text-align: center;
  }

  .command-window,
  .estate-portal-window {
    transform: none;
  }

  .word-rail,
  .estate-proofbar,
  .site-footer {
    width: calc(100% - 18px);
  }

  .system-section,
  .solutions-section,
  .portal-deepdive,
  .message-section {
    width: calc(100% - 18px);
    border-radius: 20px;
  }

  .market-problem,
  .system-section,
  .bento-section,
  .implementation-section,
  .plans-section,
  .faq-section,
  .scope-section,
  .estate-plans,
  .estate-positioning,
  .estate-groups,
  .lead-context,
  .brand-domain,
  .solutions-section,
  .portal-deepdive,
  .message-section {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .split-heading h2,
  .section-intro h2,
  .faq-heading h2,
  .portal-copy h2,
  .message-copy h2,
  .domain-copy h2,
  .scope-card h2 {
    font-size: 2.15rem;
  }

  .problem-card,
  .orbit-card,
  .bento-card,
  .solution-card,
  .plan-card,
  .estate-plan,
  .estate-group,
  .lead-profile,
  .lead-actions,
  .lead-stages {
    border-radius: 18px;
  }

  .estate-closing::after {
    background: linear-gradient(180deg, rgba(7, 7, 15, 0.98) 0 46%, rgba(7, 7, 15, 0.72) 70%, rgba(7, 7, 15, 0.2));
  }
}

/* ==========================================================================
   V3 · Conjunto de plataformas, contenido de valor y precios
   ========================================================================== */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.platform-suite,
.shared-layer,
.types-section,
.fields-section,
.capture-section,
.kpi-section,
.compare-section {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.plans-note a {
  color: var(--v3-accent-light);
  font-weight: 600;
}

.plans-note b {
  color: white;
  font-weight: 600;
}

/* --- Conjunto de plataformas --- */

.platform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 4rem;
}

.platform-item {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.6rem;
  overflow: hidden;
  border: 1px solid var(--v3-border);
  border-radius: 20px;
  background: var(--v3-surface);
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.04),
    0 12px 36px rgba(0, 0, 0, 0.35);
  color: white;
  backdrop-filter: blur(14px);
  transition:
    transform 0.3s var(--v3-ease),
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.platform-item::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  opacity: 0;
  border-radius: inherit;
  background: radial-gradient(600px circle at var(--x) var(--y), rgba(167, 139, 250, 0.12), transparent 40%);
  pointer-events: none;
  content: "";
  transition: opacity 0.3s ease;
}

.platform-item.is-hovered {
  transform: translateY(-2px);
  border-color: var(--v3-border-hover);
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.06),
    0 12px 40px rgba(140, 120, 255, 0.2),
    0 4px 24px rgba(0, 0, 0, 0.4);
}

.platform-item.is-hovered::before {
  opacity: 1;
}

.platform-item > * {
  position: relative;
  z-index: 1;
}

.platform-item.is-live {
  border-color: rgba(167, 139, 250, 0.32);
  background: linear-gradient(155deg, rgba(108, 108, 240, 0.28), rgba(20, 18, 38, 0.82));
}

.platform-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.platform-head > b {
  color: var(--v3-muted);
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
}

.platform-status {
  padding: 0.35rem 0.55rem;
  border: 1px solid var(--v3-border);
  border-radius: 999px;
  font-family: var(--display);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.platform-status.tone-live {
  border-color: rgba(184, 255, 90, 0.32);
  background: rgba(184, 255, 90, 0.12);
  color: #cdff8c;
}

.platform-status.tone-build {
  border-color: rgba(167, 139, 250, 0.3);
  background: rgba(167, 139, 250, 0.12);
  color: var(--v3-accent-light);
}

.platform-status.tone-design {
  border-color: rgba(129, 170, 255, 0.28);
  background: rgba(129, 170, 255, 0.1);
  color: #a9c6ff;
}

.platform-status.tone-roadmap {
  color: var(--v3-muted);
}

.platform-item h3 {
  margin: 1.9rem 0 0.5rem;
  font-family: var(--display);
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.platform-item h3 em {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
}

.platform-claim {
  margin: 0;
  color: white;
  font-size: 0.86rem;
  line-height: 1.5;
}

.platform-who {
  margin: 0.9rem 0 0;
  color: var(--v3-muted);
  font-size: 0.74rem;
  line-height: 1.55;
}

.platform-who i {
  margin-right: 0.4rem;
  color: var(--v3-accent-light);
  font-family: var(--mono);
  font-size: 0.55rem;
  font-style: normal;
  letter-spacing: 0.1em;
}

.platform-item ul {
  display: grid;
  gap: 0.55rem;
  margin: 1.5rem 0;
  padding: 0;
  list-style: none;
}

.platform-item li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--v3-secondary);
  font-size: 0.75rem;
  line-height: 1.4;
}

.platform-item li::before {
  position: absolute;
  top: 0.42em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(167, 139, 250, 0.6);
  content: "";
}

.platform-note {
  display: block;
  margin-bottom: 1.2rem;
  padding: 0.7rem 0.8rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--v3-muted);
  font-size: 0.68rem;
  line-height: 1.5;
}

.platform-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--v3-border);
  gap: 1rem;
}

.platform-foot strong {
  font-size: 0.82rem;
  font-weight: 600;
}

.platform-foot i {
  color: var(--v3-muted);
  font-size: 0.72rem;
  font-style: normal;
}

.platform-item.is-live .platform-foot i {
  color: var(--v3-accent-light);
  font-weight: 600;
}

/* --- Capa compartida --- */

.layer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 3.5rem;
}

.layer-card {
  position: relative;
  padding: 1.5rem;
  overflow: hidden;
  border: 1px solid var(--v3-border);
  border-radius: 20px;
  background: var(--v3-surface);
  backdrop-filter: blur(14px);
  transition: border-color 0.3s ease, transform 0.3s var(--v3-ease);
}

.layer-card.is-hovered {
  transform: translateY(-2px);
  border-color: var(--v3-border-hover);
}

.layer-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(167, 139, 250, 0.22);
  border-radius: 13px;
  background: rgba(167, 139, 250, 0.1);
  color: var(--v3-accent-light);
  font-size: 1.05rem;
}

.layer-card h3 {
  margin: 1.4rem 0 0.6rem;
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.layer-card p {
  margin: 0;
  color: var(--v3-secondary);
  font-size: 0.8rem;
  line-height: 1.6;
}

.layer-card p b {
  color: white;
  font-weight: 600;
}

/* --- Tipos de inmueble --- */

.type-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 3.5rem;
}

.type-card {
  padding: 1.3rem;
  border: 1px solid var(--v3-border);
  border-radius: 18px;
  background: var(--v3-surface);
  backdrop-filter: blur(14px);
  transition: border-color 0.3s ease, transform 0.3s var(--v3-ease);
}

.type-card.is-hovered {
  transform: translateY(-2px);
  border-color: var(--v3-border-hover);
}

.type-card > span {
  display: block;
  color: var(--v3-accent-light);
  font-size: 1.4rem;
  line-height: 1;
}

.type-card h3 {
  margin: 1.1rem 0 0.35rem;
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.type-card p {
  margin: 0;
  color: var(--v3-muted);
  font-size: 0.72rem;
  line-height: 1.5;
}

.operation-strip {
  display: grid;
  margin-top: 20px;
  padding: 2rem;
  border: 1px solid rgba(167, 139, 250, 0.22);
  border-radius: 20px;
  background:
    radial-gradient(70% 120% at 50% 0, rgba(108, 108, 240, 0.16), transparent 70%),
    var(--v3-surface);
  gap: 0.8rem;
  text-align: center;
}

.operation-strip > div {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
}

.operation-strip b {
  font-family: var(--display);
  font-size: clamp(1.3rem, 2.6vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.035em;
}

.operation-strip i {
  color: var(--v3-accent);
  font-style: normal;
}

.operation-strip small {
  color: var(--v3-muted);
  font-size: 0.76rem;
}

/* --- Ficha de propiedad --- */

.fields-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 3.5rem;
}

.fields-card {
  padding: 1.5rem;
  border: 1px solid var(--v3-border);
  border-radius: 20px;
  background: var(--v3-surface);
  backdrop-filter: blur(14px);
  transition: border-color 0.3s ease, transform 0.3s var(--v3-ease);
}

.fields-card.is-hovered {
  transform: translateY(-2px);
  border-color: var(--v3-border-hover);
}

.fields-card > strong {
  display: block;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--v3-border);
  color: var(--v3-accent-light);
  font-family: var(--display);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.fields-card ul {
  display: grid;
  gap: 0.65rem;
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
}

.fields-card li {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  color: var(--v3-secondary);
  font-size: 0.78rem;
  line-height: 1.4;
}

.fields-card li::before {
  color: rgba(167, 139, 250, 0.7);
  content: "▸";
  font-size: 0.6rem;
}

/* --- Captación de inmuebles --- */

.capture-card {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  align-items: center;
  padding: clamp(2rem, 5vw, 4rem);
  border: 1px solid var(--v3-border);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(55% 90% at 100% 0, rgba(108, 108, 240, 0.16), transparent 70%),
    var(--v3-surface);
  backdrop-filter: blur(14px);
  gap: clamp(2rem, 5vw, 4.5rem);
}

.capture-copy h2 {
  margin: 0.9rem 0 1.1rem;
  color: white;
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.capture-copy > p {
  margin: 0;
  color: var(--v3-secondary);
  font-size: 0.92rem;
  line-height: 1.65;
}

.capture-copy > p b {
  color: white;
  font-weight: 600;
}

.capture-copy ul {
  display: grid;
  gap: 0.75rem;
  margin: 1.8rem 0 0;
  padding: 0;
  list-style: none;
}

.capture-copy li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--v3-secondary);
  font-size: 0.82rem;
}

.capture-copy li i {
  display: grid;
  width: 18px;
  height: 18px;
  flex: none;
  place-items: center;
  border-radius: 50%;
  background: rgba(167, 139, 250, 0.16);
  color: var(--v3-accent-light);
  font-size: 0.55rem;
  font-style: normal;
}

.capture-form {
  position: relative;
  display: grid;
  padding: 1.5rem;
  border: 1px solid var(--v3-border);
  border-radius: 22px;
  background: var(--v3-surface-strong);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.42);
  gap: 0.8rem;
}

.capture-form-head b {
  display: block;
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.capture-form-head small {
  color: var(--v3-muted);
  font-size: 0.68rem;
}

.capture-form label {
  display: grid;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--v3-border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  gap: 0.3rem;
}

.capture-form label span {
  color: var(--v3-muted);
  font-family: var(--mono);
  font-size: 0.52rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.capture-form label i {
  color: white;
  font-size: 0.8rem;
  font-style: normal;
}

.capture-submit {
  padding: 0.85rem;
  border-radius: 12px;
  background: var(--v3-accent-solid);
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
}

.capture-toast {
  position: absolute;
  right: -12px;
  bottom: -26px;
  display: flex;
  align-items: center;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--v3-border);
  border-radius: 14px;
  background: var(--v3-bg-deep);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
  gap: 0.7rem;
}

.capture-toast i {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 50%;
  background: rgba(184, 255, 90, 0.16);
  color: #cdff8c;
  font-size: 0.7rem;
  font-style: normal;
}

.capture-toast small {
  display: block;
  color: var(--v3-muted);
  font-family: var(--mono);
  font-size: 0.5rem;
  letter-spacing: 0.1em;
}

.capture-toast b {
  font-size: 0.75rem;
}

/* --- Indicadores --- */

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 3.5rem;
}

.kpi-card {
  padding: 1.5rem;
  border: 1px solid var(--v3-border);
  border-radius: 20px;
  background: var(--v3-surface);
  backdrop-filter: blur(14px);
  transition: border-color 0.3s ease, transform 0.3s var(--v3-ease);
}

.kpi-card.is-hovered {
  transform: translateY(-2px);
  border-color: var(--v3-border-hover);
}

.kpi-card > b {
  color: var(--v3-muted);
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.08em;
}

.kpi-card > strong {
  display: block;
  margin: 1.2rem 0 0.5rem;
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.035em;
}

.kpi-card p {
  margin: 0;
  color: var(--v3-secondary);
  font-size: 0.78rem;
  line-height: 1.55;
}

/* --- Precio dentro de las tarjetas de plan --- */

.price-tag {
  display: flex;
  align-items: baseline;
  margin: 1.2rem 0 1.4rem;
  gap: 0.25rem;
}

.price-tag span {
  color: var(--v3-accent-light);
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 700;
}

.price-tag b {
  font-family: var(--display);
  font-size: clamp(2.4rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.05em;
}

.price-tag small {
  margin-left: 0.35rem;
  color: var(--v3-muted);
  font-size: 0.66rem;
  letter-spacing: 0.02em;
}

.plan-card h3,
.estate-plan h3 {
  margin-top: 1.5rem;
}

/* --- Complemento de dominio --- */

.addon-strip {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  margin-top: 20px;
  gap: 20px;
}

.addon-card {
  padding: 1.8rem;
  border: 1px solid rgba(167, 139, 250, 0.24);
  border-radius: 20px;
  background:
    radial-gradient(70% 130% at 0 0, rgba(108, 108, 240, 0.2), transparent 70%),
    var(--v3-surface);
}

.addon-card strong {
  display: block;
  margin: 0.9rem 0 0.7rem;
  font-family: var(--display);
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
  font-weight: 700;
  letter-spacing: -0.035em;
}

.addon-card strong b {
  color: var(--v3-accent-light);
}

.addon-card strong small {
  color: var(--v3-muted);
  font-size: 0.7rem;
  font-weight: 400;
}

.addon-card p {
  margin: 0;
  color: var(--v3-secondary);
  font-size: 0.82rem;
  line-height: 1.6;
}

.addon-notes {
  display: grid;
  gap: 0.7rem;
}

.addon-notes span {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--v3-secondary);
  font-size: 0.8rem;
}

.addon-notes i {
  display: grid;
  width: 18px;
  height: 18px;
  flex: none;
  place-items: center;
  border-radius: 50%;
  background: rgba(167, 139, 250, 0.16);
  color: var(--v3-accent-light);
  font-size: 0.55rem;
  font-style: normal;
}

/* --- Comparativo --- */

.compare-scroll {
  margin-top: 3.5rem;
  overflow-x: auto;
  border: 1px solid var(--v3-border);
  border-radius: 20px;
  background: var(--v3-surface);
  backdrop-filter: blur(14px);
}

.compare-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-size: 0.8rem;
}

.compare-table th,
.compare-table td {
  padding: 1rem 1.1rem;
  border-bottom: 1px solid var(--v3-border);
  text-align: center;
}

.compare-table thead th {
  color: white;
  font-family: var(--display);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  vertical-align: bottom;
}

.compare-table thead th small {
  display: block;
  margin-top: 0.3rem;
  color: var(--v3-muted);
  font-family: var(--font);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0;
}

.compare-table tbody th {
  color: var(--v3-secondary);
  font-weight: 400;
  text-align: left;
}

.compare-table .is-featured {
  background: rgba(108, 108, 240, 0.12);
}

.compare-table thead .is-featured {
  border-radius: 12px 12px 0 0;
  color: var(--v3-accent-light);
}

.compare-table tbody tr:last-child th,
.compare-table tbody tr:last-child td {
  border-bottom: 0;
}

.compare-table b {
  font-size: 0.78rem;
  font-weight: 600;
}

.cmp-yes {
  color: #cdff8c;
  font-size: 0.9rem;
  font-style: normal;
}

.cmp-no {
  color: rgba(255, 255, 255, 0.24);
  font-style: normal;
}

.scope-lead {
  margin: 1.3rem 0 0;
  color: var(--v3-secondary);
  font-size: 0.88rem;
  line-height: 1.65;
}

/* --- Responsive --- */

@media (max-width: 1180px) {
  .platform-grid,
  .layer-grid,
  .fields-grid,
  .kpi-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .type-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .capture-card,
  .addon-strip {
    grid-template-columns: 1fr;
  }

  .capture-toast {
    right: 10px;
    bottom: -22px;
  }
}

@media (max-width: 860px) {
  .platform-suite,
  .shared-layer,
  .types-section,
  .fields-section,
  .capture-section,
  .kpi-section,
  .compare-section {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

@media (max-width: 620px) {
  .platform-grid,
  .layer-grid,
  .fields-grid,
  .kpi-grid,
  .type-grid {
    grid-template-columns: 1fr;
  }

  .platform-item,
  .layer-card,
  .type-card,
  .fields-card,
  .kpi-card {
    border-radius: 18px;
  }

  .compare-scroll {
    border-radius: 18px;
  }
}

/* --- Correcciones V3 --- */

/*
 * `.plan-card > *` fija position:relative con la misma especificidad que
 * `.plan-badge`, y al ir después ganaba: el distintivo salía del flujo
 * absoluto y empujaba el contenido. Se sube la especificidad para restaurarlo.
 */
.plan-card .plan-badge,
.estate-plan .plan-badge {
  position: absolute;
  z-index: 2;
  top: 1.15rem;
  right: 1.15rem;
  width: max-content;
}

/*
 * Con la fila de rejilla en 0fr el párrafo mide cero de alto, pero su
 * padding inferior seguía ocupando 1.5rem y dejaba asomar la primera línea
 * de las respuestas cerradas. El relleno se ata al estado abierto.
 */
.faq-answer {
  overflow: hidden;
}

.faq-answer > p {
  padding-bottom: 0;
  transition: padding-bottom 260ms ease;
}

.faq-item.open .faq-answer > p {
  padding-bottom: 1.5rem;
}

/* --- Marca: monograma M --- */

.brand-mark {
  display: block;
  width: 30px;
  height: 30px;
  flex: none;
}

.brand-mark path {
  fill: none;
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-mark .mark-stem {
  stroke: currentColor;
}

.brand-mark .mark-rise {
  stroke: var(--v3-accent);
}

.brand-mark.large {
  width: 54px;
  height: 54px;
}

.brand-mark.mini {
  width: 25px;
  height: 25px;
  margin-bottom: 1.5rem;
  color: white;
}

.site-footer .brand-mark {
  color: white;
}

/*
 * Misma colisión que el distintivo de los planes: la regla compartida de
 * tarjetas del tema oscuro (`.orbit-card, .bento-card, …`) fija
 * position:relative con igual especificidad y, al ir después, ganaba. Con
 * relative, el `right`/`bottom` de cada tarjeta dejaba de colocarla en la
 * órbita y la desplazaba fuera del contenedor. Se restaura el absoluto por
 * especificidad, y se respeta la rejilla del breakpoint de 860px.
 */
.system-orbit .orbit-card {
  position: absolute;
}

@media (max-width: 860px) {
  .system-orbit .orbit-card {
    position: static;
  }
}

/* Tercer caso de la misma colisión: `.problem-card > *` desanclaba la
 * píldora de próxima acción del pie de la tarjeta destacada. */
.problem-card .next-action {
  position: absolute;
}

/* --- Iconos del menú móvil ---
 * Phosphor Icons, peso regular (cube, squares-four, house-line, tag,
 * question). MIT © Phosphor Icons — https://phosphoricons.com
 * Los trazados van incrustados en el HTML para no depender de un CDN.
 */

/* En escritorio la navegación es sólo texto: el icono no se dibuja. */
.nav-icon {
  display: none;
}

@media (max-width: 1180px) {
  .main-nav a {
    display: flex;
    align-items: center;
    gap: 0.95rem;
  }

  .nav-icon {
    display: block;
    width: 40px;
    height: 40px;
    flex: none;
    padding: 8px;
    border: 1px solid rgba(167, 139, 250, 0.22);
    border-radius: 13px;
    background: rgba(167, 139, 250, 0.1);
    box-sizing: border-box;
    color: var(--v3-accent-light);
  }

  .nav-icon path {
    fill: currentColor;
  }

  .main-nav a.active .nav-icon {
    border-color: rgba(167, 139, 250, 0.5);
    background: rgba(167, 139, 250, 0.2);
    color: white;
  }
}

/* --- Icono propio por punto en las listas de Inmuebles --- */

.estate-group li {
  align-items: center;
  gap: 0.7rem;
}

.estate-group li .item-icon {
  display: block;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  padding: 4.5px;
  border-radius: 8px;
  background: rgba(167, 139, 250, 0.14);
  box-sizing: border-box;
  color: var(--v3-accent-light);
}

.estate-group li .item-icon path {
  fill: currentColor;
}

/* Iconos Phosphor en tarjetas de tipo de inmueble y en la capa compartida:
 * sustituyen a los glifos Unicode, que dependían de la fuente del sistema
 * y en varias plataformas caían a un cuadro o a un patrón ilegible. */
.type-card > span .item-icon,
.layer-icon .item-icon {
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
}

.type-card > span .item-icon path,
.layer-icon .item-icon path {
  fill: currentColor;
}

.type-card > span {
  display: block;
  width: 30px;
  height: 30px;
  color: var(--v3-accent-light);
}

.layer-icon {
  padding: 10px;
  box-sizing: border-box;
}

/* ─────────────────────────────────────────────────────────────
   Capturas reales del sistema (portal público y panel)
   Sustituyen a los mockups dibujados en CSS.
   ───────────────────────────────────────────────────────────── */

.estate-shot,
.showcase-shot,
.phone-shot {
  display: block;
  width: 100%;
  height: auto;
}

/* La altura la define la captura, no el marco. */
.estate-portal-window,
.estate-phone {
  min-height: 0;
}

.estate-phone {
  padding: 0;
  overflow: hidden;
}

.phone-shot {
  border-radius: 21px;
}

/* ── Panel por dentro ───────────────────────────────────────── */

.panel-showcase {
  display: grid;
  gap: clamp(1.6rem, 3vw, 2.8rem);
}

.panel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.2rem, 2.4vw, 2rem);
}

.panel-frame {
  display: flex;
  flex-direction: column;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--v3-border);
  border-radius: var(--radius-md);
  background: var(--v3-surface-strong);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(14px);
  transition: border-color 0.4s var(--v3-ease), transform 0.4s var(--v3-ease);
}

.panel-frame:hover {
  transform: translateY(-4px);
  border-color: var(--v3-border-hover);
}

.panel-chrome {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 40px;
  padding: 0 1rem;
  border-bottom: 1px solid var(--v3-border);
  background: rgba(255, 255, 255, 0.04);
}

.panel-chrome i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.panel-chrome span {
  margin-left: 0.7rem;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--v3-muted);
}

.panel-frame > img {
  display: block;
  width: 100%;
  height: auto;
  border-bottom: 1px solid var(--v3-border);
}

.panel-frame figcaption {
  display: grid;
  gap: 0.45rem;
  padding: 1.15rem 1.35rem 1.4rem;
}

.panel-frame figcaption strong {
  font-family: var(--display);
  font-size: 1.05rem;
  line-height: 1.3;
  color: var(--v3-text);
}

.panel-frame figcaption span {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--v3-secondary);
}

@media (max-width: 860px) {
  .panel-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .panel-frame figcaption {
    padding: 1rem 1.05rem 1.15rem;
  }

  .panel-frame figcaption strong {
    font-size: 0.98rem;
  }

  .panel-frame figcaption span {
    font-size: 0.86rem;
  }
}

/* ─────────────────────────────────────────────────────────────
   Menú hamburguesa
   Corrige lo heredado de V2: el panel medía calc(100vh - 104px)
   aunque los enlaces ocuparan la tercera parte, y el fondo
   translúcido dejaba leer la página por debajo.
   ───────────────────────────────────────────────────────────── */

@media (max-width: 1180px) {
  .main-nav {
    z-index: 60;
    min-height: 0;
    max-height: calc(100dvh - 90px);
    overflow-y: auto;
    gap: 0;
    padding: 0.5rem 1.3rem 0.9rem;
    background: #0b0a18;
    backdrop-filter: none;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.65);
    overscroll-behavior: contain;
  }

  .main-nav a {
    padding: 0.95rem 0;
    font-size: 1.2rem;
  }

  .main-nav a:last-child {
    border-bottom: none;
  }
}

@media (max-width: 620px) {
  .main-nav {
    max-height: calc(100dvh - 80px);
    padding: 0.4rem 1.15rem 0.8rem;
  }

  .main-nav a {
    padding: 0.85rem 0;
    font-size: 1.1rem;
  }
}

/* ─────────────────────────────────────────────────────────────
   Sección «Tu sitio inmobiliario»
   El h2 escalaba con el viewport (hasta 4.7rem) dentro de una
   columna de ~380px, así que el titular caía en cinco líneas con
   huérfanas ("de", "que se"). Y align-items:center dejaba un
   hueco muerto bajo la captura.
   ───────────────────────────────────────────────────────────── */

.portal-deepdive .section-shell {
  grid-template-columns: minmax(300px, 1fr) 1.45fr;
  align-items: start;
  gap: clamp(2rem, 4.5vw, 4.5rem);
}

/* El min-width de 750px era para el mockup dibujado en CSS, que
   necesitaba ese ancho para no romperse. Ahora es una captura que
   escala sola, y ese mínimo era lo que aplastaba la columna de texto. */
.browser-showcase {
  min-width: 0;
}

.portal-copy h2 {
  /* Escala con la columna, no con la ventana. */
  font-size: clamp(2.05rem, 2.7vw, 3.1rem);
  line-height: 1.08;
  text-wrap: balance;
}

.portal-copy > p {
  max-width: 48ch;
}

/* Cuatro puntos cortos: en 2×2 se leen como bloque compacto y no
   como una escalera delgada al pie de la columna. */
.portal-benefits {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.6rem 1.4rem;
  margin-top: 2.75rem;
}

@media (max-width: 1180px) {
  .portal-deepdive .section-shell {
    grid-template-columns: 1fr;
  }

  .portal-copy h2 {
    font-size: clamp(2.1rem, 5.2vw, 3rem);
  }
}

@media (max-width: 620px) {
  .portal-benefits {
    grid-template-columns: 1fr;
    gap: 1.15rem;
    margin-top: 2rem;
  }
}

/* ─────────────────────────────────────────────────────────────
   Alta de inmobiliarias (/registro)
   ───────────────────────────────────────────────────────────── */

/* En una landing de tenant el acceso no puede esconderse en el menú. */
@media (max-width: 1180px) {
  .header-actions .login-link {
    display: inline-flex;
  }
}

@media (max-width: 620px) {
  .header-actions {
    gap: 10px;
  }

  .header-actions .login-link {
    font-size: 12.5px;
    white-space: nowrap;
  }

  .header-button {
    padding: 0.6rem 0.75rem 0.6rem 0.9rem;
    font-size: 13px;
  }

  .header-button i {
    display: none;
  }
}

.page-signup {
  padding-top: clamp(120px, 14vw, 168px);
}

.signup-shell {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(2rem, 5vw, 4.5rem);
  padding-bottom: clamp(4rem, 8vw, 7rem);
}

.signup-copy h1 {
  margin-top: 1rem;
  font-size: clamp(2.1rem, 3.2vw, 3.4rem);
  line-height: 1.05;
  text-wrap: balance;
}

.signup-copy > p {
  max-width: 46ch;
  margin-top: 1.1rem;
  color: var(--v3-secondary);
}

.signup-points {
  display: grid;
  gap: 1.15rem;
  margin: 2.25rem 0 0;
  padding: 0;
  list-style: none;
}

.signup-points li {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 0.85rem;
  align-items: start;
}

.signup-points i {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border: 1px solid rgba(167, 139, 250, 0.3);
  border-radius: 8px;
  background: rgba(167, 139, 250, 0.12);
  color: var(--v3-accent-light);
  font-size: 0.8rem;
  font-style: normal;
}

.signup-points b {
  display: block;
  font-size: 0.98rem;
}

.signup-points span {
  display: block;
  margin-top: 0.2rem;
  color: var(--v3-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.signup-alt {
  margin-top: 2rem;
  color: var(--v3-muted);
  font-size: 0.92rem;
}

.signup-alt a {
  color: var(--v3-accent-light);
  font-weight: 600;
}

.signup-card {
  padding: clamp(1.5rem, 2.6vw, 2.25rem);
  border: 1px solid var(--v3-border);
  border-radius: var(--radius-md);
  background: var(--v3-surface-strong);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(14px);
}

.signup-form {
  display: grid;
  gap: 1.1rem;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
}

.field {
  display: grid;
  gap: 0.45rem;
}

.field > label {
  color: var(--v3-secondary);
  font-size: 0.86rem;
  font-weight: 600;
}

.field > label b {
  color: var(--v3-accent);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.8rem 0.95rem;
  border: 1px solid var(--v3-border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--v3-text);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.field textarea {
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(255, 255, 255, 0.32);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--v3-border-hover);
  background: rgba(255, 255, 255, 0.07);
}

.field select option {
  background: #14122a;
  color: #fff;
}

.field-hint {
  color: var(--v3-muted);
  font-size: 0.8rem;
}

.field-hint b {
  color: var(--v3-accent-light);
}

/* Honeypot: fuera de pantalla, nunca oculto con display:none para que los bots lo llenen. */
.signup-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.signup-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  margin-top: 0.4rem;
  padding: 1rem 1.4rem;
  border: 0;
  border-radius: 14px;
  background: var(--v3-accent-solid);
  color: #fff;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s var(--v3-ease), opacity 0.2s ease;
}

.signup-submit:hover:not(:disabled) {
  transform: translateY(-2px);
}

.signup-submit:disabled {
  opacity: 0.6;
  cursor: progress;
}

.form-error {
  margin: 0;
  padding: 0.75rem 0.95rem;
  border: 1px solid rgba(255, 128, 107, 0.35);
  border-radius: 11px;
  background: rgba(255, 128, 107, 0.1);
  color: #ffb3a3;
  font-size: 0.88rem;
}

.form-legal {
  margin: 0;
  color: var(--v3-muted);
  font-size: 0.78rem;
  line-height: 1.5;
}

.signup-done {
  display: grid;
  gap: 0.7rem;
  justify-items: center;
  padding: 1.5rem 0.5rem;
  text-align: center;
}

/* Un display explícito le gana al atributo hidden del navegador: sin esto,
   el bloque de éxito y el botón asoman antes de enviar el formulario. */
.signup-card [hidden] {
  display: none;
}

.signup-done-mark {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(167, 139, 250, 0.4);
  border-radius: 50%;
  background: rgba(167, 139, 250, 0.15);
  color: var(--v3-accent-light);
  font-size: 1.4rem;
}

.signup-done h2 {
  font-size: 1.5rem;
}

.signup-done p {
  max-width: 42ch;
  color: var(--v3-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (max-width: 980px) {
  .signup-shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .field-row {
    grid-template-columns: 1fr;
  }

  .signup-card {
    padding: 1.15rem;
  }
}

/* El botón heredaba row-gap 0 en una rejilla de 3.8px de alto: las dos
   barras quedaban pegadas y se leían como un solo guion. */

@media (max-width: 1180px) {
  .menu-toggle {
    display: flex;
    width: 42px;
    height: 42px;
    margin-left: 0.85rem; /* si no, el botón queda pegado al logotipo */
    padding: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 1px solid var(--v3-border);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
  }

  .menu-toggle span {
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: #fff;
    transition: transform 0.28s var(--v3-ease), opacity 0.2s ease;
  }

  .menu-toggle b {
    display: none;
  }

  /* Abierto: las dos barras se cruzan en una X. */
  .menu-open .menu-toggle span:first-of-type {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-open .menu-toggle span:nth-of-type(2) {
    transform: translateY(-3.5px) rotate(-45deg);
  }
}


/* ─────────────────────────────────────────────────────────────
   Planes: de tres a dos
   Con dos tarjetas, una rejilla de tres columnas dejaba un hueco
   a la derecha y las hacía ver incompletas.
   ───────────────────────────────────────────────────────────── */

.estate-plan-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2.2vw, 1.8rem);
  max-width: 920px;
  margin-inline: auto;
}

/* El precio anual, debajo del mensual. */
.plan-anual {
  margin: -0.35rem 0 0;
  color: var(--v3-muted);
  font-size: 0.86rem;
}

.plan-anual b {
  color: var(--v3-accent-light);
  font-weight: 600;
}

/* El comparativo pasó de cuatro columnas a tres. */
.compare-table th:first-child,
.compare-table td:first-child {
  width: 46%;
}

@media (max-width: 860px) {
  .estate-plan-grid {
    grid-template-columns: 1fr;
  }
}

/* El dominio propio, dentro de cada tarjeta de plan. */
.plan-dominio {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0.55rem 0 0;
  padding: 0.5rem 0.7rem;
  border: 1px solid var(--v3-border);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--v3-secondary);
  font-size: 0.82rem;
}

.plan-dominio i {
  display: grid;
  width: 18px;
  height: 18px;
  flex: none;
  place-items: center;
  border-radius: 5px;
  background: rgba(167, 139, 250, 0.16);
  color: var(--v3-accent-light);
  font-size: 0.72rem;
  font-style: normal;
}

.plan-dominio b {
  color: var(--v3-text);
}

/* La prueba gratuita, junto al precio. */
.plan-prueba {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0.7rem 0 0;
  padding: 0.5rem 0.7rem;
  border: 1px solid rgba(184, 255, 90, 0.28);
  border-radius: 10px;
  background: rgba(184, 255, 90, 0.08);
  color: var(--v3-text);
  font-size: 0.84rem;
}

.plan-prueba i {
  display: grid;
  width: 18px;
  height: 18px;
  flex: none;
  place-items: center;
  border-radius: 5px;
  background: rgba(184, 255, 90, 0.2);
  color: #b8ff5a;
  font-size: 0.7rem;
  font-style: normal;
}
