:root {
  color-scheme: dark;
  --bg: #111313;
  --panel: #181b1b;
  --panel-2: #202424;
  --text: #f3f0e8;
  --muted: #a9aaa3;
  --line: rgba(255, 255, 255, 0.12);
  --gold: #c9a35a;
  --green: #77b77a;
  --blue: #7fb5c7;
  --red: #bd705d;
  --shadow: 0 22px 80px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
}

button {
  font: inherit;
}

.app-shell {
  min-height: 100vh;
}

.hero-panel {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #111;
}

.hero-video,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.08) 45%, rgba(0, 0, 0, 0.60)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.06) 52%, rgba(0, 0, 0, 0.25));
}

.topbar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px clamp(20px, 4vw, 64px);
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  width: clamp(210px, 24vw, 367px);
  max-width: min(367px, calc(100vw - 40px));
  text-decoration: none;
  filter: drop-shadow(0 18px 48px rgba(0, 0, 0, 0.22));
}

.brand-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 0;
  font-size: clamp(44px, 8vw, 112px);
  line-height: 0.9;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.02;
}

h3 {
  margin-bottom: 0;
  font-size: clamp(24px, 3vw, 36px);
}

.top-actions,
.segment-control,
.metric-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ghost-button,
.solid-button,
.segment {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 18px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.as-link {
  text-decoration: none;
}

.solid-button {
  border-color: rgba(201, 163, 90, 0.45);
  background: var(--gold);
  color: #18120b;
  font-weight: 700;
}

.compact {
  min-height: 38px;
}

.hero-copy {
  position: absolute;
  z-index: 2;
  left: clamp(20px, 4vw, 64px);
  bottom: clamp(26px, 7vh, 84px);
  max-width: 620px;
}

.hero-copy p {
  max-width: 560px;
  color: rgba(243, 240, 232, 0.82);
  font-size: clamp(17px, 2vw, 23px);
  line-height: 1.45;
}

.metric-row {
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.metric-row span {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(14px);
}

.metric-row b {
  font-size: 22px;
}

.selector-grid {
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  gap: 18px;
  padding: 18px;
  background: var(--bg);
}

.panel,
.tracker-card {
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.intro-panel {
  padding: clamp(22px, 3vw, 34px);
}

.segment-control {
  flex-direction: column;
  align-items: stretch;
}

.segment {
  width: 100%;
  text-align: left;
}

.segment.is-active {
  border-color: rgba(201, 163, 90, 0.8);
  background: rgba(201, 163, 90, 0.18);
}

.summary-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-top: 22px;
  padding: 16px;
  border-radius: 6px;
  background: var(--panel-2);
}

.summary-card p,
.legend dd,
.detail-stack span {
  margin: 0;
  color: var(--muted);
}

.status-dot {
  width: 12px;
  height: 12px;
  margin-top: 5px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(119, 183, 122, 0.16);
}

.legend {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
}

.legend div {
  display: flex;
  gap: 10px;
  align-items: center;
}

.legend dt {
  width: 18px;
  height: 18px;
  border-radius: 4px;
}

.legend-free {
  background: rgba(119, 183, 122, 0.9);
}

.legend-reserved {
  background: rgba(201, 163, 90, 0.95);
}

.legend-sold {
  background: rgba(189, 112, 93, 0.95);
}

.tracker-card {
  overflow: hidden;
}

.render-frame {
  position: relative;
  min-height: 520px;
  aspect-ratio: 16 / 9;
  background: #0c0d0d;
}

.render-frame img,
.render-frame svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.render-frame img {
  object-fit: cover;
}

.floor-zone {
  cursor: pointer;
  fill: rgba(127, 181, 199, 0.04);
  stroke: rgba(255, 255, 255, 0);
  stroke-width: 2;
  transition: fill 150ms ease, stroke 150ms ease;
}

.floor-zone:hover,
.floor-zone.is-active {
  fill: rgba(127, 181, 199, 0.32);
  stroke: rgba(255, 255, 255, 0.75);
}

.floor-zone.is-reserved:hover,
.floor-zone.is-reserved.is-active {
  fill: rgba(201, 163, 90, 0.34);
}

.floor-zone.is-sold:hover,
.floor-zone.is-sold.is-active {
  fill: rgba(189, 112, 93, 0.30);
}

.floor-label {
  pointer-events: none;
  fill: #fff;
  font-size: 14px;
  font-weight: 700;
  paint-order: stroke;
  stroke: rgba(0, 0, 0, 0.5);
  stroke-width: 4px;
}

.floor-details {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 24px;
  border-top: 1px solid var(--line);
  background: rgba(24, 27, 27, 0.96);
}

.detail-stack {
  display: flex;
  align-items: center;
  gap: 16px;
}

@media (max-width: 900px) {
  .topbar,
  .floor-details {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .render-frame {
    min-height: 360px;
  }
}

@media (max-width: 620px) {
  .top-actions,
  .detail-stack {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .ghost-button,
  .solid-button {
    width: 100%;
  }

  .hero-panel {
    min-height: 86svh;
  }
}

.landing-page {
  min-height: 100svh;
  background: #101211;
  color: var(--text);
}

.landing-page a {
  color: inherit;
}

.landing-hero {
  position: relative;
  min-height: 92svh;
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: clamp(18px, 4vw, 56px);
}

.landing-hero__video,
.landing-hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.landing-hero__video {
  object-fit: cover;
}

.landing-hero__shade {
  background:
    linear-gradient(90deg, rgba(6, 7, 7, 0.82), rgba(6, 7, 7, 0.18) 52%, rgba(6, 7, 7, 0.54)),
    linear-gradient(180deg, rgba(6, 7, 7, 0.28), rgba(6, 7, 7, 0.08) 46%, rgba(6, 7, 7, 0.76));
}

.landing-nav {
  position: absolute;
  z-index: 2;
  left: clamp(18px, 4vw, 56px);
  right: clamp(18px, 4vw, 56px);
  top: clamp(18px, 4vw, 38px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.landing-logo {
  width: min(280px, 48vw);
  display: inline-flex;
  filter: drop-shadow(0 18px 42px rgba(0, 0, 0, 0.28));
}

.landing-logo img {
  width: 100%;
  height: auto;
  display: block;
}

.landing-nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.landing-nav__links a,
.landing-button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(12, 13, 12, 0.62);
  color: var(--text);
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.landing-nav__links a {
  padding: 0 14px;
  font-size: 13px;
  font-weight: 760;
}

.landing-button {
  padding: 0 20px;
  font-weight: 820;
}

.landing-button--primary {
  border-color: rgba(201, 163, 90, 0.72);
  background: var(--gold);
  color: #17130c;
}

.landing-nav__links a:hover,
.landing-nav__links a:focus-visible,
.landing-button:hover,
.landing-button:focus-visible {
  outline: none;
  transform: translateY(-1px);
  border-color: rgba(201, 163, 90, 0.78);
}

.landing-hero__content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  padding-top: 120px;
}

.landing-kicker {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 820;
}

.landing-hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(42px, 8vw, 92px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.landing-hero__content > p {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(243, 240, 232, 0.84);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.48;
  text-wrap: pretty;
}

.landing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.landing-hero__status {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 72px;
}

.landing-hero__status span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  background: rgba(8, 9, 9, 0.44);
  color: rgba(243, 240, 232, 0.82);
  font-size: 12px;
  font-weight: 760;
}

.landing-flow,
.landing-showcase {
  padding: clamp(54px, 8vw, 112px) clamp(18px, 4vw, 56px);
}

.landing-section-head {
  max-width: 760px;
}

.landing-section-head h2,
.landing-showcase h2 {
  margin: 0;
  font-size: clamp(30px, 5vw, 58px);
  line-height: 1;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.landing-flow__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 34px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.landing-flow__grid article {
  min-height: 220px;
  padding: clamp(20px, 3vw, 30px);
  background: #151716;
}

.landing-flow__grid h3 {
  margin: 0 0 12px;
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.05;
}

.landing-flow__grid p,
.landing-showcase p {
  max-width: 58ch;
  margin: 0;
  color: rgba(243, 240, 232, 0.72);
  line-height: 1.55;
}

.landing-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(24px, 4vw, 58px);
  align-items: center;
  background: #0c0d0d;
}

.landing-showcase__media {
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #171817;
}

.landing-showcase__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.landing-showcase__copy {
  display: grid;
  gap: 22px;
  align-content: center;
}

.landing-showcase__copy .landing-button {
  justify-self: start;
}

.landing-roadmap {
  padding: clamp(54px, 8vw, 112px) clamp(18px, 4vw, 56px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 82% 0%, rgba(201, 163, 90, 0.12), transparent 34%),
    #121514;
}

.landing-roadmap__intro {
  max-width: 68ch;
  margin: 20px 0 0;
  color: rgba(243, 240, 232, 0.70);
  line-height: 1.55;
}

.landing-roadmap__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.landing-roadmap-card {
  min-height: 214px;
  display: flex;
  flex-direction: column;
  padding: clamp(18px, 2.4vw, 26px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.018)),
    rgba(19, 22, 21, 0.86);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.20);
}

.landing-roadmap-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.landing-roadmap-card__status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #e8c979;
  font-size: 11px;
  font-weight: 820;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.landing-roadmap-card__status::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 50%;
  background: #e8c979;
  box-shadow: 0 0 0 5px rgba(232, 201, 121, 0.12);
}

.landing-roadmap-card__index {
  color: rgba(243, 240, 232, 0.34);
  font-size: 12px;
  font-weight: 780;
  letter-spacing: 0.08em;
}

.landing-roadmap-card h3 {
  margin: 28px 0 12px;
  font-size: clamp(20px, 2.3vw, 28px);
  line-height: 1.06;
  letter-spacing: -0.02em;
}

.landing-roadmap-card p {
  max-width: 36ch;
  margin: 0;
  color: rgba(243, 240, 232, 0.66);
  font-size: 14px;
  line-height: 1.52;
}

@media (max-width: 860px) {
  .landing-nav {
    align-items: flex-start;
  }

  .landing-nav__links {
    flex-direction: column;
    align-items: stretch;
  }

  .landing-flow__grid,
  .landing-showcase {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 560px) {
  .landing-hero {
    min-height: 94svh;
  }

  .landing-logo {
    width: min(220px, 52vw);
  }

  .landing-nav__links a {
    min-height: 38px;
    padding: 0 10px;
    font-size: 12px;
  }

  .landing-actions,
  .landing-button {
    width: 100%;
  }

  .landing-hero__status {
    margin-top: 42px;
  }

  .landing-roadmap__grid {
    grid-template-columns: 1fr;
  }

  .landing-roadmap-card {
    min-height: 0;
  }
}
