:root {
  --paper: #ffffff;
  --canvas: #f4f7fb;
  --canvas-blue: #eaf2ff;
  --ink: #101828;
  --ink-soft: #26364b;
  --muted: #5a6a7d;
  --navy: #0b2f55;
  --blue: #155eef;
  --blue-dark: #0c47b5;
  --line: #d9e2ec;
  --line-strong: #aebfd1;
  --white-ink: #eff6ff;
  --content: 1180px;
  --gutter: clamp(1.25rem, 4vw, 4rem);
  --sans: "Inter", "Hiragino Kaku Gothic ProN", "Yu Gothic", YuGothic, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

button {
  color: inherit;
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 5px;
}

.page-width {
  width: min(var(--content), calc(100% - (var(--gutter) * 2)));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 50;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.55rem 0.8rem;
  background: var(--blue);
  color: var(--paper);
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

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

.page-progress {
  position: fixed;
  z-index: 40;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  pointer-events: none;
}

.page-progress-fill {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left center;
}

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.wordmark {
  display: inline-flex;
  min-width: max-content;
  align-items: center;
  gap: 0.7rem;
}

.wordmark-mark {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border: 1.5px solid var(--blue);
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: -0.08em;
  line-height: 1;
}

.wordmark-copy {
  display: grid;
  gap: 0.02rem;
}

.wordmark-ja {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.15;
}

.wordmark-en {
  color: var(--muted);
  font-size: 0.55rem;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 2.5vw, 2rem);
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
}

.site-nav a,
.share-nav {
  position: relative;
  padding: 0.2rem 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  letter-spacing: inherit;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -0.2rem;
  left: 0;
  height: 2px;
  background: var(--blue);
  content: "";
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 220ms var(--ease);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  color: var(--ink);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.share-nav {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.85rem;
  border: 1px solid var(--blue);
  border-radius: 3px;
  color: var(--blue);
  font-size: 0.7rem;
}

.share-nav:hover,
.share-nav:focus-visible {
  background: var(--blue);
  color: var(--paper);
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.hero-grid {
  display: grid;
  min-height: min(790px, calc(100svh - 76px));
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.85fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
  padding-block: clamp(4.5rem, 9vw, 8rem) clamp(3.5rem, 7vw, 5.5rem);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-kicker,
.section-index,
.work-type,
.record-tag,
.footer-meta,
.small-label {
  margin: 0;
  color: var(--blue);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.4;
}

.hero-kicker {
  padding-left: 0.7rem;
  border-left: 3px solid var(--blue);
}

.hero-greeting {
  margin: clamp(3rem, 7vw, 5.5rem) 0 0.5rem;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.hero h1 {
  max-width: 10ch;
  margin: 0;
  color: var(--ink);
  font-size: clamp(4.5rem, 9.5vw, 8.5rem);
  font-weight: 700;
  letter-spacing: -0.09em;
  line-height: 0.92;
}

.hero-lede {
  max-width: 35rem;
  margin: clamp(2rem, 4vw, 3rem) 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.75vw, 1.3rem);
  font-weight: 500;
  line-height: 1.75;
}

.hero-facts {
  display: grid;
  max-width: 39rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: clamp(2.25rem, 4vw, 3.25rem);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.hero-fact {
  display: grid;
  gap: 0.3rem;
  padding: 1rem 1.2rem 1.1rem 0;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.55;
}

.hero-fact + .hero-fact {
  padding-left: 1.2rem;
  border-left: 1px solid var(--line-strong);
}

.hero-fact strong {
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 600;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 2rem;
  padding-bottom: 0.35rem;
  border-bottom: 2px solid var(--blue);
  color: var(--ink);
  font-size: 0.83rem;
  font-weight: 700;
  transition: gap 220ms var(--ease), color 180ms ease;
}

.link-arrow span {
  color: var(--blue);
  transition: transform 220ms var(--ease);
}

.link-arrow:hover,
.link-arrow:focus-visible {
  gap: 1.2rem;
  color: var(--blue-dark);
}

.link-arrow:hover span,
.link-arrow:focus-visible span {
  transform: translateY(0.25rem);
}

.hero-visual {
  position: relative;
  z-index: 1;
  min-width: 0;
  justify-self: end;
  width: min(100%, 520px);
}

.hero-art-surface {
  position: relative;
  padding: clamp(1rem, 3vw, 2rem) clamp(1rem, 3vw, 2rem) 4rem;
  transform: translateY(var(--parallax-y, 0px));
  transition: transform 160ms linear;
}

.hero-art-surface::before {
  position: absolute;
  z-index: -1;
  top: 13%;
  right: 0;
  width: 78%;
  height: 72%;
  border: 1px solid var(--line);
  background: var(--canvas-blue);
  content: "";
}

.hero-art-surface::after {
  position: absolute;
  z-index: -2;
  top: 7%;
  left: 3%;
  width: 48%;
  height: 62%;
  border-top: 1px solid var(--blue);
  border-left: 1px solid var(--blue);
  content: "";
  opacity: 0.7;
}

.hero-accent {
  position: absolute;
  z-index: 0;
  right: 0;
  bottom: 16%;
  width: 54%;
  height: 27%;
  background: var(--blue);
  opacity: 0.95;
}

.hero-orbit {
  position: absolute;
  z-index: 2;
  top: 4%;
  right: 8%;
  bottom: 8%;
  left: 7%;
  border: 1px solid rgba(21, 94, 239, 0.4);
  border-radius: 50%;
  transform: rotate(-14deg);
  animation: orbit 22s linear infinite;
  pointer-events: none;
}

.hero-orbit::after {
  position: absolute;
  top: 7%;
  right: 8%;
  width: 0.6rem;
  height: 0.6rem;
  border: 2px solid var(--paper);
  border-radius: 50%;
  background: var(--blue);
  content: "";
}

.hero-image {
  position: relative;
  z-index: 1;
  width: min(100%, 395px);
  margin: 0 auto;
  background: var(--paper);
  box-shadow: 0 20px 50px rgba(16, 24, 40, 0.14);
  transform: translateZ(0);
}

.hero-image img {
  aspect-ratio: 0.76;
  width: 100%;
  object-fit: cover;
  object-position: center 18%;
  filter: saturate(0.9);
}

.hero-image figcaption {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--line);
  border-top: 0;
  color: var(--muted);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  line-height: 1.3;
}

.hero-side-note {
  position: absolute;
  z-index: 3;
  top: 19%;
  left: 0;
  display: grid;
  gap: 0.65rem;
  color: var(--blue);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.3;
  writing-mode: vertical-rl;
}

.hero-side-note span:first-child {
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--blue);
}

.hero-note {
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: 13rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.65;
}

.hero-bottom {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 1.35rem;
  color: var(--muted);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
}

.hero-bottom-line {
  display: block;
  width: 7rem;
  height: 1px;
  background: var(--line-strong);
}

.profile-section,
.records-section {
  background: var(--canvas);
}

.profile-section,
.work-section,
.records-section,
.history-section {
  padding-block: clamp(5rem, 10vw, 9rem);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(7rem, 0.25fr) minmax(0, 1fr);
  gap: clamp(2rem, 8vw, 8rem);
  align-items: start;
}

.section-heading h2,
.history-intro h2,
.connect-intro h2 {
  max-width: 14ch;
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.7rem, 5.3vw, 5.2rem);
  font-weight: 650;
  letter-spacing: -0.07em;
  line-height: 1;
}

.section-heading p:not(.section-index) {
  max-width: 35rem;
  margin: 1.25rem 0 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.profile-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(3rem, 7vw, 6rem);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.profile-fact {
  min-height: 10rem;
  padding: 1.7rem 1.5rem 1.6rem 0;
}

.profile-fact + .profile-fact {
  padding-left: 1.5rem;
  border-left: 1px solid var(--line-strong);
}

.profile-fact-value {
  color: var(--ink);
  font-size: clamp(2.7rem, 5vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.08em;
  line-height: 0.95;
}

.profile-fact-label {
  margin-left: 0.45rem;
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 700;
}

.profile-fact p {
  max-width: 18rem;
  margin: 1.1rem 0 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.65;
}

.profile-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(19rem, 0.72fr);
  gap: clamp(3rem, 9vw, 9rem);
  margin-top: clamp(3.5rem, 8vw, 7rem);
}

.profile-copy {
  max-width: 39rem;
}

.small-label {
  margin-bottom: 1.4rem;
}

.profile-copy p:not(.small-label) {
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  line-height: 1.85;
}

.profile-copy p + p {
  margin-top: 1.25rem;
}

.role-stack {
  align-self: end;
  border-top: 1px solid var(--ink);
}

.role-item {
  display: grid;
  grid-template-columns: 2.1rem 1fr;
  gap: 0.7rem;
  padding-block: 1.1rem;
  border-bottom: 1px solid var(--line-strong);
}

.role-item > span {
  color: var(--blue);
  font-size: 0.68rem;
  font-weight: 700;
}

.role-item strong,
.role-item small {
  display: block;
}

.role-item strong {
  font-size: 0.9rem;
  line-height: 1.45;
}

.role-item small {
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.74rem;
}

.work-section {
  background: var(--paper);
}

.work-feature {
  margin-top: clamp(3rem, 6vw, 5.5rem);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line-strong);
}

.work-feature-top {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding-block: 2rem 2.5rem;
}

.work-feature-top h3,
.jado-panel h3 {
  margin: 0.5rem 0 0;
  color: var(--ink);
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 650;
  letter-spacing: -0.06em;
  line-height: 1.1;
}

.work-feature-top p {
  max-width: 42rem;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.work-role {
  min-width: max-content;
  align-self: flex-start;
  padding: 0.35rem 0 0.35rem 1.1rem;
  border-left: 2px solid var(--blue);
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 700;
}

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

.service-card {
  position: relative;
  min-height: 16rem;
  padding: 1.2rem 1.15rem 1.35rem;
  border-right: 1px solid var(--line);
  background: var(--paper);
  transition: background-color 260ms ease, transform 260ms var(--ease), border-color 260ms ease;
}

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

.service-card::after {
  position: absolute;
  right: 1.15rem;
  bottom: 1.1rem;
  left: 1.15rem;
  height: 2px;
  background: var(--blue);
  content: "";
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 300ms var(--ease);
}

.service-card:hover,
.service-card:focus-within {
  background: var(--canvas-blue);
  transform: translateY(-0.35rem);
}

.service-card:hover::after,
.service-card:focus-within::after {
  transform: scaleX(1);
}

.service-number {
  display: block;
  color: var(--blue);
  font-size: 0.7rem;
  font-weight: 700;
}

.service-card h4 {
  max-width: 10ch;
  margin: 3.3rem 0 0;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.45;
}

.service-card p {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.7;
}

.jado-panel {
  display: grid;
  grid-template-columns: 8rem minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
  margin-top: 1.5rem;
  padding: 1.7rem 1.8rem;
  border: 1px solid var(--line-strong);
  background: var(--canvas);
  transition: border-color 220ms ease, transform 220ms var(--ease), background-color 220ms ease;
}

.jado-panel:hover,
.jado-panel:focus-within {
  border-color: var(--blue);
  background: var(--canvas-blue);
  transform: translateY(-0.25rem);
}

.jado-mark {
  color: var(--blue);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.jado-panel h3 {
  margin-top: 0.35rem;
  font-size: clamp(1.1rem, 2vw, 1.65rem);
  letter-spacing: -0.04em;
}

.jado-panel p {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.jado-role {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--blue-dark);
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
}

.jado-role span {
  font-size: 1.1rem;
}

.records-section {
  border-top: 1px solid var(--line);
}

.record-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(17rem, 0.8fr);
  gap: clamp(2rem, 6vw, 6rem);
  margin-top: clamp(3rem, 6vw, 5rem);
}

.record-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 1.4rem;
  align-items: end;
}

.record-photo {
  margin: 0;
}

.record-photo img {
  aspect-ratio: 1.14;
  width: 100%;
  object-fit: cover;
  object-position: center 36%;
  filter: saturate(0.86);
}

.record-photo figcaption,
.history-photo figcaption {
  margin-top: 0.65rem;
  color: var(--muted);
  font-size: 0.68rem;
}

.record-copy {
  padding-bottom: 1rem;
}

.record-copy h3 {
  max-width: 14ch;
  margin: 0.8rem 0 0;
  color: var(--ink);
  font-size: clamp(1.5rem, 2.5vw, 2.5rem);
  letter-spacing: -0.06em;
  line-height: 1.12;
}

.record-copy p {
  margin: 1.2rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.record-stats {
  border-top: 1px solid var(--ink);
}

.record-stat {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line-strong);
}

.record-stat-value {
  color: var(--blue);
  font-size: clamp(2.6rem, 5vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.09em;
  line-height: 0.95;
}

.record-stat-value span {
  margin-left: 0.15rem;
  font-size: 0.45em;
  letter-spacing: -0.04em;
}

.record-stat-word {
  font-size: clamp(1.8rem, 3.5vw, 3.6rem);
  letter-spacing: -0.06em;
}

.record-stat p {
  margin: 0;
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.55;
  text-align: right;
}

.client-wall {
  margin-top: clamp(4rem, 8vw, 7rem);
  padding-top: 1.35rem;
  border-top: 1px solid var(--ink);
}

.client-wall-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
}

.client-wall-heading h3 {
  margin: 0.55rem 0 0;
  font-size: clamp(1.5rem, 3vw, 2.7rem);
  letter-spacing: -0.06em;
  line-height: 1.05;
}

.client-wall-heading p {
  max-width: 15rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.75rem;
}

.client-list {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.client-list li {
  display: grid;
  min-height: 5.7rem;
  padding: 0.95rem;
  place-items: center;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: clamp(0.68rem, 1vw, 0.83rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.35;
  text-align: center;
  transition: background-color 220ms ease, color 220ms ease, transform 220ms var(--ease);
}

.client-list li:nth-child(3n + 1) {
  color: var(--blue-dark);
  font-size: clamp(0.75rem, 1.1vw, 0.92rem);
}

.client-list li:hover,
.client-list li:focus-visible {
  z-index: 1;
  background: var(--canvas-blue);
  color: var(--blue);
  transform: scale(1.035);
}

.client-ticker {
  overflow: hidden;
  margin-top: 1.25rem;
  padding-block: 0.75rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--blue);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.client-ticker-track {
  display: inline-flex;
  min-width: max-content;
  gap: 2.5rem;
  animation: marquee 32s linear infinite;
}

.client-ticker span {
  display: inline-flex;
  align-items: center;
  gap: 2.5rem;
}

.client-ticker span::after {
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--blue);
  content: "";
}

.inline-link {
  color: var(--blue-dark);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
  transition: color 180ms ease;
}

.inline-link:hover,
.inline-link:focus-visible {
  color: var(--blue);
}

.records-section {
  position: relative;
  overflow: hidden;
  background: var(--canvas);
}

.records-section::after {
  position: absolute;
  top: 20rem;
  right: -18rem;
  width: 42rem;
  height: 42rem;
  border: 1px solid rgba(21, 94, 239, 0.16);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.record-spotlight,
.client-wall {
  position: relative;
  z-index: 1;
}

.record-spotlight {
  overflow: hidden;
  margin-top: clamp(3rem, 6vw, 5rem);
  padding: clamp(1.25rem, 4vw, 3.25rem);
  background: var(--ink);
  color: var(--white-ink);
}

.record-spotlight::before,
.record-spotlight::after {
  position: absolute;
  border: 1px solid rgba(139, 182, 255, 0.28);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.record-spotlight::before {
  top: -22rem;
  right: -10rem;
  width: 48rem;
  height: 48rem;
}

.record-spotlight::after {
  right: 33%;
  bottom: -19rem;
  width: 30rem;
  height: 30rem;
  border-color: rgba(21, 94, 239, 0.7);
}

.record-spotlight-head,
.record-spotlight-foot {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.record-spotlight-head {
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(239, 246, 255, 0.22);
}

.record-tag-light {
  color: #8bb6ff;
}

.record-spotlight-index,
.record-spotlight-foot {
  color: rgba(239, 246, 255, 0.64);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.record-spotlight-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.15fr) minmax(10rem, 0.55fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: end;
  padding-block: clamp(2rem, 5vw, 4.5rem);
}

.record-spotlight-copy {
  min-width: 0;
}

.record-big-number {
  margin-top: 1.7rem;
  color: #6f9fff;
  font-size: clamp(5.5rem, 12vw, 10.5rem);
  font-weight: 700;
  letter-spacing: -0.12em;
  line-height: 0.72;
}

.record-big-number span {
  margin-left: 0.35rem;
  color: var(--white-ink);
  font-size: 0.28em;
  letter-spacing: -0.04em;
}

.record-spotlight-copy h3 {
  max-width: 13ch;
  margin: 1.8rem 0 0;
  color: var(--white-ink);
  font-size: clamp(1.25rem, 2.1vw, 2rem);
  letter-spacing: -0.06em;
  line-height: 1.22;
}

.record-spotlight-copy > p {
  max-width: 23rem;
  margin: 1rem 0 0;
  color: rgba(239, 246, 255, 0.68);
  font-size: 0.78rem;
}

.record-spotlight-rule {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2.6rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(239, 246, 255, 0.22);
  color: rgba(239, 246, 255, 0.65);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.record-spotlight-photo {
  margin: 0;
}

.record-spotlight-photo img {
  width: 100%;
  aspect-ratio: 1.15;
  object-fit: cover;
  object-position: center 34%;
  filter: saturate(0.86) contrast(1.04);
}

.record-spotlight-photo figcaption {
  margin-top: 0.6rem;
  color: rgba(239, 246, 255, 0.55);
  font-size: 0.67rem;
}

.record-spotlight-meta {
  align-self: stretch;
  border-top: 1px solid rgba(239, 246, 255, 0.22);
}

.record-meta-label {
  margin: 0;
  padding-block: 0.7rem;
  color: rgba(239, 246, 255, 0.52);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.record-meta-stat {
  display: grid;
  gap: 0.35rem;
  padding-block: 1.3rem;
  border-bottom: 1px solid rgba(239, 246, 255, 0.22);
}

.record-meta-stat strong {
  color: #8bb6ff;
  font-size: clamp(1.8rem, 3.2vw, 3.25rem);
  letter-spacing: -0.08em;
  line-height: 0.95;
}

.record-meta-stat span {
  color: rgba(239, 246, 255, 0.65);
  font-size: 0.7rem;
  line-height: 1.45;
}

.record-spotlight-foot {
  padding-top: 1rem;
  border-top: 1px solid rgba(239, 246, 255, 0.22);
}

.client-wall {
  margin-top: clamp(3rem, 6vw, 5rem);
  padding: clamp(1.25rem, 3vw, 2.8rem);
  border: 1px solid var(--ink);
  border-top: 5px solid var(--blue);
  background: var(--paper);
}

.client-wall-heading h3 {
  max-width: 16ch;
}

.client-wall-heading p {
  max-width: 19rem;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2rem;
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--line-strong);
}

.case-item {
  min-height: 9.3rem;
  padding: 1.1rem 1.1rem 1.25rem;
  border-right: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  transition: background-color 220ms ease, transform 220ms var(--ease);
}

.case-item:hover {
  background: var(--canvas-blue);
  transform: translateY(-0.25rem);
}

.case-item > span {
  color: var(--blue);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.case-item h4 {
  margin: 1.5rem 0 0;
  color: var(--ink);
  font-size: 1.05rem;
  letter-spacing: -0.04em;
  line-height: 1.2;
}

.case-item p {
  margin: 0.45rem 0 0;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.55;
}

.client-list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 1.5rem;
}

.client-list li {
  min-height: 5.4rem;
}

.client-wall--premium {
  overflow: hidden;
  margin-top: clamp(3rem, 6vw, 5rem);
  padding: clamp(1.25rem, 3vw, 2.8rem);
  border: 1px solid var(--ink);
  border-top: 5px solid var(--blue);
  background: var(--paper);
  box-shadow: 0 1.2rem 3rem rgba(16, 24, 40, 0.08);
}

.client-wall--premium::after {
  position: absolute;
  top: -8rem;
  right: -7rem;
  width: 20rem;
  height: 20rem;
  border: 1px solid rgba(21, 94, 239, 0.18);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.client-wall--premium > * {
  position: relative;
  z-index: 1;
}

.client-wall--premium .client-wall-heading {
  align-items: start;
}

.client-wall--premium .client-wall-heading h3 {
  max-width: 18ch;
  font-size: clamp(1.8rem, 4vw, 3.7rem);
  line-height: 1;
}

.record-metric-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(2.5rem, 5vw, 4rem);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.record-metric {
  min-height: 10rem;
  padding: 1.2rem 1.25rem 1.35rem;
  border-right: 1px solid var(--line-strong);
}

.record-metric:last-child {
  border-right: 0;
}

.record-metric-label,
.featured-client-heading,
.client-marquee-head {
  color: var(--blue-dark);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.record-metric strong {
  display: block;
  margin-top: 1.25rem;
  color: var(--blue);
  font-size: clamp(2.4rem, 5vw, 5.3rem);
  letter-spacing: -0.1em;
  line-height: 0.84;
}

.record-metric strong small {
  margin-left: 0.25rem;
  color: var(--ink);
  font-size: 0.28em;
  letter-spacing: -0.04em;
}

.record-metric p {
  max-width: 18rem;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.5;
}

.record-photo-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  margin-top: 1.5rem;
  background: var(--canvas-blue);
}

.record-photo-strip figure {
  margin: 0;
}

.record-photo-strip img {
  width: 100%;
  height: 100%;
  min-height: 15rem;
  object-fit: cover;
  object-position: center 34%;
  filter: saturate(0.86) contrast(1.04);
}

.record-photo-copy {
  display: flex;
  min-height: 15rem;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.35rem, 4vw, 3rem);
}

.record-photo-copy h4 {
  max-width: 13ch;
  margin: 1.2rem 0 0;
  color: var(--ink);
  font-size: clamp(1.45rem, 3.3vw, 3rem);
  letter-spacing: -0.07em;
  line-height: 1.08;
}

.record-photo-copy p {
  max-width: 24rem;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.featured-client-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 3rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--ink);
}

.featured-clients {
  display: grid;
  grid-template-columns: 1.35fr repeat(4, minmax(0, 1fr));
  border-left: 1px solid var(--line-strong);
}

.featured-client {
  display: flex;
  min-height: 10.5rem;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.1rem;
  border-right: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  background: var(--paper);
  color: var(--ink);
  transition: background-color 240ms ease, color 240ms ease, transform 240ms var(--ease);
}

.featured-client > span {
  color: var(--blue);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.featured-client strong {
  font-size: clamp(1rem, 1.8vw, 1.55rem);
  letter-spacing: -0.055em;
  line-height: 1.1;
}

.featured-client small {
  color: var(--muted);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.featured-client--primary {
  background: var(--ink);
  color: var(--white-ink);
}

.featured-client--primary > span,
.featured-client--primary small {
  color: #8bb6ff;
}

.featured-client:hover,
.featured-client:focus-within {
  z-index: 2;
  background: var(--blue);
  color: var(--paper);
  transform: translateY(-0.25rem);
}

.featured-clients {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.featured-client--primary {
  grid-column: span 2;
}

.featured-client:hover > span,
.featured-client:hover small,
.featured-client:focus-within > span,
.featured-client:focus-within small {
  color: var(--paper);
}

.case-intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 3.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--ink);
}

.case-intro p {
  max-width: 24rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.55;
}

.client-marquee-shell {
  overflow: hidden;
  margin-top: 2rem;
  padding: 1rem 0 1.2rem;
  border-inline: 0.45rem solid var(--blue);
  background: var(--ink);
  color: var(--white-ink);
}

.client-marquee-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 1.15rem 0.9rem;
  border-bottom: 1px solid rgba(239, 246, 255, 0.2);
  color: #8bb6ff;
}

.client-marquee-row {
  overflow: hidden;
  padding-top: 0.95rem;
}

.client-marquee-row + .client-marquee-row {
  padding-top: 0.8rem;
  border-top: 1px solid rgba(239, 246, 255, 0.14);
}

.client-marquee-track {
  display: flex;
  width: max-content;
  gap: 1.8rem;
  animation: marquee 48s linear infinite;
}

.client-marquee-row--reverse .client-marquee-track {
  animation-name: marquee-reverse;
  animation-duration: 56s;
}

.client-marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 1.8rem;
  color: rgba(239, 246, 255, 0.86);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.025em;
  white-space: nowrap;
}

.client-marquee-track span::after {
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 50%;
  background: #8bb6ff;
  content: "";
}

.client-name-index {
  margin-top: 1rem;
  border-top: 1px solid var(--line);
}

.client-name-index summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1rem;
  color: var(--blue-dark);
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  list-style: none;
}

.client-name-index summary::-webkit-details-marker {
  display: none;
}

.client-name-index summary span {
  color: var(--blue);
  font-size: 1.25rem;
  line-height: 1;
  transition: transform 200ms ease;
}

.client-name-index[open] summary span {
  transform: rotate(45deg);
}

.client-name-index .client-list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
}

.client-name-index .client-list li {
  min-height: 4.2rem;
  padding: 0.75rem;
  font-size: 0.7rem;
}

.history-section {
  background: var(--paper);
}

.history-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(3rem, 10vw, 10rem);
  align-items: start;
}

.history-intro h2 {
  margin-top: 1.2rem;
}

.history-intro > p:not(.section-index) {
  max-width: 22rem;
  margin: 1.5rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.history-photo {
  max-width: 15rem;
  margin: 3rem 0 0;
}

.history-photo img {
  aspect-ratio: 0.76;
  width: 100%;
  object-fit: cover;
  object-position: center 26%;
  filter: saturate(0.84);
}

.timeline {
  position: relative;
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline::before {
  position: absolute;
  top: 0.6rem;
  bottom: 0.8rem;
  left: 4.1rem;
  width: 1px;
  background: var(--line-strong);
  content: "";
}

.timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 6rem minmax(0, 1fr);
  gap: 2rem;
  padding: 0 0 2.5rem;
}

.timeline li:last-child {
  padding-bottom: 0;
}

.timeline time {
  position: relative;
  z-index: 1;
  display: inline-flex;
  min-height: 1.5rem;
  align-items: center;
  justify-content: flex-start;
  color: var(--blue);
  background: var(--paper);
  font-size: 0.75rem;
  font-weight: 700;
}

.timeline li > div {
  padding-bottom: 1.7rem;
  border-bottom: 1px solid var(--line);
}

.timeline li:last-child > div {
  border-bottom: 0;
}

.timeline h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.05rem, 1.6vw, 1.4rem);
  letter-spacing: -0.03em;
  line-height: 1.35;
}

.timeline p {
  max-width: 30rem;
  margin: 0.5rem 0 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.connect-section {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: var(--white-ink);
}

.connect-section::before,
.connect-section::after {
  position: absolute;
  border: 1px solid rgba(239, 246, 255, 0.18);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.connect-section::before {
  top: -19rem;
  right: -8rem;
  width: 42rem;
  height: 42rem;
}

.connect-section::after {
  right: 9rem;
  bottom: -23rem;
  width: 34rem;
  height: 34rem;
  border-color: rgba(21, 94, 239, 0.6);
}

.connect-section .page-width {
  position: relative;
  z-index: 1;
}

.connect-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: clamp(3rem, 8vw, 8rem);
  padding-block: clamp(5rem, 10vw, 9rem);
}

.section-index-light {
  color: #8db7ff;
}

.connect-intro h2 {
  margin-top: 1.2rem;
  color: var(--paper);
}

.connect-intro > p:not(.section-index) {
  max-width: 24rem;
  margin: 1.6rem 0 0;
  color: #c7d8ed;
  font-size: 0.9rem;
}

.connect-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(239, 246, 255, 0.35);
}

.connect-list li {
  display: grid;
  grid-template-columns: 2.2rem minmax(0, 1fr);
  gap: 0.8rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(239, 246, 255, 0.22);
}

.connect-list li > span {
  color: #8db7ff;
  font-size: 0.68rem;
  font-weight: 700;
}

.connect-list h3 {
  margin: 0;
  color: var(--paper);
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.45;
}

.connect-list p {
  margin: 0.35rem 0 0;
  color: #b8cbe2;
  font-size: 0.75rem;
}

.connect-action {
  grid-column: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 1.5rem;
}

.connect-action > p:first-child {
  margin: 0;
  color: #c7d8ed;
  font-size: 0.78rem;
}

.share-button {
  display: inline-flex;
  min-width: max-content;
  align-items: center;
  gap: 1.2rem;
  padding: 0.85rem 1.1rem;
  border: 1px solid #8db7ff;
  border-radius: 3px;
  background: transparent;
  color: var(--paper);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 700;
  transition: background-color 220ms ease, color 220ms ease, gap 220ms var(--ease);
}

.share-button:hover,
.share-button:focus-visible {
  gap: 1.6rem;
  background: var(--paper);
  color: var(--navy);
}

.share-status {
  position: absolute;
  right: 0;
  bottom: -1.8rem;
  margin: 0;
  color: #8db7ff;
  font-size: 0.72rem;
}

.site-footer {
  background: var(--paper);
  color: var(--muted);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 86px;
  font-size: 0.72rem;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--ink);
  font-weight: 700;
}

.footer-brand .wordmark-mark {
  width: 1.6rem;
  height: 1.6rem;
  font-size: 0.58rem;
}

.footer-inner p {
  margin: 0;
}

.js-ready [data-reveal] {
  opacity: 0;
  transform: translateY(1.6rem);
  transition: opacity 800ms var(--ease), transform 800ms var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}

.js-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes orbit {
  from {
    transform: rotate(-14deg);
  }
  to {
    transform: rotate(346deg);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes marquee-reverse {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.78fr);
    gap: 3rem;
  }

  .service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .service-card:nth-child(3) {
    border-right: 0;
  }

  .service-card:nth-child(n + 4) {
    border-top: 1px solid var(--line);
  }

  .client-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .featured-clients {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .featured-client--primary {
    grid-column: span 2;
  }

  .client-name-index .client-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .record-spotlight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .record-spotlight-meta {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 1.5rem;
    align-self: auto;
  }

  .record-meta-label {
    grid-column: 1 / -1;
  }

  .case-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .header-inner {
    min-height: 68px;
  }

  .site-nav {
    gap: 0.75rem;
  }

  .site-nav a {
    display: none;
  }

  .hero-grid {
    display: block;
    min-height: auto;
    padding-block: 4rem 2rem;
  }

  .hero h1 {
    font-size: clamp(4.7rem, 20vw, 7rem);
  }

  .hero-lede {
    max-width: 32rem;
  }

  .hero-visual {
    width: min(100%, 470px);
    margin: 3.5rem auto 0;
  }

  .hero-side-note {
    left: 0.25rem;
  }

  .hero-bottom {
    padding-bottom: 1.1rem;
  }

  .section-heading,
  .profile-detail,
  .history-grid,
  .connect-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .section-heading {
    gap: 1.25rem;
  }

  .section-heading h2,
  .history-intro h2,
  .connect-intro h2 {
    max-width: 12ch;
  }

  .profile-facts {
    grid-template-columns: 1fr;
  }

  .profile-fact {
    min-height: auto;
    padding-block: 1.2rem;
  }

  .profile-fact + .profile-fact {
    padding-left: 0;
    border-top: 1px solid var(--line-strong);
    border-left: 0;
  }

  .profile-fact p {
    display: inline;
    margin-left: 0.6rem;
  }

  .work-feature-top,
  .client-wall-heading,
  .connect-action {
    display: block;
  }

  .work-role {
    display: inline-block;
    margin-top: 1.1rem;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-card:nth-child(3) {
    border-right: 1px solid var(--line);
  }

  .service-card:nth-child(even) {
    border-right: 0;
  }

  .service-card:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .jado-panel {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }

  .jado-role {
    justify-self: start;
  }

  .record-layout,
  .record-feature {
    grid-template-columns: 1fr;
  }

  .record-spotlight-head,
  .record-spotlight-foot {
    align-items: flex-start;
    flex-direction: column;
  }

  .record-spotlight-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .record-spotlight-meta {
    display: block;
  }

  .record-meta-stat {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
    align-items: baseline;
  }

  .record-photo {
    max-width: 34rem;
  }

  .record-copy {
    padding-bottom: 0;
  }

  .record-copy h3 {
    max-width: 20ch;
  }

  .record-stats {
    margin-top: 1rem;
  }

  .client-wall-heading p {
    margin-top: 0.75rem;
  }

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

  .record-metric {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line-strong);
  }

  .record-metric:last-child {
    border-bottom: 0;
  }

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

  .record-photo-strip img {
    height: auto;
    min-height: 0;
    aspect-ratio: 1.5;
  }

  .record-photo-copy {
    min-height: auto;
  }

  .featured-clients {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .featured-client--primary {
    grid-column: 1 / -1;
  }

  .case-intro {
    display: block;
  }

  .case-intro p {
    margin-top: 0.75rem;
  }

  .client-marquee-head {
    font-size: 0.58rem;
  }

  .client-name-index .client-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .client-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .case-grid {
    grid-template-columns: 1fr;
  }

  .connect-action {
    grid-column: 1;
  }

  .connect-action > p:first-child {
    margin-bottom: 1rem;
  }

  .share-status {
    position: static;
    margin-top: 0.7rem;
  }

  .history-photo {
    margin-top: 2.4rem;
  }

  .timeline::before {
    left: 3.6rem;
  }

  .timeline li {
    grid-template-columns: 5.2rem minmax(0, 1fr);
    gap: 1.2rem;
  }

  .footer-inner {
    min-height: auto;
    flex-wrap: wrap;
    padding-block: 1.5rem;
  }
}

@media (max-width: 430px) {
  :root {
    --gutter: 1.1rem;
  }

  .header-inner {
    gap: 0.6rem;
  }

  .wordmark {
    gap: 0.5rem;
  }

  .wordmark-en {
    display: none;
  }

  .share-nav {
    padding-inline: 0.65rem;
  }

  .hero-grid {
    padding-top: 3rem;
  }

  .hero-greeting {
    margin-top: 3rem;
  }

  .hero-facts {
    grid-template-columns: 1fr;
  }

  .hero-fact {
    padding-right: 0;
  }

  .hero-fact + .hero-fact {
    padding-top: 0.95rem;
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .hero-art-surface {
    padding-inline: 0.5rem;
  }

  .hero-side-note {
    left: -0.2rem;
  }

  .hero-note {
    right: 0.2rem;
    max-width: 10rem;
    font-size: 0.66rem;
  }

  .service-grid,
  .client-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-card {
    min-height: 15rem;
  }

  .client-list li {
    min-height: 5.2rem;
    padding-inline: 0.55rem;
    font-size: 0.66rem;
  }

  .featured-clients {
    grid-template-columns: 1fr;
  }

  .featured-client--primary {
    grid-column: auto;
  }

  .client-name-index .client-list {
    grid-template-columns: 1fr;
  }

  .record-stat-value {
    font-size: 2.8rem;
  }

  .connect-list h3 {
    font-size: 0.92rem;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

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

  .hero-art-surface {
    transform: none !important;
  }

  .client-marquee-track {
    animation: none !important;
  }

  .hero-orbit {
    animation: none !important;
  }

  .js-ready [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* v7 refinements — mobile-first navigation, formal client index, and a quieter wordmark */
.wordmark-copy {
  position: relative;
  padding-left: 0.9rem;
}

.wordmark-copy::before {
  position: absolute;
  top: 0.18rem;
  left: 0;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: var(--blue);
  content: "";
}

.client-wall--premium {
  border-top: 0;
  background: linear-gradient(145deg, var(--paper) 0%, #fbfdff 72%, var(--canvas-blue) 100%);
}

.client-wall--premium::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--blue) 0 34%, #8bb6ff 34% 50%, var(--ink) 50% 100%);
  content: "";
}

.featured-client strong {
  max-width: 17ch;
}

.client-marquee-shell {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin-top: 2rem;
  padding: 1.1rem 0 1.35rem;
  border: 1px solid rgba(139, 182, 255, 0.36);
  border-radius: 2px;
  background-color: #0d1d32;
  background-image: linear-gradient(rgba(139, 182, 255, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(139, 182, 255, 0.06) 1px, transparent 1px);
  background-size: 2.5rem 2.5rem;
  box-shadow: 0 1.4rem 2.8rem rgba(16, 24, 40, 0.14);
}

.client-marquee-shell::before,
.client-marquee-shell::after {
  position: absolute;
  z-index: 3;
  top: 3.1rem;
  bottom: 0;
  width: 4rem;
  content: "";
  pointer-events: none;
}

.client-marquee-shell::before {
  left: 0;
  background: linear-gradient(90deg, #0d1d32 4%, rgba(13, 29, 50, 0) 100%);
}

.client-marquee-shell::after {
  right: 0;
  background: linear-gradient(270deg, #0d1d32 4%, rgba(13, 29, 50, 0) 100%);
}

.client-marquee-head {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 1.15rem 0.85rem;
  border-bottom: 1px solid rgba(239, 246, 255, 0.22);
}

.client-marquee-head > div {
  display: grid;
  gap: 0.25rem;
}

.client-marquee-head strong {
  color: var(--paper);
  font-size: 0.9rem;
  font-weight: 650;
  letter-spacing: -0.035em;
}

.client-marquee-intro {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: 2rem minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.15rem 0;
  color: rgba(239, 246, 255, 0.62);
  font-size: 0.66rem;
  line-height: 1.45;
}

.client-marquee-intro > span:first-child {
  color: #8bb6ff;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.client-marquee-intro > span:last-child {
  color: rgba(239, 246, 255, 0.42);
  font-size: 0.56rem;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.client-marquee-intro p {
  margin: 0;
}

.client-marquee-row {
  position: relative;
  z-index: 1;
  padding-top: 1rem;
}

.client-marquee-row + .client-marquee-row {
  padding-top: 0.8rem;
}

.client-marquee-track {
  gap: 0.65rem;
  animation-duration: 58s;
}

.client-marquee-row--reverse .client-marquee-track {
  animation-duration: 68s;
}

.client-marquee-track span {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.38rem 0.75rem;
  border: 1px solid rgba(139, 182, 255, 0.25);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(239, 246, 255, 0.9);
  font-size: 0.7rem;
  letter-spacing: 0.01em;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.client-marquee-track span::before {
  width: 0.28rem;
  height: 0.28rem;
  border-radius: 50%;
  background: #8bb6ff;
  content: "";
}

.client-marquee-track span::after {
  display: none;
}

.client-marquee-shell:hover .client-marquee-track {
  animation-play-state: paused;
}

.client-name-index summary {
  min-height: 3.25rem;
  padding-inline: 0.25rem;
}

.client-name-index .client-list li {
  min-height: 4.7rem;
  align-content: center;
  overflow-wrap: anywhere;
}

@media (max-width: 760px) {
  .header-inner {
    min-height: 0;
    flex-wrap: wrap;
    row-gap: 0.65rem;
    padding-block: 0.75rem 0.6rem;
  }

  .site-nav {
    order: 3;
    flex: 1 0 100%;
    min-width: 0;
    justify-content: flex-start;
    gap: 1.35rem;
    overflow-x: auto;
    padding-top: 0.55rem;
    border-top: 1px solid var(--line);
    scrollbar-width: none;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .site-nav a {
    display: block;
    flex: 0 0 auto;
    padding-block: 0.2rem;
    font-size: 0.62rem;
  }

  .share-nav {
    flex: 0 0 auto;
    padding: 0.48rem 0.7rem;
    font-size: 0.68rem;
  }

  .hero-grid {
    padding-block: 3.8rem 2rem;
  }

  .hero-greeting {
    margin-top: 2.5rem;
  }

  .hero-visual {
    margin-top: 2.8rem;
  }

  .hero-bottom {
    gap: 0.7rem;
    padding-bottom: 0.9rem;
    font-size: 0.55rem;
  }

  .hero-bottom-line {
    flex: 1;
    width: auto;
  }

  .profile-section,
  .work-section,
  .records-section,
  .history-section {
    padding-block: 4.5rem;
  }

  .section-heading h2,
  .history-intro h2,
  .connect-intro h2 {
    font-size: clamp(2.35rem, 10vw, 3.4rem);
    letter-spacing: -0.08em;
  }

  .section-heading p:not(.section-index) {
    margin-top: 1rem;
    font-size: 0.87rem;
  }

  .profile-copy p:not(.small-label) {
    font-size: 1rem;
    line-height: 1.85;
  }

  .work-feature {
    margin-top: 2.7rem;
  }

  .work-feature-top {
    padding-block: 1.45rem 1.8rem;
  }

  .work-feature-top h3,
  .jado-panel h3 {
    font-size: 1.65rem;
  }

  .work-feature-top p {
    margin-top: 0.8rem;
    font-size: 0.84rem;
  }

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

  .service-card,
  .service-card:nth-child(n) {
    display: grid;
    min-height: 0;
    grid-template-columns: 2.1rem minmax(0, 1fr);
    column-gap: 0.7rem;
    padding: 1.2rem 0;
    border-top: 1px solid var(--line);
    border-right: 0;
  }

  .service-card:first-child {
    border-top: 0;
  }

  .service-card::after {
    display: none;
  }

  .service-number {
    grid-row: 1 / span 2;
    padding-top: 0.15rem;
  }

  .service-card h4 {
    max-width: none;
    margin: 0;
    font-size: 0.98rem;
  }

  .service-card p {
    grid-column: 2;
    margin-top: 0.45rem;
    font-size: 0.75rem;
  }

  .jado-panel {
    margin-top: 0.8rem;
    padding: 1.25rem 1rem;
  }

  .records-section .page-width {
    width: min(var(--content), calc(100% - (var(--gutter) * 2)));
  }

  .client-wall--premium {
    margin-top: 2.8rem;
    padding: 1.05rem 0.95rem 1.1rem;
  }

  .client-wall--premium .client-wall-heading h3 {
    max-width: 12ch;
    font-size: clamp(1.65rem, 8.5vw, 2.6rem);
  }

  .client-wall-heading p {
    max-width: none;
    margin-top: 0.85rem;
    font-size: 0.72rem;
  }

  .record-metric-strip {
    margin-top: 2.3rem;
  }

  .record-metric {
    padding: 1rem 0.1rem 1.1rem;
  }

  .record-metric strong {
    margin-top: 0.9rem;
    font-size: clamp(2.55rem, 14vw, 4.5rem);
  }

  .record-photo-copy {
    padding: 1.35rem 1.15rem 1.55rem;
  }

  .featured-client-heading {
    margin-top: 2.2rem;
  }

  .featured-clients {
    margin-inline: -0.1rem;
  }

  .featured-client,
  .featured-client--primary {
    min-height: 8.3rem;
    padding: 0.95rem 0.85rem;
  }

  .featured-client strong {
    max-width: 22ch;
    font-size: 1.02rem;
    line-height: 1.3;
  }

  .client-marquee-shell {
    margin-inline: -0.15rem;
    padding-top: 0.95rem;
  }

  .client-marquee-head {
    align-items: start;
    flex-direction: column;
    gap: 0.55rem;
    padding-inline: 0.85rem;
  }

  .client-marquee-head > span:last-child {
    font-size: 0.56rem;
  }

  .client-marquee-intro {
    grid-template-columns: 1.7rem minmax(0, 1fr);
    padding-inline: 0.85rem;
  }

  .client-marquee-intro > span:last-child {
    display: none;
  }

  .client-marquee-shell::before,
  .client-marquee-shell::after {
    width: 2.5rem;
  }

  .client-marquee-track {
    gap: 0.5rem;
  }

  .client-marquee-track span {
    padding: 0.35rem 0.6rem;
    font-size: 0.67rem;
  }

  .client-name-index .client-list {
    grid-template-columns: 1fr;
  }

  .client-name-index .client-list li {
    min-height: 3.6rem;
    place-items: start;
    padding: 0.75rem 0.65rem;
    text-align: left;
  }

  .timeline li {
    gap: 1rem;
  }

  .connect-grid {
    gap: 2rem;
    padding-block: 4.5rem;
  }

  .connect-list h3 {
    font-size: 0.96rem;
  }

  .connect-action {
    padding-top: 1rem;
  }

  .share-button {
    width: 100%;
    justify-content: space-between;
  }
}

@media (max-width: 430px) {
  :root {
    --gutter: 1rem;
  }

  .wordmark-ja {
    font-size: 0.86rem;
  }

  .hero h1 {
    font-size: clamp(3.7rem, 18vw, 5rem);
  }

  .hero-lede {
    font-size: 0.94rem;
    line-height: 1.8;
  }

  .hero-fact {
    padding-block: 0.85rem;
  }

  .profile-facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .profile-fact,
  .profile-fact + .profile-fact {
    min-height: 8.7rem;
    padding: 1rem 0.55rem 0.9rem;
    border-top: 0;
    border-left: 1px solid var(--line-strong);
  }

  .profile-fact:first-child {
    padding-left: 0;
    border-left: 0;
  }

  .profile-fact-value {
    font-size: clamp(1.9rem, 9vw, 2.5rem);
  }

  .profile-fact-label {
    display: block;
    margin: 0.35rem 0 0;
    font-size: 0.6rem;
    line-height: 1.3;
  }

  .profile-fact p {
    display: block;
    margin: 0.55rem 0 0;
    font-size: 0.65rem;
    line-height: 1.5;
  }

  .featured-client strong {
    max-width: 19ch;
  }

  .client-wall--premium .client-wall-heading h3 {
    font-size: 1.82rem;
  }
}

/* v8 art direction — deliberate line breaks, editorial depth, and mobile readability */
:root {
  --display: "Hiragino Mincho ProN", "Yu Mincho", "Noto Serif JP", serif;
  --blue-bright: #276bff;
  --blue-wash: #eff5ff;
}

.wordmark-copy {
  padding-left: 0;
}

.wordmark-copy::before {
  display: none;
}

.hero {
  background:
    radial-gradient(circle at 86% 18%, rgba(39, 107, 255, 0.11) 0 0.14rem, transparent 0.16rem),
    linear-gradient(90deg, transparent 0 92%, rgba(21, 94, 239, 0.05) 92% 92.15%, transparent 92.15% 100%),
    var(--paper);
  background-size: 1.1rem 1.1rem, 100% 100%, auto;
}

.hero h1 {
  max-width: none;
  font-family: var(--display);
  font-size: clamp(4.8rem, 9.2vw, 8.4rem);
  font-weight: 600;
  letter-spacing: -0.13em;
  line-height: 0.88;
}

.hero-title-line {
  display: inline-block;
  white-space: nowrap;
}

.hero-lede {
  font-size: clamp(1rem, 1.7vw, 1.2rem);
  line-height: 1.8;
}

.hero-lede span {
  display: block;
}

.hero-art-surface {
  transform: translate3d(var(--tilt-x, 0px), calc(var(--parallax-y, 0px) + var(--tilt-y, 0px)), 0) rotateX(var(--tilt-rotate-x, 0deg)) rotateY(var(--tilt-rotate-y, 0deg));
  transform-style: preserve-3d;
  will-change: transform;
}

.hero-image {
  border: 1px solid rgba(16, 24, 40, 0.16);
  box-shadow: 1rem 1.2rem 0 var(--blue), 0 1.8rem 4rem rgba(16, 24, 40, 0.14);
}

.hero-image figcaption {
  background: var(--paper);
}

.hero-fact strong,
.role-item strong {
  line-break: strict;
  overflow-wrap: normal;
  word-break: keep-all;
}

.section-heading h2,
.history-intro h2,
.connect-intro h2 {
  font-family: var(--display);
  font-weight: 600;
}

.section-heading h2 span,
.history-intro h2 span {
  display: block;
  white-space: nowrap;
}

.section-heading p:not(.section-index) {
  line-height: 1.75;
}

.work-section {
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper) 82%, var(--blue-wash) 100%);
}

.service-card {
  isolation: isolate;
  overflow: hidden;
}

.service-card::before {
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  width: 0.25rem;
  background: var(--blue);
  content: "";
  transform: scaleY(0);
  transform-origin: bottom center;
  transition: transform 280ms var(--ease);
}

.service-card:hover::before,
.service-card:focus-within::before {
  transform: scaleY(1);
}

.service-card h4 {
  line-break: strict;
  overflow-wrap: normal;
  word-break: keep-all;
}

.featured-client strong {
  display: grid;
  gap: 0.15rem;
  line-break: strict;
  overflow-wrap: normal;
  word-break: keep-all;
}

.featured-client strong span {
  display: block;
}

.featured-client small {
  display: none;
}

.featured-client:hover,
.featured-client:focus-within {
  transform: translateY(-0.4rem) rotate(-0.4deg);
}

.client-wall--premium {
  border-color: rgba(16, 24, 40, 0.72);
  box-shadow: 0 1.2rem 3rem rgba(16, 24, 40, 0.11), 0 0 0 1px rgba(255, 255, 255, 0.65) inset;
}

.client-wall--premium .client-wall-heading h3 {
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.08;
}

.client-marquee-shell {
  isolation: isolate;
  border-radius: 0.5rem;
  box-shadow: 0 1.5rem 3.5rem rgba(6, 27, 50, 0.22), 0 0 0 1px rgba(139, 182, 255, 0.12) inset;
}

.ticker-orbit {
  position: absolute;
  z-index: 0;
  display: block;
  border: 1px solid rgba(139, 182, 255, 0.35);
  border-radius: 50%;
  pointer-events: none;
  transform-origin: center;
}

.ticker-orbit--one {
  top: 5.3rem;
  left: -10%;
  width: 120%;
  height: 8.5rem;
  transform: rotate(-7deg);
  animation: ticker-orbit-one 17s ease-in-out infinite alternate;
}

.ticker-orbit--two {
  right: -16%;
  bottom: -3.7rem;
  width: 112%;
  height: 8rem;
  border-color: rgba(39, 107, 255, 0.54);
  transform: rotate(7deg);
  animation: ticker-orbit-two 21s ease-in-out infinite alternate;
}

.client-marquee-head,
.client-marquee-intro,
.client-marquee-row {
  position: relative;
}

.client-marquee-head,
.client-marquee-intro {
  z-index: 4;
}

.client-marquee-row {
  z-index: 2;
}

.client-marquee-head strong {
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 600;
}

.client-marquee-track span {
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.015) inset;
}

.client-marquee-track span:hover {
  border-color: rgba(139, 182, 255, 0.72);
  background: rgba(39, 107, 255, 0.25);
  color: var(--paper);
}

.client-name-index {
  border-color: rgba(16, 24, 40, 0.35);
}

.client-name-index summary {
  font-size: 0.74rem;
}

@keyframes ticker-orbit-one {
  from { transform: translate3d(-1.5%, 0, 0) rotate(-7deg); }
  to { transform: translate3d(1.5%, 0.35rem, 0) rotate(-4deg); }
}

@keyframes ticker-orbit-two {
  from { transform: translate3d(1%, 0, 0) rotate(7deg); }
  to { transform: translate3d(-1%, -0.3rem, 0) rotate(4deg); }
}

@media (max-width: 760px) {
  .hero h1 {
    font-size: clamp(4rem, 18.8vw, 5.6rem);
    letter-spacing: -0.12em;
    line-height: 0.9;
  }

  .hero-title-line {
    display: block;
  }

  .hero-lede span + span {
    margin-top: 0.2rem;
  }

  .hero-image {
    box-shadow: 0.65rem 0.8rem 0 var(--blue), 0 1.4rem 2.8rem rgba(16, 24, 40, 0.15);
  }

  .section-heading h2 span,
  .history-intro h2 span {
    white-space: normal;
  }

  .featured-clients {
    grid-template-columns: 1fr;
  }

  .featured-client,
  .featured-client--primary {
    display: grid;
    min-height: 7rem;
    grid-template-columns: 6.8rem minmax(0, 1fr);
    grid-template-rows: 1fr;
    align-items: center;
    column-gap: 0.85rem;
    padding: 1.1rem 1rem;
  }

  .featured-client > span {
    align-self: start;
    padding-top: 0.15rem;
  }

  .featured-client strong {
    font-size: 1.05rem;
    line-height: 1.35;
  }

  .client-marquee-shell {
    margin-inline: -0.25rem;
    border-radius: 0.65rem;
  }

  .client-marquee-head strong {
    max-width: 15ch;
    line-height: 1.25;
  }

  .ticker-orbit--one {
    top: 6rem;
    width: 150%;
    left: -25%;
  }

  .ticker-orbit--two {
    right: -35%;
    width: 150%;
  }
}

@media (max-width: 430px) {
  .hero h1 {
    font-size: clamp(3.7rem, 18vw, 5rem);
  }

  .hero-greeting {
    font-size: 1rem;
  }

  .hero-lede {
    font-size: 0.97rem;
  }

  .featured-client,
  .featured-client--primary {
    grid-template-columns: 6.2rem minmax(0, 1fr);
    min-height: 6.65rem;
  }

  .featured-client strong {
    font-size: 1rem;
  }

  .client-marquee-intro p {
    font-size: 0.68rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ticker-orbit,
  .hero-art-surface {
    animation: none !important;
    transform: none !important;
  }
}
