:root {
  --bg: #ffffff;
  --ink: #121826;
  --muted: #6b7280;
  --line: #e6eaf0;
  --line-soft: #f0f3f7;
  --purple: #2de0c3;
  --purple-2: #5af0d8;
  --purple-calm: #1db8a3;
  --purple-soft: #eafffb;
  --tint: #fafbfc;
  --dark: #121826;
  --shadow: 0 24px 60px rgba(7, 11, 31, 0.09);
  --soft-shadow: 0 12px 36px rgba(7, 11, 31, 0.07);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(
      circle at 40% 20%,
      rgba(45, 224, 195, 0.055),
      transparent 64%
    ),
    #ffffff;
}

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

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

button,
input {
  font: inherit;
}

.section-shell {
  width: min(100% - 80px, 1280px);
  margin: 0 auto;
}

.hero.section-shell {
  width: min(100% - 80px, 1360px);
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 76px;
  display: flex;
  align-items: center;
  gap: 30px;
  max-width: 100%;
  padding: 0 40px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  height: 48px;
}

.brand-logo {
  display: block;
  width: 170px;
  height: auto;
  max-height: 38px;
}

.nav-links {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 30px;
  margin-left: 34px;
  font-size: 14px;
  font-weight: 650;
}

.nav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 76px;
  color: var(--ink);
}

.nav-links a.active {
  color: var(--purple-calm);
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: var(--purple-calm);
  border-radius: 999px;
}

.chevron {
  margin-left: 6px;
  font-size: 14px;
}

.nav-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 18px;
  font-size: 14px;
  font-weight: 650;
}

.dark-button,
.light-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 44px;
  padding: 0 23px;
  max-width: 100%;
  border-radius: 8px;
  font-weight: 750;
  white-space: nowrap;
}

.dark-button {
  color: #fff;
  background: var(--dark);
  border: 1px solid #121826;
  box-shadow: 0 9px 18px rgba(5, 9, 29, 0.12);
}

.light-button {
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 4px 14px rgba(7, 11, 31, 0.035);
}

.large {
  height: 48px;
  min-width: 176px;
  border-radius: 10px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 460px) minmax(0, 760px);
  align-items: center;
  gap: 88px;
  justify-content: center;
  padding: 30px 0 44px;
}

.hero-copy {
  transform: translateY(36px);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--purple-calm);
  font-size: 12px;
  line-height: 1;
  font-weight: 850;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.pill {
  display: inline-flex;
  align-items: center;
  height: 22px;
  padding: 0 11px;
  border: 1px solid rgba(29, 184, 163, 0.32);
  border-radius: 999px;
  background: rgba(29, 184, 163, 0.08);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.hero h1 {
  max-width: 440px;
  margin-bottom: 26px;
  font-size: clamp(40px, 4.25vw, 60px);
  line-height: 1.02;
  letter-spacing: -2px;
  font-weight: 800;
}

.lede {
  max-width: 500px;
  margin-bottom: 30px;
  color: #526074;
  font-size: 17px;
  line-height: 1.65;
}

.check-list {
  list-style: none;
  display: grid;
  gap: 11px;
  margin: 0 0 30px;
  padding: 0;
  color: #354052;
  font-size: 15px;
  line-height: 1.3;
}

.check-list li {
  position: relative;
  padding-left: 32px;
}

.check-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: -2px;
  display: grid;
  width: 19px;
  height: 19px;
  place-items: center;
  color: var(--purple-calm);
  font-size: 12px;
  font-weight: 900;
  border-radius: 50%;
  background: rgba(29, 184, 163, 0.11);
}

.hero-buttons {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  max-width: 100%;
}

.play {
  display: grid;
  width: 19px;
  height: 19px;
  place-items: center;
  font-size: 10px;
  border: 1px solid #aeb5c5;
  border-radius: 50%;
}

.product-mockup {
  width: 756px;
  max-width: 100%;
  overflow: hidden;
  max-height: 620px;
  border: 1px solid rgba(218, 222, 236, 0.9);
  border-radius: 28px;
  background: #fff;
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.03),
    0 36px 100px rgba(45, 224, 195, 0.08);
}

.hero-visual {
  justify-self: end;
  width: min(100%, 820px);
  max-width: 820px;
  min-width: 0;
  height: auto;
  min-height: 0;
  overflow: visible;
  border: 1px solid rgba(218, 222, 236, 0.9);
  border-radius: 18px;
  background: #fff;
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.03),
    0 24px 80px rgba(15, 23, 42, 0.12),
    0 36px 100px rgba(45, 224, 195, 0.12);
  transform: none;
}

.hero-product-image,
.showcase-image img {
  max-width: min(100%, 1536px);
}

.hero-visual img,
.hero-image,
.hero-product-image,
.showcase-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 18px;
}

.mock-search {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #fff, #fbfbff);
}

.mock-search span {
  width: min(620px, 100%);
  height: 64px;
  display: flex;
  align-items: center;
  padding: 0 68px 0 32px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #0c1024;
  background: #fff;
  box-shadow: 0 8px 24px rgba(7, 11, 31, 0.06);
  font-size: 12px;
  font-weight: 700;
  overflow: hidden;
  white-space: nowrap;
}

.mock-search button {
  width: 54px;
  height: 54px;
  margin-left: -61px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(145deg, #5af0d8, #2de0c3);
  font-size: 22px;
  box-shadow: 0 8px 18px rgba(45, 224, 195, 0.24);
}

.mock-body {
  display: grid;
  grid-template-columns: 170px 360px 190px;
  min-height: 508px;
}

.filters {
  padding: 29px 22px;
  border-right: 1px solid var(--line);
  font-size: 11px;
}

.filter-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 26px;
}

.filter-top a,
.more-filters,
.purple-link {
  color: var(--purple-calm);
  font-weight: 800;
}

.filter-group {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}

.filter-group strong {
  font-size: 11px;
}

.filter-group label {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #293247;
}

input[type="checkbox"] {
  accent-color: var(--purple-calm);
  width: 13px;
  height: 13px;
}

.price-labels {
  display: flex;
  justify-content: space-between;
  color: #485469;
}

.slider {
  position: relative;
  height: 3px;
  border-radius: 99px;
  background: #d9d7ef;
}

.slider::before,
.slider::after {
  content: "";
  position: absolute;
  top: -5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--purple-calm);
}

.slider::before {
  left: 0;
}

.slider::after {
  right: 0;
}

.slider span {
  position: absolute;
  inset: 0;
  background: var(--purple-calm);
  border-radius: inherit;
}

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

.chips span {
  display: inline-grid;
  min-width: 31px;
  height: 24px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: #27314a;
  font-weight: 700;
}

.chips span:first-child {
  color: var(--purple-calm);
  background: var(--purple-soft);
  border-color: rgba(29, 184, 163, 0.34);
}

.results {
  min-width: 0;
  padding: 27px 16px 20px 20px;
}

.results-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  font-size: 12px;
}

.results-head button,
.view-toggle span {
  border: 1px solid var(--line);
  border-radius: 7px;
  color: #344054;
  background: #fff;
  font-size: 11px;
  font-weight: 700;
}

.results-head button {
  height: 33px;
  padding: 0 14px;
}

.property-card {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  min-width: 0;
  min-height: 130px;
  margin-bottom: 17px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(7, 11, 31, 0.04);
}

.property-image,
.thumb,
.wide-photo {
  background-color: #cad8bf;
  background-size: cover;
  background-position: center;
}

.property-image {
  width: 150px;
  height: 130px;
}

.image-night {
  background-image:
    linear-gradient(165deg, rgba(12, 20, 45, 0.07), rgba(12, 20, 45, 0.18)),
    linear-gradient(140deg, transparent 0 45%, rgba(11, 30, 44, 0.9) 46% 56%, transparent 57%),
    linear-gradient(90deg, transparent 0 18%, #34411f 18% 25%, transparent 25%),
    linear-gradient(180deg, #71a7e5 0 35%, #a5c875 35% 55%, #36562b 55% 100%);
}

.image-living {
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.75) 0 18%, transparent 18%),
    linear-gradient(140deg, #d8c9ba 0 42%, #f2eee6 42% 62%, #9c8168 62% 100%);
}

.image-suburb {
  background-image:
    linear-gradient(145deg, transparent 0 42%, rgba(18, 38, 36, 0.94) 43% 56%, transparent 57%),
    linear-gradient(180deg, #83b6ec 0 35%, #d9c1a0 35% 48%, #7aa157 48% 100%);
}

.property-info {
  position: relative;
  min-width: 0;
  padding: 14px 14px 12px;
  font-size: 11px;
  color: #536075;
}

.property-info > div {
  min-width: 0;
}

.property-info h3 {
  margin-bottom: 3px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.15;
}

.property-info p {
  margin-bottom: 9px;
}

.property-info > strong {
  position: static;
  display: block;
  margin: 7px 0 5px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.1;
}

.property-info small {
  display: inline-flex;
  margin: 6px 0 7px;
  padding: 4px 7px;
  border-radius: 5px;
  color: #279551;
  background: #e9f8ed;
  font-weight: 850;
}

.meta {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #47556c;
  font-size: 11px;
}

.meta span {
  width: 9px;
  height: 9px;
  border-radius: 2px;
  background: #b8bfcd;
}

.map-panel,
.mini-map {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(35deg, transparent 0 43%, rgba(255, 255, 255, 0.78) 44% 46%, transparent 47%),
    linear-gradient(115deg, transparent 0 58%, rgba(255, 255, 255, 0.76) 59% 61%, transparent 62%),
    linear-gradient(0deg, rgba(107, 169, 98, 0.22) 0 18%, transparent 18% 42%, rgba(107, 169, 98, 0.19) 42% 54%, transparent 54%),
    repeating-linear-gradient(30deg, #eef2e8 0 18px, #fbf7ee 18px 36px);
}

.map-panel {
  border-left: 1px solid var(--line);
}

.view-toggle {
  position: absolute;
  top: 26px;
  right: 14px;
  display: flex;
  gap: 7px;
}

.view-toggle span {
  display: inline-grid;
  height: 28px;
  place-items: center;
  padding: 0 10px;
}

.view-toggle span:first-child {
  color: var(--purple-calm);
  background: rgba(29, 184, 163, 0.09);
}

.pin {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 27px;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--purple-calm);
  background: #fff;
  font-size: 12px;
  font-weight: 850;
  box-shadow: 0 8px 18px rgba(45, 224, 195, 0.14);
}

.pin-a {
  top: 128px;
  left: 82px;
}

.pin-b {
  top: 258px;
  left: 32px;
}

.pin-c {
  top: 288px;
  right: 18px;
}

.pin-d {
  top: 405px;
  left: 76px;
}

.map-controls {
  position: absolute;
  right: 16px;
  bottom: 52px;
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.map-controls span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-bottom: 1px solid var(--line);
  font-weight: 800;
}

.map-controls span:last-child {
  border-bottom: 0;
}

.features {
  padding: 48px 0 62px;
  text-align: center;
}

.product-showcase {
  width: min(100% - 80px, 1280px);
  max-width: 1280px;
  margin: 0 auto;
  padding: 96px 0;
}

.centered {
  text-align: center;
}

.features h2,
.integrations h2 {
  margin-bottom: 34px;
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1.14;
  letter-spacing: 0;
}

.features h2 {
  margin-bottom: 52px;
}

.showcase-stack {
  display: grid;
  gap: 96px;
  margin-top: 72px;
}

.showcase-row {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 72px;
  align-items: center;
  text-align: left;
  min-width: 0;
}

.showcase-row.reverse {
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
}

.showcase-image {
  width: 100%;
  max-width: 900px;
  min-width: 0;
  overflow: visible;
  border-radius: 18px;
  background: #fff;
}

.showcase-image img {
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow:
    0 24px 80px rgba(15, 23, 42, 0.12),
    0 30px 90px rgba(45, 224, 195, 0.08);
}

.showcase-copy {
  display: grid;
  align-content: center;
  justify-items: start;
}

.showcase-copy h3 {
  max-width: 440px;
  margin: 0 0 18px;
  color: var(--ink);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.08;
  letter-spacing: 0;
}

.showcase-copy p {
  max-width: 470px;
  margin: 0;
  color: #526074;
  font-size: 17px;
  line-height: 1.7;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 46px;
  text-align: left;
}

.feature-card h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 9px 0 12px;
  font-size: 18px;
}

.feature-card > p {
  color: #47556c;
  font-size: 15px;
  line-height: 1.6;
}

.icon {
  display: inline-grid;
  flex: 0 0 auto;
  width: 29px;
  height: 29px;
  place-items: center;
  border: 1px solid rgba(29, 184, 163, 0.32);
  border-radius: 7px;
  color: var(--purple-calm);
  background: rgba(29, 184, 163, 0.09);
  font-weight: 850;
}

.mini-shot {
  width: 94%;
  height: 258px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(7, 11, 31, 0.045);
}

.feature-screenshot {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.mini-search {
  padding: 0;
}

.mini-input {
  height: 46px;
  display: flex;
  align-items: center;
  margin-bottom: 22px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 9px;
  box-shadow: 0 10px 22px rgba(7, 11, 31, 0.05);
  font-size: 12px;
  font-weight: 650;
}

.mini-listing {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 92px;
  margin-bottom: 16px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 9px;
  box-shadow: 0 9px 18px rgba(7, 11, 31, 0.035);
}

.mini-listing p {
  margin: 0;
  color: #59667a;
  font-size: 11px;
  line-height: 1.55;
}

.mini-listing strong,
.mini-listing b {
  color: var(--ink);
}

.thumb {
  display: block;
  height: 67px;
  border-radius: 4px;
}

.mini-map span:not(.icon) {
  position: absolute;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--purple-2);
  box-shadow: 0 0 0 6px rgba(45, 224, 195, 0.12);
}

.mini-map span:nth-child(1) {
  left: 72px;
  top: 126px;
}

.mini-map span:nth-child(2) {
  right: 98px;
  top: 94px;
}

.mini-map span:nth-child(3) {
  left: 120px;
  bottom: 92px;
}

.mini-map span:nth-child(4) {
  right: 68px;
  bottom: 118px;
}

.map-note {
  position: absolute;
  right: 18px;
  bottom: 40px;
  width: 158px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.map-note p,
.insight-box p {
  position: relative;
  margin: 0 0 8px;
  padding-left: 15px;
  color: #59667a;
  font-size: 11px;
  line-height: 1.3;
}

.map-note p::before,
.insight-box p::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--purple-calm);
  font-size: 9px;
  font-weight: 900;
}

.mini-insights {
  padding: 0;
}

.wide-photo {
  height: 108px;
  border-radius: 8px;
}

.tabs {
  display: flex;
  gap: 24px;
  margin: 14px 0;
  padding: 0 6px 9px;
  border-bottom: 1px solid var(--line);
  color: #536075;
  font-size: 10px;
  font-weight: 700;
}

.tabs span:first-child {
  color: var(--purple-calm);
}

.insight-box {
  margin: 0 10px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #fff;
  box-shadow: 0 9px 18px rgba(7, 11, 31, 0.035);
}

.insight-box strong {
  display: block;
  margin-bottom: 14px;
  font-size: 13px;
}

.mini-chat {
  padding: 0;
}

.chat-head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 28px;
  font-size: 13px;
}

.chat-head span {
  color: #7d8797;
}

.bubble {
  width: 72%;
  margin-bottom: 18px;
  padding: 16px;
  border-radius: 9px;
  background: #f7f7fb;
  color: #354052;
  font-size: 12px;
  line-height: 1.45;
}

.bubble.right {
  margin-left: auto;
  background: #f0ebff;
}

.chat-input {
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 44px;
  padding: 0 11px;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: #8a93a4;
  font-size: 11px;
}

.chat-input span {
  color: var(--purple-calm);
}

.integrations {
  margin-top: 32px;
  padding: 58px 48px 60px;
  border-radius: 10px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.95), transparent 58%),
    linear-gradient(90deg, rgba(249, 250, 252, 0.92), rgba(244, 245, 250, 0.95), rgba(249, 250, 252, 0.92));
  text-align: center;
}

.integrations h2 {
  margin-bottom: 10px;
}

.integrations .eyebrow {
  color: #4b5563;
}

.integrations > p {
  margin-bottom: 42px;
  color: var(--muted);
  font-size: 17px;
}

.logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(34px, 5vw, 76px);
  flex-wrap: wrap;
  color: #13182c;
  font-size: 25px;
  font-weight: 750;
}

.stack-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 64px;
  margin-top: 48px;
}

.stack-logo {
  max-height: 44px;
  width: auto;
  object-fit: contain;
  opacity: 0.9;
}

.stack-logo-tile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.stack-more {
  font-size: 18px;
  font-weight: 700;
  color: #121826;
}

.reso-text-logo {
  font-size: 34px;
  font-weight: 750;
  color: #1e67a9;
}

.stack-api-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #121826;
  background: #fff;
  font-size: 17px;
  font-weight: 750;
  opacity: 0.9;
}

.logo-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
}

.integration-logo {
  display: block;
  width: auto;
  max-width: 142px;
  max-height: 30px;
  height: auto;
  object-fit: contain;
  opacity: 0.75;
  transition: opacity 0.2s ease;
}

.integration-logo:hover {
  opacity: 1;
}

.logo-idx,
.logo-ihf {
  max-height: 28px;
}

.logo-reso-text {
  flex-direction: column;
  color: #1e67a9;
  font-size: 25px;
  font-weight: 750;
  line-height: 0.9;
  opacity: 0.75;
  transition: opacity 0.2s ease;
}

.logo-reso-text:hover {
  opacity: 1;
}

.logos small {
  display: block;
  color: var(--muted);
  font-size: 10px;
  font-weight: 650;
  text-align: center;
}

.idx {
  color: #151a2d;
}

.idx::first-letter {
  color: #46a446;
}

.idx span {
  font-weight: 600;
}

.ihome {
  color: #3d4558;
}

.ihome::first-letter {
  color: #ef8f2f;
}

.reso {
  color: #1e67a9;
}

.wp {
  font-family: Georgia, serif;
  font-weight: 700;
}

.webflow {
  color: #146ef5;
}

.react {
  color: #48c7f4;
}

.install {
  display: grid;
  grid-template-columns: 310px minmax(440px, 600px) 294px;
  gap: 54px;
  align-items: center;
  min-width: 0;
  padding: 120px 0 32px;
}

.install h2 {
  margin-bottom: 22px;
  font-size: clamp(32px, 3.4vw, 45px);
  line-height: 1.08;
}

.install-copy > p:not(.eyebrow) {
  margin-bottom: 28px;
  color: #536075;
  font-size: 16px;
  line-height: 1.6;
}

.compact {
  gap: 13px;
  margin-bottom: 28px;
}

.code-card {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  border: 1px solid rgba(45, 224, 195, 0.18);
  border-radius: 20px;
  color: #cbd6ec;
  background:
    linear-gradient(180deg, rgba(45, 224, 195, 0.07), transparent 34%),
    radial-gradient(circle at 78% 10%, rgba(45, 224, 195, 0.14), transparent 30%),
    linear-gradient(150deg, #121826, #0f1522 68%, #121826);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 24px 70px rgba(7, 11, 31, 0.18),
    0 0 44px rgba(45, 224, 195, 0.08);
}

.code-tabs {
  display: flex;
  height: 58px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.code-tabs span,
.code-tabs button {
  display: grid;
  min-width: 106px;
  place-items: center;
  border: 0;
  color: #9aa6bd;
  background: transparent;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.code-tabs span.active,
.code-tabs button.active {
  color: #fff;
  border-bottom: 2px solid var(--purple-calm);
}

pre {
  margin: 0;
  padding: 28px 34px 64px;
  white-space: pre-wrap;
}

code {
  display: block;
  max-width: 100%;
  color: #d8e1f5;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 16px;
  line-height: 1.72;
  overflow-wrap: anywhere;
}

code::selection {
  background: rgba(45, 224, 195, 0.28);
}

.copy-button {
  position: absolute;
  right: 25px;
  bottom: 22px;
  height: 40px;
  padding: 0 18px;
  border: 1px solid rgba(45, 224, 195, 0.24);
  border-radius: 10px;
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  font-weight: 750;
}

.benefits {
  display: grid;
  gap: 30px;
}

.benefits article {
  display: grid;
  grid-template-columns: 1fr;
}

.benefits h3 {
  margin-bottom: 6px;
  font-size: 18px;
}

.benefits p {
  margin: 0;
  color: #536075;
  font-size: 15px;
  line-height: 1.52;
}

.cta {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 32px;
  align-items: center;
  margin-top: 32px;
  margin-bottom: 30px;
  min-height: 116px;
  padding: 27px 72px;
  overflow: hidden;
  border-radius: 12px;
  color: #fff;
  background:
    radial-gradient(circle at 96% 10%, rgba(45, 224, 195, 0.26), transparent 22%),
    radial-gradient(circle at 90% 100%, rgba(127, 228, 228, 0.22), transparent 35%),
    linear-gradient(110deg, #121826, #121826 58%, #0f1522);
}

.cta::after {
  content: "";
  position: absolute;
}

.cta-icon {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border-radius: 13px;
  background: rgba(45, 224, 195, 0.18);
  color: #fff;
  font-size: 22px;
}

.cta h2 {
  margin-bottom: 6px;
  font-size: 22px;
}

.cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
}

.stack-logo {
  width: auto;
  object-fit: contain;
  opacity: 0.9;
}

.stack-logo[alt="IDX Broker logo"] {
  height: 44px;
}

.stack-logo[alt="iHomefinder logo"] {
  height: 40px;
}

.stack-logo[alt="WordPress logo"] {
  height: 34px;
}

.stack-logo[alt="Webflow logo"] {
  height: 32px;
}

.reso-text-logo {
  font-size: 34px;
}

.stack-api-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 9px;
  color: #121826;
  background: #fff;
  font-size: 16px;
  font-weight: 750;
  opacity: 0.9;
}

.stack-api-badge span {
  color: var(--purple-calm);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 15px;
  font-weight: 800;
}

.stack-logos {
  align-items: center;
  gap: 64px;
}

.stack-logo {
  display: block;
  width: auto;
  object-fit: contain;
  opacity: 0.9;
}

.stack-logo[alt="IDX Broker logo"] {
  height: 44px;
}

.stack-logo[alt="iHomefinder logo"] {
  height: 42px;
}

.stack-logo[alt="WordPress logo"] {
  height: 34px;
}

.stack-logo[alt="Webflow logo"] {
  height: 34px;
}

.reso-text-logo {
  display: inline-flex;
  align-items: center;
  height: 36px;
  font-size: 36px;
  line-height: 1;
}

.stack-api-badge,
.stack-more {
  display: inline-flex;
  align-items: center;
  height: 36px;
}

.stack-api-badge {
  background: transparent;
}

.developer-hero {
  display: grid;
  grid-template-columns: minmax(0, 560px) minmax(420px, 1fr);
  gap: 72px;
  align-items: center;
  padding: 72px 0 74px;
}

.developer-hero h1 {
  max-width: 620px;
  margin-bottom: 22px;
  font-size: clamp(44px, 4.4vw, 64px);
  line-height: 1.02;
  letter-spacing: -2px;
  font-weight: 800;
}

.developer-terminal {
  overflow: hidden;
  border: 1px solid rgba(45, 224, 195, 0.16);
  border-radius: 22px;
  color: #d8e1f5;
  background:
    radial-gradient(circle at 80% 6%, rgba(45, 224, 195, 0.13), transparent 32%),
    linear-gradient(145deg, #121826, #0f1522);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 28px 80px rgba(18, 24, 38, 0.18);
}

.terminal-top {
  display: flex;
  align-items: center;
  gap: 9px;
  height: 54px;
  padding: 0 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.terminal-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
}

.terminal-top strong {
  margin-left: 12px;
  color: #aeb9ce;
  font-size: 13px;
}

.developer-values {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  padding: 18px 0 70px;
}

.developer-card {
  min-height: 220px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(7, 11, 31, 0.045);
}

.developer-card h2 {
  margin: 22px 0 10px;
  font-size: 22px;
  line-height: 1.18;
}

.developer-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.developer-install {
  display: grid;
  grid-template-columns: minmax(320px, 390px) minmax(520px, 1fr);
  gap: 70px;
  align-items: center;
  padding: 60px 0 78px;
}

.integration-flow {
  padding: 36px 0 82px;
  text-align: center;
}

.integration-flow h2 {
  max-width: 760px;
  margin: 0 auto 42px;
  font-size: clamp(30px, 3.2vw, 42px);
  line-height: 1.12;
}

.flow-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.flow-steps article {
  min-height: 140px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--tint);
  text-align: left;
}

.flow-steps span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 50%;
  color: #121826;
  background: rgba(45, 224, 195, 0.18);
  font-weight: 850;
}

.flow-steps h3 {
  margin: 0;
  font-size: 17px;
}

.infra-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 54px;
  align-items: center;
  padding: 62px;
  border-radius: 18px;
  color: #fff;
  background:
    radial-gradient(circle at 86% 0%, rgba(45, 224, 195, 0.16), transparent 36%),
    #121826;
  box-shadow: 0 28px 80px rgba(18, 24, 38, 0.16);
}

.infra-panel .eyebrow {
  color: #7fe4e4;
}

.infra-panel h2 {
  max-width: 720px;
  margin-bottom: 18px;
  font-size: clamp(32px, 3.4vw, 46px);
  line-height: 1.08;
}

.infra-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 17px;
  line-height: 1.72;
}

.infra-panel ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.infra-panel li {
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}

.pricing-hero {
  padding: 76px 0 48px;
  text-align: center;
}

.pricing-hero h1 {
  max-width: 760px;
  margin: 0 auto 22px;
  font-size: clamp(44px, 4.4vw, 64px);
  line-height: 1.03;
  letter-spacing: -2px;
  font-weight: 800;
}

.pricing-hero .lede {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  padding: 20px 0 44px;
}

.pricing-card {
  position: relative;
  display: flex;
  min-height: 620px;
  flex-direction: column;
  gap: 28px;
  padding: 34px 30px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 16px 44px rgba(7, 11, 31, 0.055);
}

.pricing-card.featured {
  border-color: rgba(45, 224, 195, 0.42);
  box-shadow:
    0 18px 50px rgba(7, 11, 31, 0.075),
    0 0 48px rgba(45, 224, 195, 0.08);
}

.plan-badge {
  position: absolute;
  top: -14px;
  left: 30px;
  display: inline-flex;
  height: 28px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  color: #121826;
  background: #2de0c3;
  font-size: 12px;
  font-weight: 850;
}

.pricing-card h2 {
  margin-bottom: 10px;
  font-size: 28px;
}

.pricing-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.price span {
  display: block;
  color: var(--ink);
  font-size: 46px;
  line-height: 1;
  letter-spacing: -1px;
  font-weight: 850;
}

.price small {
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

.pricing-card ul,
.pricing-notes ul {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pricing-card li,
.pricing-notes li {
  position: relative;
  padding-left: 28px;
  color: #354052;
  font-size: 15px;
  line-height: 1.45;
}

.pricing-card li::before,
.pricing-notes li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: -1px;
  color: var(--purple-calm);
  font-weight: 900;
}

.pricing-card .large {
  margin-top: auto;
}

.pricing-notes {
  display: grid;
  grid-template-columns: minmax(260px, 0.45fr) 1fr;
  gap: 44px;
  margin-top: 28px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--tint);
}

.pricing-notes h2 {
  margin: 0;
  font-size: 24px;
}

.billing-flow,
.addons {
  padding: 78px 0 40px;
  text-align: center;
}

.billing-flow h2,
.addons h2 {
  max-width: 760px;
  margin: 0 auto 42px;
  font-size: clamp(30px, 3.2vw, 42px);
  line-height: 1.12;
}

.billing-steps,
.addon-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

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

.billing-steps article,
.addon-grid article {
  min-height: 160px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fff;
  text-align: left;
  box-shadow: 0 12px 32px rgba(7, 11, 31, 0.04);
}

.billing-steps span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 50%;
  color: #121826;
  background: rgba(45, 224, 195, 0.18);
  font-weight: 850;
}

.billing-steps h3,
.addon-grid h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.32;
}

.addon-grid .icon {
  margin-bottom: 24px;
}

.pricing-faq {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) 1fr;
  gap: 54px;
  padding: 58px 0 54px;
}

.pricing-faq h2 {
  margin: 0;
  font-size: clamp(30px, 3.2vw, 42px);
  line-height: 1.12;
}

.faq-list {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}

.faq-list article {
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
}

.faq-list article:last-child {
  border-bottom: 0;
}

.faq-list h3 {
  margin-bottom: 8px;
  font-size: 16px;
}

.faq-list p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.resources-hero {
  padding: 76px 0 64px;
  text-align: center;
}

.resources-hero h1 {
  max-width: 850px;
  margin: 0 auto 22px;
  font-size: clamp(44px, 4.4vw, 64px);
  line-height: 1.03;
  letter-spacing: -2px;
  font-weight: 800;
}

.resources-hero .lede {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.resources-hero .hero-buttons {
  justify-content: center;
}

.featured-guides {
  padding: 34px 0 76px;
  text-align: center;
}

.featured-guides h2,
.docs-panel h2,
.latest-updates h2 {
  max-width: 760px;
  margin: 0 auto 44px;
  font-size: clamp(30px, 3.2vw, 42px);
  line-height: 1.12;
}

.resource-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  text-align: left;
}

.resource-card {
  min-height: 440px;
  display: flex;
  flex-direction: column;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 38px rgba(7, 11, 31, 0.045);
}

.resource-card.unpublished {
  opacity: 0.95;
  cursor: default;
}

.resource-card.published {
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.resource-card.published:hover {
  border-color: rgba(29, 184, 163, 0.28);
  box-shadow:
    0 18px 44px rgba(7, 11, 31, 0.07),
    0 24px 70px rgba(45, 224, 195, 0.08);
  transform: translateY(-3px);
}

.upcoming-resource-grid {
  margin-top: 24px;
}

.resource-visual {
  height: 160px;
  margin-bottom: 22px;
  border: 1px solid rgba(45, 224, 195, 0.14);
  border-radius: 14px;
  background:
    radial-gradient(circle at 78% 16%, rgba(45, 224, 195, 0.18), transparent 32%),
    linear-gradient(145deg, #fafbfc, #eef4f3);
}

.resource-card-image {
  width: 100%;
  height: auto;
  margin-bottom: 22px;
  object-fit: contain;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 20px;
  background: #fff;
  box-shadow:
    0 12px 34px rgba(7, 11, 31, 0.065),
    0 18px 54px rgba(45, 224, 195, 0.06);
}

.resource-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.resource-category {
  color: var(--purple-calm);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.resource-badge {
  display: inline-flex;
  align-items: center;
  height: 24px;
  padding: 0 10px;
  border: 1px solid rgba(29, 184, 163, 0.22);
  border-radius: 999px;
  color: #177f73;
  background: rgba(29, 184, 163, 0.08);
  font-size: 11px;
  font-weight: 850;
  line-height: 1;
}

.resource-read-time {
  color: #718096;
  font-size: 12px;
  font-weight: 800;
}

.resource-card h3 {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.2;
}

.resource-card p {
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.62;
}

.resource-card a {
  margin-top: auto;
  color: var(--purple-calm);
  font-weight: 800;
}

.resource-status {
  margin-top: auto;
  color: #718096;
  font-size: 14px;
  font-weight: 800;
  cursor: default;
}

.resource-load-error {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  text-align: center;
}

.article-page {
  width: min(100% - 80px, 980px);
  margin: 0 auto;
  padding: 72px 0 56px;
}

.article-hero-image-wrap {
  max-width: 980px;
  margin: 0 auto 52px;
  border-radius: 20px;
  background: #fff;
  box-shadow:
    0 24px 80px rgba(15, 23, 42, 0.12),
    0 30px 90px rgba(45, 224, 195, 0.08);
}

.article-hero-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 20px;
}

.article-header,
.article-content {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.article-header {
  margin-bottom: 42px;
  text-align: left;
}

.article-meta-line {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  color: var(--purple-calm);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.article-meta-line span + span {
  color: #718096;
}

.article-header h1 {
  margin-bottom: 20px;
  font-size: clamp(40px, 4vw, 58px);
  line-height: 1.04;
  letter-spacing: -1px;
}

.article-header p {
  margin: 0;
  color: #526074;
  font-size: 19px;
  line-height: 1.7;
}

.article-content {
  color: #283447;
  font-size: 18px;
  line-height: 1.78;
}

.article-content h2 {
  margin: 44px 0 14px;
  color: var(--ink);
  font-size: 28px;
  line-height: 1.2;
}

.article-content p {
  margin-bottom: 22px;
}

.article-content ul {
  display: grid;
  gap: 10px;
  margin: 0 0 28px;
  padding-left: 22px;
}

.article-content li {
  padding-left: 4px;
}

.article-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 72px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    radial-gradient(circle at 90% 0%, rgba(45, 224, 195, 0.12), transparent 36%),
    #fff;
  box-shadow: 0 16px 42px rgba(7, 11, 31, 0.045);
}

.article-cta h2 {
  max-width: 640px;
  margin: 0;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.12;
}

.site-footer {
  width: min(100% - 80px, 1280px);
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto auto;
  gap: 54px;
  margin: 76px auto 0;
  padding: 42px 0;
  border-top: 1px solid var(--line);
  color: #526074;
  font-size: 14px;
}

.footer-brand {
  display: grid;
  gap: 12px;
  align-content: start;
}

.footer-logo {
  color: var(--ink);
  font-size: 18px;
  font-weight: 850;
}

.footer-brand p {
  max-width: 360px;
  margin: 0;
  color: #657184;
  line-height: 1.6;
}

.footer-group {
  display: grid;
  gap: 12px;
  align-content: start;
}

.footer-group strong {
  color: var(--ink);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-group nav {
  display: grid;
  gap: 10px;
}

.footer-group a,
.footer-meta a {
  color: #526074;
}

.footer-meta {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 28px;
  border-top: 1px solid var(--line-soft);
  color: #657184;
  font-size: 13px;
  font-weight: 650;
}

.footer-meta span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.legal-hero,
.contact-hero {
  padding: 76px 0 42px;
  text-align: center;
}

.legal-hero h1,
.contact-hero h1 {
  max-width: 850px;
  margin: 0 auto 20px;
  font-size: clamp(44px, 4.4vw, 64px);
  line-height: 1.03;
  letter-spacing: -2px;
}

.legal-hero .lede,
.contact-hero .lede {
  margin-left: auto;
  margin-right: auto;
}

.legal-document {
  width: min(100% - 80px, 860px);
  margin: 0 auto;
  padding: 18px 0 34px;
}

.legal-card {
  padding: 48px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background:
    radial-gradient(circle at 92% 0%, rgba(45, 224, 195, 0.08), transparent 34%),
    #fff;
  box-shadow: 0 18px 48px rgba(7, 11, 31, 0.045);
}

.legal-card h2 {
  margin: 42px 0 14px;
  color: var(--ink);
  font-size: 26px;
  line-height: 1.2;
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card p,
.legal-card li {
  color: #3f4b5f;
  font-size: 16px;
  line-height: 1.75;
}

.legal-card p {
  margin-bottom: 18px;
}

.legal-card ul {
  display: grid;
  gap: 10px;
  margin: 0 0 22px;
  padding-left: 22px;
}

.legal-updated {
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.contact-panel {
  width: min(100% - 80px, 800px);
  margin: 0 auto 36px;
}

.contact-form {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(7, 11, 31, 0.045);
}

.contact-hero-email {
  display: inline-flex;
  margin-top: 18px;
  color: var(--purple-calm);
  font-size: 17px;
  font-weight: 850;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 34px;
  background:
    radial-gradient(circle at 92% 0%, rgba(45, 224, 195, 0.08), transparent 36%),
    #fff;
}

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

.contact-form label {
  display: grid;
  gap: 8px;
  color: #354052;
  font-size: 13px;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

.contact-form textarea {
  min-height: 160px;
  resize: vertical;
}

.contact-form .dark-button {
  width: 100%;
}

.form-success,
.form-error {
  display: none;
  margin: 0;
  padding: 14px 16px;
  border-radius: 10px;
  font-weight: 750;
}

.form-success {
  border: 1px solid rgba(29, 184, 163, 0.24);
  color: #177f73;
  background: rgba(29, 184, 163, 0.08);
}

.form-error {
  border: 1px solid rgba(197, 63, 63, 0.24);
  color: #9f2d2d;
  background: rgba(197, 63, 63, 0.08);
}

.form-success.is-visible,
.form-error.is-visible {
  display: block;
}

.contact-form .dark-button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.docs-panel {
  padding: 62px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background:
    radial-gradient(circle at 50% 0%, rgba(45, 224, 195, 0.10), transparent 45%),
    var(--tint);
  text-align: center;
}

.docs-panel > p:not(.eyebrow) {
  max-width: 690px;
  margin: -22px auto 38px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.docs-mini-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 38px;
}

.docs-mini-grid article {
  min-height: 140px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  text-align: left;
}

.docs-mini-grid h3 {
  margin: 22px 0 0;
  font-size: 17px;
}

.portal-login {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  color: var(--muted);
  font-weight: 700;
}

.latest-updates {
  padding: 86px 0 44px;
  text-align: center;
}

.timeline {
  max-width: 820px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  text-align: left;
}

.timeline article {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 28px;
  padding: 24px 28px;
  border-bottom: 1px solid var(--line);
}

.timeline article:last-child {
  border-bottom: 0;
}

.timeline time {
  color: var(--purple-calm);
  font-size: 14px;
  font-weight: 850;
}

.timeline p {
  margin: 0;
  color: #354052;
  font-size: 16px;
}

.partner-program {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 34px;
  align-items: center;
  margin-top: 42px;
  margin-bottom: 36px;
  padding: 46px 56px;
  border-radius: 18px;
  color: #fff;
  background:
    radial-gradient(circle at 92% 0%, rgba(45, 224, 195, 0.22), transparent 32%),
    #121826;
}

.partner-program h2 {
  margin-bottom: 10px;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.1;
}

.partner-program p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.7;
}

@media (max-width: 1180px) {
  .section-shell {
    width: min(100% - 48px, 1060px);
  }

  .navbar {
    gap: 26px;
  }

  .nav-links {
    margin-left: 18px;
    gap: 22px;
  }

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

  .hero-copy,
  .hero h1,
  .lede {
    max-width: 720px;
  }

  .hero-visual {
    justify-self: stretch;
    width: 100%;
    max-width: none;
    min-height: 0;
    transform: none;
  }

  .product-showcase {
    width: min(100% - 48px, 1060px);
  }

  .article-page,
  .site-footer,
  .legal-document,
  .contact-panel {
    width: min(100% - 48px, 1060px);
  }

  .site-footer {
    grid-template-columns: minmax(0, 1.2fr) minmax(180px, 0.7fr) minmax(180px, 0.7fr);
    gap: 42px 36px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-meta {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 14px 24px;
  }

  .showcase-row,
  .showcase-row.reverse {
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
    gap: 48px;
  }

  .showcase-row.reverse {
    grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1.15fr);
  }

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

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

  .developer-hero,
  .developer-install,
  .infra-panel {
    grid-template-columns: 1fr;
  }

  .developer-values,
  .flow-steps,
  .pricing-grid,
  .addon-grid,
  .resource-card-grid,
  .docs-mini-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-grid {
    gap: 28px;
    align-items: stretch;
  }

  .pricing-grid .pricing-card:nth-child(3) {
    grid-column: 1 / -1;
    min-height: 0;
  }

  .pricing-notes,
  .pricing-faq {
    grid-template-columns: 1fr;
  }

  .pricing-faq {
    gap: 28px;
    padding: 52px 0 48px;
  }

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

@media (max-width: 820px) {
  .navbar {
    height: auto;
    flex-wrap: wrap;
    gap: 16px;
    padding: 18px 24px;
  }

  .brand-logo {
    width: min(170px, 48vw);
  }

  .nav-links {
    order: 3;
    width: 100%;
    margin-left: 0;
    flex-wrap: wrap;
    gap: 8px 20px;
    overflow-x: visible;
  }

  .nav-links a {
    height: 38px;
  }

  .nav-actions {
    gap: 12px;
  }

  .login {
    display: none;
  }

  .hero {
    padding-top: 42px;
  }

  .hero-buttons {
    gap: 14px;
  }

  .stack-logos {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
  }

  .stack-logo-tile {
    width: 100%;
    min-height: 86px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 10px 28px rgba(7, 11, 31, 0.045);
  }

  .stack-logo,
  .stack-logo[alt],
  .stack-api-badge,
  .reso-text-logo {
    max-width: 100%;
    max-height: 42px;
  }

  .stack-logo,
  .stack-logo[alt] {
    width: auto;
    height: auto;
    object-fit: contain;
  }

  .stack-api-badge {
    min-height: 0;
    padding: 0;
    border: 0;
    background: transparent;
    text-align: center;
  }

  .stack-more {
    grid-column: 1 / -1;
    justify-content: center;
    height: auto;
    margin-top: 4px;
  }

  .product-showcase {
    padding: 72px 0;
  }

  .showcase-stack {
    gap: 72px;
    margin-top: 52px;
  }

  .showcase-row,
  .showcase-row.reverse {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .showcase-row.reverse .showcase-copy {
    order: 2;
  }

  .showcase-row.reverse .showcase-image {
    order: 1;
  }

  .mock-body {
    grid-template-columns: minmax(0, 1fr);
    overflow-x: hidden;
  }

  .map-panel {
    min-width: 0;
  }

  .feature-grid,
  .developer-values,
  .flow-steps,
  .pricing-grid,
  .billing-steps,
  .addon-grid,
  .resource-card-grid,
  .docs-mini-grid,
  .infra-panel ul,
  .benefits {
    grid-template-columns: 1fr;
  }

  .developer-hero,
  .developer-install {
    gap: 34px;
    padding-top: 46px;
  }

  .infra-panel {
    padding: 34px;
  }

  .docs-panel {
    padding: 34px;
  }

  .timeline article,
  .partner-program,
  .article-cta {
    grid-template-columns: 1fr;
  }

  .article-page {
    padding-top: 52px;
  }

  .article-hero-image-wrap {
    margin-bottom: 38px;
  }

  .article-cta {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .site-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 28px;
  }

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

  .cta {
    grid-template-columns: 1fr;
    padding: 30px;
  }
}

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

  .product-showcase {
    width: min(100% - 28px, 520px);
  }

  .article-page,
  .site-footer,
  .legal-document,
  .contact-panel {
    width: min(100% - 28px, 520px);
  }

  .brand {
    font-size: 20px;
  }

  .nav-actions .dark-button {
    height: 38px;
    padding: 0 14px;
    font-size: 12px;
  }

  .dark-button,
  .light-button {
    min-width: 0;
    white-space: normal;
    text-align: center;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-buttons,
  .large {
    width: 100%;
  }

  .hero-buttons .dark-button,
  .hero-buttons .light-button {
    width: 100%;
  }

  .product-mockup {
    border-radius: 14px;
  }

  .hero-visual {
    min-height: 0;
  }

  .showcase-copy h3 {
    font-size: 30px;
  }

  .showcase-copy p {
    font-size: 16px;
  }

  .article-header h1 {
    font-size: 38px;
  }

  .article-header p,
  .article-content {
    font-size: 16px;
  }

  .article-content h2 {
    font-size: 24px;
  }

  .article-cta {
    padding: 26px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 32px 0;
  }

  .footer-brand {
    grid-column: auto;
  }

  .legal-card,
  .contact-form {
    padding: 26px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .mock-search {
    padding: 0 16px;
  }

  .mock-search span {
    font-size: 10px;
  }

  .stack-logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    max-width: 420px;
  }

  .integrations {
    padding: 44px 18px 46px;
  }

  .stack-logo-tile {
    min-height: 78px;
    padding: 15px;
    border-radius: 12px;
  }

  .stack-logo,
  .stack-logo[alt],
  .stack-api-badge,
  .reso-text-logo {
    max-height: 34px;
  }

  .stack-api-badge {
    gap: 7px;
    font-size: 13px;
  }

  .stack-api-badge span {
    font-size: 13px;
  }

  .reso-text-logo {
    font-size: 30px;
  }

  .mock-body {
    grid-template-columns: minmax(0, 1fr);
  }

  .filters,
  .results {
    padding-left: 14px;
    padding-right: 14px;
  }

  .property-card {
    grid-template-columns: 118px 1fr;
  }

  .logos {
    font-size: 20px;
  }

  .code-tabs {
    max-width: 100%;
    height: auto;
    flex-wrap: wrap;
    overflow-x: visible;
  }

  .code-tabs button {
    flex: 1 1 45%;
    min-width: 0;
    min-height: 44px;
  }

  code {
    font-size: 13px;
  }
}
