:root {
  --navy-950: #061428;
  --navy-900: #071a34;
  --navy-800: #0b2546;
  --blue-700: #0041c7;
  --blue-500: #0d85d8;
  --gold-600: #b88b31;
  --gold-500: #c9a24d;
  --gold-300: #e8d08b;
  --white: #ffffff;
  --paper: #f7f9fc;
  --ink: #101827;
  --muted: #667085;
  --line: #dde3ec;
  --shadow: 0 22px 60px rgba(6, 20, 40, 0.16);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 110px;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    "PingFang SC", "Microsoft YaHei", sans-serif;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

:focus-visible {
  outline: 3px solid rgba(201, 162, 77, 0.75);
  outline-offset: 3px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: min(calc(100% - 48px), var(--max));
  margin: 18px auto 0;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(6, 20, 40, 0.74);
  color: var(--white);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.22);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    margin 180ms ease;
}

.site-header.is-scrolled {
  margin-top: 10px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--navy-950);
  border-color: rgba(10, 30, 58, 0.1);
  box-shadow: 0 16px 44px rgba(8, 25, 47, 0.12);
}

.brand {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(232, 208, 139, 0.65);
}

.brand span {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.brand strong {
  font-size: 15px;
  line-height: 1.2;
  white-space: nowrap;
}

.brand small {
  color: currentColor;
  font-size: 10px;
  line-height: 1.2;
  opacity: 0.72;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 650;
}

.site-nav a {
  padding: 10px 12px;
  border-radius: 6px;
  opacity: 0.82;
  transition:
    background 160ms ease,
    opacity 160ms ease,
    color 160ms ease;
}

.site-nav a:hover {
  background: rgba(201, 162, 77, 0.12);
  color: var(--gold-300);
  opacity: 1;
}

.site-header.is-scrolled .site-nav a:hover {
  color: var(--gold-600);
}

.language-switch {
  display: inline-grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  padding: 3px;
  border: 1px solid rgba(232, 208, 139, 0.28);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
}

.language-switch button {
  min-width: 36px;
  height: 30px;
  padding: 0 9px;
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: currentColor;
  font: inherit;
  font-size: 12px;
  font-weight: 850;
  line-height: 1;
  cursor: pointer;
  opacity: 0.72;
}

.language-switch button.is-active {
  background: var(--gold-500);
  color: var(--navy-950);
  opacity: 1;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background: transparent;
  color: currentColor;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transition:
    transform 160ms ease,
    opacity 160ms ease;
}

.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.section {
  position: relative;
  padding: 104px 24px;
  overflow: hidden;
}

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

.section-soft {
  background:
    linear-gradient(180deg, rgba(247, 249, 252, 0) 0%, rgba(247, 249, 252, 1) 40%),
    var(--paper);
}

.section-dark {
  background: var(--navy-950);
  color: var(--white);
}

.hero {
  position: relative;
  min-height: 760px;
  padding: 0 24px;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(90deg, rgba(6, 20, 40, 0.96) 0%, rgba(6, 20, 40, 0.74) 38%, rgba(6, 20, 40, 0.28) 74%),
    linear-gradient(180deg, rgba(6, 20, 40, 0.14), rgba(6, 20, 40, 0.88)),
    url("assets/hero-gavel.png");
  background-size: cover;
  background-position: center right;
}

.hero::after,
.trust-band::after,
.section-white::after,
.section-soft::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero::after {
  inset: auto -8% -1px -8%;
  height: 138px;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(6, 20, 40, 0), rgba(6, 20, 40, 0.8)),
    radial-gradient(60% 110% at 70% 0%, rgba(201, 162, 77, 0.26), transparent 70%);
  border-top: 1px solid rgba(232, 208, 139, 0.18);
}

.hero-inner {
  width: min(100%, var(--max));
  min-height: 760px;
  margin: 0 auto;
  display: grid;
  align-content: center;
  gap: 72px;
  padding-top: 118px;
}

.hero-copy {
  width: min(720px, 100%);
}

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

h1,
h2 {
  font-family:
    Georgia, "Times New Roman", "Songti SC", "SimSun", "PingFang SC", serif;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 840px;
  color: var(--gold-300);
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 700;
  line-height: 1.04;
  text-wrap: balance;
}

.hero-en {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.92);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(19px, 2.6vw, 32px);
  line-height: 1.2;
}

.hero-lede {
  width: min(580px, 100%);
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.75;
}

.hero-actions,
.partner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 750;
  line-height: 1;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease,
    color 160ms ease,
    box-shadow 160ms ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--gold-300), var(--gold-600));
  color: var(--navy-950);
  box-shadow: 0 14px 32px rgba(201, 162, 77, 0.28);
}

.btn-secondary {
  border-color: rgba(232, 208, 139, 0.6);
  background: rgba(6, 20, 40, 0.36);
  color: var(--white);
}

.btn-outline {
  border-color: rgba(184, 139, 49, 0.5);
  color: var(--navy-950);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(860px, 100%);
  border: 1px solid rgba(232, 208, 139, 0.28);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(232, 208, 139, 0.22);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.18);
}

.hero-proof div {
  padding: 20px 24px;
  background: rgba(7, 26, 52, 0.74);
  backdrop-filter: blur(14px);
}

.hero-proof span,
.trust-facts dt,
.revenue-total span,
.bar-row span,
.site-footer span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  font-weight: 650;
}

.hero-proof strong {
  display: block;
  margin-top: 7px;
  color: var(--white);
  font-size: clamp(15px, 1.7vw, 18px);
  line-height: 1.35;
}

.trust-band {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 42px;
  align-items: center;
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  padding: 42px;
  border: 1px solid rgba(14, 35, 68, 0.08);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
  z-index: 5;
}

.trust-band::after {
  inset: auto -8% -24px 18%;
  height: 110px;
  background:
    linear-gradient(90deg, transparent, rgba(201, 162, 77, 0.25), transparent),
    repeating-linear-gradient(165deg, transparent 0 22px, rgba(201, 162, 77, 0.12) 23px 25px);
  transform: rotate(-2deg);
}

.trust-copy,
.certificate {
  position: relative;
  z-index: 1;
}

.trust-copy h2 {
  color: var(--navy-950);
  font-size: clamp(31px, 4vw, 48px);
  line-height: 1.15;
}

.trust-copy p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.trust-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 28px 0 0;
}

.trust-facts div {
  padding: 17px 18px;
  border-left: 3px solid var(--gold-500);
  background: rgba(247, 249, 252, 0.9);
}

.trust-facts dt {
  color: var(--muted);
}

.trust-facts dd {
  margin: 7px 0 0;
  color: var(--navy-950);
  font-size: 20px;
  font-weight: 850;
}

.certificate {
  margin: 0;
  justify-self: end;
  width: min(100%, 370px);
  transform: rotate(1.5deg);
}

.certificate img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border: 1px solid rgba(14, 35, 68, 0.1);
  border-radius: 6px;
  box-shadow: 0 20px 44px rgba(16, 24, 39, 0.16);
}

.product-section {
  padding-top: 112px;
}

.product-showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  width: min(100%, var(--max));
  margin: 62px auto 0;
}

html[lang="en"] .product-showcase {
  grid-template-columns: 1fr;
  width: min(100%, 980px);
}

.product-feature {
  display: grid;
  grid-template-columns: minmax(170px, 0.42fr) minmax(0, 1fr);
  gap: 26px;
  align-items: stretch;
  min-height: 520px;
  padding: 18px;
  border: 1px solid rgba(14, 35, 68, 0.09);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(247, 249, 252, 0.94)),
    var(--white);
  box-shadow: 0 18px 46px rgba(16, 24, 39, 0.09);
}

html[lang="en"] .product-feature {
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 1fr);
  min-height: 430px;
}

.product-feature.featured {
  border-color: rgba(201, 162, 77, 0.42);
  background:
    radial-gradient(circle at 85% 0%, rgba(201, 162, 77, 0.18), transparent 36%),
    linear-gradient(135deg, var(--navy-950), var(--navy-800));
  color: var(--white);
}

.product-visual {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 480px;
  padding: 26px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(232, 208, 139, 0.26);
  background:
    radial-gradient(circle at 20% 12%, rgba(232, 208, 139, 0.24), transparent 30%),
    radial-gradient(circle at 88% 18%, rgba(13, 133, 216, 0.22), transparent 34%),
    linear-gradient(160deg, var(--navy-950), var(--navy-800));
  color: var(--white);
  box-shadow: 0 18px 38px rgba(6, 20, 40, 0.22);
}

html[lang="en"] .product-visual {
  min-height: 390px;
}

.product-visual::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(232, 208, 139, 0.24);
  border-radius: 4px;
  pointer-events: none;
}

.product-visual::after {
  content: "";
  position: absolute;
  top: 34px;
  right: 28px;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  border: 1px solid rgba(232, 208, 139, 0.34);
  background:
    linear-gradient(90deg, transparent 47%, rgba(232, 208, 139, 0.42) 48% 52%, transparent 53%),
    linear-gradient(0deg, transparent 47%, rgba(232, 208, 139, 0.42) 48% 52%, transparent 53%);
  opacity: 0.42;
}

.legal-visual {
  background:
    radial-gradient(circle at 24% 16%, rgba(232, 208, 139, 0.22), transparent 28%),
    linear-gradient(145deg, #071a34 0%, #0b2546 56%, #061428 100%);
}

.mortgage-visual {
  background:
    radial-gradient(circle at 18% 82%, rgba(232, 208, 139, 0.22), transparent 30%),
    radial-gradient(circle at 92% 18%, rgba(0, 65, 199, 0.24), transparent 34%),
    linear-gradient(145deg, #061428 0%, #082443 54%, #071a34 100%);
}

.visual-series,
.visual-no,
.product-feature .product-visual h3,
.product-feature .product-visual p,
.product-feature .product-visual ul {
  position: relative;
  z-index: 1;
}

.visual-series {
  align-self: start;
  justify-self: start;
  margin-bottom: 72px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.visual-no {
  color: var(--gold-300);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 66px;
  line-height: 0.9;
}

.product-feature .product-visual h3 {
  margin-top: 14px;
  color: var(--gold-300);
  font-family: Georgia, "Times New Roman", "Songti SC", "SimSun", serif;
  font-size: clamp(27px, 3vw, 40px);
  line-height: 1.15;
}

html[lang="en"] .product-feature .product-visual h3 {
  font-size: clamp(25px, 2.6vw, 34px);
}

.product-feature .product-visual p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.55;
  text-transform: uppercase;
}

.visual-divider {
  position: relative;
  z-index: 1;
  width: 52px;
  height: 1px;
  margin-top: 22px;
  background: var(--gold-500);
}

.product-feature .product-visual ul {
  display: grid;
  gap: 9px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.product-feature .product-visual li {
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
}

.product-feature .product-visual li::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--gold-500);
}

.product-feature > div:not(.product-visual) {
  display: grid;
  align-content: center;
  padding: 18px 8px 18px 0;
}

.product-no {
  color: var(--gold-600);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
}

.featured .product-no,
.featured h3 {
  color: var(--gold-300);
}

.product-feature h3 {
  margin-top: 20px;
  color: var(--navy-950);
  font-family: Georgia, "Times New Roman", "Songti SC", "SimSun", serif;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.12;
}

.product-feature.featured h3 {
  color: var(--gold-300);
}

.product-feature p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.featured p {
  color: rgba(255, 255, 255, 0.75);
}

.product-feature ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.product-feature li {
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}

.featured li {
  color: rgba(255, 255, 255, 0.86);
}

.product-feature li::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--gold-500);
  vertical-align: middle;
}

.text-link {
  justify-self: start;
  margin-top: 30px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  color: var(--gold-600);
  font-size: 14px;
  font-weight: 850;
}

.featured .text-link {
  color: var(--gold-300);
}

.news-section {
  padding-top: 96px;
  padding-bottom: 92px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(100%, var(--max));
  margin: 54px auto 0;
  overflow: hidden;
  border: 1px solid rgba(14, 35, 68, 0.08);
  border-radius: var(--radius);
  background: rgba(14, 35, 68, 0.1);
  box-shadow: 0 18px 46px rgba(16, 24, 39, 0.08);
}

.news-grid article {
  min-height: 220px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.9);
}

.news-grid span {
  color: var(--gold-600);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.news-grid h3 {
  margin-top: 18px;
  color: var(--navy-950);
  font-family: Georgia, "Times New Roman", "Songti SC", "SimSun", serif;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.16;
}

.news-grid p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.anchor-alias {
  position: absolute;
  inset: 0 auto auto 0;
}

.section-heading,
.mission-grid,
.resource-intro,
.business-copy,
.business-grid,
.services-layout,
.market-layout,
.roadmap,
.partner-section {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.section-heading {
  text-align: center;
}

.section-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-bottom: 2px solid var(--gold-500);
  color: var(--gold-600);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  font-weight: 800;
}

.section-heading h2,
.resource-intro h2,
.business-copy h2,
.partner-copy h2,
.mission-copy h2 {
  color: var(--navy-950);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.14;
  text-wrap: balance;
}

.section-heading p,
.resource-intro p,
.business-copy p,
.partner-copy p,
.mission-copy p {
  width: min(760px, 100%);
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.85;
}

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

.invert p {
  opacity: 0.72;
}

.market-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px) minmax(0, 1fr);
  gap: 38px;
  align-items: center;
  margin-top: 64px;
}

.pain-rail,
.strategy-path {
  display: grid;
  gap: 22px;
}

.pain-rail article {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.pain-rail h3,
.strategy-path h3,
.founder-matrix strong,
.monetization h3,
.roadmap h3,
.service-pillars h3 {
  color: var(--navy-950);
  font-size: 20px;
  line-height: 1.25;
}

.pain-rail p,
.strategy-path p,
.founder-matrix span,
.monetization p,
.roadmap p,
.service-pillars li,
.service-pillars p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.72;
}

.icon {
  display: block;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(201, 162, 77, 0.55);
  border-radius: 50%;
  background:
    linear-gradient(var(--navy-900), var(--navy-900)) padding-box,
    linear-gradient(135deg, var(--gold-300), var(--gold-600)) border-box;
  position: relative;
}

.icon::before,
.icon::after {
  content: "";
  position: absolute;
  background: var(--gold-300);
}

.icon-link::before {
  width: 24px;
  height: 10px;
  left: 13px;
  top: 20px;
  border: 2px solid var(--gold-300);
  border-radius: 10px;
  background: transparent;
  transform: rotate(-24deg);
}

.icon-link::after {
  width: 24px;
  height: 10px;
  left: 13px;
  top: 20px;
  border: 2px solid var(--gold-300);
  border-radius: 10px;
  background: transparent;
  transform: rotate(24deg);
}

.icon-compass::before {
  inset: 12px;
  clip-path: polygon(50% 0, 63% 37%, 100% 50%, 63% 63%, 50% 100%, 37% 63%, 0 50%, 37% 37%);
}

.icon-forum::before {
  left: 12px;
  top: 14px;
  width: 25px;
  height: 17px;
  border: 2px solid var(--gold-300);
  border-radius: 4px;
  background: transparent;
}

.icon-forum::after {
  left: 17px;
  top: 31px;
  width: 10px;
  height: 8px;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.market-image {
  margin: 0;
  padding: 10px;
  border: 1px solid rgba(14, 35, 68, 0.08);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 40px rgba(16, 24, 39, 0.12);
}

.market-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 5px;
}

.market-image figcaption {
  padding: 16px 10px 6px;
  color: var(--navy-950);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.4;
  text-align: center;
}

.strategy-path {
  position: relative;
}

.strategy-path::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 24px;
  bottom: 24px;
  width: 1px;
  background: linear-gradient(var(--gold-300), var(--gold-600));
}

.strategy-path article {
  position: relative;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  column-gap: 18px;
}

.strategy-path h3,
.strategy-path p {
  grid-column: 2;
}

.strategy-path span {
  grid-row: 1 / span 2;
}

.strategy-path span {
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--gold-500);
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--gold-300);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 800;
}

.mission-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1fr);
  gap: 64px;
  align-items: center;
}

.mission-copy p {
  margin-left: 0;
}

.founder-matrix {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--line);
  box-shadow: 0 16px 44px rgba(16, 24, 39, 0.08);
}

.founder-matrix article {
  min-height: 164px;
  padding: 26px;
  background: var(--white);
}

.founder-matrix article:nth-child(1),
.founder-matrix article:nth-child(4) {
  background:
    linear-gradient(135deg, rgba(0, 65, 199, 0.08), rgba(201, 162, 77, 0.1)),
    var(--white);
}

.services-section {
  padding-top: 112px;
  padding-bottom: 112px;
  background:
    linear-gradient(180deg, rgba(6, 20, 40, 0.9), rgba(6, 20, 40, 0.97)),
    var(--navy-950);
}

.services-section::before,
.roadmap-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0 13%, rgba(201, 162, 77, 0.08) 13% 13.1%, transparent 13.1% 100%),
    linear-gradient(90deg, transparent 0 58%, rgba(13, 133, 216, 0.12) 58% 58.1%, transparent 58.1% 100%);
}

.services-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
  gap: 38px;
  align-items: stretch;
  margin-top: 64px;
}

.service-pillars {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(232, 208, 139, 0.22);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(232, 208, 139, 0.2);
}

.service-pillars article {
  min-height: 360px;
  padding: 28px 24px;
  background: rgba(7, 26, 52, 0.78);
}

.service-pillars h3 {
  margin-top: 22px;
  color: var(--gold-300);
}

.service-pillars p {
  color: rgba(255, 255, 255, 0.68);
}

.service-pillars ul {
  display: grid;
  gap: 8px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.service-pillars li {
  color: rgba(255, 255, 255, 0.82);
}

.service-pillars li::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--gold-500);
  vertical-align: middle;
}

.service-icon {
  display: block;
  width: 58px;
  height: 58px;
  color: var(--gold-300);
  background-color: currentColor;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.scales {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M31 10h2v40h12v4H19v-4h12V10zM12 22h40v4H12v-4zM20 24l-9 17h18l-9-17zm24 0l-9 17h18l-9-17zM10 43h20c-2 5-18 5-20 0zm24 0h20c-2 5-18 5-20 0z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M31 10h2v40h12v4H19v-4h12V10zM12 22h40v4H12v-4zM20 24l-9 17h18l-9-17zm24 0l-9 17h18l-9-17zM10 43h20c-2 5-18 5-20 0zm24 0h20c-2 5-18 5-20 0z'/%3E%3C/svg%3E");
}

.search {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M28 12a16 16 0 1011.3 27.3L51 51l4-4-11.7-11.7A16 16 0 0028 12zm0 6a10 10 0 110 20 10 10 0 010-20z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M28 12a16 16 0 1011.3 27.3L51 51l4-4-11.7-11.7A16 16 0 0028 12zm0 6a10 10 0 110 20 10 10 0 010-20z'/%3E%3C/svg%3E");
}

.court {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M32 8l24 12v4H8v-4L32 8zm-18 20h6v18h-6V28zm15 0h6v18h-6V28zm15 0h6v18h-6V28zM10 50h44v6H10v-6z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M32 8l24 12v4H8v-4L32 8zm-18 20h6v18h-6V28zm15 0h6v18h-6V28zm15 0h6v18h-6V28zM10 50h44v6H10v-6z'/%3E%3C/svg%3E");
}

.shield {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M32 6l22 8v15c0 14-8 24-22 30C18 53 10 43 10 29V14l22-8zm11 20l-4-4-10 11-5-5-4 4 9 9 14-15z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M32 6l22 8v15c0 14-8 24-22 30C18 53 10 43 10 29V14l22-8zm11 20l-4-4-10 11-5-5-4 4 9 9 14-15z'/%3E%3C/svg%3E");
}

.poster-frame {
  position: relative;
  margin: 0;
  align-self: center;
  padding: 10px;
  border: 1px solid rgba(232, 208, 139, 0.3);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.24);
}

.poster-frame img {
  width: 100%;
  max-height: 540px;
  object-fit: cover;
  object-position: center top;
  border-radius: 4px;
}

.service-summary-panel {
  position: relative;
  align-self: stretch;
  display: grid;
  align-content: center;
  gap: 22px;
  margin: 0;
  padding: 34px;
  border: 1px solid rgba(232, 208, 139, 0.3);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 90% 8%, rgba(201, 162, 77, 0.22), transparent 36%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.22);
}

.service-summary-panel::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(232, 208, 139, 0.16);
  border-radius: 4px;
  pointer-events: none;
}

.service-summary-panel > * {
  position: relative;
  z-index: 1;
}

.service-summary-panel > span {
  color: var(--gold-300);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.service-summary-panel h3 {
  color: var(--white);
  font-family: Georgia, "Times New Roman", "Songti SC", "SimSun", serif;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.18;
}

.service-summary-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.8;
}

.service-summary-panel dl {
  display: grid;
  gap: 1px;
  margin: 4px 0 0;
  overflow: hidden;
  border: 1px solid rgba(232, 208, 139, 0.18);
  border-radius: 6px;
  background: rgba(232, 208, 139, 0.14);
}

.service-summary-panel dl div {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 16px;
  padding: 16px;
  background: rgba(6, 20, 40, 0.56);
}

.service-summary-panel dt {
  color: var(--gold-300);
  font-size: 15px;
  font-weight: 900;
}

.service-summary-panel dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  line-height: 1.55;
}

.mortgage-section {
  position: relative;
  overflow: hidden;
}

.mortgage-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 10%, rgba(201, 162, 77, 0.15), transparent 30%),
    radial-gradient(circle at 88% 22%, rgba(0, 65, 199, 0.1), transparent 34%);
}

.mortgage-layout,
.mortgage-directions,
.process-strip {
  position: relative;
  width: min(100%, var(--max));
  margin-inline: auto;
}

.mortgage-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 430px);
  gap: 58px;
  align-items: center;
}

.mortgage-copy h2 {
  color: var(--navy-950);
  font-family: Georgia, "Times New Roman", "Songti SC", "SimSun", serif;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.12;
  text-wrap: balance;
}

.mortgage-copy p {
  width: min(680px, 100%);
  margin-top: 20px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.9;
}

.mortgage-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.mortgage-poster {
  margin: 0;
  padding: 10px;
  border: 1px solid rgba(184, 139, 49, 0.36);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 24px 58px rgba(16, 24, 39, 0.15);
}

.mortgage-poster img {
  width: 100%;
  max-height: 640px;
  object-fit: cover;
  object-position: center top;
  border-radius: 4px;
}

.mortgage-brief {
  position: relative;
  display: grid;
  gap: 22px;
  margin: 0;
  padding: 34px;
  border: 1px solid rgba(184, 139, 49, 0.36);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 86% 14%, rgba(201, 162, 77, 0.2), transparent 32%),
    radial-gradient(circle at 12% 90%, rgba(13, 133, 216, 0.14), transparent 36%),
    linear-gradient(145deg, var(--navy-950), var(--navy-800));
  color: var(--white);
  box-shadow: 0 24px 58px rgba(16, 24, 39, 0.18);
}

.mortgage-brief::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(232, 208, 139, 0.2);
  border-radius: 4px;
  pointer-events: none;
}

.mortgage-brief > * {
  position: relative;
  z-index: 1;
}

.brief-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--gold-300);
}

.brief-topline span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 62px;
  font-weight: 800;
  line-height: 0.9;
}

.brief-topline strong {
  max-width: 110px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  line-height: 1.35;
  text-align: right;
  letter-spacing: 0.08em;
}

.mortgage-brief h3 {
  color: var(--gold-300);
  font-family: Georgia, "Times New Roman", "Songti SC", "SimSun", serif;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.15;
}

.mortgage-brief p {
  margin: -6px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.7;
  text-transform: uppercase;
}

.brief-values {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(232, 208, 139, 0.22);
  border-radius: 6px;
  background: rgba(232, 208, 139, 0.18);
}

.brief-values span {
  padding: 14px 10px;
  background: rgba(7, 26, 52, 0.62);
  color: var(--gold-300);
  font-size: 15px;
  font-weight: 900;
  text-align: center;
}

.brief-network {
  display: grid;
  gap: 12px;
}

.brief-network div {
  padding-left: 18px;
  border-left: 2px solid var(--gold-500);
}

.brief-network strong {
  display: block;
  color: var(--white);
  font-size: 15px;
  line-height: 1.35;
}

.brief-network span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  line-height: 1.35;
  text-transform: uppercase;
}

.mortgage-directions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 58px;
}

.mortgage-directions article {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 22px;
  padding: 32px;
  border: 1px solid rgba(201, 162, 77, 0.32);
  border-radius: var(--radius);
  background: var(--navy-950);
  color: var(--white);
  box-shadow: 0 18px 44px rgba(6, 20, 40, 0.13);
}

.direction-icon {
  display: block;
  width: 68px;
  height: 68px;
  color: var(--gold-300);
  background-color: currentColor;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.pagoda {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 72 72' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M36 8l25 16H11L36 8zm-18 21h36v6H18v-6zm4 10h28v18h8v6H14v-6h8V39zm7 0v18h5V39h-5zm9 0v18h5V39h-5zM24 20h24l-12-8-12 8z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 72 72' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M36 8l25 16H11L36 8zm-18 21h36v6H18v-6zm4 10h28v18h8v6H14v-6h8V39zm7 0v18h5V39h-5zm9 0v18h5V39h-5zM24 20h24l-12-8-12 8z'/%3E%3C/svg%3E");
}

.opera {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 72 72' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 52c14-24 28-34 48-38-8 12-15 23-19 38h19v6H12v-6zm10 0h13c2-9 5-17 10-25-9 5-16 13-23 25zM15 44c8-6 14-10 23-13-4 5-7 10-9 16H15v-3z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 72 72' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 52c14-24 28-34 48-38-8 12-15 23-19 38h19v6H12v-6zm10 0h13c2-9 5-17 10-25-9 5-16 13-23 25zM15 44c8-6 14-10 23-13-4 5-7 10-9 16H15v-3z'/%3E%3C/svg%3E");
}

.mortgage-directions h3 {
  color: var(--gold-300);
  font-family: Georgia, "Times New Roman", "Songti SC", "SimSun", serif;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.18;
}

.mortgage-directions p {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.5;
  text-transform: uppercase;
}

.mortgage-directions ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.mortgage-directions li {
  color: rgba(255, 255, 255, 0.84);
  font-size: 15px;
  line-height: 1.5;
}

.mortgage-directions li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--gold-500);
}

.process-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  margin-top: 28px;
  border: 1px solid rgba(14, 35, 68, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(14, 35, 68, 0.1);
  box-shadow: 0 16px 38px rgba(16, 24, 39, 0.08);
}

.process-strip div {
  min-height: 122px;
  padding: 24px 18px;
  background: var(--white);
}

.process-strip strong {
  display: block;
  color: var(--gold-600);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  line-height: 1;
}

.process-strip span {
  display: block;
  margin-top: 12px;
  color: var(--navy-950);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.5;
}

.resources-section::after {
  inset: auto 0 -1px 0;
  height: 92px;
  background: linear-gradient(180deg, transparent, rgba(201, 162, 77, 0.08));
}

.resource-intro {
  text-align: center;
}

.resource-map {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin-top: 58px;
  align-items: center;
}

.resource-map::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 50%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
}

.resource-map article {
  position: relative;
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 178px;
  padding: 26px 20px;
  border-top: 2px solid var(--gold-500);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(16, 24, 39, 0.08);
}

.resource-map article:nth-child(even) {
  margin-top: 78px;
}

.resource-map strong {
  color: var(--navy-950);
  font-size: 18px;
  line-height: 1.3;
}

.resource-map span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.resource-logo {
  place-items: center;
  text-align: center;
  z-index: 2;
  border: 1px solid var(--gold-500);
  border-top-width: 1px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.98)),
    var(--white);
}

.resource-logo img {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  object-fit: cover;
}

.media-targets {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: min(980px, 100%);
  margin: 58px auto 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--line);
}

.media-targets div {
  padding: 26px 18px;
  background: var(--paper);
  text-align: center;
}

.media-targets strong {
  display: block;
  color: var(--blue-700);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1;
}

.media-targets span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.business-section {
  padding-top: 108px;
}

.business-copy {
  text-align: center;
}

.business-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1fr);
  gap: 34px;
  margin-top: 58px;
}

.revenue-visual,
.monetization {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 44px rgba(16, 24, 39, 0.08);
}

.revenue-visual {
  padding: 30px;
}

.revenue-total {
  display: grid;
  place-items: center;
  min-height: 210px;
  margin-bottom: 26px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, var(--white) 0 48%, transparent 49%),
    conic-gradient(var(--gold-500) 0 40%, var(--blue-700) 40% 75%, var(--navy-800) 75% 100%);
  text-align: center;
}

.revenue-total span,
.revenue-total small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.revenue-total strong {
  color: var(--navy-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1;
}

.bar-row {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) 40px;
  gap: 14px;
  align-items: center;
  margin-top: 14px;
}

.bar-row span {
  color: var(--muted);
}

.bar-row div {
  height: 9px;
  border-radius: 999px;
  background: #edf1f6;
  overflow: hidden;
}

.bar-row i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold-500), var(--blue-700));
}

.bar-row strong {
  color: var(--navy-950);
  font-size: 14px;
}

.monetization {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
}

.monetization article {
  padding: 30px;
  border-left: 1px solid var(--line);
}

.monetization article:first-child {
  border-left: 0;
}

.monetization span {
  color: var(--gold-600);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 800;
}

.monetization h3 {
  margin-top: 18px;
}

.roadmap-section {
  padding-top: 108px;
  padding-bottom: 112px;
}

.roadmap {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 58px;
  border: 1px solid rgba(232, 208, 139, 0.24);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(232, 208, 139, 0.18);
}

.roadmap article {
  min-height: 260px;
  padding: 36px;
  background: rgba(7, 26, 52, 0.72);
}

.roadmap span {
  display: inline-block;
  color: var(--gold-300);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 800;
}

.roadmap h3 {
  margin-top: 22px;
  color: var(--white);
}

.roadmap p {
  color: rgba(255, 255, 255, 0.72);
}

.partner-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: 48px;
  align-items: center;
  padding: 104px 24px;
}

.partner-copy p {
  margin-left: 0;
}

.partner-image {
  margin: 0;
  border: 1px solid rgba(14, 35, 68, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.partner-image img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto 110px;
  gap: 32px;
  align-items: center;
  padding: 38px max(24px, calc((100vw - var(--max)) / 2));
  background: var(--navy-950);
  color: var(--white);
}

.footer-brand {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.footer-brand img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
}

.footer-brand strong {
  display: block;
  color: var(--gold-300);
  font-size: 18px;
  line-height: 1.3;
}

.footer-brand span {
  display: block;
  margin-top: 5px;
}

.site-footer address {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 18px;
  color: rgba(255, 255, 255, 0.82);
  font-style: normal;
  font-size: 14px;
}

.site-footer address a,
.site-footer address span {
  white-space: nowrap;
}

.footer-qr {
  width: 110px;
  height: 110px;
  object-fit: cover;
  object-position: right bottom;
  border: 1px solid rgba(232, 208, 139, 0.45);
  border-radius: 6px;
}

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

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

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

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

@media (max-width: 1050px) {
  .site-header {
    width: min(calc(100% - 28px), var(--max));
  }

  .brand small {
    display: none;
  }

  .market-layout,
  .mission-grid,
  .product-showcase,
  .services-layout,
  .mortgage-layout,
  .business-grid,
  .partner-section {
    grid-template-columns: 1fr;
  }

  .market-image {
    width: min(420px, 100%);
    justify-self: center;
  }

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

  .poster-frame,
  .service-summary-panel {
    width: min(420px, 100%);
    justify-self: center;
  }

  .product-feature {
    grid-template-columns: minmax(210px, 0.45fr) minmax(0, 1fr);
  }

  .mortgage-poster,
  .mortgage-brief {
    width: min(420px, 100%);
    justify-self: center;
  }

  .resource-map {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .resource-map::before {
    display: none;
  }

  .resource-map article,
  .resource-map article:nth-child(even) {
    min-height: auto;
    margin-top: 0;
  }

  .resource-logo {
    grid-column: 1 / -1;
    order: -1;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer address {
    justify-content: flex-start;
  }
}

@media (max-width: 820px) {
  .site-header {
    align-items: center;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    left: 14px;
    right: 14px;
    top: 82px;
    display: grid;
    gap: 4px;
    padding: 12px;
    border: 1px solid rgba(14, 35, 68, 0.12);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.98);
    color: var(--navy-950);
    box-shadow: 0 18px 50px rgba(16, 24, 39, 0.14);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 160ms ease,
      transform 160ms ease;
  }

  .nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero,
  .hero-inner {
    min-height: 700px;
  }

  .hero-inner {
    gap: 44px;
    padding-top: 104px;
  }

  .hero-bg {
    background-position: 58% center;
  }

  .hero-proof,
  .trust-facts,
  .news-grid,
  .media-targets,
  .mortgage-directions,
  .process-strip,
  .roadmap,
  .monetization {
    grid-template-columns: 1fr;
  }

  .trust-band {
    grid-template-columns: 1fr;
    width: min(calc(100% - 28px), var(--max));
    margin-top: 0;
    padding: 28px;
  }

  .certificate {
    justify-self: start;
    transform: none;
  }

  .section {
    padding: 78px 18px;
  }

  .founder-matrix,
  .service-pillars {
    grid-template-columns: 1fr;
  }

  .service-pillars article {
    min-height: auto;
  }

  .product-feature {
    min-height: auto;
  }

  .product-visual {
    min-height: 420px;
  }

  .mortgage-directions article {
    grid-template-columns: 60px minmax(0, 1fr);
    padding: 26px;
  }

  .direction-icon {
    width: 58px;
    height: 58px;
  }

  .monetization article {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .monetization article:first-child {
    border-top: 0;
  }

  .roadmap article {
    min-height: auto;
  }

  .partner-section {
    padding: 78px 18px;
  }
}

@media (max-width: 560px) {
  .site-header {
    width: calc(100% - 20px);
    margin-top: 10px;
    padding: 10px;
  }

  .brand {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 10px;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  .brand strong {
    font-size: 13px;
    white-space: normal;
  }

  .hero {
    padding: 0 18px;
  }

  .hero h1 {
    font-size: clamp(40px, 13vw, 58px);
  }

  .hero-actions,
  .partner-actions,
  .mortgage-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .product-feature {
    grid-template-columns: 1fr;
  }

  html[lang="en"] .product-feature {
    grid-template-columns: 1fr;
  }

  .product-feature > div:not(.product-visual) {
    padding: 8px 2px 4px;
  }

  .product-visual {
    min-height: 360px;
    padding: 24px;
  }

  .product-visual::after {
    width: 86px;
    height: 86px;
  }

  .visual-series {
    margin-bottom: 52px;
  }

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

  .service-summary-panel,
  .mortgage-brief {
    padding: 28px;
  }

  .service-summary-panel dl div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .mortgage-directions article {
    grid-template-columns: 1fr;
  }

  .hero-proof div {
    padding: 17px 18px;
  }

  .trust-band {
    padding: 24px;
  }

  .trust-copy h2,
  .section-heading h2,
  .resource-intro h2,
  .business-copy h2,
  .partner-copy h2,
  .mission-copy h2 {
    font-size: clamp(30px, 11vw, 42px);
  }

  .market-layout {
    gap: 28px;
  }

  .pain-rail article,
  .strategy-path article {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .icon,
  .strategy-path span {
    width: 42px;
    height: 42px;
  }

  .strategy-path::before {
    left: 20px;
  }

  .resource-map {
    grid-template-columns: 1fr;
  }

  .bar-row {
    grid-template-columns: 1fr 54px;
  }

  .bar-row span {
    grid-column: 1 / -1;
  }

  .site-footer {
    padding: 32px 18px;
  }
}

/* Holodata-inspired redesign layer */
:root {
  --holo-bg: #050505;
  --holo-bg-soft: #090909;
  --holo-card: rgba(255, 255, 255, 0.025);
  --holo-card-strong: rgba(255, 255, 255, 0.045);
  --holo-ink: #f7f7f7;
  --holo-muted: #a8a8a8;
  --holo-faint: #6f6f6f;
  --holo-line: rgba(255, 255, 255, 0.1);
  --holo-line-soft: rgba(255, 255, 255, 0.065);
  --holo-gold: #c9a16a;
  --holo-gold-soft: rgba(201, 161, 106, 0.14);
  --holo-max: 1152px;
  --holo-wide: 1280px;
  --radius: 8px;
}

html {
  background: var(--holo-bg);
  color-scheme: dark;
  scroll-padding-top: 92px;
  overflow-x: hidden;
}

body {
  position: relative;
  overflow-x: hidden;
  background: var(--holo-bg);
  color: var(--holo-ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.5;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    radial-gradient(1px 1px at 12% 18%, rgba(255, 255, 255, 0.42) 50%, transparent),
    radial-gradient(1px 1px at 31% 42%, rgba(255, 255, 255, 0.26) 50%, transparent),
    radial-gradient(1px 1px at 66% 24%, rgba(255, 255, 255, 0.36) 50%, transparent),
    radial-gradient(1px 1px at 84% 63%, rgba(255, 255, 255, 0.22) 50%, transparent),
    radial-gradient(1px 1px at 43% 78%, rgba(201, 161, 106, 0.28) 50%, transparent),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 18%, transparent 78%, rgba(255, 255, 255, 0.025));
  background-size: 420px 420px, 520px 520px, 620px 620px, 540px 540px, 700px 700px, 100% 100%;
  opacity: 0.48;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.018), transparent 18%, transparent 82%, rgba(255, 255, 255, 0.018)),
    linear-gradient(180deg, rgba(5, 5, 5, 0.06), rgba(5, 5, 5, 0.72) 46%, rgba(5, 5, 5, 0.92));
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-header {
  inset: 0 0 auto 0;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 22px 34px;
  gap: 16px;
  border: 0;
  border-bottom: 1px solid transparent;
  border-radius: 0;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.76), rgba(5, 5, 5, 0.18));
  color: var(--holo-ink);
  box-shadow: none;
  backdrop-filter: blur(14px);
}

.site-header.is-scrolled {
  margin-top: 0;
  background: rgba(5, 5, 5, 0.78);
  color: var(--holo-ink);
  border-color: var(--holo-line-soft);
  box-shadow: none;
}

.brand {
  grid-template-columns: 30px minmax(0, auto);
  gap: 12px;
}

.brand img {
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 50%;
  filter: grayscale(1) contrast(1.12) brightness(1.25);
  opacity: 0.96;
}

.brand strong {
  color: var(--holo-ink);
  font-size: 12px;
  font-weight: 650;
  line-height: 1;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.brand small {
  display: none;
}

.site-nav {
  gap: 22px;
  font-size: 11px;
  font-weight: 520;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.site-nav a {
  padding: 7px 0;
  border-radius: 0;
  color: var(--holo-muted);
  opacity: 1;
}

.site-nav a:hover,
.site-header.is-scrolled .site-nav a:hover {
  background: transparent;
  color: var(--holo-ink);
}

.language-switch {
  gap: 0;
  padding: 2px;
  border-color: var(--holo-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
}

.language-switch button {
  min-width: 38px;
  height: 28px;
  border-radius: 999px;
  color: var(--holo-muted);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.18em;
}

.language-switch button.is-active {
  background: var(--holo-ink);
  color: var(--holo-bg);
}

.nav-toggle {
  width: 42px;
  height: 42px;
  border-color: var(--holo-line);
  border-radius: 999px;
  color: var(--holo-ink);
}

.nav-toggle span {
  height: 1px;
}

.section,
.section-white,
.section-soft,
.section-dark {
  background: transparent;
  color: var(--holo-ink);
}

.section {
  padding: clamp(92px, 12vw, 164px) 24px;
  border-top: 1px solid var(--holo-line-soft);
}

.hero {
  display: flex;
  align-items: center;
  min-height: 100svh;
  padding: 120px 24px 92px;
  background: transparent;
  border-bottom: 1px solid var(--holo-line-soft);
  color: var(--holo-ink);
}

.hero-bg {
  inset: 0;
  opacity: 1;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 28%),
    radial-gradient(ellipse at 50% 34%, rgba(255, 255, 255, 0.075), transparent 36%),
    linear-gradient(180deg, transparent, rgba(5, 5, 5, 0.76) 82%);
}

.hero-bg::before,
.hero-bg::after {
  display: none;
}

.hero-inner {
  width: min(100%, var(--holo-wide));
  min-height: calc(100svh - 212px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 4vw, 46px);
  text-align: center;
}

.hero-copy {
  max-width: 1060px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(116px, 12vw, 168px);
  height: clamp(116px, 12vw, 168px);
  margin-bottom: clamp(42px, 6vw, 70px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.02);
  box-shadow: 0 0 72px rgba(255, 255, 255, 0.1);
}

.hero-mark img {
  width: 74%;
  height: 74%;
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.06) brightness(1.12);
}

.hero h1 {
  max-width: 1040px;
  margin: 0;
  color: var(--holo-ink);
  font-family: inherit;
  font-size: clamp(40px, 5.7vw, 70px);
  font-weight: 620;
  line-height: 1.04;
  letter-spacing: 0.085em;
  text-transform: uppercase;
}

html[lang="en"] .hero h1 {
  max-width: 1120px;
  font-size: clamp(38px, 5vw, 64px);
  letter-spacing: 0.045em;
}

.hero-en {
  margin: 24px 0 0;
  color: var(--holo-muted);
  font-size: clamp(12px, 1.4vw, 16px);
  font-weight: 400;
  letter-spacing: 0.42em;
  text-transform: uppercase;
}

.hero-lede {
  max-width: 780px;
  margin: 26px auto 0;
  color: var(--holo-muted);
  font-size: clamp(16px, 1.7vw, 22px);
  line-height: 1.85;
}

.hero-actions,
.partner-actions,
.mortgage-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  width: auto;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--holo-line);
  border-radius: var(--radius);
  background: transparent;
  color: var(--holo-ink);
  font-size: 12px;
  font-weight: 680;
  letter-spacing: 0.2em;
  line-height: 1.2;
  text-transform: uppercase;
  box-shadow: none;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.045);
  color: var(--holo-ink);
}

.btn-primary {
  border-color: rgba(255, 255, 255, 0.86);
  background: var(--holo-ink);
  color: var(--holo-bg);
}

.btn-primary:hover {
  background: var(--holo-gold);
  border-color: var(--holo-gold);
  color: var(--holo-bg);
}

.btn-secondary,
.btn-outline {
  border-color: rgba(201, 161, 106, 0.42);
  color: var(--holo-ink);
}

.hero-proof {
  width: min(100%, 1040px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--holo-line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.018);
  box-shadow: none;
}

.hero-proof div {
  padding: 28px 32px;
  border-right: 1px solid var(--holo-line);
  background: transparent;
}

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

.hero-proof span,
.section-index,
.visual-series,
.product-no,
.brief-topline,
.service-summary-panel > span,
.strategy-path span,
.roadmap span,
.news-grid article > span,
.monetization span,
.process-strip strong {
  color: var(--holo-muted);
  font-family:
    ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
    monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.hero-proof strong {
  display: block;
  margin-top: 12px;
  color: var(--holo-ink);
  font-size: clamp(17px, 1.8vw, 24px);
  font-weight: 560;
  letter-spacing: 0.08em;
}

.trust-band {
  width: min(calc(100% - 48px), var(--holo-wide));
  margin: 0 auto;
  padding: clamp(72px, 10vw, 132px) 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  align-items: center;
  gap: clamp(46px, 8vw, 112px);
  border: 0;
  background: transparent;
  color: var(--holo-ink);
  box-shadow: none;
}

.trust-copy {
  max-width: 720px;
}

.trust-copy h2,
.section-heading h2,
.resource-intro h2,
.business-copy h2,
.partner-copy h2,
.mission-copy h2,
.mortgage-copy h2 {
  margin: 16px 0 0;
  color: var(--holo-ink);
  font-family: inherit;
  font-size: clamp(38px, 6.2vw, 78px);
  font-weight: 620;
  line-height: 1.05;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

html[lang="en"] .trust-copy h2,
html[lang="en"] .section-heading h2,
html[lang="en"] .resource-intro h2,
html[lang="en"] .business-copy h2,
html[lang="en"] .partner-copy h2,
html[lang="en"] .mission-copy h2,
html[lang="en"] .mortgage-copy h2 {
  letter-spacing: 0.1em;
}

.trust-copy p,
.section-heading p,
.resource-intro p,
.business-copy p,
.partner-copy p,
.mission-copy p,
.mortgage-copy p,
.product-feature p,
.pain-rail p,
.strategy-path p,
.service-pillars p,
.service-summary-panel p,
.mortgage-brief p,
.mortgage-directions p,
.monetization p,
.roadmap p,
.news-grid p,
.resource-map span,
.founder-matrix span,
.media-targets span,
.brief-network span,
.bar-row span,
.partner-section p {
  color: var(--holo-muted);
  line-height: 1.74;
}

.trust-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 38px;
}

.trust-facts div {
  padding: 22px 24px;
  border: 1px solid var(--holo-line);
  border-radius: var(--radius);
  background: var(--holo-card);
}

.trust-facts dt {
  color: var(--holo-muted);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.trust-facts dd {
  margin-top: 11px;
  color: var(--holo-ink);
  font-size: clamp(22px, 2.4vw, 32px);
  letter-spacing: 0.03em;
}

.certificate {
  padding: 18px;
  border: 1px solid var(--holo-line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: none;
}

.certificate::before,
.certificate::after {
  display: none;
}

.certificate img {
  max-height: 520px;
  border-radius: calc(var(--radius) - 2px);
  object-fit: contain;
  background: #fff;
}

.section-heading,
.resource-intro,
.business-copy {
  width: min(100%, var(--holo-max));
  margin: 0 auto clamp(48px, 7vw, 86px);
  text-align: left;
}

.section-heading p,
.resource-intro p,
.business-copy p {
  max-width: 720px;
  margin-top: 24px;
  font-size: clamp(16px, 1.6vw, 20px);
}

.section-heading.invert p {
  color: var(--holo-muted);
}

.news-grid,
.product-showcase,
.market-layout,
.mission-grid,
.services-layout,
.mortgage-layout,
.mortgage-directions,
.process-strip,
.resource-map,
.media-targets,
.business-grid,
.roadmap {
  width: min(100%, var(--holo-max));
  margin-left: auto;
  margin-right: auto;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--holo-line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.012);
}

.news-grid article {
  padding: clamp(28px, 4vw, 44px);
  border-right: 1px solid var(--holo-line);
  background: transparent;
  box-shadow: none;
}

.news-grid article:last-child {
  border-right: 0;
}

.news-grid h3,
.product-feature h3,
.pain-rail h3,
.strategy-path h3,
.founder-matrix strong,
.service-pillars h3,
.service-summary-panel h3,
.mortgage-brief h3,
.mortgage-directions h3,
.resource-map strong,
.monetization h3,
.roadmap h3 {
  margin: 20px 0 0;
  color: var(--holo-ink);
  font-family: inherit;
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.news-grid p,
.product-feature p,
.pain-rail p,
.strategy-path p,
.service-pillars p,
.mortgage-directions p,
.monetization p,
.roadmap p {
  margin-top: 18px;
}

.product-showcase {
  display: grid;
  gap: 22px;
}

.product-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
  gap: 0;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--holo-line);
  border-radius: var(--radius);
  background: var(--holo-card);
  box-shadow: none;
}

html[lang="en"] .product-feature {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
}

.product-feature.featured {
  background: linear-gradient(135deg, rgba(201, 161, 106, 0.075), rgba(255, 255, 255, 0.018) 40%, transparent);
}

.product-feature > div:not(.product-visual) {
  padding: clamp(34px, 5vw, 58px);
}

.product-feature ul,
.product-visual ul,
.service-pillars ul,
.mortgage-directions ul {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.product-feature li,
.product-visual li,
.service-pillars li,
.mortgage-directions li {
  position: relative;
  padding-left: 22px;
  color: var(--holo-muted);
}

.product-feature li::before,
.product-visual li::before,
.service-pillars li::before,
.mortgage-directions li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 1px;
  background: var(--holo-gold);
}

.product-visual {
  min-height: 100%;
  padding: clamp(34px, 5vw, 58px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 0;
  border-right: 1px solid var(--holo-line);
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
    transparent;
  color: var(--holo-ink);
  box-shadow: none;
}

.product-visual::before,
.product-visual::after {
  display: none;
}

.visual-no {
  margin-top: 18px;
  color: var(--holo-gold);
  font-size: clamp(60px, 9vw, 128px);
  line-height: 0.9;
  letter-spacing: 0.02em;
}

.product-visual h3 {
  margin-top: 36px;
}

.visual-divider {
  width: 72px;
  height: 1px;
  margin: 30px 0 0;
  background: rgba(201, 161, 106, 0.58);
}

.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 32px;
  color: var(--holo-ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.text-link::after {
  content: ">";
  margin-left: 12px;
  color: var(--holo-gold);
}

.market-layout {
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.95fr) minmax(0, 0.85fr);
  gap: 22px;
  align-items: stretch;
}

.pain-rail,
.strategy-path,
.founder-matrix,
.service-pillars,
.monetization,
.roadmap {
  display: grid;
  gap: 16px;
}

.pain-rail article,
.strategy-path article,
.founder-matrix article,
.service-pillars article,
.mortgage-directions article,
.monetization article,
.roadmap article,
.revenue-visual,
.service-summary-panel,
.mortgage-brief,
.resource-map article {
  border: 1px solid var(--holo-line);
  border-radius: var(--radius);
  background: var(--holo-card);
  box-shadow: none;
}

.pain-rail article {
  grid-template-columns: 44px minmax(0, 1fr);
  padding: 28px;
}

.icon,
.service-icon,
.direction-icon {
  width: 42px;
  height: 42px;
  border-color: var(--holo-line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.025);
  color: var(--holo-gold);
}

.icon::before,
.icon::after,
.service-icon::before,
.service-icon::after,
.direction-icon::before,
.direction-icon::after {
  background: currentColor;
  border-color: currentColor;
}

.market-image {
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--holo-line);
  border-radius: var(--radius);
  box-shadow: none;
}

.market-image img {
  height: 100%;
  filter: grayscale(1) contrast(1.05) brightness(0.72);
}

.market-image figcaption {
  inset: auto 18px 18px 18px;
  width: auto;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(5, 5, 5, 0.68);
  color: var(--holo-ink);
  backdrop-filter: blur(14px);
}

.strategy-path {
  padding-left: 0;
}

.strategy-path::before {
  display: none;
}

.strategy-path article {
  padding: 28px;
}

.strategy-path span {
  width: auto;
  height: auto;
  border: 0;
  background: transparent;
}

.mission-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 7vw, 90px);
  align-items: start;
}

.mission-copy p {
  margin-top: 28px;
  font-size: clamp(17px, 1.7vw, 21px);
}

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

.founder-matrix article {
  padding: 32px;
}

.founder-matrix strong {
  display: block;
  margin: 0;
  font-size: clamp(18px, 1.8vw, 24px);
}

.founder-matrix span {
  display: block;
  margin-top: 16px;
}

.services-layout {
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 22px;
  align-items: stretch;
}

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

.service-pillars article {
  padding: clamp(28px, 4vw, 42px);
}

.service-icon {
  display: inline-flex;
}

.service-summary-panel {
  padding: clamp(30px, 4vw, 44px);
  position: sticky;
  top: 104px;
}

.service-summary-panel dl {
  margin-top: 28px;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--holo-line);
}

.service-summary-panel dl div {
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--holo-line-soft);
}

.service-summary-panel dt {
  color: var(--holo-ink);
}

.service-summary-panel dd {
  color: var(--holo-muted);
}

.mortgage-layout {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.mortgage-brief {
  padding: clamp(34px, 5vw, 58px);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(201, 161, 106, 0.1), rgba(255, 255, 255, 0.02) 52%, transparent),
    var(--holo-card);
}

.mortgage-brief::before,
.mortgage-brief::after {
  display: none;
}

.brief-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brief-values {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 30px;
}

.brief-values span {
  padding: 12px 10px;
  border: 1px solid rgba(201, 161, 106, 0.28);
  border-radius: var(--radius);
  color: var(--holo-gold);
  text-align: center;
  letter-spacing: 0.18em;
}

.brief-network {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin-top: 30px;
  border: 1px solid var(--holo-line);
  border-radius: var(--radius);
  overflow: hidden;
}

.brief-network div {
  padding: 20px;
  border-right: 1px solid var(--holo-line);
  border-bottom: 1px solid var(--holo-line);
}

.brief-network div:nth-child(2n) {
  border-right: 0;
}

.brief-network div:nth-last-child(-n + 1) {
  border-bottom: 0;
}

.brief-network strong {
  display: block;
  color: var(--holo-ink);
}

.brief-network span {
  display: block;
  margin-top: 8px;
  font-size: 12px;
}

.mortgage-directions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 56px;
}

.mortgage-directions article {
  grid-template-columns: 54px minmax(0, 1fr);
  padding: clamp(30px, 4vw, 44px);
}

.process-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin-top: 22px;
  overflow: hidden;
  border: 1px solid var(--holo-line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.012);
}

.process-strip div {
  padding: 24px;
  border-right: 1px solid var(--holo-line);
}

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

.process-strip span {
  display: block;
  margin-top: 12px;
  color: var(--holo-ink);
  line-height: 1.55;
}

.resource-map {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--holo-line);
  border-radius: var(--radius);
}

.resource-map article {
  min-height: 220px;
  padding: 28px;
  border: 0;
  border-right: 1px solid var(--holo-line);
  border-radius: 0;
  background: transparent;
}

.resource-map article:last-child {
  border-right: 0;
}

.resource-map .resource-logo {
  background: rgba(255, 255, 255, 0.045);
}

.resource-logo img {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  filter: grayscale(1) contrast(1.08) brightness(1.12);
}

.media-targets {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 22px;
  overflow: hidden;
  border: 1px solid var(--holo-line);
  border-radius: var(--radius);
}

.media-targets div {
  padding: 30px 24px;
  border-right: 1px solid var(--holo-line);
  background: rgba(255, 255, 255, 0.012);
}

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

.media-targets strong {
  color: var(--holo-ink);
  font-size: clamp(30px, 4.4vw, 52px);
  font-weight: 620;
  letter-spacing: 0.04em;
}

.business-grid {
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
  gap: 22px;
}

.revenue-visual {
  padding: clamp(30px, 4vw, 44px);
  background:
    linear-gradient(135deg, rgba(201, 161, 106, 0.1), transparent 46%),
    var(--holo-card);
}

.revenue-total {
  padding-bottom: 28px;
  border-bottom: 1px solid var(--holo-line);
}

.revenue-total span,
.revenue-total small {
  color: var(--holo-muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.revenue-total strong {
  color: var(--holo-ink);
  font-size: clamp(42px, 5vw, 68px);
}

.bar-row {
  grid-template-columns: 170px minmax(0, 1fr) 54px;
  gap: 16px;
  margin-top: 24px;
}

.bar-row div {
  background: rgba(255, 255, 255, 0.08);
}

.bar-row i {
  background: var(--holo-gold);
}

.bar-row strong {
  color: var(--holo-ink);
}

.monetization {
  gap: 16px;
}

.monetization article,
.roadmap article {
  padding: clamp(28px, 4vw, 42px);
}

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

.partner-section {
  width: min(calc(100% - 48px), var(--holo-wide));
  margin: 0 auto;
  padding: clamp(90px, 12vw, 156px) 0;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.75fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: center;
  background: transparent;
  color: var(--holo-ink);
}

.partner-copy {
  max-width: 760px;
}

.trust-band > *,
.partner-section > *,
.mission-grid > *,
.business-grid > *,
.mortgage-layout > *,
.services-layout > *,
.market-layout > * {
  min-width: 0;
}

.partner-image {
  overflow: hidden;
  border: 1px solid var(--holo-line);
  border-radius: var(--radius);
  box-shadow: none;
}

.partner-image img {
  filter: grayscale(1) contrast(1.04) brightness(0.72);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 24px;
  align-items: center;
  padding: 26px 34px;
  border-top: 1px solid var(--holo-line-soft);
  background: rgba(5, 5, 5, 0.82);
  color: var(--holo-muted);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  filter: grayscale(1) contrast(1.08) brightness(1.12);
}

.footer-brand strong,
.footer-brand span,
.site-footer address a,
.site-footer address span {
  color: var(--holo-muted);
  font-size: 11px;
  font-style: normal;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-footer address {
  display: flex;
  gap: 22px;
  align-items: center;
}

.site-footer address a:hover {
  color: var(--holo-ink);
}

.footer-qr {
  width: 76px;
  height: 76px;
  padding: 6px;
  border: 1px solid var(--holo-line);
  border-radius: var(--radius);
  background: #fff;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 700ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

@media (hover: hover) {
  .news-grid article,
  .product-feature,
  .pain-rail article,
  .strategy-path article,
  .founder-matrix article,
  .service-pillars article,
  .mortgage-directions article,
  .resource-map article,
  .monetization article,
  .roadmap article {
    transition:
      border-color 180ms ease,
      background 180ms ease,
      transform 180ms ease;
  }

  .news-grid article:hover,
  .product-feature:hover,
  .pain-rail article:hover,
  .strategy-path article:hover,
  .founder-matrix article:hover,
  .service-pillars article:hover,
  .mortgage-directions article:hover,
  .resource-map article:hover,
  .monetization article:hover,
  .roadmap article:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.18);
    background: var(--holo-card-strong);
  }
}

@media (min-width: 861px) {
  .hero {
    align-items: flex-start;
    padding-top: 92px;
    padding-bottom: 52px;
  }

  .hero-inner {
    min-height: auto;
    justify-content: flex-start;
    padding-top: clamp(32px, 6vh, 72px);
    padding-bottom: 0;
  }
}

@media (max-width: 1180px) {
  .site-header {
    padding: 18px 22px;
  }

  .site-nav {
    gap: 14px;
    letter-spacing: 0.16em;
  }

  .trust-band,
  .partner-section {
    width: min(calc(100% - 36px), var(--holo-wide));
  }

  .market-layout,
  .services-layout,
  .mortgage-layout,
  .business-grid {
    grid-template-columns: 1fr;
  }

  .market-image {
    min-height: 420px;
  }

  .service-summary-panel {
    position: static;
  }

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

  .resource-map article:nth-child(3n) {
    border-right: 0;
  }
}

@media (max-width: 860px) {
  html {
    scroll-padding-top: 78px;
  }

  .site-header {
    padding: 14px 16px;
    gap: 10px;
  }

  .brand {
    grid-template-columns: 26px minmax(0, auto);
  }

  .brand img {
    width: 26px;
    height: 26px;
  }

  .brand strong {
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 10px;
    letter-spacing: 0.2em;
  }

  .site-nav {
    position: fixed;
    inset: 64px 12px auto 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--holo-line);
    border-radius: var(--radius);
    background: rgba(5, 5, 5, 0.94);
    backdrop-filter: blur(18px);
  }

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

  .site-nav a {
    padding: 16px;
    border-bottom: 1px solid var(--holo-line-soft);
  }

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

  .language-switch {
    margin-left: auto;
  }

  .nav-toggle {
    display: inline-block;
  }

  .hero {
    padding: 92px 18px 60px;
  }

  .hero-inner {
    min-height: calc(100svh - 152px);
    gap: 38px;
  }

  .hero h1,
  html[lang="en"] .hero h1 {
    font-size: clamp(34px, 10vw, 50px);
    letter-spacing: 0.045em;
  }

  .hero-en {
    letter-spacing: 0.22em;
  }

  .hero-actions,
  .partner-actions,
  .mortgage-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

  .hero-proof,
  .news-grid,
  .trust-facts,
  .product-feature,
  html[lang="en"] .product-feature,
  .mission-grid,
  .founder-matrix,
  .service-pillars,
  .mortgage-directions,
  .process-strip,
  .media-targets,
  .roadmap,
  .partner-section,
  .trust-band {
    grid-template-columns: 1fr;
  }

  .hero-proof div,
  .news-grid article,
  .product-visual,
  .resource-map article,
  .media-targets div,
  .process-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--holo-line);
  }

  .hero-proof div:last-child,
  .news-grid article:last-child,
  .resource-map article:last-child,
  .media-targets div:last-child,
  .process-strip div:last-child {
    border-bottom: 0;
  }

  .trust-band {
    padding: 76px 0;
  }

  .trust-copy h2,
  .section-heading h2,
  .resource-intro h2,
  .business-copy h2,
  .partner-copy h2,
  .mission-copy h2,
  .mortgage-copy h2 {
    font-size: clamp(34px, 12vw, 56px);
    letter-spacing: 0.08em;
  }

  .product-feature > div:not(.product-visual),
  .product-visual {
    padding: 30px;
  }

  .market-image {
    min-height: 320px;
  }

  .resource-map {
    grid-template-columns: 1fr;
  }

  .brief-values,
  .brief-network {
    grid-template-columns: 1fr;
  }

  .brief-network div,
  .brief-network div:nth-child(2n) {
    border-right: 0;
  }

  .brief-network div:last-child {
    border-bottom: 0;
  }

  .bar-row {
    grid-template-columns: 1fr 52px;
  }

  .bar-row span {
    grid-column: 1 / -1;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 26px 18px 34px;
  }

  .site-footer address {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 78px 18px;
  }

  .hero-mark {
    width: 104px;
    height: 104px;
    margin-bottom: 34px;
  }

  .hero-lede {
    font-size: 15px;
  }

  .hero-proof strong,
  .news-grid h3,
  .product-feature h3,
  .pain-rail h3,
  .strategy-path h3,
  .service-pillars h3,
  .service-summary-panel h3,
  .mortgage-brief h3,
  .mortgage-directions h3,
  .resource-map strong,
  .monetization h3,
  .roadmap h3 {
    letter-spacing: 0.08em;
  }

  .trust-band,
  .partner-section {
    width: min(calc(100% - 32px), var(--holo-wide));
  }

  .trust-copy,
  .partner-copy,
  .partner-image,
  .mission-copy,
  .founder-matrix {
    width: 100%;
    max-width: 100%;
  }
}
