:root {
  --navy-950: #04152d;
  --navy-900: #071e3d;
  --navy-800: #0b2f5f;
  --navy-700: #174777;
  --gold-600: #a7781f;
  --gold-500: #c49a3f;
  --gold-300: #dcc27e;
  --ink: #17202b;
  --muted: #5f6975;
  --line: #dce1e6;
  --surface: #f4f6f7;
  --white: #ffffff;
  --success: #1d6b4c;
  --danger: #a32935;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, "Segoe UI", Helvetica, Arial, sans-serif;
  --shell: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.nav-open {
  overflow: hidden;
}

.site-loading > .site-header,
.site-loading > main,
.site-loading > .site-footer,
.site-unavailable > .site-header,
.site-unavailable > main,
.site-unavailable > .site-footer {
  display: none;
}

.site-live > .site-status-page {
  display: none;
}

.site-status-page {
  position: relative;
  display: grid;
  min-height: 100vh;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(4, 21, 45, 0.97), rgba(4, 21, 45, 0.72)),
    url("/assets/legal-workspace.webp") center right / cover;
}

.site-status-header {
  z-index: 1;
  display: flex;
  width: min(calc(100% - 48px), var(--shell));
  min-height: 82px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.site-status-admin {
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.site-status-admin:hover {
  color: var(--gold-300);
}

.site-status-content {
  z-index: 1;
  width: min(calc(100% - 48px), var(--shell));
  max-width: var(--shell);
  margin: auto;
  padding: 70px 0;
}

.site-status-content h1 {
  max-width: 820px;
  margin: 0 0 24px;
  font-family: var(--serif);
  font-size: clamp(48px, 6.6vw, 84px);
  font-weight: 500;
  line-height: 1.02;
}

.site-status-content > p:not(.eyebrow) {
  max-width: 650px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 18px;
}

.site-status-footer {
  z-index: 1;
  width: min(calc(100% - 48px), var(--shell));
  margin: 0 auto;
  padding: 22px 0;
  color: rgba(255, 255, 255, 0.56);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 11px;
}

.launch-countdown {
  display: grid;
  width: min(100%, 600px);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 36px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.launch-countdown[hidden] {
  display: none;
}

.launch-countdown div {
  padding: 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.launch-countdown div:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.launch-countdown strong,
.launch-countdown span {
  display: block;
}

.launch-countdown strong {
  font-family: var(--serif);
  font-size: 35px;
  font-weight: 500;
}

.launch-countdown span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.app-status-body {
  background: var(--navy-950);
}

.app-status-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

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

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  letter-spacing: 0;
}

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

.skip-link {
  position: fixed;
  z-index: 200;
  top: 8px;
  left: 8px;
  padding: 9px 14px;
  color: var(--white);
  background: var(--navy-950);
  transform: translateY(-150%);
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  transition:
    color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled {
  color: var(--navy-950);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 8px 26px rgba(7, 30, 61, 0.08);
  border-bottom-color: rgba(7, 30, 61, 0.08);
}

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

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand img {
  width: 46px;
  height: 40px;
  object-fit: contain;
}

.brand span {
  display: grid;
  gap: 1px;
}

.brand strong {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.1;
}

.brand small {
  font-size: 9px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  opacity: 0.76;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 14px;
  font-weight: 600;
}

.primary-nav > a {
  text-decoration: none;
}

.primary-nav > a:not(.button):hover,
.primary-nav > a:not(.button):focus-visible {
  color: var(--gold-300);
}

.site-header.is-scrolled .primary-nav > a:not(.button):hover,
.site-header.is-scrolled .primary-nav > a:not(.button):focus-visible {
  color: var(--gold-600);
}

.nav-login {
  padding-left: 24px;
  border-left: 1px solid currentColor;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 0;
  color: currentColor;
  background: transparent;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px 0;
  background: currentColor;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 3px;
  cursor: pointer;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  transition:
    transform 150ms ease,
    background 150ms ease,
    border-color 150ms ease;
}

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

.button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(196, 154, 63, 0.45);
  outline-offset: 2px;
}

.button-small {
  min-height: 40px;
  padding: 9px 16px;
  font-size: 13px;
}

.button-gold {
  color: var(--navy-950);
  background: var(--gold-500);
  border-color: var(--gold-500);
}

.button-gold:hover {
  background: var(--gold-300);
  border-color: var(--gold-300);
}

.button-navy {
  color: var(--white);
  background: var(--navy-900);
  border-color: var(--navy-900);
}

.button-navy:hover {
  background: var(--navy-800);
  border-color: var(--navy-800);
}

.button[disabled] {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: min(680px, 86vh);
  align-items: stretch;
  color: var(--white);
  background: var(--navy-950);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("/assets/legal-workspace.webp");
  background-position: center right;
  background-size: cover;
}

.hero-shade {
  background:
    linear-gradient(
      90deg,
      rgba(4, 21, 45, 0.96) 0%,
      rgba(4, 21, 45, 0.84) 43%,
      rgba(4, 21, 45, 0.14) 78%
    ),
    linear-gradient(0deg, rgba(4, 21, 45, 0.72) 0%, rgba(4, 21, 45, 0) 36%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  padding-top: 112px;
  padding-bottom: 110px;
}

.hero-copy {
  max-width: 680px;
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--gold-300);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.eyebrow-dark {
  color: var(--gold-600);
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-family: var(--serif);
  font-size: clamp(54px, 7vw, 92px);
  font-weight: 500;
  line-height: 0.98;
}

.hero-lede {
  max-width: 640px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  line-height: 1.55;
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  text-decoration: none;
}

.text-link span {
  font-size: 20px;
  transition: transform 150ms ease;
}

.text-link:hover span {
  transform: translateX(3px);
}

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

.hero-note {
  max-width: 590px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.hero-proof {
  position: absolute;
  z-index: 2;
  inset: auto 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(4, 21, 45, 0.78);
  backdrop-filter: blur(8px);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.proof-grid p {
  display: grid;
  min-height: 105px;
  align-content: center;
  gap: 2px;
  margin: 0;
  padding: 22px 32px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.proof-grid p:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.proof-grid strong {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
}

.proof-grid span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
  line-height: 1.45;
}

.section {
  padding: 112px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 56px;
}

.heading-split {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 1.4fr) minmax(270px, 0.7fr);
  align-items: end;
  gap: 80px;
}

.section-heading h2,
.workflow-intro h2,
.trust-copy h2,
.request-copy h2,
.contact-copy h2 {
  margin-bottom: 0;
  font-family: var(--serif);
  color: var(--navy-950);
  font-size: 44px;
  font-weight: 500;
  line-height: 1.15;
}

.heading-split > p,
.workflow-intro > p,
.request-copy > p,
.contact-copy > p {
  margin: 0;
  color: var(--muted);
}

.platform-section {
  padding-top: 32px;
  background: var(--white);
}

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

.capability {
  min-height: 310px;
  padding: 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.capability-primary {
  grid-row: span 2;
  min-height: 620px;
  color: var(--white);
  background: var(--navy-900);
}

.capability-number {
  color: var(--gold-600);
  font-size: 12px;
  font-weight: 800;
}

.capability-primary .capability-number {
  color: var(--gold-300);
}

.capability h3 {
  max-width: 280px;
  margin: 54px 0 16px;
  font-family: var(--serif);
  color: var(--navy-950);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.2;
}

.capability-primary h3 {
  margin-top: 150px;
  color: var(--white);
  font-size: 36px;
}

.capability p:not(.capability-number) {
  color: var(--muted);
}

.capability-primary p:not(.capability-number) {
  color: rgba(255, 255, 255, 0.72);
}

.feature-list {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
}

.feature-list li::before {
  position: absolute;
  top: 0.66em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-500);
  content: "";
}

.workflow-section {
  background: var(--surface);
}

.workflow-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.76fr) minmax(0, 1.24fr);
  gap: 100px;
}

.workflow-intro {
  align-self: start;
  position: sticky;
  top: 120px;
}

.workflow-intro h2 {
  margin-bottom: 24px;
}

.workflow-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid #c9d0d6;
  list-style: none;
}

.workflow-list li {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 22px;
  padding: 30px 0;
  border-bottom: 1px solid #c9d0d6;
}

.workflow-list > li > span {
  color: var(--gold-600);
  font-size: 12px;
  font-weight: 800;
}

.workflow-list h3 {
  margin-bottom: 7px;
  color: var(--navy-950);
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 500;
}

.workflow-list p {
  margin: 0;
  color: var(--muted);
}

.audience-section {
  background: var(--white);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.audience-grid article {
  min-height: 370px;
  padding: 36px;
  background: var(--white);
}

.audience-label {
  display: inline-block;
  padding-bottom: 8px;
  color: var(--gold-600);
  border-bottom: 2px solid var(--gold-500);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.audience-grid h3 {
  margin: 82px 0 20px;
  color: var(--navy-950);
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 500;
  line-height: 1.28;
}

.audience-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.trust-section {
  color: var(--white);
  background: var(--navy-950);
}

.trust-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 100px;
}

.trust-copy h2 {
  color: var(--white);
}

.trust-copy > p:not(.eyebrow) {
  margin: 26px 0;
  color: rgba(255, 255, 255, 0.7);
}

.trust-points {
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-points div {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 30px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-points dt {
  color: var(--gold-300);
  font-weight: 700;
}

.trust-points dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.request-section {
  background: var(--surface);
}

.request-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(440px, 1.22fr);
  gap: 90px;
  align-items: start;
}

.request-copy {
  padding-top: 30px;
}

.request-copy h2 {
  margin-bottom: 26px;
}

.request-process {
  display: grid;
  gap: 14px;
  margin-top: 42px;
}

.request-process p {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0;
}

.request-process span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: var(--navy-900);
  border: 1px solid var(--gold-500);
  border-radius: 50%;
  font-size: 11px;
}

.request-process strong {
  color: var(--navy-950);
  font-size: 14px;
}

.form-panel {
  padding: 42px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid var(--gold-500);
  box-shadow: 0 18px 50px rgba(7, 30, 61, 0.07);
}

.form-heading {
  margin-bottom: 28px;
}

.form-heading h3 {
  margin-bottom: 4px;
  color: var(--navy-950);
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
}

.form-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.form-grid label:not(.honeypot) {
  display: grid;
  gap: 7px;
}

.form-grid label > span {
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

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

input,
select,
textarea {
  width: 100%;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #bfc7ce;
  border-radius: 2px;
}

input,
select {
  height: 48px;
  padding: 0 13px;
}

textarea {
  min-height: 118px;
  padding: 11px 13px;
  resize: vertical;
}

input:hover,
select:hover,
textarea:hover {
  border-color: #86919d;
}

.field-error {
  border-color: var(--danger);
}

.honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  margin: 22px 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.consent input {
  width: 16px;
  height: 16px;
  margin: 2px 0 0;
  accent-color: var(--navy-900);
}

.form-submit {
  min-width: 220px;
}

.button-loader {
  display: none;
  width: 16px;
  height: 16px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: spin 700ms linear infinite;
}

.is-submitting .button-loader {
  display: block;
}

.form-status {
  min-height: 24px;
  margin: 16px 0 0;
  font-size: 14px;
  font-weight: 600;
}

.form-status.is-success {
  color: var(--success);
}

.form-status.is-error {
  color: var(--danger);
}

.form-legal {
  margin: 10px 0 0;
  color: #7d858e;
  font-size: 10px;
}

.contact-section {
  color: var(--white);
  background: var(--navy-800);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(440px, 1.28fr);
  gap: 100px;
}

.contact-copy h2 {
  color: var(--white);
}

.contact-copy > p:not(.eyebrow) {
  margin: 24px 0 34px;
  color: rgba(255, 255, 255, 0.72);
}

.contact-copy > a {
  color: var(--gold-300);
  font-size: 18px;
  font-weight: 700;
}

.contact-copy address {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.58);
  font-style: normal;
}

.contact-form {
  padding-left: 54px;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.contact-form .form-grid label > span {
  color: rgba(255, 255, 255, 0.84);
}

.consent-light {
  color: rgba(255, 255, 255, 0.66);
}

.contact-form .form-status.is-success {
  color: #9bd8b7;
}

.contact-form .form-status.is-error {
  color: #ffb6bc;
}

.site-footer {
  color: rgba(255, 255, 255, 0.7);
  background: #020d1d;
}

.footer-main {
  display: flex;
  min-height: 160px;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.brand-footer {
  color: var(--white);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 24px;
  font-size: 13px;
  font-weight: 600;
}

.footer-links a {
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--gold-300);
}

.footer-bottom {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 11px;
}

.footer-bottom p {
  margin: 0;
}

.grecaptcha-badge {
  visibility: hidden;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1040px) {
  .primary-nav {
    gap: 18px;
  }

  .primary-nav > a:nth-child(2),
  .primary-nav > a:nth-child(3) {
    display: none;
  }

  .heading-split,
  .workflow-layout,
  .trust-layout,
  .request-layout,
  .contact-layout {
    gap: 56px;
  }
}

@media (max-width: 820px) {
  .shell {
    width: min(calc(100% - 36px), var(--shell));
  }

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

  .nav-toggle {
    display: block;
  }

  .primary-nav {
    position: fixed;
    inset: 68px 0 auto;
    display: none;
    align-items: stretch;
    gap: 0;
    padding: 18px;
    color: var(--navy-950);
    background: var(--white);
    border-top: 1px solid var(--line);
    box-shadow: 0 20px 35px rgba(7, 30, 61, 0.14);
  }

  .primary-nav.is-open {
    display: grid;
  }

  .primary-nav > a,
  .primary-nav > a:nth-child(2),
  .primary-nav > a:nth-child(3) {
    display: block;
    padding: 13px 8px;
    border-bottom: 1px solid var(--line);
  }

  .primary-nav .button {
    margin-top: 12px;
    border-bottom: 0;
    text-align: center;
  }

  .nav-login {
    padding-left: 8px;
    border-left: 0;
  }

  .hero {
    min-height: 650px;
  }

  .hero-media {
    background-position: 62% center;
  }

  .hero-shade {
    background:
      linear-gradient(
        90deg,
        rgba(4, 21, 45, 0.94) 0%,
        rgba(4, 21, 45, 0.72) 70%,
        rgba(4, 21, 45, 0.38) 100%
      ),
      linear-gradient(0deg, rgba(4, 21, 45, 0.9) 0%, rgba(4, 21, 45, 0) 48%);
  }

  .hero-inner {
    align-items: flex-start;
    padding-top: 160px;
    padding-bottom: 210px;
  }

  .hero-copy {
    max-width: 570px;
  }

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

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

  .proof-grid p {
    min-height: 62px;
    padding: 12px 14px;
    border-left: 1px solid rgba(255, 255, 255, 0.14);
    border-bottom: 0;
  }

  .proof-grid p:last-child {
    border-right: 1px solid rgba(255, 255, 255, 0.14);
  }

  .proof-grid span {
    display: none;
  }

  .section {
    padding: 82px 0;
  }

  .heading-split,
  .workflow-layout,
  .trust-layout,
  .request-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .heading-split {
    gap: 22px;
  }

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

  .capability-primary {
    grid-row: auto;
    grid-column: 1 / -1;
    min-height: 440px;
  }

  .capability-primary h3 {
    margin-top: 90px;
  }

  .workflow-intro {
    position: static;
  }

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

  .audience-grid article {
    min-height: auto;
  }

  .audience-grid h3 {
    margin-top: 45px;
  }

  .request-layout,
  .contact-layout {
    gap: 46px;
  }

  .request-copy {
    padding-top: 0;
  }

  .contact-form {
    padding: 46px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    border-left: 0;
  }

  .footer-main {
    align-items: flex-start;
    padding: 44px 0;
  }
}

@media (max-width: 560px) {
  .shell {
    width: min(calc(100% - 28px), var(--shell));
  }

  .site-status-header,
  .site-status-content,
  .site-status-footer {
    width: min(calc(100% - 28px), var(--shell));
  }

  .site-status-header .brand strong {
    font-size: 16px;
  }

  .site-status-content {
    padding: 50px 0;
  }

  .site-status-content h1 {
    font-size: 46px;
  }

  .site-status-content > p:not(.eyebrow) {
    font-size: 16px;
  }

  .launch-countdown div {
    padding: 14px 7px;
    text-align: center;
  }

  .launch-countdown strong {
    font-size: 28px;
  }

  .app-status-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .brand strong {
    font-size: 18px;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 650px;
  }

  .hero-inner {
    padding-top: 126px;
    padding-bottom: 100px;
  }

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

  .hero-lede {
    font-size: 17px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .hero-note {
    font-size: 11px;
  }

  .proof-grid p {
    padding-right: 8px;
    padding-left: 8px;
    text-align: center;
  }

  .proof-grid strong {
    font-size: 15px;
  }

  .section-heading h2,
  .workflow-intro h2,
  .trust-copy h2,
  .request-copy h2,
  .contact-copy h2 {
    font-size: 36px;
  }

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

  .capability,
  .capability-primary {
    min-height: auto;
    padding: 28px;
  }

  .capability-primary {
    grid-column: auto;
  }

  .capability h3,
  .capability-primary h3 {
    margin-top: 50px;
  }

  .trust-points div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .form-panel {
    padding: 28px 20px;
  }

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

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

  .form-submit {
    width: 100%;
  }

  .footer-main,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }

  .footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: start;
    width: 100%;
  }

  .footer-bottom {
    padding: 20px 0;
  }
}

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

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