: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);
}

.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;
}

.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);
}

.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-feature figure {
  margin: 0;
  border-radius: 6px;
  overflow: hidden;
  background: var(--navy-950);
  box-shadow: 0 18px 38px rgba(6, 20, 40, 0.22);
}

.product-feature img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  object-position: center top;
}

.product-feature > div {
  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 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);
}

.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;
}

.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-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 {
    width: min(420px, 100%);
    justify-self: center;
  }

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

  .mortgage-poster {
    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,
  .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-feature img {
    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;
  }

  .product-feature > div {
    padding: 8px 2px 4px;
  }

  .product-feature img {
    max-height: 520px;
    min-height: 0;
  }

  .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;
  }
}
