:root{
  --bg:#070A12;
  --bg2:#0B1020;
  --card:rgba(255,255,255,.06);
  --card2:rgba(255,255,255,.04);
  --line:rgba(255,255,255,.10);
  --text:rgba(255,255,255,.92);
  --muted:rgba(255,255,255,.68);
  --muted2:rgba(255,255,255,.55);
  --accent:#D6B77A;
  --accent2:#6EA8FF;
  --shadow: 0 18px 60px rgba(0,0,0,.45);
  --radius: 18px;
  --radius2: 26px;
  --container: 1160px;
  --font: ui-sans-serif, -apple-system, BlinkMacSystemFont, "PingFang SC","Hiragino Sans GB","Microsoft YaHei", "Noto Sans SC", "Segoe UI", Arial, sans-serif;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family:var(--font);
  color:var(--text);
  background: radial-gradient(1200px 800px at 70% 0%, rgba(110,168,255,.10), transparent 65%),
              radial-gradient(900px 600px at 15% 10%, rgba(214,183,122,.10), transparent 65%),
              linear-gradient(180deg, var(--bg), var(--bg2));
}

a{ color:inherit; text-decoration:none; }
.container{ width:min(var(--container), calc(100% - 40px)); margin:0 auto; }

/* Top bar */
.topbar{
  border-bottom:1px solid rgba(255,255,255,.06);
  background: rgba(10,14,26,.6);
  backdrop-filter: blur(12px);
}
.topbar__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:10px 0; font-size:13px; color:var(--muted);
}
.topbar__left{ display:flex; gap:10px; align-items:center; }
.dot{ width:7px; height:7px; border-radius:99px; background: var(--accent); box-shadow:0 0 20px rgba(214,183,122,.55); }
.topbar__right{ display:flex; align-items:center; gap:10px; }
.sep{ opacity:.35; }
.topbar__link{ opacity:.9; }
.topbar__link:hover{ opacity:1; color:#fff; }

/* Header */
.header{
  position:sticky; top:0; z-index:50;
  border-bottom:1px solid rgba(255,255,255,.06);
  background: rgba(7,10,18,.55);
  backdrop-filter: blur(14px);
}
.header__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0; gap:14px;
}
.brand{ display:flex; gap:12px; align-items:center; }
.brand__logo{ width:34px; height:34px; }
.brand__name{ font-weight:800; letter-spacing:.4px; }
.brand__tag{ font-size:12px; color:var(--muted2); margin-top:2px; }

.nav{ display:flex; align-items:center; gap:18px; }
.nav a{ font-size:14px; color:var(--muted); }
.nav a:hover{ color:#fff; }
.nav__cta{
  padding:10px 14px;
  border:1px solid rgba(214,183,122,.35);
  border-radius:999px;
  color:#fff !important;
  background: linear-gradient(180deg, rgba(214,183,122,.18), rgba(214,183,122,.06));
}
.nav__cta:hover{ box-shadow:0 0 0 4px rgba(214,183,122,.12); }

.nav__toggle{
  display:none;
  width:44px; height:40px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  cursor:pointer;
}
.nav__toggle span{ display:block; height:2px; width:18px; margin:4px auto; background:rgba(255,255,255,.78); border-radius:2px; }

.mobileNav{
  display:none;
  padding:10px 0 16px;
  border-top:1px solid rgba(255,255,255,.06);
}
.mobileNav a{ display:block; padding:12px 0; color:var(--muted); }
.mobileNav a:hover{ color:#fff; }
.mobileNav__cta{
  margin-top:8px;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid rgba(214,183,122,.35);
  background: linear-gradient(180deg, rgba(214,183,122,.18), rgba(214,183,122,.06));
  color:#fff !important;
  text-align:center;
}

.hero{ position:relative; padding:56px 0 18px; overflow:hidden; }
.hero__inner{ display:grid; grid-template-columns: 1.1fr .9fr; gap:30px; align-items:stretch; }
.hero__bg{
  position:absolute; inset:0;
  background: radial-gradient(900px 700px at 70% 20%, rgba(110,168,255,.12), transparent 60%),
              radial-gradient(700px 520px at 28% 30%, rgba(214,183,122,.10), transparent 65%);
  pointer-events:none;
}
.pill{
  display:inline-flex; align-items:center; gap:8px;
  font-size:12px; color:rgba(255,255,255,.78);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  padding:8px 12px; border-radius:999px;
}
.hero__title{ margin:16px 0 12px; font-size:42px; line-height:1.18; letter-spacing:.3px; }
.accent{ color:var(--accent); text-shadow:0 0 28px rgba(214,183,122,.18); }
.hero__desc{ margin:0; color:var(--muted); font-size:15.5px; line-height:1.75; max-width:60ch; }
.hero__actions{ display:flex; gap:12px; margin-top:22px; flex-wrap:wrap; }

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px; border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  color:#fff; font-weight:650; cursor:pointer;
}
.btn:hover{ box-shadow:0 0 0 4px rgba(110,168,255,.10); }
.btn--primary{
  border:1px solid rgba(214,183,122,.38);
  background: linear-gradient(180deg, rgba(214,183,122,.28), rgba(214,183,122,.10));
}
.btn--ghost{ border:1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.03); color:rgba(255,255,255,.90); }
.btn--block{ width:100%; }

.kpis{ display:grid; grid-template-columns: repeat(3, 1fr); gap:12px; margin-top:18px; }
.kpi{
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  border-radius:16px;
  padding:12px 12px;
}
.kpi__v{ font-weight:850; font-size:18px; color:#fff; }
.kpi__k{ margin-top:4px; font-size:12.5px; color:var(--muted2); }

/* Map card */
.mapCard{
  border-radius: var(--radius2);
  border:1px solid rgba(255,255,255,.12);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  box-shadow: var(--shadow);
  padding:16px;
  position:relative;
}
.mapCard__head{ display:flex; align-items:flex-end; justify-content:space-between; gap:12px; margin-bottom:10px; }
.mapCard__title{ font-weight:800; }
.mapCard__sub{ color:var(--muted2); font-size:12.5px; margin-top:4px; }
.mapWrap{ position:relative; border-radius:18px; overflow:hidden; border:1px solid rgba(255,255,255,.08); background: rgba(0,0,0,.18); }
.mapWrap svg{ width:100%; height:auto; display:block; }
.mapTooltip{
  position:absolute;
  min-width: 200px;
  max-width: 260px;
  padding:10px 12px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(7,10,18,.85);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 40px rgba(0,0,0,.45);
  pointer-events:none;
  opacity:0;
  transform: translateY(6px);
  transition: all .14s ease;
}
.mapTooltip.on{ opacity:1; transform: translateY(0); }
.mapTooltip__t{ font-weight:800; }
.mapTooltip__d{ margin-top:6px; color:rgba(255,255,255,.70); font-size:12.5px; line-height:1.5; }
.mapTooltip__a{ margin-top:8px; color:rgba(214,183,122,.92); font-size:12.5px; }

.section{ padding:52px 0; }
.section--alt{ background: rgba(255,255,255,.02); border-top:1px solid rgba(255,255,255,.05); border-bottom:1px solid rgba(255,255,255,.05); }
.section__head{ display:flex; align-items:flex-end; justify-content:space-between; gap:18px; margin-bottom:18px; }
.section__eyebrow{ color: rgba(214,183,122,.92); font-size:12px; letter-spacing:1.8px; }
.section__title{ margin:8px 0 8px; font-size:30px; letter-spacing:.2px; }
.section__desc{ margin:0; color:var(--muted); line-height:1.7; max-width:78ch; }
.linkArrow{ color:rgba(255,255,255,.78); font-size:14px; }
.linkArrow:hover{ color:#fff; text-decoration:underline; }

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

.card{
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  padding:18px 16px;
  box-shadow: 0 8px 30px rgba(0,0,0,.22);
}
.card__icon{ font-size:22px; opacity:.95; }
.card__title{ margin:10px 0 8px; font-size:16.5px; }
.card__text{ margin:0 0 12px; color:var(--muted); line-height:1.75; font-size:14px; }
.bullets{ margin:0; padding-left:18px; color:rgba(255,255,255,.70); line-height:1.8; font-size:13.5px; }

/* Property cards */
.propGrid{ display:grid; grid-template-columns: repeat(3, 1fr); gap:14px; }
.prop{
  border-radius: 20px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  overflow:hidden;
}
.prop__img{ height:170px; background: rgba(0,0,0,.22); border-bottom:1px solid rgba(255,255,255,.08); display:flex; align-items:center; justify-content:center; }
.prop__img img{ width:100%; height:100%; object-fit:cover; display:block; }
.prop__body{ padding:14px; }
.prop__title{ font-weight:850; }
.prop__meta{ margin-top:6px; color:rgba(255,255,255,.70); font-size:13.5px; }
.prop__tags{ margin-top:10px; display:flex; flex-wrap:wrap; gap:8px; }
.tag{
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.02);
  color:rgba(255,255,255,.72);
}
.prop__foot{ margin-top:12px; display:flex; gap:10px; align-items:center; justify-content:space-between; }
.price{ color:rgba(214,183,122,.95); font-weight:850; }
.yield{ color:rgba(110,168,255,.90); font-weight:750; font-size:13px; }

/* Filters */
.filters{
  border-radius: 18px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  padding:12px;
  display:flex; gap:10px; flex-wrap:wrap; align-items:center;
}
.filters label{ font-size:12px; color:var(--muted2); }
.filters select, .filters input{
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.18);
  color:#fff;
  outline:none;
}

/* Timeline */
.timeline{
  display:grid; gap:10px;
  border-radius: 22px;
  border:1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.02);
  padding:14px;
}
.step{
  display:grid;
  grid-template-columns: 56px 1fr;
  gap:12px;
  padding:12px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.02);
}
.step__idx{
  width:56px; height:56px; border-radius:18px;
  display:flex; align-items:center; justify-content:center;
  font-weight:900;
  color:rgba(255,255,255,.92);
  border:1px solid rgba(214,183,122,.22);
  background: linear-gradient(180deg, rgba(214,183,122,.18), rgba(214,183,122,.06));
}
.step__title{ font-weight:800; margin-top:3px; }
.step__text{ color:var(--muted); margin-top:6px; line-height:1.7; font-size:14px; }

/* Contact */
.contact{ display:grid; grid-template-columns: 1fr 1fr; gap:18px; }
.form{
  border-radius: 22px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  padding:16px;
  box-shadow: var(--shadow);
}
.form__row{ display:grid; grid-template-columns: 1fr 1fr; gap:10px; }
.field{ display:block; margin-bottom:10px; }
.field span{ display:block; font-size:12px; color:var(--muted2); margin-bottom:8px; }
input,select,textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.18);
  color:#fff;
  outline:none;
}
input:focus,select:focus,textarea:focus{
  border-color: rgba(110,168,255,.45);
  box-shadow: 0 0 0 4px rgba(110,168,255,.12);
}
textarea{ resize:vertical; }
.form__hint{ margin-top:10px; font-size:12px; color:rgba(255,255,255,.55); line-height:1.6; }
.form__status{ margin-top:10px; font-size:13px; color:rgba(255,255,255,.78); }

/* Footer */
.footer{
  padding:30px 0 18px;
  border-top:1px solid rgba(255,255,255,.06);
  background: rgba(0,0,0,.12);
}
.footer__inner{
  display:flex; justify-content:space-between; gap:18px;
  padding-bottom:16px;
  border-bottom:1px solid rgba(255,255,255,.06);
}
.footer__brand{ display:flex; gap:12px; align-items:center; }
.footer__logo{ width:34px; height:34px; opacity:.95; }
.footer__name{ font-weight:900; }
.footer__desc{ margin-top:4px; font-size:12.5px; color:var(--muted2); }
.footer__cols{ display:grid; grid-template-columns: repeat(3, 1fr); gap:26px; }
.footerCol__title{ font-weight:900; margin-bottom:10px; }
.footerCol a{ display:block; color:var(--muted); margin:8px 0; font-size:13.5px; }
.footerCol a:hover{ color:#fff; }
.muted{ color:var(--muted); }
.small{ font-size:12px; line-height:1.6; }
.footer__bottom{ display:flex; justify-content:space-between; align-items:center; padding-top:14px; }
.backTop{
  font-size:13px;
  color:rgba(255,255,255,.72);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.02);
  padding:8px 12px;
  border-radius:999px;
}
.backTop:hover{ color:#fff; }

/* Admin */
.adminWrap{ padding:26px 0 56px; }
.adminCard{
  border-radius: 22px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  padding:16px;
  box-shadow: var(--shadow);
}
.table{ width:100%; border-collapse: collapse; }
.table th, .table td{ padding:10px 8px; border-bottom:1px solid rgba(255,255,255,.08); font-size:13px; vertical-align:top; }
.table th{ text-align:left; color:rgba(255,255,255,.80); font-weight:900; }
.table td{ color:rgba(255,255,255,.72); }
.table code{ color:rgba(214,183,122,.95); }
.adminNav{ display:flex; gap:10px; flex-wrap:wrap; margin:10px 0 0; }
.adminNav a{
  padding:9px 12px; border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.02);
  color:rgba(255,255,255,.78);
  font-size:13px;
}
.adminNav a:hover{ color:#fff; }
.notice{
  margin:10px 0 0;
  padding:12px 12px;
  border-radius:18px;
  border:1px solid rgba(214,183,122,.18);
  background: linear-gradient(180deg, rgba(214,183,122,.12), rgba(214,183,122,.05));
  color:rgba(255,255,255,.78);
  font-size:13px;
  line-height:1.6;
}

@media (max-width: 980px){
  .hero__inner{ grid-template-columns: 1fr; }
  .grid--3{ grid-template-columns: 1fr; }
  .grid--4{ grid-template-columns: repeat(2, 1fr); }
  .propGrid{ grid-template-columns: 1fr; }
  .contact{ grid-template-columns: 1fr; }
  .footer__inner{ flex-direction:column; }
  .footer__cols{ grid-template-columns: 1fr; }
}
@media (max-width: 760px){
  .nav{ display:none; }
  .nav__toggle{ display:block; }
  .hero__title{ font-size:34px; }
  .kpis{ grid-template-columns: 1fr; }
  .form__row{ grid-template-columns: 1fr; }
}