:root {
  --ink: #152c27;
  --green: #006548;
  --deep: #053c30;
  --mint: #e5f3ed;
  --soft: #f4f7f5;
  --line: #dbe5df;
  --muted: #52675e;
  --white: #fff;
  --sand: #e3cda7;
  --ivory: #f6f1e8;
  --night: #16130f;
  --r: 20px;
  --max: 1160px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

body {
  margin: 0;
  color: var(--ink);
  font: 16px/1.55 Arial, Helvetica, sans-serif;
  background: #fff;
}

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

button, input, textarea { font: inherit; }

button, a, input, textarea {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid #28a47d;
  outline-offset: 4px;
}

.wrap {
  width: min(var(--max), calc(100% - 64px));
  margin: auto;
}

.skip {
  position: absolute;
  left: 10px;
  top: -80px;
  z-index: 40;
  background: white;
  padding: 12px;
}

.skip:focus { top: 5px; }

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  padding-top: 14px;
  pointer-events: none;
}

.nav {
  position: relative;
  height: auto;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 8px 8px 8px 22px;
  pointer-events: auto;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 14px 36px rgba(21, 44, 39, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.nav .logo,
.navlinks a,
.nav-demo,
.menu { transition: color 0.35s ease, background 0.35s ease; }

.header.on-dark .nav {
  background: rgba(14, 20, 18, 0.34);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.header.on-dark .logo { color: #fff; }
.header.on-dark .logo em { color: var(--sand); }
.header.on-dark .navlinks a { color: rgba(255, 255, 255, 0.78); }
.header.on-dark .navlinks a:hover { color: #fff; }

.header.on-dark .navlinks .nav-demo,
.header.on-dark .navlinks .nav-demo:hover {
  background: var(--ivory);
  color: var(--night);
}

.header.on-dark .navlinks .nav-demo:hover { background: #fff; }

.header.on-dark .menu {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.logo {
  font-weight: 800;
  font-size: 26px;
  letter-spacing: -1px;
  line-height: 1;
}

.logo em {
  font-style: normal;
  color: var(--green);
}

.navlinks {
  display: flex;
  gap: 22px;
  align-items: center;
  margin-left: auto;
  font-size: 14px;
}

.navlinks a { color: var(--muted); }

.navlinks a:hover { color: var(--ink); }

.nav-demo {
  color: #fff;
  font-weight: 700;
  background: var(--green);
  border-radius: 999px;
  padding: 10px 16px;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
}

.navlinks .nav-demo,
.navlinks .nav-demo:hover {
  color: #fff;
  background: var(--green);
}

.navlinks .nav-demo:hover { background: #034a36; }

.header-tools {
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 22;
}

.header-wa {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--green);
}

.header-wa svg { display: block; }

.header-wa:hover {
  background: #25d366;
  color: #fff;
}

.header.on-dark .header-wa {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.header.on-dark .header-wa:hover {
  background: #25d366;
  color: #fff;
}

.menu {
  display: none;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--green);
  cursor: pointer;
  place-items: center;
}

.menu:hover {
  background: var(--green);
  color: #fff;
}

.burger {
  position: relative;
  display: block;
  width: 18px;
  height: 14px;
}

.burger i {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s ease;
}

.burger i:nth-child(1) { top: 0; }
.burger i:nth-child(2) { top: 6px; }
.burger i:nth-child(3) { top: 12px; }

.menu.is-open .burger i:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu.is-open .burger i:nth-child(2) { opacity: 0; transform: scaleX(0.4); }
.menu.is-open .burger i:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 15px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  border: 1px solid var(--green);
  background: var(--green);
  color: white;
  cursor: pointer;
  min-height: 48px;
  transition: background 0.18s ease, transform 0.18s ease;
}

.btn:hover {
  background: #034a36;
  transform: translateY(-1px);
}

.btn.secondary {
  background: transparent;
  color: var(--ink);
  border-color: #b7c9bf;
}

.btn.secondary:hover { background: var(--mint); }

.btn.white {
  background: white;
  color: var(--deep);
  border-color: white;
}

.btn.white:hover { background: var(--mint); }

.full { width: 100%; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  font-weight: 700;
  color: var(--green);
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.eyebrow:before {
  content: "";
  width: 22px;
  height: 2px;
  background: currentColor;
  flex: 0 0 auto;
}

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

h1 {
  font-size: clamp(44px, 4.8vw, 68px);
  font-weight: 600;
  letter-spacing: -3px;
  line-height: 1.04;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(32px, 3.4vw, 44px);
  font-weight: 600;
  letter-spacing: -1.7px;
  line-height: 1.13;
  margin-bottom: 20px;
}

h3 {
  font-size: 20px;
  letter-spacing: -0.45px;
  line-height: 1.25;
  margin-bottom: 12px;
}

.lead {
  font-size: 18px;
  color: var(--muted);
  max-width: 34rem;
  line-height: 1.65;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 132px 0 96px;
  border-radius: 0;
  color: #fff;
  background: #10211c url("../assets/dubai-br.jpg") center 42% / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  width: auto;
  height: auto;
  max-width: none;
  max-height: none;
  border-radius: 0;
  pointer-events: none;
  animation: none;
  background:
    linear-gradient(180deg, rgba(6, 14, 12, 0.5) 0%, rgba(6, 14, 12, 0.16) 20%, transparent 38%),
    linear-gradient(100deg, rgba(6, 14, 12, 0.74) 0%, rgba(6, 14, 12, 0.52) 46%, rgba(6, 14, 12, 0.36) 100%);
}

.hero::after { content: none; }

.hero .wrap { position: relative; z-index: 1; }

.hero .eyebrow { color: var(--sand); }

.hero h1 { color: #fff; }

.hero .lead { color: rgba(255, 255, 255, 0.84); }

.hero .proof { color: rgba(255, 255, 255, 0.78); }

.hero .proof span:before { color: var(--sand); }

.hero .btn {
  background: var(--ivory);
  color: var(--night);
  border-color: var(--ivory);
}

.hero .btn:hover { background: #fff; color: var(--night); }

.hero .btn.secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.62);
}

.hero .btn.secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.hero .hero-foot { border-top-color: rgba(255, 255, 255, 0.22); }

.hero .hero-foot > span { color: rgba(255, 255, 255, 0.72); }

.hero .portal-link { color: #fff; }

.hero .portal-link:hover { border-bottom-color: #fff; }

.hero .app {
  display: flex;
  flex-direction: column;
  color: #fff;
  background: rgba(14, 20, 18, 0.5);
  border-color: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(22px) saturate(1.15);
  -webkit-backdrop-filter: blur(22px) saturate(1.15);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero .units { flex: 1 0 auto; }

.hero .appbar,
.hero .unit,
.hero .finder-foot { border-color: rgba(255, 255, 255, 0.1); }

.hero .appbar small,
.hero .unit span,
.hero .finder-foot,
.hero .finder-stats small { color: rgba(255, 255, 255, 0.6); }

.hero .tag {
  background: rgba(227, 205, 167, 0.14);
  color: var(--sand);
}

.hero .chip {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.86);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.hero .chip:hover { border-color: rgba(255, 255, 255, 0.5); }

.hero .chip.is-on {
  background: var(--ivory);
  border-color: var(--ivory);
  color: var(--night);
}

.hero .finder-stats { background: rgba(255, 255, 255, 0.06); }

.hero .meter { background: rgba(255, 255, 255, 0.12); }
.hero .meter span { background: var(--sand); }

.hero .unit .plan {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
}

.hero .unit b { color: var(--sand); }

@keyframes orb-drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(-4%, 8%, 0) scale(1.08); }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 58px;
  align-items: start;
}

.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 30px 0 23px;
}

.proof {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--muted);
}

.proof span:before {
  content: "✓";
  color: var(--green);
  margin-right: 6px;
  font-weight: bold;
}

.app {
  background: white;
  border: 1px solid #d3e2d9;
  border-radius: var(--r);
  box-shadow: 0 20px 70px #153e2710;
  overflow: hidden;
  will-change: transform;
}

.appbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 17px 22px;
  border-bottom: 1px solid var(--line);
}

.appbar strong { display: block; font-size: 14px; }

.appbar small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.tag {
  border-radius: 5px;
  padding: 5px 9px;
  color: var(--green);
  background: var(--mint);
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 14px 22px 0;
}

.chip {
  border: 1px solid var(--line);
  background: white;
  color: var(--ink);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 13px;
  cursor: pointer;
}

.chip.is-on {
  background: var(--green);
  border-color: var(--green);
  color: white;
}

.finder-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin: 14px 18px 0;
  padding: 12px;
  background: var(--soft);
  border-radius: 12px;
}

.finder-stats p { margin: 0; min-width: 0; }

.finder-stats small {
  display: block;
  font-size: 11px;
  color: var(--muted);
}

.finder-stats b {
  display: block;
  margin-top: 3px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.4px;
  line-height: 1.2;
}

.meter {
  height: 4px;
  margin: 12px 22px 0;
  background: var(--mint);
  border-radius: 4px;
  overflow: hidden;
}

.meter span {
  display: block;
  height: 100%;
  width: 100%;
  background: var(--green);
  transform: scaleX(0.15);
  transform-origin: left center;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.units {
  list-style: none;
  margin: 8px 0 0;
  padding: 0 10px 8px;
  min-height: 392px;
}

.unit {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin: 0 12px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.unit strong { display: block; font-size: 14px; }

.unit span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.unit .plan {
  display: inline-block;
  margin-top: 6px;
  padding: 2px 7px;
  border-radius: 999px;
  background: var(--mint);
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
}

.unit b {
  font-size: 14px;
  font-weight: 700;
  color: var(--green);
  white-space: nowrap;
}

.finder-foot {
  margin: 0;
  padding: 12px 22px 16px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--muted);
}

.hero-foot {
  margin-top: 50px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.hero-foot > span {
  font-size: 12px;
  color: var(--muted);
}

.portal-link {
  font-size: 17px;
  font-weight: bold;
  color: var(--green);
  border-bottom: 1px solid transparent;
}

.portal-link:hover { border-bottom-color: var(--green); }

section.block { padding: 112px 0; }

main > section { position: relative; }

main > section:nth-child(1) { z-index: 1; }
main > section:nth-child(2) { z-index: 2; }
main > section:nth-child(3) { z-index: 3; }
main > section:nth-child(4) { z-index: 4; }
main > section:nth-child(5) { z-index: 5; }
main > section:nth-child(6) { z-index: 6; }
main > section:nth-child(7) { z-index: 7; }
main > section:nth-child(8) { z-index: 8; }
main > section:nth-child(9) { z-index: 9; }

main > section + section {
  margin-top: 0;
  border-radius: 0;
  box-shadow: none;
}

.section-head {
  max-width: 40rem;
  margin-bottom: 56px;
}

.section-head h2 { margin-bottom: 14px; }

.section-head > p:last-child {
  margin: 0;
  color: var(--muted);
  max-width: 38rem;
}

#product,
.has-scene { background: #fff; }

.has-scene { overflow: hidden; }

.scene {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.scene-move {
  position: absolute;
  left: 0;
  right: 0;
  top: -10%;
  height: 120%;
}

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

.scene:after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.12) 30%, rgba(255, 255, 255, 0.5) 58%, rgba(255, 255, 255, 0.86) 100%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.78) 0%, rgba(255, 255, 255, 0.22) 46%, rgba(255, 255, 255, 0) 100%);
}

#proof .scene:after {
  background: linear-gradient(100deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.55) 42%, rgba(255, 255, 255, 0.12) 100%);
}

.has-scene .wrap { position: relative; z-index: 1; }

.stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-bottom: 14px;
}

.stats p { margin: 0; }

.stats b {
  display: block;
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 600;
  letter-spacing: -2px;
  line-height: 1;
  color: var(--green);
}

.stats span {
  display: block;
  margin-top: 8px;
  max-width: 28rem;
  color: var(--muted);
}

.disclaimer,
.eco-foot,
.dash-foot {
  color: var(--muted);
  font-size: 13px;
}

.disclaimer { margin: 0 0 28px; max-width: 46rem; }

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

.problem {
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.num {
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--green);
  display: block;
  margin-bottom: 18px;
}

.problem p {
  color: var(--muted);
  margin: 0;
}

.soft {
  position: relative;
  background-color: var(--soft);
  background-image:
    linear-gradient(165deg, transparent 0 46%, rgba(0, 101, 72, 0.035) 46% 54%, transparent 54%),
    repeating-linear-gradient(-18deg, transparent 0 26px, rgba(0, 101, 72, 0.04) 26px 27px);
}

.paths {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}

.path {
  background: #e7eeea;
  border-radius: 16px;
  padding: 22px 22px 8px;
}

.path h3 { font-size: 16px; }

.path ol {
  list-style: none;
  margin: 0;
  padding: 0 0 16px;
  counter-reset: step;
}

.path li {
  position: relative;
  margin: 0 0 10px;
  padding: 12px 14px 12px 46px;
  background: white;
  border: 1px solid #d5e0da;
  border-radius: 8px;
  font-size: 14px;
}

.path li:before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 12px;
  top: 12px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--soft);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  display: grid;
  place-items: center;
}

.path-next {
  background: white;
  border: 2px solid var(--green);
}

.path-next li.end {
  background: var(--green);
  border-color: var(--green);
  color: white;
  font-weight: 700;
}

.path-next li.end:before {
  background: #ffffff22;
  color: white;
}

.center-line {
  text-align: center;
  margin: 28px 0 0;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.4px;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 11px;
  border-radius: 999px;
  background: #eef1ef;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.status:before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #9aa9a2;
}

.status.is-live {
  background: var(--mint);
  color: var(--green);
}

.status.is-live:before {
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(0, 101, 72, 0.45);
  animation: pulse 2.2s ease-out infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(0, 101, 72, 0.45); }
  70% { box-shadow: 0 0 0 7px rgba(0, 101, 72, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 101, 72, 0); }
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  width: fit-content;
  max-width: 100%;
  padding: 6px;
  margin-bottom: 28px;
  border-radius: 999px;
  background: var(--soft);
  border: 1px solid var(--line);
}

.tab {
  border: none;
  border-radius: 999px;
  padding: 10px 18px;
  background: transparent;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
}

.tab:hover { color: var(--ink); }

.tab[aria-selected="true"] {
  background: var(--green);
  color: #fff;
}

.panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
  min-height: 420px;
  padding: 44px;
  border-radius: 24px;
  background: var(--soft);
  border: 1px solid var(--line);
}

.panel[hidden] { display: none; }

.panel-copy h3 {
  margin: 18px 0 14px;
  font-size: 30px;
  letter-spacing: -0.9px;
  line-height: 1.15;
}

.panel-copy p { color: var(--muted); margin: 0 0 14px; }

.panel-copy .panel-note {
  margin: 20px 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.mock {
  min-width: 0;
  padding: 22px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px rgba(21, 44, 39, 0.08);
}

.mock-foot {
  margin: 14px 0 0;
  font-size: 12px;
  color: var(--muted);
}

.crumbs {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 18px;
  padding: 0;
}

.crumbs li {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  transition: background 0.3s ease, color 0.3s ease;
}

.crumbs li.is-on {
  background: var(--green);
  color: #fff;
}

.unit-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
}

.unit-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.unit-card-top small {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.unit-card-top strong {
  display: block;
  margin-top: 4px;
  font-size: 24px;
  letter-spacing: -0.6px;
}

.pill {
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--mint);
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
}

.unit-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 18px 0;
}

.unit-facts div {
  padding: 10px 12px;
  border-radius: 10px;
  background: var(--soft);
}

.unit-facts dt {
  font-size: 11px;
  color: var(--muted);
}

.unit-facts dd {
  margin: 3px 0 0;
  font-size: 15px;
  font-weight: 700;
}

.unit-card-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.unit-card-foot b {
  font-size: 22px;
  letter-spacing: -0.5px;
  color: var(--green);
}

.fake-btn {
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--green);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.chat-head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 14px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  font-weight: 700;
}

.chat-head .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #28a47d;
}

.chat {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.msg {
  max-width: 86%;
  margin: 0;
  padding: 11px 14px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.45;
}

.msg.out {
  align-self: flex-end;
  background: var(--green);
  color: #fff;
  border-bottom-right-radius: 5px;
}

.msg.in {
  align-self: flex-start;
  background: var(--soft);
  border-bottom-left-radius: 5px;
}

.voice,
.file {
  display: block;
  width: fit-content;
  margin-bottom: 6px;
  padding: 3px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 12px;
  font-weight: 700;
}

.match {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2px 12px;
  margin-top: 8px;
  padding: 10px 12px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--line);
}

.match b { font-size: 13px; }

.match small {
  grid-column: 1;
  color: var(--muted);
  font-size: 12px;
}

.match em {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
  font-style: normal;
  font-weight: 700;
  color: var(--green);
}

.sel small {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.sel strong {
  display: block;
  margin: 4px 0 12px;
  font-size: 18px;
}

.sel ul,
.signals {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sel li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.sel li b { color: var(--green); white-space: nowrap; }

.signals {
  margin-top: 16px;
  padding: 14px;
  border-radius: 12px;
  background: var(--soft);
}

.signals li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 5px 0;
  font-size: 13px;
}

.signals i {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #28a47d;
}

.data-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.signal-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.signal-list li {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.signal-list li:last-child { border-bottom: 1px solid var(--line); }

.signal-list b { font-size: 15px; }

.signal-list span { color: var(--muted); font-size: 15px; }

.data-note {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.machine {
  padding: 30px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--line);
}

.machine .eyebrow { margin-bottom: 14px; }

.machine p { color: var(--muted); }

.machine .chat { margin: 22px 0 12px; }

.machine small { color: var(--muted); font-size: 12px; }

.proof-block { background-color: #fff; }

.proof-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.status-board {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--line);
}

.status-now,
.status-next { padding: 36px 36px 20px; }

.status-now {
  background: var(--deep);
  color: #fff;
}

.status-next { background: var(--soft); }

.status-kicker {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 700;
}

.status-now .status-kicker { color: #a7d9bd; }
.status-next .status-kicker { color: var(--muted); }

.status-now h3,
.status-next h3 {
  margin-bottom: 22px;
  font-size: 26px;
  letter-spacing: -0.6px;
}

.status-now ul,
.status-next ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.status-now li,
.status-next li {
  position: relative;
  padding: 13px 0 13px 28px;
  border-top: 1px solid var(--line);
  font-size: 15px;
}

.status-now li { border-top-color: rgba(255, 255, 255, 0.16); }

.status-now li:before,
.status-next li:before {
  position: absolute;
  left: 0;
  top: 16px;
  font-weight: 700;
}

.status-now li:before {
  content: "✓";
  color: var(--sand);
}

.status-next li:before {
  content: "";
  display: block;
  top: 19px;
  width: 8px;
  height: 8px;
  border: 2px solid #9aa9a2;
  border-radius: 50%;
}

.dash {
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: white;
  box-shadow: 0 16px 60px #153e2708;
}

.dash-title {
  padding: 18px 22px;
  background: var(--deep);
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 14px;
}

.dash-title .tag {
  background: #ffffff20;
  color: white;
}

.dash-body { padding: 22px; }

.kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 18px;
}

.kpi {
  background: var(--soft);
  padding: 15px;
  border-radius: 9px;
}

.kpi small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 5px;
}

.kpi b {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -1px;
}

.portal-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.portal-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 0;
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.portal-list li span:last-child {
  color: var(--green);
  font-weight: 700;
  white-space: nowrap;
}

.dash-foot {
  border-top: 1px solid var(--line);
  padding-top: 14px;
  margin: 8px 0 0;
}

.calc {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  border: 1px solid #accfba;
}

.calc-in { padding: 34px; }

.calc-field + .calc-field { margin-top: 26px; }

.calc-field label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.calc-field output {
  font-size: 20px;
  letter-spacing: -0.4px;
  color: var(--green);
}

.calc input[type="range"] {
  width: 100%;
  min-height: 0;
  margin: 12px 0 0;
  padding: 0;
  border: none;
  background: transparent;
  accent-color: var(--green);
  cursor: pointer;
}

.calc-rate {
  margin: 24px 0 18px;
  color: var(--muted);
  font-size: 14px;
}

.calc-rate b { color: var(--ink); }

.presets {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.preset {
  padding: 8px 13px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-size: 13px;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.preset:hover { border-color: var(--green); }

.preset.is-on {
  background: var(--mint);
  border-color: var(--green);
  color: var(--green);
  font-weight: 700;
}

.calc-out {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 26px;
  padding: 34px;
  background: var(--deep);
  color: #fff;
}

.calc-out p { margin: 0; }

.calc-out small {
  display: block;
  color: #a7d9bd;
  font-size: 13px;
}

.calc-out b {
  display: block;
  margin-top: 6px;
  font-size: 30px;
  letter-spacing: -0.8px;
  line-height: 1.1;
}

.calc-total b {
  font-size: clamp(44px, 5vw, 64px);
  letter-spacing: -2px;
}

.eco-foot {
  grid-column: 1 / -1;
  margin: 0;
  padding: 16px 34px 18px;
  background: var(--mint);
}

.road-head { margin: 64px 0 0; }

.road {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  counter-reset: road;
}

.road li {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px 18px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--line);
}

.road b {
  color: var(--ink);
  font-size: 15px;
  letter-spacing: -0.2px;
}

.road span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.road em {
  margin-top: auto;
  padding-top: 8px;
  font-style: normal;
  font-size: 12px;
  font-weight: 700;
  color: var(--green);
}

.road li.is-live {
  border: 2px solid var(--green);
}

.closing {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 70% at 110% 0%, rgba(79, 156, 128, 0.38), transparent 58%),
    radial-gradient(ellipse 50% 50% at -10% 100%, rgba(0, 0, 0, 0.22), transparent 55%),
    var(--deep);
  color: white;
  padding: 70px 0;
}

.closing::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

.closing .wrap { position: relative; z-index: 1; }

.closing-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 72px;
  align-items: start;
}

.closing h2 { max-width: 16ch; }

.closing .eyebrow { color: #a7d9bd; }

.closing p { color: #c5d9cf; max-width: 36rem; }

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-top: 26px;
  font-size: 16px;
}

.contact-links a {
  width: fit-content;
  border-bottom: 1px solid #ffffff40;
  transition: border-color 0.18s ease;
}

.contact-links a:hover { border-bottom-color: #fff; }

.office { margin-top: 28px; }

.closing .office-label {
  margin: 18px 0 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #9eb5ab;
}

.closing .office-lines {
  margin: 0;
  color: #fff;
  line-height: 1.55;
}

.office a {
  display: inline-block;
  width: fit-content;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  border-bottom: 1px solid #ffffff40;
}

.office a:hover { border-bottom-color: #fff; }

.closing .office-hours {
  margin: 14px 0 0;
  color: #9eb5ab;
  font-size: 14px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

label {
  font-size: 12px;
  display: block;
  color: #dce9e2;
}

label span { color: #9eb5ab; }

.fieldwide { grid-column: 1 / -1; }

input, textarea {
  width: 100%;
  margin-top: 6px;
  min-height: 47px;
  border-radius: 7px;
  background: #ffffff0c;
  border: 1px solid #648a7b;
  color: white;
  padding: 10px 13px;
}

textarea { resize: vertical; min-height: 77px; }

.form-note {
  font-size: 12px;
  margin: 13px 0 0;
  color: #c5d9cf;
}

.form-note a { border-bottom: 1px solid #ffffff55; }

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 85px;
  color: var(--muted);
  font-size: 12px;
}

.footer .logo { font-size: 20px; }

.footerlinks { display: flex; gap: 22px; }

@media (min-width: 1400px) {
  .hero { padding-top: 148px; }
}

@media (max-width: 1000px) {
  .navlinks { gap: 16px; }
  .hero-grid,
  .proof-layout,
  .closing-grid { gap: 28px; }
  h1 { font-size: 52px; }
  .problems { grid-template-columns: 1fr 1fr; }
  .panel { grid-template-columns: 1fr; gap: 32px; padding: 32px; min-height: 0; }
  .data-grid,
  .calc { grid-template-columns: 1fr; }
  .road { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 760px) {
  .wrap { width: calc(100% - 36px); }
  .nav { min-height: 56px; padding: 6px 6px 6px 16px; }
  .logo { font-size: 22px; }
  .menu { display: grid; }
  .header { padding-top: 10px; }

  .navlinks {
    display: flex;
    visibility: hidden;
    pointer-events: none;
    opacity: 0;
    transform: translateY(-8px);
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(18px) saturate(1.3);
    -webkit-backdrop-filter: blur(18px) saturate(1.3);
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: 22px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    box-shadow: 0 16px 40px rgba(21, 44, 39, 0.12);
    transition: opacity 0.32s cubic-bezier(0.16, 1, 0.3, 1), transform 0.32s cubic-bezier(0.16, 1, 0.3, 1), visibility 0s linear 0.32s;
  }

  .navlinks a {
    padding: 10px 8px;
  }

  .navlinks .nav-demo {
    margin-top: 6px;
    justify-content: center;
  }

  .navlinks.open {
    visibility: visible;
    pointer-events: auto;
    opacity: 1;
    transform: none;
    transition: opacity 0.32s cubic-bezier(0.16, 1, 0.3, 1), transform 0.32s cubic-bezier(0.16, 1, 0.3, 1), visibility 0s linear 0s;
  }

  .header.on-dark .navlinks {
    background: rgba(14, 20, 18, 0.82);
    border-color: rgba(255, 255, 255, 0.14);
  }

  .hero { padding: 112px 0 64px; border-radius: 0; }
  main > section + section { margin-top: 0; border-radius: 0; }
  .finder-stats { grid-template-columns: 1fr 1fr; }
  .hero-grid,
  .paths,
  .proof-layout,
  .closing-grid,
  .stats,
  .status-board,
  .problems { grid-template-columns: 1fr; }
  .hero-grid > *,
  .paths > *,
  .proof-layout > *,
  .closing-grid > *,
  .panel > *,
  .data-grid > * { min-width: 0; }
  .tabs {
    flex-wrap: nowrap;
    width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .tabs::-webkit-scrollbar { display: none; }
  .tab { flex: 0 0 auto; padding: 9px 14px; font-size: 13px; }
  .panel { padding: 20px; border-radius: 20px; }
  .panel-copy h3 { font-size: 24px; }
  .mock { padding: 16px; }
  .unit-facts { grid-template-columns: 1fr 1fr; }
  .unit-card-foot { flex-direction: column; align-items: stretch; }
  .fake-btn { text-align: center; }
  .msg { max-width: 94%; }
  .signal-list li { grid-template-columns: 1fr; gap: 4px; }
  .machine { padding: 22px; }
  .status-now,
  .status-next { padding: 28px 22px 12px; }
  .status-now h3,
  .status-next h3 { font-size: 22px; }
  .calc-in,
  .calc-out { padding: 24px; }
  .eco-foot { padding: 16px 24px; }

  h1 { font-size: 36px; letter-spacing: -1.5px; }
  h2 { font-size: 32px; letter-spacing: -1.2px; }
  .eyebrow { font-size: 11px; letter-spacing: 1.2px; }
  .lead { font-size: 16px; }
  .actions { flex-direction: column; align-items: stretch; }
  .actions .btn { width: 100%; flex: none; }
  .unit > div { min-width: 0; }
  .appbar { align-items: flex-start; }
  .hero-foot {
    margin-top: 28px;
    flex-direction: column;
    align-items: flex-start;
  }
  section.block { padding: 72px 0; }
  .section-head { margin-bottom: 32px; }
  .scene:after,
  #proof .scene:after {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.58));
  }
  .units { min-height: 468px; }
  .unit b { font-size: 13px; }
  .kpis { grid-template-columns: 1fr; }
  .road { grid-template-columns: 1fr 1fr; }
  .road li:last-child { grid-column: 1 / -1; }
  .closing { padding: 48px 0; }
  .closing h2 { max-width: none; font-size: 36px; }
  .form-grid { grid-template-columns: 1fr; }
  .footer { padding: 22px 0; flex-wrap: wrap; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero::before { animation: none; }
  .btn, .meter span, .nav, .crumbs li { transition: none; }
  .status.is-live:before { animation: none; }
}

@media print {
  .header { position: static; }
  .menu { display: none; }
  .hero, section.block, .closing { break-inside: avoid; }
}
