:root {
  --ink: #0b1724;
  --ink-2: #12283d;
  --navy: #08131f;
  --navy-soft: #0e2234;
  --paper: #f5f2eb;
  --paper-2: #ebe6dc;
  --white: #ffffff;
  --muted: #65717c;
  --line: rgba(11, 23, 36, .14);
  --line-light: rgba(255, 255, 255, .14);
  --gold: #d5b46c;
  --gold-bright: #edd18f;
  --green: #62c9a0;
  --shadow: 0 30px 80px rgba(2, 10, 18, .22);
  --radius: 24px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, "Segoe UI", 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;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
.wrap { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }
.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: 78px;
  border-bottom: 1px solid transparent;
  color: var(--white);
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
}
.site-header.is-scrolled {
  border-color: var(--line-light);
  background: rgba(8, 19, 31, .92);
  backdrop-filter: blur(18px);
}
.site-header.is-hidden { transform: translateY(-100%); }
.header-inner { display: flex; height: 78px; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(237, 209, 143, .55);
  border-radius: 50%;
  color: var(--gold-bright);
  font-family: var(--serif);
  font-size: 14px;
  letter-spacing: -.04em;
}
.brand-copy { display: flex; flex-direction: column; line-height: 1.1; }
.brand-copy strong { font-size: 15px; letter-spacing: .08em; }
.brand-copy small { margin-top: 5px; color: rgba(255,255,255,.58); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.desktop-nav { display: flex; align-items: center; gap: 30px; font-size: 13px; }
.desktop-nav > a { color: rgba(255,255,255,.72); transition: color .2s ease; }
.desktop-nav > a:hover, .desktop-nav > a:focus-visible { color: var(--white); }
.desktop-nav .nav-cta { padding: 11px 17px; border: 1px solid rgba(237,209,143,.48); border-radius: 999px; color: var(--gold-bright); }
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; color: white; cursor: pointer; }
.menu-toggle span { display: block; width: 24px; height: 1px; margin: 7px auto; background: currentColor; transition: transform .2s ease; }
.menu-active .menu-toggle span:first-child { transform: translateY(4px) rotate(45deg); }
.menu-active .menu-toggle span:last-child { transform: translateY(-4px) rotate(-45deg); }
.mobile-nav {
  display: none;
  position: fixed;
  inset: 78px 0 0;
  padding: 36px 24px;
  background: rgba(8,19,31,.98);
  flex-direction: column;
  gap: 0;
}
.mobile-nav a { padding: 17px 0; border-bottom: 1px solid var(--line-light); font-size: 22px; }
.menu-open .mobile-nav { display: flex; }

.hero {
  position: relative;
  overflow: hidden;
  min-height: 940px;
  padding: 154px 0 44px;
  background:
    radial-gradient(circle at 78% 30%, rgba(52, 107, 132, .26), transparent 29%),
    linear-gradient(145deg, #06101a 0%, #0b1b2b 58%, #07121d 100%);
  color: var(--white);
}
.hero:after {
  position: absolute;
  right: -10%;
  bottom: 0;
  left: -10%;
  height: 170px;
  background: linear-gradient(to bottom, transparent, rgba(0,0,0,.22));
  content: "";
  pointer-events: none;
}
.hero-glow { position: absolute; border-radius: 50%; filter: blur(1px); opacity: .6; pointer-events: none; }
.hero-glow-one { top: 200px; left: -160px; width: 420px; height: 420px; border: 1px solid rgba(213,180,108,.14); }
.hero-glow-two { right: -100px; bottom: 180px; width: 320px; height: 320px; border: 1px solid rgba(255,255,255,.08); }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 88px; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin: 0 0 22px; color: var(--gold-bright); font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow span { width: 30px; height: 1px; background: currentColor; }
.eyebrow-dark { color: #8a6f39; }
.hero h1, .section h2, .page-hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: .98;
}
.hero h1 { max-width: 760px; font-size: clamp(62px, 7.1vw, 104px); }
.hero h1 em { color: var(--gold-bright); font-weight: 400; }
.hero-lede { max-width: 670px; margin: 34px 0 0; color: rgba(255,255,255,.7); font-size: clamp(18px, 2vw, 21px); line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 38px; }
.button { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; padding: 0 22px; border: 1px solid transparent; border-radius: 999px; font-size: 13px; font-weight: 700; letter-spacing: .02em; transition: transform .2s ease, background .2s ease, border-color .2s ease; }
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button-gold { background: var(--gold-bright); color: #172230; }
.button-ghost { border-color: rgba(255,255,255,.24); color: var(--white); }
.button-ghost:hover { border-color: rgba(255,255,255,.58); }
.button-dark { background: var(--ink); color: var(--white); }
.hero-note { max-width: 670px; margin-top: 24px; color: rgba(255,255,255,.44); font-size: 12px; }
.hero-media { position: relative; display: flex; min-height: 620px; align-items: center; justify-content: center; }
.phone-shell {
  position: relative;
  z-index: 2;
  width: 310px;
  padding: 11px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 44px;
  background: #03080d;
  box-shadow: 0 45px 120px rgba(0,0,0,.5);
  transform: rotate(3deg);
}
.phone-shell:before { position: absolute; z-index: 3; top: 18px; left: 50%; width: 84px; height: 20px; border-radius: 999px; background: #020508; content: ""; transform: translateX(-50%); }
.phone-shell img { width: 100%; border-radius: 34px; }
.hero-card { position: absolute; z-index: 3; display: flex; width: 190px; padding: 18px; border: 1px solid rgba(255,255,255,.15); border-radius: 18px; background: rgba(9,25,38,.82); box-shadow: var(--shadow); backdrop-filter: blur(14px); flex-direction: column; }
.hero-card span { color: var(--gold-bright); font-size: 10px; letter-spacing: .16em; }
.hero-card strong { margin-top: 8px; font-family: var(--serif); font-size: 24px; font-weight: 400; }
.hero-card small { margin-top: 3px; color: rgba(255,255,255,.52); }
.hero-card-top { top: 82px; right: -20px; }
.hero-card-bottom { bottom: 100px; left: -22px; }
.proof-strip { position: relative; z-index: 3; display: grid; margin-top: 56px; padding-top: 34px; border-top: 1px solid var(--line-light); grid-template-columns: repeat(4, 1fr); }
.proof-strip div { display: flex; min-height: 54px; padding: 0 25px; border-left: 1px solid var(--line-light); flex-direction: column; }
.proof-strip div:first-child { padding-left: 0; border-left: 0; }
.proof-strip strong { font-family: var(--serif); font-size: 22px; font-weight: 400; }
.proof-strip span { margin-top: 5px; color: rgba(255,255,255,.48); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }

.section { padding: 120px 0; }
.section h2 { font-size: clamp(48px, 5.2vw, 75px); }
.section-heading { margin-bottom: 62px; }
.split-heading { display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: 80px; }
.split-heading > p, .centered-heading > p, .faq-intro > p { color: var(--muted); }
.split-heading > p { max-width: 480px; margin: 0 0 4px; font-size: 18px; }
.feature-grid { display: grid; gap: 14px; grid-template-columns: 1.2fr .9fr .9fr; }
.feature-card { position: relative; min-height: 320px; padding: 34px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.48); }
.feature-card-large { background: var(--ink); color: var(--white); }
.feature-index { color: #92763d; font-size: 11px; font-weight: 700; letter-spacing: .14em; }
.feature-card h3 { margin: 68px 0 12px; font-family: var(--serif); font-size: 31px; font-weight: 400; line-height: 1.1; }
.feature-card p { margin: 0; color: var(--muted); }
.feature-card-large p { color: rgba(255,255,255,.63); }
.feature-card ul { display: flex; flex-wrap: wrap; gap: 7px; margin: 25px 0 0; padding: 0; list-style: none; }
.feature-card li { padding: 7px 10px; border: 1px solid rgba(255,255,255,.15); border-radius: 999px; color: rgba(255,255,255,.64); font-size: 10px; }
.screen-gallery { display: grid; align-items: end; gap: 26px; margin-top: 90px; grid-template-columns: repeat(3, 1fr); }
.screen-card { margin: 0; }
.screen-card img { width: min(100%, 330px); margin: 0 auto; border: 9px solid #0a121c; border-radius: 34px; box-shadow: 0 28px 65px rgba(7,18,29,.19); }
.screen-card-tall { transform: translateY(-26px); }
.screen-card figcaption { display: flex; margin-top: 20px; flex-direction: column; text-align: center; }
.screen-card figcaption strong { font-family: var(--serif); font-size: 24px; font-weight: 400; }
.screen-card figcaption span { margin-top: 4px; color: var(--muted); font-size: 12px; }
.center-action { display: flex; justify-content: center; margin-top: 48px; }
.text-link { padding-bottom: 4px; border-bottom: 1px solid currentColor; font-weight: 700; }
.text-link span { margin-left: 8px; }

.relationship { background: var(--navy); color: var(--white); }
.relationship-grid { display: grid; grid-template-columns: .82fr 1.18fr; align-items: start; gap: 110px; }
.relationship-copy { position: sticky; top: 130px; }
.relationship-copy > p:not(.eyebrow) { max-width: 480px; margin: 30px 0; color: rgba(255,255,255,.62); font-size: 18px; }
.role-stack { display: grid; gap: 14px; }
.role-card { position: relative; min-height: 210px; padding: 32px; border: 1px solid var(--line-light); border-radius: var(--radius); background: rgba(255,255,255,.045); }
.role-card > span { color: var(--gold-bright); font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.role-card h3 { max-width: 560px; margin: 46px 0 12px; font-family: var(--serif); font-size: 34px; font-weight: 400; line-height: 1.1; }
.role-card p { margin: 0; color: rgba(255,255,255,.56); }
.role-card-primary { background: linear-gradient(130deg, rgba(213,180,108,.18), rgba(255,255,255,.03)); }
.role-card-mt { padding-right: 120px; }
.mt-monogram { position: absolute; top: 28px; right: 28px; display: grid; width: 68px; height: 68px; place-items: center; border: 1px solid rgba(237,209,143,.4); border-radius: 50%; color: var(--gold-bright); font-family: var(--serif); font-size: 21px; }

.verify { background: #ece8df; }
.centered-heading { max-width: 760px; margin-right: auto; margin-left: auto; text-align: center; }
.centered-heading .eyebrow { justify-content: center; }
.centered-heading > p:last-child { max-width: 700px; margin: 28px auto 0; font-size: 17px; }
.verify-steps { display: grid; margin: 0; padding: 0; border-top: 1px solid var(--line); list-style: none; grid-template-columns: repeat(4, 1fr); }
.verify-steps li { min-height: 280px; padding: 28px; border-right: 1px solid var(--line); }
.verify-steps li:last-child { border-right: 0; }
.verify-steps > li > span { color: #987a3f; font-size: 11px; font-weight: 700; }
.verify-steps div { margin-top: 85px; }
.verify-steps h3 { margin: 0 0 12px; font-family: var(--serif); font-size: 25px; font-weight: 400; line-height: 1.15; }
.verify-steps p { margin: 0; color: var(--muted); font-size: 14px; }

.faq { background: var(--white); }
.faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 95px; }
.faq-intro { position: sticky; top: 130px; align-self: start; }
.faq-intro > p:last-of-type { margin-top: 28px; }
.faq-guide-link { display: inline-block; margin-top: 24px; }
.accordion details { border-top: 1px solid var(--line); }
.accordion details:last-child { border-bottom: 1px solid var(--line); }
.accordion summary { position: relative; padding: 28px 54px 28px 0; cursor: pointer; font-family: var(--serif); font-size: 25px; list-style: none; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary span:before, .accordion summary span:after { position: absolute; top: 50%; right: 4px; width: 18px; height: 1px; background: var(--ink); content: ""; transition: transform .2s ease; }
.accordion summary span:after { transform: rotate(90deg); }
.accordion details[open] summary span:after { transform: rotate(0); }
.accordion details p { max-width: 720px; margin: -6px 0 28px; color: var(--muted); }

.download { background: var(--paper); }
.download-panel { display: grid; padding: 70px; border-radius: 32px; background: linear-gradient(135deg, #0c1e2d, #08131f); color: var(--white); grid-template-columns: 1.2fr .8fr; gap: 80px; }
.download-panel h2 { font-size: clamp(42px, 4.7vw, 66px); }
.download-panel > div:first-child > p:last-child { max-width: 600px; margin-top: 28px; color: rgba(255,255,255,.6); }
.store-list { display: grid; align-content: center; gap: 10px; }
.store-button { display: flex; min-height: 76px; align-items: center; gap: 15px; padding: 12px 18px; border: 1px solid rgba(255,255,255,.17); border-radius: 16px; background: rgba(255,255,255,.055); transition: background .2s ease, transform .2s ease; }
.store-button:hover, .store-button:focus-visible { background: rgba(255,255,255,.11); transform: translateX(3px); }
.store-button-light { border-color: rgba(213,180,108,.28); }
.store-icon { display: grid; width: 42px; height: 42px; place-items: center; border-radius: 12px; background: var(--white); color: var(--ink); font-family: var(--serif); font-size: 20px; }
.store-icon-play { background: var(--gold-bright); }
.store-button > span:last-child { display: flex; flex-direction: column; line-height: 1.15; }
.store-button small { color: rgba(255,255,255,.48); font-size: 10px; }
.store-button strong { margin-top: 3px; font-size: 16px; }

.site-footer { padding: 78px 0 28px; background: #050c13; color: var(--white); }
.footer-grid { display: grid; gap: 50px; grid-template-columns: 1.55fr repeat(3, .65fr); }
.footer-grid > div { display: flex; align-items: flex-start; flex-direction: column; }
.footer-grid > div:first-child > p { max-width: 330px; margin: 22px 0 0; color: rgba(255,255,255,.45); font-size: 13px; }
.footer-grid > div > strong { margin-bottom: 14px; color: var(--gold-bright); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.footer-grid > div > a:not(.brand) { padding: 5px 0; color: rgba(255,255,255,.58); font-size: 13px; }
.footer-grid > div > a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; margin-top: 62px; padding-top: 24px; border-top: 1px solid var(--line-light); color: rgba(255,255,255,.4); font-size: 11px; }

/* Inner pages */
.page-shell { background: var(--paper); }
.page-header { background: var(--navy); }
.page-hero { padding: 160px 0 90px; background: linear-gradient(150deg, #07121d, #10283c); color: var(--white); }
.page-hero .wrap { max-width: 980px; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; color: rgba(255,255,255,.45); font-size: 12px; }
.breadcrumbs a { color: var(--gold-bright); }
.page-hero h1 { max-width: 920px; font-size: clamp(54px, 7vw, 88px); }
.page-hero .page-lede { max-width: 800px; margin: 30px 0 0; color: rgba(255,255,255,.68); font-size: 19px; }
.not-found-hero { display: grid; min-height: 70vh; align-items: center; }
.page-meta { display: flex; flex-wrap: wrap; gap: 10px 24px; margin-top: 32px; color: rgba(255,255,255,.42); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }
.article-section { padding: 90px 0; }
.article-wrap { width: min(900px, calc(100% - 48px)); margin: 0 auto; }
.article-wrap h2 { margin: 70px 0 20px; font-family: var(--serif); font-size: clamp(36px, 5vw, 55px); font-weight: 400; line-height: 1.06; letter-spacing: -.035em; }
.article-wrap h3 { margin: 38px 0 12px; font-family: var(--serif); font-size: 27px; font-weight: 400; }
.article-wrap > p, .article-wrap li { color: #475563; font-size: 17px; line-height: 1.78; }
.article-wrap ul, .article-wrap ol { padding-left: 24px; }
.answer-box, .fact-box, .note-box { margin: 34px 0; padding: 28px; border: 1px solid var(--line); border-radius: 20px; background: rgba(255,255,255,.55); }
.answer-box { border-left: 4px solid var(--gold); }
.answer-box strong, .fact-box strong, .note-box strong { display: block; margin-bottom: 8px; color: #8a6f39; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.answer-box p, .fact-box p, .note-box p { margin: 0; color: #344352; }
.entity-table { width: 100%; margin: 32px 0; border-collapse: collapse; background: rgba(255,255,255,.55); }
.entity-table th, .entity-table td { padding: 16px; border: 1px solid var(--line); text-align: left; vertical-align: top; }
.entity-table th { width: 32%; color: #8a6f39; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.evidence-grid { display: grid; gap: 22px; margin: 38px 0; grid-template-columns: repeat(2, 1fr); }
.evidence-figure { margin: 0; padding: 22px; border: 1px solid var(--line); border-radius: 22px; background: rgba(255,255,255,.55); }
.evidence-figure img { max-height: 680px; margin: 0 auto; border-radius: 20px; box-shadow: 0 20px 45px rgba(7,18,29,.17); }
.evidence-figure figcaption { margin-top: 18px; }
.evidence-figure figcaption strong { display: block; font-family: var(--serif); font-size: 24px; font-weight: 400; }
.evidence-figure figcaption span { color: var(--muted); font-size: 13px; }
.legal-list { display: grid; gap: 12px; margin: 32px 0; }
.legal-list article { padding: 24px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.48); }
.legal-list h3 { margin: 0 0 8px; }
.legal-list p { margin: 0; color: var(--muted); }
.page-cta { margin-top: 70px; padding: 40px; border-radius: 24px; background: var(--navy); color: var(--white); }
.page-cta h2 { margin-top: 0; font-size: 42px; }
.page-cta p { color: rgba(255,255,255,.62); }
.page-cta .button { margin-top: 12px; }
.guide-index {
  display: flex;
  margin: 34px 0 72px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.52);
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 18px;
}
.guide-index strong { margin-right: 8px; color: #8a6f39; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.guide-index a { padding-bottom: 2px; border-bottom: 1px solid rgba(11,23,36,.24); color: #40505f; font-size: 13px; }
.guide-index a:hover, .guide-index a:focus-visible { border-color: currentColor; color: var(--ink); }
.guide-group { padding-top: 16px; scroll-margin-top: 100px; }
.guide-group + .guide-group { margin-top: 72px; padding-top: 72px; border-top: 1px solid var(--line); }
.guide-group h2 { margin-top: 12px; }
.guide-group h3 { margin-top: 42px; }
.guide-kicker { margin: 0; color: #8a6f39; font-size: 11px !important; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }

/* Official verification center */
.page-shell .verification-wrap { width: min(1180px, calc(100% - 48px)); }
.verification-stats { display: grid; margin: 42px 0 92px; border-block: 1px solid var(--line); grid-template-columns: repeat(3, 1fr); }
.verification-stats div { display: flex; min-height: 126px; padding: 24px 28px; align-items: center; border-right: 1px solid var(--line); gap: 18px; }
.verification-stats div:last-child { border-right: 0; }
.verification-stats strong { color: var(--gold); font-family: var(--serif); font-size: 48px; font-weight: 400; line-height: 1; }
.verification-stats span { max-width: 150px; color: var(--muted); font-size: 12px; font-weight: 700; letter-spacing: .08em; line-height: 1.45; text-transform: uppercase; }
.verification-section { padding-top: 18px; scroll-margin-top: 100px; }
.verification-section + .verification-section { margin-top: 92px; padding-top: 92px; border-top: 1px solid var(--line); }
.verification-section > h2 { margin-top: 14px; }
.verification-section > p:not(.guide-kicker):not(.verification-review) { max-width: 820px; color: #475563; font-size: 17px; line-height: 1.78; }
.record-grid { display: grid; margin: 40px 0 34px; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.record-card, .document-record { border: 1px solid var(--line); background: rgba(255,255,255,.38); }
.record-card { padding: 30px; }
.record-card-top, .document-record-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; }
.record-label { color: #8a6f39; font-size: 10px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.record-status { display: inline-flex; min-height: 26px; padding: 0 10px; align-items: center; border: 1px solid rgba(91,111,83,.38); background: rgba(91,111,83,.08); color: #50654a; font-size: 9px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; white-space: nowrap; }
.record-card h3, .document-record h3, .marketplace-record-grid h3 { margin: 24px 0 20px; font-family: var(--serif); font-size: 31px; font-weight: 400; line-height: 1.08; }
.record-facts { margin: 0; }
.record-facts > div { display: grid; padding: 12px 0; border-top: 1px solid var(--line); grid-template-columns: minmax(120px, .72fr) minmax(0, 1.28fr); gap: 20px; }
.record-facts dt, .marketplace-record-grid dt { color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.record-facts dd, .marketplace-record-grid dd { margin: 0; color: #334250; font-size: 13px; line-height: 1.55; }
.record-facts code, .marketplace-record-grid code { color: #1c3144; font-family: Consolas, "SFMono-Regular", monospace; font-size: .95em; }
.record-actions { display: flex; margin-top: 24px; align-items: flex-start; flex-direction: column; gap: 18px; }
.button-outline-dark { border-color: rgba(21,37,54,.36); color: var(--ink); }
.button-outline-dark:hover { border-color: var(--ink); }
.document-ledger { display: grid; margin-top: 40px; gap: 18px; }
.document-record { padding: 34px; scroll-margin-top: 100px; }
.document-record-head > div { max-width: 760px; }
.document-record-head h3 { margin-bottom: 24px; }
.document-facts > div { grid-template-columns: 180px minmax(0, 1fr); }
.fingerprint { display: block; overflow-wrap: anywhere; color: #3b5063 !important; line-height: 1.7; }
.marketplace-record-grid { display: grid; margin-top: 40px; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.marketplace-record-grid > article { display: grid; min-height: 350px; padding: 32px; border: 1px solid var(--line); background: rgba(255,255,255,.38); grid-template-columns: 58px minmax(0, 1fr); gap: 22px; }
.marketplace-record-mark { display: flex; width: 58px; height: 58px; align-items: center; justify-content: center; border: 1px solid rgba(184,146,95,.48); color: #8a6f39; font-family: var(--serif); font-size: 24px; }
.marketplace-record-grid h3 { margin-top: 14px; }
.marketplace-record-grid dl { margin: 0 0 26px; }
.marketplace-record-grid dl > div { display: grid; padding: 10px 0; border-top: 1px solid var(--line); grid-template-columns: 120px minmax(0, 1fr); gap: 12px; }
.verification-steps-list { margin: 38px 0 0; padding: 0 !important; list-style: none; }
.verification-steps-list li { display: grid; min-height: 150px; padding: 28px 0; align-items: start; border-top: 1px solid var(--line); grid-template-columns: 90px minmax(0, 1fr); gap: 24px; }
.verification-steps-list li > span { color: var(--gold); font-family: var(--serif); font-size: 42px; line-height: 1; }
.verification-steps-list h3 { margin: 0 0 8px; }
.verification-steps-list p { max-width: 680px; margin: 0; color: var(--muted); font-size: 15px; }
.verification-review { margin: 30px 0 0; padding: 24px; border-left: 3px solid var(--gold); background: rgba(255,255,255,.38); color: #475563; font-size: 14px; line-height: 1.7; }
.verification-review a { color: var(--ink); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.page-cta-actions { display: flex; margin-top: 22px; flex-wrap: wrap; gap: 12px; }
.page-cta-actions .button { margin-top: 0; }
.button-outline-light { border-color: rgba(255,255,255,.34); color: var(--white); }
.button-outline-light:hover { border-color: rgba(255,255,255,.72); }
.firm-links { display: flex; margin-top: 28px; align-items: flex-start; flex-direction: column; gap: 18px; }

@media (max-width: 980px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: block; }
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 30px; }
  .hero-copy { text-align: center; }
  .hero-copy .eyebrow, .hero-actions { justify-content: center; }
  .hero-lede, .hero-note { margin-right: auto; margin-left: auto; }
  .hero-media { min-height: 600px; }
  .hero-card-top { right: 8%; }
  .hero-card-bottom { left: 7%; }
  .split-heading, .relationship-grid, .faq-grid, .download-panel { grid-template-columns: 1fr; gap: 44px; }
  .relationship-copy, .faq-intro { position: static; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .feature-card-large { grid-column: 1 / -1; }
  .verify-steps { grid-template-columns: repeat(2, 1fr); }
  .verify-steps li:nth-child(2) { border-right: 0; }
  .verify-steps li:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .footer-grid { grid-template-columns: 1.3fr repeat(3, .7fr); gap: 28px; }
  .record-grid, .marketplace-record-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .wrap, .article-wrap { width: min(100% - 32px, 1180px); }
  .site-header, .header-inner { height: 68px; }
  .mobile-nav { inset: 68px 0 0; }
  .brand-copy small { display: none; }
  .hero { padding-top: 124px; }
  .hero h1 { font-size: clamp(48px, 14vw, 68px); }
  .hero-lede { font-size: 17px; }
  .hero-media { min-height: 520px; }
  .phone-shell { width: 250px; border-radius: 38px; }
  .phone-shell img { border-radius: 29px; }
  .hero-card { width: 150px; padding: 14px; }
  .hero-card strong { font-size: 20px; }
  .hero-card-top { top: 50px; right: -4px; }
  .hero-card-bottom { bottom: 78px; left: -3px; }
  .proof-strip { grid-template-columns: 1fr 1fr; }
  .proof-strip div { padding: 16px 10px; border-bottom: 1px solid var(--line-light); }
  .proof-strip div:nth-child(odd) { padding-left: 0; border-left: 0; }
  .section { padding: 82px 0; }
  .section h2 { font-size: clamp(42px, 12vw, 60px); }
  .section-heading { margin-bottom: 42px; }
  .feature-grid, .screen-gallery, .verify-steps, .evidence-grid { grid-template-columns: 1fr; }
  .feature-card-large { grid-column: auto; }
  .feature-card { min-height: 270px; }
  .screen-gallery { gap: 58px; }
  .screen-card-tall { transform: none; }
  .screen-card img { width: min(88%, 330px); }
  .verify-steps li, .verify-steps li:nth-child(2) { min-height: auto; padding: 25px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .verify-steps div { margin-top: 34px; }
  .download-panel { padding: 35px 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .page-hero { padding: 130px 0 65px; }
  .page-hero h1 { font-size: clamp(46px, 13vw, 66px); }
  .article-section { padding: 65px 0; }
  .article-wrap h2 { margin-top: 55px; }
  .guide-index { align-items: flex-start; flex-direction: column; }
  .guide-index strong { margin-bottom: 3px; }
  .guide-group + .guide-group { margin-top: 54px; padding-top: 54px; }
  .entity-table, .entity-table tbody, .entity-table tr, .entity-table th, .entity-table td { display: block; width: 100%; }
  .entity-table th { border-bottom: 0; }
  .page-shell .verification-wrap { width: min(100% - 32px, 1180px); }
  .verification-stats { margin-bottom: 68px; grid-template-columns: 1fr; }
  .verification-stats div { min-height: 92px; padding-inline: 8px; border-right: 0; border-bottom: 1px solid var(--line); }
  .verification-stats div:last-child { border-bottom: 0; }
  .verification-section + .verification-section { margin-top: 68px; padding-top: 68px; }
  .record-card, .document-record { padding: 24px 20px; }
  .record-card-top, .document-record-head { flex-direction: column; }
  .record-facts > div, .document-facts > div { grid-template-columns: 1fr; gap: 6px; }
  .marketplace-record-grid > article { min-height: 0; padding: 24px 20px; grid-template-columns: 44px minmax(0, 1fr); gap: 16px; }
  .marketplace-record-mark { width: 44px; height: 44px; font-size: 20px; }
  .marketplace-record-grid dl > div { grid-template-columns: 1fr; gap: 5px; }
  .verification-steps-list li { grid-template-columns: 58px minmax(0, 1fr); gap: 14px; }
  .verification-steps-list li > span { font-size: 34px; }
  .page-cta-actions { align-items: stretch; flex-direction: column; }
}

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

/* Inner pages aligned to the original GSSCP site design system. */
.page-shell {
  --radius: 0;
  --paper: #f5f3ed;
  --paper-2: #ece8df;
  --ink: #152536;
  --navy: #07131f;
  --gold: #b8925f;
  --gold-bright: #d8b889;
  --muted: #5e6b78;
  background: var(--paper);
  font-family: Arial, "Helvetica Neue", sans-serif;
}
.page-shell .wrap { width: min(100%, 1440px); padding-inline: clamp(24px, 5vw, 76px); }
.page-shell .site-header, .page-shell .header-inner { height: 88px; }
.page-shell .site-header { border-bottom: 1px solid rgba(255,255,255,.13); background: rgba(5,13,21,.96); }
.page-shell .brand-mark { width: 38px; height: 38px; border-radius: 0; font-size: 15px; }
.page-shell .brand-copy strong { font-family: Georgia, "Times New Roman", serif; font-size: 17px; font-weight: 400; letter-spacing: .015em; }
.page-shell .brand-copy small { font-size: 8px; letter-spacing: .2em; }
.page-shell .desktop-nav { gap: clamp(18px, 2vw, 32px); font-size: 12px; font-weight: 700; }
.page-shell .desktop-nav .nav-cta { border-radius: 0; }
.page-shell .menu-toggle { border: 1px solid rgba(255,255,255,.32); }
.page-shell .page-hero {
  padding: 190px 0 105px;
  border-bottom: 1px solid rgba(255,255,255,.12);
  background:
    linear-gradient(90deg, rgba(5,13,21,.98), rgba(7,19,31,.91) 58%, rgba(16,35,56,.82)),
    url("/assets/hero-denver.jpg") center 45% / cover;
}
.page-shell .page-hero .wrap { max-width: 1440px; }
.page-shell .page-hero h1 { max-width: 940px; font-size: clamp(58px, 6.6vw, 96px); line-height: .94; }
.page-shell .page-hero .page-lede { max-width: 760px; color: rgba(255,255,255,.72); }
.page-shell .breadcrumbs { color: rgba(255,255,255,.5); }
.page-shell .article-section { padding: 105px 0 130px; }
.page-shell .article-wrap { width: min(920px, calc(100% - 48px)); }
.page-shell .article-wrap h2 { font-size: clamp(40px, 5vw, 60px); }
.page-shell .answer-box, .page-shell .fact-box, .page-shell .note-box,
.page-shell .evidence-figure, .page-shell .legal-list article,
.page-shell .page-cta, .page-shell .guide-index { border-radius: 0; }
.page-shell .answer-box, .page-shell .fact-box, .page-shell .note-box,
.page-shell .evidence-figure, .page-shell .legal-list article { background: rgba(255,255,255,.34); }
.page-shell .evidence-figure img { border-radius: 0; }
.page-shell .page-cta { background: #07131f; }
.page-shell .button { border-radius: 0; }
.page-shell .site-footer { background: #050d15; }
.page-shell .footer-grid { width: min(100%, 1440px); }

@media (max-width: 1100px) {
  .page-shell .site-header, .page-shell .header-inner { height: 76px; }
  .page-shell .desktop-nav { display: none; }
  .page-shell .menu-toggle { display: block; }
  .page-shell .mobile-nav { inset: 76px 0 0; }
}
@media (max-width: 720px) {
  .page-shell .wrap { width: 100%; padding-inline: 24px; }
  .page-shell .page-hero { padding: 145px 0 72px; }
  .page-shell .page-hero h1 { font-size: clamp(48px, 14vw, 67px); }
  .page-shell .article-wrap { width: min(100% - 32px, 920px); }
}
