:root {
  --sw-ink: #101010;
  --sw-muted: #7b8a8b;
  --sw-paper: #fff;
  --sw-soft: #ecf0f1;
  --sw-line: #dee2e6;
  --sw-accent: #18BC9C;
  --sw-accent-dark: #101010;
  --sw-white: #fff;
  --sw-mobile-nav-duration: 420ms;
  --sw-mobile-nav-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --sw-header-height: 64px;
  --sw-scrollbar-gutter: 0px;

  --font-sans: "Instrument Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-serif: "Instrument Serif", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
}

body {
  display: flex;
  flex-direction: column;
  min-width: 320px;
  min-height: 100vh;
  min-height: 100dvh;
  margin: 0;
  background: var(--sw-paper);
  color: var(--sw-ink);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.55;
  text-rendering: geometricPrecision;
}

img,
svg {
  max-width: 100%;
}

a {
  color: inherit;
}

a:hover {
  color: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--sw-accent);
  outline-offset: 5px;
}

p {
  margin: 0;
}

.sw-container {
  width: min(calc(100% - 2rem), 1720px);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 1100;
  transform: translateY(-150%);
  border: 1px solid var(--sw-ink);
  background: var(--sw-paper);
  color: var(--sw-ink);
  padding: 0.7rem 1rem;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
}

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

.site-header {
  position: relative;
  z-index: 1000;
  border-bottom: 1px solid rgba(16, 16, 16, 0.1);
  padding-right: var(--sw-scrollbar-gutter);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  transition:
    background-color var(--sw-mobile-nav-duration) var(--sw-mobile-nav-ease),
    border-color var(--sw-mobile-nav-duration) var(--sw-mobile-nav-ease),
    color var(--sw-mobile-nav-duration) var(--sw-mobile-nav-ease);
}

.site-main {
  flex: 0 0 auto;
  min-height: calc(100vh - var(--sw-header-height));
  min-height: calc(100dvh - var(--sw-header-height));
}

.sw-nav {
  min-height: 86px;
  padding: 0;
}

.sw-nav-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  min-height: 86px;
}

.sw-brand {
  position: relative;
  z-index: 1100;
  display: inline-flex;
  align-items: center;
  width: auto;
  max-width: calc(100% - 56px);
  height: 28px;
  text-decoration: none;
}

.sw-brand img {
  display: block;
  width: auto;
  max-width: 100%;
  height: 100%;
  filter: invert(0);
  transition: filter var(--sw-mobile-nav-duration) var(--sw-mobile-nav-ease);
}

.sw-nav-toggle {
  position: relative;
  z-index: 1100;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 0;
  border-radius: 2px;
  padding: 0;
  background: transparent;
  box-shadow: none;
  color: var(--sw-ink);
  transition:
    border-color var(--sw-mobile-nav-duration) var(--sw-mobile-nav-ease),
    color var(--sw-mobile-nav-duration) var(--sw-mobile-nav-ease);
}

.sw-nav-toggle:focus {
  box-shadow: none;
}

.sw-toggle-lines {
  position: relative;
  width: 22px;
  height: 2px;
  background: currentColor;
  transition: background-color var(--sw-mobile-nav-duration) var(--sw-mobile-nav-ease);
}

.sw-toggle-lines::before,
.sw-toggle-lines::after {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
  content: "";
  transition:
    top var(--sw-mobile-nav-duration) var(--sw-mobile-nav-ease),
    transform var(--sw-mobile-nav-duration) var(--sw-mobile-nav-ease),
    background-color var(--sw-mobile-nav-duration) var(--sw-mobile-nav-ease);
}

.sw-toggle-lines::before {
  top: -7px;
}

.sw-toggle-lines::after {
  top: 7px;
}

.sw-nav-collapse {
  flex-grow: 1;
}

.sw-main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 32px;
  margin-left: auto;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
}

.sw-main-nav a {
  position: relative;
  display: inline-flex;
  padding: 0.4rem 0;
  color: var(--sw-ink);
  text-decoration: none;
}

.sw-main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -0.2rem;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: currentColor;
  content: "";
  transition: transform 180ms ease;
}

.sw-main-nav a:hover::after,
.sw-main-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

body.nav-open .site-header {
  border-bottom-color: rgba(255, 255, 255, 0);
  background: #000;
  color: var(--sw-white);
  backdrop-filter: none;
}

body.nav-open .sw-brand img {
  filter: invert(1);
}

body.nav-open .sw-nav-toggle {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--sw-white);
}

body.nav-open .sw-toggle-lines {
  background: transparent;
}

body.nav-open .sw-toggle-lines::before {
  top: 0;
  transform: rotate(45deg);
}

body.nav-open .sw-toggle-lines::after {
  top: 0;
  transform: rotate(-45deg);
}

.hero {
  padding: 7.5rem 0 5.5rem;
  text-align: center;
}

.section-label,
.legal-kicker {
  color: var(--sw-muted);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.35;
}

.hero-title,
.section-title,
.legal-title,
.cta-title {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-title {
  max-width: 1180px;
  margin-inline: auto;
  margin-bottom: 2rem;
  font-size: 4.25rem;
  line-height: 0.9;
}

.hero-copy {
  max-width: 780px;
  margin-inline: auto;
  font-size: 1.18rem;
  line-height: 1.42;
}

.hero-support {
  display: grid;
  max-width: 800px;
  margin-top: 2.2rem;
  gap: 0.35rem;
  color: var(--sw-muted);
  font-size: 1.05rem;
  font-weight: 500;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2.4rem;
}

.sw-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border: 1px solid var(--sw-ink);
  border-radius: 2px;
  padding: 0.85rem 1.15rem;
  background: var(--sw-ink);
  color: var(--sw-paper);
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.1;
  text-decoration: none;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.sw-button svg {
  width: 18px;
  height: 18px;
  margin-left: 0.65rem;
  stroke-width: 1.8;
}

.sw-button:hover {
  border-color: var(--sw-accent-dark);
  background: var(--sw-accent-dark);
  color: var(--sw-white);
}

.sw-button--quiet {
  background: transparent;
  color: var(--sw-ink);
}

.sw-button--quiet:hover {
  border-color: var(--sw-ink);
  background: var(--sw-ink);
  color: var(--sw-paper);
}

.filter-wrap {
  padding-bottom: 5.5rem;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 2.2rem;
  border-top: 1px solid var(--sw-line);
  border-bottom: 1px solid var(--sw-line);
  padding: 1.15rem 0;
}

.filter-row a {
  color: var(--sw-muted);
  font-size: 0.98rem;
  font-weight: 600;
  text-decoration: none;
}

.filter-row a:hover {
  color: var(--sw-ink);
  text-decoration: underline;
  text-underline-offset: 0.35em;
}

.visual-break {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  border-radius: 6px;
  aspect-ratio: 21 / 8;
  background:
    linear-gradient(128deg, rgba(255, 255, 255, 0.95) 0%, rgba(236, 240, 241, 0.62) 24%, transparent 24.2%),
    linear-gradient(93deg, rgba(16, 16, 16, 0.94) 0%, rgba(24, 188, 156, 0.74) 45%, rgba(33, 37, 41, 0.95) 100%);
}

.visual-break::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-position: center;
  background-size: 46px 46px;
  content: "";
  mix-blend-mode: screen;
  opacity: 0.36;
}

.visual-break::after {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(33, 37, 41, 0.4));
  content: "";
}

.service-pillar {
  padding: 7rem 0;
}

.service-pillar .row {
  --bs-gutter-x: 0;
  --bs-gutter-y: 3rem;
}

.service-pillar + .service-pillar {
  border-top: 1px solid var(--sw-line);
}

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

.section-title {
  max-width: 1120px;
  font-size: 3.15rem;
  line-height: 0.95;
}

.section-intro {
  max-width: 760px;
  margin-top: 2rem;
  color: var(--sw-ink);
  font-size: 1.08rem;
  line-height: 1.56;
}

.service-link-grid {
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 3rem;
  border-top: 1px solid var(--sw-line);
}

.service-link {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem;
  min-height: 78px;
  border-bottom: 1px solid var(--sw-line);
  color: var(--sw-ink);
  font-size: 1.12rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  transition: color 180ms ease, padding-left 180ms ease;
}

.service-link svg {
  width: 20px;
  height: 20px;
  color: var(--sw-accent-dark);
  stroke-width: 1.8;
}

.service-link:hover {
  color: var(--sw-accent-dark);
  padding-left: 0.35rem;
}

.closing-cta {
  border-top: 1px solid var(--sw-line);
  padding: 7rem 0;
  background: var(--sw-soft);
}

.cta-title {
  max-width: 1000px;
  font-size: 3.35rem;
  line-height: 0.95;
}

.cta-copy {
  max-width: 760px;
  margin-top: 1.6rem;
  color: var(--sw-ink);
  font-size: 1.08rem;
  line-height: 1.58;
}

.site-footer {
  flex-shrink: 0;
  padding: 4.2rem 0 2rem;
  background: var(--sw-ink);
  color: var(--sw-paper);
}

.footer-grid {
  display: grid;
  gap: 3.2rem;
}

.footer-brand {
  display: inline-block;
  max-width: 320px;
}

.footer-brand img {
  width: min(70vw, 270px);
  filter: invert(1) brightness(2.4);
}

.footer-line {
  max-width: 360px;
  margin-top: 1.5rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
}

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

.footer-column h2 {
  margin: 0 0 1.05rem;
  color: rgba(255, 255, 255, 0.64);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
}

.footer-column a {
  display: block;
  width: fit-content;
  color: var(--sw-paper);
  font-size: 0.94rem;
  font-weight: 500;
  line-height: 1.35;
  text-decoration: none;
}

.footer-column a + a {
  margin-top: 0.65rem;
}

.footer-column a:hover,
.footer-column a[aria-current="page"] {
  text-decoration: underline;
  text-underline-offset: 0.35em;
}

.footer-bottom {
  margin-top: 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1.2rem;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.84rem;
}

.legal-hero {
  padding: 7rem 0 4.5rem;
  text-align: center;
}

.legal-kicker {
  display: inline-flex;
  margin-bottom: 1.6rem;
}

.legal-title {
  font-size: 4rem;
  line-height: 0.92;
}

.legal-intro {
  max-width: 760px;
  margin-inline: auto;
  margin-top: 1.8rem;
  font-size: 1.15rem;
  line-height: 1.5;
}

.legal-content {
  padding-bottom: 7rem;
}

.legal-list {
  display: grid;
  gap: 0;
  max-width: 980px;
  margin-inline: auto;
  border-top: 1px solid var(--sw-line);
}

.legal-section {
  display: grid;
  gap: 1rem;
  border-bottom: 1px solid var(--sw-line);
  padding: 2rem 0;
  text-align: left;
}

.legal-section h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 2.05rem;
  font-weight: 400;
  line-height: 1;
}

.legal-section p {
  max-width: 760px;
  color: var(--sw-muted);
  font-size: 1rem;
  line-height: 1.6;
}

@media (min-width: 768px) {
  body {
    font-size: 18px;
  }

  .sw-brand {
    height: 35.2px;
  }

  .sw-container {
    width: min(calc(100% - 3rem), 1720px);
  }

  .hero {
    padding-top: 8.8rem;
    padding-bottom: 7rem;
  }

  .hero-title {
    font-size: 6.35rem;
  }

  .hero-copy {
    font-size: 1.32rem;
  }

  .section-title {
    font-size: 5.2rem;
  }

  .section-intro,
  .cta-copy {
    font-size: 1.13rem;
  }

  .service-link-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 3rem;
  }

  .service-link:nth-child(2n + 1) {
    border-right: 1px solid var(--sw-line);
    padding-right: 2rem;
  }

  .service-link:nth-child(2n) {
    padding-left: 2rem;
  }

  .service-link:nth-child(2n):hover {
    padding-left: 2.35rem;
  }

  .cta-title {
    font-size: 5.4rem;
  }

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

  .legal-title {
    font-size: 6.4rem;
  }

  .legal-section {
    grid-template-columns: minmax(220px, 0.34fr) 1fr;
    gap: 2rem;
    padding: 2.4rem 0;
  }
}

@media (min-width: 992px) {
  :root {
    --sw-header-height: 64px;
  }

  .sw-nav,
  .sw-nav-inner {
    min-height: 64px;
  }

  .sw-nav-toggle {
    display: none;
  }

  .sw-nav-collapse {
    display: flex !important;
    justify-content: flex-end;
  }

  .hero {
    padding-top: 9.4rem;
    padding-bottom: 8rem;
  }

  .hero-title {
    font-size: 8.25rem;
  }

  .filter-wrap {
    padding-bottom: 7rem;
  }

  .service-pillar {
    padding: 9rem 0;
  }

  .section-label {
    position: sticky;
    top: 8rem;
    margin-bottom: 0;
  }

  .section-title {
    font-size: 6.9rem;
  }

  .service-link {
    min-height: 92px;
    font-size: 1.22rem;
  }

  .closing-cta {
    padding: 9rem 0;
  }

  .footer-grid {
    grid-template-columns: minmax(280px, 0.9fr) 1.1fr;
    align-items: start;
  }
}

@media (min-width: 1440px) {
  .sw-container {
    width: min(calc(100% - 5rem), 1720px);
  }

  .hero-title {
    font-size: 10.25rem;
  }

  .hero-copy {
    font-size: 1.48rem;
  }

  .section-title {
    font-size: 8.1rem;
  }

  .section-intro,
  .cta-copy {
    font-size: 1.2rem;
  }

  .cta-title {
    font-size: 7.7rem;
  }

  .legal-title {
    font-size: 8.4rem;
  }
}

@media (min-width: 1720px) {
  .hero-title {
    font-size: 10.75rem;
  }

  .section-title {
    font-size: 8.5rem;
  }
}

@media (max-width: 991.98px) {
  :root {
    --sw-header-height: 60px;
  }

  body.nav-open,
  body.nav-closing {
    overflow: hidden;
  }

  .sw-nav,
  .sw-nav-inner {
    min-height: 60px;
  }

  .sw-nav-toggle {
    width: 32px;
    height: 32px;
  }

  .sw-toggle-lines {
    width: 16px;
  }

  .sw-toggle-lines::before {
    top: -5px;
  }

  .sw-toggle-lines::after {
    top: 5px;
  }

  body.nav-open .site-header,
  body.nav-closing .site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
  }

  .sw-nav-collapse {
    position: fixed;
    inset: 0;
    z-index: 1050;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    border-top: 0;
    margin-top: 0;
    overflow-y: auto;
    padding: clamp(5.25rem, 11vh, 6.75rem) 0 2.5rem;
    background: var(--sw-paper);
    color: var(--sw-ink);
    opacity: 0;
    pointer-events: none;
    transition:
      opacity var(--sw-mobile-nav-duration) var(--sw-mobile-nav-ease),
      background-color var(--sw-mobile-nav-duration) var(--sw-mobile-nav-ease),
      color var(--sw-mobile-nav-duration) var(--sw-mobile-nav-ease);
  }

  .sw-nav-collapse.show,
  .sw-nav-collapse.collapsing {
    flex-basis: 100%;
    background: #000;
    color: var(--sw-white);
    opacity: 1;
    pointer-events: auto;
  }

  .sw-nav-collapse.collapsing {
    height: 100vh !important;
    height: 100dvh !important;
  }

  body.nav-closing .sw-nav-collapse.collapsing {
    opacity: 0;
  }

  .sw-main-nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.68rem;
    justify-content: flex-start;
    width: min(calc(100% - 3rem), 560px);
    min-height: auto;
    margin-inline: auto;
    padding: 0;
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.16;
  }

  .sw-main-nav a {
    justify-content: flex-start;
    width: auto;
    border-bottom: 0;
    padding: 0.18rem 0;
    color: var(--sw-white);
    font-family: var(--font-sans);
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    text-align: left;
  }

  .sw-main-nav a::after {
    display: none;
  }

  .sw-main-nav a[aria-current="page"] {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.18em;
  }
}

@media (max-width: 575.98px) {
  :root {
    --sw-header-height: 56px;
  }

  .sw-container {
    width: min(calc(100% - 1.5rem), 1720px);
  }

  .sw-nav,
  .sw-nav-inner {
    min-height: 56px;
  }

  .sw-nav-toggle {
    width: 30px;
    height: 30px;
  }

  .sw-toggle-lines {
    width: 14px;
  }

  .sw-toggle-lines::before {
    top: -4px;
  }

  .sw-toggle-lines::after {
    top: 4px;
  }

  .hero {
    padding: 5.8rem 0 4.6rem;
  }

  .hero-title {
    max-width: 10.8ch;
    font-size: 3.55rem;
  }

  .hero-copy {
    font-size: 1.08rem;
  }

  .hero-actions,
  .cta-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .sw-button {
    width: 100%;
  }

  .filter-wrap {
    padding-bottom: 4.5rem;
  }

  .visual-break {
    min-height: 150px;
    aspect-ratio: 16 / 7;
  }

  .service-pillar {
    padding: 5.5rem 0;
  }

  .section-title {
    font-size: 3rem;
  }

  .section-intro {
    margin-top: 1.5rem;
  }

  .service-link-grid {
    margin-top: 2.4rem;
  }

  .service-link {
    min-height: 72px;
    font-size: 1.04rem;
  }

  .closing-cta {
    padding: 5.6rem 0;
  }

  .cta-title {
    font-size: 3rem;
  }

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

  .legal-hero {
    padding: 5.5rem 0 3.8rem;
  }

  .legal-title {
    font-size: 3.8rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}
