:root {
  --ink: #182334;
  --ink-soft: #59677a;
  --blue: #233f68;
  --blue-deep: #152b4b;
  --red: #bd3d32;
  --red-dark: #982d29;
  --paper: #f5f1e9;
  --surface: #fffdf8;
  --switch-blue: #1769dc;
  --switch-muted: #eaf1fb;
  --line: rgba(24, 35, 52, .13);
  --shadow: 0 24px 55px rgba(27, 41, 63, .12);
  --radius: 20px;
  --content: 1180px;
  color-scheme: light;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: "Microsoft YaHei", "Noto Sans SC", Arial, sans-serif;
  line-height: 1.65;
}
body, button, a { -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button:focus-visible, a:focus-visible {
  outline: 3px solid rgba(189, 61, 50, .42);
  outline-offset: 4px;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2 { letter-spacing: -.055em; line-height: 1.12; }
h1 {
  max-width: 580px;
  margin-bottom: 24px;
  font-size: clamp(46px, 5.4vw, 72px);
  font-weight: 850;
}
h1 em, h2 span { color: var(--red); font-style: normal; }
h2 {
  margin-bottom: 22px;
  font-size: clamp(36px, 4.2vw, 54px);
  font-weight: 820;
}
h3 { margin-bottom: 8px; font-size: 18px; line-height: 1.35; }

.page-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .15;
  background-image: radial-gradient(rgba(24, 35, 52, .14) .45px, transparent .45px);
  background-size: 7px 7px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .35), transparent 65%);
}
.section-wrap {
  width: min(calc(100% - 72px), var(--content));
  min-width: 0;
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  min-height: 78px;
  padding: 14px max(36px, calc((100vw - var(--content)) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(245, 241, 233, .92);
  backdrop-filter: blur(18px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: max-content;
}
.brand-stamp {
  display: grid;
  place-items: center;
  width: 43px;
  height: 43px;
  overflow: hidden;
  border: 1px solid rgba(189, 61, 50, .2);
  border-radius: 12px;
  background: #fffaf0;
}
.brand-mark {
  width: 77px;
  height: 77px;
  max-width: none;
  transform: translate(-17px, -10px);
}
.brand-copy { display: grid; line-height: 1.15; }
.brand-name {
  color: var(--red);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .08em;
}
.brand-product {
  margin-top: 4px;
  color: var(--ink);
  font-size: 12px;
  letter-spacing: .12em;
}
.header-contact {
  position: relative;
  margin-left: auto;
}
.header-contact-trigger {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 17px;
  border: 1px solid rgba(189, 61, 50, .2);
  border-radius: 999px;
  color: white;
  background: var(--red);
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
  outline: none;
  transition: background .2s ease, transform .2s ease;
}
.header-contact-trigger::-webkit-details-marker { display: none; }
.header-contact-trigger:focus-visible { outline: 3px solid rgba(37, 99, 235, .28); outline-offset: 3px; }
.header-contact-trigger:hover { background: var(--red-dark); transform: translateY(-1px); }
.header-contact-popover {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 126px;
  gap: 18px;
  width: 340px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 253, 248, .98);
  box-shadow: 0 18px 42px rgba(27, 41, 63, .16);
}
.header-contact-popover strong { display: block; margin-bottom: 8px; color: var(--ink); font-size: 15px; }
.header-contact-popover p { margin: 0; color: var(--ink-soft); font-size: 12px; line-height: 1.7; }
.header-contact-qq { display: block; margin-top: 10px; color: var(--red); font-size: 13px; font-weight: 800; letter-spacing: .03em; }
.header-contact-qr { display: grid; justify-items: center; gap: 6px; padding: 8px; border: 1px solid var(--line); border-radius: 12px; background: white; }
.header-contact-qr img { display: block; width: 108px; height: 108px; object-fit: contain; }
.header-contact-qr span { color: var(--red); font-size: 10px; font-weight: 800; letter-spacing: .08em; }
.product-switcher {
  position: relative;
  z-index: 2;
  margin-top: 22px;
  overflow: hidden;
  border: 1px solid rgba(35, 63, 104, .08);
  border-radius: 26px;
  background: var(--switch-muted);
  box-shadow: 0 18px 42px rgba(27, 41, 63, .13);
}
.product-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}
.product-tab {
  appearance: none;
  min-width: 0;
  min-height: 72px;
  padding: 16px 24px;
  border: 0;
  border-top: 4px solid transparent;
  border-radius: 26px 26px 0 0;
  color: var(--ink);
  background: transparent;
  font: inherit;
  font-size: clamp(16px, 1.7vw, 21px);
  font-weight: 800;
  cursor: pointer;
  transition: color .2s ease, background .2s ease, border-color .2s ease;
}
.product-tab:hover {
  color: var(--switch-blue);
  background: rgba(255, 255, 255, .55);
}
.product-tab[aria-selected="true"] {
  position: relative;
  z-index: 2;
  color: var(--switch-blue);
  border-top-color: var(--switch-blue);
  background: var(--surface);
  box-shadow: 0 10px 24px rgba(27, 41, 63, .08);
}
.product-tab[data-product-tab="overview"][aria-selected="true"],
.product-tab[data-product-tab="checker"][aria-selected="true"],
.product-tab[data-product-tab="settlement"][aria-selected="true"] {
  border-radius: 22px;
}
.site-nav {
  display: flex;
  flex: 1;
  justify-content: center;
  gap: 28px;
  color: var(--ink-soft);
  font-size: 13px;
}
.site-nav a { transition: color .2s ease; }
.site-nav a:hover { color: var(--red); }
.header-cta {
  min-width: max-content;
  padding: 9px 16px;
  border-radius: 999px;
  color: white;
  background: var(--red);
  font-size: 12px;
  font-weight: 700;
  transition: transform .2s ease, background .2s ease;
}
.header-cta:hover { background: var(--red-dark); transform: translateY(-2px); }

.product-panel[hidden] { display: none !important; }
.product-toolbar {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 22px;
  padding-top: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.product-context {
  display: grid;
  gap: 2px;
  min-width: 154px;
}
.product-context span {
  color: var(--ink-soft);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.product-context strong {
  color: var(--blue-deep);
  font-size: 17px;
}
.product-toolbar .site-nav {
  flex: 0 1 auto;
  justify-content: flex-start;
  gap: 22px;
}
.product-toolbar .header-cta { margin-left: auto; }

.screen-section {
  display: grid;
  align-items: center;
  min-height: calc(100vh - 78px);
  padding-top: 64px;
  padding-bottom: 64px;
}
.hero {
  grid-template-columns: minmax(0, .92fr) minmax(430px, 1.08fr);
  gap: 64px;
}
.product-panel > .hero { min-height: auto; }
.eyebrow, .section-kicker {
  margin: 0 0 18px;
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 6px;
  border-radius: 50%;
  background: var(--red);
  vertical-align: 1px;
}
.hero-lead {
  max-width: 520px;
  margin-bottom: 30px;
  color: var(--ink-soft);
  font-size: 17px;
}
.overview-hero {
  grid-template-columns: minmax(0, .9fr) minmax(430px, 1.1fr);
  gap: 64px;
  padding-top: 64px;
  padding-bottom: 64px;
}
.overview-copy { min-width: 0; }
.overview-copy h1 { max-width: 600px; }
.overview-visual { min-width: 0; align-self: center; }
.overview-product-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.overview-product-card { display: grid; gap: 8px; min-height: 148px; padding: 20px; border: 1px solid var(--line); border-radius: 16px; background: var(--surface); box-shadow: var(--shadow); transition: transform .2s ease, border-color .2s ease; }
.overview-product-card:hover { transform: translateY(-3px); border-color: rgba(38, 105, 219, .35); }
.overview-product-card-checker { background: #f5f8ff; }
.overview-product-card-settlement { background: #fffaf1; }
.overview-product-kicker { color: var(--red); font-size: 11px; font-weight: 800; letter-spacing: .12em; }
.overview-product-card strong { color: var(--ink); font-size: 19px; }
.overview-product-card > span:last-child { color: var(--ink-soft); font-size: 12px; line-height: 1.65; }
.overview-visual-frame { margin-top: 18px; overflow: hidden; min-height: 190px; padding: 18px; border: 1px solid var(--line); border-radius: 18px; background: linear-gradient(135deg, #eef4ff, #fffaf1); box-shadow: var(--shadow); }
.overview-visual-image { display: block; width: 100%; height: 190px; object-fit: contain; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 800;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: white; background: var(--red); }
.button-primary:hover { background: var(--red-dark); }
.button-quiet {
  color: var(--blue);
  border-color: var(--line);
  background: rgba(255, 253, 248, .62);
}
.button-quiet:hover { background: var(--surface); }
.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
  color: var(--ink-soft);
  font-size: 12px;
}
.hero-facts span {
  padding-right: 16px;
  border-right: 1px solid var(--line);
}
.hero-facts span:last-child { padding-right: 0; border-right: 0; }
.hero-facts strong { color: var(--ink); }
.hero-visual { min-width: 0; }
.visual-label {
  margin: 0 0 12px 16px;
  color: var(--ink-soft);
  font-size: 11px;
  letter-spacing: .08em;
}
.screen-frame {
  overflow: hidden;
  border: 9px solid #26364b;
  border-radius: 17px;
  background: #26364b;
  box-shadow: var(--shadow);
  transform: rotate(1.2deg);
}
.screen-topbar {
  display: flex;
  align-items: center;
  gap: 5px;
  height: 27px;
  padding: 0 10px;
  color: rgba(255, 255, 255, .65);
  background: #26364b;
  font-size: 9px;
}
.screen-topbar span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ba554b;
}
.screen-topbar span:nth-child(2) { background: #c19c55; }
.screen-topbar span:nth-child(3) { background: #71916b; }
.screen-topbar b { margin-left: 8px; font-weight: 500; }
.screen-frame img { display: block; width: 100%; height: auto; background: white; }

.feature-screen {
  color: white;
  background: var(--blue-deep);
}
.feature-screen .section-kicker { color: #df8c82; }
.feature-screen h2 { max-width: 720px; color: white; }
.compact-heading { margin-bottom: 42px; }
.core-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, .2);
  border-bottom: 1px solid rgba(255, 255, 255, .2);
}
.core-feature {
  min-width: 0;
  min-height: 220px;
  padding: 32px 26px;
  border-right: 1px solid rgba(255, 255, 255, .2);
}
.core-feature:last-child { border-right: 0; }
.core-feature > span {
  display: block;
  margin-bottom: 42px;
  color: #df8c82;
  font-size: 12px;
  font-weight: 800;
}
.core-feature h3 { color: white; }
.core-feature p {
  margin: 0;
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
}

.local-contact-screen {
  grid-template-columns: minmax(0, 1fr);
  gap: 42px;
}
.local-copy > p:not(.section-kicker) {
  max-width: 560px;
  margin-bottom: 30px;
  color: var(--ink-soft);
}
.header-contact-qr.asset-error {
  min-height: 108px;
  align-content: center;
  text-align: center;
  color: var(--ink-soft);
  font-size: 10px;
}

.site-footer {
  padding: 24px 0 28px;
  border-top: 1px solid var(--line);
}
.settlement-panel {
  padding: 0;
  background: var(--paper);
}
.settlement-hero {
  grid-template-columns: minmax(0, .88fr) minmax(500px, 1.12fr);
  gap: 42px;
  padding-top: 72px;
  padding-bottom: 72px;
  background: transparent;
}
.product-panel > .settlement-hero { min-height: auto; }
.settlement-hero-copy { min-width: 0; }
.settlement-hero h1,
.settlement-hero h2 {
  max-width: 620px;
  margin-bottom: 24px;
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1.14;
}
.settlement-hero h1 span,
.settlement-hero h2 span { color: var(--switch-blue); }
.settlement-hero-lead {
  max-width: 620px;
  margin-bottom: 30px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.85;
}
.settlement-hero-facts { margin-top: 34px; }
.settlement-hero-facts span { color: var(--ink-soft); }
.settlement-hero-visual { position: relative; min-width: 0; max-width: 100%; align-self: center; }
.settlement-window {
  position: relative;
  z-index: 1;
  max-width: 100%;
  overflow: hidden;
  border: 1px solid #d9d0c4;
  border-radius: 16px;
  background: var(--surface);
  box-shadow: var(--shadow);
}
.settlement-window-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 42px;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  background: #fffaf0;
  font-size: 12px;
}
.settlement-window-bar strong { margin-left: 12px; }
.settlement-window-bar span { width: 10px; height: 10px; border-radius: 50%; background: #fb7185; }
.settlement-window-bar span:nth-child(2) { background: #facc15; }
.settlement-window-bar span:nth-child(3) { background: #22c55e; }
.settlement-window-body { min-height: 360px; background: #fffdf8; }
.settlement-app-nav { display: flex; align-items: center; gap: 10px; padding: 16px 24px 0; color: var(--ink-soft); font-size: 12px; }
.settlement-app-nav b { margin-right: auto; color: var(--switch-blue); font-size: 16px; }
.settlement-app-nav span { padding: 7px 12px; border-radius: 999px; background: #f1f5fb; }
.settlement-app-nav span.is-active { color: var(--switch-blue); background: #e5edf9; font-weight: 800; }
.settlement-window-content { min-width: 0; padding: 22px 24px 28px; background: #fffdf8; }
.settlement-window-heading p { margin-bottom: 4px; color: var(--ink-soft); font-size: 13px; }
.settlement-window-heading strong { font-size: 22px; }
.settlement-metrics { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin-top: 24px; }
.settlement-metrics article { min-width: 0; padding: 16px 18px; border: 1px solid #ded5c9; border-radius: 10px; background: #fffaf1; }
.settlement-metrics span { display: block; margin-bottom: 8px; color: var(--ink-soft); font-size: 12px; }
.settlement-metrics strong { color: var(--switch-blue); font-size: clamp(16px, 1.45vw, 22px); letter-spacing: -.04em; white-space: nowrap; }
.settlement-flow { display: grid; grid-template-columns: auto 1fr auto 1fr auto 1fr auto; gap: 12px; align-items: center; margin-top: 24px; color: var(--switch-blue); font-weight: 800; }
.settlement-flow span { padding: 9px 12px; border-radius: 9px; background: #eef4fd; text-align: center; }
.settlement-flow i { height: 2px; background: #9dc1f3; }
.settlement-table { display: grid; gap: 12px; margin-top: 24px; }
.settlement-table span { height: 14px; border-radius: 999px; background: linear-gradient(90deg, #e2e8f0, #f8fafc); }
.settlement-illustration { position: absolute; right: 0; bottom: -20px; z-index: 0; width: 52%; opacity: .18; }
.settlement-section { padding-top: 72px; padding-bottom: 72px; }
.settlement-section-heading { max-width: 820px; margin: 0 auto 42px; text-align: center; }
.settlement-section-heading h2 { margin-bottom: 18px; }
.settlement-section-heading > p:last-child { margin-bottom: 0; color: var(--ink-soft); font-size: 16px; }
.settlement-feature-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.settlement-feature-grid article { min-width: 0; min-height: 250px; padding: 28px 24px; border-right: 1px solid var(--line); background: rgba(255, 253, 248, .55); }
.settlement-feature-grid article:last-child { border-right: 0; }
.settlement-feature-grid article > span { display: block; margin-bottom: 42px; color: var(--switch-blue); font-size: 13px; font-weight: 800; }
.settlement-feature-grid h3 { margin-bottom: 12px; }
.settlement-feature-grid p { margin-bottom: 0; color: var(--ink-soft); font-size: 14px; line-height: 1.8; }
.settlement-product-section { background: transparent; }
.settlement-product-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.settlement-product-grid article { overflow: hidden; border: 1px solid var(--line); border-radius: 16px; background: var(--surface); box-shadow: 0 12px 28px rgba(27, 41, 63, .07); }
.settlement-product-top { display: grid; place-items: center; height: 150px; color: white; font-size: 58px; font-weight: 900; }
.settlement-product-blue { background: linear-gradient(135deg, #2563eb, #60a5fa); }
.settlement-product-sky { background: linear-gradient(135deg, #0284c7, #7dd3fc); }
.settlement-product-indigo { background: linear-gradient(135deg, #4f46e5, #a78bfa); }
.settlement-product-body { padding: 26px; }
.settlement-product-body h3 { margin-bottom: 12px; }
.settlement-product-body p { min-height: 70px; margin-bottom: 18px; color: var(--ink-soft); font-size: 14px; line-height: 1.8; }
.settlement-product-body a { color: var(--red); font-size: 13px; font-weight: 800; }
.product-reserved {
  display: grid;
  min-height: calc(100vh - 206px);
  place-items: center;
}
.reserved-card {
  width: min(100%, 680px);
  padding: 58px 64px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  text-align: center;
}
.reserved-card h1 {
  max-width: none;
  margin-bottom: 18px;
  font-size: clamp(40px, 5vw, 64px);
}
.reserved-card p:last-child {
  margin: 0;
  color: var(--ink-soft);
  font-size: 16px;
}
.compact-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: var(--ink-soft);
  font-size: 11px;
}
.compact-footer strong { color: var(--ink); }

@media (max-width: 1120px) {
  .settlement-hero { grid-template-columns: 1fr; }
}

@media (max-width: 920px) {
  .site-header { gap: 16px; padding-right: 22px; padding-left: 22px; }
  .site-nav { gap: 16px; }
  .product-toolbar { gap: 16px; }
  .overview-hero, .hero, .local-contact-screen { grid-template-columns: 1fr; gap: 42px; }
  .settlement-hero { grid-template-columns: 1fr; gap: 42px; }
  .hero-visual { max-width: 720px; }
  .core-feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .core-feature:nth-child(2) { border-right: 0; }
  .core-feature:nth-child(-n + 2) { border-bottom: 1px solid rgba(255, 255, 255, .2); }
  .settlement-feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .settlement-feature-grid article:nth-child(2) { border-right: 0; }
  .settlement-feature-grid article:nth-child(-n + 2) { border-bottom: 1px solid var(--line); }
}

@media (max-width: 680px) {
  .section-wrap { width: min(calc(100% - 34px), var(--content)); }
  .site-header {
    position: relative;
    flex-wrap: wrap;
    min-height: auto;
    padding: 14px 17px;
  }
  .brand-stamp { width: 39px; height: 39px; }
  .brand-mark { width: 70px; height: 70px; transform: translate(-16px, -9px); }
  .product-switcher {
    margin-top: 14px;
    border-radius: 18px;
  }
  .product-tab {
    min-height: 62px;
    padding: 13px 8px;
    border-radius: 18px 18px 0 0;
    font-size: 14px;
    white-space: normal;
  }
  .product-tab[data-product-tab="overview"][aria-selected="true"],
  .product-tab[data-product-tab="checker"][aria-selected="true"],
  .product-tab[data-product-tab="settlement"][aria-selected="true"] {
    border-radius: 16px;
  }
  .product-toolbar { align-items: flex-start; flex-wrap: wrap; gap: 14px; }
  .product-toolbar .site-nav {
    order: 3;
    flex-basis: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-top: 4px;
  }
  .product-toolbar .header-cta { margin-left: auto; }
  .screen-section {
    min-height: auto;
    padding-top: 58px;
    padding-bottom: 58px;
  }
  .hero { gap: 38px; }
  .overview-hero { gap: 38px; padding-top: 58px; padding-bottom: 58px; }
  .overview-product-grid { grid-template-columns: 1fr; }
  .overview-visual-frame { min-height: 150px; }
  .overview-visual-image { height: 150px; }
  .settlement-hero { gap: 38px; padding-top: 58px; padding-bottom: 58px; }
  .settlement-hero h1,
  .settlement-hero h2 { font-size: clamp(32px, 9.5vw, 42px); }
  h1 { font-size: clamp(38px, 11vw, 48px); }
  h2 { font-size: clamp(32px, 10vw, 46px); }
  .hero-lead { font-size: 15px; }
  .hero-facts { gap: 9px; }
  .hero-facts span { padding-right: 9px; }
  .screen-frame { border-width: 5px; transform: none; }
  .core-feature-grid { grid-template-columns: 1fr; }
  .core-feature, .core-feature:nth-child(2) {
    min-height: auto;
    padding: 26px 4px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .2);
  }
  .core-feature:last-child { border-bottom: 0; }
  .core-feature > span { margin-bottom: 18px; }
  .header-contact { margin-left: auto; }
  .header-contact-popover { right: -4px; grid-template-columns: 1fr; width: min(300px, calc(100vw - 34px)); }
  .header-contact-qr { justify-self: start; }
  .settlement-panel { padding: 0; }
  .settlement-hero-lead { font-size: 15px; }
  .settlement-window-body { min-height: 300px; }
  .settlement-app-nav { flex-wrap: wrap; gap: 7px; padding: 14px 14px 0; font-size: 10px; }
  .settlement-app-nav b { flex-basis: 100%; margin-right: 0; font-size: 14px; }
  .settlement-app-nav span { padding: 6px 9px; }
  .settlement-window-content { padding: 18px 14px 22px; }
  .settlement-metrics { gap: 7px; margin-top: 18px; }
  .settlement-metrics article { padding: 10px 8px; }
  .settlement-metrics span { font-size: 10px; }
  .settlement-metrics strong { font-size: 15px; }
  .settlement-flow { gap: 5px; margin-top: 18px; font-size: 11px; }
  .settlement-flow span { padding: 7px 5px; }
  .settlement-section { padding-top: 58px; padding-bottom: 58px; }
  .settlement-section-heading { margin-bottom: 32px; }
  .settlement-section-heading > p:last-child { font-size: 15px; }
  .settlement-feature-grid, .settlement-product-grid { grid-template-columns: 1fr; }
  .settlement-feature-grid article,
  .settlement-feature-grid article:nth-child(2) { min-height: auto; padding: 26px 4px; border-right: 0; border-bottom: 1px solid var(--line); }
  .settlement-feature-grid article:last-child { border-bottom: 0; }
  .settlement-feature-grid article > span { margin-bottom: 18px; }
  .settlement-product-top { height: 120px; }
  .settlement-product-body p { min-height: auto; }
  .reserved-card { padding: 42px 24px; }
  .compact-footer { flex-direction: column; gap: 6px; }
}

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

/* Online-managed public pages: bounded type scales and one document scroll. */
.managed-page {
  --managed-scale: 1;
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--paper);
}
.managed-page.font-scale-small { --managed-scale: .92; }
.managed-page.font-scale-standard { --managed-scale: 1; }
.managed-page.font-scale-large { --managed-scale: 1.08; }
.managed-page .site-header {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
  padding: 22px 28px;
  border-bottom: 1px solid var(--line);
}
.managed-back-link {
  color: var(--ink-soft);
  font-size: 13px;
  text-decoration: none;
}
.managed-back-link:hover { color: var(--switch-blue); }
.managed-page-main { min-height: 0; }
.managed-hero {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(460px, 1.1fr);
  gap: 46px;
  align-items: center;
  min-height: 640px;
  padding-top: 70px;
  padding-bottom: 70px;
}
.managed-copy { min-width: 0; }
.managed-copy h1 {
  max-width: 680px;
  margin: 18px 0 20px;
  color: var(--ink);
  font-size: clamp(42px, calc(5vw * var(--managed-scale)), 66px);
  line-height: 1.08;
  letter-spacing: -.045em;
}
.managed-copy .hero-lead {
  max-width: 620px;
  font-size: clamp(16px, calc(1.5vw * var(--managed-scale)), 20px);
  line-height: 1.9;
}
.editable-copy { overflow-wrap: anywhere; }
.managed-visual { min-width: 0; align-self: center; }
.managed-visual .screen-frame { transform: none; }
.managed-visual .screen-frame img { max-height: 470px; object-fit: contain; }
.managed-section { padding-top: 76px; padding-bottom: 76px; }
.managed-section:nth-child(even) { background: rgba(255, 255, 255, .35); }
.settlement-managed-hero { align-items: center; }
.settlement-managed-visual { max-width: 760px; }
.settlement-managed-visual .settlement-window { width: 100%; }
.settlement-managed-visual .settlement-illustration { max-width: 38%; }
.managed-page .core-feature-grid,
.managed-page .settlement-feature-grid { font-size: var(--managed-scale); }

@media (max-width: 1120px) {
  .managed-hero { grid-template-columns: minmax(0, .86fr) minmax(390px, 1.14fr); gap: 32px; }
  .managed-copy h1 { font-size: clamp(40px, 5.4vw, 58px); }
}
@media (max-width: 920px) {
  .managed-hero { grid-template-columns: 1fr; min-height: auto; padding-top: 54px; padding-bottom: 54px; }
  .managed-visual { max-width: 760px; width: 100%; }
  .managed-copy h1 { max-width: 740px; }
  .managed-copy .hero-lead { max-width: 740px; }
}
@media (max-width: 680px) {
  .managed-page .site-header { padding: 16px 18px; }
  .managed-hero { padding-top: 36px; padding-bottom: 40px; }
  .managed-copy h1 { font-size: clamp(34px, 10vw, 48px); margin-top: 14px; }
  .managed-copy .hero-lead { font-size: 15px; line-height: 1.75; }
  .managed-section { padding-top: 54px; padding-bottom: 54px; }
  .settlement-managed-visual .settlement-illustration { display: none; }
}
