:root {
  /* AI Realty — "Ink Panel" palette (design system v1.1, Aug 2026): white,
     graphite ink, no gold — gold is reserved for the app's dark showcase
     panel, not spent on these pages. */
  --bg: oklch(1 0 0); /* #FFFFFF */
  --bg-sunk: oklch(0.9523 0.0029 84.56); /* #F0EFED */
  --card: #fff;
  --ink: oklch(0.2225 0.0041 84.59); /* #1C1B19 — the dark theme's own background, as ink */
  --ink-2: oklch(0.3417 0.0059 78.25); /* #3A3835 */
  --ink-3: oklch(0.4685 0.0054 78.27); /* #5C5A57 */
  --line: oklch(0.9223 0.0058 84.57); /* #E7E5E1 */
  --accent: oklch(0.2225 0.0041 84.59); /* #1C1B19 — graphite, not gold */
  --accent-ink: oklch(0.3178 0.0075 84.59); /* #34322E — lighter graphite for hover */
  --accent-soft: oklch(0.943 0.0042 91.45); /* #EDECE9 */
  --trust: oklch(0.5171 0.0595 150.11); /* #4F7256 — darkened for AA text contrast on light bg */
  --trust-soft: oklch(0.9459 0.0102 145.49); /* #E9EFE9 */
  --sans: 'Geist', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;
  --serif: 'Instrument Serif', Georgia, serif;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  color: var(--accent-ink);
}
.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 14px 28px;
  border-bottom: 1px solid var(--line);
  background: oklch(1 0 0 / 0.88);
  backdrop-filter: blur(12px);
}
.logo {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  color: var(--ink);
  line-height: 1.02;
}
.logo img {
  width: 58px;
  height: 58px;
  border-radius: 12px;
  object-fit: cover;
  object-position: 50% 50%;
  box-shadow: 0 4px 12px rgba(20, 16, 12, 0.12);
}
.logo strong {
  font-size: 14px;
  letter-spacing: 0;
}
.logo small {
  color: var(--accent-ink);
  font-size: 10px;
  font-family: 'Geist Mono', ui-monospace, monospace;
  letter-spacing: 0.02em;
}
.directory-logo {
  flex-direction: row;
  gap: 9px;
  white-space: nowrap;
}
.directory-logo img {
  width: 50px;
  height: 50px;
}
.nav nav {
  display: flex;
  gap: 20px;
  margin-left: auto;
  color: var(--ink-2);
  font-size: 14px;
}
.nav-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.language-switcher {
  position: relative;
  display: inline-block;
}
.language-switcher summary {
  list-style: none;
  cursor: pointer;
  min-width: 116px;
  padding: 10px 34px 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 800;
}
.language-switcher summary::-webkit-details-marker {
  display: none;
}
.language-switcher summary::after {
  content: '⌄';
  position: absolute;
  right: 14px;
  top: 8px;
  color: var(--ink-3);
}
.language-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  z-index: 40;
  display: grid;
  min-width: 170px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 18px 40px -28px rgba(40, 28, 16, 0.45);
}
.language-switcher:not([open]) .language-menu {
  display: none;
}
.language-menu a {
  padding: 9px 10px;
  border-radius: 10px;
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 800;
}
.language-menu a.active,
.language-menu a:hover {
  background: var(--accent-soft);
  color: var(--accent-ink);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 11px 17px;
  background: #fff;
  font-weight: 600;
  font-size: 14px;
}
.btn.primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
main {
  width: min(1120px, calc(100% - 56px));
  margin: 0 auto;
}
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 46px;
  align-items: center;
  padding: 76px 0 46px;
}
.list-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.list-hero .lede {
  max-width: 780px;
}
.eyebrow {
  display: inline-flex;
  margin: 0 0 18px;
  padding: 5px 11px;
  border: 1px solid oklch(0.88 0.006 84.59);
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-ink);
  font-size: 12px;
  font-weight: 700;
}
h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.02;
  font-weight: 400;
}
.lede {
  margin: 22px 0 0;
  color: var(--ink-2);
  font-size: 18px;
  line-height: 1.65;
}
.contact-card,
.card {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 50px -36px rgba(40, 28, 16, 0.38);
}
.contact-card {
  padding: 22px;
}
.contact-card h2 {
  margin-top: 0;
  font-size: 20px;
}
.contact-list {
  display: grid;
  gap: 11px;
  margin-top: 16px;
}
.contact-list a,
.contact-list span {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--bg-sunk);
  color: var(--ink-2);
}
.section {
  padding: 32px 0;
}
.section h2 {
  margin: 0 0 16px;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 400;
}
.content {
  display: grid;
  gap: 18px;
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.7;
}
.about-photo-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 14px;
  padding-top: 6px;
}
.about-photo-grid figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 18px 50px -38px rgba(40, 28, 16, 0.44);
}
.about-photo-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.about-photo-grid figcaption {
  padding: 12px 14px;
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 700;
}
.investor-section {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 26px;
  align-items: start;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(145deg, #fff, var(--accent-soft));
}
.investor-section h2 {
  margin-bottom: 18px;
}
.investor-form {
  display: grid;
  gap: 12px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 22px 50px -38px rgba(40, 28, 16, 0.44);
}
.investor-form h3 {
  margin: 0 0 4px;
  font-size: 22px;
}
.investor-form label {
  display: grid;
  gap: 7px;
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 800;
}
.investor-form input,
.investor-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px;
  background: var(--bg-sunk);
  color: var(--ink);
  font: inherit;
}
.investor-form textarea {
  min-height: 118px;
  resize: vertical;
}
.investor-form p {
  margin: 0;
  color: var(--ink-3);
  font-size: 12px;
  line-height: 1.5;
}
.venture-strip {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 18px;
  align-items: stretch;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 50px -38px rgba(40, 28, 16, 0.44);
}
.venture-logo-card {
  display: grid;
  place-items: center;
  min-height: 180px;
  border-radius: 18px;
  overflow: hidden;
  background: #1c1b19;
}
.venture-logo-card img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}
.venture-media-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.venture-media-grid figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}
.venture-media-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.venture-media-grid figcaption {
  padding: 10px 11px;
  color: var(--ink-2);
  font-size: 12px;
  font-weight: 800;
}
.investor-hero {
  grid-template-columns: minmax(0, 1fr) 420px;
}
.investor-hero-card {
  overflow: hidden;
}
.investor-hero-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.investor-hero-card div {
  padding: 20px;
}
.investor-hero-card h2 {
  margin: 0 0 8px;
  font-size: 22px;
}
.investor-hero-card p {
  margin: 0;
  color: var(--ink-2);
  line-height: 1.55;
}
.keyword-cluster {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.keyword-cluster span {
  display: inline-flex;
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink-2);
  font-size: 12px;
  font-weight: 800;
}
.roadmap {
  display: grid;
  gap: 12px;
}
.roadmap-item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}
.roadmap-item strong {
  color: var(--accent-ink);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.roadmap-item h3 {
  margin: 0 0 6px;
  font-size: 19px;
}
.roadmap-item p {
  margin: 0;
  color: var(--ink-2);
  line-height: 1.6;
}
.faq-list {
  display: grid;
  gap: 12px;
}
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
}
.faq-list summary {
  cursor: pointer;
  padding: 16px 18px;
  color: var(--ink);
  font-weight: 800;
}
.faq-list details p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--ink-2);
  line-height: 1.65;
}
.deck-form-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: start;
}
.deck-form-card .investor-form {
  box-shadow: none;
}
.investor-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 50px -40px rgba(40, 28, 16, 0.42);
}
.investor-table th,
.investor-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  line-height: 1.5;
}
.investor-table th {
  background: var(--accent-soft);
  color: var(--accent-ink);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.investor-table td {
  color: var(--ink-2);
}
.investor-table tr:last-child td {
  border-bottom: 0;
}
.investor-table strong {
  color: var(--ink);
}
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.agent-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.agent-card {
  position: relative;
  display: block;
  min-height: 245px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: radial-gradient(circle at 14% 10%, var(--accent-soft), transparent 34%), #fff;
  box-shadow: 0 1px 0 rgba(60, 40, 20, 0.04);
}
.agent-card-body {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 16px;
  align-items: start;
  margin-top: 24px;
}
.agent-photo-slot,
.profile-photo-slot {
  display: grid;
  place-items: center;
  border: 1px dashed oklch(0.78 0.01 65);
  background: linear-gradient(135deg, var(--bg-sunk), #fff);
  color: var(--ink-3);
  font-weight: 800;
}
.agent-photo-slot {
  width: 82px;
  height: 96px;
  border-radius: 16px;
}
.agent-card h3 {
  margin: 0 0 8px;
  font-size: 24px;
}
.agent-card p {
  color: var(--ink-2);
  line-height: 1.55;
}
.agent-card input[type='checkbox'] {
  position: absolute;
  right: 16px;
  top: 16px;
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
}
.verify,
.claim {
  position: absolute;
  top: 16px;
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
}
.verify {
  left: 16px;
  color: var(--ink-3);
  background: var(--bg-sunk);
  border: 1px solid var(--line);
}
.claim {
  right: 16px;
  color: var(--accent-ink);
  background: var(--accent-soft);
}
.rating {
  margin: 16px 0 12px;
  color: var(--accent-ink);
  font-weight: 700;
}
.rating span {
  color: var(--ink-3);
  font-weight: 500;
  font-size: 13px;
}
.empty-rating {
  color: oklch(0.72 0.006 60);
  letter-spacing: 0.04em;
}
.directory-toolbar {
  position: sticky;
  top: 92px;
  z-index: 5;
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr 0.9fr 0.9fr;
  gap: 10px;
  padding: 14px;
  margin: 24px 0 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: oklch(1 0 0 / 0.92);
  backdrop-filter: blur(12px);
}
.directory-toolbar input,
.directory-toolbar select,
.directory-toolbar textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 11px 12px;
  background: #fff;
  font: inherit;
  color: var(--ink);
}
.bulk-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border: 1px solid oklch(0.88 0.006 84.59);
  border-radius: 18px;
  background: var(--accent-soft);
}
.bulk-panel strong {
  color: var(--accent-ink);
}
.directory-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-top: 26px;
  color: var(--ink-2);
}
.directory-pagination .btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
.buyer-lead-widget {
  width: min(640px, 100%);
  margin: 30px auto 0;
  text-align: left;
}
.buyer-trust-bar,
.buyer-security {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 18px;
  color: var(--ink-3);
  font-size: 12px;
}
.buyer-trust-bar span,
.buyer-security span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.buyer-trust-bar i {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--trust);
}
.buyer-form-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 24px 70px -48px rgba(40, 28, 16, 0.45);
}
.buyer-progress {
  height: 4px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: var(--bg-sunk);
  overflow: hidden;
}
.buyer-progress i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--accent);
  transition: width 0.25s ease;
}
.buyer-steps {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  color: var(--ink-3);
  font-size: 12px;
  font-weight: 700;
}
.buyer-steps span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.buyer-steps span.active {
  color: var(--ink);
}
.buyer-steps b {
  display: inline-grid;
  place-items: center;
  width: 25px;
  height: 25px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--bg-sunk);
  color: var(--ink-3);
  font-size: 11px;
}
.buyer-steps b.active {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}
.buyer-steps b.done {
  border-color: var(--trust);
  background: var(--trust-soft);
  color: var(--trust);
}
.buyer-steps > i {
  height: 1px;
  background: var(--line);
}
.buyer-steps > i.done {
  background: var(--trust);
}
.buyer-panel {
  display: none;
}
.buyer-panel.active {
  display: block;
}
.buyer-panel label {
  display: block;
  margin: 16px 0 7px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}
.buyer-panel label:first-child {
  margin-top: 0;
}
.buyer-panel small {
  color: var(--ink-3);
  font-weight: 500;
}
.buyer-panel input,
.buyer-panel select,
.buyer-panel textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px;
  background: var(--bg-sunk);
  color: var(--ink);
  font: inherit;
}
.buyer-panel textarea {
  height: 84px;
  resize: none;
}
.buyer-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.buyer-chips button {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 13px;
  background: var(--bg-sunk);
  color: var(--ink-2);
  font: inherit;
  font-size: 12px;
  cursor: pointer;
}
.buyer-chips button:hover,
.buyer-chips button.selected {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent-ink);
}
.buyer-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.buyer-budget {
  display: block;
  margin-bottom: 8px;
  font-size: 22px;
}
.buyer-range-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 6px;
  color: var(--ink-3);
  font-size: 11px;
}
.buyer-actions {
  display: grid;
  grid-template-columns: auto minmax(160px, 1fr);
  gap: 10px;
  align-items: center;
  margin-top: 22px;
}
.buyer-privacy {
  margin: 14px 0 0;
  color: var(--ink-3);
  font-size: 11px;
  line-height: 1.55;
  text-align: center;
}
.buyer-success {
  text-align: center;
}
.buyer-success-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin: 0 auto 14px;
  border-radius: 999px;
  background: var(--trust-soft);
  color: var(--trust);
  font-weight: 900;
  font-size: 24px;
}
.buyer-success h3 {
  margin: 0 0 8px;
  font-size: 22px;
}
.buyer-success p {
  color: var(--ink-2);
  line-height: 1.55;
}
.buyer-avatars {
  display: flex;
  justify-content: center;
  margin: 18px 0;
}
.buyer-avatars span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-left: -8px;
  border: 2px solid #fff;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-ink);
  font-size: 12px;
  font-weight: 800;
}
.buyer-avatars span:first-child {
  margin-left: 0;
}
.buyer-next-box {
  padding: 14px;
  border-radius: 12px;
  background: var(--bg-sunk);
  text-align: left;
}
.field-error {
  outline: 2px solid oklch(0.5611 0.1329 34.5);
}
.agent-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}
.agent-meta span {
  padding: 5px 8px;
  border-radius: 999px;
  background: var(--bg-sunk);
  color: var(--ink-2);
  font-size: 11px;
}
.contact-row {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}
.contact-row a,
.contact-row span {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--bg-sunk);
  color: var(--ink-2);
}
.bar {
  height: 8px;
  border-radius: 999px;
  background: var(--bg-sunk);
  border: 1px solid var(--line);
  overflow: hidden;
}
.bar i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--accent);
}
.profile-hero {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 42px;
  align-items: start;
  padding: 64px 0 42px;
}
.profile-video-card {
  display: grid;
  grid-template-columns: minmax(150px, 0.72fr) 1.28fr;
  gap: 14px;
  align-items: stretch;
  margin-top: 22px;
}
.video-preview-illustration {
  position: relative;
  min-height: 238px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(145deg, #fff, var(--accent-soft));
  overflow: hidden;
}
.video-phone {
  position: relative;
  display: grid;
  place-items: center;
  width: min(120px, 100%);
  height: 170px;
  margin: 0 auto;
  border: 7px solid oklch(0.23 0.014 60);
  border-radius: 22px;
  background: radial-gradient(circle at 50% 35%, #fff 0 26%, var(--bg-sunk) 27% 100%);
  box-shadow: 0 26px 46px -32px rgba(40, 28, 16, 0.65);
}
.video-phone::before {
  content: '';
  position: absolute;
  top: 7px;
  width: 38px;
  height: 4px;
  border-radius: 999px;
  background: oklch(0.74 0.01 60);
}
.video-avatar {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 18px;
  font-weight: 900;
}
.play-dot {
  position: absolute;
  bottom: 30px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #fff;
  color: var(--accent-ink);
  box-shadow: 0 14px 26px -18px rgba(40, 28, 16, 0.55);
}
.trust-signal-card {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  display: grid;
  gap: 5px;
  padding: 10px;
  border: 1px solid oklch(0.88 0.006 84.59);
  border-radius: 16px;
  background: oklch(1 0 0 / 0.94);
}
.trust-signal-card strong {
  color: var(--accent-ink);
}
.trust-signal-card span {
  color: var(--ink-2);
  font-size: 11px;
  line-height: 1.45;
}
.compact-video-upload {
  display: grid;
  align-content: start;
  padding: 16px;
}
.compact-video-upload .drop-zone {
  min-height: 118px;
  margin-top: 14px;
}
.video-link-inline {
  display: grid;
  gap: 8px;
  margin-top: 10px;
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 800;
}
.video-link-inline input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 11px 12px;
  background: var(--bg-sunk);
  font: inherit;
}
.profile-card {
  position: relative;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 24px 60px -38px rgba(40, 28, 16, 0.42);
}
.owner-link {
  display: inline-flex;
  justify-content: center;
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink-2);
  font-size: 12px;
  font-weight: 700;
}
.owner-under-photo {
  width: 100%;
  margin: -6px 0 16px;
}
.profile-card-top {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin-bottom: 12px;
}
.profile-card > .completion-pill {
  margin-bottom: 12px;
}
.profile-photo-slot {
  width: 100%;
  aspect-ratio: 4 / 3;
  margin: 0 0 18px;
  border-radius: 20px;
  font-size: 42px;
}
.profile-card > .verify {
  position: static;
  display: inline-flex;
  margin: 4px 0 12px;
}
.profile-contact-icons {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  width: 100%;
}
.profile-contact-icons a {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 8px 20px -16px rgba(40, 28, 16, 0.45);
}
.profile-contact-icons .wa {
  background: #25d366;
}
.profile-contact-icons .tg {
  background: #229ed9;
}
.profile-contact-icons .mail {
  background: var(--accent);
}
.profile-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 18px;
}
.profile-metrics div,
.profile-metrics label {
  padding: 12px;
  border-radius: 14px;
  background: var(--bg-sunk);
}
.profile-metrics span {
  display: block;
  color: var(--ink-3);
  font-size: 12px;
}
.profile-metrics strong {
  display: block;
  margin-top: 4px;
}
.profile-metrics input {
  width: 100%;
  margin-top: 7px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 9px 10px;
  background: #fff;
  font: inherit;
}
.trust-carousel {
  overflow: hidden;
  padding: 2px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
}
.trust-track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: trustScroll 28s linear infinite;
}
.trust-carousel:hover .trust-track {
  animation-play-state: paused;
}
.trust-item {
  width: 230px;
  min-height: 152px;
  padding: 18px;
  border: 1px dashed oklch(0.8 0.01 65);
  border-radius: 16px;
  background: linear-gradient(135deg, var(--bg-sunk), #fff);
}
.trust-item span {
  display: inline-flex;
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-ink);
  font-size: 11px;
  font-weight: 800;
}
.trust-item strong {
  display: block;
  margin: 18px 0 8px;
}
.trust-item small {
  color: var(--ink-3);
  line-height: 1.5;
}
.trust-note {
  margin: 12px 0 0;
  color: var(--ink-2);
  line-height: 1.6;
}
@keyframes trustScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 7px));
  }
}
.review-box {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}
.bio-panel,
.contact-edit {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
}
.bio-panel div {
  padding: 14px;
  border-radius: 14px;
  background: var(--bg-sunk);
}
.bio-panel span {
  display: block;
  color: var(--ink-3);
  font-size: 12px;
}
.bio-panel strong {
  display: block;
  margin-top: 5px;
}
.bio-panel p {
  grid-column: 1 / -1;
  margin: 4px 0 0;
  color: var(--ink-2);
  line-height: 1.65;
}
.property-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.property-card {
  min-height: 250px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
}
.property-card div {
  height: 118px;
  border: 1px dashed oklch(0.78 0.01 65);
  border-radius: 16px;
  background: repeating-linear-gradient(
    135deg,
    var(--bg-sunk),
    var(--bg-sunk) 10px,
    #fff 10px,
    #fff 20px
  );
}
.property-card h3 {
  margin: 14px 0 8px;
}
.property-card p {
  color: var(--ink-2);
  line-height: 1.55;
}
.property-card.add {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--accent-soft);
  border-color: oklch(0.88 0.006 84.59);
}
.profile-articles-section .related-head {
  margin-bottom: 16px;
}
.profile-articles-section .eyebrow {
  margin-bottom: 10px;
}
.profile-articles-scroll {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 32%);
  gap: 14px;
  overflow-x: auto;
  padding: 4px 4px 16px;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
}
.profile-article-card {
  scroll-snap-align: start;
  display: grid;
  align-content: space-between;
  min-height: 190px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: radial-gradient(circle at 12% 10%, var(--accent-soft), transparent 42%), #fff;
  box-shadow: 0 16px 42px -34px rgba(40, 28, 16, 0.48);
}
.profile-article-card span {
  width: fit-content;
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--trust-soft);
  color: var(--trust);
  font-size: 11px;
  font-weight: 800;
}
.profile-article-card strong {
  margin: 18px 0;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.2;
}
.profile-article-card small {
  color: var(--ink-3);
  font-weight: 700;
}
.contact-edit {
  grid-template-columns: repeat(2, 1fr);
}
.media-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}
.media-header h2 {
  margin-bottom: 0;
}
.completion-pill {
  cursor: help;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
}
.completion-pill span {
  color: var(--ink-3);
  font-size: 12px;
  font-weight: 700;
}
.completion-pill strong {
  color: var(--accent-ink);
}
.video-upload {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) 1.4fr;
  gap: 16px;
  align-items: stretch;
}
.centered-video {
  display: block;
  max-width: 780px;
  margin: 0 auto;
}
.video-link,
.upload-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.video-link {
  align-content: start;
}
.upload-card h3 {
  margin: 0 0 8px;
}
.upload-card p,
.video-link small {
  color: var(--ink-2);
  line-height: 1.55;
}
.drop-zone {
  display: grid;
  place-items: center;
  min-height: 158px;
  margin-top: 24px;
  border: 2px dashed oklch(0.82 0.01 65);
  border-radius: 6px;
  background: #fff;
  text-align: center;
  cursor: pointer;
}
.video-frame {
  min-height: 360px;
  aspect-ratio: 16 / 9;
}
.drop-zone input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.drop-zone span {
  color: oklch(0.55 0.02 80);
  font-size: 38px;
  line-height: 1;
}
.drop-zone strong {
  display: block;
  color: var(--ink-2);
  font-size: 14px;
}
.drop-zone small {
  color: var(--ink-3);
  font-size: 12px;
}
.contact-edit label,
.video-link {
  display: grid;
  gap: 7px;
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 700;
}
.contact-edit input,
.video-link input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px;
  background: var(--bg-sunk);
  font: inherit;
}
.reviews-grid {
  grid-template-columns: 1fr 1fr;
}
.review-placeholder {
  position: relative;
  overflow: hidden;
  min-height: 178px;
}
.review-placeholder::after {
  content: '';
  position: absolute;
  inset: -40%;
  background: linear-gradient(
    110deg,
    transparent 35%,
    rgba(255, 255, 255, 0.78) 50%,
    transparent 65%
  );
  animation: reviewFlash 4.8s ease-in-out infinite;
}
.review-placeholder > * {
  position: relative;
  z-index: 1;
}
.share-review {
  margin-top: 12px;
}
@keyframes reviewFlash {
  0%,
  45% {
    transform: translateX(-55%);
    opacity: 0;
  }
  58% {
    opacity: 1;
  }
  100% {
    transform: translateX(55%);
    opacity: 0;
  }
}
.publish-link[hidden] {
  display: none;
}
.agent-footer {
  justify-content: center;
}
.related-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}
.related-head h2 {
  margin-bottom: 0;
}
.hide-related {
  cursor: help;
}
.hide-related-note {
  margin: -4px 0 16px;
  padding: 11px 13px;
  border: 1px solid oklch(0.88 0.006 84.59);
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent-ink);
  font-size: 13px;
  font-weight: 700;
}
.hide-related-note[hidden] {
  display: none;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.related-agent {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}
.related-agent .agent-photo-slot {
  width: 100%;
  height: 112px;
}
.related-agent strong,
.related-agent span,
.related-agent small {
  display: block;
}
.related-agent span {
  margin-top: 4px;
  color: var(--ink-2);
  font-size: 13px;
}
.related-agent small {
  margin-top: 6px;
  color: var(--ink-3);
}
.faq-list details {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.faq-list summary {
  cursor: pointer;
  font-weight: 700;
}
.card {
  padding: 22px;
}
.card h3 {
  margin: 0 0 9px;
  font-size: 18px;
}
.card p,
.card li {
  color: var(--ink-2);
  line-height: 1.6;
}
.metric {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--trust-soft);
  color: var(--trust);
  font-weight: 700;
  font-size: 12px;
}
.leaderboard {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--line);
}
.leaderboard th,
.leaderboard td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}
.leaderboard th {
  color: var(--ink);
  background: var(--bg-sunk);
  font-size: 13px;
}
.pricing-page {
  width: min(1180px, calc(100% - 48px));
}
.pricing-hero {
  padding: 62px 0 28px;
  text-align: center;
}
.pricing-hero .lede {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}
.billing-toggle {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 26px;
  font-weight: 800;
}
.billing-toggle button {
  width: 64px;
  height: 36px;
  border: 0;
  border-radius: 999px;
  padding: 5px;
  background: var(--line);
  cursor: pointer;
}
.billing-toggle button i {
  display: block;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: #fff;
  transition: transform 0.2s ease;
}
.billing-toggle button[aria-pressed='true'] i {
  transform: translateX(28px);
}
.billing-toggle strong {
  padding: 8px 18px;
  border-radius: 999px;
  background: oklch(0.91 0.05 120);
  color: oklch(0.36 0.08 130);
}
.budget-banner {
  margin: 18px 0;
  padding: 16px 20px;
  border-radius: 8px;
  background: oklch(0.34 0.07 80);
  color: oklch(0.84 0.11 78);
  font-weight: 700;
  text-align: center;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.pricing-card {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: oklch(0.22 0.006 90);
  color: #f8f5ee;
  box-shadow: 0 20px 50px -36px rgba(20, 16, 12, 0.6);
}
.pricing-card.popular {
  border: 3px solid oklch(0.58 0.16 250);
}
.pricing-card h2 {
  margin: 20px 0 10px;
  font-family: var(--sans);
  font-size: 28px;
}
.pricing-card p {
  color: oklch(0.78 0.01 85);
  line-height: 1.5;
}
.plan-pill {
  display: inline-flex;
  margin-right: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: oklch(0.16 0.004 90);
  color: oklch(0.78 0.01 85);
  font-weight: 800;
}
.plan-pill.pro {
  background: oklch(0.92 0.04 245);
  color: oklch(0.42 0.13 250);
}
.plan-pill.agency {
  background: oklch(0.92 0.035 290);
  color: oklch(0.45 0.11 285);
}
.plan-price {
  margin-top: 26px;
  display: flex;
  align-items: end;
  gap: 4px;
}
.plan-price strong {
  font-size: 48px;
  line-height: 0.9;
}
.plan-price span,
.annual-note {
  color: oklch(0.78 0.01 85);
  font-weight: 700;
}
.min-budget {
  margin: 20px 0 24px;
  padding: 12px 14px;
  border-radius: 8px;
  background: oklch(0.18 0.005 90);
  color: oklch(0.8 0.01 85);
  font-weight: 800;
}
.min-budget.pro {
  background: oklch(0.92 0.04 245);
  color: oklch(0.42 0.13 250);
}
.min-budget.agency {
  background: oklch(0.92 0.035 290);
  color: oklch(0.45 0.11 285);
}
.pricing-card hr {
  border: 0;
  border-top: 1px solid oklch(0.35 0.006 90);
  margin: 24px 0;
}
.pricing-card h3 {
  margin: 22px 0 12px;
  color: oklch(0.7 0.01 85);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.plan-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.plan-list li {
  position: relative;
  padding-left: 32px;
  color: #f8f5ee;
  line-height: 1.4;
  font-weight: 700;
}
.plan-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: oklch(0.88 0.09 120);
  color: oklch(0.33 0.08 130);
  font-size: 12px;
}
.plan-list.muted li {
  color: oklch(0.64 0.01 85);
}
.plan-list.muted li::before {
  content: '×';
  background: oklch(0.24 0.006 90);
  color: oklch(0.64 0.01 85);
}
.platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.platforms span,
.platforms s {
  padding: 5px 10px;
  border-radius: 8px;
  background: oklch(0.92 0.04 245);
  color: oklch(0.42 0.13 250);
  font-weight: 800;
  text-decoration: none;
}
.platforms s {
  background: oklch(0.16 0.004 90);
  color: oklch(0.58 0.006 85);
  text-decoration: line-through;
}
.addons-card,
.mrr-card {
  margin-top: 36px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: oklch(0.22 0.006 90);
  color: #f8f5ee;
}
.addons-card h2,
.mrr-card h2 {
  margin: 0 0 18px;
  font-family: var(--sans);
  font-size: 22px;
}
.addon-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  padding: 12px 0;
  border-top: 1px solid oklch(0.35 0.006 90);
  color: oklch(0.78 0.01 85);
}
.addon-row strong {
  color: #fff;
}
.mrr-card p {
  color: oklch(0.78 0.01 85);
}
.mrr-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr) auto;
  gap: 12px;
  align-items: end;
}
.mrr-grid label {
  display: grid;
  gap: 7px;
  color: oklch(0.78 0.01 85);
  font-weight: 700;
}
.mrr-grid input {
  border: 1px solid oklch(0.35 0.006 90);
  border-radius: 8px;
  padding: 12px;
  background: oklch(0.18 0.005 90);
  color: #fff;
  font: inherit;
}
.mrr-grid output {
  min-width: 140px;
  padding: 13px 16px;
  border-radius: 8px;
  background: var(--accent);
  color: #fff;
  font-weight: 900;
  text-align: center;
}
.footer {
  margin-top: 56px;
  padding: 32px 28px;
  border-top: 1px solid var(--line);
  background: var(--bg-sunk);
  color: var(--ink-3);
  font-size: 13px;
}
.footer-inner {
  width: min(1120px, calc(100% - 56px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.seo-hero {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
}
.direct-answer,
.proof-panel,
.faq-panel {
  margin-top: 24px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink-2);
  line-height: 1.65;
}
.proof-panel img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
}
.proof-panel h2,
.faq-panel h2 {
  margin: 18px 0 10px;
  font-size: 24px;
}
.seo-band {
  padding: 44px 0;
  border-top: 1px solid var(--line);
}
.seo-band h2 {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 400;
}
.seo-steps,
.seo-cases,
.seo-faq,
.seo-table {
  display: grid;
  gap: 14px;
}
.seo-steps {
  grid-template-columns: repeat(5, 1fr);
}
.seo-cases {
  grid-template-columns: repeat(2, 1fr);
}
.seo-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.seo-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
}
.seo-card p {
  margin: 0;
  color: var(--ink-2);
  line-height: 1.6;
}
.seo-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 14px;
}
.seo-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.seo-table div {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
}
.seo-table span {
  padding: 12px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.seo-table div:first-child span {
  background: var(--accent-soft);
  color: var(--accent-ink);
  font-weight: 800;
}
.seo-cta {
  margin: 36px 0 0;
  padding: 28px;
  border-radius: 8px;
  background: oklch(0.22 0.006 90);
  color: #fff;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}
.seo-cta p {
  margin: 6px 0 0;
  color: oklch(0.78 0.01 85);
}
@media (max-width: 860px) {
  .hero,
  .grid,
  .agent-grid,
  .profile-hero,
  .directory-toolbar,
  .bulk-panel,
  .bio-panel,
  .property-grid,
  .contact-edit,
  .video-upload,
  .reviews-grid,
  .related-grid,
  .pricing-grid,
  .mrr-grid,
  .buyer-two,
  .buyer-actions,
  .about-photo-grid,
  .investor-section,
  .venture-strip,
  .venture-media-grid,
  .roadmap-item,
  .deck-form-card,
  .seo-steps,
  .seo-cases,
  .seo-hero {
    grid-template-columns: 1fr;
  }
  .buyer-steps {
    grid-template-columns: 1fr;
  }
  .buyer-steps > i {
    display: none;
  }
  .media-header {
    align-items: start;
    flex-direction: column;
  }
  .related-head,
  .profile-card-top {
    align-items: start;
    flex-direction: column;
  }
  .profile-contact-icons {
    margin: 0 0 12px;
    justify-content: flex-start;
  }
  .addon-row {
    grid-template-columns: 1fr;
  }
  .agent-card-body {
    grid-template-columns: 72px 1fr;
  }
  .profile-video-card {
    grid-template-columns: 1fr;
  }
  .nav nav {
    display: none;
  }
  .directory-nav {
    flex-wrap: wrap;
  }
  .language-switcher {
    margin-left: auto;
  }
}
@media (max-width: 640px) {
  main,
  .footer-inner {
    width: min(100% - 32px, 1120px);
  }
  .nav {
    padding: 12px 16px;
  }
  .nav > .btn {
    display: none;
  }
  .nav-actions .btn:first-child {
    display: none;
  }
  .directory-logo strong {
    display: none;
  }
  .language-switcher summary {
    min-width: 96px;
    padding: 9px 30px 9px 12px;
  }
}
