:root {
  --ink: #101112;
  --ink-soft: #191b1d;
  --paper: #f4f1ea;
  --paper-bright: #fbfaf6;
  --white: #ffffff;
  --muted: #787a7b;
  --line: rgba(16, 17, 18, 0.14);
  --line-light: rgba(255, 255, 255, 0.18);
  --gold: #d4a14a;
  --coral: #ff6b4a;
  --mint: #9ee4c8;
  --max: 1240px;
  --ease: cubic-bezier(0.32, 0.72, 0, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper-bright);
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

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

:focus-visible {
  outline: 3px solid var(--mint);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 20;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--white);
  transform: translateY(-160%);
  transition: transform 400ms var(--ease);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 78px;
  padding: 0 max(24px, calc((100% - var(--max)) / 2));
  color: var(--paper-bright);
  background: rgba(16, 17, 18, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: max-content;
}

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

.brand-copy {
  display: grid;
  line-height: 1.2;
}

.brand-copy strong {
  font-size: 14px;
  font-weight: 700;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--gold);
  font-size: 9px;
  font-weight: 700;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
}

.desktop-nav a {
  position: relative;
  transition: color 400ms var(--ease);
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 500ms var(--ease);
}

.desktop-nav a:hover {
  color: var(--white);
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 7px 7px 7px 18px;
  color: var(--ink);
  background: var(--gold);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  transition: transform 500ms var(--ease), background 500ms var(--ease);
}

.header-cta:hover {
  background: var(--paper-bright);
  transform: translateY(-2px);
}

.button-icon {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(16, 17, 18, 0.1);
  transition: transform 500ms var(--ease);
}

.header-cta:hover .button-icon,
.button:hover .button-icon {
  transform: translate(2px, -2px) scale(1.06);
}

.menu-toggle,
.mobile-menu,
.mobile-cta {
  display: none;
}

.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  height: 600px;
  min-height: 0;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero-image,
.hero-shade,
.hero-grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center 44%;
  transform: scale(1.03);
  animation: hero-settle 1400ms var(--ease) forwards;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(7, 8, 8, 0.94) 0%, rgba(7, 8, 8, 0.68) 45%, rgba(7, 8, 8, 0.1) 78%),
    linear-gradient(0deg, rgba(7, 8, 8, 0.76) 0%, rgba(7, 8, 8, 0.05) 55%);
}

.hero-grid {
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to right, black, transparent 76%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(850px, calc(100% - 48px));
  margin-left: max(24px, calc((100% - var(--max)) / 2));
  padding: 88px 0 74px;
}

.eyebrow,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  color: var(--coral);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow span {
  width: 34px;
  height: 2px;
  background: var(--coral);
}

.hero h1,
.section h2,
.cta-band h2,
.workflow h2 {
  margin: 0;
  font-family: "Songti SC", "STSong", serif;
  font-weight: 700;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 850px;
  font-size: 64px;
  line-height: 1.08;
}

.hero-lede {
  max-width: 660px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 18px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-height: 54px;
  padding: 8px 8px 8px 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  transition: transform 600ms var(--ease), color 600ms var(--ease), background 600ms var(--ease);
}

.button:hover {
  transform: translateY(-3px);
}

.button:active {
  transform: scale(0.98);
}

.button-primary {
  color: var(--ink);
  background: var(--gold);
}

.button-primary:hover {
  background: var(--mint);
}

.text-link {
  padding: 12px 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.36);
  transition: color 400ms var(--ease), border-color 400ms var(--ease);
}

.text-link:hover {
  color: var(--white);
  border-color: var(--gold);
}

.hero-note {
  position: absolute;
  right: max(24px, calc((100% - var(--max)) / 2));
  bottom: 76px;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: var(--mint);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(158, 228, 200, 0.16);
}

.hero-index {
  position: absolute;
  right: max(24px, calc((100% - var(--max)) / 2));
  top: 44px;
  z-index: 1;
  display: flex;
  gap: 22px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
}

.hero-index span::before {
  content: "/";
  margin-right: 6px;
  color: var(--gold);
}

.problem-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  color: var(--ink);
  background: var(--mint);
}

.problem-strip p {
  margin: 0;
  padding: 28px max(24px, calc((100vw - var(--max)) / 2));
  font-size: 15px;
  font-weight: 700;
}

.problem-strip p:first-child {
  padding-right: 36px;
}

.problem-strip p:last-child {
  padding-left: 36px;
  color: var(--white);
  background: var(--coral);
}

.section {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 128px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.7fr 1.7fr 0.8fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 64px;
}

.section-kicker {
  align-self: start;
  margin: 8px 0 0;
}

.section-heading h2,
.workflow h2 {
  font-size: 28px;
  line-height: 1.28;
}

.section-heading > p:last-child,
.workflow-intro > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.service-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-tab {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 74px;
  padding: 0 20px;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-right: 1px solid var(--line);
  cursor: pointer;
  font-weight: 700;
  text-align: left;
  transition: color 500ms var(--ease), background 500ms var(--ease);
}

.service-tab:last-child {
  border-right: 0;
}

.service-tab::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 3px;
  background: var(--coral);
  transform: scaleX(0);
  transition: transform 600ms var(--ease);
}

.service-tab span {
  color: var(--coral);
  font-size: 11px;
}

.service-tab:hover,
.service-tab.is-active {
  color: var(--ink);
  background: rgba(16, 17, 18, 0.035);
}

.service-tab.is-active::after {
  transform: scaleX(1);
}

.service-stage {
  margin-top: 32px;
}

.service-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, 0.75fr);
  min-height: 570px;
  background: var(--ink);
  border-radius: 8px;
  overflow: hidden;
}

.service-panel[hidden] {
  display: none;
}

.service-panel.is-entering {
  animation: panel-in 700ms var(--ease) both;
}

.service-media {
  position: relative;
  min-height: 570px;
  overflow: hidden;
  background: #27292b;
}

.service-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(16, 17, 18, 0.58), transparent 55%);
  pointer-events: none;
}

.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1000ms var(--ease);
}

.service-panel:hover .service-media img {
  transform: scale(1.035);
}

.frame-mark {
  position: absolute;
  z-index: 1;
  width: 32px;
  height: 32px;
}

.frame-mark-tl {
  top: 24px;
  left: 24px;
  border-top: 2px solid var(--mint);
  border-left: 2px solid var(--mint);
}

.frame-mark-br {
  right: 24px;
  bottom: 24px;
  border-right: 2px solid var(--mint);
  border-bottom: 2px solid var(--mint);
}

.media-label {
  position: absolute;
  bottom: 24px;
  left: 24px;
  z-index: 1;
  padding: 8px 10px;
  color: var(--white);
  background: rgba(16, 17, 18, 0.75);
  border-radius: 4px;
  font-size: 10px;
  font-weight: 800;
}

.service-copy {
  display: flex;
  flex-direction: column;
  padding: 56px 48px 44px;
  color: var(--white);
}

.service-number {
  margin: 0 0 auto;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
}

.service-copy h3 {
  margin: 64px 0 20px;
  font-family: "Songti SC", "STSong", serif;
  font-size: 34px;
  line-height: 1.28;
  letter-spacing: 0;
}

.service-copy > p:not(.service-number) {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 15px;
}

.service-copy ul {
  display: grid;
  gap: 0;
  margin: 32px 0 38px;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-light);
}

.service-copy li {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 14px;
  padding: 13px 0;
  color: rgba(255, 255, 255, 0.7);
  border-bottom: 1px solid var(--line-light);
  font-size: 13px;
}

.service-copy li span {
  color: var(--mint);
  font-weight: 700;
}

.inline-cta {
  align-self: flex-start;
  padding: 8px 0;
  color: var(--white);
  border-bottom: 1px solid var(--gold);
  font-size: 14px;
  font-weight: 800;
  transition: color 400ms var(--ease);
}

.inline-cta:hover {
  color: var(--gold);
}

.workflow-band {
  color: var(--paper-bright);
  background: var(--ink);
}

.workflow {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 100px;
}

.section-kicker-light {
  color: var(--mint);
}

.workflow-intro > p:last-child {
  max-width: 390px;
  margin-top: 36px;
  color: rgba(255, 255, 255, 0.52);
}

.workflow-intro .section-kicker { margin-bottom: 12px; }

.workflow-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-light);
}

.workflow-list li {
  display: grid;
  grid-template-columns: 66px 1fr;
  gap: 20px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line-light);
}

.step-num {
  color: var(--coral);
  font-size: 12px;
  font-weight: 800;
}

.workflow-list h3 {
  margin: 0 0 8px;
  font-size: 19px;
  letter-spacing: 0;
}

.workflow-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 14px;
}

.fit {
  padding-bottom: 144px;
}

.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.fit-card {
  min-height: 410px;
  padding: 42px;
  border-radius: 8px;
}

.fit-card-owner {
  color: var(--ink);
  background: var(--mint);
}

.fit-card-business {
  color: var(--white);
  background: var(--coral);
}

.fit-label {
  margin: 0 0 108px;
  font-size: 10px;
  font-weight: 800;
}

.fit-card h3 {
  margin: 0 0 18px;
  font-family: "Songti SC", "STSong", serif;
  font-size: 40px;
  line-height: 1.2;
  letter-spacing: 0;
}

.fit-card > p:not(.fit-label) {
  max-width: 480px;
  margin: 0;
  font-size: 16px;
}

.fit-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 34px;
}

.fit-tags span {
  padding: 6px 10px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 12px;
  opacity: 0.76;
}

.cta-band {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(128deg, #18191a 0%, #25201a 48%, #13231f 100%);
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.42;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.55'/></svg>");
  background-size: 240px 240px;
}

.cta-inner {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 120px 0;
}

.cta-band h2 {
  max-width: 780px;
  font-size: 62px;
  line-height: 1.12;
}

.cta-inner > p:not(.section-kicker) {
  max-width: 600px;
  margin: 30px 0 36px;
  color: rgba(255, 255, 255, 0.64);
}

.button-light {
  color: var(--ink);
  background: var(--paper-bright);
}

.button-light:hover {
  background: var(--gold);
}

.cta-city {
  position: absolute;
  right: -34px;
  bottom: -110px;
  z-index: 0;
  margin: 0;
  color: rgba(255, 255, 255, 0.06);
  font-family: "Songti SC", "STSong", serif;
  font-size: 310px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  user-select: none;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 34px max(24px, calc((100% - var(--max)) / 2));
  color: rgba(255, 255, 255, 0.64);
  background: var(--ink);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12px;
}

.footer-filing {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 18px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
}

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

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

.footer-brand div {
  display: grid;
}

.footer-brand strong {
  color: var(--white);
  font-size: 13px;
}

.footer-brand span {
  margin-top: 2px;
}

.reveal {
  opacity: 0;
  transform: translateY(42px);
  transition: opacity 900ms var(--ease), transform 900ms var(--ease);
}

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

@keyframes hero-settle {
  from { opacity: 0.42; transform: scale(1.08); }
  to { opacity: 1; transform: scale(1.03); }
}

@keyframes panel-in {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
    gap: 8px;
    min-height: 70px;
  }

  .desktop-nav {
    display: none;
  }

  .header-cta {
    display: inline-flex;
    grid-column: 3;
    justify-self: end;
    gap: 8px;
    padding: 6px 6px 6px 14px;
    font-size: 12px;
  }

  .header-cta .button-icon {
    width: 30px;
    height: 30px;
  }

  .menu-toggle {
    position: relative;
    grid-column: 2;
    grid-row: 1;
    display: block;
    width: 44px;
    height: 44px;
    padding: 0;
    color: var(--white);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;
  }

  .menu-toggle span {
    position: absolute;
    left: 12px;
    width: 18px;
    height: 1px;
    background: currentColor;
    transition: transform 500ms var(--ease);
  }

  .menu-toggle span:first-child {
    top: 17px;
  }

  .menu-toggle span:last-child {
    top: 25px;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    inset: 70px 0 0;
    z-index: 9;
    display: grid;
    place-items: center;
    color: var(--white);
    background: rgba(16, 17, 18, 0.97);
    backdrop-filter: blur(20px);
  }

  .mobile-menu[hidden] {
    display: none;
  }

  .mobile-menu nav {
    display: grid;
    gap: 18px;
    width: min(420px, calc(100% - 40px));
  }

  .mobile-menu a {
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    font-family: "Songti SC", "STSong", serif;
    font-size: 30px;
    opacity: 0;
    transform: translateY(20px);
    animation: menu-link-in 600ms var(--ease) forwards;
  }

  .mobile-menu a:nth-child(2) { animation-delay: 60ms; }
  .mobile-menu a:nth-child(3) { animation-delay: 120ms; }
  .mobile-menu a:nth-child(4) { animation-delay: 180ms; }
  .mobile-menu a:nth-child(5) { animation-delay: 240ms; color: var(--gold); }

  .hero h1 {
    font-size: 56px;
  }

  .section-heading {
    grid-template-columns: 0.6fr 1.4fr;
  }

  .section-heading > p:last-child {
    grid-column: 2;
  }

  .service-panel {
    grid-template-columns: 1fr;
  }

  .service-media {
    min-height: 480px;
  }

  .service-copy {
    min-height: 460px;
  }

  .service-number {
    margin-bottom: 0;
  }

  .service-copy h3 {
    margin-top: 42px;
  }

  .workflow {
    gap: 60px;
  }

  @keyframes menu-link-in {
    to { opacity: 1; transform: translateY(0); }
  }
}

@media (max-width: 767px) {
  body {
    padding-bottom: calc(76px + env(safe-area-inset-bottom, 0px));
  }

  .site-header {
    padding: 0 16px;
  }

  .brand-copy strong {
    font-size: 13px;
  }

  .hero {
    height: 740px;
    min-height: 0;
    align-items: flex-end;
  }

  .hero-image {
    object-position: 58% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(7, 8, 8, 0.8), rgba(7, 8, 8, 0.18)),
      linear-gradient(0deg, rgba(7, 8, 8, 0.92) 2%, rgba(7, 8, 8, 0.5) 58%, rgba(7, 8, 8, 0.14) 100%);
  }

  .hero-grid {
    background-size: 56px 56px;
  }

  .hero-content {
    width: calc(100% - 32px);
    margin-left: 16px;
    padding: 108px 0 42px;
  }

  .eyebrow {
    margin-bottom: 18px;
    font-size: 10px;
  }

  .hero h1 {
    font-size: 22px;
    line-height: 1.24;
  }

  .hero-lede {
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.7;
  }

  .hero-actions {
    gap: 18px;
    margin-top: 26px;
  }

  .button {
    min-height: 50px;
    padding-left: 20px;
  }

  .button-icon {
    width: 30px;
    height: 30px;
  }

  .text-link {
    font-size: 13px;
  }

  .hero-note {
    display: none;
  }

  .hero-index {
    display: none;
  }

  .hero-index span::before {
    margin-right: 3px;
  }

  .problem-strip {
    grid-template-columns: 1fr;
  }

  .problem-strip p,
  .problem-strip p:first-child,
  .problem-strip p:last-child {
    padding: 18px 16px;
    font-size: 13px;
  }

  .section {
    width: calc(100% - 32px);
    padding: 88px 0;
  }

  .section-heading {
    display: block;
    margin-bottom: 40px;
  }

  .section-kicker {
    margin: 0 0 16px;
  }

  .section-heading h2,
  .workflow h2 {
    font-size: 16px;
  }

  .section-heading > p:last-child {
    margin-top: 18px;
  }

  .service-tabs {
    grid-template-columns: 1fr 1fr;
  }

  .service-tab {
    min-height: 60px;
    gap: 10px;
    padding: 0 13px;
    border-bottom: 1px solid var(--line);
    font-size: 13px;
  }

  .service-tab:nth-child(2) {
    border-right: 0;
  }

  .service-tab:nth-child(3),
  .service-tab:nth-child(4) {
    border-bottom: 0;
  }

  .service-stage {
    margin-top: 20px;
  }

  .service-panel {
    min-height: 0;
    border-radius: 6px;
  }

  .service-media {
    min-height: 310px;
  }

  .service-copy {
    min-height: 0;
    padding: 30px 24px 34px;
  }

  .service-copy h3 {
    margin: 30px 0 16px;
    font-size: 27px;
  }

  .service-copy ul {
    margin: 26px 0 30px;
  }

  .service-copy li {
    grid-template-columns: 58px 1fr;
    font-size: 12px;
  }

  .workflow {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .workflow-list li {
    grid-template-columns: 48px 1fr;
  }

  .fit {
    padding-bottom: 96px;
  }

  .fit-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .fit-card {
    min-height: 340px;
    padding: 28px 24px;
    border-radius: 6px;
  }

  .fit-label {
    margin-bottom: 70px;
  }

  .fit-card h3 {
    font-size: 34px;
  }

  .cta-band {
    min-height: 560px;
  }

  .cta-inner {
    width: calc(100% - 32px);
    padding: 86px 0;
  }

  .cta-band h2 {
    font-size: 40px;
  }

  .cta-city {
    right: -24px;
    bottom: -42px;
    font-size: 150px;
  }

  .site-footer {
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 28px 16px;
  }

  .footer-filing {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    line-height: 1.6;
  }

  .site-footer > a {
    white-space: nowrap;
  }

  .footer-brand span {
    max-width: 180px;
  }

  .mobile-cta {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 8;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    min-height: 76px;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom, 0px));
    color: var(--white);
    background: rgba(16, 17, 18, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(18px);
  }

  .mobile-cta div {
    display: grid;
    min-width: 0;
  }

  .mobile-cta strong {
    overflow: hidden;
    font-size: 12px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-cta div span {
    margin-top: 2px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 10px;
  }

  .mobile-cta a {
    flex: 0 0 auto;
    padding: 11px 16px;
    color: var(--ink);
    background: var(--gold);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
  }
}

@media (max-width: 360px) {
  .brand-copy {
    display: none;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
 .credentials { padding: 136px 0 80px; }
.credential-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 20px; padding: 0; margin: 0 0 36px; list-style: none; }
.credentials-band .credential-grid li { display: flex; flex-direction: column; gap: 6px; padding: 22px 24px; border: 1px solid rgba(255, 255, 255, 0.12); border-radius: 8px; background: rgba(255, 255, 255, 0.04); }
.credential-grid strong { font-family: "Songti SC", "STSong", serif; font-size: 28px; color: var(--gold); line-height: 1.15; }
.credentials-band .credential-grid span { color: rgba(255, 255, 255, 0.62); font-size: 13px; }
.credential-works { display: flex; flex-wrap: wrap; gap: 12px 18px; padding: 0; margin: 0; list-style: none; }
.credentials-band .credential-works li { padding: 8px 14px; color: rgba(255, 255, 255, 0.78); background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.16); border-radius: 999px; font-size: 13px; font-weight: 700; }
.credentials-band h2 { color: var(--white); }
@media (max-width: 767px) {
  .credential-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .credential-grid li:nth-child(5) { grid-column: 1 / -1; }
  .credential-grid strong { font-size: 24px; }
  .credential-works { gap: 8px 10px; }
  .credential-works li { padding: 6px 12px; font-size: 12px; }
  .credential-works { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 8px; }
  .credentials { padding: 56px 0 56px; }
  .credentials-band .credential-grid li { padding: 18px 18px; }
  .credentials-band h2 { font-size: 18px; line-height: 1.4; }
}

.credentials-band {
  color: var(--paper-bright);
  background: linear-gradient(180deg, var(--paper-bright) 0 56px, var(--ink) 56px 100%);
}
.credentials-band .section { width: min(var(--max), calc(100% - 48px)); margin: 0 auto; }

.contact-band {
  padding: 72px max(24px, calc((100% - var(--max)) / 2)) 88px;
  background: linear-gradient(180deg, var(--ink) 0%, var(--ink-soft) 100%);
  color: var(--white);
}
.contact-card {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 40px 44px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.contact-text .section-kicker { color: var(--gold); }
.contact-text h2 {
  margin: 14px 0 14px;
  font-family: "Songti SC", "STSong", serif;
  font-size: 36px;
  line-height: 1.25;
  color: var(--white);
}
.contact-blurb {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.7;
  max-width: 480px;
}
.contact-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.contact-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 200ms var(--ease), border-color 200ms var(--ease);
}
.contact-list li:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
}
.contact-icon { width: 20px; height: 20px; flex: 0 0 20px; color: var(--gold); }
.contact-value {
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  word-break: break-all;
}
.contact-value:hover { color: var(--gold); }
.contact-value strong { font-weight: 700; color: var(--gold); }
.contact-tag {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  padding: 4px 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  white-space: nowrap;
}
.contact-qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.contact-qr-frame {
  padding: 14px;
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}
.contact-qr-frame img {
  width: 160px;
  height: auto;
  display: block;
  border-radius: 6px;
}
.contact-qr-caption {
  margin: 0;
  font-size: 14px;
  color: var(--white);
  font-weight: 600;
}
.contact-qr-meta { margin: 0; font-size: 12px; color: rgba(255, 255, 255, 0.5); }

@media (max-width: 767px) {
  .contact-band { padding: 56px 16px 72px; }
  .contact-card { grid-template-columns: 1fr; gap: 32px; padding: 28px 20px; }
  .contact-text h2 { font-size: 28px; }
  .contact-list li { flex-wrap: wrap; padding: 12px 14px; }
  .contact-tag { margin-left: auto; }
  .contact-qr-frame img { width: 140px; height: auto; }
}
