* {
  box-sizing: border-box;
}

:root {
  --bg: #e7edf6;
  --bg-alt: #f4f8ff;
  --surface: #ffffff;
  --surface-2: #f2f6fd;
  --text: #172033;
  --muted: #5f6d84;
  --line: #d4dbe6;
  --line-strong: #c4ccd9;
  --accent: #2563eb;
  --accent-dark: #1d4ed8;
  --accent-soft: #dbeafe;
  --content-max: 1320px;
  --page-gutter: clamp(14px, 3vw, 34px);
}

html,
body {
  margin: 0;
  min-height: 100%;
  overflow-x: clip;
}

body {
  font-family: "Segoe UI", "Inter", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(1300px 700px at 10% -10%, #f5fbff 0%, rgba(245, 251, 255, 0) 65%),
    radial-gradient(900px 580px at 96% 8%, #eef4ff 0%, rgba(238, 244, 255, 0) 67%),
    linear-gradient(180deg, #f4f8ff 0%, #e7edf6 52%, #e9eef7 100%);
}

.orb-field {
  position: fixed;
  inset: -18vh -12vw;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  opacity: 0.5;
  transform: translate3d(var(--tx, 0), var(--ty, 0), 0) scale(var(--scale, 1));
  transition: transform 0.35s ease-out;
  animation: orb-breathe var(--duration, 20s) ease-in-out infinite;
  background: radial-gradient(circle at 32% 24%, rgba(255, 255, 255, 0.84) 0%, rgba(255, 255, 255, 0.18) 52%, rgba(255, 255, 255, 0.02) 100%);
}

.orb-1 {
  width: 380px;
  height: 380px;
  left: 6%;
  top: 10%;
  --duration: 26s;
  background-color: rgba(122, 189, 255, 0.4);
}

.orb-2 {
  width: 460px;
  height: 460px;
  left: 58%;
  top: -4%;
  --duration: 30s;
  background-color: rgba(153, 220, 255, 0.3);
}

.orb-3 {
  width: 330px;
  height: 330px;
  left: 72%;
  top: 52%;
  --duration: 21s;
  background-color: rgba(120, 170, 255, 0.28);
}

.orb-4 {
  width: 300px;
  height: 300px;
  left: 10%;
  top: 58%;
  --duration: 22s;
  background-color: rgba(87, 181, 255, 0.22);
}

.orb-5 {
  width: 240px;
  height: 240px;
  left: 44%;
  top: 30%;
  --duration: 25s;
  background-color: rgba(180, 205, 255, 0.32);
}

@keyframes orb-breathe {
  0%,
  100% {
    filter: blur(0px);
  }
  50% {
    filter: blur(3px);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  padding: 12px 0;
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.header-content {
  width: 100%;
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: var(--page-gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.site-header,
main,
footer {
  position: relative;
  z-index: 1;
}

.brand-wrap {
  display: flex;
  align-items: center;
  gap: 9px;
}

.brand-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #10b981;
}

.brand-name {
  font-size: 1rem;
  font-weight: 700;
}

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

.site-nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.site-nav a:hover {
  color: var(--text);
}

.site-nav .nav-cta {
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
}

main {
  width: 100%;
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: var(--page-gutter);
  padding-bottom: 82px;
}

.hero {
  padding-top: clamp(36px, 8vw, 66px);
  padding-bottom: clamp(26px, 5vw, 46px);
}

.kicker,
.section-kicker {
  margin: 0;
  text-transform: none;
  letter-spacing: 0.01em;
  font-size: 0.9rem;
  font-weight: 650;
  color: #154193;
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid #c8dafd;
  background: linear-gradient(180deg, #eaf2ff, #dbeafe);
}

.hero h1 {
  margin: 12px 0 10px;
  font-size: clamp(2rem, 4.4vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #0f2f6d;
}

.hero-text {
  margin: 0;
  max-width: 780px;
  color: var(--muted);
  line-height: 1.7;
  font-size: clamp(1rem, 1.55vw, 1.12rem);
}

.hero-actions {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.button {
  text-decoration: none;
  border-radius: 10px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 10px 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.button-primary {
  background: var(--accent);
  color: #fff;
}

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

.button-ghost {
  background: #fff;
  border-color: var(--line);
  color: var(--text);
}

.button-ghost:hover {
  border-color: var(--line-strong);
  background: #f9fbff;
}

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

.section-head h2 {
  margin: 8px 0 0;
  font-size: clamp(1.45rem, 3.2vw, 2.35rem);
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: #1a376e;
}

.problem {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-top: 3px solid #c8dafd;
  border-radius: 14px;
  padding: 20px;
  margin-top: clamp(20px, 4.5vw, 56px);
  backdrop-filter: blur(5px);
}

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

.problem-card {
  border: 1px solid #dbe2ec;
  border-radius: 10px;
  padding: 12px;
  background: var(--bg-alt);
}

.problem-card h3 {
  margin: 0 0 6px;
  font-size: 1rem;
}

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

.demo-section {
  margin-top: clamp(44px, 8vw, 96px);
}

.demo-layout {
  display: block;
}

.chrome-shell {
  border: 1px solid var(--line-strong);
  border-radius: 20px;
  overflow: hidden;
  background: #dfe8f6;
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.15);
  padding: 0;
}

.chrome-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  min-height: 1020px;
  border-radius: 18px;
  overflow: hidden;
}

.listing-preview {
  background: rgba(255, 255, 255, 0.94);
  border-right: 1px solid #cfd7e3;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 1020px;
  min-width: 0;
}

.listing-url {
  border: 1px solid #cfd7e3;
  border-radius: 999px;
  background: #fff;
  padding: 7px 11px;
  font-size: 0.76rem;
  color: #4b5563;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.listing-image {
  min-height: 360px;
  border: 1px solid #d2d9e4;
  border-radius: 12px;
  background: linear-gradient(130deg, #dce4f4, #b9c6df 50%, #8ea2c8);
  position: relative;
  overflow: hidden;
}

.listing-image::after {
  content: "Property screenshot preview";
  position: absolute;
  right: 10px;
  bottom: 10px;
  border: 1px solid rgba(31, 41, 55, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #4b5563;
  font-size: 0.7rem;
  padding: 4px 8px;
}

.listing-body h3 {
  margin: 0;
  font-size: 1.22rem;
}

.listing-body p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.listing-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.listing-tags span {
  border: 1px solid #d8dee8;
  border-radius: 999px;
  padding: 5px 9px;
  font-size: 0.75rem;
  color: #4b5563;
  background: #f7f9fc;
}

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

.listing-grid > div {
  border: 1px solid #dde3ec;
  border-radius: 10px;
  background: #fafbff;
  padding: 8px;
}

.listing-grid small {
  display: block;
  font-size: 0.69rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #6b7280;
  margin-bottom: 2px;
}

.listing-grid strong {
  font-size: 0.85rem;
}

.listing-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 2px;
}

.listing-reserve {
  min-height: 210px;
}

.listing-actions button {
  border: 1px solid #ccd4e1;
  border-radius: 9px;
  background: #fff;
  color: var(--text);
  padding: 9px 12px;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
}

.listing-actions button:hover:not(:disabled) {
  border-color: #9aa6ba;
  background: #f8fafc;
}

.listing-actions button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.embedded-panel {
  background: #f5f7fb;
  min-height: 1020px;
  min-width: 0;
}

#panel-frame {
  width: 100%;
  min-height: 1020px;
  height: 1020px;
  border: none;
  display: block;
  background: #fff;
}

.benefits,
.steps,
.cta-section {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-top: 3px solid #c8dafd;
  border-radius: 14px;
  padding: 20px;
  backdrop-filter: blur(5px);
}

.benefits {
  margin-top: clamp(62px, 10vw, 126px);
}

.steps {
  margin-top: clamp(34px, 6vw, 82px);
}

.cta-section {
  margin-top: clamp(52px, 8vw, 104px);
}

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

.benefit-card {
  border: 1px solid #dbe2ec;
  border-radius: 10px;
  background: #f8fafd;
  padding: 12px;
}

.benefit-card h3 {
  margin: 0 0 6px;
  font-size: 0.98rem;
}

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

.step-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.step-list li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 10px;
  align-items: start;
  border: 1px solid #dbe2ec;
  border-radius: 10px;
  background: #f8fafd;
  padding: 12px;
}

.step-number {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid #b8c6dd;
  background: #fff;
  color: var(--accent-dark);
  font-weight: 700;
  display: grid;
  place-items: center;
  font-size: 0.86rem;
}

.step-list h3 {
  margin: 0 0 4px;
  font-size: 0.98rem;
}

.step-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.88rem;
}

.cta-section {
  text-align: center;
}

.cta-section h2 {
  margin: 0;
  font-size: clamp(1.3rem, 2.5vw, 2rem);
}

.cta-section p {
  margin: 10px 0 14px;
  color: var(--muted);
}

.site-footer {
  margin-top: clamp(38px, 8vw, 92px);
  padding: 0;
  border: none;
  color: #d8e6ff;
  background: #102648;
  overflow: visible;
}

.footer-wave {
  position: absolute;
  left: 0;
  top: 0;
  transform: translateY(-100%);
  width: 100%;
  height: 86px;
  line-height: 0;
  pointer-events: none;
}

.footer-wave svg {
  display: block;
  width: 100%;
  height: 100%;
}

.footer-wave path {
  fill: #102648;
}

.footer-content {
  width: 100%;
  max-width: var(--content-max);
  padding-inline: var(--page-gutter);
  margin-inline: auto;
  padding-top: 22px;
  padding-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-brand {
  display: grid;
  gap: 6px;
}

.footer-brand strong {
  font-size: 1rem;
  color: #ffffff;
}

.footer-brand span {
  font-size: 0.85rem;
  color: #aac1e4;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-links a {
  text-decoration: none;
  color: #dce7fb;
  font-size: 0.84rem;
  font-weight: 600;
}

.footer-links a:hover {
  color: #ffffff;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

@media (max-width: 1180px) {
  .footer-content {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 980px) {
  .demo-layout {
    width: 100%;
  }

  .chrome-shell {
    width: 100%;
  }

  .chrome-content {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .listing-preview {
    display: none;
  }

  .embedded-panel {
    width: 100%;
    min-height: auto;
    border-right: none;
  }

  #panel-frame {
    width: 100%;
    max-width: 100%;
    min-height: 1020px;
  }

  .problem-grid,
  .benefit-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .header-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    flex-wrap: wrap;
  }

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

  .orb {
    opacity: 0.35;
  }
}
