@font-face {
  font-family:Manrope;
  src:url('assets/fonts/manrope/manrope-variable.ttf') format('truetype');
  font-weight:200 800;
  font-style:normal;
  font-display:swap;
}

:root {
  --blue:#005e9d;
  --blue-hover:#004a7c;
  --ink:#101c2d;
  --copy:#536071;
  --paper:#f4f6fa;
  --line:#dce2ea;
  --white:#fff;
  --focus:#c65b08;
  --error:#a12727;
  --ease:cubic-bezier(.16,1,.3,1);
  --radius:6px;
  --gutter:56px;
  --field-border:#788698;
  --space-section:112px;
}

* {
  box-sizing:border-box;
}

html {
  scroll-behavior:smooth;
  scroll-padding-top:108px;
  scrollbar-color:#b5c1d3 var(--paper);
}

body {
  margin:0;
  color:var(--ink);
  background:var(--white);
  font-family:Manrope,Arial,sans-serif;
  font-size:16px;
  line-height:1.7;
  -webkit-font-smoothing:antialiased;
}

::selection {
  background:#d3e7f4;
  color:var(--ink);
}

a {
  color:inherit;
  text-decoration:none;
  text-underline-offset:5px;
}

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

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

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

button {
  cursor:pointer;
}

h1,h2,h3,h4,p,figure {
  margin:0;
}

h1,h2,h3,h4 {
  line-height:1.12;
  font-weight:600;
  letter-spacing:-.035em;
  text-wrap:balance;
}

h2 {
  font-size:clamp(36px,4vw,54px);
}

p {
  color:var(--copy);
}

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

svg.icon {
  width:22px;
  height:22px;
  flex:none;
  fill:none;
  stroke:currentColor;
  stroke-width:1.6;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.icon-definitions {
  position:absolute;
  width:0;
  height:0;
  overflow:hidden;
}

.container {
  width:min(1240px,calc(100% - var(--gutter) - var(--gutter)));
  margin-inline:auto;
}

.section {
  padding-block:var(--space-section);
}

.ai-section>.container,.contact-section>.container {
  width:min(1240px,100%);
}

[id] {
  scroll-margin-top:20px;
}

[hidden] {
  display:none!important;
}

.skip-link {
  position:fixed;
  left:20px;
  top:-100px;
  background:var(--ink);
  color:white;
  padding:12px 20px;
  z-index:100;
}

.skip-link:focus {
  top:16px;
}

.button {
  display:inline-flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
  min-height:54px;
  padding:15px 23px;
  background:var(--blue);
  border:1px solid transparent;
  border-radius:var(--radius);
  color:white;
  font-size:14px;
  font-weight:650;
  line-height:1.4;
  transition:background .22s var(--ease);
}

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

.button-small {
  min-height:46px;
  padding:12px 18px;
  gap:22px;
}

.text-link,.quiet-link {
  display:inline-flex;
  align-items:center;
  gap:24px;
  min-height:44px;
  font-size:14px;
  font-weight:650;
}

.text-link {
  color:var(--blue);
}

.text-link:hover,.quiet-link:hover {
  text-decoration:underline;
}

.text-link .icon,.quiet-link .icon {
  width:18px;
  height:18px;
  transition:transform .22s var(--ease);
}

.text-link:hover .icon,.quiet-link:hover .icon {
  transform:translate(2px,-2px);
}

.button .icon,.practice-index .icon,.contact-email .icon {
  transition:transform .22s var(--ease);
}

@media(hover:hover) and (pointer:fine) {
  .button:hover .icon,.practice-index>a:hover .icon,.contact-email:hover .icon {
    transform:translate(2px,-2px);
  }
}

:is(.button,.text-link,.quiet-link,.contact-email):focus-visible .icon,
.practice-index>a:focus-visible .icon {
  transform:translate(2px,-2px);
}

.site-header {
  position:sticky;
  top:0;
  z-index:20;
  background:var(--white);
  border-bottom:1px solid var(--line);
}

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

.brand {
  display:flex;
  align-items:center;
  gap:22px;
  min-height:44px;
}

.brand img {
  display:block;
  width:106px;
  height:auto;
}

.brand span {
  font-size:12px;
  line-height:1.4;
  color:var(--copy);
  max-width:86px;
  border-left:1px solid var(--line);
  padding-left:20px;
  box-sizing:content-box;
}

nav {
  display:flex;
  align-items:center;
  gap:30px;
}

nav>a:not(.button) {
  font-size:13px;
  font-weight:600;
  padding-block:12px;
}

nav>a:not(.button):hover {
  color:var(--blue);
}

.menu-toggle {
  display:none;
}

.hero {
  padding-top:92px;
  padding-bottom:0;
}

.hero-main {
  display:grid;
  grid-template-columns:1.8fr 1fr;
  gap:72px;
  align-items:end;
  padding-bottom:88px;
}

h1 {
  font-size:clamp(54px,6.15vw,90px);
  font-weight:600;
  line-height:1.08;
  letter-spacing:-.04em;
  white-space:nowrap;
}

h1 span {
  color:var(--blue);
}

.hero-copy {
  padding-bottom:5px;
  max-width:360px;
}

.hero-copy>p:first-child {
  font-size:23px;
  line-height:1.45;
  letter-spacing:-.025em;
  font-weight:550;
  color:var(--ink);
  margin-bottom:20px;
}

.hero-copy>p:nth-child(2) {
  font-size:15px;
  line-height:1.8;
}

.hero-copy .button {
  margin-top:28px;
}

.hero-main h1 {
  animation:opening .7s var(--ease) both;
}

@keyframes opening {
  from {
    transform:translateY(6px);
  }

  to {
    transform:translateY(0);
  }

}

.practice-index {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}

.practice-index>a {
  position:relative;
  padding:30px 28px 30px 0;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  transition:color .22s var(--ease);
}

/* A brief blue trace connects the three practices along their existing rules. */
.practice-index>a::before {
  content:"";
  position:absolute;
  inset:-1px 0 auto;
  height:1px;
  background:var(--blue);
  opacity:0;
  transform:scaleX(0);
  transform-origin:left;
  animation:practice-trace .6s var(--ease) .1s backwards;
  pointer-events:none;
}

.practice-index>a:nth-child(2)::before {
  animation-delay:.18s;
}

.practice-index>a:nth-child(3)::before {
  animation-delay:.26s;
}

@keyframes practice-trace {
  0% { transform:scaleX(0); opacity:.55; }
  65% { transform:scaleX(1); opacity:.55; }
  100% { transform:scaleX(1); opacity:0; }
}

.practice-index>a+a {
  padding-left:28px;
  border-left:1px solid var(--line);
}

.practice-index h2 {
  font-size:22px;
  letter-spacing:-.025em;
}

.practice-index p {
  font-size:12px;
  margin-top:8px;
}

.practice-index>a:hover {
  color:var(--blue);
}

.practice-index .icon {
  width:20px;
  height:20px;
}

.section-intro {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:end;
  margin-bottom:68px;
}

.section-intro>p {
  max-width:450px;
  font-size:17px;
}

.practice-row {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  padding-block:58px;
  border-top:1px solid var(--line);
}

.practice-row:last-child {
  padding-bottom:0;
}

.practice-heading h3 {
  font-size:40px;
}

.practice-heading>p {
  margin-top:15px;
  font-size:15px;
}

.practice-heading .text-link {
  margin-top:32px;
}

.practice-content h4 {
  font-size:34px;
  font-weight:550;
  margin-bottom:24px;
}

.practice-content>p {
  font-size:15px;
  max-width:60ch;
}

.service-list {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px 30px;
  list-style:none;
  padding:0;
  margin:30px 0 0;
  font-size:13px;
  line-height:1.7;
  font-weight:600;
}

.service-list li {
  padding-top:12px;
  border-top:1px solid var(--line);
}

.practice-content .quiet-link {
  margin-top:22px;
  font-size:12px;
  color:var(--copy);
}

.ai-section {
  background:var(--blue);
  color:var(--white);
  padding:104px 56px;
}

.ai-section p {
  color:#deedf7;
}

.ai-section a:focus-visible,.ai-section button:focus-visible,.ai-section summary:focus-visible {
  outline-color:#ffd595;
}

.ai-intro {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
}

.ai-intro h2 {
  font-size:68px;
  letter-spacing:-.04em;
  font-weight:650;
}

.ai-statement {
  font-size:40px;
  line-height:1.17;
  letter-spacing:-.03em;
  font-weight:500;
  margin-top:24px;
  color:white!important;
}

.ai-copy {
  padding-top:6px;
  max-width:500px;
}

.ai-copy>p:first-child {
  font-size:23px;
  line-height:1.45;
  color:white;
  font-weight:500;
  margin-bottom:25px;
}

.ai-copy>p+p {
  font-size:15px;
  line-height:1.8;
  margin-top:18px;
}

.ai-copy .text-link {
  color:white;
  margin-top:24px;
}

.ai-workflow {
  margin-top:70px;
  padding-top:32px;
  border-top:1px solid #ffffff4d;
}

.workflow-heading {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.workflow-heading h3 {
  font-size:20px;
  letter-spacing:-.02em;
}

.scenario-controls {
  display:flex;
  gap:7px;
}

.scenario-controls button {
  background:transparent;
  color:white;
  border:1px solid #ffffff66;
  border-radius:4px;
  padding:10px 16px;
  min-height:44px;
  font-size:12px;
  transition:color .22s var(--ease),background .22s var(--ease);
}

.scenario-controls button[aria-pressed=true] {
  background:white;
  color:var(--blue);
  border-color:white;
}

.scenario-controls button:hover {
  background:#ffffff24;
}

.scenario-controls button[aria-pressed=true]:hover {
  background:#edf5fa;
}

.workflow-steps {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:38px;
  margin-top:42px;
}

.workflow-steps>div {
  border-top:1px solid #ffffff4d;
  padding-top:23px;
}

.workflow-steps h4 {
  font-size:21px;
  font-weight:550;
  letter-spacing:-.02em;
}

.workflow-steps p {
  font-size:13px;
  line-height:1.8;
  margin-top:14px;
}

.workflow-footer {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding-top:28px;
}

.workflow-footer p {
  font-size:12px;
}

.workflow-footer strong {
  font-weight:600;
  color:white;
}

.engagements {
  margin-top:68px;
  padding-top:40px;
  border-top:1px solid #ffffff4d;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
}

.engagements h3 {
  font-size:31px;
}

.engagements>div>p {
  font-size:13px;
  max-width:310px;
  margin-top:18px;
}

.engagement-options details {
  border-bottom:1px solid #ffffff4d;
}

.engagement-options summary {
  list-style:none;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  min-height:66px;
  padding-block:18px;
  font-size:15px;
  font-weight:550;
}

.engagement-options summary::-webkit-details-marker {
  display:none;
}

.engagement-options summary .icon {
  width:18px;
  height:18px;
  transition:transform .22s var(--ease);
}

.engagement-options details[open] summary .icon {
  transform:rotate(45deg);
}

.engagement-options details p {
  font-size:13px;
  line-height:1.8;
  padding:0 30px 24px 0;
}

.engagement-options details[open] p {
  animation:disclosure-enter .22s var(--ease);
}

@keyframes disclosure-enter {
  from { opacity:.8; transform:translateY(-3px); }
  to { opacity:1; transform:translateY(0); }
}

.about-section {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:center;
}

.about-copy>p {
  font-size:15px;
  margin-top:24px;
  max-width:56ch;
}

.about-copy .text-link {
  margin-top:24px;
}

.about-image img {
  width:100%;
  height:440px;
  object-fit:cover;
  object-position:48% 60%;
  display:block;
}

.about-image figcaption {
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
  gap:8px;
  padding-top:16px;
  font-size:12px;
  color:var(--copy);
}

.about-image figcaption span:first-child {
  font-weight:650;
  color:var(--ink);
}

.clients-section {
  padding-bottom:100px;
}

.clients-heading {
  border-top:1px solid var(--line);
  padding-top:38px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:40px;
}

.clients-heading h2 {
  font-size:27px;
  letter-spacing:-.025em;
}

.clients-heading p {
  font-size:12px;
}

.client-logos {
  list-style:none;
  padding:0;
  margin:48px 0 0;
  display:grid;
  grid-template-columns:repeat(7,minmax(0,1fr));
  gap:34px;
  align-items:center;
}

.client-logos li {
  min-width:0;
  display:flex;
  align-items:center;
  justify-content:center;
}

.client-logos img {
  height:58px;
  width:100%;
  object-fit:contain;
}

.contact-section {
  background:var(--paper);
  padding:104px 56px;
}

.contact-layout {
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:92px;
}

.contact-copy h2 {
  font-size:clamp(42px,4.3vw,60px);
}

.contact-copy>p {
  font-size:15px;
  max-width:370px;
  margin-top:26px;
}

.contact-email {
  display:flex;
  align-items:center;
  gap:28px;
  width:fit-content;
  color:var(--blue);
  font-size:24px;
  letter-spacing:-.03em;
  font-weight:600;
  margin-top:40px;
  min-height:44px;
}

.contact-phone {
  display:block;
  width:fit-content;
  min-height:44px;
  padding-top:10px;
  font-size:16px;
  font-weight:600;
}

.contact-copy address {
  font-style:normal;
  font-size:12px;
  line-height:1.9;
  margin-top:30px;
  color:var(--copy);
}

.contact-email:hover,.contact-phone:hover {
  text-decoration:underline;
}

.form-note {
  font-size:12px;
  margin-bottom:26px;
  line-height:1.7;
}

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

.form-field {
  min-width:0;
}

.form-field label {
  display:block;
  margin-bottom:8px;
  font-size:12px;
  font-weight:650;
}

.form-field input,.form-field select,.form-field textarea {
  width:100%;
  min-height:50px;
  border:1px solid var(--field-border);
  border-radius:4px;
  background:white;
  color:var(--ink);
  padding:12px 14px;
  font-size:16px;
  line-height:1.5;
  caret-color:var(--blue);
  transition:border-color .18s var(--ease);
}

.form-field textarea {
  min-height:132px;
  resize:vertical;
}

.form-field input:hover,.form-field select:hover,.form-field textarea:hover {
  border-color:var(--blue);
}

.field-wide {
  grid-column:1/-1;
}

.form-honeypot {
  position:absolute!important;
  width:1px;
  height:1px;
  overflow:hidden;
  clip-path:inset(50%);
  white-space:nowrap;
}

.hgm-contact-form .button {
  width:100%;
  margin-top:2px;
}

.hgm-contact-form .button:disabled {
  opacity:.65;
  cursor:wait;
}

.field-error {
  font-size:12px;
  color:var(--error);
  margin-top:7px;
  line-height:1.6;
}

.form-field [aria-invalid=true] {
  border-color:var(--error);
}

.form-errors {
  border:1px solid #e0b6b6;
  border-radius:4px;
  background:#fff1f1;
  padding:18px;
  margin-bottom:24px;
  font-size:13px;
  color:var(--error);
}

.form-errors p {
  color:inherit;
}

.form-errors ul {
  margin:8px 0 0;
  padding-left:20px;
}

.form-errors a {
  text-decoration:underline;
}

.form-status {
  font-size:12px;
  line-height:1.6;
  min-height:20px;
}

.site-footer {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:26px;
  padding-block:32px;
}

.site-footer p {
  font-size:12px;
}

.site-footer .quiet-link {
  font-size:12px;
}

.thanks-page {
  min-height:100vh;
  background:var(--paper);
}

.thanks-page main {
  padding-block:110px;
}

.thanks-page h1 {
  white-space:normal;
  max-width:900px;
}

.thanks-page main p {
  max-width:600px;
  margin-block:28px;
}

.thanks-page .button {
  margin-top:12px;
}

@media(min-width:1500px) {
  .hero {
    padding-top:112px;
  }

  .hero-main {
    padding-bottom:108px;
  }

}

@media(max-width:1100px) {
  .ai-section,.contact-section {
    padding:104px 32px;
  }

  :root {
    --gutter:32px;
  }

  .brand span {
    display:none;
  }

  nav {
    gap:24px;
  }

  .hero {
    padding-top:72px;
  }

  .hero-main {
    gap:36px;
    grid-template-columns:1.7fr 1fr;
    padding-bottom:65px;
  }

  h1 {
    font-size:clamp(50px,6.15vw,70px);
  }

  .hero-copy>p:first-child {
    font-size:20px;
  }

  .hero-copy>p:nth-child(2) {
    font-size:13px;
  }

  .hero-copy .button {
    font-size:12px;
    padding-inline:17px;
    gap:17px;
  }

  .practice-index>a {
    padding-right:18px;
  }

  .practice-index>a+a {
    padding-left:18px;
  }

  .practice-index p {
    font-size:12px;
  }

  .section-intro,.practice-row,.ai-intro,.engagements,.about-section {
    gap:48px;
  }

  .contact-layout {
    gap:50px;
  }

  .client-logos {
    gap:20px;
  }

  .ai-intro h2 {
    font-size:58px;
  }

  .ai-statement {
    font-size:35px;
  }

  .workflow-steps {
    gap:26px;
  }

}

@media(max-width:800px) {
  :root {
    --space-section:76px;
  }

  :root {
    --gutter:20px;
  }

  .header-inner {
    min-height:76px;
  }

  .brand img {
    width:96px;
  }

  nav {
    gap:18px;
  }

  nav>a:not(.button) {
    font-size:12px;
  }

  nav .button-small {
    font-size:12px;
    gap:12px;
  }

  .hero-main {
    grid-template-columns:1fr;
    gap:30px;
  }

  .hero h1 {
    font-size:clamp(48px,8.7vw,70px);
  }

  .hero-copy {
    max-width:540px;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:12px 30px;
    align-items:start;
  }

  .hero-copy>p:first-child {
    font-size:21px;
    margin:0;
  }

  .hero-copy .button {
    margin-top:4px;
    justify-self:start;
  }

  .hero-copy>p:nth-child(2) {
    grid-column:2;
    grid-row:1/3;
    font-size:14px;
  }

  .practice-index>a {
    align-items:flex-start;
  }

  .practice-index h2 {
    font-size:20px;
  }

  .practice-index p {
    max-width:140px;
    line-height:1.7;
  }

  .practice-index .icon {
    width:17px;
    height:17px;
  }

  .section-intro {
    gap:32px;
    margin-bottom:46px;
  }

  .section-intro>p {
    font-size:15px;
  }

  .practice-row {
    gap:36px;
    padding-block:40px;
  }

  .practice-heading h3 {
    font-size:32px;
  }

  .practice-content h4 {
    font-size:28px;
  }

  .practice-content>p {
    font-size:14px;
  }

  .service-list {
    grid-template-columns:1fr;
    gap:12px;
    font-size:12px;
  }

  .ai-section {
    padding:76px 20px;
  }

  .ai-intro {
    gap:40px;
  }

  .ai-intro h2 {
    font-size:48px;
  }

  .ai-statement {
    font-size:30px;
  }

  .ai-copy>p:first-child {
    font-size:21px;
  }

  .ai-copy>p+p {
    font-size:14px;
  }

  .ai-workflow {
    margin-top:52px;
  }

  .workflow-heading {
    align-items:flex-start;
    flex-direction:column;
    gap:20px;
  }

  .workflow-steps {
    gap:22px;
    margin-top:30px;
  }

  .workflow-steps h4 {
    font-size:18px;
  }

  .workflow-steps p {
    font-size:12px;
  }

  .workflow-footer {
    align-items:flex-start;
    flex-direction:column;
    gap:8px;
  }

  .engagements {
    gap:40px;
    margin-top:45px;
  }

  .engagements h3 {
    font-size:27px;
  }

  .about-section {
    gap:38px;
  }

  .about-copy>p {
    font-size:14px;
  }

  .about-image img {
    height:410px;
  }

  .clients-section {
    padding-bottom:76px;
  }

  .client-logos {
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:38px 30px;
  }

  .contact-section {
    padding:76px 20px;
  }

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

  .contact-copy {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:0 40px;
  }

  .contact-copy h2 {
    grid-row:1/3;
  }

  .contact-copy>p {
    margin-top:0;
  }

  .contact-email {
    font-size:22px;
    grid-column:1;
    margin-top:26px;
  }

  .contact-phone {
    grid-column:1;
  }

  .contact-copy address {
    grid-column:2;
    grid-row:2/5;
    margin-top:24px;
  }

  .contact-form-wrap {
    max-width:650px;
    width:100%;
  }

  .site-footer {
    flex-wrap:wrap;
  }

  .site-footer p {
    flex:1;
  }

}

@media(max-width:600px) {
  html {
    scroll-padding-top:92px;
  }

  .header-inner {
    flex-wrap:wrap;
    gap:0;
  }

  .brand span {
    display:block;
    max-width:86px;
    font-size:12px;
    padding-left:16px;
  }

  .brand {
    gap:16px;
  }

  .menu-toggle {
    display:none;
    align-items:center;
    justify-content:center;
    flex-direction:column;
    gap:6px;
    background:white;
    border:1px solid var(--line);
    border-radius:4px;
    width:44px;
    height:44px;
    padding:10px;
    color:var(--ink);
  }

  .menu-toggle span {
    display:block;
    width:20px;
    height:1.5px;
    background:currentColor;
    transition:transform .22s var(--ease);
  }

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

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

  nav {
    flex-basis:100%;
    display:flex;
    align-items:stretch;
    flex-direction:column;
    gap:6px;
    padding:10px 0 22px;
  }

  nav>a:not(.button) {
    font-size:14px;
    min-height:44px;
  }

  .has-js .menu-toggle {
    display:flex;
  }

  .has-js nav:not(.is-open) {
    display:none;
  }

  .hero {
    padding-top:52px;
  }

  .hero-main {
    padding-bottom:42px;
    gap:28px;
  }

  .hero h1 {
    font-size:clamp(34px,8.8vw,51px);
    line-height:1.15;
    letter-spacing:-.035em;
  }

  .hero-copy {
    display:block;
    max-width:420px;
  }

  .hero-copy>p:first-child {
    font-size:19px;
    line-height:1.5;
    margin-bottom:16px;
  }

  .hero-copy>p:first-child br {
    display:none;
  }

  .hero-copy>p:nth-child(2) {
    font-size:14px;
  }

  .hero-copy .button {
    font-size:14px;
    margin-top:24px;
    padding:15px 20px;
  }

  .practice-index {
    grid-template-columns:1fr;
  }

  .practice-index>a,.practice-index>a+a {
    padding:20px 0;
    border-left:0;
    align-items:center;
  }

  .practice-index>a+a {
    border-top:1px solid var(--line);
  }

  .practice-index h2 {
    font-size:21px;
  }

  .practice-index p {
    font-size:12px;
    max-width:none;
    margin-top:5px;
  }

  .practice-index .icon {
    width:20px;
    height:20px;
  }

  :root {
    --space-section:64px;
  }

  h2 {
    font-size:35px;
  }

  .section-intro {
    grid-template-columns:1fr;
    gap:22px;
    margin-bottom:36px;
  }

  .section-intro>p {
    font-size:14px;
    max-width:42ch;
  }

  .practice-row {
    grid-template-columns:1fr;
    gap:28px;
    padding-block:36px;
  }

  .practice-heading {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:12px 20px;
  }

  .practice-heading h3 {
    font-size:28px;
  }

  .practice-heading>p {
    font-size:12px;
    margin:0;
    line-height:1.65;
  }

  .practice-heading .text-link {
    grid-column:1/-1;
    font-size:12px;
    margin:0;
    min-height:44px;
  }

  .practice-content h4 {
    font-size:28px;
    margin-bottom:18px;
  }

  .practice-content h4 br {
    display:none;
  }

  .service-list {
    grid-template-columns:1fr 1fr;
    gap:18px 20px;
    font-size:13px;
    margin-top:24px;
  }

  .ai-section {
    padding:60px 20px;
  }

  .ai-intro {
    grid-template-columns:1fr;
    gap:30px;
  }

  .ai-intro h2 {
    font-size:55px;
  }

  .ai-statement {
    font-size:34px;
    margin-top:18px;
  }

  .ai-statement br:nth-child(2) {
    display:none;
  }

  .ai-copy {
    padding:0;
  }

  .ai-copy>p:first-child {
    font-size:22px;
    margin-bottom:18px;
  }

  .ai-copy .text-link {
    margin-top:18px;
  }

  .ai-workflow {
    margin-top:40px;
    padding-top:28px;
  }

  .workflow-heading h3 {
    font-size:20px;
  }

  .scenario-controls {
    width:100%;
    gap:10px;
  }

  .scenario-controls button {
    flex:1;
    font-size:12px;
    padding-inline:12px;
  }

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

  .workflow-steps>div {
    padding-top:18px;
  }

  .workflow-steps h4 {
    font-size:19px;
  }

  .workflow-steps p {
    font-size:12px;
    margin-top:12px;
  }

  .workflow-footer p {
    font-size:12px;
  }

  .workflow-footer strong {
    display:block;
    margin-top:4px;
  }

  .engagements {
    grid-template-columns:1fr;
    gap:24px;
    margin-top:36px;
    padding-top:30px;
  }

  .engagements h3 {
    font-size:27px;
  }

  .engagements h3 br {
    display:none;
  }

  .engagements>div>p {
    margin-top:12px;
    max-width:100%;
  }

  .engagement-options summary {
    font-size:14px;
  }

  .about-section {
    grid-template-columns:1fr;
    gap:30px;
  }

  .about-copy>p {
    margin-top:20px;
  }

  .about-image img {
    height:300px;
  }

  .about-image figcaption {
    font-size:12px;
  }

  .clients-heading {
    display:block;
    padding-top:30px;
  }

  .clients-heading h2 {
    font-size:26px;
  }

  .clients-heading p {
    font-size:12px;
    margin-top:14px;
  }

  .clients-heading p br {
    display:none;
  }

  .client-logos {
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:32px 38px;
    margin-top:35px;
  }

  .client-logos img {
    max-width:150px;
  }

  .clients-section {
    padding-bottom:64px;
  }

  .contact-section {
    padding:60px 20px;
  }

  .contact-copy {
    display:block;
  }

  .contact-copy h2 {
    font-size:42px;
  }

  .contact-copy>p {
    font-size:14px;
    margin-top:22px;
  }

  .contact-email {
    font-size:24px;
    margin-top:24px;
  }

  .contact-copy address {
    margin-top:20px;
  }

  .contact-layout {
    gap:36px;
  }

  .form-grid {
    grid-template-columns:1fr;
    gap:19px;
  }

  .field-wide {
    grid-column:auto;
  }

  .form-note {
    margin-bottom:22px;
  }

  .site-footer {
    padding-block:28px;
    gap:20px;
  }

  .site-footer .brand img {
    width:86px;
  }

  .site-footer p {
    order:3;
    flex-basis:100%;
    font-size:12px;
  }

  .site-footer .quiet-link {
    margin-left:auto;
  }

  .thanks-page main {
    padding-block:60px;
  }

  .thanks-page h1 {
    font-size:46px;
  }

}

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

  *,*::before,*::after {
    animation:none!important;
    transition:none!important;
    scroll-behavior:auto!important;
  }

  :is(.button,.text-link,.quiet-link,.contact-email):is(:hover,:focus-visible) .icon,
  .practice-index>a:is(:hover,:focus-visible) .icon {
    transform:none;
  }

}

.ai-section .model-note {
  font-size:13px;
  margin-top:28px;
  max-width:70ch;
}

.thanks-page main>a:first-child {
  display:block;
  width:106px;
  margin-bottom:65px;
}

.thanks-page main>a:first-child img {
  display:block;
  width:106px;
  height:auto;
}
