:root {
  color-scheme: light;
  --ink: oklch(0.17 0.035 181);
  --muted: oklch(0.43 0.035 181);
  --paper: oklch(1 0 0);
  --wash: oklch(0.98 0.008 181);
  --surface: oklch(0.965 0.014 181);
  --line: oklch(0.88 0.02 181);
  --green: oklch(0.33 0.1 174);
  --green-2: oklch(0.42 0.11 174);
  --petrol: oklch(0.34 0.095 223);
  --lime: oklch(0.86 0.17 132);
  --amber: oklch(0.72 0.16 58);
  --danger: oklch(0.58 0.18 28);
  --radius: 10px;
  --max: 1180px;
  --z-sticky: 20;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Avenir Next, Avenir, Manrope, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid color-mix(in oklch, var(--lime) 72%, white);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(var(--max), calc(100% - 32px));
  min-height: 74px;
  margin: 0 auto;
  background: color-mix(in oklch, var(--paper) 90%, transparent);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 850;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 9px;
  background: var(--green);
  color: var(--lime);
  font-size: 0.8rem;
  font-weight: 900;
}

.brand-name {
  color: var(--green);
  font-size: 1.08rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  border-radius: 8px;
  padding: 10px 13px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 760;
}

.site-nav a:hover,
.site-nav a.is-active {
  background: var(--surface);
  color: var(--green);
}

.site-nav .nav-cta {
  margin-left: 6px;
  background: var(--green);
  color: var(--paper);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta.is-active {
  background: oklch(0.27 0.09 174);
  color: var(--paper);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--green);
}

.hero,
.page-hero,
.demo-page {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.hero-home {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(600px, 1.1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  min-height: calc(100vh - 74px);
  padding: 38px 0 76px;
}

.signal {
  display: inline-flex;
  align-items: center;
  margin: 0 0 16px;
  color: var(--green-2);
  font-size: 0.94rem;
  font-weight: 850;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1,
h2 {
  margin: 0;
  color: var(--ink);
  font-weight: 860;
  letter-spacing: 0;
  line-height: 1.03;
  text-wrap: balance;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(3.1rem, 6.5vw, 5.85rem);
}

.hero-lede,
.page-hero p,
.demo-intro p,
.story-copy p,
.showcase-copy p,
.section-head > p:not(.signal),
.final-cta p,
.pricing-callout p {
  color: var(--muted);
  font-size: clamp(1.04rem, 1.5vw, 1.2rem);
}

.hero-lede {
  max-width: 650px;
  margin: 24px 0 0;
}

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

.center-actions {
  justify-content: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 13px 18px;
  font-weight: 850;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

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

.button.primary {
  background: var(--green);
  color: var(--paper);
}

.button.primary:hover {
  background: oklch(0.27 0.09 174);
}

.button.secondary {
  border-color: var(--line);
  background: var(--paper);
  color: var(--green);
}

.hero-trust {
  display: grid;
  gap: 4px;
  max-width: 610px;
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.hero-trust strong {
  color: var(--ink);
}

.product-stage {
  position: relative;
  min-height: 620px;
}

.browser-window,
.panel-screenshot,
.listing-preview,
.automation-board,
.kanban-panel,
.demo-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--wash);
}

.browser-window {
  overflow: hidden;
  min-height: 590px;
}

.browser-top {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 42px;
  padding: 0 14px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.browser-top span {
  width: 10px;
  height: 10px;
  border-radius: 99px;
  background: var(--line);
}

.browser-top span:first-child {
  background: var(--danger);
}

.browser-top span:nth-child(2) {
  background: var(--amber);
}

.browser-top span:nth-child(3) {
  background: var(--lime);
}

.browser-top strong {
  margin-left: 10px;
  color: var(--muted);
  font-size: 0.78rem;
}

.crm-layout {
  display: grid;
  grid-template-columns: 172px minmax(0, 1fr);
  min-height: 548px;
}

.crm-menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px 14px;
  background: var(--green);
  color: oklch(1 0 0 / 0.82);
}

.crm-menu b {
  margin-bottom: 18px;
  color: var(--paper);
}

.crm-menu span {
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  padding: 10px 9px;
  font-size: 0.84rem;
  font-weight: 760;
}

.crm-menu span.active {
  background: oklch(0.86 0.17 132 / 0.16);
  color: var(--lime);
}

.crm-main {
  padding: 20px;
}

.crm-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}

.crm-head small,
.panel-title span,
.lead-card span,
.property-row small,
.listing-preview small,
.dashboard-columns small,
.work-queue span,
.kanban-panel span,
.automation-board span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 820;
}

.crm-head h2 {
  margin: 3px 0 0;
  font-size: 1.65rem;
}

.crm-head button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  border-radius: 8px;
  padding: 10px 12px;
  background: var(--green);
  color: var(--paper);
  font-size: 0.84rem;
  font-weight: 850;
}

.opportunity-board,
.dashboard-columns,
.price-grid,
.entity-grid,
.feature-list {
  display: grid;
  gap: 14px;
}

.opportunity-board {
  grid-template-columns: repeat(2, 1fr);
  margin: 20px 0 14px;
}

.lead-card,
.property-row,
.dashboard-columns article,
.work-queue,
.feature-list article,
.entity-grid article,
.compare-table > div,
.price-card,
.url-map article {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
}

.lead-card {
  padding: 16px;
}

.lead-card.hot {
  background: color-mix(in oklch, var(--lime) 16%, white);
}

.lead-card strong,
.lead-card p {
  display: block;
  margin-top: 6px;
}

.lead-card p {
  min-height: 48px;
  color: var(--muted);
  font-size: 0.9rem;
}

meter {
  width: 100%;
  height: 10px;
  margin-top: 8px;
}

.property-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  overflow: hidden;
}

.property-row img {
  width: 100%;
  height: 170px;
  object-fit: cover;
}

.property-row div {
  padding: 18px;
}

.property-row h3,
.listing-preview h2 {
  margin: 5px 0 8px;
  font-size: 1.35rem;
}

.property-row p,
.listing-preview p {
  margin: 0;
  color: var(--muted);
}

.phone-window {
  position: absolute;
  right: -8px;
  bottom: 26px;
  display: grid;
  gap: 10px;
  width: 190px;
  border: 7px solid var(--ink);
  border-radius: 26px;
  padding: 16px;
  background: var(--paper);
}

.phone-notch {
  width: 58px;
  height: 5px;
  margin: 0 auto 4px;
  border-radius: 99px;
  background: var(--line);
}

.phone-task {
  border-radius: 8px;
  padding: 10px;
  background: var(--surface);
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 850;
}

.phone-task.done {
  background: color-mix(in oklch, var(--lime) 24%, white);
}

.portal-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 20px 0;
  border-block: 1px solid var(--line);
}

.portal-strip span,
.mini-prices span,
.seo-tags span,
.url-map b {
  border-radius: 8px;
  background: var(--surface);
  color: var(--green);
  font-weight: 850;
}

.portal-strip span {
  padding: 9px 12px;
  font-size: 0.9rem;
}

.section {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(68px, 8vw, 108px) 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 26px;
  margin-bottom: 30px;
}

.section-head.center {
  display: block;
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.section h2,
.page-hero h1,
.demo-page h1 {
  font-size: clamp(2.2rem, 4.5vw, 4.7rem);
}

.section h2 {
  max-width: 820px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 8px;
  color: var(--green);
  font-weight: 850;
}

.story-grid,
.split-showcase,
.pricing-preview,
.final-cta,
.page-hero,
.demo-page {
  display: grid;
  gap: clamp(28px, 5vw, 58px);
}

.story-grid {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
}

.data-loop {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--wash);
}

.data-loop span {
  border-radius: 8px;
  padding: 12px 14px;
  background: var(--paper);
  color: var(--green);
  font-weight: 850;
}

.data-loop svg {
  color: var(--muted);
}

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

.feature-list article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  padding: 22px;
}

.feature-list svg,
.entity-grid svg {
  color: var(--green-2);
}

.feature-list h3,
.entity-grid h3,
.price-card h2 {
  margin: 0 0 8px;
  font-size: 1.22rem;
}

.feature-list p,
.entity-grid p,
.price-card p {
  margin: 0;
  color: var(--muted);
}

.split-showcase {
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
}

.showcase-media,
.listing-preview {
  overflow: hidden;
}

.showcase-media img,
.listing-preview img {
  width: 100%;
  object-fit: cover;
}

.showcase-media img {
  height: 430px;
  border-radius: var(--radius);
}

.seo-tags {
  display: grid;
  gap: 8px;
  max-width: 560px;
  margin: -52px 20px 0;
  position: relative;
}

.seo-tags span {
  padding: 10px 12px;
  background: color-mix(in oklch, var(--paper) 94%, transparent);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.showcase-copy p {
  margin: 18px 0 0;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--ink);
}

.check-list svg {
  flex: 0 0 auto;
  margin-top: 2px;
  color: var(--green);
}

.process-rail {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin-top: 30px;
}

.process-rail article {
  display: grid;
  min-height: 96px;
  place-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--wash);
  color: var(--green);
  font-weight: 850;
}

.compare-table {
  display: grid;
  gap: 10px;
}

.compare-table > div {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px;
}

.compare-table span {
  color: var(--muted);
}

.compare-table b {
  color: var(--green);
}

.pricing-preview,
.final-cta {
  grid-template-columns: 1fr auto;
  align-items: center;
  border-block: 1px solid var(--line);
}

.pricing-callout h2,
.final-cta h2 {
  max-width: 860px;
}

.mini-prices {
  display: grid;
  gap: 10px;
  min-width: 230px;
}

.mini-prices span {
  padding: 12px;
  background: var(--wash);
}

.mini-prices .recommended {
  background: var(--green);
  color: var(--paper);
}

.page-hero {
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  min-height: 560px;
  padding: 46px 0 76px;
}

.page-hero.narrow {
  display: block;
  max-width: 880px;
  min-height: auto;
  padding-top: 72px;
  text-align: center;
}

.panel-screenshot {
  padding: 22px;
}

.panel-title {
  display: flex;
  justify-content: space-between;
  margin-bottom: 18px;
}

.dashboard-columns {
  grid-template-columns: repeat(3, 1fr);
}

.dashboard-columns article {
  padding: 16px;
}

.dashboard-columns strong {
  display: block;
  margin: 5px 0;
  color: var(--green);
  font-size: 2rem;
  line-height: 1;
}

.dashboard-columns span,
.work-queue span {
  display: block;
}

.work-queue {
  display: grid;
  gap: 8px;
  margin-top: 14px;
  padding: 16px;
}

.entity-grid {
  grid-template-columns: repeat(3, 1fr);
}

.entity-grid article {
  padding: 22px;
}

.kanban-panel {
  display: grid;
  gap: 12px;
  padding: 18px;
  background: var(--green);
}

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

.kanban-panel article {
  display: grid;
  gap: 6px;
  border-radius: 9px;
  padding: 18px;
  background: var(--paper);
}

.kanban-panel b {
  color: var(--ink);
}

.kanban-panel small {
  color: var(--muted);
}

.listing-preview {
  background: var(--paper);
}

.listing-preview img {
  height: 340px;
}

.listing-preview div {
  padding: 22px;
}

.url-map {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.url-map article {
  display: grid;
  gap: 8px;
  padding: 18px;
}

.url-map b {
  display: block;
  padding: 11px 12px;
}

.url-map span {
  color: var(--muted);
}

.automation-board {
  display: grid;
  gap: 12px;
  padding: 20px;
  background: var(--petrol);
}

.automation-board article {
  display: grid;
  gap: 5px;
  border-radius: 9px;
  padding: 18px;
  background: var(--paper);
}

.compact-list {
  max-width: 980px;
  margin: 0 auto;
}

.pricing-page {
  padding-top: 20px;
}

.price-grid {
  grid-template-columns: repeat(4, 1fr);
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 24px;
}

.price-card.featured {
  background: var(--green);
  color: var(--paper);
}

.price-card.featured p,
.price-card.featured li {
  color: oklch(1 0 0 / 0.82);
}

.price-card.featured .button.primary {
  background: var(--lime);
  color: var(--ink);
}

.badge {
  align-self: flex-start;
  border-radius: 999px;
  padding: 6px 10px;
  background: var(--lime);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
}

.price {
  margin: 0;
}

.price strong {
  color: inherit;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
}

.price span {
  color: var(--muted);
}

.price-card.featured .price span {
  color: oklch(1 0 0 / 0.82);
}

.price-card ul {
  display: grid;
  gap: 9px;
  margin: 0 0 6px;
  padding-left: 20px;
  color: var(--muted);
}

.price-card .button {
  margin-top: auto;
}

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

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--wash);
}

.faq-list summary {
  cursor: pointer;
  padding: 18px;
  color: var(--ink);
  font-weight: 850;
}

.faq-list p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
}

.demo-page {
  grid-template-columns: minmax(0, 0.85fr) minmax(460px, 1.15fr);
  align-items: start;
  padding: 70px 0 96px;
}

.demo-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 28px;
}

.demo-points span {
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  padding: 11px 12px;
  background: var(--surface);
  color: var(--green);
  font-weight: 850;
}

.demo-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding: 24px;
  background: var(--wash);
}

.demo-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 820;
}

.demo-form input,
.demo-form select,
.demo-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: var(--paper);
  color: var(--ink);
}

.demo-form textarea {
  resize: vertical;
}

.demo-form ::placeholder {
  color: oklch(0.46 0.035 181);
}

.full {
  grid-column: 1 / -1;
}

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--green);
  font-weight: 850;
}

.site-footer {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 30px 0 42px;
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
  color: var(--muted);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  gap: 14px;
  color: var(--green);
  font-weight: 760;
}

@media (max-width: 980px) {
  .hero-home,
  .page-hero,
  .demo-page,
  .story-grid,
  .split-showcase,
  .pricing-preview,
  .final-cta {
    grid-template-columns: 1fr;
  }

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

  .product-stage {
    min-height: 600px;
  }

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

  .process-rail {
    grid-template-columns: repeat(3, 1fr);
  }

  .compare-table > div {
    grid-template-columns: 1fr;
  }

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

  .site-footer nav {
    justify-content: start;
  }
}

@media (max-width: 760px) {
  .site-header {
    width: min(100% - 24px, var(--max));
  }

  .nav-toggle {
    display: grid;
    place-items: center;
  }

  .site-nav {
    position: fixed;
    inset: 74px 12px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 10px;
    background: var(--paper);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav .nav-cta {
    margin-left: 0;
    text-align: center;
  }

  .hero,
  .page-hero,
  .demo-page,
  .section,
  .portal-strip,
  .site-footer {
    width: min(100% - 24px, var(--max));
  }

  .hero h1,
  .page-hero h1,
  .demo-page h1 {
    font-size: clamp(2.45rem, 13vw, 4.2rem);
  }

  .product-stage {
    min-height: auto;
  }

  .browser-window {
    min-height: auto;
  }

  .crm-layout,
  .property-row,
  .dashboard-columns,
  .feature-list,
  .url-map,
  .demo-form,
  .demo-points,
  .kanban-panel.wide {
    grid-template-columns: 1fr;
  }

  .crm-menu {
    display: none;
  }

  .crm-head {
    align-items: start;
    flex-direction: column;
  }

  .opportunity-board,
  .price-grid,
  .entity-grid {
    grid-template-columns: 1fr;
  }

  .property-row img,
  .listing-preview img,
  .showcase-media img {
    height: 260px;
  }

  .phone-window {
    position: static;
    width: 100%;
    margin-top: 14px;
    border-width: 4px;
    border-radius: 18px;
  }

  .section-head {
    display: block;
  }

  .section-head .text-link {
    margin-top: 14px;
  }

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

  .pricing-preview,
  .final-cta {
    align-items: start;
  }
}

@media (max-width: 460px) {
  .hero-actions,
  .button {
    width: 100%;
  }

  .process-rail {
    grid-template-columns: 1fr;
  }

  .portal-strip {
    justify-content: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

/* Minimal commercial direction inspired by the Spanish real-estate SaaS category. */
:root {
  --ink: oklch(0.21 0.035 238);
  --muted: oklch(0.47 0.032 238);
  --paper: oklch(1 0 0);
  --wash: oklch(0.985 0.006 238);
  --surface: oklch(0.972 0.01 238);
  --line: oklch(0.9 0.018 238);
  --green: oklch(0.43 0.13 205);
  --green-2: oklch(0.51 0.13 205);
  --petrol: oklch(0.33 0.07 238);
  --lime: oklch(0.76 0.13 152);
  --amber: oklch(0.72 0.14 68);
  --danger: oklch(0.61 0.16 28);
  --radius: 12px;
  --max: 1160px;
}

body {
  background:
    linear-gradient(180deg, oklch(0.985 0.008 238) 0, var(--paper) 460px),
    var(--paper);
}

.site-header {
  width: min(1180px, calc(100% - 40px));
  min-height: 78px;
  border-bottom: 1px solid color-mix(in oklch, var(--line) 72%, transparent);
  background: color-mix(in oklch, var(--paper) 94%, transparent);
}

.brand {
  gap: 9px;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--green);
  color: var(--paper);
  font-size: 0.72rem;
}

.brand-name {
  color: var(--ink);
  font-size: 1rem;
  letter-spacing: 0;
}

.site-nav {
  gap: 2px;
}

.site-nav a {
  padding: 9px 12px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 720;
}

.site-nav a:hover,
.site-nav a.is-active {
  background: transparent;
  color: var(--green);
}

.site-nav .nav-cta {
  margin-left: 10px;
  border: 1px solid var(--green);
  background: var(--paper);
  color: var(--green);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta.is-active {
  background: var(--green);
  color: var(--paper);
}

.hero-home {
  grid-template-columns: 1fr;
  gap: 42px;
  min-height: auto;
  padding: clamp(58px, 8vw, 104px) 0 64px;
}

.hero-copy {
  display: grid;
  justify-items: center;
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.signal {
  margin-bottom: 14px;
  color: var(--green);
  font-size: 0.9rem;
  font-weight: 760;
}

.hero h1 {
  max-width: 960px;
  font-size: clamp(2.7rem, 6.2vw, 5.2rem);
  line-height: 1.06;
}

.hero-lede {
  max-width: 760px;
  margin-top: 22px;
  font-size: clamp(1.08rem, 1.8vw, 1.28rem);
}

.hero-actions {
  justify-content: center;
  margin-top: 28px;
}

.button {
  min-height: 46px;
  border-radius: 8px;
  padding: 12px 17px;
  font-weight: 780;
}

.button.primary {
  background: var(--green);
  color: var(--paper);
}

.button.primary:hover {
  background: oklch(0.36 0.12 205);
}

.button.secondary {
  border-color: color-mix(in oklch, var(--green) 34%, var(--line));
  background: var(--paper);
  color: var(--green);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 10px;
  max-width: 760px;
  margin-top: 24px;
  padding-top: 0;
  border-top: 0;
  font-size: 0.95rem;
}

.hero-trust span {
  color: var(--muted);
}

.product-stage {
  width: min(1040px, 100%);
  min-height: auto;
  margin: 0 auto;
}

.browser-window,
.panel-screenshot,
.listing-preview,
.automation-board,
.kanban-panel,
.demo-form {
  border-color: var(--line);
  border-radius: 14px;
  background: var(--paper);
}

.browser-window {
  min-height: auto;
  background: var(--paper);
  box-shadow: 0 8px 8px oklch(0.3 0.04 238 / 0.06);
}

.browser-top {
  min-height: 40px;
  background: var(--wash);
}

.browser-top strong {
  font-size: 0.76rem;
  font-weight: 720;
}

.crm-layout {
  grid-template-columns: 164px minmax(0, 1fr);
  min-height: 440px;
}

.crm-menu {
  border-right: 1px solid var(--line);
  background: var(--paper);
  color: var(--muted);
}

.crm-menu b {
  color: var(--ink);
}

.crm-menu span {
  color: var(--muted);
  font-weight: 700;
}

.crm-menu span.active {
  background: var(--surface);
  color: var(--green);
}

.crm-main {
  background: var(--wash);
}

.crm-head h2 {
  font-size: 1.45rem;
}

.crm-head button {
  border: 1px solid color-mix(in oklch, var(--green) 26%, var(--line));
  background: var(--paper);
  color: var(--green);
}

.lead-card,
.property-row,
.dashboard-columns article,
.work-queue,
.feature-list article,
.entity-grid article,
.compare-table > div,
.price-card,
.url-map article,
.data-loop {
  border-color: var(--line);
  border-radius: 12px;
  background: var(--paper);
}

.lead-card.hot,
.phone-task.done {
  background: color-mix(in oklch, var(--green) 8%, white);
}

.lead-card p {
  min-height: auto;
}

.phone-window {
  right: 18px;
  bottom: -22px;
  width: 176px;
  border-width: 5px;
  border-color: var(--ink);
  border-radius: 22px;
  box-shadow: 0 8px 8px oklch(0.3 0.04 238 / 0.08);
}

.portal-strip {
  gap: 10px;
  padding: 24px 0 18px;
  border-block: 0;
}

.portal-strip span,
.mini-prices span,
.seo-tags span,
.url-map b {
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--muted);
  font-weight: 720;
}

.section {
  padding: clamp(62px, 8vw, 96px) 0;
}

.section-head {
  margin-bottom: 26px;
}

.section h2,
.page-hero h1,
.demo-page h1 {
  font-size: clamp(2rem, 4.2vw, 4rem);
  line-height: 1.08;
}

.story-grid,
.split-showcase,
.page-hero,
.demo-page {
  gap: clamp(30px, 6vw, 70px);
}

.story-grid {
  border-top: 1px solid var(--line);
}

.data-loop {
  justify-content: center;
  padding: 18px;
  background: var(--wash);
}

.data-loop span {
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  font-weight: 740;
}

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

.feature-list article {
  border-width: 0 0 1px;
  border-radius: 0;
  padding: 24px 8px;
  background: transparent;
}

.feature-list svg,
.entity-grid svg,
.check-list svg,
.process-rail svg {
  color: var(--green);
}

.feature-list h3,
.entity-grid h3,
.price-card h2 {
  font-size: 1.12rem;
}

.showcase-media img {
  height: 390px;
  border-radius: 14px;
}

.seo-tags {
  max-width: 520px;
  margin: 14px 0 0;
}

.process-rail {
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: var(--paper);
}

.process-rail article {
  min-height: 92px;
  border-width: 0 1px 0 0;
  border-radius: 0;
  background: var(--paper);
  color: var(--ink);
}

.process-rail article:last-child {
  border-right: 0;
}

.compare-table {
  border-top: 1px solid var(--line);
}

.compare-table > div {
  border-width: 0 0 1px;
  border-radius: 0;
  padding: 22px 0;
  background: transparent;
}

.pricing-preview,
.final-cta {
  border-block: 1px solid var(--line);
}

.mini-prices span {
  padding: 11px 12px;
}

.mini-prices .recommended {
  border-color: var(--green);
  background: var(--green);
  color: var(--paper);
}

.page-hero {
  min-height: 520px;
}

.panel-screenshot {
  background: var(--wash);
}

.dashboard-columns article,
.work-queue,
.entity-grid article,
.url-map article {
  background: var(--paper);
}

.entity-grid {
  gap: 0;
  border-top: 1px solid var(--line);
}

.entity-grid article {
  border-width: 0 0 1px;
  border-radius: 0;
  padding: 24px 18px;
}

.kanban-panel,
.automation-board {
  border-color: var(--line);
  background: var(--wash);
}

.kanban-panel article,
.automation-board article {
  border: 1px solid var(--line);
}

.price-grid {
  gap: 16px;
}

.price-card {
  gap: 16px;
  padding: 24px;
}

.price-card.featured {
  border-color: var(--green);
  background: color-mix(in oklch, var(--green) 7%, white);
  color: var(--ink);
}

.price-card.featured p,
.price-card.featured li,
.price-card.featured .price span {
  color: var(--muted);
}

.price-card.featured .button.primary {
  background: var(--green);
  color: var(--paper);
}

.badge {
  background: var(--green);
  color: var(--paper);
}

.faq-list details {
  background: var(--paper);
}

.demo-form {
  background: var(--paper);
}

.demo-points span {
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--green);
}

.site-footer {
  padding-top: 34px;
}

@media (max-width: 980px) {
  .hero-copy {
    text-align: left;
    justify-items: start;
  }

  .hero-actions,
  .hero-trust {
    justify-content: start;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }

  .process-rail {
    border-bottom: 0;
  }

  .process-rail article {
    border-width: 0 0 1px;
  }
}

@media (max-width: 760px) {
  .site-header {
    width: min(100% - 24px, var(--max));
  }

  .site-nav {
    border-radius: 12px;
    background: var(--paper);
  }

  .hero-home {
    padding-top: 42px;
  }

  .crm-layout {
    grid-template-columns: 1fr;
  }

  .phone-window {
    right: auto;
    bottom: auto;
  }
}

/* Apple-inspired quiet system: product first, low chrome, generous air. */
:root {
  --ink: oklch(0.18 0.006 255);
  --muted: oklch(0.43 0.006 255);
  --paper: oklch(1 0 0);
  --wash: oklch(0.965 0.003 255);
  --surface: oklch(0.94 0.004 255);
  --line: oklch(0.86 0.004 255);
  --green: oklch(0.55 0.18 250);
  --green-2: oklch(0.47 0.16 250);
  --petrol: oklch(0.22 0.01 255);
  --lime: oklch(0.64 0.15 245);
  --max: 1180px;
}

body {
  background: var(--wash);
  color: var(--ink);
  font-family:
    -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", Avenir Next, Avenir, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.site-header {
  width: 100%;
  min-height: 52px;
  padding: 0 clamp(18px, 4vw, 44px);
  border-bottom: 0;
  background: oklch(0.985 0.002 255 / 0.86);
  backdrop-filter: saturate(180%) blur(20px);
}

.brand-mark {
  display: none;
}

.brand-name {
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 650;
}

.site-nav {
  gap: clamp(10px, 2vw, 24px);
}

.site-nav a {
  padding: 4px 0;
  border-radius: 0;
  color: oklch(0.34 0.004 255);
  font-size: 0.82rem;
  font-weight: 430;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--ink);
}

.site-nav .nav-cta {
  margin-left: 0;
  border: 0;
  background: transparent;
  color: var(--green);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta.is-active {
  background: transparent;
  color: oklch(0.48 0.17 250);
}

.hero,
.page-hero,
.demo-page,
.section,
.portal-strip,
.site-footer {
  width: min(100% - 32px, 1280px);
}

.hero-home {
  gap: clamp(34px, 6vw, 76px);
  padding: clamp(56px, 10vw, 118px) 0 14px;
}

.hero-copy,
.page-hero.narrow,
.section-head.center,
.thanks-hero {
  text-align: center;
}

.hero-copy {
  max-width: 980px;
}

.signal {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: clamp(1.06rem, 1.8vw, 1.45rem);
  font-weight: 560;
}

.hero h1 {
  max-width: 1080px;
  font-size: clamp(3.35rem, 8.6vw, 6rem);
  font-weight: 760;
  letter-spacing: -0.035em;
  line-height: 0.96;
}

.section h2,
.page-hero h1,
.demo-page h1 {
  font-size: clamp(2.55rem, 6vw, 5.6rem);
  font-weight: 740;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.hero-lede,
.page-hero p,
.demo-intro p,
.story-copy p,
.showcase-copy p,
.section-head > p:not(.signal),
.final-cta p,
.pricing-callout p {
  color: var(--muted);
  font-size: clamp(1.2rem, 2.3vw, 1.8rem);
  font-weight: 430;
  line-height: 1.22;
}

.hero-lede {
  max-width: 820px;
}

.hero-actions {
  gap: 18px;
  margin-top: 26px;
}

.button {
  min-height: 42px;
  border-radius: 999px;
  padding: 10px 19px;
  font-size: 1rem;
  font-weight: 520;
}

.button.primary {
  background: var(--green);
  color: var(--paper);
}

.button.secondary {
  border: 0;
  background: transparent;
  color: var(--green);
  padding-inline: 0;
}

.button.secondary::after,
.text-link::after {
  content: ">";
  margin-left: -4px;
}

.button.secondary svg,
.text-link svg {
  display: none;
}

.hero-trust {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-trust strong {
  color: var(--muted);
  font-weight: 430;
}

.product-stage {
  width: min(1120px, 100%);
  padding: 0 0 clamp(28px, 6vw, 72px);
}

.browser-window {
  border: 0;
  border-radius: 8px;
  background: var(--paper);
  box-shadow:
    0 1px 0 oklch(0 0 0 / 0.05),
    0 8px 8px oklch(0 0 0 / 0.04);
}

.browser-top {
  min-height: 34px;
  border-bottom: 1px solid oklch(0.9 0.003 255);
  background: oklch(0.975 0.003 255);
}

.crm-layout {
  min-height: 430px;
}

.crm-menu {
  background: oklch(0.985 0.003 255);
}

.crm-menu span.active,
.lead-card.hot,
.phone-task.done {
  background: oklch(0.94 0.02 250);
  color: var(--green);
}

.crm-main {
  background: oklch(0.975 0.003 255);
}

.crm-head h2 {
  font-weight: 720;
  letter-spacing: -0.02em;
}

.crm-head button {
  border: 0;
  background: transparent;
  color: var(--green);
  padding-inline: 0;
}

.lead-card,
.property-row,
.dashboard-columns article,
.work-queue,
.entity-grid article,
.compare-table > div,
.price-card,
.url-map article,
.demo-form,
.faq-list details {
  border-color: oklch(0.89 0.004 255);
  border-radius: 8px;
}

.phone-window {
  border-color: oklch(0.14 0.003 255);
  background: oklch(0.995 0 0);
}

.portal-strip {
  padding: 22px 0 56px;
}

.portal-strip span {
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 430;
}

.section {
  padding: clamp(58px, 9vw, 118px) 0;
}

.story-grid,
.function-led,
.process-section,
.compare-section,
.pricing-preview,
.final-cta,
.entity-section,
.seo-architecture,
.faq-section,
.pricing-page {
  width: min(100% - 32px, 1280px);
  border-radius: 8px;
  background: var(--paper);
  padding-inline: clamp(20px, 5vw, 68px);
}

.story-grid {
  border-top: 0;
}

.section-head {
  display: grid;
  justify-items: start;
  gap: 14px;
  margin-bottom: clamp(28px, 5vw, 56px);
}

.section-head.center {
  justify-items: center;
}

.text-link {
  color: var(--green);
  font-weight: 520;
}

.data-loop,
.feature-list,
.entity-grid,
.compare-table {
  border-top: 0;
}

.data-loop {
  background: oklch(0.965 0.003 255);
}

.data-loop span {
  border: 0;
  background: var(--paper);
}

.feature-list {
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: oklch(0.9 0.004 255);
}

.feature-list article {
  border: 0;
  padding: clamp(24px, 4vw, 42px);
  background: var(--paper);
}

.feature-list h3,
.entity-grid h3,
.price-card h2 {
  font-size: 1.35rem;
  font-weight: 680;
  letter-spacing: -0.015em;
}

.feature-list p,
.entity-grid p,
.price-card p,
.compare-table span,
.url-map span,
.faq-list p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.45;
}

.split-showcase {
  width: min(100% - 32px, 1280px);
  border-radius: 8px;
  background: var(--paper);
  padding: clamp(20px, 5vw, 68px);
}

.showcase-media img,
.listing-preview img {
  border-radius: 8px;
  filter: saturate(0.95);
}

.seo-tags span,
.url-map b,
.mini-prices span {
  border: 0;
  background: oklch(0.955 0.004 255);
  color: var(--ink);
  font-weight: 520;
}

.process-rail {
  border: 0;
  border-radius: 0;
  background: transparent;
}

.process-rail article {
  min-height: 116px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 560;
}

.compare-table > div {
  border-color: oklch(0.9 0.004 255);
  padding: 26px 0;
}

.compare-table b {
  color: var(--ink);
  font-weight: 620;
}

.pricing-preview,
.final-cta {
  grid-template-columns: 1fr;
  justify-items: center;
  border-block: 0;
  text-align: center;
}

.mini-prices {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(820px, 100%);
}

.mini-prices .recommended {
  background: var(--ink);
}

.page-hero,
.demo-page {
  min-height: auto;
  padding: clamp(62px, 10vw, 128px) 0 clamp(40px, 7vw, 88px);
}

.panel-screenshot,
.listing-preview,
.automation-board,
.kanban-panel,
.demo-form {
  border: 0;
  background: var(--paper);
  box-shadow: 0 1px 0 oklch(0 0 0 / 0.06);
}

.entity-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: oklch(0.9 0.004 255);
}

.entity-grid article {
  border: 0;
  padding: clamp(26px, 4vw, 44px);
  background: var(--paper);
}

.kanban-panel,
.automation-board {
  background: oklch(0.955 0.004 255);
}

.price-grid {
  gap: 1px;
  border-radius: 8px;
  overflow: hidden;
  background: oklch(0.9 0.004 255);
}

.price-card {
  border: 0;
  border-radius: 0;
  background: var(--paper);
  padding: clamp(24px, 4vw, 42px);
}

.price-card.featured {
  background: oklch(0.955 0.012 250);
}

.badge {
  background: var(--green);
  color: var(--paper);
  font-weight: 560;
}

.price strong {
  font-weight: 720;
  letter-spacing: -0.035em;
}

.faq-list details {
  border-width: 0 0 1px;
  border-radius: 0;
  background: transparent;
}

.demo-page {
  align-items: center;
}

.demo-points span,
.demo-form input,
.demo-form select,
.demo-form textarea {
  border-radius: 8px;
}

.demo-form {
  padding: clamp(24px, 4vw, 42px);
}

.site-footer {
  border-top: 0;
  color: var(--muted);
}

@media (max-width: 980px) {
  .feature-list,
  .entity-grid,
  .price-grid,
  .mini-prices {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    justify-items: center;
    text-align: center;
  }

  .hero-actions,
  .hero-trust {
    justify-content: center;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 56px;
    padding-inline: 14px;
  }

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

  .site-nav {
    inset: 56px 12px auto;
    gap: 0;
    border: 0;
    background: oklch(0.985 0.002 255);
  }

  .site-nav a {
    padding: 13px 6px;
  }

  .hero h1,
  .section h2,
  .page-hero h1,
  .demo-page h1 {
    font-size: clamp(2.65rem, 14vw, 4.4rem);
  }

  .story-grid,
  .function-led,
  .process-section,
  .compare-section,
  .pricing-preview,
  .final-cta,
  .entity-section,
  .seo-architecture,
  .faq-section,
  .pricing-page,
  .split-showcase {
    width: min(100% - 20px, 1280px);
    padding-inline: 18px;
  }

  .button.secondary {
    width: auto;
  }
}

.apple-aspects,
.aspect-hub,
.aspect-detail,
.aspect-next {
  width: min(100% - 32px, 1280px);
  border-radius: 8px;
  background: var(--paper);
}

.apple-aspects {
  padding-inline: clamp(20px, 5vw, 68px);
}

.aspect-links,
.aspect-hub,
.aspect-detail,
.aspect-next {
  display: grid;
  gap: 1px;
  overflow: hidden;
  background: oklch(0.9 0.004 255);
}

.aspect-links {
  grid-template-columns: repeat(3, 1fr);
  border-radius: 8px;
}

.aspect-links a,
.aspect-hub a,
.aspect-detail > div,
.aspect-next a {
  background: var(--paper);
}

.aspect-links a {
  padding: clamp(20px, 3vw, 34px);
  color: var(--ink);
  font-size: clamp(1.12rem, 2vw, 1.48rem);
  font-weight: 650;
  letter-spacing: -0.02em;
}

.aspect-links a:hover,
.aspect-hub a:hover,
.aspect-next a:hover {
  color: var(--green);
}

.aspect-hero {
  display: grid;
  justify-items: center;
  width: min(100% - 32px, 1080px);
  margin: 0 auto;
  padding: clamp(68px, 12vw, 148px) 0 clamp(42px, 8vw, 88px);
  text-align: center;
}

.aspect-hero h1 {
  max-width: 1000px;
  margin: 0;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 760;
  letter-spacing: -0.035em;
  line-height: 0.96;
  text-wrap: balance;
}

.aspect-hero p:last-child {
  max-width: 780px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.18rem, 2.4vw, 1.75rem);
  line-height: 1.22;
}

.aspect-hub {
  grid-template-columns: repeat(3, 1fr);
  padding: 0;
}

.aspect-hub a {
  display: grid;
  align-content: start;
  min-height: 260px;
  padding: clamp(24px, 4vw, 44px);
}

.aspect-hub span {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 520;
}

.aspect-hub strong {
  margin-top: 0;
  color: var(--ink);
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  font-weight: 720;
  letter-spacing: -0.03em;
  line-height: 1.04;
}

.aspect-hub p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.45;
}

.aspect-detail {
  grid-template-columns: repeat(2, 1fr);
  padding: 0;
}

.aspect-detail > div {
  min-height: 250px;
  padding: clamp(26px, 5vw, 56px);
}

.aspect-detail h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3.4vw, 3.4rem);
  font-weight: 720;
  letter-spacing: -0.035em;
  line-height: 1;
}

.aspect-detail p {
  max-width: 58ch;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  line-height: 1.38;
}

.aspect-next {
  grid-template-columns: repeat(2, 1fr);
  padding: 0;
}

.aspect-next a {
  display: grid;
  min-height: 112px;
  place-items: center;
  padding: 20px;
  color: var(--green);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 560;
  text-align: center;
}

@media (max-width: 980px) {
  .aspect-links,
  .aspect-hub,
  .aspect-detail {
    grid-template-columns: 1fr;
  }

  .aspect-hub a {
    min-height: 220px;
  }
}

@media (max-width: 760px) {
  .apple-aspects,
  .aspect-hub,
  .aspect-detail,
  .aspect-next {
    width: min(100% - 20px, 1280px);
  }

  .aspect-hero {
    width: min(100% - 24px, 1080px);
    justify-items: start;
    text-align: left;
  }

  .aspect-hero h1 {
    font-size: clamp(2.65rem, 14vw, 4.4rem);
  }

  .aspect-next {
    grid-template-columns: 1fr;
  }
}
