:root {
  color-scheme: light;
  /* Brand tokens restored from the original HomeDash design system */
  --ink: #0a1020;
  --ink-soft: #29334a;
  --navy: #00002a;
  --navy-2: #00005a;
  --navy-soft: #1b1b4d;
  --paper: #f8f9fb;
  --white: #ffffff;
  --line: #dbe1ea;
  --cyan: #31bced;
  --cyan-deep: #1391c4;
  --cyan-ink: #0a5f85;
  --cyan-hover: #28a8d6;
  --cyan-light: #e3f6fe;
  --yellow: #ffb102;
  --yellow-light: #fff3d4;
  --green: #198754;
  --green-light: #dff3e9;
  --coral: #ef6b57;
  --coral-light: #ffe7e2;
  --blue: #4f6ef7;
  --blue-light: #e6ebff;
  --violet: #8b7bf0;
  --violet-light: #eee9ff;
  --max: 1180px;
  --header-height: 76px;
  --display: "Space Grotesk", "Inter", "Noto Sans HK", "Noto Sans SC", sans-serif;
  font-family: "Inter", "Noto Sans HK", "Noto Sans SC", sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

body.modal-open {
  overflow: hidden;
}

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

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

button {
  color: inherit;
}

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

img,
video {
  display: block;
  max-width: 100%;
}

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

h1,
h2,
h3,
.hero-kicker,
.stat-value,
.snapshot-figure {
  font-family: var(--display);
  letter-spacing: -0.6px;
}

h1,
h2,
h3,
h4,
strong,
b {
  font-weight: 700;
}

h2 {
  margin-bottom: 20px;
  font-size: 42px;
  line-height: 1.12;
}

h3 {
  margin-bottom: 18px;
  font-size: 31px;
  line-height: 1.18;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: minmax(190px, 1fr) auto minmax(190px, 1fr);
  align-items: center;
  width: 100%;
  min-height: var(--header-height);
  padding: 12px 32px;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 42, 0.9);
  transition: background-color 180ms ease, box-shadow 180ms ease;
}

.site-header.scrolled {
  background: rgba(0, 0, 42, 0.97);
  box-shadow: 0 10px 34px rgba(7, 19, 31, 0.17);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  font-size: 19px;
  font-weight: 800;
}

.brand img {
  width: 92px;
  height: 36px;
  object-fit: contain;
  object-position: left center;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.desktop-nav a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 600;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--white);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.language-switch {
  display: inline-grid;
  grid-template-columns: repeat(3, 32px);
  height: 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 5px;
}

.language-switch button {
  min-width: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.72);
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  cursor: pointer;
}

.language-switch button:last-child {
  border-right: 0;
}

.language-switch button[aria-pressed="true"] {
  color: var(--ink);
  background: var(--white);
  font-weight: 700;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 20px;
  color: var(--white);
  border: 1px solid var(--white);
  border-radius: 6px;
  background: transparent;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:focus-visible,
.icon-button:focus-visible,
.feature-media:focus-visible,
.reel-list button:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

.button svg {
  width: 18px;
  height: 18px;
}

.button-small {
  min-height: 38px;
  padding: 0 14px;
  border-color: var(--cyan);
  background: var(--cyan);
  color: var(--navy);
  font-size: 13px;
}

.button-small:hover {
  border-color: var(--cyan-hover);
  background: var(--cyan-hover);
}

.button-primary {
  color: var(--navy);
  border-color: var(--cyan);
  background: var(--cyan);
}

.button-primary:hover {
  border-color: var(--cyan-hover);
  background: var(--cyan-hover);
}

.button-ghost:hover {
  color: var(--ink);
  background: var(--white);
}

.icon-button {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid currentColor;
  border-radius: 6px;
  background: transparent;
  cursor: pointer;
}

.icon-button svg {
  width: 20px;
  height: 20px;
}

.menu-button,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: 760px;
  height: 88vh;
  max-height: 940px;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  background-color: var(--navy);
  background-image:
    radial-gradient(1150px 700px at 80% 4%, rgba(49, 188, 237, 0.2), transparent 60%),
    radial-gradient(780px 540px at 4% 102%, rgba(0, 0, 90, 0.6), transparent 62%),
    linear-gradient(160deg, #00002a 0%, #000536 55%, #000015 100%);
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(1020px 640px at 44% 42%, #000 52%, transparent 100%);
  mask-image: radial-gradient(1020px 640px at 44% 42%, #000 52%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  align-items: center;
  gap: 54px;
  width: min(var(--max), calc(100% - 64px));
  padding-top: var(--header-height);
}

.hero-visual {
  position: relative;
  justify-self: end;
  width: 100%;
  max-width: 560px;
}

.hero-visual::before {
  position: absolute;
  z-index: 0;
  inset: -16% -12% -20%;
  content: "";
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(49, 188, 237, 0.3), transparent 72%);
}

.hero-visual img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  box-shadow: 0 38px 80px -28px rgba(0, 0, 0, 0.78);
}

.hero-visual-chip {
  position: absolute;
  z-index: 2;
  top: -13px;
  left: 18px;
  padding: 6px 12px;
  color: var(--navy);
  border-radius: 999px;
  background: var(--yellow);
  box-shadow: 0 10px 24px -10px rgba(0, 0, 0, 0.65);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--cyan-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.eyebrow.light {
  color: var(--yellow);
}

/* Hero eyebrow becomes the original's pill badge */
.hero .eyebrow.light {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
  padding: 7px 15px 7px 13px;
  color: var(--cyan);
  border: 1px solid rgba(49, 188, 237, 0.38);
  border-radius: 999px;
  background: rgba(49, 188, 237, 0.1);
  font-size: 12.5px;
  letter-spacing: 0.3px;
}

.hero .eyebrow.light::before {
  width: 7px;
  height: 7px;
  content: "";
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px 1px rgba(49, 188, 237, 0.85);
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.2px;
}

.hero-kicker {
  max-width: 620px;
  margin-bottom: 20px;
  font-size: 54px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -1.6px;
}

/* Stacked two-tone headline, as in the original hero */
.hero-kicker > span {
  display: block;
}

.hero-kicker .accent {
  color: var(--cyan);
}

.hero-copy {
  max-width: 690px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.hero-note svg {
  width: 16px;
}

.hero-next {
  position: absolute;
  z-index: 1;
  right: 34px;
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 700;
}

.hero-next svg {
  width: 18px;
}

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

/* Social proof bands (press coverage + agency trust), restored from the
   original HomeDash site: light press-card row over a deep navy agency strip. */
.featured-band {
  padding: 42px 0 40px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.band-label {
  margin: 0 0 20px;
  color: #6d7b90;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-align: center;
  text-transform: uppercase;
}

.press-row,
.agency-row {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Content-width items centred as one tight cluster — stretching them across the
   full grid leaves ragged gaps, because the names differ a lot in length. */
.press-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.press-card {
  display: grid;
  gap: 2px;
  min-width: 132px;
  padding: 12px 20px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--white);
  box-shadow: 0 10px 24px -20px rgba(0, 0, 42, 0.32);
}

.press-card strong {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.3;
}

.press-card span {
  color: #85909f;
  font-size: 11px;
}

.trusted-band {
  padding: 38px 0 40px;
  color: var(--white);
  background: var(--navy);
}

.trusted-band .band-label {
  color: rgba(255, 255, 255, 0.6);
}

.agency-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 46px;
  text-align: center;
}

.agency-row li {
  display: grid;
  gap: 4px;
}

.agency-row strong {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.4px;
  line-height: 1.3;
}

.agency-row span {
  color: var(--cyan);
  font-size: 12.5px;
}

.snapshot-band {
  padding: 96px 0 72px;
  background: var(--white);
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.8fr);
  column-gap: 80px;
  align-items: end;
}

.section-intro .eyebrow {
  grid-column: 1 / -1;
}

.section-intro h2 {
  margin-bottom: 0;
}

.section-intro > p:last-child {
  margin: 0;
  color: var(--ink-soft);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 60px 0 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.metrics div {
  min-width: 0;
  padding: 28px 28px 28px 0;
  border-right: 1px solid var(--line);
}

.metrics div:not(:first-child) {
  padding-left: 28px;
}

.metrics div:last-child {
  border-right: 0;
}

.metrics dt {
  color: var(--navy);
  font-size: 42px;
  font-weight: 800;
  line-height: 1.1;
}

.metrics dd {
  margin: 8px 0 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.snapshot-source {
  margin: 14px 0 0;
  color: #637582;
  font-size: 12px;
}

.pilot-section {
  padding: 104px 0;
  background: #f3f7f8;
}

.pilot-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 52px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.pilot-workflow {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 22px;
  min-width: 0;
  padding: 42px 44px 42px 0;
}

.pilot-workflow + .pilot-workflow {
  padding-right: 0;
  padding-left: 44px;
  border-left: 1px solid var(--line);
}

.pilot-workflow .feature-icon {
  margin: 0;
}

.pilot-workflow h3 {
  margin-bottom: 12px;
  font-size: 24px;
}

.pilot-workflow p:last-child {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
}

.pilot-offer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 48px;
  align-items: end;
  padding-top: 42px;
}

.pilot-offer h3 {
  margin-bottom: 8px;
  font-size: 28px;
}

.pilot-offer p:last-child {
  max-width: 720px;
  margin: 0;
  color: var(--ink-soft);
}

.pilot-markets {
  margin: 0 0 16px;
  color: var(--cyan-ink);
  font-size: 13px;
  font-weight: 800;
}

.pilot-markets > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.pilot-markets svg {
  width: 16px;
  height: 16px;
}

.operating-flow {
  padding: 92px 0;
  background: var(--cyan-light);
}

.section-heading {
  max-width: 700px;
  margin-bottom: 50px;
}

.section-heading.wide {
  max-width: 820px;
}

.section-heading > p:last-child {
  color: var(--ink-soft);
  font-size: 18px;
}

.flow-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(7, 19, 31, 0.22);
}

.flow-list li {
  position: relative;
  min-width: 0;
  padding: 28px 26px 0 0;
}

.flow-list li:not(:last-child) {
  margin-right: 26px;
  border-right: 1px solid rgba(7, 19, 31, 0.16);
}

.flow-list li > span {
  position: absolute;
  top: -14px;
  left: 0;
  padding-right: 8px;
  color: var(--cyan-deep);
  background: var(--cyan-light);
  font-size: 12px;
  font-weight: 800;
}

.flow-list svg {
  width: 25px;
  height: 25px;
  margin-bottom: 28px;
  color: var(--cyan-deep);
}

.flow-list strong {
  display: block;
  margin-bottom: 10px;
  font-size: 20px;
}

.flow-list p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.workflow-section {
  padding: 110px 0;
  background: var(--paper);
}

.feature-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: 90px;
  align-items: center;
  padding: 78px 0;
  border-top: 1px solid var(--line);
}

.feature-video,
.feature-report {
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1fr);
}

.feature-copy {
  max-width: 650px;
}

.feature-number {
  margin-bottom: 24px;
  color: #71818c;
  font-size: 12px;
  font-weight: 800;
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 6px;
}

.feature-icon svg {
  width: 22px;
  height: 22px;
}

.feature-icon-yellow {
  color: #7d5d00;
  background: var(--yellow-light);
}

.feature-icon-coral {
  color: #9b2f20;
  background: var(--coral-light);
}

.feature-icon-cyan {
  color: var(--cyan-ink);
  background: var(--cyan-light);
}

.feature-icon-green {
  color: #0e6a3e;
  background: var(--green-light);
}

.feature-icon-blue {
  color: #194ba9;
  background: var(--blue-light);
}

.feature-label {
  margin-bottom: 12px;
  color: #61727e;
  font-size: 12px;
  font-weight: 800;
}

.feature-copy > p:not(.feature-label) {
  color: var(--ink-soft);
  font-size: 17px;
}

.check-list {
  display: grid;
  gap: 11px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink-soft);
  font-size: 14px;
}

.check-list li::before {
  position: absolute;
  top: 8px;
  left: 2px;
  width: 10px;
  height: 5px;
  border-bottom: 2px solid var(--green);
  border-left: 2px solid var(--green);
  content: "";
  transform: rotate(-45deg);
}

.feature-media {
  position: relative;
  justify-self: center;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--ink);
  box-shadow: 0 24px 70px rgba(7, 19, 31, 0.18);
  cursor: pointer;
}

.vertical-media {
  width: min(340px, 100%);
  aspect-ratio: 9 / 16;
}

.feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease, opacity 240ms ease;
}

.feature-media:hover img {
  opacity: 0.88;
  transform: scale(1.015);
}

.play-control {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: var(--ink);
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 10px 30px rgba(7, 19, 31, 0.24);
  transform: translate(-50%, -50%);
}

.play-control svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.media-caption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  padding: 10px 12px;
  color: var(--white);
  border-radius: 5px;
  background: rgba(7, 19, 31, 0.88);
  font-size: 12px;
  font-weight: 700;
  text-align: left;
}

.crm-preview,
.report-preview {
  min-width: 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 24px 70px rgba(7, 19, 31, 0.1);
}

.preview-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}

.preview-toolbar > span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.preview-toolbar svg,
.freshness svg {
  width: 16px;
  height: 16px;
}

.freshness {
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
}

.preview-lead {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 22px 0;
}

.lead-avatar {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--cyan-ink);
  border-radius: 50%;
  background: var(--cyan-light);
  font-weight: 800;
}

.preview-lead p {
  overflow: hidden;
  margin: 2px 0 0;
  color: #637582;
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.status {
  padding: 4px 7px;
  border-radius: 4px;
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
  white-space: nowrap;
}

.status-sale {
  color: #0e6a3e;
  background: var(--green-light);
}

.lead-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--line);
}

.lead-facts div {
  min-width: 0;
  padding: 12px;
  background: var(--paper);
}

.lead-facts dt {
  color: #637582;
  font-size: 9px;
}

.lead-facts dd {
  overflow: hidden;
  margin: 4px 0 0;
  font-size: 12px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.last-reply {
  margin-top: 16px;
  padding: 14px;
  border-left: 3px solid var(--cyan);
  background: var(--cyan-light);
}

.last-reply > span {
  color: var(--cyan-ink);
  font-size: 10px;
  font-weight: 800;
}

.last-reply p {
  margin: 5px 0 12px;
  font-size: 12px;
}

.media-pills {
  display: flex;
  gap: 8px;
}

.media-pills span {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--ink-soft);
  font-size: 10px;
}

.media-pills svg {
  width: 13px;
  height: 13px;
}

.report-preview {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  padding: 28px;
  color: var(--ink);
}

.report-preview::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 84px;
  height: 8px;
  background: var(--yellow);
  content: "";
}

.report-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.report-head img {
  width: 84px;
  height: 32px;
  object-fit: contain;
}

.report-head span {
  color: var(--cyan-deep);
  font-size: 13px;
  font-weight: 800;
}

.report-preview h4 {
  margin-bottom: 26px;
  font-size: 20px;
}

.report-chart {
  display: flex;
  align-items: end;
  gap: 12px;
  height: 150px;
  padding: 12px 16px 0;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.report-chart span {
  flex: 1;
  min-width: 0;
  background: var(--cyan);
}

.report-chart span:nth-child(2n) {
  background: var(--yellow);
}

.report-record {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 12px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.report-record span {
  color: #637582;
  font-size: 10px;
}

.report-record strong {
  grid-row: 1 / 3;
  grid-column: 2;
}

.report-record em {
  width: max-content;
  max-width: 100%;
  padding: 3px 6px;
  color: #0e6a3e;
  border-radius: 3px;
  background: var(--green-light);
  font-size: 9px;
  font-style: normal;
  font-weight: 800;
}

.supporting-workflows {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.supporting-workflows article {
  min-width: 0;
  padding: 48px 36px 48px 0;
}

.supporting-workflows article:not(:last-child) {
  margin-right: 36px;
  border-right: 1px solid var(--line);
}

.supporting-workflows h3 {
  font-size: 22px;
}

.supporting-workflows p:last-child {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.video-section {
  padding: 110px 0;
  color: var(--white);
  background: var(--navy);
}

.section-heading.light h2 {
  color: var(--white);
}

.section-heading.light > p:last-child {
  color: rgba(255, 255, 255, 0.68);
}

.video-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 30px;
  align-items: start;
}

.story-video {
  margin: 0;
}

.story-video video {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: #000;
  object-fit: cover;
}

.story-video figcaption {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 18px;
}

.story-video figcaption span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.reel-list {
  display: grid;
  gap: 14px;
}

.reel-list button {
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr) 24px;
  gap: 14px;
  align-items: center;
  min-height: 116px;
  padding: 12px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: var(--navy-2);
  text-align: left;
  cursor: pointer;
}

.reel-list button:hover {
  border-color: var(--yellow);
}

.reel-list img {
  width: 66px;
  height: 92px;
  border-radius: 4px;
  object-fit: cover;
}

.reel-list strong,
.reel-list small {
  display: block;
}

.reel-list strong {
  line-height: 1.35;
}

.reel-list small {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.58);
}

.reel-list > button > svg {
  width: 22px;
  height: 22px;
  color: var(--yellow);
}

.video-pilot-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px;
  align-items: center;
  margin-top: 34px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.video-pilot-cta strong,
.video-pilot-cta span {
  display: block;
}

.video-pilot-cta strong {
  margin-bottom: 6px;
  font-size: 18px;
}

.video-pilot-cta > div > span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 14px;
}

.control-section {
  padding: 110px 0;
  background: var(--white);
}

.control-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: 100px;
  align-items: start;
}

.control-list {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.control-list li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 16px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.control-list > li > svg {
  width: 24px;
  height: 24px;
  color: var(--green);
}

.control-list strong {
  display: block;
  margin-bottom: 5px;
}

.control-list p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.cta-section {
  padding: 80px 0;
  color: var(--white);
  background-color: var(--navy);
  background-image:
    radial-gradient(760px 420px at 50% 8%, rgba(49, 188, 237, 0.22), transparent 62%),
    linear-gradient(180deg, #000531 0%, #00002a 100%);
}

.cta-layout {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 60px;
}

.cta-layout h2 {
  max-width: 700px;
  margin-bottom: 14px;
}

.cta-layout p:last-child {
  max-width: 650px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

.cta-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
}

.site-footer {
  padding: 48px 0;
  color: rgba(255, 255, 255, 0.72);
  background: var(--navy);
}

.footer-layout {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: end;
}

.footer-brand {
  color: var(--white);
}

.footer-layout > div:first-child > p {
  margin: 12px 0 0;
  font-size: 13px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 24px;
  font-size: 13px;
}

.footer-links a:hover {
  color: var(--white);
}

.copyright {
  grid-column: 1 / -1;
  margin: 20px 0 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 12px;
}

.modal {
  width: min(680px, calc(100% - 32px));
  max-height: calc(100vh - 32px);
  padding: 38px;
  color: var(--ink);
  border: 0;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.35);
}

.modal::backdrop {
  background: rgba(4, 17, 29, 0.78);
}

.modal-close {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  color: var(--ink);
  background: var(--white);
}

.modal-heading {
  padding-right: 44px;
}

.modal-heading h2 {
  font-size: 32px;
}

.modal-heading > p:last-child {
  color: var(--ink-soft);
}

.demo-modal form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}

.demo-modal label {
  display: grid;
  gap: 7px;
  min-width: 0;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 700;
}

.demo-modal input,
.demo-modal select,
.demo-modal textarea {
  width: 100%;
  min-width: 0;
  padding: 12px;
  color: var(--ink);
  border: 1px solid #b8c5cd;
  border-radius: 5px;
  background: var(--white);
  outline: 0;
}

.demo-modal input:focus,
.demo-modal select:focus,
.demo-modal textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(49, 188, 237, 0.16);
}

.demo-modal textarea {
  resize: vertical;
}

.demo-modal .button {
  width: max-content;
  min-width: 180px;
}

.full-field {
  grid-column: 1 / -1;
}

.form-status {
  min-height: 24px;
  margin: 0;
  font-size: 13px;
}

.form-status.success {
  color: var(--green);
}

.form-status.error {
  color: #b42318;
}

.botcheck {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.video-modal {
  width: min(1050px, calc(100% - 32px));
  padding: 18px;
  background: #000;
}

.video-modal .modal-close {
  top: 10px;
  right: 10px;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(7, 19, 31, 0.86);
}

.video-modal video {
  width: 100%;
  max-height: calc(100vh - 68px);
  margin: 0 auto;
  background: #000;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: 1fr auto;
    padding-right: 22px;
    padding-left: 22px;
  }

  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: inline-grid;
  }

  .mobile-menu {
    position: absolute;
    top: calc(100% + 1px);
    right: 18px;
    display: grid;
    width: min(320px, calc(100vw - 36px));
    padding: 18px;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    background: var(--navy);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  }

  .mobile-menu[hidden] {
    display: none;
  }

  .mobile-menu a {
    padding: 11px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    font-weight: 600;
  }

  .mobile-menu .button {
    margin-top: 14px;
  }

  .hero-content {
    gap: 32px;
  }

  .hero-visual {
    max-width: 430px;
  }

  .hero h1 {
    font-size: 22px;
  }

  .hero-kicker {
    max-width: 520px;
    font-size: 40px;
    letter-spacing: -1px;
  }

  .feature-row {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.65fr);
    gap: 50px;
  }

  .feature-video,
  .feature-report {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.65fr);
  }

  .feature-video .media-first,
  .feature-report > :first-child {
    order: 2;
  }

  .feature-video .feature-copy,
  .feature-report .feature-copy {
    order: 1;
  }

  .control-layout {
    gap: 60px;
  }

  .cta-layout {
    display: grid;
  }

  .pilot-offer {
    align-items: start;
  }
}

@media (max-width: 860px) {
  .hero-content {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }

  .hero-visual {
    display: none;
  }

  .hero-kicker {
    max-width: 620px;
  }
}

@media (max-width: 780px) {
  :root {
    --header-height: 68px;
  }

  h2 {
    font-size: 34px;
  }

  h3 {
    font-size: 26px;
  }

  .site-header {
    min-height: var(--header-height);
    padding: 10px 16px;
  }

  .brand {
    gap: 7px;
    font-size: 15px;
  }

  .brand img {
    width: 74px;
    height: 30px;
  }

  .desktop-demo {
    display: none;
  }

  .header-actions {
    gap: 8px;
  }

  .language-switch {
    grid-template-columns: repeat(3, 27px);
    height: 32px;
  }

  .language-switch button {
    font-size: 12px;
  }

  .menu-button {
    width: 36px;
    height: 36px;
  }

  .press-row {
    gap: 12px;
  }

  .agency-row {
    gap: 18px 30px;
  }

  .hero {
    min-height: 700px;
    height: 86vh;
    max-height: 850px;
  }

  .hero-backdrop {
    background-size: 48px 48px;
  }

  .hero-content,
  .section-inner {
    width: calc(100% - 36px);
  }

  .hero h1 {
    font-size: 20px;
  }

  .hero-kicker {
    max-width: 560px;
    font-size: 34px;
    letter-spacing: -0.8px;
  }

  .hero-copy {
    font-size: 16px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    width: min(100%, 360px);
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-next {
    right: 18px;
    bottom: 18px;
  }

  .hero-next span {
    display: none;
  }

  .snapshot-band,
  .pilot-section,
  .operating-flow,
  .workflow-section,
  .video-section,
  .control-section {
    padding: 74px 0;
  }

  .section-intro {
    display: block;
  }

  .section-intro h2 {
    margin-bottom: 20px;
  }

  .metrics {
    grid-template-columns: 1fr 1fr;
    margin-top: 42px;
  }

  .metrics div,
  .metrics div:not(:first-child) {
    padding: 22px 14px;
  }

  .metrics div:nth-child(2) {
    border-right: 0;
  }

  .metrics div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .metrics dt {
    font-size: 34px;
  }

  .flow-list {
    grid-template-columns: 1fr 1fr;
    gap: 38px 24px;
  }

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

  .pilot-workflow,
  .pilot-workflow + .pilot-workflow {
    padding: 34px 0;
    border-left: 0;
  }

  .pilot-workflow + .pilot-workflow {
    border-top: 1px solid var(--line);
  }

  .pilot-offer,
  .video-pilot-cta {
    grid-template-columns: 1fr;
  }

  .pilot-offer .button,
  .video-pilot-cta .button {
    width: min(100%, 360px);
  }

  .flow-list li:not(:last-child) {
    margin-right: 0;
    border-right: 0;
  }

  .flow-list li:nth-child(2n + 1) {
    padding-right: 24px;
    border-right: 1px solid rgba(7, 19, 31, 0.16);
  }

  .feature-row,
  .feature-video,
  .feature-report {
    grid-template-columns: 1fr;
    gap: 42px;
    padding: 60px 0;
  }

  .feature-video .media-first,
  .feature-report > :first-child {
    order: 2;
  }

  .feature-media {
    justify-self: start;
  }

  .crm-preview,
  .report-preview {
    width: 100%;
  }

  .supporting-workflows {
    grid-template-columns: 1fr;
  }

  .supporting-workflows article {
    padding: 36px 0;
  }

  .supporting-workflows article:not(:last-child) {
    margin-right: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .story-video figcaption {
    display: grid;
    gap: 5px;
  }

  .control-layout {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .cta-section {
    padding: 68px 0;
  }

  .cta-actions {
    flex-wrap: wrap;
  }

  .footer-layout {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .demo-modal {
    padding: 30px 20px 24px;
  }

  .demo-modal form {
    grid-template-columns: 1fr;
  }

  .demo-modal form > * {
    grid-column: 1;
  }
}

@media (max-width: 374px) {
  /* Logo art already carries the 家速 HomeDash wordmark, so drop the duplicate
     text label rather than let it collide with the language switch. */
  .site-header .brand span {
    display: none;
  }

  .header-actions {
    gap: 8px;
  }
}

@media (max-width: 430px) {
  .agency-row {
    gap: 16px 22px;
  }

  .press-card {
    min-width: 118px;
    padding: 11px 14px;
  }

  .hero h1 {
    font-size: 18px;
  }

  .hero-kicker {
    font-size: 28px;
    letter-spacing: -0.6px;
  }

  .hero .eyebrow.light {
    font-size: 11.5px;
    letter-spacing: 0.2px;
  }

  .hero-note {
    align-items: flex-start;
  }

  .flow-list {
    grid-template-columns: 1fr;
  }

  .flow-list li:nth-child(2n + 1) {
    border-right: 0;
  }

  .preview-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .preview-lead {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .preview-lead .status {
    grid-column: 2;
    width: max-content;
  }

  .lead-facts {
    grid-template-columns: 1fr;
  }

  .report-preview {
    min-height: 450px;
    padding: 20px;
  }

  .cta-actions {
    display: grid;
  }

  .cta-actions .button {
    width: 100%;
  }

  .footer-links {
    display: grid;
    gap: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
