:root {
  --ink: #424242;
  --muted: #7a7a7a;
  --line: #e6e2dc;
  --paper: #f6f5f2;
  --white: #ffffff;
  --warm: #f7f3ee;
  --deep: #1f2424;
  --soft-dark: #333535;
  --accent: #f5a000;
  --accent-dark: #d98600;
  --max: 1180px;
  --shadow: 0 18px 42px rgba(38, 38, 38, .12);
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Yu Gothic", "Noto Sans CJK SC", sans-serif;
  color: var(--ink);
  background: var(--white);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; line-height: 1.78; -webkit-font-smoothing: antialiased; background: var(--paper); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
address { font-style: normal; }
.eyebrow { margin: 0 0 14px; color: var(--accent); font-size: 13px; font-weight: 900; letter-spacing: .02em; }
.button { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid currentColor; padding: 12px 24px; border-radius: 5px; font-weight: 900; transition: transform .2s ease, background .2s ease, box-shadow .2s ease; }
.button:hover { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(0,0,0,.16); }
.button-red { background: var(--accent); border-color: var(--accent); color: #fff; }
.button-red:hover { background: var(--accent-dark); border-color: var(--accent-dark); }
.button-ghost { color: #fff; border-color: rgba(255,255,255,.58); background: rgba(255,255,255,.08); }

.site-header { position: sticky; top: 0; z-index: 20; min-height: 88px; padding: 0 clamp(18px, 3.5vw, 64px); display: flex; align-items: center; gap: clamp(14px, 2vw, 28px); justify-content: space-between; background: rgba(255,255,255,.95); border-bottom: 1px solid rgba(0,0,0,.04); backdrop-filter: blur(16px); }
.brand { display: flex; align-items: center; min-width: 150px; }
.brand-logo { width: 150px; height: auto; object-fit: contain; }
.brand b { display: none; }
.brand small { display: none; }
.site-nav { display: flex; gap: clamp(14px, 1.7vw, 26px); font-size: 14px; font-weight: 800; color: #555; white-space: nowrap; }
.site-nav a:hover { color: var(--accent); }
.locale-switcher { display: flex; gap: 8px; font-size: 13px; font-weight: 900; align-items: center; }
.locale-switcher a { padding: 7px 10px; border-radius: 4px; color: #555; }
.locale-switcher .is-active { background: var(--accent); color: #fff; }

.hero {
  min-height: calc(100vh - 88px);
  display: grid;
  place-items: center;
  padding: clamp(38px, 5vh, 64px) clamp(20px, 7vw, 132px);
  background:
    linear-gradient(90deg, rgba(0,0,0,.64), rgba(0,0,0,.28)),
    linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.38)),
    url("/assets/hero-atrium.webp") center / cover no-repeat;
  color: #fff;
  text-align: center;
}
.hero-copy { max-width: 980px; }
.hero h1 { margin: 0 auto; max-width: 1040px; font-size: clamp(40px, 5vw, 66px); line-height: 1.16; letter-spacing: 0; }
.hero-positioning { max-width: 920px; margin: 26px auto 0; color: #fff; font-size: clamp(18px, 2vw, 24px); line-height: 1.55; font-weight: 900; }
.hero-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 38px; }
.hero-service-links { width: min(900px, 100%); display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; margin: 24px auto 0; }
.hero-service-links a { min-width: 0; min-height: 54px; display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 12px 16px; border: 1px solid rgba(255,255,255,.3); border-radius: 4px; background: rgba(16,18,18,.46); color: #fff; text-align: left; font-size: 15px; font-weight: 900; transition: border-color .2s ease, background .2s ease; }
.hero-service-links a:hover { border-color: var(--accent); background: rgba(16,18,18,.72); }
.hero-service-links span { flex: 0 0 auto; color: var(--accent); font-size: 20px; }
.hero-proof { max-width: 900px; margin: 20px auto 0; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.22); }
.hero-proof strong { display: block; color: #fff; font-size: 15px; font-weight: 900; }
.hero-visual { display: none; }

.section { padding: clamp(70px, 9vw, 118px) clamp(20px, 7vw, 132px); background: var(--white); }
.section-white { background: var(--white); }
.section-paper { background: var(--paper); }
.section-dark { background: var(--deep); color: #fff; }
.section-head, .about-grid, .strategy-grid, .principle-grid, .service-grid, .office-grid, .founder-section, .metric-band, .ai-product-grid { max-width: var(--max); margin: 0 auto; }
.section-head { margin-bottom: 46px; text-align: center; }
.section-head h2, .about-grid h2, .founder-section h2 { margin: 0; font-size: clamp(32px, 4vw, 52px); line-height: 1.18; letter-spacing: 0; color: var(--soft-dark); }
.section-head p:last-child { max-width: 820px; margin: 16px auto 0; color: var(--muted); font-weight: 700; }
.section-dark .section-head h2, .section-dark .section-head { color: #fff; }
.section-dark .eyebrow { color: var(--accent); }

.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(34px, 6vw, 88px); align-items: start; text-align: left; }
.about-grid > p { margin: 0; color: var(--muted); font-size: 20px; font-weight: 700; }
.brand-entities { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.brand-entity { min-width: 0; padding: clamp(26px, 4vw, 42px); border: 1px solid var(--line); border-top: 5px solid var(--accent); border-radius: 4px; background: #fff; box-shadow: var(--shadow); }
.brand-entity > p:first-child { margin: 0; color: var(--accent-dark); font-size: 13px; font-weight: 900; }
.brand-entity h3 { margin: 16px 0 14px; color: var(--soft-dark); font-size: clamp(22px, 2.4vw, 32px); line-height: 1.35; }
.brand-entity > p:last-child { margin: 0; color: var(--muted); font-weight: 700; }
.metric-band { counter-reset: metric; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; background: transparent; padding: 0 clamp(20px, 7vw, 132px) 42px; }
.metric-band strong {
  counter-increment: metric;
  min-height: 118px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  padding: 24px;
  background: var(--white);
  color: var(--soft-dark);
  text-align: left;
  font-size: clamp(15px, 1.5vw, 20px);
  line-height: 1.45;
  box-shadow: var(--shadow);
  border-radius: 4px;
  border-top: 4px solid var(--accent);
}
.metric-band strong::before {
  content: "0" counter(metric);
  display: block;
  width: fit-content;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
  color: var(--accent);
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0;
}

.strategy-grid, .principle-grid, .service-grid, .office-grid { display: grid; gap: 22px; }
.strategy-grid { grid-template-columns: repeat(3, 1fr); }
.principle-grid { grid-template-columns: repeat(4, 1fr); }
.service-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.office-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.strategy-card, .principle-card, .service-card, .office-card { min-width: 0; padding: 26px; background: #fff; border: 1px solid var(--line); border-radius: 4px; box-shadow: 0 12px 30px rgba(28,28,28,.07); }
.section-dark .service-card { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.12); box-shadow: none; }
.strategy-card span, .principle-card span, .service-card span, .office-card p { margin: 0; color: var(--accent); font-weight: 900; }
.strategy-card h3, .principle-card h3, .service-card h3, .office-card h3 { margin: 16px 0 10px; line-height: 1.24; font-size: 22px; color: var(--soft-dark); }
.section-dark .service-card h3 { color: #fff; }
.strategy-card p, .principle-card p, .service-card p, .office-card address, .office-card small { color: var(--muted); }
.section-dark .service-card p { color: rgba(255,255,255,.76); }
.office-card a, .office-card small { display: block; margin-top: 10px; }

.founder-section { display: grid; grid-template-columns: 350px minmax(0, 1fr); gap: clamp(34px, 6vw, 72px); align-items: center; background: var(--white); }
.founder-section img { aspect-ratio: 1; object-fit: cover; filter: grayscale(.08); box-shadow: var(--shadow); }
.role { color: var(--accent); font-weight: 900; }
.partner-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.partner-list span, .profile-name { padding: 7px 10px; border: 1px solid var(--line); border-radius: 0; background: #fff; color: var(--soft-dark); font: inherit; font-size: 13px; font-weight: 800; }
.profile-name { cursor: pointer; transition: color .2s ease, border-color .2s ease, background .2s ease; }
.profile-name:hover, .profile-name:focus-visible { border-color: var(--accent); background: var(--warm); color: var(--accent-dark); outline: none; }
.team-profile-dialog { width: min(980px, calc(100vw - 40px)); max-height: min(820px, calc(100vh - 40px)); padding: 0; border: 0; border-radius: 4px; background: #fff; color: var(--ink); box-shadow: 0 28px 90px rgba(0,0,0,.3); overflow: auto; }
.team-profile-dialog::backdrop { background: rgba(12,14,14,.76); backdrop-filter: blur(5px); }
.team-profile-layout { position: relative; display: grid; grid-template-columns: minmax(300px, .78fr) minmax(0, 1.22fr); min-height: 680px; }
.team-profile-photo { min-height: 100%; background: var(--deep); }
.team-profile-photo img { width: 100%; height: 100%; min-height: 680px; object-fit: cover; object-position: center top; }
.team-profile-copy { padding: clamp(34px, 5vw, 64px); }
.team-profile-copy h2 { margin: 0; color: var(--soft-dark); font-size: clamp(36px, 5vw, 58px); line-height: 1.1; }
.team-profile-role { margin: 12px 0 26px; color: var(--accent-dark); font-size: 18px; font-weight: 900; }
.team-profile-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 0 0 30px; padding: 18px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.team-profile-facts dt { color: var(--muted); font-size: 12px; font-weight: 900; }
.team-profile-facts dd { margin: 3px 0 0; color: var(--soft-dark); font-weight: 900; }
.team-profile-copy section + section { margin-top: 24px; }
.team-profile-copy h3 { margin: 0 0 10px; color: var(--soft-dark); font-size: 17px; }
.team-profile-copy ul { margin: 0; padding-left: 1.15em; color: var(--muted); font-weight: 700; }
.profile-close { position: absolute; z-index: 2; top: 14px; right: 14px; width: 42px; height: 42px; padding: 0; border: 1px solid var(--line); border-radius: 50%; background: rgba(255,255,255,.94); color: var(--soft-dark); font-size: 28px; line-height: 1; cursor: pointer; }
.profile-close:hover, .profile-close:focus-visible { border-color: var(--accent); color: var(--accent-dark); outline: none; }

.site-footer { padding: 58px clamp(20px, 7vw, 132px) 28px; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 30px; background: #2f3030; color: #e5e1da; }
.site-footer h2 { margin: 0; color: #fff; }
.site-footer p { margin: 0; }
.footer-logo { width: 154px; height: auto; margin-bottom: 18px; padding: 8px 10px; border-radius: 3px; background: #fff; }
.site-footer > div:first-child small { display: block; max-width: 340px; margin-top: 14px; color: #aaa69f; line-height: 1.65; }
.footer-entities { display: grid; gap: 18px; }
.footer-entities p { display: grid; gap: 4px; }
.footer-entities strong { color: #fff; font-size: 14px; line-height: 1.55; }
.footer-entities span { color: #aaa69f; font-size: 12px; font-weight: 700; }
.footer-contact { display: grid; align-content: space-between; gap: 20px; }
.footer-contact p { color: #aaa69f; font-size: 12px; }
.footer-filing { grid-column: 1 / -1; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 10px 18px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); color: #aaa69f; font-size: 12px; line-height: 1.5; text-align: center; }
.footer-filing a { transition: color .2s ease; }
.public-security-filing { display: inline-flex; align-items: center; gap: 6px; }
.public-security-filing img { width: 20px; height: 20px; flex: 0 0 20px; object-fit: contain; }
.footer-filing a:hover, .footer-filing a:focus-visible { color: var(--accent); outline: none; }

.page-hero {
  padding: clamp(86px, 12vw, 150px) clamp(20px, 7vw, 132px) 82px;
  background:
    linear-gradient(90deg, rgba(0,0,0,.58), rgba(0,0,0,.36)),
    url("/assets/hero-atrium.webp") center / cover no-repeat;
  color: #fff;
  text-align: center;
}
.page-hero h1 { max-width: 980px; margin: 0 auto; font-size: clamp(44px, 6vw, 76px); line-height: 1.12; letter-spacing: 0; }
.page-hero p:not(.eyebrow) { max-width: 780px; margin-left: auto; margin-right: auto; color: rgba(255,255,255,.88); font-size: 20px; font-weight: 700; }
.feature-copy { max-width: var(--max); margin: 0 auto; color: var(--muted); font-size: 20px; font-weight: 700; }
.culture-principles { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 1px solid var(--line); }
.culture-principle { min-width: 0; padding: 30px 24px 0 0; }
.culture-principle + .culture-principle { padding-left: 24px; border-left: 1px solid var(--line); }
.culture-principle strong { display: block; margin-bottom: 14px; color: var(--accent-dark); font-size: 20px; font-weight: 900; }
.culture-principle p { margin: 0; color: var(--muted); line-height: 1.8; }
.timeline-grid, .detail-grid, .team-grid, .news-list, .workflow-list, .contact-lead, .faq-list { max-width: var(--max); margin: 0 auto; }
.timeline-grid, .detail-grid, .team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.timeline-grid article, .detail-card, .team-grid article, .news-list article { background: #fff; border: 1px solid var(--line); border-radius: 4px; padding: 28px; box-shadow: 0 12px 30px rgba(28,28,28,.07); }
.timeline-grid span, .detail-card span, .news-list time { color: var(--accent); font-weight: 900; }
.detail-card h2, .team-grid h2, .news-list h2 { margin: 12px 0; line-height: 1.22; color: var(--soft-dark); }
.detail-card ul { margin: 18px 0 0; padding-left: 1.2em; color: var(--muted); }
.team-grid article div { display: flex; flex-wrap: wrap; gap: 8px; }
.team-grid span { padding: 7px 10px; border: 1px solid var(--line); font-size: 13px; font-weight: 800; }
.news-list { display: grid; gap: 16px; }
.news-list article { display: grid; grid-template-columns: 100px 140px 1fr; align-items: baseline; gap: 20px; }
.news-list p { margin: 0; color: var(--muted); }
.news-hub { background: #fff; }
.news-topics { max-width: var(--max); margin: 0 auto 54px; display: flex; flex-wrap: wrap; gap: 0 24px; border-bottom: 1px solid var(--line); }
.news-topics a { position: relative; padding: 14px 0 13px; color: var(--muted); font-size: 14px; font-weight: 900; }
.news-topics a:hover, .news-topics a.is-active { color: var(--soft-dark); }
.news-topics a.is-active::after { content: ""; position: absolute; right: 0; bottom: -1px; left: 0; height: 3px; background: var(--accent); }
.news-featured { max-width: var(--max); margin: 0 auto 72px; display: grid; grid-template-columns: minmax(0, 1fr) 210px; gap: clamp(30px, 6vw, 80px); padding: clamp(32px, 5vw, 58px); background: var(--deep); color: #fff; }
.news-featured h2 { max-width: 820px; margin: 0; font-size: clamp(30px, 4vw, 50px); line-height: 1.18; }
.news-featured h2 a:hover { color: var(--accent); }
.news-featured > div > p:last-child { max-width: 760px; margin: 20px 0 0; color: rgba(255,255,255,.7); font-size: 17px; font-weight: 700; }
.news-featured-meta { display: flex; flex-direction: column; justify-content: space-between; gap: 18px; padding-left: 24px; border-left: 1px solid rgba(255,255,255,.2); color: rgba(255,255,255,.72); font-weight: 800; }
.news-featured-meta span { align-self: flex-end; color: var(--accent); font-size: 56px; line-height: 1; font-weight: 900; }
.news-list-heading { max-width: var(--max); margin: 0 auto 24px; }
.news-list-heading h2 { margin: 0; color: var(--soft-dark); font-size: clamp(27px, 3vw, 40px); line-height: 1.2; }
.news-list-heading > p:last-child { max-width: 760px; color: var(--muted); font-weight: 700; }
.news-hub .news-list { gap: 0; border-top: 1px solid var(--line); }
.news-hub .news-list article { grid-template-columns: 260px minmax(0, 1fr); gap: 36px; align-items: center; padding: 26px 0; border: 0; border-bottom: 1px solid var(--line); border-radius: 0; box-shadow: none; }
.news-hub .news-list h2 { margin: 0; font-size: clamp(20px, 2vw, 28px); }
.news-hub .news-list h2 a:hover { color: var(--accent-dark); }
.news-meta { display: grid; grid-template-columns: 100px minmax(0, 1fr); gap: 4px 12px; align-items: baseline; }
.news-meta time { white-space: nowrap; }
.news-meta span { color: var(--soft-dark); font-size: 14px; font-weight: 900; }
.news-meta small { grid-column: 2; color: var(--muted); font-size: 12px; font-weight: 700; }
.news-empty { max-width: var(--max); min-height: 180px; margin: 0 auto; padding: 46px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); color: var(--muted); font-size: 18px; font-weight: 800; }
.news-category-hero { padding-top: clamp(74px, 9vw, 112px); }
.contact-lead { margin-bottom: 30px; padding: 24px 28px; background: var(--warm); border-left: 5px solid var(--accent); font-weight: 900; }
.contact-lead p { margin: 4px 0; }
.wechat-note { max-width: var(--max); margin: 24px auto 0; font-weight: 900; color: var(--accent); }
.faq-list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.faq-list article { min-width: 0; padding: 26px; background: #fff; border: 1px solid var(--line); border-radius: 4px; box-shadow: 0 12px 30px rgba(28,28,28,.07); }
.faq-list h3 { margin: 0 0 12px; color: var(--soft-dark); font-size: 20px; line-height: 1.28; }
.faq-list p { margin: 0; color: var(--muted); font-weight: 750; }
.service-answer { max-width: none; text-align: center; }
.service-answer > p { max-width: 980px; margin-left: auto; margin-right: auto; }
.service-answer > p:last-child { color: var(--soft-dark); font-size: clamp(20px, 2.4vw, 28px); line-height: 1.65; font-weight: 800; }
.service-detail-grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.service-detail-card { min-width: 0; padding: 26px; border-top: 4px solid var(--accent); background: #fff; box-shadow: 0 12px 30px rgba(28,28,28,.07); }
.service-detail-card span { color: var(--accent); font-size: 13px; font-weight: 900; }
.service-detail-card p { margin: 30px 0 0; color: var(--soft-dark); font-size: 18px; line-height: 1.5; font-weight: 900; }
.service-provider-band { max-width: var(--max); margin: 0 auto; padding: 24px clamp(20px, 4vw, 42px); display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: 12px 26px; border-bottom: 1px solid var(--line); background: #fff; }
.service-provider-band span { color: var(--accent-dark); font-size: 12px; font-weight: 900; }
.service-provider-band strong { color: var(--soft-dark); font-size: 18px; line-height: 1.5; }
.service-provider-band small { color: var(--muted); font-weight: 800; white-space: nowrap; }
.service-split { max-width: none; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(34px, 7vw, 96px); }
.service-split > div { max-width: 540px; }
.service-split > div:first-child { margin-left: auto; }
.service-split h2, .jurisdiction-section h2 { margin: 0; color: var(--soft-dark); font-size: clamp(30px, 3.5vw, 46px); line-height: 1.18; }
.service-split ul { margin: 28px 0 0; padding-left: 1.2em; color: var(--muted); font-size: 18px; font-weight: 750; }
.service-process { max-width: var(--max); margin: 0 auto; padding: 0; list-style: none; counter-reset: service-process; display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 14px; }
.service-process li { counter-increment: service-process; min-width: 0; min-height: 164px; padding: 24px; border-top: 4px solid var(--accent); background: rgba(255,255,255,.08); color: rgba(255,255,255,.84); font-weight: 800; }
.service-process li::before { content: "0" counter(service-process); display: block; margin-bottom: 28px; color: var(--accent); font-size: 13px; font-weight: 900; }
.jurisdiction-section { max-width: none; display: grid; grid-template-columns: minmax(240px, .75fr) minmax(0, 1.25fr); gap: clamp(32px, 7vw, 90px); align-items: center; }
.jurisdiction-list { display: flex; flex-wrap: wrap; gap: 10px; }
.jurisdiction-list span { padding: 10px 14px; border: 1px solid var(--line); border-radius: 4px; background: var(--paper); font-weight: 900; }
.award-evidence { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.award-facts, .award-groups, .award-source { max-width: var(--max); margin-left: auto; margin-right: auto; }
.award-facts { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border: 1px solid var(--line); background: var(--deep); color: #fff; }
.award-facts strong { min-width: 0; padding: 20px 24px; font-size: 15px; line-height: 1.5; }
.award-facts strong + strong { border-left: 1px solid rgba(255,255,255,.18); }
.award-groups { display: grid; gap: 54px; margin-top: 54px; }
.award-group header { display: grid; grid-template-columns: minmax(220px, .65fr) minmax(0, 1.35fr); gap: 28px; align-items: baseline; margin-bottom: 22px; }
.award-group h3 { margin: 0; color: var(--soft-dark); font-size: clamp(24px, 2.7vw, 36px); line-height: 1.2; }
.award-group header p { margin: 0; color: var(--muted); font-weight: 750; }
.award-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.award-card { min-width: 0; padding: 24px; border: 1px solid var(--line); border-top: 4px solid var(--accent); border-radius: 4px; background: #fff; box-shadow: 0 12px 30px rgba(28,28,28,.07); }
.award-card-heading { min-height: 72px; display: flex; align-items: flex-start; gap: 14px; }
.award-card-heading time { flex: 0 0 auto; color: var(--accent-dark); font-size: 14px; font-weight: 900; }
.award-card-heading strong { color: var(--soft-dark); line-height: 1.4; }
.award-card dl { margin: 18px 0 0; }
.award-card dl > div { padding: 12px 0; border-top: 1px solid var(--line); }
.award-card dt { color: var(--muted); font-size: 12px; font-weight: 900; }
.award-card dd { margin: 3px 0 0; color: var(--soft-dark); line-height: 1.5; font-weight: 800; overflow-wrap: anywhere; }
.award-source { margin-top: 30px; padding-top: 18px; border-top: 1px solid var(--line); color: var(--muted); font-size: 13px; font-weight: 700; }
.service-detail-cta { padding: 54px clamp(20px, 7vw, 132px); display: flex; align-items: center; justify-content: center; gap: 30px; background: var(--deep); color: #fff; }
.service-detail-cta p { max-width: 760px; margin: 0; font-size: 18px; font-weight: 800; }
.service-detail-cta .button { flex: 0 0 auto; }
.ai-tools-page .section-head p:last-child { margin: 14px auto 0; max-width: 850px; color: var(--muted); }
.ai-partnership { max-width: var(--max); margin: 0 auto 48px; padding: 24px 28px; display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 8px 24px; align-items: center; border-left: 5px solid var(--accent); background: var(--deep); color: #fff; }
.ai-partnership strong { font-size: clamp(17px, 2vw, 22px); line-height: 1.4; }
.ai-partnership a { color: var(--accent); font-weight: 900; text-decoration: underline; text-underline-offset: 4px; }
.ai-partnership p { grid-column: 1 / -1; margin: 6px 0 0; color: rgba(255,255,255,.68); font-size: 14px; font-weight: 700; }
.ai-video-section { max-width: var(--max); margin: 0 auto 64px; }
.ai-video-copy { max-width: 790px; margin-bottom: 24px; }
.ai-video-copy h2 { margin: 0; color: var(--soft-dark); font-size: clamp(28px, 3.4vw, 44px); line-height: 1.2; }
.ai-video-copy p:last-child { margin: 14px 0 0; color: var(--muted); font-weight: 700; }
.ai-video { display: block; width: 100%; aspect-ratio: 16 / 9; border: 1px solid #252525; border-radius: 4px; background: #111; box-shadow: var(--shadow); }
.ai-metrics { margin-bottom: 34px; padding: 0; }
.ai-product-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; margin-bottom: 38px; }
.ai-product-card { min-width: 0; padding: 30px; background: var(--warm); border: 1px solid var(--line); border-top: 5px solid var(--accent); border-radius: 4px; box-shadow: var(--shadow); }
.ai-product-card span { color: var(--accent); font-weight: 900; }
.ai-product-card h3 { margin: 14px 0 12px; font-size: clamp(24px, 2.5vw, 34px); line-height: 1.18; color: var(--soft-dark); }
.ai-product-card p { color: var(--muted); font-weight: 800; }
.ai-product-card ul { margin: 18px 0 0; padding-left: 1.1em; color: var(--muted); font-weight: 750; }
.workflow-list { list-style: none; counter-reset: workflow; display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; padding: 0; }
.workflow-list li { counter-increment: workflow; min-height: 150px; padding: 22px; border: 1px solid var(--line); border-top: 5px solid var(--accent); background: #fff; font-weight: 900; border-radius: 4px; box-shadow: 0 12px 30px rgba(28,28,28,.07); }
.workflow-list li::before { content: "0" counter(workflow); display: block; margin-bottom: 18px; color: var(--accent); }
.article-page { max-width: 900px; margin: 0 auto; padding: clamp(54px, 7vw, 92px) 20px; background: var(--white); }
.article-topic { margin-bottom: 24px; }
.article-topic a { display: inline-block; padding-bottom: 5px; border-bottom: 3px solid var(--accent); color: var(--soft-dark); font-weight: 900; }
.article-page header { border-left: 5px solid var(--accent); padding: 18px 24px; margin-bottom: 38px; background: var(--warm); }
.article-byline { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px 24px; padding-bottom: 16px; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 13px; font-weight: 800; }
.article-page h2 { margin: 38px 0 14px; color: var(--soft-dark); font-size: clamp(24px, 3vw, 34px); line-height: 1.24; }
.article-page p { color: var(--muted); font-size: 18px; font-weight: 700; }
.article-page footer { margin-top: 42px; padding-top: 20px; border-top: 1px solid var(--line); }

.diagnosis-hero { min-height: 680px; display: grid; place-items: center; padding: clamp(76px, 10vw, 132px) clamp(20px, 7vw, 132px); background: linear-gradient(90deg, rgba(0,0,0,.76), rgba(0,0,0,.38)), url("/assets/hero-atrium.webp") center / cover no-repeat; color: #fff; }
.diagnosis-hero > div { width: min(960px, 100%); text-align: center; }
.diagnosis-hero h1 { margin: 0; font-size: clamp(44px, 6vw, 78px); line-height: 1.12; letter-spacing: 0; }
.diagnosis-hero-lead { max-width: 850px; margin: 24px auto 0; color: rgba(255,255,255,.86); font-size: clamp(17px, 2vw, 22px); line-height: 1.65; font-weight: 750; }
.diagnosis-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 34px; }
.diagnosis-actions .button { font-family: inherit; font-size: 16px; line-height: 1.5; }
.diagnosis-promise { max-width: 760px; margin: 22px auto 0; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.25); color: rgba(255,255,255,.72); font-size: 14px; font-weight: 700; }
.diagnosis-problem-grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.diagnosis-problem { min-width: 0; padding: clamp(28px, 4vw, 46px); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.diagnosis-problem > span { color: var(--accent); font-weight: 900; }
.diagnosis-problem h3 { margin: 22px 0 28px; color: var(--soft-dark); font-size: clamp(23px, 2.5vw, 34px); line-height: 1.25; }
.diagnosis-problem dl { margin: 0; }
.diagnosis-problem dl > div { display: grid; grid-template-columns: 70px minmax(0, 1fr); gap: 18px; padding: 14px 0; border-top: 1px solid var(--line); }
.diagnosis-problem dt { color: var(--accent-dark); font-size: 11px; font-weight: 900; }
.diagnosis-problem dd { margin: 0; color: var(--muted); font-weight: 700; }
.diagnosis-methodology ol { max-width: var(--max); margin: 0 auto; padding: 0; list-style: none; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border: 1px solid rgba(255,255,255,.2); }
.diagnosis-methodology li { min-width: 0; padding: clamp(28px, 4vw, 44px); }
.diagnosis-methodology li + li { border-left: 1px solid rgba(255,255,255,.2); }
.diagnosis-methodology li > span { color: var(--accent); font-size: 13px; font-weight: 900; }
.diagnosis-methodology h3 { margin: 34px 0 14px; color: #fff; font-size: clamp(24px, 2.7vw, 36px); }
.diagnosis-methodology li p { margin: 0; color: rgba(255,255,255,.7); font-weight: 700; }
.diagnosis-deliverable { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr); gap: clamp(38px, 8vw, 110px); align-items: center; }
.diagnosis-deliverable > div, .diagnosis-deliverable > ul { width: 100%; max-width: 760px; }
.diagnosis-deliverable > div { justify-self: end; }
.diagnosis-deliverable h2, .diagnosis-final-cta h2 { margin: 0; color: var(--soft-dark); font-size: clamp(32px, 4vw, 52px); line-height: 1.18; }
.diagnosis-deliverable > div > p:last-child { color: var(--muted); font-size: 18px; font-weight: 700; }
.diagnosis-deliverable ul { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.diagnosis-deliverable li { padding: 18px 0; border-bottom: 1px solid var(--line); color: var(--soft-dark); font-size: 18px; font-weight: 900; }
.report-language-note { max-width: var(--max); margin: -24px auto 30px; color: var(--muted); text-align: center; font-size: 13px; font-weight: 800; }
.diagnosis-report-grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.diagnosis-report-card { min-width: 0; background: #fff; border: 1px solid var(--line); box-shadow: 0 14px 34px rgba(28,28,28,.08); }
.diagnosis-report-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; object-position: center top; border-bottom: 1px solid var(--line); }
.diagnosis-report-card > div { padding: 26px; }
.diagnosis-report-card h3 { margin: 0 0 12px; color: var(--soft-dark); font-size: 23px; line-height: 1.3; }
.diagnosis-report-card p:not(.eyebrow) { color: var(--muted); font-weight: 700; }
.diagnosis-report-card small { display: block; padding-top: 14px; border-top: 1px solid var(--line); color: var(--muted); font-weight: 700; }
.report-link { display: inline-flex; gap: 8px; margin-top: 20px; color: var(--accent-dark); font-weight: 900; }
.diagnosis-final-cta { padding: clamp(54px, 7vw, 86px) clamp(20px, 7vw, 132px); display: flex; align-items: center; justify-content: center; gap: clamp(30px, 7vw, 90px); background: var(--deep); color: #fff; }
.diagnosis-final-cta > div { max-width: 760px; }
.diagnosis-final-cta h2 { color: #fff; }
.diagnosis-final-cta p:last-child { color: rgba(255,255,255,.7); font-weight: 700; }
.diagnosis-final-cta .button { flex: 0 0 auto; }
.diagnosis-dialog { width: min(880px, calc(100vw - 40px)); max-height: calc(100vh - 40px); padding: 0; border: 0; border-radius: 4px; background: #fff; color: var(--ink); box-shadow: 0 28px 90px rgba(0,0,0,.32); overflow: auto; }
.diagnosis-dialog::backdrop { background: rgba(12,14,14,.78); backdrop-filter: blur(5px); }
.diagnosis-form { position: relative; padding: clamp(30px, 5vw, 56px); }
.diagnosis-form header { max-width: 700px; margin-bottom: 30px; }
.diagnosis-form h2 { margin: 0; color: var(--soft-dark); font-size: clamp(28px, 4vw, 42px); line-height: 1.2; }
.diagnosis-form header > p:last-child { color: var(--muted); font-weight: 700; }
.diagnosis-dialog-close { position: absolute; top: 16px; right: 16px; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 50%; background: #fff; color: var(--soft-dark); font-size: 28px; line-height: 1; cursor: pointer; }
.diagnosis-form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.diagnosis-field { min-width: 0; display: grid; gap: 7px; color: var(--soft-dark); font-size: 13px; font-weight: 900; }
.diagnosis-field-wide { grid-column: 1 / -1; }
.diagnosis-field input, .diagnosis-field select, .diagnosis-field textarea { width: 100%; min-height: 48px; padding: 10px 12px; border: 1px solid #cfcac2; border-radius: 3px; background: #fff; color: var(--ink); font: inherit; font-size: 16px; font-weight: 500; }
.diagnosis-field textarea { resize: vertical; }
.diagnosis-field input:focus, .diagnosis-field select:focus, .diagnosis-field textarea:focus { border-color: var(--accent-dark); outline: 2px solid rgba(245,160,0,.18); outline-offset: 0; }
.diagnosis-field small, .diagnosis-form > small { min-height: 18px; color: #a63d28; font-size: 12px; }
.diagnosis-consent { display: flex; gap: 10px; margin-top: 22px; color: var(--muted); font-size: 13px; font-weight: 700; }
.diagnosis-consent input { flex: 0 0 auto; width: 18px; height: 18px; margin-top: 4px; accent-color: var(--accent-dark); }
.diagnosis-form footer { display: flex; justify-content: flex-end; gap: 12px; margin-top: 24px; }
.diagnosis-form .button-ghost { color: var(--soft-dark); border-color: var(--line); background: #fff; }
.diagnosis-form-status { display: none; margin-top: 18px; padding: 14px 16px; font-weight: 700; }
.diagnosis-form-status.is-success, .diagnosis-form-status.is-error { display: grid; gap: 4px; }
.diagnosis-form-status.is-success { border-left: 4px solid #27875b; background: #eff8f3; color: #1d6845; }
.diagnosis-form-status.is-error { border-left: 4px solid #a63d28; background: #fff2ef; color: #87301f; }

@media (max-width: 1100px) {
  .culture-principles { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .culture-principle:nth-child(3) { padding-left: 0; border-left: 0; }
  .site-header { flex-wrap: wrap; padding-top: 12px; padding-bottom: 0; }
  .site-nav { order: 3; width: calc(100% + 36px); margin: 0 -18px; padding: 8px 18px 12px; overflow-x: auto; border-top: 1px solid var(--line); scrollbar-width: none; }
  .site-nav::-webkit-scrollbar { display: none; }
  .hero, .about-grid, .founder-section { grid-template-columns: 1fr; }
  .service-grid, .office-grid, .timeline-grid, .detail-grid, .team-grid { grid-template-columns: repeat(2, 1fr); }
  .principle-grid, .strategy-grid, .metric-band, .site-footer, .ai-product-grid, .faq-list { grid-template-columns: 1fr 1fr; }
  .workflow-list { grid-template-columns: 1fr 1fr; }
  .service-detail-grid, .service-process { grid-template-columns: 1fr 1fr; }
  .award-grid { grid-template-columns: 1fr 1fr; }
  .award-facts { grid-template-columns: 1fr 1fr; }
  .award-facts strong:nth-child(3) { border-left: 0; border-top: 1px solid rgba(255,255,255,.18); }
  .award-facts strong:nth-child(4) { border-top: 1px solid rgba(255,255,255,.18); }
  .news-list article { grid-template-columns: 1fr; }
  .news-hub .news-list article { grid-template-columns: 220px minmax(0, 1fr); }
  .diagnosis-report-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .brand-entities { grid-template-columns: 1fr; }
  .service-provider-band { grid-template-columns: 1fr; }
  .service-provider-band small { white-space: normal; }
  .culture-principles { grid-template-columns: 1fr; }
  .culture-principle,
  .culture-principle + .culture-principle { padding: 22px 0; border-left: 0; border-bottom: 1px solid var(--line); }
  .site-header { min-height: auto; padding: 14px 18px; flex-wrap: wrap; }
  .brand { min-width: 0; }
  .brand small { display: none; }
  .brand-logo { width: 132px; }
  .hero { min-height: auto; padding-top: 76px; }
  .hero-positioning { margin-top: 22px; font-size: 18px; line-height: 1.6; }
  .hero-service-links { grid-template-columns: 1fr; }
  .hero-proof { margin-top: 16px; }
  .service-grid, .office-grid, .principle-grid, .strategy-grid, .metric-band, .site-footer, .timeline-grid, .detail-grid, .team-grid, .workflow-list, .ai-product-grid, .faq-list { grid-template-columns: 1fr; }
  .service-detail-grid, .service-split, .service-process, .jurisdiction-section { grid-template-columns: 1fr; }
  .award-facts, .award-grid, .award-group header { grid-template-columns: 1fr; }
  .award-facts strong + strong { border-left: 0; border-top: 1px solid rgba(255,255,255,.18); }
  .award-card-heading { min-height: 0; }
  .service-split > div:first-child { margin-left: 0; }
  .service-detail-cta { align-items: stretch; flex-direction: column; }
  .locale-switcher { width: auto; gap: 3px; }
  .locale-switcher a { padding: 6px 8px; text-align: center; }
  .ai-partnership { grid-template-columns: 1fr; padding: 22px; }
  .ai-partnership p { grid-column: auto; }
  .news-topics { gap: 0 18px; margin-bottom: 38px; }
  .news-topics a { font-size: 13px; }
  .news-featured { grid-template-columns: 1fr; padding: 28px 24px; }
  .news-featured-meta { min-height: 84px; padding: 18px 0 0; border-top: 1px solid rgba(255,255,255,.2); border-left: 0; }
  .news-featured-meta span { display: none; }
  .news-hub .news-list article { grid-template-columns: 1fr; gap: 14px; padding: 24px 0; }
  .news-meta { grid-template-columns: 78px minmax(0, 1fr); }
  .article-byline { grid-template-columns: 1fr; }
  .diagnosis-hero { min-height: auto; padding-top: 72px; padding-bottom: 72px; }
  .diagnosis-hero h1 { font-size: 40px; }
  .diagnosis-actions, .diagnosis-final-cta { align-items: stretch; flex-direction: column; }
  .diagnosis-problem-grid, .diagnosis-methodology ol, .diagnosis-report-grid, .diagnosis-deliverable, .diagnosis-form-grid { grid-template-columns: 1fr; }
  .diagnosis-methodology li + li { border-top: 1px solid rgba(255,255,255,.2); border-left: 0; }
  .diagnosis-deliverable > div { justify-self: auto; }
  .diagnosis-field-wide { grid-column: auto; }
  .diagnosis-dialog { width: calc(100vw - 20px); max-height: calc(100vh - 20px); }
  .diagnosis-form { padding: 46px 20px 26px; }
  .diagnosis-form footer { flex-direction: column-reverse; }
  .team-profile-dialog { width: calc(100vw - 24px); max-height: calc(100vh - 24px); }
  .team-profile-layout { grid-template-columns: 1fr; min-height: 0; }
  .team-profile-photo { min-height: 0; }
  .team-profile-photo img { min-height: 0; aspect-ratio: 4 / 3; object-position: center 24%; }
  .team-profile-copy { padding: 30px 24px 36px; }
  .team-profile-facts { grid-template-columns: 1fr; }
}
