:root {
  --canvas: #F7F8FA;
  --surface: #FFFFFF;
  --mist: #EEF1F5;
  --ink: #171A20;
  --copy: #3E4652;
  --muted: #626D7D;
  --blue: #315CF4;
  --blue-deep: #2447C8;
  --blue-soft: #E8EDFF;
  --success: #1B7F5A;
  --danger: #B4233A;
  --line: rgba(57, 77, 109, 0.16);
  --line-strong: rgba(42, 65, 104, 0.28);
  --font-sans: Geist, "SF Pro Display", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", system-ui;
  --content: min(1320px, calc(100% - 96px));
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

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

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--canvas);
  color: var(--copy);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button,
select {
  cursor: pointer;
}

button:disabled {
  cursor: wait;
}

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

img,
svg,
video,
canvas {
  display: block;
  max-width: 100%;
}

[hidden] {
  display: none !important;
}

:where(a, button, input, select, textarea):focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 80;
  top: 12px;
  left: 50%;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 10px;
  background: var(--ink);
  color: var(--surface);
  font-size: 14px;
  font-weight: 650;
  letter-spacing: 0.02em;
  transform: translate(-50%, -160%);
  transition: transform 240ms var(--ease-out);
}

.skip-link:focus {
  transform: translate(-50%, 0);
}

.site-header {
  position: relative;
  z-index: 30;
  background: var(--surface);
  box-shadow: 0 1px 0 rgba(57, 77, 109, 0.1), 0 12px 30px rgba(29, 48, 84, 0.025);
}

.site-header__inner {
  display: grid;
  grid-template-columns: minmax(208px, 0.8fr) minmax(0, 1fr) auto;
  align-items: center;
  width: var(--content);
  min-height: 80px;
  margin: 0 auto;
  gap: clamp(22px, 3vw, 52px);
}

.site-brand {
  display: grid;
  justify-self: start;
  gap: 2px;
  min-width: 44px;
  min-height: 44px;
  color: var(--ink);
  line-height: 1.2;
}

.site-brand__name {
  font-size: clamp(18px, 1.35vw, 22px);
  font-weight: 680;
  letter-spacing: -0.035em;
}

.site-brand__descriptor {
  color: var(--muted);
  font-size: 11px;
  font-weight: 560;
  letter-spacing: 0.035em;
}

.site-brand__english {
  display: none;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(17px, 2vw, 31px);
  min-width: 0;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--copy);
  font-size: 14px;
  font-weight: 560;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--blue);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 240ms var(--ease-out);
}

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

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.site-header__action,
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 650;
  letter-spacing: -0.01em;
  transition: transform 220ms var(--ease-out);
}

.site-header__action {
  min-width: 94px;
  padding: 10px 16px;
  background: var(--blue);
  color: var(--surface);
  box-shadow: 0 10px 20px rgba(49, 92, 244, 0.18);
}

.site-header__action:hover,
.site-header__action:focus-visible,
.cta--primary:hover,
.cta--primary:focus-visible {
  background: var(--blue-deep);
  box-shadow: 0 14px 26px rgba(36, 71, 200, 0.23);
  transform: translateY(-2px);
}

.site-header__action:active,
.cta:active,
.lead-form button:active {
  transform: translateY(1px) scale(0.985);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 12px;
  background: var(--mist);
  color: var(--ink);
}

.menu-toggle span {
  position: absolute;
  width: 20px;
  height: 1.5px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 220ms var(--ease-out);
}

.menu-toggle span:first-child {
  transform: translateY(-4px);
}

.menu-toggle span:last-child {
  transform: translateY(4px);
}

.site-header.menu-open .menu-toggle span:first-child {
  transform: rotate(45deg);
}

.site-header.menu-open .menu-toggle span:last-child {
  transform: rotate(-45deg);
}

main {
  overflow: clip;
}

.page-content {
  width: 100%;
}

.hero,
.section,
.attorney-profile,
.contact-prompt,
.lead-form,
.article-notice {
  width: var(--content);
  margin-right: auto;
  margin-left: auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(490px, 7fr);
  align-items: stretch;
  gap: clamp(42px, 6vw, 106px);
  min-height: 680px;
  padding: clamp(56px, 6vw, 92px) 0 clamp(72px, 7vw, 112px);
}

.hero--home {
  grid-template-columns: minmax(0, 5fr) minmax(490px, 7fr);
  gap: clamp(36px, 4vw, 56px);
  min-height: 616px;
  padding: clamp(46px, 4.2vw, 62px) 0 clamp(56px, 4.7vw, 72px);
}

.hero__copy {
  display: flex;
  flex-direction: column;
  align-self: center;
  align-items: flex-start;
  min-width: 0;
}

.hero__context,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.015em;
  line-height: 1.4;
}

.hero__context::before,
.section-kicker::before {
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  content: "";
}

.hero h1 {
  max-width: 8.4em;
  margin: 0;
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: clamp(58px, 5.8vw, 98px);
  font-weight: 720;
  letter-spacing: -0.075em;
  line-height: 1.08;
  text-wrap: balance;
}

.hero--home h1 {
  max-width: 10em;
  font-size: clamp(52px, 4.55vw, 68px);
  letter-spacing: -0.052em;
  line-height: 1.12;
}

.hero__lead {
  max-width: 37rem;
  margin: 32px 0 0;
  color: var(--copy);
  font-size: clamp(16px, 1.18vw, 19px);
  line-height: 1.85;
  text-wrap: pretty;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 36px 0 0;
}

.hero--home .hero__lead {
  margin-top: 28px;
}

.hero--home .hero__actions {
  margin-top: 32px;
}

.cta {
  gap: 16px;
  padding: 8px 10px 8px 18px;
}

.cta span:last-child {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 9px;
  font-size: 19px;
  font-weight: 420;
  line-height: 1;
  transition: transform 220ms var(--ease-out);
}

.cta:hover span:last-child,
.cta:focus-visible span:last-child {
  transform: translate(2px, -1px);
}

.cta--primary {
  background: var(--blue);
  color: var(--surface);
  box-shadow: 0 12px 24px rgba(49, 92, 244, 0.2);
}

.cta--primary span:last-child {
  background: rgba(255, 255, 255, 0.15);
}

.cta--secondary {
  padding-left: 8px;
  background: transparent;
  color: var(--ink);
}

.cta--secondary span:last-child {
  background: var(--blue-soft);
  color: var(--blue);
}

.cta--secondary:hover,
.cta--secondary:focus-visible {
  background: var(--blue-soft);
  color: var(--blue-deep);
  transform: translateY(-2px);
}

.evidence-system {
  position: relative;
  z-index: 0;
  align-self: center;
  min-height: 510px;
  margin: 0;
  padding: clamp(32px, 3.5vw, 48px);
  overflow: hidden;
  border-radius: 18px;
  background: var(--surface);
  box-shadow: 0 0 0 1px rgba(49, 92, 244, 0.12), 0 22px 52px rgba(33, 54, 92, 0.09), inset 0 1px 0 rgba(255, 255, 255, 0.96);
  isolation: isolate;
}

.evidence-system::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  background-image: radial-gradient(circle, rgba(49, 92, 244, 0.12) 1px, transparent 1.1px);
  background-position: 9px 9px;
  background-size: 18px 18px;
  content: "";
  opacity: 0.38;
}

.evidence-system::after {
  position: absolute;
  z-index: -1;
  right: -90px;
  bottom: -104px;
  width: 290px;
  height: 290px;
  border: 28px solid rgba(49, 92, 244, 0.045);
  border-radius: 50%;
  content: "";
}

.evidence-system__caption {
  display: grid;
  gap: 8px;
  max-width: 22rem;
}

.evidence-system__name {
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.09em;
  line-height: 1.2;
}

.evidence-system__caption strong {
  color: var(--ink);
  font-size: clamp(23px, 2.3vw, 32px);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1.25;
}

.evidence-system__description {
  max-width: 31rem;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.evidence-system__paths {
  position: absolute;
  z-index: -1;
  inset: 118px 30px 40px;
  width: calc(100% - 60px);
  height: calc(100% - 158px);
  overflow: visible;
}

.evidence-system__paths path {
  fill: none;
  stroke: #A7B7D4;
  stroke-width: 1.8;
  vector-effect: non-scaling-stroke;
}

html.has-js .evidence-system__paths path {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  transition: stroke-dashoffset 620ms var(--ease-out);
}

html.has-js .evidence-system.is-ready .evidence-system__paths path {
  stroke-dashoffset: 0;
}

html.has-js .evidence-system.is-ready .evidence-system__paths path:nth-child(2) {
  transition-delay: 110ms;
}

html.has-js .evidence-system.is-ready .evidence-system__paths path:nth-child(3) {
  transition-delay: 210ms;
}

html.has-js .evidence-system.is-ready .evidence-system__paths path:nth-child(4) {
  transition-delay: 310ms;
}

.evidence-system__nodes {
  position: relative;
  min-height: 334px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.evidence-system__node {
  position: absolute;
  display: grid;
  grid-template-columns: 12px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  width: min(42%, 185px);
  padding: 13px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 0 0 1px rgba(49, 92, 244, 0.13), 0 11px 22px rgba(32, 53, 91, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

html.has-js .evidence-system__node {
  opacity: 0;
  transform: translate3d(0, 10px, 0) scale(0.985);
  transition: opacity 420ms var(--ease-out), transform 420ms var(--ease-out);
}

html.has-js .evidence-system.is-ready .evidence-system__node {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

html.has-js .evidence-system.is-ready .evidence-system__node:nth-child(2) {
  transition-delay: 100ms;
}

html.has-js .evidence-system.is-ready .evidence-system__node:nth-child(3) {
  transition-delay: 200ms;
}

html.has-js .evidence-system.is-ready .evidence-system__node:nth-child(4) {
  transition-delay: 300ms;
}

html.has-js .evidence-system.is-ready .evidence-system__node:nth-child(5) {
  transition-delay: 400ms;
}

.evidence-system__node strong,
.evidence-system__node span:not(.evidence-system__marker) {
  display: block;
}

.evidence-system__node strong {
  color: var(--ink);
  font-size: 16px;
  font-weight: 690;
  letter-spacing: -0.035em;
  line-height: 1.28;
}

.evidence-system__node span:not(.evidence-system__marker) {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

.evidence-system__marker {
  width: 12px;
  height: 12px;
  margin-top: 4px;
  border: 3px solid var(--blue);
  border-radius: 50%;
  background: var(--surface);
  box-shadow: 0 0 0 4px var(--blue-soft);
}

[data-evidence-node="platform"] {
  top: 30px;
  left: 2%;
}

[data-evidence-node="account"] {
  top: 148px;
  left: 22%;
}

[data-evidence-node="funds"] {
  top: 48px;
  right: 3%;
}

[data-evidence-node="parties"] {
  top: 150px;
  right: 1%;
  bottom: auto;
}

[data-evidence-node="procedure"] {
  bottom: 10px;
  left: 24%;
}

.hero--interior {
  grid-template-columns: minmax(0, 7fr) minmax(310px, 5fr);
  min-height: 458px;
}

.hero--interior .hero__copy {
  padding-right: clamp(16px, 4vw, 70px);
}

.hero--interior h1 {
  max-width: 10ch;
  font-size: clamp(50px, 4.6vw, 76px);
}

.hero--interior .hero__lead {
  margin-top: 24px;
}

.interior-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 318px;
  padding: clamp(32px, 4vw, 56px);
  overflow: hidden;
  border-radius: 18px;
  background: var(--mist);
  box-shadow: inset 0 0 0 1px rgba(49, 92, 244, 0.08);
}

.interior-panel::before,
.interior-panel::after {
  position: absolute;
  content: "";
}

.interior-panel::before {
  top: 16%;
  right: 12%;
  width: clamp(96px, 13vw, 174px);
  height: clamp(96px, 13vw, 174px);
  border: 1px solid rgba(49, 92, 244, 0.34);
  border-radius: 50%;
}

.interior-panel::after {
  top: calc(16% + clamp(47px, 6.5vw, 87px));
  right: calc(12% - 18px);
  width: clamp(130px, 18vw, 236px);
  height: 1px;
  background: rgba(49, 92, 244, 0.48);
  content: "";
  transform: rotate(-35deg);
  transform-origin: right;
}

.interior-panel__node {
  position: absolute;
  top: 16%;
  right: calc(12% + clamp(42px, 6vw, 76px));
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 8px var(--blue-soft);
}

.interior-panel p {
  position: relative;
  z-index: 1;
  max-width: 24ch;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.interior-panel p:last-child {
  margin-top: 11px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 630;
  letter-spacing: -0.02em;
}

.section {
  padding: clamp(86px, 10vw, 156px) 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(235px, 0.52fr);
  align-items: end;
  gap: clamp(34px, 8vw, 140px);
  margin-bottom: clamp(38px, 5vw, 72px);
}

.section-heading h2,
.contact-prompt h2,
.lead-form h2,
.article-notice h2 {
  max-width: 13ch;
  margin: 0;
  color: var(--ink);
  font-size: clamp(36px, 3.55vw, 61px);
  font-weight: 710;
  letter-spacing: -0.06em;
  line-height: 1.16;
  text-wrap: balance;
}

.section-heading__summary {
  max-width: 29ch;
  margin: 0 0 4px;
  color: var(--copy);
  font-size: 16px;
  line-height: 1.82;
  text-wrap: pretty;
}

.journey-paths {
  padding-top: clamp(50px, 7vw, 108px);
}

.journey-paths__list,
.insight-index__rows,
.content-list,
.method-workflow__steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.journey-paths__list {
  border-top: 1px solid var(--line-strong);
}

.journey-paths__list li {
  border-bottom: 1px solid var(--line);
}

.journey-path {
  position: relative;
  display: grid;
  grid-template-columns: minmax(160px, 1.05fr) minmax(240px, 1.55fr) minmax(180px, 1fr) minmax(140px, 0.9fr);
  align-items: center;
  gap: clamp(18px, 2.7vw, 46px);
  min-height: 138px;
  padding: 26px 12px;
  overflow: hidden;
}

.journey-path::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 3px;
  border-radius: 3px;
  background: var(--blue);
  content: "";
  transform: scaleY(0);
  transform-origin: center;
  transition: transform 260ms var(--ease-out);
}

.journey-path:hover,
.journey-path:focus-visible {
  background: var(--surface);
  box-shadow: 0 12px 28px rgba(35, 56, 93, 0.07);
}

.journey-path:hover::before,
.journey-path:focus-visible::before {
  transform: scaleY(0.68);
}

.journey-path__label {
  color: var(--ink);
  font-size: clamp(20px, 1.75vw, 28px);
  font-weight: 690;
  letter-spacing: -0.045em;
  line-height: 1.26;
}

.journey-path__description {
  color: var(--copy);
  font-size: 14px;
  line-height: 1.72;
}

.journey-path__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 12px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.journey-path__facts-label {
  width: 100%;
  color: var(--blue);
  font-weight: 650;
}

.journey-path__facts span:not(.journey-path__facts-label)::before {
  display: inline-block;
  width: 4px;
  height: 4px;
  margin: 0 6px 2px 0;
  border-radius: 50%;
  background: var(--line-strong);
  content: "";
}

.journey-path__action {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 670;
  line-height: 1.45;
  text-align: right;
}

.journey-path__action span {
  font-size: 20px;
  transition: transform 220ms var(--ease-out);
}

.journey-path:hover .journey-path__action span,
.journey-path:focus-visible .journey-path__action span {
  transform: translateX(4px);
}

.attorney-profile {
  display: grid;
  grid-template-columns: minmax(230px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(36px, 7vw, 120px);
  padding: clamp(40px, 5vw, 70px);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: 0 0 0 1px rgba(49, 92, 244, 0.1), 0 24px 54px rgba(36, 57, 92, 0.075), inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.attorney-profile__heading {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
}

.attorney-profile__heading h2 {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 12px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(42px, 4.4vw, 70px);
  font-weight: 720;
  letter-spacing: -0.07em;
  line-height: 1;
}

.attorney-profile__heading h2 span {
  color: var(--blue);
  font-size: 15px;
  font-weight: 650;
  letter-spacing: 0;
}

.attorney-profile__facts {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(175px, 0.8fr);
  gap: 12px;
  margin: 0;
}

.attorney-profile__facts div {
  min-width: 0;
  padding: 20px;
  border-radius: 12px;
  background: var(--mist);
}

.attorney-profile__facts div:last-child {
  grid-column: 1 / -1;
}

.attorney-profile__facts dt {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 620;
  letter-spacing: 0.01em;
}

.attorney-profile__facts dd {
  margin: 0;
  color: var(--ink);
  font-size: 16px;
  font-weight: 620;
  line-height: 1.6;
  overflow-wrap: anywhere;
}

.attorney-profile__facts a {
  color: var(--blue-deep);
  text-decoration: underline;
  text-decoration-color: rgba(49, 92, 244, 0.38);
  text-underline-offset: 4px;
}

.attorney-profile__facts a:hover,
.attorney-profile__facts a:focus-visible {
  color: var(--blue);
  text-decoration-color: var(--blue);
}

.attorney-profile__note {
  grid-column: 2;
  max-width: 54rem;
  margin: 4px 0 0;
  padding: 4px 0 4px 16px;
  border-left: 2px solid var(--blue);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.72;
}

.method-workflow {
  position: relative;
}

.method-workflow__steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 3.2vw, 56px);
}

.method-workflow__steps li {
  position: relative;
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 16px;
  min-width: 0;
  padding-top: 18px;
}

.method-workflow__steps li:not(:last-child)::after {
  position: absolute;
  top: 31px;
  left: calc(30px + 16px + 2.2em);
  width: calc(100% - 30px - 16px - 2.2em + clamp(16px, 3.2vw, 56px));
  height: 1px;
  background: var(--line-strong);
  content: "";
}

.method-workflow__marker {
  position: relative;
  z-index: 1;
  width: 30px;
  height: 30px;
  margin-top: 1px;
  border: 7px solid var(--blue-soft);
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 1px rgba(49, 92, 244, 0.25);
}

.method-workflow__steps h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(20px, 1.75vw, 27px);
  font-weight: 690;
  letter-spacing: -0.045em;
  line-height: 1.28;
}

.method-workflow__steps p {
  margin: 12px 0 0;
  color: var(--copy);
  font-size: 14px;
  line-height: 1.75;
}

.statement-section {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(250px, 0.64fr);
  gap: clamp(38px, 8vw, 144px);
  align-items: end;
  margin-bottom: clamp(88px, 10vw, 150px);
  padding: clamp(48px, 6vw, 92px);
  border-radius: 18px;
  background: var(--mist);
}

.statement-section .section-heading {
  display: block;
  margin: 0;
}

.statement-section__content {
  display: grid;
  gap: 24px;
}

.statement-section__summary {
  max-width: 32ch;
  margin: 0;
  color: var(--copy);
  font-size: 17px;
  line-height: 1.84;
}

.statement-section__rule {
  margin: 0;
  padding: 2px 0 2px 18px;
  border-left: 3px solid var(--blue);
  color: var(--ink);
  font-size: clamp(19px, 1.85vw, 29px);
  font-weight: 660;
  letter-spacing: -0.04em;
  line-height: 1.52;
}

.insight-index__rows {
  border-top: 1px solid var(--line-strong);
}

.insight-index__rows li {
  border-bottom: 1px solid var(--line);
}

.insight-index__rows a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 44px;
  align-items: center;
  gap: 24px;
  min-height: 132px;
  padding: 22px 4px;
}

.insight-index__rows a:hover,
.insight-index__rows a:focus-visible {
  background: var(--surface);
}

.insight-index__content {
  display: grid;
  gap: 9px;
  min-width: 0;
}

.insight-index__content strong {
  color: var(--ink);
  font-size: clamp(22px, 2vw, 33px);
  font-weight: 690;
  letter-spacing: -0.055em;
  line-height: 1.3;
}

.insight-index__content span {
  max-width: 56ch;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.insight-index__arrow {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 10px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 22px;
  line-height: 1;
  transition: transform 220ms var(--ease-out);
}

.insight-index__rows a:hover .insight-index__arrow,
.insight-index__rows a:focus-visible .insight-index__arrow {
  background: var(--blue);
  color: var(--surface);
  transform: translateX(4px);
}

.contact-prompt {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(270px, 0.56fr);
  gap: clamp(36px, 10vw, 168px);
  align-items: end;
  margin-top: clamp(36px, 6vw, 80px);
  margin-bottom: clamp(86px, 10vw, 156px);
  padding: clamp(42px, 5.5vw, 82px);
  border-radius: 18px;
  background: var(--blue);
  box-shadow: 0 24px 50px rgba(49, 92, 244, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.contact-prompt .section-kicker {
  color: #E8EDFF;
}

.contact-prompt h2 {
  max-width: 8.8em;
  color: var(--surface);
  font-size: clamp(40px, 4.1vw, 69px);
}

.contact-prompt > div:last-child > p {
  max-width: 32ch;
  margin: 0 0 28px;
  color: #E8EDFF;
  font-size: 16px;
  line-height: 1.8;
}

.contact-channels {
  margin: 0 0 24px;
}

.contact-channel {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: baseline;
  gap: 9px 16px;
  max-width: 33rem;
  padding: 14px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.contact-channel + .contact-channel {
  margin-top: 14px;
}

.contact-channel__platform,
.contact-channel__label {
  color: #E8EDFF;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.3;
}

.contact-channel__platform {
  grid-row: 1 / span 2;
  min-width: 3em;
}

.contact-channel > div {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
}

.contact-channel strong {
  color: var(--surface);
  font-size: 16px;
  font-weight: 680;
  letter-spacing: 0.02em;
  line-height: 1.35;
}

.contact-channel p {
  grid-column: 2;
  margin: 0;
  color: #E8EDFF;
  font-size: 12px;
  line-height: 1.55;
}

.contact-prompt .cta--primary {
  background: var(--surface);
  color: var(--blue-deep);
  box-shadow: 0 12px 24px rgba(25, 48, 148, 0.2);
}

.contact-prompt .cta--primary span:last-child {
  background: var(--blue-soft);
}

.contact-prompt .cta--primary:hover,
.contact-prompt .cta--primary:focus-visible {
  background: var(--mist);
  color: var(--blue-deep);
  box-shadow: 0 16px 30px rgba(25, 48, 148, 0.26);
}

.content-section {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(0, 1.24fr);
  gap: clamp(42px, 10vw, 168px);
  padding-top: clamp(68px, 8vw, 120px);
  padding-bottom: clamp(68px, 8vw, 120px);
}

.content-section + .content-section {
  box-shadow: inset 0 1px 0 var(--line);
}

.content-section .section-heading {
  display: block;
  margin: 0;
}

.content-section .section-heading__summary {
  margin-top: 20px;
}

.content-section__body {
  min-width: 0;
}

.content-section__body > p {
  max-width: 39rem;
  margin: 0 0 20px;
  color: var(--copy);
  font-size: 17px;
  line-height: 1.9;
}

.content-list {
  margin-top: 18px;
  border-top: 1px solid var(--line-strong);
}

.content-list li {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.content-list p {
  margin: 0;
  color: var(--copy);
  font-size: 15px;
  line-height: 1.72;
}

.content-list li > p::before {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin: 0 10px 2px 0;
  border-radius: 50%;
  background: var(--blue);
  content: "";
}

.content-list a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 28px;
  gap: 14px;
}

.content-list a:hover,
.content-list a:focus-visible {
  color: var(--blue-deep);
}

.content-list a > span:first-child {
  display: grid;
  gap: 5px;
}

.content-list strong {
  color: var(--ink);
  font-size: 19px;
  font-weight: 670;
  letter-spacing: -0.035em;
  line-height: 1.4;
}

.content-list a > span:first-child > span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.content-list a > span:last-child {
  color: var(--blue);
  font-size: 20px;
}

.article-notice {
  margin-top: 0;
  margin-bottom: clamp(84px, 9vw, 148px);
  padding: clamp(32px, 4.5vw, 68px);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: 0 0 0 1px rgba(49, 92, 244, 0.1), 0 20px 44px rgba(35, 55, 92, 0.06);
}

.article-notice__marker {
  margin-bottom: 16px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.01em;
}

.article-notice h2 {
  max-width: none;
  font-size: clamp(29px, 2.8vw, 44px);
}

.article-notice ul {
  display: grid;
  gap: 0;
  margin: 30px 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-strong);
}

.article-notice li {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(170px, 0.28fr);
  gap: 30px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.article-notice a {
  color: var(--ink);
  font-size: 16px;
  font-weight: 630;
  line-height: 1.55;
  text-decoration: underline;
  text-decoration-color: rgba(49, 92, 244, 0.42);
  text-underline-offset: 4px;
}

.article-notice a:hover,
.article-notice a:focus-visible {
  color: var(--blue-deep);
  text-decoration-color: var(--blue);
}

.article-notice li span,
.article-notice > p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.72;
}

.article-notice > p + p {
  max-width: 78ch;
  margin-top: 12px;
  color: var(--copy);
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(26px, 6vw, 92px);
  row-gap: 26px;
  margin-bottom: clamp(84px, 9vw, 148px);
  padding: clamp(34px, 5vw, 76px);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: 0 0 0 1px rgba(49, 92, 244, 0.1), 0 24px 54px rgba(35, 56, 93, 0.07);
}

.lead-form__intro,
.lead-form > .contact-channels,
.form-field-wide,
.form-field-consent,
.form-note,
.form-status,
.form-error,
.lead-form__actions {
  grid-column: 1 / -1;
}

.lead-form__intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 24px;
  margin-bottom: 6px;
  padding-bottom: 28px;
  box-shadow: inset 0 -1px 0 var(--line);
}

.lead-form > .contact-channels {
  margin: -4px 0 2px;
}

.lead-form .contact-channel {
  max-width: none;
  padding: 16px 18px;
  border: 0;
  border-radius: 12px;
  background: var(--blue-soft);
}

.lead-form .contact-channel__platform,
.lead-form .contact-channel__label {
  color: var(--blue-deep);
}

.lead-form .contact-channel strong {
  color: var(--ink);
}

.lead-form .contact-channel p {
  color: var(--copy);
}

.lead-form__intro .section-kicker {
  margin: 0;
}

.lead-form h2 {
  max-width: none;
  font-size: clamp(29px, 2.8vw, 45px);
}

.form-field {
  display: grid;
  gap: 9px;
  min-width: 0;
}

.form-field label {
  color: var(--ink);
  font-size: 14px;
  font-weight: 640;
  letter-spacing: -0.01em;
}

.form-field input:not([type="checkbox"]),
.form-field select,
.form-field textarea {
  width: 100%;
  border: 0;
  border-radius: 10px;
  background: var(--mist);
  box-shadow: inset 0 0 0 1px transparent;
  color: var(--ink);
  line-height: 1.5;
}

.form-field input:not([type="checkbox"]),
.form-field select {
  min-height: 48px;
  padding: 10px 13px;
}

.form-field textarea {
  min-height: 142px;
  padding: 13px;
  resize: vertical;
}

.form-field input:not([type="checkbox"]):focus,
.form-field select:focus,
.form-field textarea:focus {
  background: var(--surface);
  box-shadow: inset 0 0 0 2px var(--blue), 0 0 0 4px var(--blue-soft);
  outline: 0;
}

.form-field input:not([type="checkbox"]):invalid:not(:placeholder-shown),
.form-field select:invalid:not(:placeholder-shown),
.form-field textarea:invalid:not(:placeholder-shown) {
  box-shadow: inset 0 0 0 1px var(--danger);
}

.form-field-consent label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--copy);
  font-size: 14px;
  font-weight: 500;
}

.form-field-consent input {
  width: 18px;
  height: 18px;
  accent-color: var(--blue);
}

.form-note,
.form-status,
.form-error {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
}

.form-note {
  color: var(--muted);
}

.form-status {
  color: var(--success);
  font-weight: 650;
}

.form-error {
  color: var(--danger);
  font-weight: 600;
}

.lead-form__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 8px;
}

.lead-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  gap: 10px;
  padding: 10px 17px;
  border: 0;
  border-radius: 12px;
  background: var(--blue);
  color: var(--surface);
  font-size: 14px;
  font-weight: 660;
  transition: transform 200ms var(--ease-out), opacity 200ms var(--ease-out);
}

.lead-form button:hover:not(:disabled),
.lead-form button:focus-visible:not(:disabled) {
  background: var(--blue-deep);
  box-shadow: 0 12px 24px rgba(49, 92, 244, 0.2);
}

.lead-form button[data-lead-retry] {
  background: var(--blue-soft);
  color: var(--blue-deep);
}

.lead-form button[data-lead-retry]:hover:not(:disabled),
.lead-form button[data-lead-retry]:focus-visible:not(:disabled) {
  background: #D9E2FF;
  box-shadow: none;
}

.lead-form button:disabled {
  opacity: 0.6;
}

.site-footer {
  background: var(--mist);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(190px, 0.65fr) minmax(0, 1fr) minmax(210px, 0.62fr);
  gap: clamp(28px, 5vw, 84px);
  width: var(--content);
  margin: 0 auto;
  padding: clamp(46px, 6vw, 84px) 0;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.site-footer__brand {
  margin-bottom: 4px !important;
  color: var(--ink) !important;
  font-size: 20px !important;
  font-weight: 690;
  letter-spacing: -0.035em;
}

.site-footer__credential {
  margin-top: 9px !important;
  color: var(--copy) !important;
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  align-content: start;
  gap: 9px 18px;
}

.site-footer__nav a {
  display: inline-flex;
  align-items: center;
  min-width: 44px;
  min-height: 44px;
  color: var(--copy);
  font-size: 13px;
  font-weight: 570;
}

.site-footer__nav a:hover,
.site-footer__nav a:focus-visible {
  color: var(--blue);
}

.site-footer__note {
  max-width: 25ch;
}

html.has-js [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 16px, 0);
  transition: opacity 620ms var(--ease-out), transform 620ms var(--ease-out);
}

html.has-js [data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (max-width: 1120px) {
  :root {
    --content: min(1320px, calc(100% - 64px));
  }

  .site-header__inner {
    gap: 20px;
  }

  .site-nav {
    gap: 16px;
  }

  .site-nav a {
    font-size: 13px;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.94fr);
    gap: 40px;
  }

  .evidence-system__node {
    width: min(36%, 170px);
    gap: 8px;
    padding: 12px;
  }

  [data-evidence-node="account"] {
    left: 18%;
  }

  [data-evidence-node="procedure"] {
    left: 20%;
  }

  .journey-path {
    grid-template-columns: minmax(150px, 1fr) minmax(180px, 1.2fr) minmax(160px, 0.9fr);
  }

  .journey-path__action {
    grid-column: 2 / -1;
    justify-content: flex-start;
    text-align: left;
  }

  .method-workflow__steps {
    gap: 24px;
  }

  .method-workflow__steps li:not(:last-child)::after {
    width: calc(100% - 30px - 16px - 2.2em + 24px);
  }
}

@media (max-width: 760px) {
  :root {
    --content: calc(100% - 40px);
  }

  .site-header {
    position: relative;
  }

  .site-header__inner {
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 72px;
    gap: 12px;
  }

  .site-brand__name {
    font-size: 18px;
  }

  .site-brand__descriptor {
    font-size: 10px;
  }

  .site-header__action {
    display: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 42;
    display: flex;
  }

  .site-nav {
    position: fixed;
    z-index: 40;
    inset: 0;
    display: grid;
    align-content: start;
    justify-content: stretch;
    gap: 0;
    padding: 108px 24px 32px;
    overflow-y: auto;
    background: var(--surface);
    box-shadow: none;
    opacity: 0;
    pointer-events: none;
    transform: translate3d(0, -12px, 0);
    visibility: hidden;
    transition: opacity 260ms var(--ease-out), transform 260ms var(--ease-out);
  }

  .site-header.menu-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translate3d(0, 0, 0);
    visibility: visible;
    transition-delay: 0ms;
  }

  .site-nav a {
    min-height: 62px;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    font-size: clamp(22px, 7vw, 29px);
    font-weight: 680;
    letter-spacing: -0.045em;
  }

  .site-nav a::after {
    right: auto;
    bottom: 0;
    width: 24px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 34px;
    padding: 48px 0 68px;
  }

  .hero--home {
    gap: 28px;
    padding: 40px 0 56px;
  }

  .hero h1 {
    max-width: 9.2em;
    font-size: clamp(43px, 13vw, 61px);
    letter-spacing: -0.075em;
    line-height: 1.1;
  }

  .hero--home h1 {
    max-width: 10em;
    font-size: clamp(37px, 10.8vw, 44px);
    letter-spacing: -0.05em;
    line-height: 1.14;
  }

  .hero__context,
  .section-kicker {
    margin-bottom: 14px;
    font-size: 12px;
  }

  .hero__lead {
    margin-top: 24px;
    font-size: 16px;
    line-height: 1.78;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    margin-top: 28px;
  }

  .hero--home .hero__context {
    margin-bottom: 12px;
  }

  .hero--home .hero__lead {
    margin-top: 20px;
    line-height: 1.72;
  }

  .hero--home .hero__actions {
    gap: 10px;
    margin-top: 24px;
  }

  .cta {
    justify-content: space-between;
    width: 100%;
    min-height: 50px;
  }

  .cta--secondary {
    padding-left: 18px;
    background: var(--blue-soft);
  }

  .evidence-system {
    min-height: 0;
    padding: 28px 20px 24px;
    border-radius: 16px;
  }

  .evidence-system::after {
    right: -115px;
    bottom: -130px;
  }

  .evidence-system__caption strong {
    font-size: 25px;
  }

  .evidence-system__description {
    font-size: 13px;
  }

  .evidence-system__paths {
    display: none;
  }

  .evidence-system__nodes {
    display: grid;
    gap: 12px;
    min-height: 0;
    margin-top: 26px;
    padding-left: 26px;
  }

  .evidence-system__nodes::before {
    position: absolute;
    top: 25px;
    bottom: 25px;
    left: 7px;
    width: 1px;
    background: #A7B7D4;
    content: "";
  }

  .evidence-system__node,
  [data-evidence-node="platform"],
  [data-evidence-node="account"],
  [data-evidence-node="funds"],
  [data-evidence-node="parties"],
  [data-evidence-node="procedure"] {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
  }

  .evidence-system__node {
    grid-template-columns: minmax(0, 1fr);
  }

  .evidence-system__marker {
    position: absolute;
    top: 20px;
    left: -31px;
    z-index: 1;
  }

  .hero--interior {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero--interior .hero__copy {
    padding-right: 0;
  }

  .hero--interior h1 {
    font-size: clamp(43px, 12vw, 61px);
  }

  .interior-panel {
    min-height: 245px;
    padding: 30px;
  }

  .section {
    padding: 72px 0;
  }

  .section-heading,
  .content-section,
  .statement-section,
  .contact-prompt {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .section-heading {
    align-items: start;
    margin-bottom: 34px;
  }

  .section-heading h2,
  .contact-prompt h2 {
    font-size: clamp(34px, 10.5vw, 48px);
  }

  .section-heading__summary {
    max-width: 38ch;
    margin: 0;
    font-size: 15px;
  }

  .journey-path {
    grid-template-columns: 1fr;
    gap: 13px;
    min-height: 0;
    padding: 25px 14px 25px 18px;
  }

  .journey-path:hover,
  .journey-path:focus-visible {
    background: var(--surface);
  }

  .journey-path__label {
    font-size: 24px;
  }

  .journey-path__action {
    grid-column: auto;
    justify-content: flex-start;
    text-align: left;
  }

  .attorney-profile {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 30px 22px;
    border-radius: 16px;
  }

  .attorney-profile__heading {
    gap: 18px;
  }

  .attorney-profile__heading h2 {
    font-size: 54px;
  }

  .attorney-profile__facts {
    grid-template-columns: 1fr;
  }

  .attorney-profile__facts div {
    padding: 17px;
  }

  .attorney-profile__facts div:last-child {
    grid-column: auto;
  }

  .attorney-profile__note {
    grid-column: auto;
    margin-top: 0;
  }

  .method-workflow__steps {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .method-workflow__steps li {
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 16px;
    padding: 0 0 28px;
  }

  .method-workflow__steps li:not(:last-child)::after {
    top: 30px;
    bottom: 0;
    left: 14px;
    width: 1px;
    height: auto;
  }

  .method-workflow__marker {
    width: 28px;
    height: 28px;
  }

  .method-workflow__steps h3 {
    padding-top: 2px;
    font-size: 23px;
  }

  .statement-section {
    margin-bottom: 72px;
    padding: 34px 24px;
    border-radius: 16px;
  }

  .statement-section__summary {
    font-size: 16px;
  }

  .insight-index__rows a {
    grid-template-columns: minmax(0, 1fr) 38px;
    gap: 14px;
    min-height: 0;
    padding: 23px 2px;
  }

  .insight-index__rows a:hover,
  .insight-index__rows a:focus-visible {
    background: var(--surface);
  }

  .insight-index__content strong {
    font-size: 23px;
  }

  .contact-prompt {
    margin-top: 0;
    margin-bottom: 72px;
    padding: 36px 24px;
    border-radius: 16px;
  }

  .contact-prompt > div:last-child > p {
    font-size: 15px;
  }

  .content-section {
    padding-top: 66px;
    padding-bottom: 66px;
  }

  .content-section__body > p {
    font-size: 16px;
  }

  .article-notice,
  .lead-form {
    margin-bottom: 72px;
    padding: 30px 22px;
    border-radius: 16px;
  }

  .article-notice li {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .lead-form {
    grid-template-columns: 1fr;
    row-gap: 22px;
  }

  .lead-form__intro {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-bottom: 22px;
  }

  .lead-form h2 {
    font-size: 34px;
  }

  .lead-form__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .lead-form button {
    width: 100%;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 46px 0;
  }

  .site-footer__note {
    max-width: 39ch;
  }
}

@media (max-width: 360px) {
  :root {
    --content: calc(100% - 32px);
  }

  .hero--home h1 {
    font-size: 37px;
  }

  .hero--interior h1 {
    font-size: 42px;
  }

  .evidence-system {
    padding-right: 16px;
    padding-left: 16px;
  }

  .evidence-system__nodes {
    padding-left: 22px;
  }

  .evidence-system__marker {
    left: -27px;
  }

  .attorney-profile,
  .article-notice,
  .lead-form {
    padding-right: 18px;
    padding-left: 18px;
  }
}

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

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

  html.has-js [data-reveal] {
    transform: none;
  }
}
