:root {
  --ink: #171918;
  --muted: #666b68;
  --line: #d8dcda;
  --paper: #f7f7f4;
  --cream: #eee9df;
  --mint: #d9f3e5;
  --green: #1f7d55;
  --lime: #93d9aa;
  --white: #fff;
  --black: #111312;
  --shell: min(1280px, calc(100vw - 80px));
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: Inter, "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.modal-open { overflow: hidden; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
.shell { width: var(--shell); margin-inline: auto; }
.skip-link { position: fixed; z-index: 999; left: 16px; top: -60px; padding: 10px 16px; border-radius: 8px; background: #fff; color: #111; transition: top .2s; }
.skip-link:focus { top: 16px; }

.notice-bar {
  position: fixed;
  z-index: 120;
  inset: 0 0 auto;
  height: 40px;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  border-bottom: 1px solid rgba(0,0,0,.08);
  color: #262927;
  background: #f0f1ee;
  font-size: 12px;
}
.notice-bar p { margin: 0; }
.notice-bar p span { margin-right: 8px; font-weight: 700; }
.notice-bar button { border: 0; border-bottom: 1px solid #878b88; padding: 0 0 2px; background: none; cursor: pointer; font-size: 11px; }
.notice-bar i { font-style: normal; }

.site-header {
  position: fixed;
  z-index: 110;
  top: 58px;
  left: 50%;
  width: min(1380px, calc(100vw - 40px));
  min-height: 68px;
  padding: 8px 10px 8px 20px;
  display: grid;
  grid-template-columns: 210px 1fr 210px;
  align-items: center;
  transform: translateX(-50%);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 18px;
  color: #fff;
  background: rgba(18,19,18,.15);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: top .25s, color .25s, background .25s, box-shadow .25s, border .25s;
}
.site-header.scrolled {
  top: 50px;
  color: #191b1a;
  border-color: rgba(0,0,0,.08);
  background: rgba(255,255,255,.88);
  box-shadow: 0 12px 45px rgba(0,0,0,.09);
}
.brand { display: inline-flex; align-items: center; gap: 10px; width: max-content; }
.brand svg { width: 39px; height: 39px; }
.brand-fill { fill: #fff; }
.brand-line { fill: none; stroke: #173c2b; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.brand > span { display: flex; flex-direction: column; gap: 4px; }
.brand b { font-size: 17px; letter-spacing: .12em; }
.brand small { color: rgba(255,255,255,.52); font-size: 7px; letter-spacing: .16em; }
.site-header.scrolled .brand-fill, .footer-brand .brand-fill { fill: #173c2b; }
.site-header.scrolled .brand-line, .footer-brand .brand-line { stroke: #fff; }
.site-header.scrolled .brand small { color: rgba(0,0,0,.42); }
.main-nav { display: flex; align-items: center; justify-content: center; gap: clamp(18px, 2.4vw, 38px); }
.main-nav a { position: relative; font-size: 13px; }
.main-nav a::after { content: ""; position: absolute; left: 50%; right: 50%; bottom: -8px; height: 1px; background: currentColor; transition: left .2s, right .2s; }
.main-nav a:hover::after { left: 0; right: 0; }
.nav-actions { display: flex; align-items: center; justify-content: flex-end; gap: 15px; }
.nav-actions > a { font-size: 12px; border-bottom: 1px solid currentColor; padding-bottom: 2px; }
.menu-button { display: none; }

.pill-button {
  min-height: 42px;
  padding: 0 19px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-weight: 650;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, background .2s;
}
.pill-button:hover { transform: translateY(-2px); }
.pill-button i { font-style: normal; font-size: 16px; }
.pill-button-white { color: #171918; background: #fff; box-shadow: 0 10px 28px rgba(0,0,0,.12); }
.site-header.scrolled .pill-button-white { color: #fff; background: #171918; }
.pill-button-large { min-height: 52px; padding: 0 25px; border-radius: 13px; }
.pill-button-dark { color: #fff; background: #171918; }
.text-arrow, .glass-arrow, .plain-button { border: 0; background: none; cursor: pointer; }
button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible { outline: 3px solid rgba(50,165,107,.35); outline-offset: 3px; }

.hero { position: relative; height: calc(100svh - 0px); min-height: 760px; overflow: hidden; color: #fff; background: #2a2b27; }
.hero-image, .hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-image { object-fit: cover; object-position: center; transform: scale(1.015); animation: heroZoom 12s ease-out both; }
@keyframes heroZoom { from { transform: scale(1.06); } to { transform: scale(1.015); } }
.hero-shade { background: linear-gradient(180deg, rgba(8,10,8,.52), rgba(7,9,8,.08) 42%, rgba(6,7,6,.62)); }
.hero-content { position: absolute; z-index: 2; inset: 0; padding-top: 90px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.hero-label { margin: 0 0 21px; font-size: 9px; font-weight: 700; letter-spacing: .28em; }
.hero h1 { margin: 0; display: flex; flex-direction: column; align-items: center; font-weight: 500; line-height: 1.07; }
.hero h1 em { font-family: "Songti SC", STSong, Georgia, serif; font-size: clamp(58px, 6vw, 92px); font-weight: 500; letter-spacing: -.05em; }
.hero h1 span { margin-top: 4px; font-size: clamp(39px, 4.25vw, 65px); letter-spacing: -.055em; }
.hero-content .pill-button { margin-top: 30px; }
.hero-description { position: absolute; z-index: 3; left: max(40px, calc((100vw - 1380px) / 2)); bottom: 54px; width: 410px; margin: 0; color: rgba(255,255,255,.75); font-size: 13px; line-height: 1.85; }
.hero-feature { position: absolute; z-index: 3; right: max(40px, calc((100vw - 1380px) / 2)); bottom: 54px; width: 380px; min-height: 130px; padding: 12px; display: grid; grid-template-columns: 106px 1fr; gap: 15px; border: 1px solid rgba(255,255,255,.16); border-radius: 20px; background: rgba(10,12,10,.25); backdrop-filter: blur(18px); box-shadow: 0 16px 60px rgba(0,0,0,.2); }
.feature-image { overflow: hidden; border-radius: 11px; }
.feature-image img { width: 100%; height: 100%; object-fit: cover; }
.feature-copy { position: relative; padding: 7px 38px 24px 0; }
.feature-copy small { color: rgba(255,255,255,.48); font-size: 8px; letter-spacing: .1em; }
.feature-copy b { display: block; margin-top: 7px; font-size: 14px; }
.feature-copy p { margin: 8px 0 0; color: rgba(255,255,255,.57); font-size: 9px; }
.feature-copy button, .feature-copy > a { position: absolute; right: 0; bottom: 0; width: 34px; height: 34px; display: grid; place-items: center; border: 0; border-radius: 10px; color: #fff; background: rgba(255,255,255,.17); cursor: pointer; }
.feature-dots { position: absolute; left: 133px; bottom: 12px; display: flex; align-items: center; gap: 5px; }
.feature-dots i { width: 5px; height: 5px; border-radius: 9px; background: rgba(255,255,255,.38); transition: width .25s, background .25s; }
.feature-dots i.active { width: 18px; background: #fff; }
.hero-scroll { position: absolute; z-index: 3; left: 50%; bottom: 18px; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 6px; color: rgba(255,255,255,.4); font-size: 6px; letter-spacing: .2em; }
.hero-scroll i { width: 1px; height: 25px; background: linear-gradient(#fff, transparent); animation: scrollLine 2s infinite; }
@keyframes scrollLine { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

.trust-section { padding: 58px 0 50px; overflow: hidden; border-bottom: 1px solid #e5e7e4; text-align: center; background: #fff; }
.trust-section > p { margin: 0 0 28px; color: #848985; font-size: 10px; letter-spacing: .12em; }
.trust-marquee { overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.trust-marquee > div { width: max-content; display: flex; align-items: center; gap: 34px; animation: marquee 24s linear infinite; }
.trust-marquee span { color: #565b57; font-family: "Songti SC", STSong, serif; font-size: 18px; white-space: nowrap; }
.trust-marquee i { width: 5px; height: 5px; border: 1px solid #8b918c; transform: rotate(45deg); }
@keyframes marquee { to { transform: translateX(-33.33%); } }

.section { padding: 150px 0; }
.section-intro { margin-bottom: 68px; }
.section-intro.centered { max-width: 860px; margin-inline: auto; text-align: center; }
.eyebrow { margin: 0 0 18px; color: #6f7571; font-size: 9px; letter-spacing: .22em; font-weight: 700; }
.eyebrow.light { color: rgba(255,255,255,.6); }
.section-intro h2 { margin: 0; font-size: clamp(43px, 5vw, 70px); font-weight: 500; line-height: 1.12; letter-spacing: -.055em; }
.section-intro h2 em, .solutions-inner h2 em, .final-cta h2 em, .faq-layout h2 em { font-family: "Songti SC", STSong, Georgia, serif; font-weight: 500; }
.section-intro > p:last-child { max-width: 610px; margin: 24px auto 0; color: var(--muted); font-size: 14px; line-height: 1.8; }
.platform-section { overflow: hidden; background: #f4f4f0; }
.ai-workbench {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 18px;
  align-items: stretch;
}
.workbench-panel,
.workbench-preview,
.tour-lab {
  border: 1px solid rgba(20,23,21,.08);
  border-radius: 28px;
  background: rgba(255,255,255,.72);
  box-shadow: 0 28px 80px rgba(31,38,32,.08);
}
.workbench-panel { padding: 28px; }
.workbench-head,
.preview-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.workbench-head span,
.preview-toolbar span {
  color: #5d655f;
  font-size: 9px;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.workbench-head b,
.preview-toolbar b {
  padding: 8px 10px;
  border-radius: 999px;
  color: #267a55;
  background: #dff1e6;
  font-size: 8px;
}
.tool-tabs {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.tool-tabs button {
  min-height: 42px;
  padding: 0 10px;
  border: 1px solid #d8ddd8;
  border-radius: 11px;
  color: #59615b;
  background: #fff;
  cursor: pointer;
  font-size: 9px;
}
.tool-tabs button.active {
  color: #fff;
  border-color: #17251f;
  background: #17251f;
  box-shadow: 0 12px 28px rgba(23,37,31,.16);
}
.upload-box {
  margin-top: 18px;
  min-height: 104px;
  padding: 20px;
  display: grid;
  place-content: center;
  gap: 8px;
  border: 1px dashed #b8c1ba;
  border-radius: 17px;
  color: #2a302c;
  background: #f8faf7;
  text-align: center;
  cursor: pointer;
}
.upload-box input { display: none; }
.upload-box span { font-size: 13px; font-weight: 650; }
.upload-box small { color: #7b837d; font-size: 9px; line-height: 1.6; }
.field-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.field-grid label,
.prompt-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.field-grid span,
.prompt-field span {
  color: #727a74;
  font-size: 8px;
  letter-spacing: .08em;
}
.field-grid select,
.prompt-field textarea {
  width: 100%;
  border: 1px solid #d4d9d5;
  border-radius: 11px;
  background: #fff;
  outline: none;
  color: #202521;
  font-size: 11px;
}
.field-grid select { height: 43px; padding: 0 12px; }
.prompt-field { margin-top: 14px; }
.prompt-field textarea {
  padding: 12px;
  resize: vertical;
  line-height: 1.7;
}
.generation-actions {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 15px;
}
.generation-actions small {
  color: #767d78;
  font-size: 9px;
  line-height: 1.55;
}
.workbench-preview {
  padding: 22px;
  display: flex;
  flex-direction: column;
}
.preview-stage {
  position: relative;
  flex: 1;
  min-height: 520px;
  margin-top: 16px;
  overflow: hidden;
  border-radius: 22px;
  background: #161916;
}
.preview-stage img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity .45s ease, transform .7s ease, filter .45s ease;
}
.preview-before { opacity: .35; filter: saturate(.75) contrast(.92); }
.preview-after { opacity: 0; transform: scale(1.025); }
.preview-after.active { opacity: 1; transform: scale(1); }
.preview-stage.generating .preview-after { filter: blur(8px) saturate(1.15); }
.scan-line {
  position: absolute;
  z-index: 3;
  inset: 0 auto 0 0;
  width: 2px;
  background: linear-gradient(transparent, rgba(255,255,255,.95), transparent);
  opacity: 0;
  box-shadow: 0 0 32px rgba(255,255,255,.8);
}
.preview-stage.generating .scan-line {
  opacity: 1;
  animation: scanPreview 1.5s ease-in-out infinite;
}
@keyframes scanPreview { 0% { left: 8%; } 50% { left: 92%; } 100% { left: 8%; } }
.preview-chip {
  position: absolute;
  z-index: 4;
  padding: 9px 12px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  color: rgba(255,255,255,.86);
  background: rgba(0,0,0,.22);
  backdrop-filter: blur(10px);
  font-size: 8px;
}
.chip-a { left: 18px; top: 18px; }
.chip-b { right: 18px; top: 18px; }
.chip-c { left: 18px; bottom: 18px; }
.preview-metrics {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.preview-metrics div {
  min-height: 78px;
  padding: 15px;
  border: 1px solid rgba(20,23,21,.08);
  border-radius: 16px;
  background: #fff;
}
.preview-metrics b,
.preview-metrics span { display: block; }
.preview-metrics b { font-size: 23px; font-weight: 520; letter-spacing: -.04em; }
.preview-metrics span { margin-top: 6px; color: #777f79; font-size: 8px; }
.platform-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #d5d9d5;
  border-left: 1px solid #d5d9d5;
}
.platform-grid article {
  min-height: 205px;
  padding: 24px;
  border-right: 1px solid #d5d9d5;
  border-bottom: 1px solid #d5d9d5;
  background: rgba(255,255,255,.46);
}
.platform-grid span {
  color: #267a55;
  font-size: 9px;
  letter-spacing: .12em;
}
.platform-grid h3 {
  margin: 38px 0 0;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -.03em;
}
.platform-grid p {
  margin: 12px 0 0;
  color: #6c746e;
  font-size: 10px;
  line-height: 1.75;
}
.tour-lab {
  margin-top: 18px;
  padding: 22px;
  display: grid;
  grid-template-columns: .68fr 1.32fr;
  gap: 24px;
  background: #171918;
  color: #fff;
}
.tour-copy {
  padding: 30px 12px 30px 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.tour-copy h3 {
  margin: 0;
  font-size: clamp(32px, 3.6vw, 54px);
  font-weight: 520;
  line-height: 1.12;
  letter-spacing: -.055em;
}
.tour-copy > p:not(.eyebrow) {
  margin: 22px 0 0;
  color: rgba(255,255,255,.62);
  font-size: 12px;
  line-height: 1.85;
}
.tour-controls {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.tour-controls button {
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  color: rgba(255,255,255,.62);
  background: rgba(255,255,255,.06);
  cursor: pointer;
  font-size: 9px;
}
.tour-controls button.active {
  color: #161916;
  border-color: #fff;
  background: #fff;
}
.tour-view {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: 22px;
  background-image: linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.18)), url("./assets/room-staged.jpg");
  background-size: 135% 100%;
  background-position: 45% center;
  transition: background-position .7s ease, filter .35s ease;
}
.tour-reticle {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 86px;
  height: 86px;
  transform: translate(-50%,-50%);
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 50%;
  box-shadow: 0 0 0 999px rgba(0,0,0,.02);
}
.tour-reticle::before,
.tour-reticle::after {
  content: "";
  position: absolute;
  background: rgba(255,255,255,.45);
}
.tour-reticle::before { left: 50%; top: 14px; bottom: 14px; width: 1px; }
.tour-reticle::after { top: 50%; left: 14px; right: 14px; height: 1px; }
.hotspot {
  position: absolute;
  z-index: 3;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,.75);
  border-radius: 50%;
  color: #171918;
  background: rgba(255,255,255,.92);
  cursor: pointer;
  font-size: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,.22);
}
.hotspot-a { left: 24%; top: 36%; }
.hotspot-b { left: 63%; top: 50%; }
.hotspot-c { left: 46%; top: 68%; }
.tour-card {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: min(320px, calc(100% - 44px));
  padding: 19px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 17px;
  background: rgba(12,14,12,.45);
  backdrop-filter: blur(14px);
}
.tour-card span,
.tour-card b,
.tour-card small { display: block; }
.tour-card span { color: #bfe9cd; font-size: 8px; letter-spacing: .12em; }
.tour-card b { margin-top: 9px; font-size: 15px; line-height: 1.55; }
.tour-card small { margin-top: 10px; color: rgba(255,255,255,.52); font-size: 8px; }
.products { background: #fafaf8; }
.product-stack { display: grid; gap: 20px; }
.product-card { position: relative; overflow: hidden; border-radius: var(--radius); min-width: 0; }
.product-card-dark { min-height: 660px; padding: 58px; display: grid; grid-template-columns: .72fr 1.28fr; gap: 70px; color: #fff; background: #151716; }
.product-copy { position: relative; z-index: 3; }
.card-number { margin: 0 0 42px; color: #858a86; font-size: 9px; letter-spacing: .16em; }
.product-copy h3 { margin: 0; font-size: 38px; font-weight: 550; letter-spacing: -.045em; }
.product-copy > p:not(.card-number) { margin: 20px 0 0; max-width: 440px; color: #686d69; font-size: 13px; line-height: 1.85; }
.product-card-dark .product-copy > p:not(.card-number) { color: rgba(255,255,255,.53); }
.product-copy ul { margin: 31px 0 0; padding: 0; list-style: none; color: rgba(255,255,255,.74); font-size: 12px; }
.product-copy li { position: relative; margin: 13px 0; padding-left: 19px; }
.product-copy li::before { content: ""; position: absolute; left: 0; top: 5px; width: 7px; height: 7px; border-radius: 50%; background: #8ccca5; }
.text-arrow { margin-top: 52px; padding: 0 0 6px; border-bottom: 1px solid rgba(255,255,255,.35); color: #fff; font-size: 12px; }
.text-arrow i { margin-left: 9px; font-style: normal; }
.matching-ui { align-self: center; min-width: 0; padding: 24px; border: 1px solid rgba(255,255,255,.14); border-radius: 24px; background: rgba(255,255,255,.065); box-shadow: 0 45px 100px rgba(0,0,0,.24); }
.matching-top { display: flex; justify-content: space-between; color: rgba(255,255,255,.55); font-size: 9px; }
.matching-top span { display: flex; align-items: center; gap: 8px; }.matching-top span i { width: 7px; height: 7px; border-radius: 50%; background: #75cf99; box-shadow: 0 0 0 5px rgba(117,207,153,.1); }.matching-top b { color: #9edbb6; font-weight: 600; }
.matching-profile { margin-top: 22px; display: flex; flex-wrap: wrap; gap: 7px; }.matching-profile span { padding: 8px 10px; border: 1px solid rgba(255,255,255,.13); border-radius: 99px; color: rgba(255,255,255,.66); font-size: 8px; }
.property-result { position: relative; height: 305px; margin-top: 17px; overflow: hidden; border-radius: 16px; }.property-result > img { width: 100%; height: 100%; object-fit: cover; }.property-result::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,.72)); }
.match-score { position: absolute; z-index: 2; top: 14px; right: 14px; width: 60px; height: 60px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; background: rgba(13,22,17,.35); backdrop-filter: blur(12px); }.match-score b { font-size: 18px; }.match-score small { margin-top: -15px; color: rgba(255,255,255,.56); font-size: 5px; }
.property-name { position: absolute; z-index: 3; left: 19px; bottom: 18px; }.property-name small, .property-name strong, .property-name span { display: block; }.property-name small { color: #a6d7b9; font-size: 6px; letter-spacing: .14em; }.property-name strong { margin-top: 5px; font-size: 16px; }.property-name span { margin-top: 6px; color: rgba(255,255,255,.57); font-size: 8px; }
.reason-row { margin-top: 18px; display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }.reason-row span { display: grid; gap: 8px; color: rgba(255,255,255,.52); font-size: 7px; }.reason-row i { position: relative; height: 3px; border-radius: 4px; background: rgba(255,255,255,.1); }.reason-row i::after { content: ""; position: absolute; inset: 0 auto 0 0; width: var(--score); border-radius: inherit; background: #82cba0; }
.product-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.product-card-image, .product-card-cream { min-height: 650px; }
.product-card-image > img, .image-overlay { position: absolute; inset: 0; width: 100%; height: 100%; }.product-card-image > img { object-fit: cover; }.image-overlay { background: linear-gradient(180deg, rgba(0,0,0,.15), rgba(0,0,0,.66)); }
.light-copy { position: absolute; left: 42px; right: 42px; bottom: 42px; color: #fff; }.light-copy .card-number { color: rgba(255,255,255,.55); margin-bottom: 25px; }.light-copy > p:not(.card-number) { color: rgba(255,255,255,.72); }.glass-arrow { position: absolute; right: 0; bottom: 0; width: 46px; height: 46px; display: grid; place-items: center; border-radius: 13px; color: white; background: rgba(255,255,255,.16); backdrop-filter: blur(12px); text-decoration: none; }
.scene-switch { position: absolute; z-index: 3; top: 30px; left: 30px; padding: 10px 13px; display: flex; align-items: center; gap: 9px; border: 1px solid rgba(255,255,255,.2); border-radius: 10px; color: #fff; background: rgba(0,0,0,.16); backdrop-filter: blur(10px); font-size: 8px; }.scene-switch i { width: 5px; height: 5px; border-radius: 50%; background: #8ad7a7; }
.product-card-cream { padding: 42px; display: flex; flex-direction: column; background: #ede8de; }.product-card-cream .card-number { margin-bottom: 25px; }.product-card-cream .text-arrow { width: max-content; margin-top: 24px; color: #171918; border-bottom-color: rgba(17,21,19,.25); }
.delivery-ui { margin-top: auto; padding: 25px; border: 1px solid rgba(0,0,0,.09); border-radius: 19px; background: rgba(255,255,255,.6); box-shadow: 0 24px 70px rgba(66,53,34,.09); }.delivery-head { display: flex; justify-content: space-between; font-size: 10px; }.delivery-head b { color: #237b55; }.delivery-track { height: 5px; margin: 17px 0 24px; overflow: hidden; border-radius: 5px; background: #ddd9d0; }.delivery-track i { display: block; width: 72%; height: 100%; background: #397e5f; }
.delivery-ui ol { margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4,1fr); list-style: none; }.delivery-ui li { position: relative; text-align: center; color: #92938e; }.delivery-ui li::after { content: ""; position: absolute; top: 13px; left: 62%; right: -38%; height: 1px; background: #d1d2cc; }.delivery-ui li:last-child::after { display: none; }.delivery-ui li > i { position: relative; z-index: 2; width: 27px; height: 27px; margin: 0 auto 10px; display: grid; place-items: center; border: 1px solid #caccc7; border-radius: 50%; background: #f7f6f2; font-style: normal; font-size: 8px; }.delivery-ui li.done > i { color: #fff; border-color: #347b59; background: #347b59; }.delivery-ui li.active > i { color: #fff; border-color: #1b2b24; background: #1b2b24; box-shadow: 0 0 0 5px rgba(38,94,69,.12); }.delivery-ui li b, .delivery-ui li small { display: block; }.delivery-ui li b { color: #434743; font-size: 8px; }.delivery-ui li small { margin-top: 5px; font-size: 6px; }

.impact-section { position: relative; height: 100svh; min-height: 760px; overflow: hidden; color: #fff; }
.impact-bg, .impact-overlay { position: absolute; inset: 0; }.impact-bg img { width: 100%; height: 100%; object-fit: cover; }.impact-overlay { background: linear-gradient(90deg, rgba(10,12,10,.72), rgba(10,12,10,.05) 56%, rgba(10,12,10,.3)); }
.impact-content { position: relative; z-index: 2; height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.impact-title span, .impact-title small { display: block; }.impact-title span { font-family: "Songti SC", STSong, serif; font-size: 27px; }.impact-title b { display: block; margin: 4px 0 9px; font-size: clamp(110px, 15vw, 220px); font-weight: 450; line-height: .92; letter-spacing: -.09em; }.impact-title b em { color: #b9dfc6; font-size: .35em; font-style: normal; }.impact-title small { color: rgba(255,255,255,.55); font-size: 11px; letter-spacing: .1em; }
.impact-card { width: 360px; padding: 28px; border: 1px solid rgba(255,255,255,.17); border-radius: 22px; background: rgba(10,12,10,.22); backdrop-filter: blur(18px); }.impact-card > p { margin: 0 0 26px; color: rgba(255,255,255,.7); font-size: 12px; line-height: 1.8; }.impact-card > div { padding: 15px 0; display: flex; align-items: baseline; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.13); }.impact-card b { font-size: 26px; }.impact-card span { color: rgba(255,255,255,.48); font-size: 9px; }
.impact-note { position: absolute; z-index: 2; left: 50%; bottom: 20px; transform: translateX(-50%); width: 100%; text-align: center; color: rgba(255,255,255,.38); font-size: 7px; }

.workflow { background: #fff; }
.workflow-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px 24px; }
.workflow-step { min-width: 0; }.step-visual { height: 430px; overflow: hidden; border-radius: 24px; background: #f0f1ed; }.step-copy { margin-top: 23px; display: grid; grid-template-columns: 35px 1fr; column-gap: 11px; }.step-copy > span { width: 28px; height: 28px; display: grid; place-items: center; border: 1px solid #bfc4c0; border-radius: 50%; font-size: 9px; }.step-copy h3 { margin: 0; font-size: 21px; font-weight: 600; }.step-copy p { grid-column: 2; margin: 9px 0 0; color: var(--muted); font-size: 12px; }
.conversation-visual { padding: 55px; display: flex; flex-direction: column; justify-content: center; gap: 18px; background: #eef1ec; }.chat-bubble { max-width: 72%; padding: 18px 20px; border-radius: 18px; font-size: 13px; line-height: 1.6; }.chat-bubble.user { align-self: flex-end; border-bottom-right-radius: 5px; background: #fff; box-shadow: 0 15px 40px rgba(0,0,0,.06); }.chat-bubble.ai { display: flex; align-items: center; gap: 13px; border-bottom-left-radius: 5px; color: #fff; background: #17251f; }.chat-bubble.ai i { flex: 0 0 auto; width: 32px; height: 32px; display: grid; place-items: center; border-radius: 9px; color: #173c2b; background: #9ed6b4; font-style: normal; font-size: 9px; }
.radar-visual { position: relative; display: grid; place-items: center; color: #fff; background: #18211d; }.radar { position: relative; width: 245px; height: 245px; display: grid; place-items: center; border: 1px solid rgba(158,215,180,.3); border-radius: 50%; }.radar::before, .radar::after, .radar i { content: ""; position: absolute; border: 1px solid rgba(158,215,180,.2); border-radius: 50%; }.radar::before { inset: 40px; }.radar::after { inset: 80px; }.radar i:nth-child(1) { width: 5px; height: 5px; left: 27px; top: 81px; background: #9ed7b4; box-shadow: 0 0 17px #9ed7b4; }.radar i:nth-child(2) { width: 5px; height: 5px; right: 44px; top: 52px; background: #9ed7b4; }.radar i:nth-child(3) { width: 5px; height: 5px; right: 52px; bottom: 38px; background: #9ed7b4; }.radar b { font-size: 43px; font-weight: 500; }.radar span { position: absolute; top: 143px; color: rgba(255,255,255,.48); font-size: 8px; }.radar-tag { position: absolute; padding: 8px 11px; border: 1px solid rgba(255,255,255,.14); border-radius: 99px; color: rgba(255,255,255,.62); background: rgba(255,255,255,.06); font-size: 8px; }.tag-a { top: 70px; left: 60px; }.tag-b { right: 50px; top: 110px; }.tag-c { left: 90px; bottom: 63px; }
.preview-visual { position: relative; }.preview-visual img { width: 100%; height: 100%; object-fit: cover; }.preview-visual > div { position: absolute; right: 25px; bottom: 25px; width: 90px; height: 90px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; color: #fff; background: rgba(0,0,0,.2); backdrop-filter: blur(10px); }.preview-visual b, .preview-visual span { display: block; text-align: center; }.preview-visual b { font-size: 23px; }.preview-visual span { margin-top: -17px; font-size: 7px; }
.delivery-visual { padding: 50px; display: grid; grid-template-columns: 1fr 1fr; align-content: center; gap: 13px; color: #fff; background: #727e75; }.delivery-ring { grid-row: 1/4; align-self: center; width: 175px; height: 175px; display: grid; place-items: center; border: 8px solid rgba(255,255,255,.18); border-top-color: #d9f0e2; border-radius: 50%; }.delivery-ring b, .delivery-ring span { display: block; }.delivery-ring b { font-size: 55px; font-weight: 450; }.delivery-ring span { margin-top: -45px; color: rgba(255,255,255,.46); font-size: 8px; }.delivery-visual p { margin: 0; padding: 14px; display: flex; align-items: center; gap: 10px; border: 1px solid rgba(255,255,255,.13); border-radius: 10px; background: rgba(255,255,255,.06); font-size: 9px; }.delivery-visual p i { font-style: normal; color: #d5f2e0; }

.transform-section { background: #f3f3ef; }
.compare { position: relative; height: min(68vw, 720px); min-height: 480px; overflow: hidden; border-radius: 28px; background: #ddd; box-shadow: 0 30px 90px rgba(0,0,0,.1); }
.compare-base, .compare-after, .compare-after img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.compare-after { width: 58%; overflow: hidden; border-right: 1px solid rgba(255,255,255,.85); }.compare-after img { width: var(--shell); max-width: none; }
.compare input { position: absolute; z-index: 5; inset: 0; width: 100%; height: 100%; margin: 0; cursor: ew-resize; opacity: 0; }
.compare-handle { position: absolute; z-index: 4; top: 50%; left: 58%; width: 52px; height: 52px; transform: translate(-50%,-50%); display: grid; place-items: center; border: 2px solid #fff; border-radius: 50%; color: #1c201d; background: #fff; box-shadow: 0 8px 26px rgba(0,0,0,.22); pointer-events: none; }.compare-handle::before, .compare-handle::after { content: ""; position: absolute; left: 50%; width: 1px; height: 360px; background: rgba(255,255,255,.85); }.compare-handle::before { bottom: 52px; }.compare-handle::after { top: 52px; }.compare-handle span { font-size: 18px; letter-spacing: 4px; }
.compare-label { position: absolute; z-index: 3; top: 25px; padding: 9px 12px; border-radius: 8px; color: #fff; background: rgba(0,0,0,.28); backdrop-filter: blur(8px); font-size: 9px; }.label-before { left: 25px; }.label-after { right: 25px; }
.compare-meta { position: absolute; z-index: 3; right: 25px; bottom: 25px; padding: 13px 16px; display: flex; align-items: center; gap: 13px; border: 1px solid rgba(255,255,255,.2); border-radius: 11px; color: #fff; background: rgba(0,0,0,.2); backdrop-filter: blur(10px); font-size: 9px; }.compare-meta b { font-weight: 600; color: #c5ead3; }

.tools-section { overflow: hidden; background: #fff; }
.wide-intro { display: flex; align-items: flex-end; justify-content: space-between; gap: 60px; }.wide-intro > p { max-width: 390px; margin: 0 0 6px; text-align: left; }.tools-scroll { padding: 0 max(40px, calc((100vw - 1280px)/2)); display: grid; grid-auto-flow: column; grid-auto-columns: 360px; gap: 16px; overflow-x: auto; overscroll-behavior-x: contain; scrollbar-width: none; scroll-snap-type: x mandatory; }.tools-scroll::-webkit-scrollbar { display: none; }
.tool-card { position: relative; height: 500px; overflow: hidden; padding: 27px; border-radius: 22px; scroll-snap-align: start; }.tool-card > small { color: #777e79; font-size: 8px; letter-spacing: .15em; }.tool-card > h3 { margin: 20px 0 0; font-size: 25px; font-weight: 550; letter-spacing: -.03em; }.tool-card > p { position: absolute; left: 27px; right: 27px; bottom: 26px; margin: 0; color: #656b67; font-size: 10px; line-height: 1.6; }.tool-photo { padding: 0; color: #fff; }.tool-photo > img { width: 100%; height: 100%; object-fit: cover; }.tool-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.1), rgba(0,0,0,.7)); }.tool-photo > div { position: absolute; z-index: 2; left: 27px; right: 27px; bottom: 26px; }.tool-photo small { color: rgba(255,255,255,.54); font-size: 8px; letter-spacing: .15em; }.tool-photo h3 { margin: 14px 0 8px; font-size: 25px; }.tool-photo p { margin: 0; color: rgba(255,255,255,.66); font-size: 10px; }
.tool-black { color: #fff; background: #171918; }.tool-black > p { color: rgba(255,255,255,.5); }.tool-mint { background: #dceee3; }.tool-cream { background: #eee9df; }
.graph-mini { position: relative; width: 230px; height: 230px; margin: 55px auto 0; display: grid; place-items: center; border: 1px solid rgba(147,217,170,.25); border-radius: 50%; }.graph-mini::before, .graph-mini::after { content: ""; position: absolute; border: 1px solid rgba(147,217,170,.16); border-radius: 50%; }.graph-mini::before { inset: 35px; }.graph-mini::after { inset: 75px; }.graph-mini i { position: absolute; width: 7px; height: 7px; border-radius: 50%; background: #9bdab0; box-shadow: 0 0 15px #9bdab0; }.graph-mini i:nth-child(1) { top: 23px; left: 77px; }.graph-mini i:nth-child(2) { right: 25px; top: 94px; }.graph-mini i:nth-child(3) { bottom: 25px; right: 80px; }.graph-mini i:nth-child(4) { left: 28px; bottom: 85px; }.graph-mini b { font-size: 35px; font-weight: 450; }
.timer { margin-top: 80px; }.timer b { font-family: ui-monospace, monospace; font-size: 65px; font-weight: 400; letter-spacing: -.08em; }.timer i { display: block; width: 100%; height: 3px; margin-top: 25px; border-radius: 3px; background: linear-gradient(90deg,#2c7b55 78%,rgba(0,0,0,.1) 78%); }
.cost-list { margin-top: 65px; border-top: 1px solid rgba(0,0,0,.12); }.cost-list span { padding: 17px 0; display: flex; justify-content: space-between; border-bottom: 1px solid rgba(0,0,0,.12); color: #60655f; font-size: 9px; }.cost-list b { color: #202320; font-family: ui-monospace,monospace; }
.alert-mini { margin-top: 93px; padding: 15px; display: flex; align-items: center; gap: 12px; border: 1px solid rgba(255,255,255,.14); border-radius: 13px; background: rgba(255,255,255,.07); }.alert-mini > i { flex: 0 0 auto; width: 35px; height: 35px; display: grid; place-items: center; border-radius: 50%; color: #ffe1a5; background: rgba(255,205,110,.13); font-style: normal; }.alert-mini b, .alert-mini span { display: block; }.alert-mini b { margin-bottom: 5px; font-size: 10px; }.alert-mini span { color: rgba(255,255,255,.47); font-size: 7px; }

.solutions-section { position: relative; min-height: 900px; overflow: hidden; color: #fff; }.solutions-section > img, .solutions-shade { position: absolute; inset: 0; width: 100%; height: 100%; }.solutions-section > img { object-fit: cover; }.solutions-shade { background: linear-gradient(90deg, rgba(8,9,8,.8), rgba(8,9,8,.08) 80%); }
.solutions-inner { position: relative; z-index: 2; min-height: 900px; padding: 140px 0 70px; display: flex; flex-direction: column; align-items: flex-start; }.solutions-inner h2 { margin: 0; font-size: clamp(53px, 6vw, 85px); font-weight: 500; line-height: 1.03; letter-spacing: -.06em; }.role-tabs { margin-top: 60px; display: flex; flex-wrap: wrap; gap: 9px; }.role-tabs button { padding: 10px 15px; border: 1px solid rgba(255,255,255,.2); border-radius: 99px; color: rgba(255,255,255,.6); background: rgba(0,0,0,.1); cursor: pointer; backdrop-filter: blur(8px); font-size: 9px; }.role-tabs button.active { color: #191b1a; border-color: #fff; background: #fff; }
.role-content { margin-top: auto; max-width: 490px; }.role-content > span { color: rgba(255,255,255,.48); font-size: 8px; letter-spacing: .15em; }.role-content h3 { margin: 16px 0 0; font-size: 31px; font-weight: 550; }.role-content p { margin: 15px 0 24px; color: rgba(255,255,255,.62); font-size: 12px; line-height: 1.8; }

.proof-section { background: #f4f4f0; }.proof-grid { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid #d0d3d0; border-left: 1px solid #d0d3d0; }.proof-grid article { min-height: 300px; padding: 25px; display: flex; flex-direction: column; border-right: 1px solid #d0d3d0; border-bottom: 1px solid #d0d3d0; }.proof-grid span { color: #737a75; font-size: 9px; }.proof-grid b { margin: auto 0 10px; font-size: 60px; font-weight: 450; letter-spacing: -.07em; }.proof-grid b em { color: #267a55; font-size: 22px; font-style: normal; }.proof-grid p { margin: 0; color: #717772; font-size: 9px; line-height: 1.6; }.data-strip { margin-top: 16px; padding: 25px; display: flex; align-items: center; justify-content: space-around; border: 1px solid #d0d3d0; border-radius: 15px; color: #5d635e; font-size: 10px; }.data-strip i { width: 4px; height: 4px; border-radius: 50%; background: #347c59; }

.faq-section { background: #fff; }.faq-layout { display: grid; grid-template-columns: .76fr 1.24fr; gap: 120px; align-items: start; }.faq-layout .section-intro { position: sticky; top: 150px; margin: 0; }.faq-layout h2 { margin: 0; font-size: clamp(45px, 5vw, 67px); line-height: 1.08; letter-spacing: -.055em; font-weight: 500; }.faq-layout .section-intro > p:last-of-type { margin: 24px 0 0; }.faq-layout .section-intro > a { display: inline-block; margin-top: 25px; padding-bottom: 4px; border-bottom: 1px solid #747975; font-size: 11px; }
.faq-list { border-top: 1px solid #cfd3d0; }.faq-list article { border-bottom: 1px solid #cfd3d0; }.faq-list button { width: 100%; min-height: 82px; padding: 0 5px; display: flex; align-items: center; justify-content: space-between; border: 0; background: none; cursor: pointer; text-align: left; font-size: 16px; }.faq-list button i { width: 28px; height: 28px; display: grid; place-items: center; border: 1px solid #c7cbc8; border-radius: 50%; font-style: normal; font-size: 14px; }.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s; }.faq-answer > p { min-height: 0; overflow: hidden; margin: 0; color: #696f6a; font-size: 12px; line-height: 1.8; }.faq-list button[aria-expanded="true"] + .faq-answer { grid-template-rows: 1fr; }.faq-list button[aria-expanded="true"] + .faq-answer > p { padding: 0 45px 25px 5px; }

.final-cta { position: relative; min-height: 760px; overflow: hidden; display: grid; place-items: center; color: #fff; }.final-cta > img, .final-cta-shade { position: absolute; inset: 0; width: 100%; height: 100%; }.final-cta > img { object-fit: cover; }.final-cta-shade { background: rgba(8,10,8,.54); }.final-cta-content { position: relative; z-index: 2; max-width: 940px; padding: 80px 30px; text-align: center; }.final-cta-content > p { margin: 0 0 22px; font-size: 9px; letter-spacing: .22em; }.final-cta h2 { margin: 0; font-size: clamp(58px, 7vw, 100px); font-weight: 500; line-height: 1; letter-spacing: -.07em; }.final-cta-content > span { display: block; margin-top: 27px; color: rgba(255,255,255,.66); font-size: 13px; }.final-cta-content > div { margin-top: 35px; display: flex; align-items: center; justify-content: center; gap: 28px; }.final-cta-content > div > a { padding-bottom: 4px; border-bottom: 1px solid rgba(255,255,255,.5); font-size: 11px; }

.site-footer { padding: 80px 0 25px; color: #4e544f; background: #eff0ed; }.footer-main { display: grid; grid-template-columns: 1.5fr .7fr .8fr 1.2fr 1fr; gap: 50px; }.footer-brand .brand b { color: #1b201c; }.footer-brand .brand small { color: #737a75; }.footer-brand > p { margin: 23px 0 0; color: #737a75; font-size: 10px; line-height: 1.7; }.footer-links { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; font-size: 10px; line-height: 1.6; }.footer-links small { margin-bottom: 5px; color: #8a908b; font-size: 8px; letter-spacing: .1em; }.footer-links a:hover { color: #111; }.footer-links button { padding: 0 0 4px; border: 0; border-bottom: 1px solid #777d78; background: none; cursor: pointer; font-size: 10px; }.footer-bottom { margin-top: 60px; padding-top: 20px; display: flex; justify-content: space-between; border-top: 1px solid #d0d4d1; color: #888e89; font-size: 8px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s ease; }.reveal.visible { opacity: 1; transform: none; }.reveal-delay { transition-delay: .12s; }.reveal-delay-2 { transition-delay: .2s; }.reveal-delay-3 { transition-delay: .28s; }

.modal { width: min(820px, calc(100vw - 30px)); max-height: min(820px, calc(100svh - 30px)); padding: 0; overflow: auto; border: 0; border-radius: 25px; color: #181a18; background: #f7f7f4; box-shadow: 0 40px 120px rgba(0,0,0,.4); }.modal::backdrop { background: rgba(8,10,8,.72); backdrop-filter: blur(7px); }.modal-close { position: sticky; z-index: 5; float: right; top: 15px; right: 15px; width: 37px; height: 37px; margin: 15px 15px -52px 0; border: 1px solid #d5d8d5; border-radius: 50%; background: rgba(255,255,255,.9); cursor: pointer; font-size: 21px; }.match-shell { min-height: 590px; padding: 58px; }.modal-eyebrow { margin: 0 0 13px; color: #267a55; font-size: 8px; letter-spacing: .18em; font-weight: 700; }.match-shell > h2, .demo-aside h2 { margin: 0; font-size: 37px; font-weight: 550; letter-spacing: -.04em; }.modal-note { color: #747a75; font-size: 10px; }.question { display: none; margin-top: 55px; }.question.active { display: block; animation: fadeUp .3s ease both; }.question > span { color: #7c827d; font-size: 8px; }.question h3 { margin: 10px 0 20px; font-size: 21px; }.question > div { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }.question button { min-height: 58px; padding: 0 16px; border: 1px solid #d5d8d5; border-radius: 11px; background: #fff; cursor: pointer; text-align: left; font-size: 11px; transition: background .2s, border .2s, transform .2s; }.question button:hover { border-color: #4f9e75; background: #e8f5ed; transform: translateY(-2px); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(7px); } }
.match-loading, .match-result { display: none; min-height: 380px; text-align: center; place-content: center; }.match-loading.active, .match-result.active { display: grid; animation: fadeUp .3s ease both; }.match-loading > div { position: relative; width: 85px; height: 85px; margin: 0 auto 23px; border: 1px solid #bddcc9; border-radius: 50%; }.match-loading > div::before, .match-loading > div::after { content: ""; position: absolute; border: 1px solid #d6e9dd; border-radius: 50%; animation: modalPulse 1.8s infinite; }.match-loading > div::before { inset: -13px; }.match-loading > div::after { inset: -26px; animation-delay: .5s; }@keyframes modalPulse { from { opacity: 0; transform: scale(.85); } 45% { opacity: 1; } to { opacity: 0; transform: scale(1.12); } }.match-loading i { position: absolute; width: 9px; height: 9px; border-radius: 50%; background: #4b9d70; }.match-loading i:nth-child(1) { left: 24px; top: 23px; }.match-loading i:nth-child(2) { right: 24px; top: 23px; }.match-loading i:nth-child(3) { left: 38px; bottom: 19px; }.match-loading h3, .match-result h3 { margin: 0; font-size: 23px; }.match-loading p { color: #7d837e; font-size: 10px; }.result-score { width: 96px; height: 96px; margin: 0 auto 22px; display: grid; place-items: center; border: 5px solid #d2ebdc; border-top-color: #3f9869; border-radius: 50%; color: #277b55; font-size: 30px; }.result-score small { display: block; margin-top: -30px; font-size: 6px; }.result-tags { margin-top: 22px; display: flex; flex-wrap: wrap; justify-content: center; gap: 7px; }.result-tags span { padding: 8px 11px; border-radius: 99px; color: #267a55; background: #dff1e6; font-size: 9px; }.match-result > p:not(.modal-eyebrow) { max-width: 470px; margin: 17px auto 0; color: #687069; font-size: 11px; line-height: 1.8; }.result-actions { margin-top: 25px; display: flex; align-items: center; justify-content: center; gap: 18px; }.plain-button { padding: 3px 0; border-bottom: 1px solid #949a95; font-size: 10px; }
.demo-modal { width: min(900px, calc(100vw - 30px)); }.demo-grid { min-height: 610px; display: grid; grid-template-columns: .85fr 1.15fr; }.demo-aside { padding: 58px 43px; color: #fff; background: #18211d; }.demo-aside .modal-eyebrow { color: #9ed7b4; }.demo-aside > p:not(.modal-eyebrow) { color: rgba(255,255,255,.52); font-size: 11px; line-height: 1.75; }.demo-aside > div { margin-top: 60px; padding-top: 24px; display: flex; flex-direction: column; gap: 8px; border-top: 1px solid rgba(255,255,255,.12); }.demo-aside small { color: rgba(255,255,255,.38); font-size: 8px; }.demo-aside a { font-family: ui-monospace, monospace; font-size: 12px; }.demo-form { padding: 53px 45px 40px; display: flex; flex-direction: column; gap: 16px; }.demo-form label { display: flex; flex-direction: column; gap: 6px; }.demo-form label span { color: #646b65; font-size: 8px; }.demo-form input, .demo-form select, .demo-form textarea { width: 100%; border: 1px solid #d3d7d3; border-radius: 9px; background: #fff; outline: none; font-size: 10px; }.demo-form input, .demo-form select { height: 42px; padding: 0 12px; }.demo-form textarea { padding: 11px 12px; resize: vertical; }.demo-form > small { text-align: center; color: #909590; font-size: 7px; }.demo-success { display: none; padding: 65px 48px; grid-column: 2; place-content: center; text-align: center; }.demo-success.active { display: grid; }.demo-success > span { width: 58px; height: 58px; margin: 0 auto 20px; display: grid; place-items: center; border-radius: 50%; color: #277b55; background: #dff1e6; font-size: 23px; }.demo-success h3 { margin: 0; font-size: 24px; }.demo-success > p:not(.modal-eyebrow) { white-space: pre-line; color: #687069; font-size: 10px; line-height: 1.8; }.demo-success > div { margin-top: 25px; display: flex; align-items: center; justify-content: center; gap: 18px; }.demo-grid.success .demo-form { display: none; }

@media (max-width: 1100px) {
  :root { --shell: min(920px, calc(100vw - 48px)); }
  .site-header { grid-template-columns: 160px 1fr 170px; }
  .main-nav { gap: 17px; }
  .hero-description { left: 30px; }.hero-feature { right: 30px; }
  .product-card-dark { grid-template-columns: 1fr; }.product-card-dark .product-copy { display: grid; grid-template-columns: 1fr 1fr; gap: 0 30px; }.product-card-dark .product-copy .card-number, .product-card-dark .product-copy h3 { grid-column: 1; }.product-card-dark .product-copy > p, .product-card-dark .product-copy ul { grid-column: 2; }.product-card-dark .product-copy > p { grid-row: 1/3; margin-top: 0 !important; }.product-card-dark .text-arrow { width: max-content; margin-top: 25px; }
  .impact-content { align-items: flex-start; flex-direction: column; justify-content: center; }.impact-card { margin-left: auto; }
  .delivery-visual { padding: 35px; }.delivery-ring { width: 145px; height: 145px; }
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .footer-main { grid-template-columns: 1.4fr 1fr 1fr; }.footer-main > div:nth-child(4), .footer-main > div:nth-child(5) { margin-top: 15px; }
}

@media (max-width: 760px) {
  :root { --shell: calc(100vw - 30px); --radius: 20px; }
  .notice-bar { height: 48px; padding: 0 12px; justify-content: space-between; gap: 8px; font-size: 8px; }.notice-bar p span { display: none; }.notice-bar button { font-size: 8px; white-space: nowrap; }
  .site-header { top: 61px; min-height: 60px; width: calc(100vw - 24px); padding: 6px 8px 6px 13px; grid-template-columns: 1fr auto; }.site-header.scrolled { top: 56px; }.brand svg { width: 34px; height: 34px; }.brand b { font-size: 15px; }.brand small { font-size: 6px; }.nav-actions { display: none; }
  .menu-button { width: 39px; height: 39px; display: grid; place-content: center; gap: 6px; border: 0; border-radius: 10px; background: rgba(255,255,255,.16); }.site-header.scrolled .menu-button { background: #f0f1ef; }.menu-button i { width: 18px; height: 1px; background: currentColor; transition: transform .2s; }.menu-button[aria-expanded="true"] i:first-child { transform: translateY(3.5px) rotate(45deg); }.menu-button[aria-expanded="true"] i:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .main-nav { position: absolute; top: 67px; left: 0; right: 0; padding: 18px; display: none; flex-direction: column; align-items: stretch; border: 1px solid rgba(0,0,0,.1); border-radius: 15px; color: #171918; background: rgba(255,255,255,.96); box-shadow: 0 25px 60px rgba(0,0,0,.18); }.main-nav.open { display: flex; }.main-nav a { padding: 8px; }
  .hero { min-height: 780px; }.hero-image { object-position: 60% center; }.hero-shade { background: linear-gradient(180deg, rgba(8,10,8,.53), rgba(8,10,8,.1) 45%, rgba(8,10,8,.72)); }.hero-content { justify-content: flex-start; padding: 210px 20px 0; }.hero h1 em { font-size: 48px; }.hero h1 span { font-size: 33px; }.hero-description { left: 22px; bottom: 205px; width: calc(100% - 44px); font-size: 11px; }.hero-feature { right: 20px; left: 20px; bottom: 42px; width: auto; min-height: 120px; grid-template-columns: 95px 1fr; }.hero-scroll { display: none; }
  .section { padding: 96px 0; }.section-intro { margin-bottom: 44px; }.section-intro h2 { font-size: 39px; }.section-intro > p:last-child { font-size: 12px; }.product-card-dark { min-height: 0; padding: 30px 22px; gap: 35px; }.product-card-dark .product-copy { display: block; }.product-copy h3 { font-size: 30px; }.product-card-dark .product-copy > p, .product-card-dark .product-copy ul { margin-top: 17px !important; }.matching-ui { padding: 14px; }.property-result { height: 225px; }.product-pair { grid-template-columns: 1fr; }.product-card-image, .product-card-cream { min-height: 570px; }.light-copy { left: 25px; right: 25px; bottom: 25px; }.product-card-cream { padding: 26px 22px; }.delivery-ui { padding: 18px 10px; }.delivery-ui li b { font-size: 7px; }
  .impact-content { align-items: stretch; }.impact-title span { font-size: 20px; }.impact-title b { font-size: 105px; }.impact-card { width: 100%; }.impact-section { min-height: 740px; }
  .workflow-grid { grid-template-columns: 1fr; gap: 48px; }.step-visual { height: 350px; }.conversation-visual { padding: 30px 20px; }.chat-bubble { max-width: 88%; }.delivery-visual { padding: 25px 18px; }.delivery-ring { width: 125px; height: 125px; }.delivery-ring b { font-size: 42px; }
  .compare { height: 68vw; min-height: 290px; border-radius: 18px; }.compare-after img { width: calc(100vw - 30px); }.compare-meta { display: none; }.compare-label { top: 14px; }.label-before { left: 14px; }.label-after { right: 14px; }
  .wide-intro { display: block; }.wide-intro > p { margin-top: 20px; }
  .ai-workbench { grid-template-columns: 1fr; }.workbench-panel, .workbench-preview, .tour-lab { border-radius: 20px; }.workbench-panel { padding: 20px; }.tool-tabs { grid-template-columns: 1fr 1fr; }.field-grid { grid-template-columns: 1fr; }.generation-actions { align-items: stretch; flex-direction: column; }.preview-stage { min-height: 360px; }.preview-metrics { grid-template-columns: 1fr; }.platform-grid { grid-template-columns: 1fr; }.platform-grid article { min-height: 170px; }.platform-grid h3 { margin-top: 24px; }.tour-lab { grid-template-columns: 1fr; padding: 16px; }.tour-copy { padding: 20px 6px; }.tour-view { min-height: 430px; background-size: cover; }.hotspot-a { left: 20%; }.hotspot-b { left: 68%; }.tour-card { left: 16px; right: 16px; bottom: 16px; width: auto; }
  .tools-scroll { padding-inline: 15px; grid-auto-columns: 82vw; }.tool-card { height: 470px; }
  .solutions-section, .solutions-inner { min-height: 820px; }.solutions-section > img { object-position: 62% center; }.solutions-inner { padding-top: 95px; }.solutions-inner h2 { font-size: 51px; }.role-tabs { margin-top: 40px; }.role-content { margin-top: auto; }
  .proof-grid { grid-template-columns: 1fr; }.proof-grid article { min-height: 245px; }.data-strip { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }.data-strip i { display: none; }
  .faq-layout { grid-template-columns: 1fr; gap: 50px; }.faq-layout .section-intro { position: static; }.faq-layout h2 { font-size: 43px; }.faq-list button { font-size: 13px; }
  .final-cta { min-height: 700px; }.final-cta h2 { font-size: 52px; }.final-cta-content > div { flex-direction: column; gap: 20px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 40px 25px; }.footer-brand { grid-column: 1/3; }.footer-bottom { gap: 15px; }
  .match-shell { padding: 50px 22px 32px; }.match-shell > h2, .demo-aside h2 { font-size: 30px; }.question > div { grid-template-columns: 1fr; }.demo-grid { grid-template-columns: 1fr; }.demo-aside { padding: 50px 27px 32px; }.demo-aside > div { margin-top: 32px; }.demo-form { padding: 33px 24px; }.demo-success { grid-column: 1; padding: 50px 24px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
