*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #F3F4F7;
  --surface: #FFFFFF;
  --ink: #0E1424;
  --ink-soft: #1A2238;
  --muted: #6B7285;
  --muted-2: #9AA0B0;
  --line: #E6E8EE;
  --gold: #B89336;
  --gold-soft: rgba(184, 147, 54, 0.12);
  --ok: #1F6B4A;
  --ok-soft: rgba(31, 107, 74, 0.1);
  --ai: #3D4A6B;
  --ai-soft: rgba(61, 74, 107, 0.1);
  --clay:
    0 1px 2px rgba(14, 20, 36, 0.03),
    0 8px 24px rgba(14, 20, 36, 0.05),
    0 20px 40px rgba(14, 20, 36, 0.04);
  --clay-soft: inset 0 1px 0 rgba(255,255,255,0.85);
  --r: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --pill: 999px;
  --max: 1180px;
  --font: "Inter", system-ui, sans-serif;
  --display: "Fraunces", Georgia, serif;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  max-width: 100%;
  overflow-x: hidden;
  position: relative;
}

img, video, svg, canvas { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button { cursor: pointer; border: none; background: none; }

.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; max-width: 100%; }

/* Header */
.site-header {
  position: sticky;
  top: 14px;
  z-index: 100;
  padding: 0 20px;
  margin-bottom: 8px;
}

.header-shell {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 12px 10px 14px;
  background: rgba(255,255,255,0.86);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.75);
  border-radius: var(--pill);
  box-shadow: var(--clay);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-name {
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.12em;
}

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

.nav a {
  padding: 8px 14px;
  border-radius: var(--pill);
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  transition: 0.2s ease;
}

.nav a:hover { color: var(--ink); background: rgba(14,20,36,0.04); }
.nav a.active {
  color: var(--ink);
  background: rgba(14,20,36,0.06);
  font-weight: 600;
}

.header-actions { display: flex; align-items: center; gap: 8px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 40px;
  padding: 0 18px;
  border-radius: var(--pill);
  font-size: 13px;
  font-weight: 550;
  transition: 0.2s ease;
}

.btn-ghost {
  color: var(--ink);
  background: rgba(14,20,36,0.04);
}
.btn-ghost:hover { background: rgba(14,20,36,0.08); }

.btn-dark,
a.btn-dark,
.nav a.btn-dark,
.header-actions a.btn-dark {
  color: #fff;
  background: var(--ink);
  box-shadow: 0 8px 20px rgba(14,20,36,0.18);
}
.btn-dark:hover,
a.btn-dark:hover,
.nav a.btn-dark:hover,
.header-actions a.btn-dark:hover {
  color: #fff;
  background: var(--ink-soft);
  transform: translateY(-1px);
}

.btn-line {
  color: var(--ink);
  background: transparent;
  border: 1px solid rgba(184,147,54,0.55);
}
.btn-line:hover { background: var(--gold-soft); }

.btn-block { width: 100%; }

.menu-btn { display: none; padding: 8px; color: var(--ink); }

/* Hero */
.hero {
  padding: 18px 16px 0;
}

.hero-panel {
  width: min(var(--max), 100%);
  margin: 0 auto;
  min-height: 460px;
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
  box-shadow: var(--clay);
  background: #121926;
  display: flex;
  align-items: stretch;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: center/cover no-repeat;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.15s ease;
  z-index: 0;
}

.hero-bg.is-active { opacity: 1; }

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(10,14,24,0.78) 0%, rgba(10,14,24,0.45) 48%, rgba(10,14,24,0.28) 100%),
    linear-gradient(180deg, rgba(10,14,24,0.18) 0%, rgba(10,14,24,0.62) 100%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px 40px 28px;
  gap: 28px;
}

.hero-content {
  color: #fff;
  max-width: 560px;
  text-align: left;
  position: relative;
  z-index: 3;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: var(--pill);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.16);
  font-size: 11px;
  font-weight: 550;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.hero-content h1 {
  font-family: var(--display);
  font-size: clamp(32px, 5.5vw, 52px);
  font-weight: 550;
  line-height: 1.12;
  max-width: 14ch;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.hero-content p {
  max-width: 42ch;
  color: rgba(255,255,255,0.78);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
}

.search-wrap {
  width: 100%;
  max-width: 780px;
  position: relative;
  z-index: 3;
}

.search-tabs {
  display: flex;
  flex-wrap: nowrap;
  gap: 6px;
  margin-bottom: 10px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 2px;
}

.search-tabs::-webkit-scrollbar { display: none; }

.search-tab {
  height: 32px;
  padding: 0 14px;
  border-radius: var(--pill);
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.94);
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.search-tab:hover {
  background: rgba(255,255,255,0.28);
  border-color: rgba(255,255,255,0.42);
  color: #fff;
}

.search-tab.active {
  background: #fff;
  color: var(--ink);
  border-color: rgba(255,255,255,0.95);
  font-weight: 700;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.55),
    0 8px 22px rgba(0,0,0,0.24),
    0 0 24px rgba(255,255,255,0.22);
}

.search-float {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr auto;
  gap: 6px;
  padding: 6px;
  background: rgba(255,255,255,0.97);
  border-radius: var(--pill);
  box-shadow: 0 16px 40px rgba(0,0,0,0.22);
}

.search-field {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  min-height: 46px;
  color: var(--muted);
}

.search-field + .search-field {
  border-left: 1px solid var(--line);
}

.search-field input,
.search-field select {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 13px;
}

.search-float .btn-dark { height: 46px; border-radius: var(--pill); }

/* Sections */
.section { padding: 48px 0; }
.section-tight { padding: 28px 0; }

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

.section-head h2 {
  font-size: 24px;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.section-head p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
}

.link-more {
  font-size: 13px;
  font-weight: 550;
  color: var(--ink);
  white-space: nowrap;
}
.link-more:hover { text-decoration: underline; }

/* Trust strip - mobile-first 2x2, expands on desktop */
.trust-section { padding: 14px 0 8px; }

.trust-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 10px 10px;
  background: var(--surface);
  border-radius: 14px;
  box-shadow: var(--clay);
  min-width: 0;
}

.trust-icon {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: var(--bg);
  color: var(--ink);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.trust-item strong {
  display: block;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.trust-item span {
  display: block;
  font-size: 10px;
  color: var(--muted);
  line-height: 1.35;
  margin-top: 2px;
}

@media (min-width: 760px) {
  .trust-section { padding: 22px 0 10px; }
  .trust-row {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }
  .trust-item {
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: var(--r);
  }
  .trust-icon {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    margin-top: 0;
  }
  .trust-item strong { font-size: 13px; }
  .trust-item span { font-size: 12px; margin-top: 0; }
}

/* Property cards */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

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

.grid-2 {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 16px;
}

.card {
  background: var(--surface);
  border-radius: var(--r-lg);
  box-shadow: var(--clay);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow:
    0 2px 4px rgba(14,20,36,0.04),
    0 16px 36px rgba(14,20,36,0.08);
}

.prop-media {
  position: relative;
  height: 210px;
  overflow: hidden;
  background: #d9dde5;
}

.prop-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.badge-row {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  max-width: calc(100% - 56px);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  height: 24px;
  padding: 0 9px;
  border-radius: var(--pill);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.94);
  color: var(--ink);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.badge svg { width: 11px; height: 11px; }

.badge-verified { background: var(--ink); color: #fff; }
.badge-verified svg { color: #fff; }
.badge-exclusive { background: var(--gold); color: #fff; }
.badge-offmarket { background: #3A4258; color: #fff; }
.badge-new { background: #fff; color: var(--ink); }
.badge-rera { background: rgba(255,255,255,0.94); color: var(--ok); }

.save-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.94);
  color: var(--muted);
  display: grid;
  place-items: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.prop-body { padding: 16px 16px 18px; }

.prop-price {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.prop-price small {
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  margin-left: 4px;
}

.prop-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}

.prop-loc {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 12px;
}

.prop-loc svg { flex-shrink: 0; color: var(--muted-2); }

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  border-radius: var(--pill);
  background: #F0F1F5;
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
}

.tag svg { width: 12px; height: 12px; color: var(--muted-2); }

.ai-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  background: #F7F8FA;
  margin-bottom: 14px;
}

.ai-strip-left {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.ai-chip {
  width: 24px;
  height: 24px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.ai-strip strong {
  display: block;
  font-size: 12px;
  font-weight: 600;
}
.ai-strip span {
  display: block;
  font-size: 11px;
  color: var(--muted);
}

.meter {
  width: 72px;
  height: 6px;
  border-radius: var(--pill);
  background: #E4E6EC;
  overflow: hidden;
  flex-shrink: 0;
}
.meter > i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #B89336, #D4B45E);
}

/* AI feature cards */
.ai-card {
  padding: 20px;
  background: var(--surface);
  border-radius: var(--r-lg);
  box-shadow: var(--clay);
}

.ai-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.ai-icon {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: var(--bg);
  color: var(--ink);
  display: grid;
  place-items: center;
}

.ai-card h3 {
  font-size: 15px;
  font-weight: 650;
}
.ai-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
}

.ai-preview {
  margin-top: 14px;
  padding: 12px;
  border-radius: 14px;
  background: #F7F8FA;
}

.bar-row {
  display: grid;
  grid-template-columns: 58px 1fr 48px;
  gap: 8px;
  align-items: center;
  margin-bottom: 8px;
  font-size: 11px;
  color: var(--muted);
}
.bar-row:last-child { margin-bottom: 0; }
.bar {
  height: 7px;
  border-radius: var(--pill);
  background: #E4E6EC;
  overflow: hidden;
}
.bar > i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--ink);
}
.bar > i.gold { background: var(--gold); }

.score-big {
  text-align: center;
  padding: 8px 0;
}
.score-big strong {
  display: block;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.score-big span {
  font-size: 11px;
  color: var(--muted);
}

/* DNA */
.dna-card { padding: 20px; }
.dna-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.dna-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--bg);
  color: var(--ink);
  display: grid;
  place-items: center;
}
.dna-head h3 { font-size: 15px; font-weight: 650; }
.dna-head span { font-size: 12px; color: var(--muted); }

.kv { list-style: none; }
.kv li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}
.kv li:last-child { border-bottom: 0; }
.kv .k { color: var(--muted); }
.kv .v { font-weight: 550; }
.kv .ok { color: var(--ok); }

.score-foot {
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  background: #F7F8FA;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--muted);
}
.score-foot strong { color: var(--ok); font-size: 14px; }

/* Type tiles */
.type-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 22px 14px;
  text-align: center;
  background: var(--surface);
  border-radius: var(--r-lg);
  box-shadow: var(--clay);
  transition: 0.2s ease;
}
.type-tile:hover { transform: translateY(-2px); }
.type-tile .type-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: var(--bg);
  color: var(--ink);
  display: grid;
  place-items: center;
}
.type-tile h3 { font-size: 14px; font-weight: 600; }
.type-tile p { font-size: 12px; color: var(--muted); }

/* Page shells */
.page-hero {
  padding: 28px 0 8px;
}
.page-hero h1 {
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 550;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.page-hero p { color: var(--muted); max-width: 52ch; }

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 8px;
}
.filter-chip {
  height: 36px;
  padding: 0 14px;
  border-radius: var(--pill);
  background: var(--surface);
  box-shadow: var(--clay);
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}
.filter-chip.active {
  background: var(--ink);
  color: #fff;
}

/* Property detail */
.detail-layout {
  display: grid;
  grid-template-columns: 1.55fr 0.9fr;
  gap: 20px;
  align-items: start;
}

.gallery {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--clay);
  background: var(--surface);
}
.gallery-main {
  height: 380px;
  position: relative;
}
.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 10px;
}
.gallery-thumbs img {
  height: 72px;
  width: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.panel {
  background: var(--surface);
  border-radius: var(--r-lg);
  box-shadow: var(--clay);
  padding: 20px;
}

.sticky-panel {
  position: sticky;
  top: 90px;
}
.detail-side {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
}

.panel h2, .panel h3 {
  font-size: 16px;
  font-weight: 650;
  margin-bottom: 12px;
}

.detail-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.detail-price {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}
.detail-sub {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 16px;
}

.action-stack { display: grid; gap: 8px; margin-top: 16px; }

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.compare-table th,
.compare-table td {
  text-align: left;
  padding: 12px 10px;
  border-bottom: 1px solid var(--line);
}
.compare-table th {
  color: var(--muted);
  font-weight: 500;
  font-size: 12px;
}
.compare-table td:first-child { color: var(--muted); }
.compare-table strong { font-weight: 650; }

.health li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  list-style: none;
}
.health li:last-child { border-bottom: 0; }
.check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--ok-soft);
  color: var(--ok);
  flex-shrink: 0;
}
.check.warn {
  background: var(--gold-soft);
  color: var(--gold);
}

.map-box {
  height: 220px;
  border-radius: 16px;
  background:
    linear-gradient(135deg, #E8ECF2, #D7DEE8),
    repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(255,255,255,0.35) 40px),
    repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(255,255,255,0.35) 40px);
  position: relative;
  overflow: hidden;
  margin-bottom: 12px;
}
.map-radius {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120px;
  height: 120px;
  transform: translate(-50%, -50%);
  border: 2px dashed rgba(14,20,36,0.18);
  border-radius: 50%;
}
.map-pin {
  position: absolute;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 16px rgba(14,20,36,0.25);
}
.map-pin.main { top: 50%; left: 50%; transform: translate(-50%, -50%); }
.map-pin.a { top: 28%; left: 30%; }
.map-pin.b { top: 62%; left: 70%; }
.map-pin.c { top: 34%; left: 74%; width: 28px; height: 28px; }

/* Coming soon blur */
.blur-zone { position: relative; margin-top: 8px; }
.blur-content {
  filter: blur(7px);
  opacity: 0.52;
  pointer-events: none;
  user-select: none;
}
.blur-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 40px 20px;
  z-index: 5;
}
.coming-card {
  width: min(520px, 100%);
  padding: 40px 36px;
  text-align: center;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid rgba(255,255,255,0.75);
  border-radius: var(--r-xl);
  box-shadow: var(--clay), 0 30px 80px rgba(14,20,36,0.1);
}
.coming-card .eyebrow {
  color: var(--ink);
  background: var(--gold-soft);
  border-color: rgba(184,147,54,0.25);
  margin-bottom: 14px;
}
.coming-card h2 {
  font-family: var(--display);
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 550;
  margin-bottom: 10px;
}
.coming-card .sub {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 22px;
}
.notify {
  display: flex;
  gap: 6px;
  padding: 5px;
  border-radius: var(--pill);
  background: #F0F1F5;
  margin-bottom: 10px;
}
.notify input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  padding: 0 12px;
  font-size: 13px;
}
.notify .btn { height: 42px; }
.note { font-size: 12px; color: var(--muted-2); }
.success {
  display: none;
  color: var(--ok);
  font-size: 13px;
  font-weight: 550;
  margin-bottom: 10px;
}
.success.show { display: block; }

.feature-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.feature-chips span {
  padding: 6px 11px;
  border-radius: var(--pill);
  background: #F0F1F5;
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
}

/* True Value beta disclaimer (soft, secondary) */
.tv-disclaimer {
  margin: 0;
  font-size: 11.5px;
  line-height: 1.45;
  color: var(--muted-2, #9AA0B0);
  font-weight: 400;
  letter-spacing: 0.01em;
}

/* Footer */
.site-footer {
  margin-top: 28px;
  background: var(--ink);
  color: rgba(255,255,255,0.65);
  padding: 28px 0 18px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 16px 24px;
  margin-bottom: 14px;
}
.footer-brand .brand-name { color: #fff; }
/* Inverted mark so the circle stays visible on the dark footer */
.footer-brand .brand-mark {
  background: #fff;
  color: var(--ink);
}
.footer-brand p {
  margin: 8px 0 0;
  max-width: 32ch;
  font-size: 12.5px;
  line-height: 1.45;
}
.footer-office {
  display: block;
  font-style: normal;
  margin: 12px 0 0;
  max-width: 36ch;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255,255,255,0.55);
}
.footer-office strong {
  display: block;
  margin-bottom: 4px;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
}
.footer-col h4 {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  margin: 0 0 8px;
}
.footer-col a {
  display: block;
  padding: 2px 0;
  font-size: 12.5px;
  line-height: 1.35;
}
.footer-col a:hover { color: #fff; }

/* Contact strip: one line on desktop */
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 0;
  padding: 10px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 12.5px;
}
.footer-contact a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  white-space: nowrap;
}
.footer-contact a:hover { color: #fff; }
.footer-sep {
  display: inline-block;
  margin: 0 10px;
  color: rgba(255,255,255,0.28);
  user-select: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 12px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 11.5px;
  line-height: 1.4;
}
.footer-bottom a { color: rgba(255,255,255,0.75); }
.footer-bottom a:hover { color: #fff; }
.footer-bottom strong { color: rgba(255,255,255,0.9); font-weight: 550; }

/* Motion */
@keyframes rise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.rise { animation: rise 0.7s ease both; }
.rise-2 { animation-delay: 0.08s; }
.rise-3 { animation-delay: 0.16s; }

/* Responsive */
/* Buy with Assist */
.assist-panel {
  position: relative;
  overflow: visible;
  background: var(--surface);
  border-radius: var(--r-xl);
  box-shadow: var(--clay);
  padding: 28px;
}

.assist-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 40%, rgba(184,147,54,0.08) 50%, transparent 60%);
  transform: translateX(-100%);
  animation: assist-scan 4.5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes assist-scan {
  0%, 20% { transform: translateX(-100%); }
  55%, 100% { transform: translateX(100%); }
}

.assist-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  align-items: stretch; /* right column matches full left (form) height on desktop */
}

.assist-layout > :first-child {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.assist-layout > :first-child .assist-form {
  flex: 1 1 auto;
}

.assist-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 550;
  color: var(--muted);
}

.assist-orb {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(184,147,54,0.45);
  animation: orb-pulse 1.8s ease-out infinite;
}

@keyframes orb-pulse {
  0% { box-shadow: 0 0 0 0 rgba(184,147,54,0.45); }
  70% { box-shadow: 0 0 0 10px rgba(184,147,54,0); }
  100% { box-shadow: 0 0 0 0 rgba(184,147,54,0); }
}

.assist-form {
  display: grid;
  gap: 10px;
}

.assist-field {
  display: grid;
  gap: 6px;
}

.assist-field label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.assist-field select,
.assist-field input:not([type="range"]):not([type="checkbox"]):not(.loc-picker-input) {
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #F7F8FA;
  padding: 0 12px;
  outline: none;
  color: var(--ink);
}

.assist-field select:focus,
.assist-field input:not([type="range"]):not([type="checkbox"]):not(.loc-picker-input):focus {
  border-color: rgba(14,20,36,0.28);
  background: #fff;
}

.assist-field-budget {
  gap: 0;
}

/* Assist budget: 2 sliders (min + max), ₹5 L – ₹5 Cr, text boxes always synced */
.budget-range {
  display: grid;
  gap: 14px;
  padding: 12px 12px 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #F7F8FA;
}
.budget-range-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
}
.budget-range-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.budget-range-value {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-align: right;
}
.budget-row {
  display: grid;
  gap: 6px;
  padding-top: 4px;
  border-top: 1px solid rgba(14, 20, 36, 0.06);
}
.budget-row:first-of-type { border-top: 0; padding-top: 0; }
.budget-row-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.budget-row-name {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  min-width: 32px;
}
.budget-manual-inputs {
  display: grid;
  grid-template-columns: minmax(72px, 100px) 88px;
  gap: 6px;
}
.budget-manual-inputs input,
.budget-manual-inputs select {
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  padding: 0 10px;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}
.budget-manual-inputs input:focus,
.budget-manual-inputs select:focus {
  outline: none;
  border-color: rgba(14, 20, 36, 0.35);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.2);
}
.budget-single-slider {
  display: grid;
  gap: 4px;
}
.budget-single-thumb {
  width: 100%;
  height: 28px;
  margin: 0;
  padding: 0;
  background: transparent;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
  cursor: pointer;
}
.budget-single-thumb::-webkit-slider-runnable-track {
  height: 6px;
  border-radius: 999px;
  background: #e2e5ee;
  border: none;
}
.budget-single-thumb::-moz-range-track {
  height: 6px;
  border-radius: 999px;
  background: #e2e5ee;
  border: none;
}
.budget-single-thumb::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #1a1f2e;
  box-shadow: 0 2px 8px rgba(14, 20, 36, 0.18);
  cursor: grab;
  margin-top: -7px;
}
.budget-single-thumb::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #1a1f2e;
  box-shadow: 0 2px 8px rgba(14, 20, 36, 0.18);
  cursor: grab;
}
.budget-single-thumb:active::-webkit-slider-thumb { cursor: grabbing; }
.budget-single-thumb:focus-visible::-webkit-slider-thumb {
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.35);
}
.budget-row[data-br-row="max"] .budget-single-thumb::-webkit-slider-thumb {
  border-color: #c9a227;
}
.budget-row[data-br-row="max"] .budget-single-thumb::-moz-range-thumb {
  border-color: #c9a227;
}
.budget-range-ends {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--muted);
}

.assist-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
  max-height: none; /* show all priorities - no inner scrollbar */
  overflow: visible;
  padding: 2px 0 0;
}

.assist-quick button {
  height: 32px;
  padding: 0 12px;
  border-radius: var(--pill);
  background: #F0F1F5;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  border: 1px solid transparent;
  white-space: nowrap;
  cursor: pointer;
  transition: background .12s, color .12s, border-color .12s;
}

.assist-quick button.active,
.assist-quick button:hover {
  background: var(--ink);
  color: #fff;
}

.assist-result {
  border-radius: var(--r-lg);
  background:
    radial-gradient(ellipse at 70% 20%, rgba(184,147,54,0.08), transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(90,120,180,0.06), transparent 45%),
    #F7F8FA;
  padding: 18px;
  min-height: 100%;
  height: 100%;
  position: relative;
  overflow: auto;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.assist-result.has-results {
  background: #F7F8FA;
}

.assist-result.thinking .thinking-line {
  display: block;
}

.assist-result.thinking .assist-idle { opacity: 0.35; }

.thinking-line {
  display: none;
  height: 3px;
  border-radius: var(--pill);
  margin-bottom: 14px;
  flex-shrink: 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  background-size: 200% 100%;
  animation: think-move 1.1s linear infinite;
}

@keyframes think-move {
  from { background-position: 100% 0; }
  to { background-position: -100% 0; }
}

.assist-idle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 16px;
  flex: 1 1 auto;
  min-height: 280px;
  padding: 12px 6px;
}

.assist-result.has-results .assist-idle { display: none; }

#assistMatches {
  flex: 1 1 auto;
  min-height: 0;
}

#assistStatus,
#assistWhy {
  flex-shrink: 0;
}

.assist-constellation {
  position: relative;
  width: 140px;
  height: 140px;
  margin: 0 auto;
}

.ac-ring {
  position: absolute;
  inset: 18px;
  border-radius: 50%;
  border: 1px solid rgba(184,147,54,0.28);
  animation: ac-spin 14s linear infinite;
}

.ac-ring-2 {
  inset: 4px;
  border-style: dashed;
  border-color: rgba(14,20,36,0.12);
  animation-duration: 22s;
  animation-direction: reverse;
}

.ac-core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 52px;
  height: 52px;
  margin: -26px 0 0 -26px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 28px rgba(14,20,36,0.28), 0 0 0 8px rgba(184,147,54,0.1);
  animation: ac-pulse 2.4s ease-in-out infinite;
}

.ac-star {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--gold);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  animation: ac-twinkle 2.2s ease-in-out infinite;
}

.ac-star.s1 { left: 12px; top: 28px; animation-delay: 0s; }
.ac-star.s2 { right: 16px; top: 22px; width: 10px; height: 10px; animation-delay: 0.35s; }
.ac-star.s3 { left: 8px; bottom: 34px; animation-delay: 0.7s; }
.ac-star.s4 { right: 10px; bottom: 28px; width: 7px; height: 7px; animation-delay: 1s; }
.ac-star.s5 { left: 48%; top: 4px; width: 6px; height: 6px; animation-delay: 0.5s; }
.ac-star.s6 { left: 46%; bottom: 8px; width: 9px; height: 9px; animation-delay: 1.2s; }

.ac-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(184,147,54,0.7);
  animation: ac-orbit 5s linear infinite;
}

.ac-particle.p1 { left: 50%; top: 50%; animation-duration: 5s; }
.ac-particle.p2 { left: 50%; top: 50%; animation-duration: 7s; animation-delay: -2s; }
.ac-particle.p3 { left: 50%; top: 50%; animation-duration: 9s; animation-delay: -4s; background: rgba(14,20,36,0.35); }

@keyframes ac-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes ac-pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 10px 28px rgba(14,20,36,0.28), 0 0 0 8px rgba(184,147,54,0.1); }
  50% { transform: scale(1.05); box-shadow: 0 12px 32px rgba(14,20,36,0.32), 0 0 0 14px rgba(184,147,54,0.08); }
}

@keyframes ac-twinkle {
  0%, 100% { opacity: 0.35; transform: scale(0.85); }
  50% { opacity: 1; transform: scale(1.15); }
}

@keyframes ac-orbit {
  from { transform: rotate(0deg) translateX(58px) rotate(0deg); }
  to { transform: rotate(360deg) translateX(58px) rotate(-360deg); }
}

.assist-idle-copy {
  max-width: 260px;
}

.assist-idle-copy strong {
  display: block;
  font-size: 15px;
  font-weight: 650;
  margin-bottom: 6px;
}

.assist-idle-copy p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 12px;
}

.assist-idle-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
}

.assist-idle-tags span {
  font-size: 10px;
  font-weight: 550;
  padding: 5px 9px;
  border-radius: var(--pill);
  background: rgba(255,255,255,0.9);
  color: var(--muted);
  box-shadow: var(--clay);
}

.assist-status {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 14px;
  min-height: 1.4em;
}

.assist-status[hidden] { display: none !important; }

.assist-match {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 10px;
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--clay);
  margin-bottom: 10px;
}

.assist-match img {
  width: 72px;
  height: 56px;
  object-fit: cover;
  border-radius: 10px;
}

.assist-match strong {
  display: block;
  font-size: 13px;
  margin-bottom: 2px;
}

.assist-match span {
  font-size: 12px;
  color: var(--muted);
}

.assist-match .price {
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.assist-why {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--muted);
  line-height: 1.55;
}

.assist-chip {
  position: relative;
  overflow: hidden;
}

.assist-chip::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,0.35) 50%, transparent 70%);
  animation: chip-shine 2.8s ease-in-out infinite;
}

@keyframes chip-shine {
  0%, 40% { transform: translateX(-120%); }
  70%, 100% { transform: translateX(120%); }
}

.tool-card .btn { margin-top: 12px; }

/* Benefit story cards */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.story-card {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 0;
  background: var(--surface);
  border-radius: var(--r-xl);
  box-shadow: var(--clay);
  overflow: hidden;
  min-height: 260px;
  animation: rise 0.75s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: var(--d, 0s);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

.story-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 2px 4px rgba(14,20,36,0.04),
    0 22px 52px rgba(184,147,54,0.12);
}

.story-stage {
  background:
    radial-gradient(120% 90% at 18% 8%, rgba(184,147,54,0.2), transparent 52%),
    radial-gradient(80% 70% at 90% 100%, rgba(184,147,54,0.08), transparent 46%),
    linear-gradient(165deg, #f7f3ea 0%, #eef0f4 100%);
  position: relative;
  min-height: 240px;
  display: grid;
  place-items: center;
  padding: 24px;
  overflow: hidden;
}

.story-stage::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(184,147,54,0.12);
  filter: blur(18px);
  top: 18%;
  left: 22%;
  animation: stage-glow 6.5s ease-in-out infinite;
  pointer-events: none;
}

.story-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 32%, rgba(255,255,255,0.42) 50%, transparent 68%);
  transform: translateX(-120%);
  animation: story-sheen 7s cubic-bezier(0.22, 1, 0.36, 1) infinite;
  animation-delay: var(--d, 0s);
  pointer-events: none;
}

@keyframes stage-glow {
  0%, 100% { transform: scale(1) translate(0, 0); opacity: 0.55; }
  50% { transform: scale(1.18) translate(8px, -6px); opacity: 1; }
}

@keyframes story-sheen {
  0%, 62% { transform: translateX(-120%); }
  82%, 100% { transform: translateX(120%); }
}

.story-copy {
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 100%;
  height: 100%;
  box-sizing: border-box;
}

.story-kicker {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8a6c22;
  background: rgba(184,147,54,0.14);
  border: 1px solid rgba(184,147,54,0.32);
  margin-bottom: 12px;
}

.story-copy h3 {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 550;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin: 0 0 10px;
  min-height: 2.5em; /* two lines max, keeps cards even */
}

.story-copy p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
  margin: 0 0 18px;
  min-height: 3em; /* ~2 lines; keeps buttons aligned */
  max-width: 36ch;
}

.story-copy .btn {
  align-self: flex-start;
  margin-top: auto; /* pin CTAs to same bottom edge */
}

.story-scene { width: 100%; max-width: 220px; position: relative; }

/* Verify scene */
.scene-verify { height: 176px; }
.sv-home {
  width: 168px;
  height: 142px;
  margin: 10px auto 0;
  position: relative;
  z-index: 1;
}
.sv-home-art {
  width: 100%;
  height: 100%;
  display: block;
  filter: drop-shadow(0 12px 18px rgba(14,20,36,0.12));
}
.sv-scan {
  position: absolute;
  left: 10%;
  right: 8%;
  top: 28px;
  z-index: 2;
  height: 2px;
  border-radius: var(--pill);
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  box-shadow: 0 0 16px rgba(184,147,54,0.55);
  animation: scan-y 3.6s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}
@keyframes scan-y {
  0%, 100% { top: 24px; opacity: 0.15; }
  50% { top: 148px; opacity: 1; }
}
.sv-badge, .sv-lock {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 28px;
  padding: 0 10px;
  border-radius: var(--pill);
  background: #fff;
  box-shadow: var(--clay);
  font-size: 11px;
  font-weight: 600;
}
.sv-badge {
  left: 8px;
  top: 18px;
  color: var(--ok);
  animation: pop-in 4.2s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}
.sv-lock {
  right: 4px;
  bottom: 18px;
  color: var(--ink);
  animation: pop-in 4.2s cubic-bezier(0.22, 1, 0.36, 1) infinite 0.45s;
}
@keyframes pop-in {
  0%, 8% { opacity: 0; transform: translateY(8px) scale(0.94); }
  22%, 72% { opacity: 1; transform: translateY(0) scale(1); }
  88%, 100% { opacity: 0.9; transform: translateY(0) scale(1); }
}

/* Price scene */
.scene-price { display: grid; gap: 12px; }
.sp-row {
  display: grid;
  grid-template-columns: 52px 1fr 52px;
  gap: 8px;
  align-items: center;
  font-size: 11px;
  color: var(--muted);
}
.sp-row i {
  display: block;
  height: 8px;
  border-radius: var(--pill);
  background: #dde1e8;
  position: relative;
  overflow: hidden;
}
.sp-row i::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  border-radius: inherit;
  background: var(--ink);
  animation: fill-bar 3.4s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}
.sp-row.ask i::after {
  background: linear-gradient(90deg, #c9a24a, var(--gold));
  animation-delay: 0.2s;
}
.sp-row i { --w: 70%; }
.sp-row i::after { animation-name: fill-bar; }
@keyframes fill-bar {
  0%, 8% { width: 0; }
  42%, 78% { width: var(--w); }
  100% { width: var(--w); }
}
.sp-verdict {
  margin-top: 4px;
  text-align: center;
  font-size: 12px;
  font-weight: 650;
  color: var(--ok);
  opacity: 0;
  animation: fade-verdict 3.4s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}
@keyframes fade-verdict {
  0%, 32% { opacity: 0; transform: translateY(6px); }
  48%, 82% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0.85; transform: translateY(0); }
}

/* Offer scene */
.scene-offer {
  display: grid;
  gap: 12px;
  justify-items: center;
}
.so-chip {
  padding: 6px 12px;
  border-radius: var(--pill);
  background: #fff;
  box-shadow: var(--clay);
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
}
.so-chip.low { animation: float-chip 4s cubic-bezier(0.45, 0, 0.55, 1) infinite; }
.so-chip.high { animation: float-chip 4s cubic-bezier(0.45, 0, 0.55, 1) infinite 0.55s; }
@keyframes float-chip {
  0%, 100% { transform: translateY(0); opacity: 0.7; }
  50% { transform: translateY(-7px); opacity: 1; }
}
.so-band {
  width: 100%;
  text-align: center;
  padding: 14px 12px;
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--clay);
  border: 1px solid rgba(184,147,54,0.25);
  animation: band-glow 4.2s ease-in-out infinite;
}
.so-band span {
  display: block;
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.so-band strong {
  font-size: 15px;
  font-weight: 700;
}
@keyframes band-glow {
  0%, 100% { box-shadow: var(--clay); border-color: rgba(184,147,54,0.22); }
  50% { box-shadow: 0 0 0 6px rgba(184,147,54,0.14), var(--clay); border-color: rgba(184,147,54,0.5); }
}

/* Demand scene */
.scene-demand {
  display: grid;
  place-items: center;
  gap: 18px;
}
.sd-pulse {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #e3c56a, var(--gold) 55%, #8a6c22);
  box-shadow: 0 0 0 6px rgba(184,147,54,0.16);
  position: relative;
}
.sd-pulse::before,
.sd-pulse::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(184,147,54,0.45);
  animation: ripple 2.8s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}
.sd-pulse::after { animation-delay: 0.9s; }
@keyframes ripple {
  0% { transform: scale(1); opacity: 0.65; }
  100% { transform: scale(2.35); opacity: 0; }
}
.sd-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  width: 100%;
  text-align: center;
}
.sd-stats b {
  display: block;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.sd-stats span {
  font-size: 10px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.story-card:not(.is-inview) .story-stage::before,
.story-card:not(.is-inview) .story-stage::after,
.story-card:not(.is-inview) .sv-scan,
.story-card:not(.is-inview) .sv-badge,
.story-card:not(.is-inview) .sv-lock,
.story-card:not(.is-inview) .sp-row i::after,
.story-card:not(.is-inview) .sp-verdict,
.story-card:not(.is-inview) .so-chip,
.story-card:not(.is-inview) .so-band,
.story-card:not(.is-inview) .sd-pulse::before,
.story-card:not(.is-inview) .sd-pulse::after {
  animation-play-state: paused;
}

@media (max-width: 980px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
  .grid-2, .detail-layout, .assist-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr 1fr; gap: 14px 18px; }
  .assist-layout { align-items: stretch; }
  .assist-result {
    height: auto;
    min-height: 280px;
  }
  .sticky-panel, .detail-side { position: static; }
  .search-float { grid-template-columns: 1fr; border-radius: 20px; }
  .search-field + .search-field { border-left: 0; border-top: 1px solid var(--line); }
  .search-float .btn-dark { width: 100%; height: 48px; }
  .story-grid { grid-template-columns: 1fr; }
  .story-card { grid-template-columns: 1fr; }
  .story-stage { min-height: 180px; }
  .hero-panel { min-height: 0; border-radius: 24px; }
  .hero-inner { padding: 32px 24px 22px; gap: 24px; }
}

@media (max-width: 720px) {
  .container { width: min(var(--max), calc(100% - 28px)); }
  .site-header { top: 10px; padding: 0 12px; margin-bottom: 4px; }
  .header-shell { padding: 8px 10px 8px 12px; gap: 10px; border-radius: 22px; }
  .brand-name { font-size: 11px; letter-spacing: 0.1em; }
  .nav { display: none; }
  .menu-btn { display: grid; }
  .header-actions .btn-ghost,
  .header-actions .btn-dark { display: none; }
  .header-actions .account { display: block; }

  .hero { padding: 12px 12px 0; }
  .hero-panel { border-radius: 22px; }
  .hero-inner {
    padding: 28px 18px 18px;
    gap: 22px;
    justify-content: flex-end;
  }
  .hero-content {
    text-align: left;
    max-width: none;
  }
  .hero-content h1 {
    font-size: clamp(28px, 8.5vw, 36px);
    max-width: 11ch;
    margin-bottom: 10px;
  }
  .hero-content p {
    font-size: 14px;
    max-width: none;
    line-height: 1.55;
  }
  .search-wrap { max-width: none; }
  .search-tabs {
    margin-bottom: 10px;
    gap: 8px;
    padding: 4px 2px 6px;
    margin-left: -2px;
    margin-right: -2px;
  }
  .search-tab {
    height: 34px;
    padding: 0 14px;
    font-size: 12px;
    font-weight: 650;
    background: rgba(255,255,255,0.24);
    border-color: rgba(255,255,255,0.38);
    color: #fff;
    box-shadow: 0 4px 14px rgba(0,0,0,0.12);
  }
  .search-tab.active {
    background: #fff;
    color: var(--ink);
    border-color: #fff;
    font-weight: 700;
    box-shadow:
      0 0 0 2px rgba(255,255,255,0.45),
      0 10px 24px rgba(0,0,0,0.28),
      0 0 28px rgba(255,255,255,0.3);
    transform: translateY(-1px);
  }
  .search-float {
    grid-template-columns: 1fr;
    border-radius: 18px;
    padding: 8px;
    gap: 0;
  }
  .search-field {
    min-height: 44px;
    padding: 0 12px;
  }
  .search-field + .search-field {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .search-float .btn-dark {
    width: 100%;
    height: 46px;
    margin-top: 6px;
    border-radius: 12px;
  }
  .section-tight.trust-section { padding: 12px 0 4px; }

  .section { padding: 36px 0; }
  .section-tight { padding: 20px 0; }
  .section-head {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 18px;
  }
  .section-head h2 { font-size: 22px; }
  .grid-3, .grid-4 { grid-template-columns: 1fr; gap: 12px; }
  .trust-row { grid-template-columns: 1fr 1fr; gap: 8px; }
  .prop-media { height: 190px; }
  .assist-panel { padding: 18px; border-radius: 22px; }
  .assist-match { grid-template-columns: 64px 1fr; }
  .assist-match .price { grid-column: 2; justify-self: start; }
  .story-copy { padding: 20px 18px 22px; }
  .story-copy h3 { font-size: 19px; }
  .story-copy .btn { width: 100%; }
  .coming-card { padding: 26px 18px; border-radius: 24px; }
  .notify { flex-direction: column; border-radius: 16px; }
  .notify .btn { width: 100%; }
  .blur-overlay { padding: 28px 14px; align-items: flex-start; padding-top: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 14px 16px; }
  .footer-brand { grid-column: 1 / -1; }
  .site-footer { padding: 22px 0 16px; margin-top: 20px; }
  .footer-contact {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 10px 0;
  }
  .footer-sep { display: none; }
  .footer-bottom { padding-top: 10px; gap: 6px; }
  .page-hero { padding: 20px 0 8px; }
  .page-hero h1 { font-size: 28px; }
  .filters { gap: 6px; }
  .filter-chip { height: 32px; padding: 0 12px; font-size: 12px; }
  .gallery-main { height: 220px; }
  .gallery-thumbs { grid-template-columns: repeat(4, 1fr); gap: 6px; }
  .gallery-thumbs img { height: 52px; }
  .detail-price { font-size: 26px; }
}


@media (prefers-reduced-motion: reduce) {
  .ac-ring, .ac-core, .ac-star, .ac-particle,
    .story-card, .story-stage::before, .story-stage::after, .assist-panel::before,
  .assist-orb, .assist-chip::after, .loans-track,
  .sv-scan, .sv-badge, .sv-lock, .sp-row i::after, .sp-verdict,
  .so-chip, .so-band, .sd-pulse::before, .sd-pulse::after {
    animation: none !important;
  }
  .loans-marquee { overflow-x: auto; -webkit-mask-image: none; mask-image: none; }
}


/* -- Live launch: coming soon badges -- */
.badge-soon {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #8a6c22;
  background: #fff8e6;
  border: 1px solid #f0e0a8;
  border-radius: 999px;
  padding: 2px 8px;
  vertical-align: middle;
  margin-left: 6px;
  white-space: nowrap;
}
.nav a .badge-soon { margin-left: 4px; font-size: 9px; padding: 1px 6px; }
.search-tab.is-soon {
  opacity: 0.72;
  position: relative;
}
.search-tab.is-soon::after {
  content: "Soon";
  display: inline-block;
  margin-left: 6px;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #8a6c22;
  background: #fff8e6;
  border-radius: 999px;
  padding: 1px 6px;
}
.soon-panel {
  border: 1px dashed #e0d4a8;
  background: linear-gradient(180deg, #fffdf6 0%, #fff 100%);
  border-radius: 16px;
  padding: 20px 18px;
}
.soon-panel h3 { margin: 0 0 6px; font-size: 16px; }
.soon-panel p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.5; }

.suggest-feature {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--clay);
  padding: 14px 16px 16px;
}
.suggest-kicker {
  display: block;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.suggest-feature strong {
  display: block;
  font-size: 15px;
  font-weight: 650;
  margin-bottom: 4px;
}
.suggest-feature p {
  margin: 0 0 12px;
  font-size: 13px;
  line-height: 1.45;
  color: var(--muted);
}
.suggest-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.suggest-actions .btn {
  flex: 1 1 auto;
  text-align: center;
  white-space: nowrap;
}
.suggest-feature--wide {
  margin-top: 22px;
  padding: 22px 24px;
  border-radius: 20px;
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 20px 28px;
  align-items: center;
}
.suggest-feature--wide strong {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 550;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.suggest-feature--wide p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  max-width: 52ch;
}
.suggest-feature--wide .suggest-kicker {
  font-size: 11px;
  margin-bottom: 6px;
}
.suggest-feature--wide .suggest-actions {
  flex-direction: column;
  min-width: 220px;
}
.suggest-feature--wide .suggest-actions .btn {
  width: 100%;
  height: 42px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 720px) {
  .suggest-feature--wide {
    grid-template-columns: 1fr;
    padding: 18px 16px;
  }
  .suggest-feature--wide .suggest-actions {
    flex-direction: row;
    min-width: 0;
  }
  .suggest-actions .btn { white-space: normal; }
}

.features-page {
  max-width: 820px;
  margin: 0 auto;
  padding: 28px 20px 64px;
}
.features-head { margin-bottom: 22px; }
.features-head h1 {
  font-family: var(--display);
  font-size: clamp(26px, 4vw, 34px);
  font-weight: 550;
  letter-spacing: -0.02em;
  margin: 0 0 6px;
}
.features-head p, .feature-lead, .feature-by, .features-empty {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}
.features-block { margin-bottom: 28px; }
.features-block h2 {
  font-size: 15px;
  font-weight: 650;
  margin: 0 0 10px;
}
.features-list { display: grid; gap: 10px; }
.feature-card, .feature-hero {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--clay);
  padding: 12px 14px;
}
.feature-vote button, .feature-vote a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  width: 56px;
  min-height: 56px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #f7f8fb;
  color: var(--ink);
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}
.feature-vote button.is-on, .feature-vote a.is-on {
  background: var(--gold-soft);
  border-color: rgba(184, 147, 54, 0.45);
  color: var(--ink);
}
.features-page .pill {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 650;
  background: #eef0f5;
  color: var(--muted);
}
.feature-meta { display: flex; gap: 8px; align-items: center; margin-bottom: 4px; }
.feature-official { font-size: 11px; font-weight: 650; color: var(--gold); letter-spacing: 0.04em; text-transform: uppercase; }
.feature-card h3 { margin: 0 0 4px; font-size: 16px; font-weight: 650; }
.feature-card h3 a, .features-back a { color: inherit; text-decoration: none; }
.feature-card h3 a:hover { color: var(--gold); }
.feature-card p { margin: 0 0 6px; font-size: 13px; color: var(--muted); line-height: 1.45; }
.feature-thread { font-size: 12px; font-weight: 600; color: var(--muted); text-decoration: none; }
.feature-thread:hover { color: var(--gold); }
.features-back { margin: 0 0 14px; font-size: 13px; }
.feature-hero { align-items: start; margin-bottom: 22px; }
.feature-hero h1 {
  font-family: var(--display);
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 550;
  margin: 0 0 8px;
}
.feature-lead { margin: 0 0 8px; }
.feature-form-card, .feature-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--clay);
  padding: 16px;
}
.feature-form { display: grid; gap: 10px; }
.feature-form-card > .feature-form { border: 0; box-shadow: none; padding: 0; }
.feature-form label { display: block; font-size: 12px; font-weight: 600; }
.feature-form label small { font-weight: 500; color: var(--muted); }
.feature-form input, .feature-form textarea {
  display: block; width: 100%; margin-top: 5px;
  padding: 9px 11px; border: 1px solid var(--line); border-radius: 10px;
  font: inherit; font-size: 14px;
}
.feature-form em { display: block; font-style: normal; color: #a33; font-size: 12px; margin-top: 4px; }
.feature-comments { display: grid; gap: 10px; }
.feature-comment {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
}
.feature-comment strong { font-size: 13px; }
.feature-comment time { margin-left: 8px; font-size: 12px; color: var(--muted); }
.feature-comment p { margin: 6px 0 0; font-size: 14px; line-height: 1.5; color: var(--ink-soft); white-space: pre-wrap; }
@media (max-width: 560px) {
  .feature-card, .feature-hero { grid-template-columns: 52px 1fr; }
}
.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #1b7f4e;
  background: #e8f7ef;
  border-radius: 999px;
  padding: 4px 10px;
}
.live-pill i {
  width: 7px; height: 7px; border-radius: 50%;
  background: #1b7f4e;
  display: inline-block;
  box-shadow: 0 0 0 3px rgba(27,127,78,.18);
}
/* remove pre-launch blur gate when class is off */
.blur-zone.is-live .blur-overlay { display: none !important; }
.blur-zone.is-live .blur-content {
  filter: none !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  user-select: auto !important;
}


/* Mobile nav drawer (premium shell) */
@media (max-width: 900px) {
  .site-header .nav {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 12px;
    right: 12px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: 0 16px 40px rgba(14,20,36,.12);
    padding: 10px;
    flex-direction: column;
    z-index: 40;
    gap: 2px;
  }
  .site-header .nav.open { display: flex; }
  .site-header .nav a {
    padding: 12px 14px;
    border-radius: 12px;
    width: 100%;
  }
  .site-header .header-shell { position: relative; }
  .filter-chip {
    display: inline-flex;
    align-items: center;
    height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: #fff;
    font-size: 13px;
    font-weight: 600;
    color: var(--muted);
    text-decoration: none;
  }
  .filter-chip.active, .filter-chip:hover {
    background: #0e1424;
    color: #fff;
    border-color: #0e1424;
  }
}

.flash-banner {
  max-width: var(--max);
  margin: 12px auto 0;
  padding: 10px 18px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.flash-ok { background: var(--ok-soft); color: var(--ok); }
.flash-warn { background: var(--gold-soft); color: #8a6c22; }
.flash-error { background: rgba(200, 60, 60, 0.1); color: #a33; }
.link-btn {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  font-weight: 700;
  text-decoration: underline;
  cursor: pointer;
  color: inherit;
}

.legal-doc {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 20px 80px;
  line-height: 1.7;
  color: var(--ink-soft);
}
.legal-doc h1 { font-family: var(--display); font-size: 34px; margin-bottom: 6px; }
.legal-doc .updated { color: var(--muted); font-size: 13px; margin-bottom: 32px; }
.legal-doc h2 { font-size: 19px; margin: 32px 0 10px; }
.legal-doc p, .legal-doc li { font-size: 15px; color: var(--muted); }
.legal-doc ul { padding-left: 20px; margin: 8px 0; }
.legal-doc li { margin: 4px 0; }
.legal-doc a { color: var(--gold); }

.contact-wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 28px 20px 56px;
}
.contact-head { margin-bottom: 18px; }
.contact-head h1 {
  font-family: var(--display);
  font-size: clamp(26px, 4vw, 34px);
  font-weight: 550;
  letter-spacing: -0.02em;
  margin: 0 0 6px;
}
.contact-head p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  max-width: 54ch;
}
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 16px;
  align-items: start;
}
.contact-aside {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--clay);
  overflow: hidden;
}
.contact-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-bottom: 1px solid var(--line);
}
.contact-fact {
  display: block;
  padding: 12px 14px;
  text-decoration: none;
  color: inherit;
}
.contact-fact + .contact-fact { border-left: 1px solid var(--line); }
.contact-fact span,
.contact-addr span {
  display: block;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 3px;
}
.contact-fact strong {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
}
.contact-fact:hover strong { color: var(--gold); }
.contact-addr {
  display: block;
  font-style: normal;
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--ink-soft);
  padding: 12px 14px 10px;
}
.contact-map { position: relative; }
.contact-map iframe {
  display: block;
  width: 100%;
  height: 220px;
  border: 0;
  background: #e9ecf2;
}
.contact-map-link {
  display: block;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 12px;
  color: var(--ink);
  text-decoration: none;
  border-top: 1px solid var(--line);
}
.contact-map-link:hover { color: var(--gold); }
.contact-form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--clay);
  padding: 18px 18px 16px;
}
.contact-form-card h2 {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 550;
  margin: 0 0 2px;
}
.contact-form-lead {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 13px;
}
.contact-form { display: grid; gap: 10px; }
.contact-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.contact-form label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
}
.contact-form label small {
  font-weight: 500;
  color: var(--muted);
  margin-left: 4px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  display: block;
  width: 100%;
  margin-top: 5px;
  padding: 9px 11px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  font: inherit;
  font-size: 14px;
  color: var(--ink);
}
.contact-form textarea { resize: vertical; min-height: 96px; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(184, 147, 54, 0.35);
  border-color: var(--gold);
}
.contact-form input[readonly] {
  background: #f3f4f7;
  color: var(--ink);
  cursor: default;
}
.contact-form em {
  display: block;
  font-style: normal;
  color: #a33;
  font-size: 12px;
  margin-top: 4px;
  font-weight: 500;
}
.contact-captcha {
  display: flex;
  align-items: flex-end;
  gap: 10px;
}
.contact-captcha label { flex: 1; }
.contact-captcha .btn { height: 40px; padding: 0 16px; white-space: nowrap; }
.contact-form .hp {
  position: absolute;
  left: -9999px;
  height: 0;
  overflow: hidden;
}
@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-map iframe { height: 200px; }
}
@media (max-width: 560px) {
  .contact-wrap { padding: 18px 16px 40px; }
  .contact-facts, .contact-row, .contact-captcha { grid-template-columns: 1fr; display: grid; }
  .contact-fact + .contact-fact { border-left: 0; border-top: 1px solid var(--line); }
  .contact-captcha .btn { width: 100%; }
}

/* Area display: seller unit + buyer conversions */
.area-block { margin-top: 12px; padding: 12px 14px; border-radius: 12px; border: 1px solid var(--line); background: #f7f8fb; }
.area-primary { font-size: 15px; }
.area-note { font-size: 11px; font-weight: 600; color: var(--muted); margin-left: 6px; text-transform: uppercase; letter-spacing: .03em; }
.area-conv { margin-top: 6px; font-size: 12px; color: var(--muted); line-height: 1.5; display: flex; flex-wrap: wrap; gap: 4px 6px; align-items: center; }
.area-dot { opacity: .5; }

/* -- India location picker (city + district, search + dropdown) -- */
.loc-picker { position: relative; width: 100%; min-width: 0; z-index: 5; }
.loc-picker-control {
  display: flex; align-items: center; gap: 0; width: 100%; min-width: 0;
  cursor: text;
}
.loc-picker-input {
  flex: 1; min-width: 0; width: 100%; border: 0; background: transparent;
  padding: 0; font: inherit; color: inherit; outline: none;
}
.loc-picker-toggle {
  flex: 0 0 auto; border: 0; background: transparent; color: var(--muted);
  padding: 4px 2px 4px 8px; cursor: pointer; display: inline-flex; align-items: center;
}
.loc-picker-toggle:hover { color: var(--ink); }
.loc-picker-menu {
  display: none;
  position: fixed;
  z-index: 10050;
  max-height: 280px;
  overflow: auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(16, 20, 36, .16);
  padding: 6px;
  box-sizing: border-box;
  /* top/left only change on a post-open re-sync (mobile scroll-into-view /
     keyboard), not on every keystroke, so this smooths that without making
     normal typing feel laggy. Transitions don't run from "auto", so the
     initial open per session stays instant. */
  transition: top .12s ease, left .12s ease;
}
.loc-picker-menu.is-open,
.loc-picker-menu:not([hidden]) {
  display: block;
}
.loc-picker-menu[hidden] { display: none !important; }
.loc-picker-item {
  display: flex; flex-direction: column; align-items: flex-start; gap: 2px;
  width: 100%; text-align: left; border: 0; background: transparent;
  padding: 10px 12px; border-radius: 10px; cursor: pointer; font: inherit; color: var(--ink);
}
.loc-picker-item:hover,
.loc-picker-item.is-active { background: #f3f5f9; }
.loc-picker-name { font-size: 14px; font-weight: 650; }
.loc-picker-name mark {
  background: #fff3bf; color: inherit; border-radius: 2px; padding: 0 1px;
}
.loc-picker-meta { display: flex; gap: 8px; align-items: center; font-size: 11px; color: var(--muted); }
.loc-picker-kind {
  display: inline-flex; padding: 1px 7px; border-radius: 999px;
  background: #eef1f6; font-weight: 700; letter-spacing: .02em; text-transform: uppercase;
  font-size: 10px; color: #4b5568;
}
.loc-picker-empty {
  padding: 14px 12px; font-size: 13px; color: var(--muted); text-align: center;
}

/* Buy page form: give picker a bordered field look */
.buy-search .loc-picker {
  border: 1px solid var(--line); border-radius: 12px; background: #fff; padding: 0 10px;
  min-height: 44px; display: flex; align-items: center;
}
.buy-search .loc-picker-input { padding: 11px 4px; }
.buy-search .loc-picker-control { width: 100%; }

/* List / assist standalone fields */
.loc-picker.loc-picker--boxed {
  border: 1px solid var(--line); border-radius: 12px; background: #fff; padding: 0 10px;
  min-height: 44px; display: flex; align-items: center;
}
.loc-picker.loc-picker--boxed .loc-picker-input { padding: 11px 4px; }

.search-field .loc-picker { flex: 1; min-width: 0; }
.search-field .loc-picker-control { width: 100%; }

/* Hero: allow dropdown stacking context */
.search-wrap { position: relative; z-index: 20; overflow: visible; }
.search-float { overflow: visible; position: relative; z-index: 21; }
.search-field { overflow: visible; position: relative; }

/* Mobile nav: account/auth block pinned to the top of the dropdown */
.nav-mobile-account, .nav .nav-divider { display: none; }

.nav-account-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: 12px;
  margin-bottom: 6px;
  background: rgba(14,20,36,0.04);
}
.nav-account-card:hover { background: rgba(14,20,36,0.07); }
.nav-account-meta { display: flex; flex-direction: column; line-height: 1.25; text-align: left; }
.nav-account-meta strong { font-size: 14px; font-weight: 650; }
.nav-account-meta span { font-size: 11px; color: var(--muted); }

@media (max-width: 900px) {
  .nav-mobile-account { display: block; padding: 2px 2px 8px; }
  .nav .nav-divider { display: block; height: 1px; background: var(--line); margin: 6px 2px; }
}

/* -- Home loans / Astrosia Capital partner -- */
.loans-section { padding-top: 0; padding-bottom: 28px; }
.loans-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-xl);
  background:
    radial-gradient(900px 280px at 100% 0%, rgba(184,147,54,0.14), transparent 55%),
    linear-gradient(180deg, #fffdf8 0%, #ffffff 58%);
  border: 1px solid rgba(184,147,54,0.22);
  box-shadow: var(--clay);
  padding: 28px 28px 22px;
}
.loans-panel .section-head { display: block; margin-bottom: 0; }
.loans-copy { max-width: 640px; }
.loans-kicker {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.loans-kicker svg { width: 14px; height: 14px; }
.loans-copy h2 {
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 650;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 10px;
}
.loans-copy p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  max-width: 46ch;
}
.loans-copy a.loans-inline {
  color: var(--ink);
  font-weight: 650;
  border-bottom: 1px solid rgba(184,147,54,0.55);
}
.loans-copy a.loans-inline:hover { color: var(--gold); }
.loans-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 18px 0 20px;
}
.loans-stats strong {
  display: block;
  font-size: 18px;
  font-weight: 750;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.loans-stats span {
  display: block;
  margin-top: 2px;
  font-size: 11px;
  color: var(--muted);
  font-weight: 500;
}
.loans-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.loans-cta .btn { height: 42px; }
.loans-host {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}
.loans-marquee {
  position: relative;
  overflow: hidden;
  margin-top: 22px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 48px, #000 calc(100% - 48px), transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 48px, #000 calc(100% - 48px), transparent 100%);
}
.loans-track {
  display: flex;
  width: max-content;
  animation: loans-scroll 32s linear infinite;
}
.loans-marquee:hover .loans-track { animation-play-state: paused; }
.loans-set {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-right: 10px;
}
.loans-logo {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 130px;
  min-height: 62px;
  padding: 10px 12px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 1px 2px rgba(14,20,36,0.03);
}
.loans-logo img {
  max-width: 100%;
  max-height: 32px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.loans-more {
  display: inline-block;
  margin: 14px 4px 0;
}
.loans-note {
  margin: 12px 4px 0;
  font-size: 11.5px;
  line-height: 1.45;
  color: var(--muted-2);
}
@keyframes loans-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (max-width: 860px) {
  .loans-panel { padding: 22px 18px 18px; border-radius: 24px; }
  .loans-copy p { max-width: none; }
  .loans-marquee {
    margin-left: -18px;
    margin-right: -18px;
    width: calc(100% + 36px);
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%);
  }
  .loans-set { padding-left: 18px; }
  .loans-logo { width: 108px; min-height: 52px; }
  .loans-track { animation-duration: 22s; }
}

/* -- 59 Interior -- */
.interior-section { padding-top: 0; padding-bottom: 20px; }
.interior-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-xl);
  padding: 0;
  color: var(--ink);
  background:
    radial-gradient(900px 280px at 100% 0%, rgba(184,147,54,0.14), transparent 55%),
    linear-gradient(180deg, #fffdf8 0%, #ffffff 58%);
  border: 1px solid rgba(184,147,54,0.22);
  box-shadow: var(--clay);
}
.interior-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 0;
  align-items: stretch;
}
.interior-copy { padding: 20px 22px; }
.interior-kicker {
  display: inline-flex;
  align-items: center;
  height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  background: transparent;
  margin-bottom: 8px;
}
.interior-panel .interior-kicker {
  padding: 0;
  height: auto;
}
.interior-kicker-light,
.interior-page-hero-copy .interior-kicker {
  background: #e4c04a;
  color: #0E1424;
  padding: 0 10px;
  height: 24px;
  font-weight: 800;
}
.interior-copy h2 {
  font-family: var(--display);
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 550;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin: 0 0 6px;
  color: var(--ink);
}
.interior-copy h2 em { font-style: normal; color: var(--gold); }
.interior-copy > p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.45;
  max-width: 46ch;
}
.interior-why {
  background: #fff;
  color: var(--ink);
  border-radius: 14px;
  padding: 10px 12px 9px;
  border: 1px solid rgba(184,147,54,0.22);
  margin-bottom: 12px;
}
.interior-why h3 { margin: 0 0 6px; font-size: 13px; color: var(--ink); }
.interior-why ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 6px; }
.interior-why li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12.5px;
  line-height: 1.4;
  color: var(--ink);
}
.interior-check {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  display: grid;
  place-items: center;
  margin-top: 1px;
}
.interior-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.interior-chips span {
  height: 28px;
  padding: 0 11px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 650;
  color: #fff;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
}
.interior-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}
.interior-stats strong { display: block; font-size: 14px; font-weight: 750; }
.interior-stats span {
  display: block;
  margin-top: 2px;
  font-size: 11px;
  color: rgba(255,255,255,0.65);
}
.interior-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  height: 26px;
  padding: 0 10px;
  border-radius: 8px;
  background: #f0d78a;
  color: #3a2c0a;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.02em;
}
.interior-brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: #16384c;
  color: #f0d78a;
  display: grid;
  place-items: center;
  font-weight: 750;
  font-size: 13px;
  flex-shrink: 0;
}
.interior-verified { color: var(--ok); flex-shrink: 0; display: inline-flex; }
.interior-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.interior-cta-row { flex-direction: row; flex-wrap: wrap; align-items: center; }
.interior-cta-btn {
  background: #c0392b;
  border-color: #c0392b;
  color: #fff;
  height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  font-weight: 700;
}
.interior-cta-btn:hover { filter: brightness(1.06); color: #fff; }
.interior-quote {
  color: var(--ink);
  font-weight: 650;
  font-size: 13px;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(184,147,54,0.55);
}
.interior-page-hero-copy .interior-quote { color: #ffe4c4; text-decoration-color: rgba(255,228,196,0.7); }
.interior-quote:hover { color: var(--gold); }
.interior-page-hero-copy .interior-quote:hover { color: #fff; }

.interior-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 96px 96px;
  gap: 6px;
  padding: 16px 16px 16px 0;
  align-content: center;
}
.interior-shot {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 12px;
  height: 96px;
}
.interior-shot img {
  width: 100%;
  height: 96px;
  max-width: none;
  object-fit: cover;
  object-position: center;
  display: block;
}
.interior-shot figcaption {
  position: absolute;
  left: 10px;
  bottom: 10px;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(14,20,36,0.72);
  color: #fff;
  font-size: 11px;
  font-weight: 650;
}
.interior-shot-1 { grid-row: auto; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.interior-page { padding: 0 0 72px; }
body.page-interior .site-header { margin-bottom: 18px; }
.interior-page-hero-wrap {
  padding: 20px 20px 0;
}
.interior-page-hero {
  position: relative;
  width: min(var(--max), 100%);
  margin: 0 auto 32px;
  min-height: 280px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  border-radius: var(--r-xl);
  box-shadow: var(--clay);
}
.interior-page-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}
.interior-page-hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,36,51,0.15) 0%, rgba(15,36,51,0.78) 100%);
}
.interior-page-hero-copy {
  position: relative;
  z-index: 1;
  padding: 40px 24px 28px;
  color: #fff;
  max-width: 720px;
  width: 100%;
  box-sizing: border-box;
}
.interior-page-hero-copy h1 {
  font-family: var(--display);
  font-size: clamp(30px, 4.4vw, 46px);
  letter-spacing: -0.03em;
  margin: 0 0 10px;
  color: #fff;
}
.interior-page-hero-copy p {
  margin: 0 0 18px;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255,255,255,0.86);
  max-width: 52ch;
}
.interior-looks { margin-bottom: 28px; }
.interior-look-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.interior-look-card {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--clay);
  border: 1px solid var(--line);
}
.interior-look-card img {
  width: 100%;
  height: 168px;
  max-width: none;
  object-fit: cover;
  object-position: center;
  display: block;
}
.interior-look-card figcaption { padding: 10px 12px 12px; }
.interior-look-card strong { display: block; font-size: 14px; }
.interior-look-card span { display: block; margin-top: 2px; font-size: 12px; color: var(--muted); }
.interior-steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 0 0 32px;
  padding: 0;
}
.interior-steps li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow: var(--clay);
}
.interior-steps strong { display: block; font-size: 14px; margin-bottom: 4px; }
.interior-steps span { font-size: 13px; color: var(--muted); line-height: 1.45; }
.interior-vendor-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-bottom: 28px;
}
.interior-vendor-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--clay);
}
.interior-vendor-body { padding: 16px; }
.interior-vendor-top {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}
.interior-vendor-card h2 {
  margin: 0;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.interior-vendor-loc { margin: 4px 0 0; font-size: 13px; color: var(--muted); }
.interior-areas { margin: 0; padding: 0; list-style: none; display: flex; flex-wrap: wrap; gap: 6px; }
.interior-areas li {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 999px;
  background: #f4f1e8;
  color: #5c4a22;
}
.interior-areas-note { margin: 10px 0 12px; font-size: 12px; color: var(--muted); line-height: 1.45; }
.interior-vendor-body .btn { margin-top: 4px; }
.interior-forms {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 16px;
  align-items: start;
}
.interior-forms .contact-form-card { margin: 0; }
@media (max-width: 980px) {
  .interior-layout { grid-template-columns: 1fr; }
  .interior-mosaic {
    padding: 0 16px 16px;
    grid-template-rows: 88px 88px;
  }
  .interior-shot, .interior-shot img { height: 88px; }
  .interior-look-grid, .interior-steps { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .interior-copy { padding: 18px 16px 4px; }
  .interior-cta-btn { width: 100%; justify-content: center; }
  .interior-forms { grid-template-columns: 1fr; }
  .interior-page-hero { min-height: 240px; }
}
@media (max-width: 720px) {
  body.page-interior .site-header { margin-bottom: 12px; }
  .interior-page-hero-wrap { padding: 16px 12px 0; }
  .interior-page-hero { border-radius: 22px; }
  .interior-page-hero-copy { padding: 32px 16px 22px; }
}
@media (max-width: 560px) {
  .interior-look-grid, .interior-steps { grid-template-columns: 1fr; }
}

/* Custom 404 */
.error-404 {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0 72px;
}
.error-404-panel {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.error-404-kicker {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  background: rgba(255,255,255,.8);
  border: 1px solid var(--line);
  padding: 6px 12px;
  border-radius: var(--pill);
  margin-bottom: 8px;
}
.error-404-code {
  font-family: var(--display);
  font-size: clamp(72px, 16vw, 120px);
  font-weight: 550;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin: 8px 0 6px;
}
.error-404 h1 {
  font-family: var(--display);
  font-weight: 550;
  font-size: clamp(26px, 4.5vw, 36px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  color: var(--ink);
}
.error-404-lead {
  font-size: 16px;
  color: var(--muted);
  margin: 0 auto 22px;
  max-width: 48ch;
  line-height: 1.65;
}
.error-404-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
}
.error-404-support {
  text-align: left;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--clay);
  padding: 22px 22px 18px;
}
.error-404-support h2 {
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 550;
  margin: 0 0 8px;
  color: var(--ink);
}
.error-404-support p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}
.error-404-org {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 14px;
  margin: 0 0 14px !important;
  color: var(--ink) !important;
}
.error-404-org strong { font-size: 16px; }
.error-404-org a {
  color: var(--gold);
  font-weight: 600;
  font-size: 14px;
}
.error-404-org a:hover { text-decoration: underline; }
.error-404-reach {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.error-404-reach-btn {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #f7f8fb;
  text-decoration: none;
}
.error-404-reach-btn span {
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.error-404-reach-btn strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}
.error-404-reach-btn:hover {
  border-color: var(--gold);
  background: var(--gold-soft);
}
.error-404-reach-btn:hover strong { color: var(--gold); }
@media (max-width: 560px) {
  .error-404 { width: calc(100% - 32px); padding: 18px 0 48px; }
  .error-404-actions .btn { flex: 1 1 140px; }
  .error-404-reach { grid-template-columns: 1fr; }
}

