:root {
  color-scheme: light;

  --ink: #111214;
  --ink-2: #25272a;
  --ink-3: #36312a;
  --muted: #5d5852;
  --muted-2: #7a746c;
  --muted-3: #aaa196;
  --line: #e2dbcf;
  --line-dark: rgba(214, 179, 111, 0.28);
  --paper: #ffffff;
  --surface: #ffffff;
  --surface-raised: #fffdf8;
  --soft: #f7f4ee;
  --soft-2: #eee7da;
  --warm: #fbf5e6;
  --gold: #caa45f;
  --gold-2: #f0d792;
  --gold-dark: #8f6a2f;
  --gold-soft: rgba(202, 164, 95, 0.14);
  --gold-hover: #d8b66f;
  --gold-active: #b88d43;
  --black: #101113;
  --black-2: #181613;
  --white: #ffffff;
  --success: #2f7b5f;
  --danger: #9d3b33;

  --max: 1180px;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --section-y: 72px;
  --section-y-mobile: 54px;
  --panel-pad: var(--space-5);
  --panel-pad-lg: var(--space-6);
  --panel-pad-mobile: 20px;
  --grid-gap: var(--space-5);
  --field-gap: var(--space-4);
  --touch-target: 44px;

  --font-body: Arial, "Microsoft YaHei", sans-serif;
  --font-h1: clamp(2.2rem, 5vw, 4.4rem);
  --font-h2: clamp(1.7rem, 3vw, 2.55rem);
  --font-h3: 1.18rem;
  --font-h4: 1.06rem;
  --font-h5: 0.98rem;
  --font-h6: 0.92rem;
  --font-body-size: 1rem;
  --font-small: 0.88rem;
  --line-heading: 1.15;
  --line-body: 1.6;

  --radius: 8px;
  --radius-sm: 6px;
  --radius-lg: 12px;
  --radius-pill: 999px;

  --shadow-card: 0 8px 22px rgba(17, 17, 17, 0.06);
  --shadow-card-hover: 0 14px 30px rgba(17, 17, 17, 0.1);
  --shadow-modal: 0 24px 56px rgba(17, 17, 17, 0.18);
  --shadow-tooltip: 0 8px 18px rgba(17, 17, 17, 0.13);
  --shadow: var(--shadow-card);

  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --duration-fast: 160ms;
  --duration: 260ms;
  --duration-slow: 420ms;

  --focus-ring: 0 0 0 3px rgba(202, 164, 95, 0.25);
  --hover-lift: translateY(-2px);
  --active-press: translateY(0);
  --disabled-opacity: 0.55;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--font-body-size);
  color: var(--ink-2);
  background: var(--paper);
  line-height: var(--line-body);
  text-rendering: optimizeLegibility;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
a,
input,
select,
textarea {
  transition:
    background-color var(--duration-fast) var(--ease),
    border-color var(--duration-fast) var(--ease),
    box-shadow var(--duration-fast) var(--ease),
    color var(--duration-fast) var(--ease),
    opacity var(--duration-fast) var(--ease),
    transform var(--duration-fast) var(--ease);
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 0;
  box-shadow: var(--focus-ring);
}

button:disabled,
.btn[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: var(--disabled-opacity);
  transform: none;
  filter: none;
  pointer-events: none;
}

.container {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 0 var(--space-5);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(16, 17, 19, 0.9);
  border-bottom: 1px solid var(--line-dark);
  backdrop-filter: blur(14px);
  transition: background-color var(--duration) var(--ease), box-shadow var(--duration) var(--ease), border-color var(--duration) var(--ease);
}

.site-header.is-scrolled {
  background: rgba(16, 17, 19, 0.98);
  border-bottom-color: rgba(202, 164, 95, 0.48);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.nav-wrap {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
}

.brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--gold-2);
  font-weight: 700;
}

.brand img {
  width: 208px;
  height: 58px;
  object-fit: cover;
  object-position: center;
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--space-5);
}

.nav a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.94rem;
}

.nav a:hover {
  color: var(--gold-2);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.lang-toggle,
.menu-toggle {
  border: 1px solid rgba(202, 164, 95, 0.5);
  background: transparent;
  color: var(--gold-2);
  border-radius: var(--radius);
  padding: 9px 12px;
  cursor: pointer;
}

.menu-toggle {
  display: none;
}

.hero {
  background:
    linear-gradient(115deg, rgba(16, 17, 19, 0.98), rgba(28, 25, 21, 0.94)),
    radial-gradient(circle at top right, rgba(194, 155, 85, 0.16), transparent 36%);
  color: white;
  padding: 88px 0 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(310px, 0.9fr);
  gap: var(--space-7);
  align-items: center;
}

.eyebrow {
  color: var(--gold-2);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 700;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--ink);
  line-height: var(--line-heading);
  letter-spacing: 0;
  text-wrap: balance;
  overflow-wrap: break-word;
}

.hero h1,
.hero h2,
.hero h3,
.dark-panel h2,
.dark-panel h3 {
  color: white;
}

h1 {
  margin: 14px 0 18px;
  font-size: var(--font-h1);
}

h2 {
  margin: 0 0 14px;
  font-size: var(--font-h2);
}

h3 {
  margin: 0 0 10px;
  font-size: var(--font-h3);
}

h4 {
  margin: 0 0 var(--space-2);
  font-size: var(--font-h4);
}

h5 {
  margin: 0 0 var(--space-2);
  font-size: var(--font-h5);
}

h6 {
  margin: 0 0 var(--space-2);
  font-size: var(--font-h6);
}

p {
  margin: 0;
  color: var(--muted);
  text-wrap: pretty;
  overflow-wrap: break-word;
}

small,
.small {
  font-size: var(--font-small);
  line-height: 1.5;
}

.hero p {
  color: rgba(255, 255, 255, 0.86);
  max-width: 700px;
  font-size: 1.08rem;
}

.product-hero .hero-grid {
  display: block;
  max-width: 860px;
}

/* Category / product hero: geometric texture only (no gold glow — cooler, quieter) */
.product-hero {
  position: relative;
  overflow: hidden;
}
.product-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 40px,
    rgba(255,255,255,0.03) 40px,
    rgba(255,255,255,0.03) 41px
  );
  pointer-events: none;
  z-index: 0;
}
.product-hero .container {
  position: relative;
  z-index: 1;
}

/* Tertiary hero: same structure as product-hero but no geometric texture */
.tertiary-hero {
  position: relative;
  overflow: hidden;
}
.tertiary-hero .container {
  position: relative;
  z-index: 1;
}
.tertiary-hero .hero-grid {
  grid-template-columns: minmax(0, 1fr);
  max-width: 760px;
}

.hero-slogan {
  max-width: 720px;
  margin-top: 24px;
}

.hero-slogan h2 {
  margin: 0 0 8px;
  color: var(--white);
  font-size: clamp(1.25rem, 2vw, 1.85rem);
}

.hero-slogan p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: 26px;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  border-radius: var(--radius);
  padding: 12px 18px;
  border: 1px solid transparent;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  user-select: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: var(--black-2);
  box-shadow: 0 8px 18px rgba(194, 155, 85, 0.18);
}

.btn-outline,
.btn-secondary,
.btn-ghost {
  background: transparent;
  border-color: rgba(240, 215, 146, 0.5);
  color: var(--gold-2);
}

.btn-text {
  min-height: var(--touch-target);
  padding-inline: var(--space-2);
  background: transparent;
  color: var(--gold-dark);
}

.btn-dark {
  background: var(--ink);
  color: var(--white);
}

.panel,
.card,
.calculator,
.form-card {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
  transition:
    border-color var(--duration) var(--ease),
    box-shadow var(--duration) var(--ease),
    transform var(--duration) var(--ease);
}

.hero-aside,
.hero-tools {
  border: 1px solid rgba(240, 215, 146, 0.34);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.075);
  box-shadow: none;
  padding: clamp(22px, 3vw, 32px);
}

.hero-aside h2,
.hero-tools h2 {
  color: var(--white);
  font-size: clamp(1.35rem, 2.2vw, 2rem);
}

.hero-aside p,
.hero-tools p,
.hero-tools small {
  color: rgba(255, 255, 255, 0.74);
}

.hero-aside {
  align-self: stretch;
  display: grid;
  align-content: center;
  gap: 12px;
}

.hero-tools {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(202, 164, 95, 0.08));
}

.tool-label {
  margin-bottom: 10px;
  color: var(--gold-2) !important;
  font-weight: 800;
}

.tool-links {
  display: grid;
  gap: 12px;
  margin: 22px 0 14px;
}

.trust-pill {
  border: 1px solid rgba(240, 215, 146, 0.28);
  border-radius: var(--radius);
  padding: 14px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.06);
}

.trust-label {
  display: flex;
  align-items: center;
  padding: 14px 0;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
}

a.trust-pill {
  cursor: pointer;
}

a.trust-pill:hover {
  border-color: rgba(240, 215, 146, 0.72);
  background: rgba(240, 215, 146, 0.12);
  transform: translateY(-2px);
}

.section {
  padding: var(--section-y) 0;
}

.section-soft {
  background: var(--soft);
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.grid {
  display: grid;
  gap: var(--space-5);
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.hero-grid > *,
.grid > *,
.calc-grid > *,
.form-grid > *,
.footer-grid > *,
.about-hero-grid > *,
.about-intro-grid > *,
.about-method-grid > *,
.proof-grid > *,
.proof-points > * {
  min-width: 0;
}

.card,
.panel {
  padding: var(--panel-pad);
}

.card .kicker {
  display: block;
  margin-bottom: 10px;
  color: var(--gold-dark);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
}

.topic-card {
  overflow: hidden;
  padding: 0;
}

.topic-card > :not(.topic-card-media) {
  margin-left: var(--panel-pad);
  margin-right: var(--panel-pad);
}

.topic-card > .topic-card-media + .kicker {
  margin-top: var(--panel-pad);
}

.topic-card > p:last-child {
  margin-bottom: var(--panel-pad);
}

.topic-card-media {
  display: block;
  position: relative;
  aspect-ratio: 8 / 3;
  overflow: hidden;
  background: var(--black);
  border-bottom: 1px solid var(--line);
}

.topic-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 17, 19, 0), rgba(16, 17, 19, 0.18));
  pointer-events: none;
}

.topic-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.topic-hero-media {
  display: block;
  max-width: 860px;
  margin-top: var(--space-6);
  aspect-ratio: 8 / 3;
  overflow: hidden;
  border: 1px solid rgba(240, 215, 146, 0.26);
  border-radius: var(--radius);
  background: var(--black);
}

.topic-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.list {
  margin: 14px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.list li + li {
  margin-top: 8px;
}

.dark-panel {
  background: linear-gradient(135deg, #111214, #211d17);
  color: white;
  border-radius: var(--radius);
  padding: var(--panel-pad-lg);
}

.dark-panel p {
  color: rgba(255, 255, 255, 0.84);
}

.cta-band {
  background: linear-gradient(135deg, #111214, #211d17);
  color: white;
  border-radius: var(--radius);
  padding: var(--panel-pad-lg);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: var(--space-5);
  align-items: center;
}

.cta-band h2 {
  color: white;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.82);
}

.mini-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.93rem;
}

.calculator {
  padding: var(--panel-pad-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(251, 245, 230, 0.5)),
    var(--surface);
}

.calc-grid,
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--field-gap);
}

.field {
  display: grid;
  gap: var(--space-2);
}

label {
  color: var(--ink);
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 13px;
  color: var(--ink);
  background: var(--surface-raised);
}

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

.calc-result {
  display: none;
  margin-top: 16px;
  padding: 18px;
  border-radius: var(--radius);
  background: var(--warm);
  border: 1px solid #ead4a2;
}

.calc-result strong {
  display: block;
  color: var(--ink);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
}

.form-card {
  padding: var(--panel-pad-lg);
}

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

.doc-body {
  max-width: 900px;
}

.doc-body section {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.doc-body h2 {
  font-size: 1.45rem;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
}

th,
td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

th {
  background: #f5ead3;
  color: var(--ink);
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  min-height: 56px;
  padding: 17px 50px 17px 18px;
  text-align: left;
  border: 0;
  background: var(--surface);
  color: var(--ink);
  font-weight: 700;
  cursor: pointer;
  position: relative;
}

.faq-question::after {
  content: "\2795";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--gold);
  transition:
    color var(--duration-fast) var(--ease),
    transform var(--duration) var(--ease),
    opacity var(--duration-fast) var(--ease);
}

.faq-item.open .faq-question::after {
  content: "\2796";
  transform: translateY(-50%);
  color: var(--gold-dark);
}

.faq-answer {
  display: block;
  max-height: 0;
  overflow: hidden;
  padding: 0 18px;
  line-height: 1.7;
  opacity: 0;
  transition: max-height var(--duration-slow) var(--ease-out), opacity var(--duration) var(--ease), padding var(--duration) var(--ease);
}

.faq-answer h3 {
  font-size: 1.08rem;
  margin-bottom: 12px;
  color: var(--ink);
}

.faq-answer p {
  margin-bottom: 12px;
  color: var(--muted);
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-item.open .faq-answer {
  padding: 0 18px 22px;
  opacity: 1;
  animation: fadeIn 0.3s var(--ease);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Learn more section: visually distinct from FAQ */
#learn-more .faq-item {
  border-color: rgba(202, 164, 95, 0.42);
  background: linear-gradient(180deg, #ffffff, #fcfaf5);
}

#learn-more .faq-item.open {
  background: #fcfaf5;
  box-shadow: inset 0 0 0 1px rgba(202, 164, 95, 0.18);
}

#learn-more .faq-answer h3 {
  color: var(--gold-dark);
}

#learn-more .faq-question {
  font-size: 1.02rem;
}

.chat-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  border: 0;
  border-radius: 999px;
  padding: 14px 18px;
  background: var(--ink);
  color: var(--gold-2);
  box-shadow: var(--shadow);
  cursor: pointer;
  font-weight: 700;
}

.chat-panel {
  display: none;
  position: fixed;
  top: 84px;
  right: 22px;
  bottom: 84px;
  z-index: 70;
  width: min(420px, calc(100vw - 44px));
  max-height: 680px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  color: var(--ink-2);
  overflow: hidden;
}

.chat-panel.open {
  display: flex;
  flex-direction: column;
}

.chat-head {
  padding: 16px;
  background: var(--ink);
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chat-head h3 {
  color: white;
  margin: 0;
}

.chat-close {
  min-width: var(--touch-target);
  min-height: var(--touch-target);
  border: 1px solid rgba(240, 215, 146, 0.5);
  color: var(--gold-2);
  background: transparent;
  border-radius: var(--radius);
  cursor: pointer;
}

.chat-body {
  display: flex;
  flex: 1;
  min-height: 0;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
}

.chat-messages {
  display: grid;
  gap: var(--space-3);
  align-content: start;
  align-items: start;
  flex: 1 1 0;
  min-height: 96px;
  max-height: none;
  overflow-y: auto;
  padding: 16px;
  background: var(--soft);
}

.chat-msg {
  padding: 11px 13px;
  border-radius: var(--radius);
  line-height: 1.5;
}

.chat-msg.bot {
  background: var(--surface);
  border: 1px solid var(--line);
}

.chat-msg.user {
  background: var(--black-2);
  color: white;
  justify-self: end;
  max-width: 88%;
}

.chat-options {
  display: grid;
  gap: 8px;
  flex: 0 1 204px;
  min-height: 0;
  max-height: min(260px, 34vh);
  overflow-y: auto;
  padding: 12px 16px;
  margin-top: 0;
  background: var(--surface);
  border-top: 1px solid var(--line);
}

.chat-options button {
  min-height: var(--touch-target);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
  padding: 10px;
  cursor: pointer;
  text-align: left;
}

/* The homepage qualifier should end its message area after the prompt. */
.chat-panel[data-intent-panel] .chat-messages {
  flex: 0 0 auto;
  min-height: 0;
}

.chat-panel[data-intent-panel] .chat-options {
  flex: 1 1 auto;
  max-height: none;
  align-content: start;
}

.chat-panel[data-chat-panel] .chat-messages {
  flex: 0 0 auto;
  min-height: 0;
  max-height: min(220px, 40vh);
}

.chat-panel[data-chat-panel] .chat-options {
  flex: 1 1 auto;
  max-height: none;
  align-content: start;
}

.chat-input-wrap {
  display: flex;
  gap: 8px;
  flex: 0 0 auto;
  padding: 0 16px 16px;
  background: var(--surface);
}

.chat-input-wrap input {
  min-width: 0;
}

.chat-input-wrap button {
  width: auto;
}

.site-footer {
  padding: 34px 0;
  background: var(--black);
  color: rgba(255, 255, 255, 0.74);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 24px;
}

.site-footer a {
  color: var(--gold-2);
}

.footer-links a {
  display: inline-flex;
  min-height: var(--touch-target);
  align-items: center;
}

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

[data-lang="zh"] {
  display: none;
}

body.lang-zh [data-lang="en"] {
  display: none;
}

body.lang-zh [data-lang="zh"] {
  display: initial;
}

body.lang-zh p[data-lang="zh"],
body.lang-zh div[data-lang="zh"],
body.lang-zh section[data-lang="zh"],
body.lang-zh li[data-lang="zh"] {
  display: block;
}

@media (max-width: 920px) {
  .hero-grid,
  .grid-2,
  .grid-3,
  .trust-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 74px;
    padding: 16px 24px 22px;
    background: var(--black);
    border-bottom: 1px solid var(--line-dark);
  }

  .nav.open {
    display: grid;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .calc-grid,
  .form-grid,
  .cta-band {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .container {
    padding: 0 18px;
  }

  .brand img {
    width: 158px;
    height: 44px;
  }

  .hero {
    padding: 62px 0 54px;
  }

  .section {
    padding: var(--section-y-mobile) 0;
  }

  .actions .btn {
    width: 100%;
  }
}

/* Interaction refinement layer */
.nav a,
.btn,
.btn-text,
button,
a {
  min-height: var(--touch-target);
}

.nav a {
  display: inline-flex;
  align-items: center;
}

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

.lang-toggle:hover,
.menu-toggle:hover,
.chat-close:hover {
  background: rgba(240, 215, 146, 0.1);
  border-color: var(--gold-2);
}

.btn:hover,
.chat-options button:hover {
  transform: var(--hover-lift);
}

.btn:active,
.chat-options button:active {
  transform: var(--active-press);
}

.btn-primary:hover {
  box-shadow: 0 10px 22px rgba(194, 155, 85, 0.22);
  filter: saturate(1.03);
}

.btn-primary:active {
  background: linear-gradient(135deg, var(--gold), var(--gold-active));
}

.btn-outline:hover,
.btn-secondary:hover,
.btn-ghost:hover {
  background: rgba(240, 215, 146, 0.1);
  border-color: var(--gold-2);
}

.btn-text:hover {
  color: var(--ink);
  background: var(--gold-soft);
}

.btn-dark:hover {
  background: var(--black);
  color: var(--gold-2);
}

a.card {
  cursor: pointer;
}

a.card:hover {
  border-color: rgba(202, 164, 95, 0.72);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}

/* Navigation card arrow icon */
a.card h3::after {
  content: "\2192";
  display: inline-block;
  margin-left: 6px;
  color: var(--gold);
  opacity: 0;
  transform: translateX(-8px);
  transition:
    opacity var(--duration) var(--ease),
    transform var(--duration) var(--ease),
    color var(--duration-fast) var(--ease);
}

a.card:hover h3::after {
  opacity: 1;
  transform: translateX(4px);
  color: var(--gold-2);
}


.field label {
  font-size: var(--font-small);
}


input:hover,
select:hover,
textarea:hover {
  border-color: rgba(202, 164, 95, 0.65);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  background: var(--surface);
  box-shadow: var(--focus-ring);
}

.faq-item {
  transition:
    background-color var(--duration) var(--ease),
    border-color var(--duration) var(--ease),
    box-shadow var(--duration) var(--ease),
    transform var(--duration) var(--ease);
}

.faq-item:hover {
  border-color: rgba(202, 164, 95, 0.42);
}

.faq-item.open {
  box-shadow: var(--shadow-card);
}


.faq-question:hover {
  background: #fcfaf5;
}



.chat-fab {
  min-height: 48px;
  box-shadow: var(--shadow-tooltip);
  animation: pulseHint 2.8s var(--ease-out) infinite;
}

.chat-fab:hover {
  transform: var(--hover-lift);
  box-shadow: var(--shadow-modal);
}

.chat-panel {
  box-shadow: var(--shadow-modal);
}

.chat-options button:hover {
  background: var(--warm);
  border-color: rgba(202, 164, 95, 0.5);
}

@keyframes pulseHint {
  0%, 70%, 100% { box-shadow: var(--shadow-tooltip), 0 0 0 0 rgba(202, 164, 95, 0); }
  82% { box-shadow: var(--shadow-tooltip), 0 0 0 10px rgba(202, 164, 95, 0.16); }
}

@media (max-width: 920px) {
  .nav.open {
    gap: var(--space-2);
  }
}

@media (max-width: 560px) {
  .card,
  .panel,
  .calculator,
  .form-card,
  .dark-panel,
  .cta-band {
    padding: var(--panel-pad-mobile);
  }

  .chat-fab {
    right: 16px;
    bottom: 16px;
  }

  .chat-panel {
    top: 76px;
    right: 16px;
    bottom: 76px;
    width: calc(100vw - 32px);
    max-height: none;
  }
}

@media (max-width: 520px) {
  .chat-panel {
    top: 74px;
    left: 12px;
    right: 12px;
    bottom: 74px;
    width: auto;
    max-height: none;
  }

  .chat-options {
    max-height: min(204px, 34vh);
  }
}

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

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

/* Insights and consultation content surfaces */
[hidden] {
  display: none !important;
}

.insights-hero,
.consultation-hero,
.article-hero {
  background:
    linear-gradient(116deg, rgba(16, 17, 19, 0.98), rgba(29, 26, 21, 0.96)),
    radial-gradient(circle at 80% 15%, rgba(202, 164, 95, 0.14), transparent 34%);
}

.insights-hero .hero-grid,
.consultation-hero .hero-grid {
  align-items: stretch;
}

.insight-hero-aside,
.consultation-hero-aside {
  display: grid;
  align-content: center;
}

.insight-featured {
  max-width: 900px;
  color: var(--white);
}

.insight-featured p,
.insight-featured h2 {
  color: var(--white);
}

.insight-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.insight-filter {
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink-2);
  cursor: pointer;
}

.insight-filter:hover,
.insight-filter:focus-visible,
.insight-filter.is-selected {
  border-color: var(--gold);
  color: var(--gold-dark);
  background: var(--gold-soft);
}

.insight-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--grid-gap);
}

.insight-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: var(--panel-pad-lg);
}

.insight-card h3 {
  margin-top: 12px;
}

.insight-card p {
  flex: 1;
}

.insight-card-meta,
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: center;
  color: var(--muted-2);
  font-size: var(--font-small);
}

.insight-status {
  color: var(--gold-dark);
  font-weight: 800;
}

.insight-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 18px;
}

.insight-tag {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 4px 9px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--muted);
  font-size: 0.78rem;
}

.insight-empty {
  padding: 22px 0 0;
  color: var(--muted);
}

.article-header {
  max-width: 900px;
}

.article-header h1 {
  max-width: 820px;
}

.article-header .article-introduction {
  max-width: 760px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.08rem;
}

.article-meta {
  color: rgba(255, 255, 255, 0.7);
}

.article-meta .insight-status {
  color: var(--gold-2);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.article-content {
  max-width: 780px;
}

.article-block + .article-block {
  margin-top: 48px;
  padding-top: 42px;
  border-top: 1px solid var(--line);
}

.article-block h2 {
  margin-bottom: 18px;
}

.article-block p + p {
  margin-top: 14px;
}

.article-list,
.link-list,
.article-sources ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 20px;
}

.article-list li,
.link-list li,
.article-sources li {
  color: var(--muted);
}

.article-sources a {
  overflow-wrap: anywhere;
  color: var(--gold-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article-aside {
  position: sticky;
  top: 100px;
  display: grid;
  gap: var(--grid-gap);
}

.article-disclaimer p {
  font-size: var(--font-small);
}

.consultation-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.consultation-service-option {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink-2);
  text-align: left;
  cursor: pointer;
}

.consultation-service-option:hover,
.consultation-service-option:focus-visible,
.consultation-service-option.is-selected {
  border-color: var(--gold);
  background: var(--gold-soft);
  color: var(--gold-dark);
  transform: translateY(-2px);
}

.consultation-service-label {
  font-weight: 700;
}

.consultation-service-arrow {
  color: var(--gold-dark);
  font-size: 1.2rem;
}

.consultation-selection-note {
  margin-top: 18px;
  min-height: 28px;
  color: var(--muted);
}

[data-consultation-workspace] {
  scroll-margin-top: 96px;
}

.consultation-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.consultation-main {
  display: grid;
  gap: 24px;
}

.qualifier-panel {
  padding: var(--panel-pad-lg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-raised);
}

.qualifier-panel-head {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.qualifier-questions {
  display: grid;
  gap: 18px;
  margin-top: 20px;
}

.qualifier-question {
  margin: 0;
  padding: 0;
  border: 0;
}

.qualifier-question legend {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-weight: 800;
}

.qualifier-option {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  min-height: 48px;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  color: var(--muted);
  cursor: pointer;
}

.qualifier-option input {
  width: 18px;
  height: 18px;
  margin: 0;
  flex: none;
  accent-color: var(--gold-dark);
}

.qualifier-option:hover,
.qualifier-option:has(input:checked) {
  border-color: var(--line);
  background: var(--gold-soft);
  color: var(--ink);
}

.qualifier-option:focus-within {
  border-color: var(--gold);
  box-shadow: var(--focus-ring);
  color: var(--ink);
}

.qualifier-question + .qualifier-question {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.consultation-aside {
  display: grid;
  gap: var(--grid-gap);
}

.consultation-disclaimer {
  max-width: 780px;
  margin: 28px auto 0;
  padding: 16px 18px;
  border-left: 3px solid var(--gold);
  background: var(--warm);
}

.form-status {
  margin-top: 14px;
  color: var(--success);
  font-weight: 700;
}

@media (max-width: 920px) {
  .insight-list,
  .consultation-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .article-layout,
  .consultation-layout {
    grid-template-columns: 1fr;
  }

  .article-aside {
    position: static;
  }
}

@media (max-width: 560px) {
  .insight-list,
  .consultation-service-grid {
    grid-template-columns: 1fr;
  }

  .insight-card,
  .qualifier-panel {
    padding: var(--panel-pad-mobile);
  }

  .article-block + .article-block {
    margin-top: 36px;
    padding-top: 30px;
  }
}
/* Insights Hub editorial library pass */
.insights-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 0.52fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: end;
}

.insights-hero-copy {
  max-width: 820px;
}

.insights-hero-copy h1 {
  max-width: 780px;
  text-wrap: balance;
}

.insights-hero-copy > p {
  max-width: 66ch;
  color: rgba(255, 255, 255, 0.82);
}

.insight-hero-index {
  display: grid;
  align-self: stretch;
  align-content: end;
  border-top: 1px solid rgba(240, 215, 146, 0.42);
}

.insight-hero-index > div {
  display: grid;
  grid-template-columns: minmax(82px, 0.48fr) minmax(0, 1fr);
  gap: 16px;
  align-items: baseline;
  padding: 17px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.insight-hero-index strong {
  color: var(--gold-2);
  font-size: clamp(1.3rem, 2.4vw, 2rem);
  line-height: 1.1;
}

.insight-hero-index span {
  color: rgba(255, 255, 255, 0.74);
  font-size: var(--font-small);
}

.insight-hero-values > div {
  display: block;
}

.insight-hero-values .insight-value-label {
  color: rgba(255, 255, 255, 0.84);
  display: block;
  font-size: clamp(0.98rem, 1.25vw, 1.14rem);
  font-weight: 600;
  line-height: 1.4;
  text-wrap: balance;
}

.insight-hero-values {
  align-self: center;
  align-content: start;
  justify-self: end;
  max-width: 300px;
  width: 100%;
}

.insight-featured {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.58fr);
  gap: 0;
  max-width: none;
  min-height: 300px;
  padding: 0;
  overflow: hidden;
}

.insight-featured-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(24px, 4vw, 46px);
}

.insight-featured-copy h2 {
  max-width: 700px;
  text-wrap: balance;
}

.insight-featured-copy .actions {
  margin-top: auto;
  padding-top: 26px;
}

.insight-featured-media {
  min-height: 300px;
  background: #25211b;
}

.insight-featured-media img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  object-position: center;
}

.insights-library-heading,
.insight-filter-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
}

.insights-library-heading .section-head,
.insight-filter-heading h3,
.insight-filter-heading p {
  margin-bottom: 0;
}

.insight-results {
  flex: 0 0 auto;
  margin: 0 0 4px;
  color: var(--muted);
  white-space: nowrap;
}

.insight-results strong {
  margin-right: 4px;
  color: var(--ink);
  font-size: 1.35rem;
}

.insight-toolbar {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 8px 0 34px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.insight-search {
  display: flex;
  width: min(100%, 620px);
  min-height: 50px;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.insight-search:focus-within {
  border-color: var(--gold);
  box-shadow: var(--focus-ring);
}

.insight-search-icon {
  color: var(--gold-dark);
  font-size: 1.35rem;
  line-height: 1;
}

.insight-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
}

.insight-search input::placeholder {
  color: var(--muted);
  opacity: 1;
}

.insight-clear {
  min-height: var(--touch-target);
  padding: 8px 0;
  border: 0;
  background: transparent;
  color: var(--gold-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.insight-clear:hover,
.insight-clear:focus-visible {
  color: var(--ink);
}

.insight-filter-heading {
  align-items: baseline;
  margin-bottom: 14px;
}

.insight-filter-heading h3 {
  font-size: 1.04rem;
}

.insight-filter-heading p {
  color: var(--muted);
  font-size: var(--font-small);
  text-align: right;
}

.insight-filters {
  margin-bottom: 34px;
  padding-bottom: 2px;
}

.insight-filter {
  min-height: 42px;
  border-radius: 6px;
  white-space: nowrap;
}

.insight-card {
  min-height: 300px;
  padding: 24px;
  border: 1px solid var(--line);
  box-shadow: none;
  color: var(--ink-2);
  cursor: pointer;
  text-decoration: none;
}

.insight-card:hover,
.insight-card:focus-visible {
  border-color: rgba(202, 164, 95, 0.9);
  background: var(--surface-raised);
  box-shadow: none;
  transform: translateY(-3px);
}

.insight-card:focus-visible {
  outline: 0;
  box-shadow: var(--focus-ring);
}

.insight-card h3 {
  max-width: 30ch;
  margin: 16px 0 10px;
  text-wrap: balance;
}

.insight-card-excerpt {
  max-width: 58ch;
  color: var(--muted);
}

.insight-card-tags {
  margin-top: 14px;
}

.insight-card-topline {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px 16px;
  min-width: 0;
}

.insight-card-topline .insight-card-tags {
  flex: 1 1 auto;
  min-width: 0;
  margin-top: 0;
}

.insight-card-topline .insight-card-meta {
  flex: 0 0 auto;
  margin-left: auto;
  white-space: nowrap;
}

.insight-tag {
  min-height: auto;
  padding: 0;
  border: 0;
  color: var(--gold-dark);
  font-size: 0.8rem;
  font-weight: 800;
}

.insight-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.insight-card-number {
  color: var(--muted-3);
  font-size: 0.82rem;
  font-weight: 700;
}

.insight-card-arrow {
  display: inline-block;
  color: var(--gold-dark);
  font-size: 1.25rem;
  font-weight: 800;
  transition: color var(--duration-fast) var(--ease), transform var(--duration-fast) var(--ease);
}

.insight-card:hover .insight-card-arrow,
.insight-card:focus-visible .insight-card-arrow {
  color: var(--ink);
  transform: translateX(4px);
}

.insight-empty {
  padding: 34px 0 0;
  color: var(--muted);
}

.insight-empty h3 {
  margin: 0 0 8px;
  color: var(--ink);
}

.insight-empty p {
  margin: 0;
}

.article-backlink {
  display: inline-flex;
  min-height: var(--touch-target);
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  color: var(--gold-2);
  font-weight: 700;
}

.article-backlink:hover,
.article-backlink:focus-visible {
  color: var(--white);
}

.article-reading-note {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  margin-bottom: 38px;
  padding: 15px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.article-reading-note p {
  margin: 0;
  font-size: var(--font-small);
}

.article-reading-mark {
  display: inline-grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 800;
}

.article-next-step {
  border-color: rgba(202, 164, 95, 0.42);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 920px) {
  .insights-hero-grid,
  .insight-featured {
    grid-template-columns: 1fr;
  }

  .insight-hero-index {
    max-width: 640px;
  }

  .insight-featured-media,
  .insight-featured-media img {
    min-height: 230px;
  }

  .insights-library-heading,
  .insight-filter-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .insight-filter-heading p {
    text-align: left;
  }
}

@media (max-width: 560px) {
  .insights-hero-grid {
    gap: 34px;
  }

  .insight-hero-index > div {
    grid-template-columns: 84px minmax(0, 1fr);
  }

  .insight-featured-copy {
    padding: var(--panel-pad-mobile);
  }

  .insight-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .insight-search {
    width: 100%;
  }

  .insight-clear {
    align-self: flex-start;
  }

  .insight-filters {
    flex-wrap: nowrap;
    margin-right: -18px;
    overflow-x: auto;
    padding-right: 20px;
  }

  .insight-card {
    min-height: 0;
  }
}

/* About page trust-led art direction */
.about-hero {
  background:
    linear-gradient(112deg, rgba(0, 0, 0, 0.96) 0%, rgba(17, 14, 10, 0.94) 48%, rgba(42, 32, 17, 0.88) 100%);
  color: white;
  padding: clamp(62px, 9vw, 112px) 0 clamp(52px, 7vw, 86px);
  overflow: hidden;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
  gap: clamp(32px, 6vw, 78px);
  align-items: center;
}

.about-hero-copy h1 {
  color: white;
  max-width: 760px;
  text-wrap: balance;
}

.about-hero-copy p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.06rem;
}

.about-hero-copy p + p,
.about-intro-copy p + p {
  margin-top: 14px;
}

.about-portrait {
  margin: 0;
  position: relative;
}

.about-portrait::before {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 1px solid rgba(240, 215, 146, 0.32);
  border-radius: 18px;
}

.about-portrait img,
.about-standing-photo img {
  position: relative;
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid rgba(240, 215, 146, 0.28);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
}

.about-portrait figcaption {
  position: relative;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.94rem;
}

.about-intro-grid,
.about-method-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.about-intro-copy {
  max-width: 780px;
}

.section-label {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--gold-dark);
  font-weight: 800;
}

.about-intro-copy h2,
.proof-lead h2,
.method-copy h2 {
  text-wrap: balance;
}

.adviser-facts {
  display: grid;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.adviser-facts div {
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
}

.adviser-facts div:last-child {
  border-bottom: 0;
}

.adviser-facts strong {
  color: var(--ink);
  font-size: 0.86rem;
}

.adviser-facts span,
.adviser-facts a {
  color: var(--muted);
}

.adviser-facts a:hover {
  color: var(--gold-dark);
}

.proof-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.58fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 58px);
}

.proof-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.proof-point {
  background: #fff;
  padding: clamp(20px, 3vw, 28px);
}

.proof-point > span {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--gold-dark);
  font-weight: 800;
}

.proof-point p + p,
.method-steps p + p {
  margin-top: 8px;
}

.about-method-grid {
  grid-template-columns: minmax(320px, 0.68fr) minmax(0, 1fr);
  align-items: center;
}

.about-standing-photo {
  margin: 0;
}

.about-standing-photo img {
  box-shadow: 0 22px 54px rgba(17, 17, 17, 0.14);
  border-color: var(--line);
}

.method-steps {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.method-steps div {
  padding: 18px 0 18px 24px;
  border-left: 2px solid rgba(202, 164, 95, 0.55);
}

.method-steps strong {
  display: block;
  color: var(--ink);
  margin-bottom: 6px;
  font-size: 1.04rem;
}

.compliance-note {
  margin-top: 22px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
  color: var(--muted);
  font-size: 0.95rem;
}

.about-final-cta {
  padding-top: 0;
}

@media (max-width: 920px) {
  .about-hero-grid,
  .about-intro-grid,
  .about-method-grid,
  .proof-grid,
  .proof-points {
    grid-template-columns: 1fr;
  }

  .about-portrait {
    max-width: 460px;
  }

  .about-standing-photo {
    max-width: 420px;
  }

  .about-portrait,
  .about-standing-photo {
    justify-self: start;
    max-width: 320px;
  }
}

@media (max-width: 560px) {
  .about-portrait::before {
    inset: 12px -10px -10px 12px;
    border-radius: 14px;
  }

  .proof-point {
    padding: var(--panel-pad-mobile);
  }

  .method-steps div {
    padding-left: 18px;
  }
}






/* UX pass: non-clickable informational groups should not look like navigation. */
.question-list .grid {
  gap: clamp(18px, 3vw, 34px);
}

.question-list .card {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.question-list .card:hover {
  border-color: transparent;
  box-shadow: none;
  transform: none;
}

.card .kicker {
  border: 0;
  background: transparent;
  padding: 0;
  pointer-events: none;
}

.faq-question {
  cursor: pointer;
}

.hero-home .eyebrow {
  font-size: clamp(1.05rem, 1.6vw, 1.36rem);
  letter-spacing: 0.12em;
  line-height: 1.25;
  margin-bottom: 10px;
}

.hero-home h1 {
  font-size: clamp(2.35rem, 4.7vw, 4.2rem);
  max-width: 780px;
}

/* Homepage hero: dark base + gold bottom-right glow + geometric texture */
.hero-home {
  position: relative;
  overflow: hidden;
  background: linear-gradient(115deg, rgba(16,17,19,0.98), rgba(24,22,19,0.96));
}
.hero-home::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 100%, rgba(202, 164, 95, 0.22) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.hero-home::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 40px,
    rgba(255,255,255,0.03) 40px,
    rgba(255,255,255,0.03) 41px
  );
  pointer-events: none;
  z-index: 0;
}
.hero-home .container {
  position: relative;
  z-index: 1;
}

.contact-tools {
  align-self: start;
  background: linear-gradient(145deg, rgba(12, 25, 36, 0.96), rgba(39, 65, 82, 0.94));
  border-color: rgba(240, 215, 146, 0.45);
}

.contact-tools .btn-outline {
  background: transparent;
  border-color: rgba(240, 215, 146, 0.6);
  color: var(--gold-2);
}

.repayment-calculator {
  display: grid;
  gap: 18px;
  margin-top: 20px;
}

.repayment-calculator__form {
  display: grid;
  gap: 12px;
}

.repayment-calculator__field {
  display: grid;
  gap: 7px;
}

.repayment-calculator__field label {
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.01em;
}

.repayment-calculator__control {
  display: flex;
  align-items: center;
  border: 1px solid rgba(240, 215, 146, 0.32);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.18);
  transition: border-color var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}

.repayment-calculator__control:focus-within {
  border-color: var(--gold-2);
  box-shadow: 0 0 0 3px rgba(240, 215, 146, 0.14);
}

.repayment-calculator__control input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  padding: 11px 12px;
  background: transparent;
  color: var(--white);
  font: inherit;
  font-variant-numeric: tabular-nums;
}

.repayment-calculator__control input::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.repayment-calculator__control > span {
  flex: 0 0 auto;
  padding: 0 12px;
  color: var(--gold-2);
  font-size: 0.78rem;
  font-weight: 750;
}

.repayment-calculator__calculate {
  width: 100%;
  margin-top: 4px;
}

.repayment-calculator__error {
  margin: 0;
  color: #f1b2a6 !important;
  font-size: 0.78rem;
}

.repayment-calculator__results {
  display: grid;
  gap: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(240, 215, 146, 0.24);
}

.repayment-calculator__periods {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.repayment-calculator__period {
  min-height: 38px;
  border: 1px solid rgba(240, 215, 146, 0.32);
  border-radius: 999px;
  padding: 8px 12px;
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  font: inherit;
  font-size: 0.76rem;
  transition: background var(--duration) var(--ease), border-color var(--duration) var(--ease), color var(--duration) var(--ease);
}

.repayment-calculator__period:hover,
.repayment-calculator__period:focus-visible,
.repayment-calculator__period.is-active {
  border-color: var(--gold-2);
  background: rgba(240, 215, 146, 0.14);
  color: var(--gold-2);
}

.repayment-calculator__result {
  display: grid;
  gap: 14px;
}

.repayment-calculator__result > div {
  display: grid;
  gap: 4px;
}

.repayment-calculator__result > div > span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.76rem;
}

.repayment-calculator__result strong {
  color: var(--white);
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 750;
  letter-spacing: -0.035em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

@media (max-width: 720px) {
  .repayment-calculator__period {
    flex: 1 1 auto;
    text-align: center;
  }
}

.contact-hero-aside {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(202, 164, 95, 0.08)),
    rgba(255, 255, 255, 0.05);
}

.contact-hero-aside h2::after {
  content: "Principal adviser";
  display: block;
  margin-top: 8px;
  color: var(--gold-2);
  font-size: 0.92rem;
  font-weight: 700;
}

.about-hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.48fr);
}

.about-portrait {
  max-width: 360px;
  justify-self: end;
}

.about-portrait img {
  aspect-ratio: 4 / 5;
  object-position: center top;
}

.about-standing-photo {
  max-width: 340px;
}

.about-standing-photo img {
  aspect-ratio: 4 / 5;
  object-position: center top;
}

.section-soft .panel {
  box-shadow: none;
}

/* A Plus Finance v4: tactile wayfinding / adviser-led landing page */
.v4-home {
  --v4-paper: oklch(0.97 0.002 105);
  --v4-mist: oklch(0.93 0.012 154);
  --v4-ink: oklch(0.22 0.045 154);
  --v4-ink-soft: oklch(0.42 0.035 154);
  --v4-line: oklch(0.22 0.045 154 / 0.25);
  --v4-accent: oklch(0.66 0.18 36);
  --v4-accent-dark: oklch(0.47 0.13 34);
  --v4-white: oklch(0.99 0.002 105);
  background: var(--v4-paper);
  color: var(--v4-ink);
  font-family: "Manrope", "Noto Sans SC", "Microsoft YaHei", Arial, sans-serif;
  overflow-x: hidden;
}

.v4-home h1,
.v4-home h2,
.v4-home h3,
.v4-home p,
.v4-home figure { margin: 0; }
.v4-home a { color: inherit; }
.v4-home img { display: block; max-width: 100%; }
.v4-home [data-lang="zh"] { font-family: "Noto Sans SC", "Microsoft YaHei", Arial, sans-serif; }

.v4-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: oklch(0.97 0.002 105 / 0.96);
  border-bottom: 1px solid var(--v4-line);
  backdrop-filter: blur(12px);
}

.v4-header__inner {
  display: flex;
  align-items: center;
  gap: clamp(20px, 4vw, 68px);
  width: min(100% - 48px, 1440px);
  min-height: 76px;
  margin: 0 auto;
}

.v4-brand { display: inline-flex; flex: 0 0 auto; align-items: center; gap: 12px; text-decoration: none; }
.v4-brand img { width: 92px; height: 34px; object-fit: contain; background: var(--v4-ink); }
.v4-brand span, .v4-nav a, .v4-language, .v4-menu { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.04em; }
.v4-brand span { color: var(--v4-ink-soft); white-space: nowrap; }
.v4-nav { display: flex; align-items: center; gap: clamp(16px, 2.4vw, 34px); margin-left: auto; }
.v4-nav a { position: relative; padding: 28px 0 25px; text-decoration: none; transition: color 180ms ease; }
.v4-nav a::after { position: absolute; right: 0; bottom: 16px; left: 0; height: 2px; background: var(--v4-accent); content: ""; transform: scaleX(0); transform-origin: right; transition: transform 180ms ease; }
.v4-nav a:hover, .v4-nav a:focus-visible { color: var(--v4-accent-dark); }
.v4-nav a:hover::after, .v4-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.v4-header__actions { display: flex; align-items: center; gap: 9px; }
.v4-language, .v4-menu { min-height: 34px; padding: 7px 12px; border: 1px solid var(--v4-line); border-radius: 2px; background: transparent; color: var(--v4-ink); cursor: pointer; font-family: inherit; transition: background 180ms ease, border-color 180ms ease, color 180ms ease; }
.v4-menu { display: none; }
.v4-language:hover, .v4-menu:hover, .v4-language:focus-visible, .v4-menu:focus-visible { border-color: var(--v4-ink); background: var(--v4-ink); color: var(--v4-white); }
.v4-main { width: 100%; max-width: none; overflow: hidden; }
.v4-overline { color: var(--v4-accent-dark); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; line-height: 1.3; text-transform: uppercase; }

.v4-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(360px, 0.97fr);
  gap: clamp(30px, 6vw, 110px);
  min-height: min(790px, calc(100svh - 76px));
  width: min(100% - 48px, 1440px);
  margin: 0 auto;
  padding: clamp(72px, 9vw, 130px) 0 clamp(34px, 4vw, 60px);
}

.v4-hero__copy { position: relative; z-index: 2; align-self: center; max-width: 700px; padding-left: clamp(42px, 7vw, 110px); }
.v4-hero h1 { max-width: 700px; margin-top: 22px; color: var(--v4-ink); font-size: clamp(4rem, 8.2vw, 7rem); font-weight: 600; letter-spacing: -0.045em; line-height: 0.9; text-wrap: balance; }
.v4-home h1 em, .v4-home h2 em { color: var(--v4-accent-dark); font-style: normal; }
.v4-hero__lede { max-width: 455px; margin-top: 32px !important; color: var(--v4-ink-soft); font-size: clamp(1rem, 1.25vw, 1.16rem); line-height: 1.6; }

.v4-button { display: inline-flex; align-items: center; justify-content: center; gap: 22px; min-height: 49px; margin-top: 34px; padding: 13px 18px 13px 20px; border: 1px solid transparent; border-radius: 2px; font-size: 0.76rem; font-weight: 700; letter-spacing: 0.04em; text-decoration: none; transition: background 180ms ease, color 180ms ease, transform 180ms ease; }
.v4-button:hover, .v4-button:focus-visible { transform: translateY(-2px); }
.v4-button--accent { min-width: 190px; background: var(--v4-accent); color: var(--v4-ink); }
.v4-button--accent:hover, .v4-button--accent:focus-visible { background: var(--v4-accent-dark); color: var(--v4-white); }
.v4-button--light { background: var(--v4-white); color: var(--v4-ink); }
.v4-button--light:hover, .v4-button--light:focus-visible { background: var(--v4-accent); }

.v4-hero__visual { position: relative; min-height: 550px; }
.v4-hero__accent-block { position: absolute; top: 14%; right: 0; bottom: 2%; left: 13%; background: var(--v4-accent); }
.v4-portrait { position: absolute; top: 0; right: clamp(22px, 5vw, 84px); bottom: 7%; left: 0; overflow: hidden; background: var(--v4-mist); }
.v4-portrait img { width: 100%; height: 100%; object-fit: cover; object-position: 53% center; filter: saturate(0.78) contrast(1.04); }
.v4-portrait figcaption { position: absolute; right: 0; bottom: 0; left: 0; display: flex; justify-content: space-between; gap: 14px; padding: 15px 18px; background: var(--v4-ink); color: var(--v4-white); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.03em; }
.v4-hero__index { position: absolute; top: 55px; left: 0; display: flex; align-items: center; gap: 12px; color: var(--v4-ink-soft); font-size: 0.66rem; letter-spacing: 0.1em; text-transform: uppercase; transform: rotate(-90deg) translateX(-100%); transform-origin: left top; }
.v4-hero__index-line { display: block; width: 38px; height: 1px; background: var(--v4-accent); }
.v4-hero__foot { position: absolute; right: 0; bottom: 0; left: 0; display: flex; justify-content: space-between; color: var(--v4-ink-soft); font-size: 0.68rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.v4-scroll-note { display: inline-flex; align-items: center; gap: 10px; }
.v4-scroll-note i { display: block; width: 50px; height: 1px; background: var(--v4-accent); }

.v4-section { width: min(100% - 48px, 1230px); margin: 0 auto; }
.v4-introduction, .v4-services, .v4-principle { display: grid; grid-template-columns: minmax(160px, 0.28fr) minmax(0, 0.72fr); gap: clamp(30px, 7vw, 150px); }
.v4-introduction { padding-top: clamp(105px, 13vw, 190px); padding-bottom: clamp(105px, 13vw, 190px); }
.v4-section-label { display: flex; align-items: flex-start; gap: 10px; color: var(--v4-ink-soft); font-size: 0.69rem; font-weight: 700; letter-spacing: 0.09em; line-height: 1.35; text-transform: uppercase; }
.v4-section-label__rule { display: block; width: 28px; height: 1px; margin-top: 0.55em; background: var(--v4-accent); }
.v4-introduction__content { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(240px, 0.7fr); gap: clamp(34px, 8vw, 170px); }
.v4-introduction h2, .v4-services h2, .v4-principle h2 { max-width: 680px; color: var(--v4-ink); font-size: clamp(2.3rem, 4.5vw, 4.7rem); font-weight: 500; letter-spacing: -0.04em; line-height: 0.98; text-wrap: balance; }
.v4-introduction__content > div { align-self: end; padding-bottom: 2px; }
.v4-introduction__content p, .v4-feature__copy > p:not(.v4-overline), .v4-principle__content > p { color: var(--v4-ink-soft); font-size: 0.98rem; line-height: 1.65; }
.v4-introduction__content p + p { margin-top: 20px; }

.v4-services { column-gap: clamp(30px, 7vw, 150px); padding-bottom: clamp(110px, 13vw, 190px); }
.v4-services__heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; padding-bottom: 48px; }
.v4-services__heading h2 { max-width: 480px; font-size: clamp(2.2rem, 4vw, 4rem); }
.v4-services__heading p { max-width: 220px; color: var(--v4-ink-soft); font-size: 0.86rem; line-height: 1.5; }
.v4-service-list { grid-column: 2; }
.v4-service-row { display: grid; grid-template-columns: minmax(155px, 0.58fr) minmax(190px, 0.9fr) 36px; align-items: center; gap: 30px; min-height: 104px; border-top: 1px solid var(--v4-line); text-decoration: none; transition: color 180ms ease, padding 180ms ease, background 180ms ease; }
.v4-service-row:last-child { border-bottom: 1px solid var(--v4-line); }
.v4-service-row:hover, .v4-service-row:focus-visible { padding-right: 12px; padding-left: 12px; background: var(--v4-mist); color: var(--v4-accent-dark); }
.v4-service-row__name { font-size: clamp(1.3rem, 2.3vw, 2rem); font-weight: 600; letter-spacing: -0.025em; }
.v4-service-row__detail { max-width: 275px; color: var(--v4-ink-soft); font-size: 0.82rem; line-height: 1.45; }
.v4-service-row__arrow { justify-self: end; color: var(--v4-accent-dark); font-size: 1.5rem; transition: transform 180ms ease; }
.v4-service-row:hover .v4-service-row__arrow, .v4-service-row:focus-visible .v4-service-row__arrow { transform: translate(3px, -3px); }

.v4-feature { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(310px, 0.9fr); min-height: 650px; width: 100%; background: var(--v4-mist); }
.v4-feature__image { position: relative; min-height: 520px; overflow: hidden; }
.v4-feature__image img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.82); transform: scale(1.04) translateY(var(--v4-image-shift, 0px)); transform-origin: center; }
.v4-feature__image span { position: absolute; right: 24px; bottom: 20px; padding: 8px 11px; background: var(--v4-white); color: var(--v4-ink); font-size: 0.66rem; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; }
.v4-feature__copy { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: clamp(48px, 7vw, 110px); }
.v4-feature__copy h2 { max-width: 470px; margin-top: 22px; color: var(--v4-ink); font-size: clamp(2.3rem, 4.6vw, 4.9rem); font-weight: 500; letter-spacing: -0.04em; line-height: 0.98; text-wrap: balance; }
.v4-feature__copy > p:not(.v4-overline) { max-width: 390px; margin-top: 28px; }
.v4-text-link { display: inline-flex; align-items: center; gap: 20px; margin-top: 34px; border-bottom: 1px solid var(--v4-ink); padding-bottom: 8px; font-size: 0.76rem; font-weight: 700; letter-spacing: 0.04em; text-decoration: none; transition: color 180ms ease, border-color 180ms ease, gap 180ms ease; }
.v4-text-link:hover, .v4-text-link:focus-visible { gap: 28px; border-color: var(--v4-accent-dark); color: var(--v4-accent-dark); }

.v4-principle { padding-top: clamp(110px, 14vw, 210px); padding-bottom: clamp(110px, 14vw, 210px); }
.v4-principle__content { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(220px, 0.65fr); align-items: end; gap: clamp(30px, 8vw, 150px); }
.v4-principle__content h2 { font-size: clamp(2.8rem, 5.5vw, 5.7rem); }
.v4-principle__content > p { max-width: 300px; padding-bottom: 5px; }
.v4-principle__aside { grid-column: 2; display: flex; flex-wrap: wrap; gap: 9px 28px; margin-top: 48px; border-top: 1px solid var(--v4-line); padding-top: 16px; color: var(--v4-ink-soft); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; }
.v4-principle__aside span:first-child { color: var(--v4-accent-dark); }

.v4-cta { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr); min-height: 550px; background: var(--v4-ink); color: var(--v4-white); }
.v4-cta__copy { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: clamp(54px, 9vw, 150px) clamp(24px, 9vw, 160px); }
.v4-cta__copy h2 { margin-top: 24px; color: var(--v4-white); font-size: clamp(3.2rem, 6.4vw, 6.3rem); font-weight: 500; letter-spacing: -0.045em; line-height: 0.92; }
.v4-cta__copy h2 em { color: var(--v4-accent); }
.v4-cta > img { width: 100%; height: 100%; min-height: 420px; object-fit: cover; object-position: 50% center; filter: saturate(0.78) contrast(1.05); }
.v4-footer { padding: 29px clamp(24px, 4vw, 60px) 24px; background: var(--v4-ink); color: var(--v4-white); }
.v4-footer__top, .v4-footer__bottom { display: flex; justify-content: space-between; gap: 30px; }
.v4-footer__top { border-top: 1px solid oklch(0.99 0.002 105 / 0.25); padding-top: 18px; font-size: 0.74rem; }
.v4-footer__top span, .v4-footer__bottom, .v4-footer__bottom a { color: oklch(0.99 0.002 105 / 0.66); }
.v4-footer__bottom { align-items: end; margin-top: 48px; font-size: 0.66rem; line-height: 1.5; }
.v4-footer__bottom p { max-width: 410px; }
.v4-footer__bottom > div { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px 24px; }
.v4-footer__bottom a { text-decoration: none; transition: color 180ms ease; }
.v4-footer__bottom a:hover, .v4-footer__bottom a:focus-visible { color: var(--v4-accent); }
.v4-home .v4-header a:focus-visible, .v4-home button:focus-visible, .v4-home .v4-button:focus-visible, .v4-home .v4-service-row:focus-visible, .v4-home .v4-text-link:focus-visible, .v4-home .v4-footer a:focus-visible { outline: 2px solid var(--v4-accent); outline-offset: 4px; }

@media (max-width: 980px) {
  .v4-header__inner, .v4-hero, .v4-section { width: min(100% - 36px, 760px); }
  .v4-header__inner { gap: 18px; }
  .v4-brand span { display: none; }
  .v4-nav { gap: 17px; }
  .v4-nav a, .v4-language, .v4-menu { font-size: 0.67rem; }
  .v4-hero { grid-template-columns: minmax(0, 0.94fr) minmax(280px, 0.86fr); gap: 30px; min-height: 690px; }
  .v4-hero__copy { padding-left: 35px; }
  .v4-hero__visual { min-height: 480px; }
  .v4-introduction, .v4-services, .v4-principle { grid-template-columns: 150px minmax(0, 1fr); gap: 42px; }
  .v4-introduction__content, .v4-principle__content { gap: 35px; }
  .v4-feature__copy { padding: 48px; }
}

@media (max-width: 720px) {
  .v4-header__inner { min-height: 66px; }
  .v4-brand img { width: 82px; height: 30px; }
  .v4-nav { position: fixed; top: 66px; right: 18px; left: 18px; display: none; flex-direction: column; align-items: stretch; gap: 0; border: 1px solid var(--v4-line); background: var(--v4-paper); }
  .v4-nav.open { display: flex; }
  .v4-nav a { padding: 16px 18px; border-bottom: 1px solid var(--v4-line); }
  .v4-nav a:last-child { border-bottom: 0; }
  .v4-nav a::after { display: none; }
  .v4-menu { display: inline-flex; }
  .v4-hero { display: flex; flex-direction: column; width: 100%; min-height: auto; padding: 58px 18px 26px; }
  .v4-hero__index { display: none; }
  .v4-hero__copy { padding-left: 0; }
  .v4-hero h1 { max-width: 580px; font-size: clamp(3.65rem, 16vw, 6rem); }
  .v4-hero__lede { max-width: 410px; }
  .v4-hero__visual { min-height: 460px; margin-top: 24px; }
  .v4-portrait { right: 22px; }
  .v4-hero__foot { position: static; margin-top: 30px; }
  .v4-introduction, .v4-services, .v4-principle { display: block; width: min(100% - 36px, 600px); padding-top: 86px; padding-bottom: 86px; }
  .v4-section-label { margin-bottom: 30px; }
  .v4-introduction__content, .v4-principle__content { display: block; }
  .v4-introduction__content > div { margin-top: 34px; }
  .v4-services__heading { display: block; padding-bottom: 32px; }
  .v4-services__heading p { margin-top: 18px; }
  .v4-service-list { width: 100%; }
  .v4-service-row { grid-template-columns: minmax(0, 1fr) 30px; gap: 10px; min-height: 116px; }
  .v4-service-row__detail { grid-column: 1; grid-row: 2; margin-top: -22px; }
  .v4-service-row__arrow { grid-column: 2; grid-row: 1 / span 2; }
  .v4-feature { display: flex; flex-direction: column; }
  .v4-feature__image { min-height: 340px; }
  .v4-feature__copy { padding: 64px 18px 76px; }
  .v4-principle__content > p { margin-top: 34px; }
  .v4-principle__aside { margin-top: 40px; }
  .v4-cta { display: flex; flex-direction: column; }
  .v4-cta__copy { min-height: 430px; padding: 70px 18px 80px; }
  .v4-cta > img { min-height: 390px; }
  .v4-footer__top, .v4-footer__bottom { display: block; }
  .v4-footer__top span { display: block; margin-top: 8px; }
  .v4-footer__bottom > div { justify-content: flex-start; margin-top: 26px; }
}

@media (max-width: 420px) {
  .v4-header__inner { width: calc(100% - 28px); }
  .v4-header__actions { gap: 5px; }
  .v4-language, .v4-menu { padding-right: 9px; padding-left: 9px; }
  .v4-hero h1 { font-size: clamp(3.25rem, 15vw, 4.35rem); }
  .v4-hero__visual { min-height: 400px; }
  .v4-portrait { right: 12px; }
  .v4-portrait figcaption { display: block; }
  .v4-portrait figcaption > span + span { display: block; margin-top: 3px; opacity: 0.7; }
  .v4-hero__foot { display: block; font-size: 0.62rem; }
  .v4-scroll-note { margin-top: 10px; }
}

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

/* v5 black and gold art direction */
.v5-home {
  --v4-paper: oklch(0.12 0.012 92);
  --v4-mist: oklch(0.16 0.018 82);
  --v4-ink: oklch(0.94 0.035 88);
  --v4-ink-soft: oklch(0.77 0.025 86);
  --v4-line: oklch(0.78 0.13 78 / 0.35);
  --v4-accent: oklch(0.72 0.15 78);
  --v4-accent-dark: oklch(0.82 0.16 84);
  --v4-white: oklch(0.98 0.02 88);
  background: var(--v4-paper);
  color: var(--v4-ink);
}

.v5-home .v4-header {
  background: oklch(0.12 0.012 92 / 0.95);
  border-bottom-color: var(--v4-line);
}

.v5-home .v4-brand span,
.v5-home .v4-nav a,
.v5-home .v4-language,
.v5-home .v4-menu {
  color: var(--v4-ink);
}

.v5-home .v4-nav a:hover,
.v5-home .v4-nav a:focus-visible,
.v5-home .v4-brand span {
  color: var(--v4-accent-dark);
}

.v5-home .v4-nav a::after,
.v5-home .v4-hero__index-line,
.v5-home .v4-scroll-note i,
.v5-home .v4-section-label__rule {
  background: var(--v4-accent);
}

.v5-home .v4-language,
.v5-home .v4-menu {
  border-color: var(--v4-line);
  color: var(--v4-ink);
}

.v5-home .v4-language:hover,
.v5-home .v4-menu:hover,
.v5-home .v4-language:focus-visible,
.v5-home .v4-menu:focus-visible {
  border-color: var(--v4-accent);
  background: var(--v4-accent);
  color: var(--v4-paper);
}

.v5-home .v4-hero {
  width: min(100% - 48px, 1440px);
  background: var(--v4-paper);
}

.v5-home .v4-hero h1,
.v5-home .v4-introduction h2,
.v5-home .v4-services h2,
.v5-home .v4-feature__copy h2,
.v5-home .v4-principle h2 {
  color: var(--v4-ink);
}

.v5-home h1 em,
.v5-home h2 em,
.v5-home .v4-overline,
.v5-home .v4-service-row__arrow,
.v5-home .v4-principle__aside span:first-child {
  color: var(--v4-accent-dark);
}

.v5-home .v4-hero__lede,
.v5-home .v4-introduction__content p,
.v5-home .v4-services__heading p,
.v5-home .v4-service-row__detail,
.v5-home .v4-feature__copy > p:not(.v4-overline),
.v5-home .v4-principle__content > p {
  color: var(--v4-ink-soft);
}

.v5-home .v4-button--accent {
  background: var(--v4-accent);
  color: var(--v4-paper);
}

.v5-home .v4-button--accent:hover,
.v5-home .v4-button--accent:focus-visible {
  background: var(--v4-accent-dark);
  color: var(--v4-paper);
}

.v5-home .v4-hero__accent-block {
  top: 10%;
  right: 0;
  bottom: 0;
  left: 11%;
  border: 1px solid var(--v4-line);
  background: transparent;
}

.v5-home .v4-portrait {
  right: clamp(22px, 5vw, 84px);
  bottom: 7%;
  border: 1px solid var(--v4-line);
  background: var(--v4-mist);
}

.v5-home .v4-portrait img {
  object-position: 72% center;
  filter: saturate(0.72) contrast(1.12) brightness(0.86);
}

.v5-home .v4-portrait figcaption {
  background: oklch(0.12 0.012 92 / 0.94);
  color: var(--v4-ink);
}

.v5-home .v4-hero__index,
.v5-home .v4-hero__foot,
.v5-home .v4-section-label,
.v5-home .v4-principle__aside {
  color: var(--v4-ink-soft);
}

.v5-home .v4-introduction,
.v5-home .v4-services,
.v5-home .v4-principle {
  background: var(--v4-paper);
}

.v5-home .v4-section-label {
  color: var(--v4-accent-dark);
}

.v5-home .v4-service-row {
  border-top-color: var(--v4-line);
}

.v5-home .v4-service-row:last-child {
  border-bottom-color: var(--v4-line);
}

.v5-home .v4-service-row:hover,
.v5-home .v4-service-row:focus-visible {
  background: var(--v4-mist);
  color: var(--v4-accent-dark);
}

.v5-home .v4-service-row:hover .v4-service-row__detail,
.v5-home .v4-service-row:focus-visible .v4-service-row__detail {
  color: var(--v4-ink);
}

.v5-home .v4-feature {
  background: var(--v4-mist);
}

.v5-home .v4-feature__image img {
  filter: saturate(0.68) contrast(1.1) brightness(0.72);
}

.v5-home .v4-feature__image span {
  background: var(--v4-accent);
  color: var(--v4-paper);
}

.v5-home .v4-text-link {
  border-bottom-color: var(--v4-accent);
  color: var(--v4-accent-dark);
}

.v5-home .v4-text-link:hover,
.v5-home .v4-text-link:focus-visible {
  border-bottom-color: var(--v4-accent-dark);
  color: var(--v4-ink);
}

.v5-home .v4-principle__aside {
  border-top-color: var(--v4-line);
}

.v5-home .v4-cta {
  grid-template-columns: minmax(280px, 0.48fr) minmax(0, 1fr);
  background: var(--v4-accent);
  color: var(--v4-paper);
}

.v5-home .v4-cta__copy {
  grid-column: 2;
  grid-row: 1;
  background: var(--v4-accent);
}

.v5-home .v4-cta > img {
  grid-column: 1;
  grid-row: 1;
  min-height: 520px;
  filter: saturate(0.72) contrast(1.14) brightness(0.76);
}

.v5-home .v4-cta__copy .v4-overline,
.v5-home .v4-cta__copy h2,
.v5-home .v4-cta__copy h2 em {
  color: var(--v4-paper);
}

.v5-home .v4-button--light {
  background: var(--v4-paper);
  color: var(--v4-accent-dark);
}

.v5-home .v4-button--light:hover,
.v5-home .v4-button--light:focus-visible {
  background: var(--v4-ink);
  color: var(--v4-accent-dark);
}

.v5-home .v4-footer {
  background: var(--v4-paper);
  color: var(--v4-ink);
}

.v5-home .v4-footer__top {
  border-top-color: var(--v4-line);
}

.v5-home .v4-footer__top span,
.v5-home .v4-footer__bottom,
.v5-home .v4-footer__bottom a {
  color: var(--v4-ink-soft);
}

.v5-home .v4-footer__bottom a:hover,
.v5-home .v4-footer__bottom a:focus-visible {
  color: var(--v4-accent-dark);
}

.v5-home .v4-home .v4-header a:focus-visible,
.v5-home button:focus-visible,
.v5-home .v4-button:focus-visible,
.v5-home .v4-service-row:focus-visible,
.v5-home .v4-text-link:focus-visible,
.v5-home .v4-footer a:focus-visible {
  outline-color: var(--v4-accent-dark);
}

@media (max-width: 720px) {
  .v5-home .v4-nav {
    border-color: var(--v4-line);
    background: var(--v4-paper);
  }

  .v5-home .v4-nav a {
    border-bottom-color: var(--v4-line);
  }

  .v5-home .v4-cta {
    display: flex;
    flex-direction: column;
  }

  .v5-home .v4-cta__copy {
    order: 2;
    min-height: 430px;
  }

  .v5-home .v4-cta > img {
    order: 1;
    min-height: 360px;
  }
}

/* GPT Taste finish: brass gold, denser pacing, and authored motion */
.v5-home {
  --v4-accent: #a87832;
  --v4-accent-dark: #c49a56;
  --v4-ink: #f0e6d2;
  --v4-ink-soft: #b5a98f;
  --v4-white: #f8f0df;
  --gold: #a87832;
  --gold-2: #c49a56;
  --gold-hover: #d1ad69;
  --gold-dark: #7a5526;
  --gold-active: #976d2d;
  --gold-soft: rgb(168 120 50 / 0.16);
  font-family: "Manrope", "Noto Sans SC", "Microsoft YaHei", Arial, sans-serif;
}

.v5-home .v4-brand img {
  background: transparent;
  object-fit: contain;
}

.v5-home .v4-hero {
  min-height: min(710px, calc(100svh - 76px));
  padding-top: clamp(58px, 7vw, 92px);
  padding-bottom: clamp(24px, 3vw, 42px);
}

.v5-home .v4-hero h1 {
  max-width: min(100%, 760px);
  font-size: clamp(3.2rem, 6vw, 5.8rem);
  letter-spacing: -0.035em;
}

.v5-home .v4-introduction {
  padding-top: clamp(76px, 9vw, 128px);
  padding-bottom: clamp(84px, 10vw, 136px);
}

.v5-home .v4-introduction h2 {
  font-size: clamp(2.05rem, 3.7vw, 3.8rem);
  line-height: 1;
}

.v5-home .v4-services {
  padding-bottom: clamp(88px, 10vw, 136px);
}

.v5-home .v4-principle {
  padding-top: clamp(92px, 11vw, 150px);
  padding-bottom: clamp(92px, 11vw, 150px);
}

.v5-home .v4-feature {
  min-height: 590px;
}

.v5-home .v4-feature__image {
  min-height: 470px;
}

.v5-home .v4-service-row:hover,
.v5-home .v4-service-row:focus-visible {
  padding-right: 16px;
  padding-left: 16px;
}

.v5-home .v4-service-row__arrow {
  color: var(--v4-accent-dark);
}

.v6-marquee {
  width: 100%;
  overflow: hidden;
  border-top: 1px solid var(--v4-line);
  border-bottom: 1px solid var(--v4-line);
  background: var(--v4-mist);
  color: var(--v4-accent-dark);
}

.v6-marquee__track {
  display: flex;
  align-items: center;
  gap: 24px;
  width: max-content;
  min-height: 50px;
  padding: 0 24px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: v6-marquee 28s linear infinite;
}

.v6-marquee__track i {
  display: block;
  width: 5px;
  height: 5px;
  border: 1px solid var(--v4-accent);
  border-radius: 50%;
}

@keyframes v6-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 720px) {
  .v5-home .v4-hero {
    min-height: auto;
    padding-top: 48px;
  }

  .v5-home .v4-hero h1 {
    font-size: clamp(2.4rem, 10vw, 3.8rem);
    line-height: 0.93;
  }

  .v5-home .v4-introduction,
  .v5-home .v4-services,
  .v5-home .v4-principle {
    padding-top: 64px;
    padding-bottom: 72px;
  }

  .v5-home .v4-feature__image {
    min-height: 320px;
  }

  .v6-marquee__track {
    min-height: 44px;
    font-size: 0.6rem;
  }

}

@media (prefers-reduced-motion: reduce) {
  .v6-marquee__track {
    animation: none;
  }
}

/* V6 typography pass: one calmer family, a narrower scale, and readable small text. */
.v5-home,
.v5-home button,
.v5-home a {
  font-family: "Manrope", "Noto Sans SC", "Microsoft YaHei", Arial, sans-serif;
}

.v5-home [data-lang="zh"] {
  font-family: "Noto Sans SC", "Microsoft YaHei", Arial, sans-serif;
}

.v5-home .v4-brand span,
.v5-home .v4-nav a,
.v5-home .v4-language,
.v5-home .v4-menu {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.025em;
}

.v5-home .v4-hero h1 {
  max-width: 700px;
  font-size: clamp(3rem, 5.4vw, 5.6rem);
  font-weight: 500;
  letter-spacing: -0.018em;
  line-height: 0.99;
}

.v5-home .v4-hero__lede {
  font-size: clamp(1rem, 1.05vw, 1.1rem);
  line-height: 1.58;
}

.v5-home .v4-overline,
.v5-home .v4-section-label {
  font-size: 0.72rem;
  letter-spacing: 0.075em;
}

.v5-home .v4-hero__foot {
  font-size: 0.72rem;
  letter-spacing: 0.045em;
}

.v5-home .v4-introduction h2,
.v5-home .v4-services h2,
.v5-home .v4-feature__copy h2,
.v5-home .v4-principle__content h2,
.v5-home .v4-cta__copy h2 {
  font-weight: 500;
  letter-spacing: -0.015em;
}

.v5-home .v4-introduction h2 {
  font-size: clamp(2rem, 3.5vw, 3.8rem);
  line-height: 1.06;
}

.v5-home .v4-services h2 {
  font-size: clamp(2rem, 3.3vw, 3.5rem);
  line-height: 1.06;
}

.v5-home .v4-feature__copy h2 {
  font-size: clamp(2.05rem, 3.7vw, 3.9rem);
  line-height: 1.06;
}

.v5-home .v4-principle__content h2 {
  font-size: clamp(2.45rem, 4.4vw, 4.8rem);
  line-height: 1.04;
}

.v5-home .v4-cta__copy h2 {
  font-size: clamp(2.8rem, 5.2vw, 5.5rem);
  line-height: 1;
}

.v5-home .v4-introduction__content p,
.v5-home .v4-feature__copy > p:not(.v4-overline),
.v5-home .v4-principle__content > p {
  font-size: 1rem;
  line-height: 1.6;
}

.v5-home .v4-service-row__name {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 500;
  letter-spacing: -0.02em;
}

.v5-home .v4-service-row__detail {
  font-size: 0.9rem;
  line-height: 1.55;
}

.v5-home .v4-service-row__arrow {
  font-size: 1.35rem;
}

.v5-home .v4-portrait figcaption,
.v5-home .v4-feature__image .v6-feature-link {
  font-size: 0.74rem;
  letter-spacing: 0.04em;
}

.v5-home .v4-button,
.v5-home .v4-text-link {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.025em;
}

.v5-home .v6-marquee__track {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
}

.v5-home .v4-principle__aside {
  font-size: 0.72rem;
  letter-spacing: 0.055em;
}

.v5-home .v4-footer__top {
  font-size: 0.75rem;
}

.v5-home .v4-footer__bottom {
  font-size: 0.72rem;
}

@media (max-width: 720px) {
  .v5-home .v4-hero h1 {
    font-size: clamp(2.25rem, 10vw, 3.6rem);
    line-height: 0.95;
  }

  .v5-home .v4-hero__lede {
    font-size: 1rem;
  }

  .v5-home .v4-section-label {
    font-size: 0.7rem;
  }

  .v5-home .v4-hero__foot {
    font-size: 0.68rem;
  }
}

/* Copy clarity: make the image action explicit and keep the hero notes useful. */
.v5-home .v4-hero__foot {
  letter-spacing: 0.045em;
}

.v5-home .v4-hero__foot > span:first-child {
  max-width: 52%;
}

.v5-home .v4-feature__image .v6-feature-link {
  position: absolute;
  right: 24px;
  bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 10px 12px;
  background: var(--v4-accent);
  color: var(--v4-paper);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, gap 180ms ease, transform 180ms ease;
}

.v5-home .v4-feature__image .v6-feature-link > span {
  position: static;
  padding: 0;
  background: transparent;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
}

.v5-home .v4-feature__image .v6-feature-link > span[data-lang="zh"] {
  letter-spacing: 0;
  text-transform: none;
}

.v5-home .v4-feature__image .v6-feature-link:hover,
.v5-home .v4-feature__image .v6-feature-link:focus-visible {
  gap: 22px;
  background: var(--v4-accent-dark);
  color: var(--v4-paper);
  transform: translateY(-2px);
}

@media (max-width: 720px) {
  .v5-home .v4-hero__foot {
    align-items: flex-end;
    gap: 18px;
    font-size: 0.68rem;
    letter-spacing: 0.035em;
  }

  .v5-home .v4-hero__foot > span:first-child {
    flex: 1 1 auto;
    min-width: 0;
    max-width: none;
  }

  .v5-home .v4-hero__foot .v4-scroll-note {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .v5-home .v4-feature__image .v6-feature-link {
    right: 16px;
    bottom: 16px;
  }
}

/* Legacy detail body with the V6 navigation and typography system. */
.v6-nav {
  --v6-nav-bg: #0b0a09;
  --v6-nav-ink: #f0e6d2;
  --v6-nav-soft: #b5a98f;
  --v6-nav-line: rgb(196 154 86 / 0.34);
  --font-body: "Manrope", "Noto Sans SC", "Microsoft YaHei", Arial, sans-serif;
  font-family: var(--font-body);
}

.v6-nav [data-lang="zh"] {
  font-family: "Noto Sans SC", "Microsoft YaHei", Arial, sans-serif;
}

.v6-nav .site-header {
  background: rgb(11 10 9 / 0.95);
  border-bottom-color: var(--v6-nav-line);
  backdrop-filter: blur(12px);
}

.v6-nav .site-header.is-scrolled {
  background: rgb(11 10 9 / 0.98);
  border-bottom-color: var(--v6-nav-line);
  box-shadow: none;
}

.v6-nav .nav-wrap {
  min-height: 76px;
  gap: clamp(20px, 4vw, 68px);
}

.v6-nav .brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
  color: var(--v6-nav-ink);
  text-decoration: none;
}

.v6-nav .brand img {
  width: 92px;
  height: 34px;
  object-fit: contain;
  background: transparent;
}

.v6-nav .brand span {
  color: var(--v6-nav-soft);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.v6-nav .nav {
  gap: clamp(16px, 2.4vw, 34px);
  margin-left: auto;
}

.v6-nav .nav a {
  position: relative;
  padding: 28px 0 25px;
  color: var(--v6-nav-ink);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.025em;
  text-decoration: none;
}

.v6-nav .nav a::after {
  position: absolute;
  right: 0;
  bottom: 16px;
  left: 0;
  height: 2px;
  background: #a87832;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.v6-nav .nav a:hover,
.v6-nav .nav a:focus-visible {
  color: #c49a56;
}

.v6-nav .nav a:hover::after,
.v6-nav .nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.v6-nav .lang-toggle,
.v6-nav .menu-toggle {
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid var(--v6-nav-line);
  border-radius: 2px;
  color: var(--v6-nav-ink);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.025em;
}

.v6-nav .lang-toggle:hover,
.v6-nav .menu-toggle:hover,
.v6-nav .lang-toggle:focus-visible,
.v6-nav .menu-toggle:focus-visible {
  border-color: #a87832;
  background: #a87832;
  color: var(--v6-nav-bg);
}

@media (max-width: 920px) {
  .v6-nav .nav {
    position: static;
    display: flex;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .v6-nav .menu-toggle {
    display: none;
  }
}

@media (max-width: 980px) {
  .v6-nav .brand span {
    display: none;
  }

  .v6-nav .nav-wrap {
    gap: 18px;
  }

  .v6-nav .nav {
    gap: 17px;
  }

  .v6-nav .nav a,
  .v6-nav .lang-toggle,
  .v6-nav .menu-toggle {
    font-size: 0.7rem;
  }
}

@media (max-width: 720px) {
  .v6-nav .site-header {
    min-height: 66px;
  }

  .v6-nav .nav-wrap {
    min-height: 66px;
  }

  .v6-nav .brand img {
    width: 82px;
    height: 30px;
  }

  .v6-nav .nav {
    position: fixed;
    top: 66px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin-left: 0;
    padding: 0;
    border: 1px solid var(--v6-nav-line);
    background: var(--v6-nav-bg);
  }

  .v6-nav .nav.open {
    display: flex;
  }

  .v6-nav .nav a {
    padding: 16px 18px;
    border-bottom: 1px solid rgb(196 154 86 / 0.18);
  }

  .v6-nav .nav a:last-child {
    border-bottom: 0;
  }

  .v6-nav .nav a::after {
    display: none;
  }

  .v6-nav .menu-toggle {
    display: inline-flex;
  }
}

/* Refinance proof strip: one quiet container instead of four competing cards. */
.refinance-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 34px;
  overflow: hidden;
  border: 1px solid rgba(240, 215, 146, 0.28);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
}

.refinance-proof__item {
  position: relative;
  display: flex;
  min-height: 126px;
  flex-direction: column;
  gap: 22px;
  padding: 17px 16px 18px;
}

.refinance-proof__item:not(:last-child)::after {
  position: absolute;
  top: 18px;
  right: 0;
  bottom: 18px;
  width: 1px;
  background: rgba(240, 215, 146, 0.18);
  content: "";
}

.refinance-proof__mark {
  color: var(--gold-2);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.refinance-proof__copy,
.refinance-proof__title,
.refinance-proof__detail {
  display: block;
}

.refinance-proof__title {
  color: var(--white);
  font-size: 0.91rem;
  font-weight: 800;
  line-height: 1.28;
}

.refinance-proof__detail {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.74rem;
  line-height: 1.42;
}

@media (max-width: 920px) {
  .tertiary-hero .refinance-proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .refinance-proof__item:nth-child(2)::after {
    display: none;
  }
}

@media (max-width: 560px) {
  .tertiary-hero .refinance-proof {
    grid-template-columns: 1fr;
  }

  .refinance-proof__item {
    min-height: 0;
    flex-direction: row;
    gap: 16px;
    padding: 15px 16px;
  }

  .refinance-proof__item:not(:last-child)::after {
    top: auto;
    right: 16px;
    bottom: 0;
    left: 16px;
    width: auto;
    height: 1px;
  }

  .refinance-proof__mark {
    min-width: 22px;
    padding-top: 2px;
  }
}

/* About page mobile correction: keep the profile page single-column after the desktop overrides. */
@media (max-width: 920px) {
  .v6-nav .about-hero-grid,
  .v6-nav .about-intro-grid,
  .v6-nav .about-method-grid,
  .v6-nav .proof-grid,
  .v6-nav .proof-points {
    grid-template-columns: 1fr;
  }

  .v6-nav .about-portrait,
  .v6-nav .about-standing-photo {
    justify-self: start;
    max-width: min(100%, 320px);
  }
}

@media (max-width: 560px) {
  .v6-nav .about-hero {
    padding: 48px 0 42px;
  }

  .v6-nav .about-hero-grid,
  .v6-nav .about-intro-grid,
  .v6-nav .about-method-grid {
    gap: 34px;
  }

  .v6-nav .about-hero-copy h1 {
    max-width: 12ch;
    font-size: clamp(2.65rem, 13.5vw, 3.75rem);
    line-height: 0.98;
    letter-spacing: -0.025em;
  }

  .v6-nav .about-hero-copy p {
    font-size: 1rem;
    line-height: 1.55;
  }

  .v6-nav .about-hero .actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 24px;
  }

  .v6-nav .about-hero .actions .btn {
    width: 100%;
    min-height: 48px;
    justify-content: center;
  }

  .v6-nav .about-portrait {
    max-width: min(100%, 260px);
  }

  .v6-nav .about-portrait figcaption {
    font-size: 0.84rem;
    line-height: 1.35;
  }

  .v6-nav .about-standing-photo {
    max-width: 100%;
  }
}
