:root {
  --bg: #0a1018;
  --bg-soft: #0f1626;
  --panel: #131c2e;
  --panel-soft: #182238;
  --blue: #1a4fd4;
  --blue-soft: #3d6ef0;
  --red: #d4183d;
  --red-soft: #ff5c7a;
  --gold: #e8b84a;
  --gold-soft: #f5d78a;
  --teal: #3ecfb4;
  --teal-soft: #6ee7d6;
  --teal-dim: rgba(62, 207, 180, 0.14);
  --white: #f4f7fb;
  --muted: #8fa0be;
  --muted-soft: #b8c5da;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --radius: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --shadow-card: 0 16px 36px rgba(0, 0, 0, 0.38);
  --shadow-pop: 0 28px 60px rgba(0, 0, 0, 0.48);
  color-scheme: dark;
}

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

html {
  scroll-behavior: smooth;
}

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

body {
  position: relative;
  font-family: "Inter", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--white);
  background:
    radial-gradient(ellipse 80% 50% at 10% 0%, rgba(62, 207, 180, 0.1), transparent 50%),
    radial-gradient(ellipse 60% 40% at 90% 5%, rgba(26, 79, 212, 0.22), transparent 45%),
    linear-gradient(180deg, #0a1018 0%, #0c1220 52%, #0a1018 100%);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}

body.lang-km {
  font-family: "Noto Sans Khmer", "Khmer OS Siemreap", "Inter", system-ui,
    sans-serif;
}

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

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

button {
  font: inherit;
  color: inherit;
  cursor: pointer;
}

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

.page-glow {
  position: fixed;
  inset: -10%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 30%, rgba(62, 207, 180, 0.12), transparent 42%),
    radial-gradient(circle at 78% 65%, rgba(26, 79, 212, 0.14), transparent 46%);
  filter: blur(48px);
}

main {
  position: relative;
  z-index: 1;
}

/* ----------------------------------------------------------------
   Nav
   ---------------------------------------------------------------- */

.site-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.1rem clamp(1rem, 4vw, 2.4rem);
  background: rgba(7, 11, 22, 0.78);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo {
  width: 160px;
  height: auto;
  display: block;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.5));
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-left: auto;
  font-size: 0.92rem;
  font-weight: 600;
}

.primary-nav a {
  position: relative;
  color: var(--muted-soft);
  padding: 0.4rem 0;
  transition: color 180ms ease;
}

.primary-nav a:hover {
  color: var(--white);
}

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  opacity: 0;
  transform: scaleX(0.4);
  transform-origin: center;
  transition: 180ms ease;
}

.primary-nav a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.language-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
}

.language-toggle button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 0;
  border-radius: 999px;
  padding: 5px 10px;
  background: transparent;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  transition: 180ms ease;
}

.language-toggle button.active {
  color: #080b13;
  background: var(--gold);
  box-shadow: 0 8px 24px rgba(246, 200, 95, 0.22);
}

.flag {
  display: inline-block;
  width: 20px;
  height: 13px;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.35);
  flex-shrink: 0;
  overflow: hidden;
}

.nav-cta {
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: var(--gold);
  color: #0a0e1b;
  font-size: 0.88rem;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(246, 200, 95, 0.25);
  transition: transform 180ms ease, box-shadow 180ms ease;
  white-space: nowrap;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(246, 200, 95, 0.35);
}

@media (max-width: 900px) {
  .primary-nav {
    display: none;
  }
}

@media (max-width: 520px) {
  .nav-cta {
    display: none;
  }
  .brand-logo {
    width: 120px;
  }
}

/* ----------------------------------------------------------------
   Hero
   ---------------------------------------------------------------- */

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3rem);
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 5rem) clamp(1.2rem, 4vw, 2.4rem)
    clamp(2rem, 5vw, 3.5rem);
}

.hero-content {
  max-width: 560px;
}

.eyebrow {
  display: inline-block;
  padding: 0.42rem 0.85rem;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--gold-soft);
  background: rgba(246, 200, 95, 0.13);
  border: 1px solid rgba(246, 200, 95, 0.25);
}

.hero-title {
  margin: 0.9rem 0 0.6rem;
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.hero-title .accent {
  background: linear-gradient(
    120deg,
    var(--teal) 0%,
    var(--teal-soft) 55%,
    var(--gold-soft) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lede {
  margin: 0 0 1.5rem;
  font-size: clamp(1rem, 1.3vw, 1.12rem);
  color: var(--muted-soft);
}

.hero-meta {
  margin: 0.75rem 0 0;
  font-size: 0.84rem;
  color: var(--muted);
}

/* ----------------------------------------------------------------
   Hero CTAs
   ---------------------------------------------------------------- */

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 0.4rem 0 0;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 1.5rem;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.01em;
  font-size: 0.98rem;
  text-decoration: none;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: #2a1f08;
  box-shadow: 0 14px 32px rgba(246, 200, 95, 0.32);
  transition: transform 0.15s, box-shadow 0.15s;
}

.hero-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 38px rgba(246, 200, 95, 0.42);
}

.hero-cta__arrow {
  width: 18px;
  height: 18px;
}

.hero-cta--ghost {
  background: rgba(62, 207, 180, 0.08);
  color: var(--white);
  border: 1px solid rgba(62, 207, 180, 0.35);
  box-shadow: none;
}

.hero-cta--ghost:hover {
  background: rgba(62, 207, 180, 0.16);
  border-color: rgba(62, 207, 180, 0.6);
  box-shadow: 0 10px 24px rgba(62, 207, 180, 0.18);
}

@media (max-width: 520px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-cta {
    justify-content: center;
  }
}

/* ----------------------------------------------------------------
   Waitlist form (legacy — form removed but classes kept harmless)
   ---------------------------------------------------------------- */

.waitlist-form {
  display: flex;
  gap: 0.5rem;
  padding: 0.4rem;
  background: rgba(7, 11, 22, 0.7);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
}

.waitlist-form input {
  flex: 1 1 auto;
  min-width: 0;
  padding: 0.7rem 1rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--white);
  font-size: 0.95rem;
}

.waitlist-form input::placeholder {
  color: rgba(155, 168, 198, 0.7);
}

.waitlist-form input:focus {
  outline: none;
}

.waitlist-form button {
  position: relative;
  flex: 0 0 auto;
  padding: 0.7rem 1.25rem;
  border: 0;
  border-radius: 999px;
  background: var(--gold);
  color: #0a0e1b;
  font-weight: 800;
  font-size: 0.92rem;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(246, 200, 95, 0.28);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.waitlist-form button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(246, 200, 95, 0.4);
}

.waitlist-form .cta-success {
  display: none;
}

.waitlist-form.is-success {
  border-color: rgba(124, 207, 144, 0.5);
  background: rgba(35, 70, 50, 0.55);
}

.waitlist-form.is-success input {
  display: none;
}

.waitlist-form.is-success button {
  flex: 1 1 auto;
  background: rgba(124, 207, 144, 0.18);
  color: #d3f5dd;
  box-shadow: none;
  cursor: default;
}

.waitlist-form.is-success .cta-label {
  display: none;
}

.waitlist-form.is-success .cta-success {
  display: inline;
}

.waitlist-form.large {
  padding: 0.5rem;
}

.waitlist-form.large input,
.waitlist-form.large button {
  padding: 0.85rem 1.4rem;
  font-size: 1rem;
}

@media (max-width: 560px) {
  .waitlist-form {
    flex-direction: column;
    border-radius: 18px;
  }
  .waitlist-form input,
  .waitlist-form button {
    border-radius: 12px;
  }
}

/* ----------------------------------------------------------------
   Hero map preview
   ---------------------------------------------------------------- */

.hero-preview {
  position: relative;
}

.preview-card {
  padding: 1.4rem;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025)),
    rgba(7, 11, 22, 0.78);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-pop);
}

.preview-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1.1rem;
  font-size: 0.78rem;
  color: var(--muted);
}

.preview-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.65rem;
  border-radius: 4px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal-soft);
  background: var(--teal-dim);
  border: 1px solid rgba(62, 207, 180, 0.3);
}

.preview-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 4px rgba(62, 207, 180, 0.18);
  animation: pulse 1.8s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.25);
    opacity: 0.85;
  }
}

.preview-category {
  color: var(--muted-soft);
  font-weight: 600;
}

.map-leaflet {
  height: 280px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(62, 207, 180, 0.28);
  background: #0c1424;
  z-index: 0;
}

.map-leaflet .leaflet-control-attribution {
  background: rgba(10, 16, 24, 0.85) !important;
  color: var(--muted) !important;
  font-size: 0.62rem !important;
  padding: 2px 6px !important;
}

.map-leaflet .leaflet-control-attribution a {
  color: var(--teal-soft) !important;
}

.price-marker {
  background: transparent !important;
  border: none !important;
}

.price-marker span {
  display: inline-block;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: var(--teal);
  color: #0a1018;
  font-size: 0.72rem;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.price-marker--dim span {
  background: rgba(143, 160, 190, 0.35);
  color: var(--muted-soft);
  border-color: transparent;
}

.map-results {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
  margin-top: 0.85rem;
}

.map-result {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.6rem 0.7rem;
  border-radius: 12px;
  background: rgba(7, 11, 22, 0.55);
  border: 1px solid var(--line);
}

.map-result.highlight {
  border-color: rgba(62, 207, 180, 0.4);
  background: var(--teal-dim);
}

.result-type {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.map-result strong {
  font-size: 0.95rem;
  color: var(--white);
}

.map-result.highlight strong {
  color: var(--teal-soft);
}

@media (max-width: 860px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-content {
    max-width: none;
    margin: 0 auto;
  }
  .waitlist-form {
    margin-inline: auto;
    max-width: 460px;
  }
  .hero-preview {
    max-width: 520px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .map-results {
    grid-template-columns: 1fr;
  }
}

/* ----------------------------------------------------------------
   Property marquee
   ---------------------------------------------------------------- */

.property-marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(15, 22, 38, 0.6);
  padding: 0.85rem 0;
}

.marquee-track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  animation: marquee 32s linear infinite;
}

.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted-soft);
  white-space: nowrap;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ----------------------------------------------------------------
   Section base
   ---------------------------------------------------------------- */

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) clamp(1.2rem, 4vw, 2.4rem);
}

.section-tinted {
  max-width: none;
  background: rgba(13, 19, 36, 0.55);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-tinted > * {
  max-width: 1180px;
  margin-inline: auto;
}

.section-head {
  max-width: 660px;
  margin: 0 auto 2.4rem;
  text-align: center;
}

.kicker {
  display: inline-block;
  margin-bottom: 0.85rem;
  padding: 0.28rem 0.65rem;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-soft);
  background: var(--teal-dim);
  border-left: 3px solid var(--teal);
}

.section-head h2 {
  margin: 0 0 0.6rem;
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.15;
}

.section-head h2 .nowrap {
  white-space: nowrap;
}

.section-head p {
  margin: 0;
  color: var(--muted-soft);
  font-size: 1.02rem;
}

/* ----------------------------------------------------------------
   Features grid
   ---------------------------------------------------------------- */

.features-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.feature {
  padding: 1.4rem 1.2rem 1.3rem;
  border-radius: var(--radius);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)),
    rgba(10, 16, 24, 0.72);
  border: 1px solid var(--line);
  border-left: 3px solid transparent;
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.feature:hover {
  transform: translateY(-2px);
  border-left-color: var(--teal);
  border-color: rgba(62, 207, 180, 0.22);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.32);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 0.75rem;
  border-radius: 8px;
  color: var(--teal);
  background: var(--teal-dim);
  border: 1px solid rgba(62, 207, 180, 0.25);
}

.feature-icon svg {
  width: 20px;
  height: 20px;
}

.feature h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}

.feature p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted-soft);
  line-height: 1.55;
}

@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 580px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

/* ----------------------------------------------------------------
   Categories grid
   ---------------------------------------------------------------- */

.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.category-card {
  padding: 1.2rem 1.1rem;
  border-radius: var(--radius);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.012)),
    rgba(7, 11, 22, 0.6);
  border: 1px solid var(--line);
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.category-card:hover {
  transform: translateY(-2px);
  border-color: rgba(246, 200, 95, 0.28);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.3);
}

.category-icon {
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: 0.55rem;
}

.category-card h3 {
  margin: 0 0 0.25rem;
  font-size: 1rem;
  font-weight: 700;
}

.category-card p {
  margin: 0;
  font-size: 0.86rem;
  color: var(--muted-soft);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .categories-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .categories-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 400px) {
  .categories-grid {
    grid-template-columns: 1fr;
  }
}

/* ----------------------------------------------------------------
   Compare section
   ---------------------------------------------------------------- */

.compare-grid,
.split-compare {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  max-width: 880px;
  margin: 0 auto;
}

.compare-card {
  padding: 1.5rem 1.3rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
}

.compare-card h3 {
  margin: 0 0 1rem;
  font-size: 1.1rem;
  font-weight: 800;
}

.compare-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.compare-card li {
  position: relative;
  padding-left: 1.4rem;
  font-size: 0.93rem;
  color: var(--muted-soft);
  line-height: 1.45;
}

.compare-bad {
  background: rgba(7, 11, 22, 0.55);
}

.compare-bad li::before {
  content: "✕";
  position: absolute;
  left: 0;
  color: var(--red-soft);
  font-weight: 700;
}

.compare-good {
  background:
    radial-gradient(circle at 80% 0%, rgba(246, 200, 95, 0.12), transparent 55%),
    rgba(7, 11, 22, 0.65);
  border-color: rgba(246, 200, 95, 0.32);
}

.compare-good h3 {
  color: var(--gold-soft);
}

.compare-good li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #5eea7a;
  font-weight: 700;
}

@media (max-width: 640px) {
  .compare-grid,
  .split-compare {
    grid-template-columns: 1fr;
  }
}

/* ----------------------------------------------------------------
   Steps
   ---------------------------------------------------------------- */

.steps {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 880px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.steps li {
  padding: 1.6rem 1.3rem 1.4rem;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.012)),
    rgba(7, 11, 22, 0.6);
  border: 1px solid var(--line);
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 0.75rem;
  border-radius: 12px;
  background: rgba(49, 85, 201, 0.2);
  color: #c8d6ff;
  font-weight: 800;
  font-size: 0.95rem;
  border: 1px solid rgba(49, 85, 201, 0.4);
}

.steps h3 {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
  font-weight: 700;
}

.steps p {
  margin: 0;
  color: var(--muted-soft);
  font-size: 0.95rem;
}

@media (max-width: 800px) {
  .steps {
    grid-template-columns: 1fr;
  }
}

/* ----------------------------------------------------------------
   Owners section
   ---------------------------------------------------------------- */

.owners-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.85fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.owners-content h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.15;
}

.owners-content > p {
  margin: 0 0 1.2rem;
  color: var(--muted-soft);
  font-size: 1rem;
}

.owners-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.owners-list li {
  position: relative;
  padding-left: 1.4rem;
  font-size: 0.95rem;
  color: var(--muted-soft);
}

.owners-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.listing-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
    rgba(7, 11, 22, 0.75);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-pop);
}

.listing-badge {
  position: absolute;
  margin: 0.85rem;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #b4f0c1;
  background: rgba(76, 200, 110, 0.15);
  border: 1px solid rgba(76, 200, 110, 0.35);
  z-index: 1;
}

.owners-visual {
  position: relative;
}

.listing-photo {
  height: 140px;
  background:
    linear-gradient(135deg, rgba(3, 46, 161, 0.5), rgba(224, 0, 37, 0.25)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent);
}

.listing-body {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 1.1rem;
}

.listing-body strong {
  font-size: 1rem;
}

.listing-price {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--gold-soft);
}

.listing-meta {
  font-size: 0.82rem;
  color: var(--muted);
}

.listing-map-strip {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.1rem;
  background: rgba(49, 85, 201, 0.15);
  border-top: 1px solid rgba(49, 85, 201, 0.3);
  font-size: 0.82rem;
  color: #c8d6ff;
}

.mini-pin {
  width: 10px;
  height: 10px;
  border-radius: 50% 50% 50% 0;
  background: var(--gold);
  transform: rotate(-45deg);
  flex-shrink: 0;
}

@media (max-width: 800px) {
  .owners-grid {
    grid-template-columns: 1fr;
  }
  .owners-visual {
    max-width: 420px;
    margin: 0 auto;
    width: 100%;
  }
}

/* ----------------------------------------------------------------
   Timeline
   ---------------------------------------------------------------- */

.timeline {
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 720px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: 11px;
  width: 2px;
  background: linear-gradient(
    180deg,
    rgba(246, 200, 95, 0.6) 0%,
    rgba(49, 85, 201, 0.4) 60%,
    transparent 100%
  );
  border-radius: 2px;
}

.timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 0.85rem;
  padding: 1rem 1.1rem 1rem 0;
}

.timeline-dot {
  position: relative;
  display: block;
  width: 14px;
  height: 14px;
  margin-top: 4px;
  margin-left: 4px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--muted);
  z-index: 1;
}

.timeline li.done .timeline-dot {
  background: #5eea7a;
  border-color: #5eea7a;
  box-shadow: 0 0 0 4px rgba(94, 234, 122, 0.15);
}

.timeline li.active .timeline-dot {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(246, 200, 95, 0.2);
  animation: pulse 2s ease-in-out infinite;
}

.timeline-status {
  display: inline-block;
  margin-bottom: 0.3rem;
  padding: 0.18rem 0.55rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-soft);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
}

.timeline li.done .timeline-status {
  color: #b4f0c1;
  background: rgba(94, 234, 122, 0.12);
  border-color: rgba(94, 234, 122, 0.3);
}

.timeline li.active .timeline-status {
  color: var(--gold-soft);
  background: rgba(246, 200, 95, 0.13);
  border-color: rgba(246, 200, 95, 0.32);
}

.timeline h3 {
  margin: 0 0 0.25rem;
  font-size: 1.05rem;
  font-weight: 700;
}

.timeline p {
  margin: 0;
  color: var(--muted-soft);
  font-size: 0.93rem;
}

/* ----------------------------------------------------------------
   FAQ
   ---------------------------------------------------------------- */

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.faq-list details {
  border-radius: var(--radius);
  background: rgba(7, 11, 22, 0.6);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: border-color 180ms ease;
}

.faq-list details[open] {
  border-color: rgba(246, 200, 95, 0.32);
  background: rgba(7, 11, 22, 0.78);
}

.faq-list summary {
  padding: 1rem 1.2rem;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--gold-soft);
  transition: transform 180ms ease;
  line-height: 1;
  flex-shrink: 0;
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-list details p {
  margin: 0;
  padding: 0 1.2rem 1.1rem;
  color: var(--muted-soft);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ----------------------------------------------------------------
   CTA
   ---------------------------------------------------------------- */

.section-cta {
  padding-top: clamp(2rem, 5vw, 3.5rem);
  padding-bottom: clamp(3rem, 6vw, 4.5rem);
}

.cta-card {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 3rem) clamp(1.4rem, 4vw, 2.4rem);
  border-radius: var(--radius-xl);
  text-align: center;
  background:
    radial-gradient(circle at 80% 0%, rgba(246, 200, 95, 0.18), transparent 55%),
    radial-gradient(circle at 0% 100%, rgba(49, 85, 201, 0.25), transparent 60%),
    rgba(13, 19, 36, 0.85);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-pop);
}

.cta-card .kicker {
  margin-bottom: 0.7rem;
}

.cta-card h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.015em;
}

.cta-card > p {
  margin: 0 auto 1.5rem;
  max-width: 480px;
  color: var(--muted-soft);
  font-size: 1rem;
}

.cta-card .waitlist-form {
  max-width: 480px;
  margin: 0 auto;
}

.cta-meta {
  margin: 1.2rem 0 0;
  font-size: 0.88rem;
  color: var(--muted);
}

/* ----------------------------------------------------------------
   Footer
   ---------------------------------------------------------------- */

.site-footer {
  position: relative;
  z-index: 1;
  padding: clamp(2rem, 4vw, 3rem) clamp(1.2rem, 4vw, 2.4rem) 1.5rem;
  background: rgba(7, 11, 22, 0.72);
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  max-width: 1180px;
  margin: 0 auto 2rem;
}

.footer-brand p {
  margin: 0.6rem 0 0;
  color: var(--muted-soft);
  font-size: 0.92rem;
  max-width: 280px;
}

.footer-col h4 {
  margin: 0 0 0.7rem;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}

.footer-col a {
  display: block;
  padding: 0.28rem 0;
  font-size: 0.92rem;
  color: var(--muted-soft);
  transition: color 180ms ease;
}

.footer-col a:hover {
  color: var(--gold-soft);
}

.bayonshield-credit {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  width: max-content;
  max-width: 100%;
  padding: 0.7rem 1rem;
  border-radius: 12px;
  background: rgba(7, 11, 22, 0.65);
  border: 1px solid var(--line);
  margin: 0 auto;
}

.bayonshield-link {
  display: inline-flex;
  border-radius: 10px;
}

.bayonshield-link:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.bayonshield-logo {
  display: block;
  width: 114px;
  height: auto;
  opacity: 0.95;
}

.bayonshield-credit p {
  margin: 0;
  font-size: 0.88rem;
  color: #dbe4ff;
}

.copy {
  margin: 1.4rem 0 0;
  text-align: center;
  font-size: 0.82rem;
  color: var(--muted);
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 540px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .bayonshield-credit {
    width: 100%;
    text-align: center;
  }
}

/* ----------------------------------------------------------------
   Property chips, provinces, phases, flow steps
   ---------------------------------------------------------------- */

.property-groups {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  max-width: 1080px;
  margin: 0 auto;
}

.property-group {
  position: relative;
  padding: 1rem 1.2rem 1.2rem;
  border-radius: var(--radius);
  background: rgba(10, 16, 24, 0.55);
  border: 1px solid var(--line);
}

.group-heading {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0 0 0.85rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-soft);
}

.group-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  padding: 0.18rem 0.45rem;
  border-radius: 4px;
  background: var(--teal-dim);
  color: var(--teal-soft);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.property-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.property-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted-soft);
  background: rgba(10, 16, 24, 0.75);
  border: 1px solid var(--line);
  transition: border-color 180ms ease, color 180ms ease;
}

.property-chip:hover {
  border-color: rgba(62, 207, 180, 0.35);
  color: var(--white);
}

.chip-icon {
  font-size: 1rem;
  line-height: 1;
}

.province-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.province-card {
  position: relative;
  padding: 1.1rem 1rem;
  border-radius: var(--radius);
  background: rgba(10, 16, 24, 0.65);
  border: 1px solid var(--line);
}

.province-card h3 {
  margin: 0.35rem 0 0;
  font-size: 1rem;
  font-weight: 700;
}

.province-card p {
  margin: 0.3rem 0 0;
  font-size: 0.82rem;
  color: var(--muted);
}

.province-live {
  border-color: rgba(62, 207, 180, 0.4);
  background: linear-gradient(145deg, var(--teal-dim), rgba(10, 16, 24, 0.8));
}

.province-more {
  border-style: dashed;
  opacity: 0.85;
}

.province-badge {
  display: inline-block;
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-soft);
  background: var(--teal-dim);
}

.province-badge.province-soon {
  color: var(--muted);
  background: rgba(255, 255, 255, 0.05);
}

.phase-track {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.phase-bar {
  position: relative;
  height: 4px;
  margin-bottom: 1.4rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.phase-fill {
  display: block;
  width: 42%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--teal), var(--blue-soft));
}

.phases {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.5rem;
}

.phases li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
}

.phase-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--muted);
}

.phases li.done .phase-dot {
  background: var(--teal);
  border-color: var(--teal);
}

.phases li.active .phase-dot {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(232, 184, 74, 0.22);
  animation: pulse 2s ease-in-out infinite;
}

.phase-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted-soft);
}

.phases li.active .phase-label {
  color: var(--gold-soft);
}

.phase-detail {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted-soft);
}

.flow-steps {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 960px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  position: relative;
}

.flow-steps::before {
  content: "";
  position: absolute;
  top: 19px;
  left: 16%;
  right: 16%;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--blue-soft));
  opacity: 0.35;
  z-index: 0;
}

.flow-steps li {
  position: relative;
  z-index: 1;
  padding: 0 1rem 1.2rem;
  text-align: center;
}

.flow-steps .step-num {
  margin: 0 auto 0.75rem;
  border-radius: 50%;
  background: var(--teal-dim);
  color: var(--teal-soft);
  border: 2px solid rgba(62, 207, 180, 0.4);
}

.flow-steps h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}

.flow-steps p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted-soft);
}

@media (max-width: 800px) {
  .flow-steps {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .flow-steps::before {
    display: none;
  }
}

@media (max-width: 700px) {
  .province-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .phases {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .province-grid {
    grid-template-columns: 1fr;
  }
}

/* ----------------------------------------------------------------
   Language toggle visibility
   ---------------------------------------------------------------- */

[data-lang="km"] {
  display: none !important;
}

body.lang-km [data-lang="en"] {
  display: none !important;
}

body.lang-km [data-lang="km"] {
  display: revert !important;
}
