@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Libre+Franklin:wght@400;600;700&family=Newsreader:opsz,wght@6..72,400;6..72,500;6..72,600&display=swap");
:root {
  --paper: #f4f0e6;
  --paper-2: #ebe5d7;
  --surface: #fffdf8;
  --ink: #151711;
  --muted: #696a63;
  --line: #c9c3b7;
  --green: #13735e;
  --green-2: #075344;
  --lime: #d9f76f;
  --red: #df4c3e;
  --sidebar: 244px;
  --serif: "Newsreader", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
  --mono: "Libre Franklin", Arial, sans-serif;
}
html:lang(ru) {
  --serif: "Newsreader", Georgia, "Times New Roman", serif;
}
html:lang(ko) {
  --serif: "Apple SD Gothic Neo", "Noto Serif CJK KR", serif;
  --sans: "Apple SD Gothic Neo", "Noto Sans CJK KR", Arial, sans-serif;
  --mono: "Apple SD Gothic Neo", "Noto Sans CJK KR", Arial, sans-serif;
}
html:lang(ja) {
  --serif: "Hiragino Mincho ProN", "Yu Mincho", "Noto Serif CJK JP", serif;
  --sans: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Noto Sans CJK JP", Arial,
    sans-serif;
  --mono: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Noto Sans CJK JP", Arial,
    sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
}
button,
input,
select {
  font: inherit;
}
button,
a {
  color: inherit;
}
button {
  cursor: pointer;
}
a {
  text-decoration: none;
}
p {
  line-height: 1.6;
}
.eyebrow {
  margin: 0 0 16px;
  color: var(--red);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  white-space: nowrap;
}
.brand b {
  color: var(--green);
}
.brand-mark {
  width: 30px;
  height: 30px;
  border: 2px solid currentColor;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  padding: 5px;
  transform: rotate(45deg);
}
.brand-mark span {
  background: currentColor;
}
.brand-mark span + span {
  background: var(--green);
}
.brand.compact > .brand-mark {
  width: 28px;
  height: 28px;
}
.button {
  min-height: 44px;
  padding: 0 17px;
  border: 1px solid var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: transparent;
  font-weight: 700;
}
.button svg {
  width: 18px;
  height: 18px;
}
.button.ink {
  background: var(--ink);
  color: white;
}
.button.line {
  background: var(--surface);
}
.button:hover {
  background: var(--green);
  border-color: var(--green);
  color: white;
}
.icon-button {
  border: 0;
  background: transparent;
  display: grid;
  place-items: center;
}
.site-header {
  height: 76px;
  border-bottom: 1px solid var(--ink);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 max(24px, calc((100vw - 1280px) / 2));
  position: relative;
  z-index: 10;
  background: rgba(244, 240, 230, 0.96);
  backdrop-filter: blur(12px);
}
.site-header nav {
  display: flex;
  gap: 30px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.site-header > div {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
}
.locale-select {
  height: 39px;
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 0 10px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.locale-select select {
  border: 0;
  background: transparent;
  appearance: none;
  outline: 0;
  color: inherit;
}
.hero {
  max-width: 1200px;
  margin: auto;
  padding: 76px 24px 58px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(430px, 480px);
  gap: 72px;
  align-items: center;
}
.hero-copy {
  max-width: 650px;
}
.hero h1,
.outcomes h2,
.pricing > header h2,
.final-cta h2,
.page-header h1,
.public-company h1,
.legal-page h1 {
  font: 500 clamp(3.5rem, 5.7vw, 6rem) / 0.92 var(--serif);
  letter-spacing: -0.05em;
  margin: 0;
}
.hero h1 {
  font-size: clamp(4rem, 4.7vw, 5.15rem);
  max-width: 650px;
  line-height: 0.94;
}
.hero .promise {
  font: 500 1.3rem/1.25 var(--serif);
  margin: 26px 0 8px;
}
.hero .lede {
  max-width: 610px;
  color: var(--muted);
  font-size: 0.96rem;
  margin: 0 0 24px;
}
.search-box {
  height: 64px;
  border: 2px solid var(--ink);
  background: var(--surface);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  box-shadow: 8px 8px 0 var(--green);
}
.search-box > svg {
  margin-left: 18px;
}
.search-box input {
  min-width: 0;
  height: 60px;
  border: 0;
  background: transparent;
  padding: 0 14px;
  outline: 0;
}
.search-box button {
  align-self: stretch;
  border: 0;
  background: var(--ink);
  color: white;
  padding: 0 20px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 9px;
}
.quiet {
  font-size: 0.78rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 18px 0 0;
}
.hero-report {
  width: 100%;
  max-width: 480px;
  justify-self: end;
  background: var(--ink);
  color: white;
  box-shadow: 14px 14px 0 var(--green);
  padding: 0 28px;
}
.hero-report > header {
  height: 58px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #44463f;
  color: var(--lime);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}
.hero-company {
  padding: 24px 0;
  border-bottom: 1px solid #44463f;
}
.hero-company div {
  min-width: 0;
}
.hero-company small,
.check-row small {
  display: block;
  color: #92958b;
  font-size: 0.61rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.hero-company strong {
  display: block;
  margin: 4px 0;
  font-family: var(--serif);
  font-size: 1.15rem;
}
.hero-company p {
  margin: 0;
  color: #b3b4ad;
  font-size: 0.74rem;
}
.check-row {
  padding: 16px 0;
  border-bottom: 1px solid #41433c;
  display: flex;
  gap: 13px;
  align-items: center;
}
.check-row > svg {
  background: var(--lime);
  color: var(--ink);
  padding: 4px;
  width: 24px;
  height: 24px;
}
.check-row b {
  font-size: 0.82rem;
}
.check-row.muted > svg {
  background: #55574f;
  color: white;
}
.hero-report > footer {
  margin: 0 -28px;
  background: var(--lime);
  color: var(--ink);
  padding: 17px 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}
.strength-strip {
  max-width: 1200px;
  margin: auto;
  border: 1px solid var(--ink);
  background: var(--surface);
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
}
.strength-strip article {
  min-width: 0;
  padding: 27px 30px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.strength-strip article:last-child {
  border: 0;
}
.strength-strip strong {
  font: 500 clamp(2rem, 3vw, 3rem) / 1 var(--serif);
  letter-spacing: -0.035em;
  white-space: nowrap;
}
.strength-strip span {
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.78rem;
}
.outcomes,
.pricing {
  max-width: 1280px;
  margin: auto;
  padding: 116px 24px;
}
.outcomes > header,
.pricing > header {
  max-width: 820px;
}
.outcomes h2,
.pricing > header h2,
.final-cta h2 {
  font-size: clamp(2.9rem, 5vw, 5.2rem);
}
.outcomes > header > p:last-child,
.pricing > header > p:last-child {
  color: var(--muted);
  max-width: 680px;
}
.outcome-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--ink);
  margin-top: 50px;
}
.outcome-grid article {
  min-height: 310px;
  padding: 30px;
  border-right: 1px solid var(--ink);
  display: flex;
  flex-direction: column;
}
.outcome-grid article:last-child {
  border: 0;
}
.outcome-grid article > div {
  display: flex;
  justify-content: space-between;
  color: var(--green);
}
.outcome-grid article > div svg {
  width: 30px;
  height: 30px;
}
.outcome-grid article > div span {
  color: var(--red);
  font-weight: 800;
}
.outcome-grid h3 {
  font: 500 2rem/1.05 var(--serif);
  margin: 42px 0 16px;
}
.outcome-grid p {
  color: var(--muted);
  margin: auto 0 0;
}
.factual-note {
  margin-top: 24px;
  background: var(--ink);
  color: white;
  padding: 28px;
  display: flex;
  gap: 20px;
  align-items: center;
}
.factual-note > svg {
  color: var(--lime);
  flex: 0 0 auto;
}
.factual-note strong {
  font-family: var(--serif);
  font-size: 1.5rem;
}
.factual-note p {
  margin: 4px 0 0;
  color: #b8bbb1;
}
.pricing {
  padding-top: 70px;
}
.price-grid {
  display: grid;
  grid-template-columns: minmax(0, 640px);
  justify-content: center;
  margin-top: 54px;
}
.price-grid article {
  border: 1px solid var(--ink);
  padding: 30px;
  display: flex;
  flex-direction: column;
  min-height: 510px;
}
.price-grid article + article {
  border-left: 0;
}
.price-grid article.featured {
  background: var(--ink);
  color: white;
  transform: translateY(-15px);
  box-shadow: 9px 9px 0 var(--green);
}
.tier-label {
  color: var(--green);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.featured .tier-label {
  color: var(--lime);
}
.price-grid h3 {
  font: 500 4.7rem var(--serif);
  margin: 22px 0 12px;
}
.price-grid h3 sup {
  font-size: 1.5rem;
}
.price-grid article > p {
  color: var(--muted);
  font-size: 0.88rem;
}
.price-grid .price-context {
  margin: -6px 0 16px;
  color: var(--lime);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.featured > p {
  color: #b7bab0;
}
.price-grid ul {
  list-style: none;
  padding: 18px 0;
  margin: auto 0;
}
.price-grid li {
  padding: 12px 0;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 9px;
  font-size: 0.82rem;
}
.price-grid li svg {
  color: var(--green);
  flex: 0 0 auto;
}
.featured li {
  border-color: #44463e;
}
.featured li svg {
  color: var(--lime);
}
.price-grid .button {
  width: 100%;
  background: var(--lime);
  color: var(--ink);
}
.price-grid article:not(.featured) .button {
  background: var(--ink);
  color: white;
}
.payment-note {
  text-align: center;
  color: var(--muted);
  font-size: 0.78rem;
}
.final-cta {
  max-width: 1040px;
  margin: 10px auto 110px;
  background: var(--green);
  color: white;
  text-align: center;
  padding: 62px;
}
.final-cta > p {
  max-width: 650px;
  margin: 18px auto 28px;
}
.final-cta .search-box {
  max-width: 780px;
  margin: auto;
  color: var(--ink);
  box-shadow: 8px 8px 0 var(--ink);
}
.site-footer {
  border-top: 1px solid var(--ink);
  padding: 34px max(24px, calc((100vw - 1232px) / 2));
  display: grid;
  grid-template-columns: 1fr 1fr 1.5fr;
  align-items: center;
  gap: 24px;
}
.site-footer p {
  color: var(--muted);
  font-size: 0.75rem;
}
.site-footer nav {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.72rem;
}
.app-frame {
  min-height: 100vh;
  padding: 68px 0 80px var(--sidebar);
}
.app-sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  width: var(--sidebar);
  background: var(--ink);
  color: white;
  z-index: 30;
  display: flex;
  flex-direction: column;
}
.sidebar-brand {
  height: 68px;
  border-bottom: 1px solid #3c3f37;
  display: flex;
  align-items: center;
  padding: 0 23px;
}
.sidebar-brand .brand b {
  color: var(--lime);
}
.app-sidebar nav {
  padding: 22px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.app-sidebar nav a {
  padding: 12px 13px;
  color: #a9aca1;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  font-weight: 600;
}
.app-sidebar nav a:hover,
.app-sidebar nav a.active {
  background: #2d3029;
  color: white;
}
.app-sidebar nav a.active {
  box-shadow: inset 3px 0 var(--lime);
}
.sidebar-user {
  margin-top: auto;
  border-top: 1px solid #3c3f37;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.sidebar-user > button {
  border: 0;
  background: transparent;
  color: white;
  display: flex;
  gap: 9px;
}
.avatar {
  width: 35px;
  height: 35px;
  background: var(--lime);
  color: var(--ink);
  display: grid;
  place-items: center;
  overflow: hidden;
  flex: 0 0 auto;
}
.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sidebar-user div {
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.sidebar-user strong,
.sidebar-user small {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sidebar-user strong {
  font-size: 0.72rem;
}
.sidebar-user small {
  font-size: 0.6rem;
  color: #989b91;
}
.app-topbar {
  position: fixed;
  top: 0;
  left: var(--sidebar);
  right: 0;
  height: 68px;
  background: rgba(244, 240, 230, 0.97);
  border-bottom: 1px solid var(--ink);
  z-index: 25;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  padding: 0 26px;
}
.app-topbar > a {
  display: none;
}
.app-main {
  max-width: 1440px;
  margin: auto;
  padding: 42px 38px;
}
.page-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 35px;
}
.page-header h1 {
  font-size: clamp(2.8rem, 4.8vw, 5rem);
}
.page-header > div > p:last-child {
  color: var(--muted);
  max-width: 690px;
  margin-bottom: 0;
}
.dashboard-summary {
  display: grid;
  grid-template-columns: repeat(2, 220px);
  gap: 12px;
  margin-bottom: 22px;
}
.dashboard-summary article {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 20px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 13px;
  align-items: center;
}
.dashboard-summary svg {
  grid-row: 1/3;
  color: var(--green);
}
.dashboard-summary strong {
  font: 500 2rem var(--serif);
}
.dashboard-summary span {
  color: var(--muted);
  font-size: 0.72rem;
}
.dashboard-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.panel {
  background: var(--surface);
  border: 1px solid var(--line);
}
.panel > header {
  padding: 20px 22px;
  border-bottom: 1px solid var(--line);
}
.panel h2 {
  font: 500 1.7rem var(--serif);
  margin: 0;
}
.compact-list a,
.order-list a {
  min-height: 72px;
  padding: 12px 18px;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 13px;
  align-items: center;
}
.compact-list a:last-child,
.order-list a:last-child {
  border: 0;
}
.compact-list a:hover,
.order-list a:hover {
  background: var(--paper);
}
.compact-list strong,
.order-list strong {
  display: block;
  font-size: 0.84rem;
}
.compact-list small,
.order-list small {
  color: var(--muted);
  font-size: 0.7rem;
}
.entity-monogram,
.order-icon {
  width: 40px;
  height: 40px;
  background: var(--paper-2);
  display: grid;
  place-items: center;
  color: var(--green);
  font: 600 1.1rem var(--serif);
}
.order-list a {
  grid-template-columns: auto 1fr auto auto;
}
.order-list b {
  font-size: 0.67rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green);
}
.order-icon.failed,
.order-icon.cancelled,
.order-icon.refunded,
.order-icon.disputed {
  color: var(--red);
}
.empty-state {
  text-align: center;
  padding: 55px 25px;
  color: var(--muted);
}
.empty-state svg {
  color: var(--green);
}
.empty-state .button {
  margin-top: 10px;
}
.workspace-search {
  height: 64px;
  border: 2px solid var(--ink);
  background: var(--surface);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  box-shadow: 7px 7px var(--green);
  margin-bottom: 38px;
}
.workspace-search > svg {
  margin-left: 19px;
}
.workspace-search input {
  border: 0;
  outline: 0;
  background: transparent;
  padding: 0 14px;
  min-width: 0;
}
.workspace-search .button {
  align-self: stretch;
  border: 0;
}
.search-credit-balance,
.search-credit-return {
  width: fit-content;
  margin: -20px 0 28px;
  padding: 8px 12px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 700;
}
.search-credit-card {
  margin: 0 0 34px;
  padding: 24px 26px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  background: var(--ink);
  color: var(--paper);
  border: 1px solid var(--ink);
  box-shadow: 7px 7px var(--green);
}
.search-credit-card h2 {
  margin: 4px 0 7px;
  font: 500 1.7rem var(--serif);
}
.search-credit-card p:not(.eyebrow) {
  margin: 0;
  color: #c8c8c1;
}
.search-credit-card .purchase-button {
  min-width: 245px;
  background: var(--acid);
  color: var(--ink);
}
.results > h2 {
  font: 500 1.8rem var(--serif);
}
.result-card {
  width: 100%;
  border: 0;
  border-top: 1px solid var(--line);
  background: transparent;
  padding: 20px 8px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 18px;
  align-items: center;
  text-align: left;
}
.result-card:last-child {
  border-bottom: 1px solid var(--line);
}
.result-card:hover {
  background: var(--surface);
}
.result-card.is-inactive {
  box-shadow: inset 4px 0 var(--red);
  background: #fbefec;
}
.company-logo {
  width: 45px;
  height: 45px;
  background: var(--surface);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--green);
  font: 600 1.1rem var(--serif);
  flex: 0 0 auto;
}
.company-logo.large {
  width: 68px;
  height: 68px;
}
.company-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.result-main h3 {
  margin: 0;
  font: 500 1.4rem var(--serif);
}
.result-main > p {
  margin: 3px 0;
  color: var(--muted);
}
.result-main dl {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin: 12px 0 0;
}
.result-main dl div,
.report-cover dl div {
  display: flex;
  gap: 7px;
  font-size: 0.72rem;
}
.result-main dt,
.report-cover dt {
  color: var(--muted);
}
.result-main dd,
.report-cover dd {
  margin: 0;
  font-weight: 700;
}
.result-status {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--lime);
  padding: 7px 10px;
  font-size: 0.68rem;
  font-weight: 800;
}
.result-status.danger {
  background: #f7d4cf;
  border: 1px solid var(--red);
  color: #8f251c;
}
.live-profile-fetch {
  min-height: 210px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: white;
  box-shadow: 8px 8px var(--green);
  padding: 32px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
}
.live-profile-fetch strong,
.live-profile-fetch span,
.live-profile-fetch small {
  display: block;
}
.live-profile-fetch strong {
  color: var(--lime);
  font: 500 1.8rem var(--serif);
}
.live-profile-fetch span {
  margin-top: 8px;
  font-weight: 700;
}
.live-profile-fetch small {
  margin-top: 4px;
  color: #b6b9ae;
}
.live-profile-fetch > svg {
  width: 30px;
  height: 30px;
  color: var(--lime);
}
.profile-first-screen {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(320px, 0.7fr);
  grid-template-areas:
    "company purchase"
    "identity purchase";
  gap: 18px 24px;
  align-items: stretch;
}
.company-head {
  grid-area: company;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border: 1px solid var(--line);
  border-bottom: 0;
  background: var(--surface);
  padding: 28px 28px 16px;
}
.company-title {
  display: flex;
  gap: 20px;
  align-items: center;
}
.company-title h1 {
  font: 500 clamp(2.2rem, 3.4vw, 3.65rem) / 1 var(--serif);
  margin: 0;
}
.chinese-name {
  color: var(--muted);
  margin: 6px 0 0;
}
.company-status-pill {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--lime);
  border: 1px solid var(--ink);
  padding: 9px 13px;
  font-weight: 800;
  font-size: 0.72rem;
  white-space: nowrap;
}
.company-status-pill.danger {
  background: #f7d4cf;
  border-color: var(--red);
  color: #8f251c;
}
.identity-grid {
  grid-area: identity;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-top: 0;
  background: var(--surface);
  margin: 0;
}
.identity-grid article {
  min-height: 78px;
  padding: 15px 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.identity-grid article:nth-child(2n) {
  border-right: 0;
}
.identity-grid article.wide {
  grid-column: span 2;
}
.identity-grid small {
  color: var(--muted);
  font-size: 0.67rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.identity-grid strong {
  font-size: 0.84rem;
  overflow-wrap: anywhere;
}
.identity-grid article.danger {
  background: #fbdfdb;
  color: #8f251c;
  box-shadow: inset 4px 0 var(--red);
}
.profile-purchase-card {
  grid-area: purchase;
  background: var(--ink);
  color: white;
  box-shadow: 9px 9px var(--green);
  padding: 28px;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.profile-purchase-card .eyebrow {
  color: var(--lime);
  margin-bottom: 10px;
}
.profile-purchase-card .record-proof {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  background: #282b25;
  color: var(--lime);
  padding: 8px 10px;
  font-size: 0.72rem;
  font-weight: 800;
}
.profile-purchase-card h2 {
  margin: 20px 0 5px;
  font: 500 2.25rem/1 var(--serif);
}
.profile-purchase-card > p:not(.eyebrow, .preflight-status) {
  margin: 5px 0 15px;
  color: #b6b9ae;
  font-size: 0.78rem;
}
.profile-price {
  font: 500 4rem/1 var(--serif);
  margin-top: 4px;
}
.profile-purchase-card .price-context {
  margin-top: 6px;
  color: #b6b9ae;
  font-size: 0.68rem;
}
.profile-purchase-card ul {
  list-style: none;
  margin: 20px 0 0;
  padding: 18px 0;
  border-top: 1px solid #44463f;
  border-bottom: 1px solid #44463f;
  display: grid;
  gap: 9px;
}
.profile-purchase-card li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #e6e8e1;
  font-size: 0.75rem;
}
.profile-purchase-card li svg {
  color: var(--lime);
  flex: 0 0 auto;
}
.profile-purchase-card .preflight-status {
  margin: 16px 0;
  color: #d8dbd2;
}
.profile-purchase-card .preflight-status.danger {
  color: #ffb2a9;
}
.profile-purchase-card .purchase-button {
  width: 100%;
  margin-top: 16px;
  background: var(--lime);
  color: var(--ink);
  min-height: 52px;
}
.profile-purchase-card .purchase-button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
.profile-purchase-card .sample-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 13px;
  color: var(--lime);
  font-size: 0.75rem;
  font-weight: 700;
}
.teaser {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 40px;
  padding: 35px;
  background: var(--ink);
  color: white;
}
.teaser h2 {
  font: 500 2.7rem var(--serif);
  margin: 0;
}
.teaser p:last-child {
  color: #b2b5aa;
}
.teaser .teaser-limit {
  margin-bottom: 0;
  font-size: 0.76rem;
  line-height: 1.5;
}
.signal-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.signal-list span {
  background: #282b25;
  padding: 12px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
}
.signal-list svg {
  color: var(--lime);
}
.preflight-status {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-size: 0.8rem;
}
.preflight-status svg {
  color: var(--green);
  flex: 0 0 auto;
}
.existing-report {
  background: var(--lime);
  display: flex;
  gap: 14px;
  padding: 20px;
  align-items: center;
}
.existing-report div {
  display: flex;
  justify-content: space-between;
  flex: 1;
}
.existing-report a {
  font-weight: 800;
  display: flex;
  gap: 7px;
}
.order-library {
  border: 1px solid var(--line);
  background: var(--surface);
}
.order-state {
  max-width: 700px;
  margin: 80px auto;
  text-align: center;
}
.order-state-icon {
  width: 76px;
  height: 76px;
  background: var(--ink);
  color: var(--lime);
  display: grid;
  place-items: center;
  margin: 0 auto 28px;
}
.order-state-icon svg {
  width: 35px;
  height: 35px;
}
.order-state-icon.failed,
.order-state-icon.cancelled,
.order-state-icon.refunded,
.order-state-icon.disputed {
  background: var(--red);
  color: white;
}
.order-state h1 {
  font: 500 3.5rem var(--serif);
  margin: 0;
}
.order-state > p:not(.eyebrow) {
  color: var(--muted);
}
.order-state > a {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.order-state .button {
  margin-top: 20px;
}
.generation-expectation {
  max-width: 560px;
  margin: 26px auto 0;
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.generation-expectation strong {
  font: 500 1.35rem var(--serif);
}
.generation-expectation span {
  font-size: 0.8rem;
  color: var(--muted);
}
.generation-expectation small {
  font-size: 0.68rem;
  color: var(--green);
}
.result-scope {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  max-width: 900px;
  font-size: 0.73rem;
  line-height: 1.5;
  color: #4f514b !important;
  margin-top: 12px !important;
}
.result-scope b {
  display: block;
  color: var(--muted);
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.report {
  max-width: 1120px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--ink);
}
.pdf-document {
  min-height: 100vh;
  padding: 28px 0 72px;
  background: #deded8;
}
.pdf-toolbar {
  max-width: 1120px;
  margin: 0 auto 18px;
  padding: 12px 14px;
  border: 1px solid var(--ink);
  background: var(--surface);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
}
.pdf-toolbar > a {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.76rem;
  font-weight: 800;
}
.pdf-toolbar > span {
  color: var(--muted);
  font-size: 0.72rem;
}
.pdf-toolbar > button {
  justify-self: end;
}
.report-pdf {
  box-shadow: 0 22px 60px rgb(23 23 19 / 16%);
}
.report-pdf .report-cover {
  min-height: 650px;
  padding: 58px;
  align-items: flex-end;
}
.report-pdf .report-cover .brand {
  margin-bottom: 110px;
}
.report-pdf .report-cover h1 {
  max-width: 820px;
}
.report-cover {
  background: var(--ink);
  color: white;
  padding: 42px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
.report-cover .brand {
  margin-bottom: 64px;
}
.report-cover h1 {
  font: 500 clamp(2.7rem, 5vw, 5rem) / 0.95 var(--serif);
  margin: 0;
  max-width: 780px;
}
.report-chinese {
  font: 400 1.15rem var(--serif);
  color: #b8baaf;
}
.report-cover dl {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 24px;
  margin-top: 28px;
}
.report-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 15px;
}
.report-actions > span {
  font-size: 0.65rem;
  color: var(--lime);
  letter-spacing: 0.1em;
}
.report-actions .button {
  color: var(--ink);
}
.report-identity,
.report-index,
.report-group,
.glossary,
.report-sources {
  padding: 42px;
  border-bottom: 1px solid var(--line);
}
.report h2 {
  font: 500 2.5rem var(--serif);
  margin: 0 0 25px;
}
.identity-explanation {
  max-width: 900px;
  margin: -12px 0 26px;
  color: var(--muted);
  line-height: 1.55;
}
.report-identity .identity-grid {
  margin: 0;
}
.report-index {
  background: var(--paper-2);
}
.report-index > header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 22px;
}
.report-index h2 {
  margin: 0;
}
.report-index label {
  width: min(390px, 100%);
  display: flex;
  align-items: center;
  gap: 9px;
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 11px 13px;
}
.report-index input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  font: inherit;
}
.report-index nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.report-index nav a {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 0.7rem;
}
.report-index nav b {
  color: var(--green);
}
.report-group > header span {
  color: var(--red);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.report-section {
  border-top: 1px solid var(--line);
}
.report-section summary {
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.report-section summary span {
  display: flex;
  flex-direction: column;
}
.report-section summary b {
  font-family: var(--serif);
  font-size: 1.28rem;
}
.report-section summary small {
  color: var(--muted);
  font-size: 0.65rem;
}
.report-section summary .section-preview {
  max-width: 760px;
  margin-top: 5px;
  color: var(--ink);
  font-size: 0.7rem;
  line-height: 1.35;
}
.report-section summary em {
  font-size: 0.65rem;
  font-style: normal;
  background: var(--paper-2);
  padding: 6px;
}
.section-guide {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-bottom: 16px;
  border: 1px solid var(--line);
  background: var(--line);
}
.section-guide p {
  margin: 0;
  padding: 14px;
  background: var(--paper-2);
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.5;
}
.section-guide p b {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.dedupe-note {
  grid-column: 1 / -1;
  padding: 9px 14px;
  background: var(--surface);
  color: var(--muted);
  font-size: 0.65rem;
}
.record-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding-bottom: 20px;
}
.record-grid-long {
  grid-template-columns: 1fr;
}
.record-card {
  border: 1px solid var(--line);
  background: var(--paper);
}
.record-card > header {
  padding: 10px 13px;
  background: var(--paper-2);
  font-size: 0.61rem;
  color: var(--muted);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
}
.record-card > header > b {
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.record-long-field {
  grid-template-columns: 1fr !important;
}
.record-long-field details summary {
  justify-content: flex-start;
  padding: 4px 0;
  color: var(--green);
  font-size: 0.72rem;
}
.record-long-field p {
  white-space: pre-wrap;
  line-height: 1.6;
}
.record-verification {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 13px;
  border-top: 1px solid var(--line);
  color: var(--green);
  font-size: 0.68rem;
  font-weight: 700;
}
.record-verification svg {
  width: 13px;
  height: 13px;
}
.report-empty-group {
  background: var(--paper-2);
}
.empty-categories ul {
  margin: 0 0 22px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  list-style: none;
}
.empty-categories li {
  min-height: 58px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 0.72rem;
}
.empty-categories li small {
  color: var(--muted);
}
.order-history {
  margin-top: 24px;
  border: 1px solid var(--line);
  background: var(--surface);
}
.order-history > summary {
  cursor: pointer;
  padding: 16px 20px;
  font-weight: 700;
}
.record-card > header svg {
  width: 13px;
  height: 13px;
}
.record-card > dl {
  margin: 0;
  padding: 13px;
}
.record-card > dl > div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 10px;
  padding: 7px 0;
  border-bottom: 1px solid var(--line);
}
.record-card dt {
  font-size: 0.63rem;
  color: var(--muted);
}
.record-card dd {
  font-size: 0.75rem;
  margin: 0;
  overflow-wrap: anywhere;
}
.no-records {
  display: flex;
  gap: 8px;
  color: var(--muted);
  font-size: 0.78rem;
}
.glossary {
  background: var(--paper-2);
}
.glossary > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.glossary article {
  background: var(--surface);
  padding: 18px;
  border-top: 3px solid var(--green);
}
.glossary article > span {
  font-family: var(--serif);
  font-size: 1.3rem;
}
.glossary article > strong {
  display: block;
  margin: 5px 0;
}
.glossary article > p {
  font-size: 0.74rem;
  color: var(--muted);
  margin: 0;
}
.report-sources > div {
  display: flex;
  flex-direction: column;
}
.report-sources a {
  padding: 12px 0;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 8px;
  font-size: 0.8rem;
}
.translation-note {
  margin: 20px 42px;
  background: #fff1cf;
  padding: 15px;
}
.report-footer {
  padding: 30px 42px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 20px;
  align-items: center;
}
.report-footer > span {
  justify-self: end;
  font-size: 0.62rem;
  color: var(--muted);
}
.report-footer > p {
  grid-column: 1/3;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.7rem;
}
.settings-card {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 30px;
  display: flex;
  gap: 20px;
  max-width: 760px;
}
.settings-card > svg {
  color: var(--green);
}
.settings-card > div {
  flex: 1;
}
.settings-card h2 {
  font: 500 2rem var(--serif);
  margin: 0;
}
.settings-card p {
  color: var(--muted);
}
.settings-card dl div {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding: 10px 0;
}
.settings-card dd {
  margin: 0;
  font-weight: 700;
}
.settings-card .button {
  margin-top: 18px;
}
.legal-page main {
  max-width: 820px;
  margin: 80px auto 110px;
  padding: 0 24px;
}
.legal-page h1 {
  font-size: 5.5rem;
}
.legal-date {
  color: var(--muted);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 25px;
}
.legal-page section {
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}
.legal-page h2 {
  font: 500 1.7rem var(--serif);
}
.legal-page section p {
  color: #44463f;
}
.public-company main {
  max-width: 980px;
  margin: 80px auto 110px;
  padding: 0 24px;
}
.public-company h1 {
  font-size: 5rem;
}
.public-company main > .company-logo {
  margin-bottom: 28px;
}
.public-company main > .button {
  margin-top: 30px;
}
.sample-page > .report {
  margin-top: 55px;
  margin-bottom: 80px;
}
.public-load {
  min-height: 80vh;
  display: grid;
  place-items: center;
}
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(9, 10, 8, 0.65);
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
}
.auth-modal {
  width: min(460px, 100%);
  background: var(--surface);
  border: 1px solid var(--ink);
  box-shadow: 12px 12px var(--green);
  padding: 34px;
  position: relative;
}
.modal-close {
  position: absolute;
  right: 16px;
  top: 16px;
  border: 0;
  background: transparent;
}
.auth-modal h2 {
  font: 500 2.4rem var(--serif);
  margin: 32px 0 5px;
}
.auth-modal > p {
  color: var(--muted);
}
.auth-modal .button {
  width: 100%;
  margin-top: 10px;
}
.button.google {
  background: white;
}
.button.google span {
  font-weight: 900;
  color: #4285f4;
}
.or {
  height: 35px;
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: 0.62rem;
}
.auth-modal label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
}
.auth-modal input {
  height: 48px;
  border: 1px solid var(--ink);
  background: var(--paper);
  padding: 0 12px;
}
.error-box {
  background: #ffebe5;
  color: #9b251d;
  padding: 12px 15px;
  font-size: 0.75rem;
}
.loading {
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--green);
}
.spin {
  animation: spin 1s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.mobile-nav {
  display: none;
}
@media (max-width: 900px) {
  :root {
    --sidebar: 0px;
  }
  .search-credit-card {
    grid-template-columns: 1fr;
  }
  .search-credit-card .purchase-button {
    width: 100%;
    min-width: 0;
  }
  .site-header {
    grid-template-columns: 1fr auto;
    height: 68px;
    padding: 0 18px;
  }
  .site-header nav {
    display: none;
  }
  .site-header > div .locale-select {
    display: none;
  }
  .site-header .button {
    padding: 0 12px;
  }
  .hero {
    grid-template-columns: 1fr;
    padding: 56px 20px;
    gap: 45px;
  }
  .hero h1 {
    font-size: clamp(3.4rem, 15vw, 5.2rem);
  }
  .hero-report {
    max-width: 560px;
    justify-self: start;
  }
  .strength-strip {
    margin: 0 20px;
    grid-template-columns: 1fr;
  }
  .strength-strip article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .outcomes,
  .pricing {
    padding: 80px 20px;
  }
  .outcome-grid,
  .price-grid {
    grid-template-columns: 1fr;
  }
  .outcome-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }
  .price-grid article + article {
    border-left: 1px solid var(--ink);
    border-top: 0;
  }
  .price-grid article.featured {
    transform: none;
  }
  .final-cta {
    margin: 0 20px 70px;
    padding: 40px 20px;
  }
  .site-footer {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .site-footer .brand {
    justify-content: center;
  }
  .site-footer nav {
    justify-content: center;
  }
  .app-sidebar {
    display: none;
  }
  .app-frame {
    padding-left: 0;
  }
  .app-topbar {
    left: 0;
    justify-content: space-between;
    padding: 0 17px;
  }
  .app-topbar > a {
    display: block;
  }
  .app-main {
    padding: 28px 18px;
  }
  .mobile-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 64px;
    background: var(--ink);
    z-index: 50;
  }
  .mobile-nav a {
    color: #b5b7ae;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 2px;
  }
  .mobile-nav a.active {
    color: var(--lime);
  }
  .mobile-nav small {
    font-size: 0.55rem;
  }
  .page-header {
    align-items: flex-start;
    flex-direction: column;
  }
  .dashboard-summary {
    grid-template-columns: 1fr 1fr;
  }
  .dashboard-grid,
  .teaser {
    grid-template-columns: 1fr;
  }
  .result-card {
    grid-template-columns: auto 1fr auto;
    padding: 16px 0;
  }
  .result-status {
    grid-column: 2/4;
    justify-self: start;
  }
  .result-card > svg {
    grid-column: 3;
    grid-row: 1;
  }
  .result-main dl {
    display: grid;
    grid-template-columns: 1fr;
  }
  .profile-first-screen {
    grid-template-columns: 1fr;
    grid-template-areas:
      "company"
      "purchase"
      "identity";
  }
  .company-head {
    flex-direction: column;
    gap: 20px;
  }
  .identity-grid {
    grid-template-columns: 1fr 1fr;
  }
  .identity-grid article:nth-child(2n) {
    border-right: 0;
  }
  .signal-list {
    grid-template-columns: 1fr;
  }
  .record-grid,
  .glossary > div {
    grid-template-columns: 1fr;
  }
  .report-cover {
    flex-direction: column;
    padding: 28px;
  }
  .report-cover .brand {
    margin-bottom: 40px;
  }
  .report-actions {
    align-items: flex-start;
  }
  .report-identity,
  .report-index,
  .report-group,
  .glossary,
  .report-sources {
    padding: 28px;
  }
  .report-index > header {
    align-items: stretch;
    flex-direction: column;
  }
  .report-index label {
    width: 100%;
  }
  .report-index nav {
    grid-template-columns: 1fr;
  }
  .section-guide,
  .empty-categories ul {
    grid-template-columns: 1fr;
  }
  .record-card > dl > div {
    grid-template-columns: 100px 1fr;
  }
  .legal-page h1,
  .public-company h1 {
    font-size: 3.7rem;
  }
}
@media (max-width: 560px) {
  .hero h1 {
    font-size: 3.55rem;
  }
  .search-box {
    height: auto;
    grid-template-columns: auto 1fr;
  }
  .search-box button {
    grid-column: 1/3;
    height: 48px;
    justify-content: center;
  }
  .search-box > svg {
    margin-left: 14px;
  }
  .search-box input {
    height: 54px;
  }
  .hero-report {
    padding: 0 18px;
  }
  .hero-report > footer {
    margin: 0 -18px;
    padding: 16px 18px;
  }
  .outcome-grid article {
    min-height: 250px;
  }
  .price-grid article {
    min-height: 440px;
  }
  .page-header h1 {
    font-size: 3.2rem;
  }
  .dashboard-summary {
    grid-template-columns: 1fr;
  }
  .company-title {
    align-items: flex-start;
  }
  .company-title .company-logo {
    display: none;
  }
  .identity-grid {
    grid-template-columns: 1fr;
  }
  .identity-grid article,
  .identity-grid article:nth-child(2n) {
    border-right: 0;
  }
  .profile-purchase-card {
    padding: 24px;
  }
  .identity-grid article.wide {
    grid-column: auto;
  }
  .order-list a {
    grid-template-columns: auto 1fr auto;
  }
  .order-list b {
    grid-column: 2;
  }
  .report-cover h1 {
    font-size: 3rem;
  }
  .report h2 {
    font-size: 2rem;
  }
  .report-footer {
    grid-template-columns: 1fr;
  }
  .report-footer > span {
    justify-self: start;
  }
  .report-footer > p {
    grid-column: auto;
  }
  .legal-page main {
    margin-top: 55px;
  }
}
@media print {
  @page {
    size: A4;
    margin: 14mm 12mm 18mm;
    @bottom-left {
      content: "KYB CHINA · COMPANY FILE";
      color: #6b6d65;
      font: 8pt Arial, sans-serif;
      letter-spacing: 0.08em;
    }
    @bottom-right {
      content: "Page " counter(page);
      color: #6b6d65;
      font: 8pt Arial, sans-serif;
    }
  }
  body {
    background: white;
  }
  .app-sidebar,
  .app-topbar,
  .mobile-nav,
  .report-actions,
  .site-header,
  .site-footer {
    display: none !important;
  }
  .pdf-toolbar {
    display: none !important;
  }
  .pdf-document {
    padding: 0;
    background: white;
  }
  .app-frame {
    padding: 0;
  }
  .app-main {
    padding: 0;
  }
  .report {
    border: 0;
    max-width: none;
  }
  .report-pdf {
    box-shadow: none;
  }
  .report-pdf .report-cover {
    min-height: 265mm;
    padding: 18mm 16mm;
    break-after: page;
  }
  .report-pdf .report-cover .brand {
    margin-bottom: 45mm;
  }
  .report-pdf .report-cover h1 {
    font-size: 36pt;
  }
  .report-pdf .report-group {
    break-before: page;
  }
  .report-pdf .report-section {
    break-inside: auto;
  }
  .report-pdf .report-footer {
    break-before: page;
    break-inside: avoid;
    min-height: 250mm;
    padding: 18mm 16mm;
    align-content: center;
    background: #12150f;
    color: white;
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }
  .report-pdf .report-footer > span,
  .report-pdf .report-footer > p {
    color: #d4d5cf;
  }
  .report-pdf .report-footer > p {
    max-width: 125mm;
    font-size: 10pt;
    line-height: 1.6;
  }
  .report-cover {
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }
  .report-section {
    break-inside: avoid;
  }
  .record-card {
    break-inside: auto;
  }
  .record-card > header,
  .record-card > dl > div {
    break-inside: avoid;
  }
  .glossary {
    break-before: page;
  }
  .report-group,
  .report-identity,
  .report-index,
  .glossary,
  .report-sources {
    padding: 25px;
  }
}

/* Crawlable server-rendered shell shown before the application hydrates. */
.seo-prerender {
  min-height: 100vh;
  background: #f4f0e6;
  color: #12150f;
  font-family: Arial, Helvetica, sans-serif;
}

.seo-prerender > header,
.seo-prerender > footer,
.seo-prerender main {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.seo-prerender > header,
.seo-prerender > footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid #12150f;
}

.seo-prerender > footer {
  border-top: 1px solid #12150f;
  border-bottom: 0;
}

.seo-prerender nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.seo-prerender a {
  color: inherit;
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.seo-prerender > header > a,
.seo-prerender > footer > a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.12em;
  text-decoration: none;
}

.seo-prerender main > header {
  max-width: 850px;
  padding: 88px 0 56px;
}

.seo-prerender main > header > p:first-child,
.seo-prerender section > p:first-child {
  color: #d84c3d;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.seo-prerender h1,
.seo-prerender h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.02;
}

.seo-prerender h1 {
  max-width: 820px;
  margin: 18px 0 24px;
  font-size: clamp(46px, 7vw, 88px);
}

.seo-prerender h2 {
  margin: 22px 0 14px;
  font-size: clamp(30px, 4vw, 50px);
}

.seo-prerender p,
.seo-prerender li {
  max-width: 820px;
  font-size: 18px;
  line-height: 1.65;
}

.seo-prerender main > header > a,
.seo-prerender main > section:last-child > a {
  display: inline-block;
  margin-top: 16px;
  padding: 16px 22px;
  background: #12150f;
  color: #fff;
  text-decoration: none;
}

.seo-prerender main > ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 0;
  border: 1px solid #12150f;
  list-style: none;
}

.seo-prerender main > ul li {
  display: grid;
  gap: 6px;
  padding: 24px;
  border-inline-end: 1px solid #12150f;
}

.seo-prerender main > ul li:last-child {
  border-inline-end: 0;
}

.seo-prerender main > ul strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
}

.seo-prerender section,
.seo-prerender aside {
  padding: 56px 0;
  border-bottom: 1px solid #b9b3a6;
}

.seo-prerender article {
  padding: 18px 0;
}

.seo-prerender details {
  max-width: 900px;
  padding: 18px 0;
  border-top: 1px solid #b9b3a6;
}

.seo-prerender summary {
  cursor: pointer;
  font-size: 20px;
  font-weight: 700;
}

.seo-prerender aside ul {
  columns: 2;
  padding-inline-start: 22px;
}

.seo-prerender .seo-link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  list-style: none;
}

.seo-prerender .seo-link-grid li {
  display: grid;
  gap: 6px;
  padding: 18px;
  border: 1px solid #b9b3a6;
}

.seo-prerender .seo-link-grid span {
  color: #5d625b;
  font-size: 15px;
  line-height: 1.5;
}

.seo-prerender .seo-tool form {
  max-width: 820px;
}

.seo-prerender .seo-tool label {
  display: block;
  margin-bottom: 10px;
  font-weight: 700;
}

.seo-prerender .seo-tool form > div {
  display: flex;
}

.seo-prerender .seo-tool input {
  min-width: 0;
  flex: 1;
  padding: 16px;
  border: 1px solid #12150f;
  background: #fffdf8;
  color: #12150f;
  font: inherit;
}

.seo-prerender .seo-tool button {
  padding: 16px 22px;
  border: 1px solid #12150f;
  background: #12150f;
  color: #fff;
  font: inherit;
  font-weight: 700;
}

.seo-prerender .seo-tool-result {
  max-width: 820px;
  margin-top: 18px;
  padding: 20px;
  border-inline-start: 6px solid #176b55;
  background: #fffdf8;
}

@media (max-width: 760px) {
  .seo-prerender > header,
  .seo-prerender > footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .seo-prerender main > header {
    padding-top: 56px;
  }

  .seo-prerender main > ul {
    grid-template-columns: 1fr 1fr;
  }

  .seo-prerender main > ul li:nth-child(2) {
    border-inline-end: 0;
  }

  .seo-prerender .seo-link-grid {
    grid-template-columns: 1fr;
  }

  .seo-prerender .seo-tool form > div {
    align-items: stretch;
    flex-direction: column;
  }

  .seo-prerender main > ul li:nth-child(-n + 2) {
    border-bottom: 1px solid #12150f;
  }

  .seo-prerender aside ul {
    columns: 1;
  }
}
