:root {
  --nav: #21012f;
  --nav-soft: #3b0a56;
  --purple: #6d1bb1;
  --ink: #2a063d;
  --muted: #7a667e;
  --line: #e7d4a4;
  --panel: #ffffff;
  --bg: #fbf7ee;
  --green: #8a5f00;
  --blue: #7b2cbf;
  --pink: #9d28d4;
  --orange: #b8860b;
  --slate: #4a255f;
  --gold: #f4c542;
  --cream: #f6e9c5;
  --shadow: 0 18px 48px rgba(33, 1, 47, .14);
  --header-height: 78px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
body.nav-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
.site-shell {
  min-height: 100vh;
  overflow: hidden;
  padding-top: var(--header-height);
}
.topbar {
  background: rgba(251, 247, 238, .94);
  border-bottom: 1px solid rgba(231, 212, 164, .82);
  backdrop-filter: blur(16px);
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 50;
}
.nav {
  align-items: center;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1180px;
  min-height: 78px;
  padding: 0 22px;
}
.brand {
  align-items: center;
  display: inline-flex;
  gap: 11px;
  font-weight: 950;
  letter-spacing: 0;
  white-space: nowrap;
}
.brand img {
  height: 42px;
  object-fit: contain;
  width: 78px;
}
.brand span {
  color: var(--nav);
  font-size: 22px;
}
.footer .brand span { color: #fff; }
.nav-links {
  align-items: center;
  display: flex;
  gap: 4px;
}
.nav-links a {
  border-radius: 7px;
  color: var(--slate);
  font-size: 14px;
  font-weight: 850;
  padding: 12px 11px;
}
.nav-links a:hover,
.nav-links a.active {
  background: var(--cream);
  color: var(--nav);
}
.nav-actions {
  align-items: center;
  display: flex;
  gap: 10px;
}
.menu-button {
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--nav);
  display: none;
  height: 44px;
  justify-content: center;
  width: 44px;
}
.menu-button svg { height: 23px; width: 23px; }
.btn {
  align-items: center;
  border: 0;
  border-radius: 7px;
  cursor: pointer;
  display: inline-flex;
  font-weight: 950;
  gap: 9px;
  justify-content: center;
  min-height: 46px;
  padding: 0 17px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn svg { height: 19px; width: 19px; }
.primary {
  background: var(--purple);
  box-shadow: 0 12px 26px rgba(109, 27, 177, .22);
  color: #fff;
}
.dark { background: var(--nav); color: #fff; }
.soft { background: var(--cream); color: var(--nav); }
.ghost {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--nav);
}
.hero {
  background: var(--nav);
  color: #fff;
  position: relative;
}
.hero::before {
  background:
    linear-gradient(90deg, rgba(33, 1, 47, .94), rgba(59, 10, 86, .74)),
    url("assets/hero-estate.svg");
  background-position: center;
  background-size: cover;
  content: "";
  inset: 0;
  position: absolute;
}
.hero-inner {
  display: grid;
  gap: 42px;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  margin: 0 auto;
  max-width: 1180px;
  min-height: calc(100vh - var(--header-height));
  padding: 76px 22px 46px;
  position: relative;
}
.hero-copy { align-self: center; max-width: 680px; }
.eyebrow {
  align-items: center;
  color: var(--gold);
  display: inline-flex;
  font-size: 13px;
  font-weight: 950;
  gap: 9px;
  letter-spacing: 0;
  margin-bottom: 18px;
  text-transform: uppercase;
}
.eyebrow::before {
  background: var(--gold);
  border-radius: 99px;
  content: "";
  height: 8px;
  width: 28px;
}
h1, h2, h3 { letter-spacing: 0; margin: 0; }
h1 {
  font-size: clamp(48px, 7vw, 86px);
  line-height: .94;
  max-width: 780px;
}
.hero-copy p {
  color: #f6e9c5;
  font-size: 20px;
  line-height: 1.6;
  margin: 24px 0 0;
  max-width: 680px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}
.hero-card {
  align-self: end;
  background: rgba(255, 255, 255, .96);
  border: 1px solid rgba(244, 197, 66, .42);
  border-radius: 8px;
  box-shadow: var(--shadow);
  color: var(--ink);
  display: grid;
  gap: 18px;
  padding: 22px;
}
.dashboard-preview {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 7px;
  overflow: hidden;
}
.preview-top {
  align-items: center;
  background: var(--nav);
  color: #fff;
  display: flex;
  justify-content: space-between;
  min-height: 50px;
  padding: 0 14px;
}
.preview-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 14px;
}
.preview-tile {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 7px;
  min-height: 112px;
  padding: 14px;
}
.preview-tile b {
  display: block;
  font-size: 28px;
  line-height: 1;
}
.preview-tile span {
  color: var(--muted);
  display: block;
  font-size: 12px;
  font-weight: 850;
  margin-top: 9px;
  text-transform: uppercase;
}
.hero-stat-row {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.hero-stat {
  background: var(--cream);
  border-radius: 7px;
  padding: 14px;
}
.hero-stat b { display: block; font-size: 22px; }
.hero-stat span {
  color: var(--muted);
  display: block;
  font-size: 12px;
  font-weight: 850;
  margin-top: 4px;
}
.section {
  margin: 0 auto;
  max-width: 1180px;
  padding: 84px 22px;
}
.launch-section {
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.launch-inner {
  align-items: center;
  display: grid;
  gap: 46px;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .86fr);
  margin: 0 auto;
  max-width: 1180px;
  padding: 76px 22px;
}
.launch-copy h2 {
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1;
  max-width: 720px;
}
.launch-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
  margin: 18px 0 0;
  max-width: 640px;
}
.countdown {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 28px;
  max-width: 610px;
}
.countdown-tile {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 100px;
  padding: 16px;
}
.countdown-tile b {
  color: var(--nav);
  display: block;
  font-size: 34px;
  line-height: 1;
}
.countdown-tile span {
  color: var(--muted);
  display: block;
  font-size: 12px;
  font-weight: 950;
  margin-top: 10px;
  text-transform: uppercase;
}
.launch-phone-wrap {
  display: grid;
  min-height: 560px;
  place-items: center;
}
.real-phone {
  background: #111;
  border: 10px solid #101014;
  border-radius: 42px;
  box-shadow: 0 30px 70px rgba(33, 1, 47, .28);
  overflow: hidden;
  padding: 12px;
  position: relative;
  width: min(100%, 326px);
}
.real-phone::before {
  background: #101014;
  border-radius: 0 0 16px 16px;
  content: "";
  height: 24px;
  left: 50%;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  width: 118px;
  z-index: 2;
}
.phone-screen {
  background: var(--bg);
  border-radius: 30px;
  min-height: 642px;
  overflow: hidden;
}
.mobile-dashboard {
  background: var(--bg);
  color: var(--ink);
  min-height: 642px;
}
.mobile-hero {
  background: var(--nav);
  color: #fff;
  padding: 42px 18px 22px;
}
.mobile-hero small {
  color: var(--gold);
  display: block;
  font-weight: 950;
  text-transform: uppercase;
}
.mobile-hero strong {
  display: block;
  font-size: 25px;
  line-height: 1.08;
  margin-top: 8px;
}
.mobile-balance {
  background: var(--gold);
  border-radius: 8px;
  color: var(--nav);
  margin-top: 18px;
  padding: 14px;
}
.mobile-balance span {
  display: block;
  font-size: 12px;
  font-weight: 900;
  opacity: .78;
  text-transform: uppercase;
}
.mobile-balance b {
  display: block;
  font-size: 24px;
  margin-top: 3px;
}
.mobile-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 14px;
}
.mobile-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 92px;
  padding: 12px;
}
.mobile-card svg {
  color: var(--purple);
  height: 23px;
  width: 23px;
}
.mobile-card strong {
  display: block;
  font-size: 13px;
  margin-top: 12px;
}
.mobile-card span {
  color: var(--muted);
  display: block;
  font-size: 11px;
  margin-top: 4px;
}
.mobile-feed {
  padding: 0 14px 18px;
}
.mobile-feed h3 {
  font-size: 16px;
  margin: 4px 0 10px;
}
.mobile-feed-row {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-bottom: 8px;
  padding: 11px 12px;
}
.mobile-feed-row strong {
  display: block;
  font-size: 13px;
}
.mobile-feed-row span {
  color: var(--muted);
  display: block;
  font-size: 11px;
  margin-top: 3px;
}
.section.tight { padding-top: 42px; }
.section-head {
  align-items: end;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 30px;
}
.section-head h2 {
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1;
  max-width: 720px;
}
.section-head p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
  margin: 0;
  max-width: 440px;
}
.grid { display: grid; gap: 18px; }
.grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(16, 24, 40, .04);
  min-height: 214px;
  padding: 24px;
}
.icon-box {
  align-items: center;
  background: var(--cream);
  border-radius: 7px;
  color: var(--purple);
  display: inline-flex;
  height: 48px;
  justify-content: center;
  margin-bottom: 22px;
  width: 48px;
}
.icon-box svg { height: 24px; width: 24px; }
.card h3 { font-size: 21px; margin-bottom: 10px; }
.card p,
.content-panel p,
.content-panel li {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}
.band {
  background: #fff;
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
}
.split {
  display: grid;
  gap: 40px;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
}
.feature-list { display: grid; gap: 13px; margin-top: 24px; }
.feature-row {
  align-items: start;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 7px;
  display: grid;
  gap: 12px;
  grid-template-columns: 32px 1fr;
  padding: 14px;
}
.feature-row svg {
  color: var(--purple);
  height: 24px;
  margin-top: 2px;
  width: 24px;
}
.feature-row strong { display: block; margin-bottom: 4px; }
.feature-row span { color: var(--muted); line-height: 1.55; }
.phone-stack {
  align-items: center;
  display: grid;
  min-height: 560px;
  place-items: center;
  position: relative;
}
.phone {
  background: var(--nav);
  border: 9px solid #14001d;
  border-radius: 34px;
  box-shadow: 0 22px 52px rgba(33, 1, 47, .25);
  color: #fff;
  min-height: 520px;
  overflow: hidden;
  padding: 22px;
  width: min(100%, 300px);
}
.phone.alt {
  background: #fff;
  border-color: #f1e0ad;
  color: var(--ink);
  margin-left: -70px;
  margin-top: 90px;
  transform: rotate(-5deg);
}
.phone-main { transform: rotate(4deg); z-index: 2; }
.phone-head {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 28px;
}
.phone-pill {
  background: var(--gold);
  border-radius: 99px;
  height: 10px;
  width: 70px;
}
.app-list { display: grid; gap: 12px; }
.app-row {
  background: rgba(255,255,255,.11);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 7px;
  padding: 14px;
}
.alt .app-row {
  background: var(--bg);
  border-color: var(--line);
}
.app-row strong { display: block; font-size: 15px; }
.app-row span {
  color: inherit;
  display: block;
  font-size: 12px;
  margin-top: 5px;
  opacity: .74;
}
.cta { background: var(--nav); color: #fff; }
.cta-inner {
  align-items: center;
  display: flex;
  gap: 28px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1180px;
  padding: 58px 22px;
}
.cta h2 { font-size: clamp(32px, 4vw, 52px); line-height: 1; }
.cta p {
  color: var(--cream);
  font-size: 17px;
  line-height: 1.6;
  margin: 14px 0 0;
  max-width: 680px;
}
.page-hero {
  background:
    linear-gradient(90deg, rgba(33, 1, 47, .96), rgba(59, 10, 86, .84)),
    url("assets/page-hero.svg");
  background-position: center;
  background-size: cover;
  color: #fff;
}
.page-hero-inner {
  margin: 0 auto;
  max-width: 1180px;
  padding: 78px 22px 86px;
}
.page-hero h1 { max-width: 880px; }
.page-hero p {
  color: var(--cream);
  font-size: 19px;
  line-height: 1.65;
  margin: 22px 0 0;
  max-width: 720px;
}
.content-panel,
.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(16, 24, 40, .04);
  padding: 34px;
}
.form-card { box-shadow: var(--shadow); }
.content-panel h2 {
  font-size: 30px;
  margin: 34px 0 10px;
}
.content-panel h2:first-child { margin-top: 0; }
.content-panel h3 { font-size: 21px; margin: 24px 0 8px; }
.content-panel ul,
.content-panel ol { padding-left: 22px; }
.form-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.form-grid .full { grid-column: 1 / -1; }
label {
  color: var(--muted);
  display: grid;
  font-size: 12px;
  font-weight: 950;
  gap: 7px;
  text-transform: uppercase;
}
input, textarea, select {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--ink);
  min-height: 48px;
  padding: 11px 13px;
  width: 100%;
}
textarea { min-height: 142px; resize: vertical; }
.notice {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--nav);
  font-weight: 800;
  line-height: 1.55;
  padding: 14px 16px;
}
.map-frame {
  border: 1px solid var(--line);
  border-radius: 8px;
  height: 320px;
  margin-top: 18px;
  overflow: hidden;
}
.map-frame iframe {
  border: 0;
  display: block;
  height: 100%;
  width: 100%;
}
.download-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}
.store-button {
  align-items: center;
  background: var(--nav);
  border-radius: 8px;
  color: #fff;
  display: inline-flex;
  gap: 12px;
  min-height: 64px;
  min-width: 204px;
  padding: 0 18px;
}
.store-button svg { height: 28px; width: 28px; }
.store-button span { display: block; font-size: 12px; opacity: .74; }
.store-button strong { display: block; font-size: 18px; }
.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.socials a {
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--nav);
  display: inline-flex;
  font-weight: 900;
  gap: 9px;
  min-height: 42px;
  padding: 0 12px;
}
.socials svg {
  height: 18px;
  width: 18px;
}
.form-status-page {
  align-items: center;
  display: grid;
  min-height: 100vh;
  padding: 24px;
}
.form-status-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  margin: 0 auto;
  max-width: 620px;
  padding: 34px;
}
.form-status-card h1 {
  color: var(--nav);
  font-size: 44px;
  line-height: 1;
}
.form-status-card p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}
.footer {
  background: #180022;
  color: #fff;
}
.footer-inner {
  display: grid;
  gap: 34px;
  grid-template-columns: 1.4fr repeat(3, minmax(0, .7fr));
  margin: 0 auto;
  max-width: 1180px;
  padding: 54px 22px 32px;
}
.footer p,
.footer a { color: #f6e9c5; }
.footer .socials a {
  color: var(--purple);
}
.footer h3 {
  color: var(--gold);
  font-size: 14px;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.footer nav { display: grid; gap: 10px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.09);
  color: #f6e9c5;
  margin: 0 auto;
  max-width: 1180px;
  padding: 18px 22px 26px;
}
@media (max-width: 980px) {
  .nav-links {
    background: transparent;
    border-left: 1px solid var(--line);
    bottom: 0;
    box-shadow: -12px 0 34px rgba(33, 1, 47, .16);
    display: grid;
    gap: 0;
    max-width: 360px;
    padding: 84px 18px 18px;
    position: fixed;
    right: 0;
    top: 0;
    transform: translateX(105%);
    transition: transform .22s ease;
    width: 86vw;
    z-index: 60;
  }
  .nav-links.show { transform: translateX(0); }
  .nav-links a {
    background: var(--cream);
    color: var(--nav);
    min-height: 48px;
  }
  .menu-button {
    display: inline-flex;
    position: relative;
    z-index: 70;
  }
  .hero-inner,
  .launch-inner,
  .split,
  .grid.three,
  .grid.two,
  .footer-inner { grid-template-columns: 1fr; }
  .hero-inner {
    min-height: auto;
    padding-top: 64px;
  }
  .phone-stack { min-height: 500px; }
  .launch-phone-wrap { min-height: auto; }
  .section-head,
  .cta-inner {
    align-items: start;
    flex-direction: column;
  }
}
@media (max-width: 640px) {
  :root { --header-height: 70px; }
  .nav {
    min-height: 70px;
    padding: 0 16px;
  }
  .brand img { height: 36px; width: 66px; }
  .brand span { font-size: 19px; }
  .nav-actions .soft { display: none; }
  .hero-inner,
  .section,
  .page-hero-inner {
    padding-left: 16px;
    padding-right: 16px;
  }
  h1 { font-size: 48px; }
  .hero-copy p,
  .page-hero p { font-size: 17px; }
  .hero-card { padding: 16px; }
  .hero-stat-row,
  .countdown,
  .preview-grid,
  .form-grid { grid-template-columns: 1fr; }
  .phone.alt { display: none; }
  .phone-main { transform: none; }
  .content-panel,
  .form-card { padding: 22px; }
}
