:root {
  color-scheme: light;
  --text: rgb(76 76 76);
  --muted: rgb(156 156 156);
  --accent: rgb(31 99 172);
  --ink: rgb(28 36 38);
  --line: rgb(218 224 224);
  --soft: rgb(245 248 248);
  --footer: rgb(31 31 31);
  --page-max: 920px;
  --side-width: 220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: white;
}

body {
  margin: 0;
  color: var(--text);
  background: white;
  font-family: aaux-next, "Helvetica Neue", Arial, sans-serif;
  font-size: 22px;
  line-height: 1.85;
}

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

button {
  border: 0;
  padding: 0;
  color: inherit;
  background: transparent;
  font: inherit;
}

.site-shell {
  min-height: 100vh;
  background: white;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 34px 54px 0 76px;
  color: white;
  text-transform: uppercase;
  isolation: isolate;
}

.site-header--plain {
  color: var(--text);
}

.site-header:not(.site-header--plain)::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  height: 142px;
  background: rgb(12 13 13 / 22%);
  border-bottom: 1px solid rgb(255 255 255 / 16%);
  backdrop-filter: blur(18px) saturate(85%);
  -webkit-backdrop-filter: blur(18px) saturate(85%);
  mask-image: linear-gradient(to bottom, black 0%, black 72%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 0%, black 72%, transparent 100%);
}

.site-header--static {
  position: relative;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
  background: white;
}

.site-title {
  max-width: 380px;
  font-size: 42px;
  line-height: 1.12;
  font-weight: 300;
}

.site-title span {
  display: block;
}

.desktop-nav {
  display: flex;
  gap: clamp(18px, 2.6vw, 44px);
  align-items: flex-start;
  padding-top: 22px;
  font-size: clamp(15px, 1.4vw, 21px);
  line-height: 1;
  font-weight: 300;
}

.desktop-nav > a,
.nav-folder > a {
  display: block;
  padding: 8px 0 26px;
}

.nav-folder {
  position: relative;
}

.nav-dropdown {
  position: absolute;
  top: 54px;
  right: 0;
  min-width: 290px;
  padding: 18px 22px;
  visibility: hidden;
  opacity: 0;
  background: rgb(255 255 255 / 94%);
  color: rgb(70 70 70);
  transform: translateY(-8px);
  transition: opacity 140ms ease, transform 140ms ease, visibility 140ms ease;
}

.nav-dropdown a {
  display: block;
  padding: 10px 0;
  font-size: 16px;
  line-height: 1.2;
}

.nav-folder:hover .nav-dropdown,
.nav-folder:focus-within .nav-dropdown {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.hero {
  position: relative;
  overflow: hidden;
  color: white;
  background: black;
}

.hero--home {
  min-height: 100svh;
}

.hero--inner {
  height: 660px;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: rgb(0 0 0 / 34%);
}

.hero-copy {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 130px 24px 40px;
  text-align: center;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 300;
}

.hero-copy-inner {
  position: relative;
  z-index: 0;
  isolation: isolate;
  width: min(100% - 48px, 760px);
  padding: 18px clamp(22px, 4vw, 52px) 20px;
  background:
    linear-gradient(90deg, rgb(0 0 0 / 0%), rgb(8 10 12 / 16%) 22%, rgb(8 10 12 / 16%) 78%, rgb(0 0 0 / 0%));
}

.hero-copy-inner::before,
.hero-copy-inner::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.hero-copy-inner::before {
  background:
    linear-gradient(90deg, rgb(8 10 12 / 0%), rgb(8 10 12 / 16%) 18%, rgb(8 10 12 / 16%) 82%, rgb(8 10 12 / 0%));
  backdrop-filter: blur(6px) saturate(88%);
  -webkit-backdrop-filter: blur(6px) saturate(88%);
  mask-image: linear-gradient(90deg, transparent 0%, rgb(0 0 0 / 44%) 16%, black 34%, black 66%, rgb(0 0 0 / 44%) 84%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgb(0 0 0 / 44%) 16%, black 34%, black 66%, rgb(0 0 0 / 44%) 84%, transparent 100%);
}

.hero-copy-inner::after {
  inset: 0 10%;
  background:
    linear-gradient(90deg, rgb(8 10 12 / 0%), rgb(8 10 12 / 22%) 24%, rgb(8 10 12 / 22%) 76%, rgb(8 10 12 / 0%));
  backdrop-filter: blur(14px) saturate(84%);
  -webkit-backdrop-filter: blur(14px) saturate(84%);
  mask-image: linear-gradient(90deg, transparent 0%, rgb(0 0 0 / 54%) 20%, black 42%, black 58%, rgb(0 0 0 / 54%) 80%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgb(0 0 0 / 54%) 20%, black 42%, black 58%, rgb(0 0 0 / 54%) 80%, transparent 100%);
}

.hero--inner .hero-copy {
  justify-content: center;
  font-size: 18px;
  text-transform: uppercase;
}

.hero-copy h1,
.hero-copy p {
  margin: 0;
}

.hero-copy h1 {
  margin-bottom: 8px;
  font-family: aaux-next, "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(27px, 3.1vw, 43px);
  font-weight: 300;
  line-height: 1.12;
  text-wrap: balance;
}

.hero-copy h1::after {
  content: none;
  display: block;
  width: 74px;
  height: 1px;
  margin: 14px auto 0;
  background: var(--accent);
}

.hero-copy p {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  text-wrap: balance;
}

.hero-copy p:first-of-type {
  margin-bottom: 4px;
  color: rgb(255 255 255 / 82%);
  font-size: clamp(15px, 1.35vw, 19px);
  line-height: 1.35;
}

.hero-copy p + p {
  color: rgb(255 255 255 / 70%);
  font-size: clamp(13px, 1.05vw, 15px);
  line-height: 1.35;
}

.page {
  background: white;
}

.page-content {
  width: min(100% - 48px, var(--page-max));
  margin: 0 auto;
  padding: 54px 0 96px;
}

.page-content--with-sidebar {
  display: grid;
  grid-template-columns: var(--side-width) minmax(0, 1fr);
  gap: 36px;
  width: min(100% - 120px, 960px);
  align-items: start;
}

.page-content--seo {
  width: min(100% - 48px, 980px);
  margin: 0 auto;
  padding: 78px 0 104px;
}

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

.conversion-gateway {
  width: min(100%, 1080px);
  margin: 0 auto 70px;
  padding: 8px 0 34px;
  color: var(--ink);
}

.seo-eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0;
  text-transform: uppercase;
}

.conversion-gateway h2,
.seo-landing h1 {
  margin: 0 0 18px;
  color: var(--ink);
  font-family: adobe-garamond-pro, Georgia, serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.05;
}

.gateway-lead,
.seo-lead {
  max-width: 860px;
  margin: 0 0 24px;
  color: rgb(55 65 67);
  font-size: clamp(21px, 2.2vw, 29px);
  line-height: 1.45;
}

.gateway-actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 36px;
}

.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  background: white;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
}

.button-link--primary {
  border-color: var(--accent);
  color: white;
  background: var(--accent);
}

.gateway-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 28px;
}

.gateway-columns h3,
.seo-landing h2 {
  margin: 0 0 16px;
  color: var(--ink);
  font-family: adobe-garamond-pro, Georgia, serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.2;
}

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

.quick-link,
.link-tile,
.audience-strip a {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--soft);
}

.quick-link {
  display: flex;
  align-items: center;
  min-height: 54px;
  padding: 12px 14px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
}

.audience-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 32px;
}

.audience-strip a {
  min-height: 150px;
  padding: 18px;
}

.audience-strip span,
.link-tile span {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.2;
}

.audience-strip small,
.link-tile small {
  display: block;
  color: rgb(84 94 96);
  font-size: 14px;
  line-height: 1.5;
}

.seo-landing {
  color: var(--ink);
}

.seo-landing h2 {
  margin-top: 44px;
}

.seo-landing p,
.seo-landing li {
  color: rgb(60 69 71);
  font-size: 19px;
  line-height: 1.7;
}

.seo-landing ul {
  margin: 0 0 26px;
  padding-left: 24px;
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 34px 0 42px;
}

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

.link-tile {
  min-height: 178px;
  padding: 20px;
}

.side-nav {
  position: sticky;
  top: 28px;
  padding-top: 2px;
  font-size: 15px;
  line-height: 1.45;
  text-transform: uppercase;
}

.side-nav p {
  margin: 0 0 14px;
  color: var(--accent);
  font-family: adobe-garamond-pro, Georgia, serif;
  font-size: 24px;
  text-transform: none;
}

.side-nav-link {
  display: block;
  max-width: 165px;
  margin: 0 0 13px;
  color: rgb(160 160 160);
  font-weight: 600;
}

.side-nav-link--active {
  color: rgb(20 20 20);
}

.rich-text {
  width: 100%;
}

.rich-text p,
.rich-text li {
  margin-top: 0.8em;
  margin-bottom: 0.8em;
}

.rich-text h1,
.rich-text h2,
.rich-text h3 {
  margin: 0.55em 0 0.35em;
  font-weight: 400;
  line-height: 1.45;
}

.rich-text h2 {
  color: rgb(145 145 145);
  font-family: "Julius Sans One", aaux-next, sans-serif;
  font-size: 36px;
  text-transform: uppercase;
}

.rich-text h3 {
  font-family: adobe-garamond-pro, Georgia, serif;
  font-size: 28px;
}

.rich-text ul {
  margin-top: 0.5em;
  margin-bottom: 1.3em;
}

.rich-text li p {
  margin: 0.35em 0;
}

.image-block {
  width: min(100%, var(--image-width));
  margin: 54px auto 76px;
}

.image-block--logo {
  width: min(100%, 493px);
  margin-top: -24px;
  margin-bottom: 26px;
  text-align: center;
}

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

.image-block--logo img {
  margin: 0 auto;
}

.image-block figcaption {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.45;
}

.image-block--logo figcaption {
  font-size: 14px;
  text-align: center;
}

.site-footer {
  padding: 42px 24px 48px;
  color: rgb(150 150 150);
  background: var(--footer);
  text-align: center;
  font-size: 12px;
  line-height: 1.7;
}

.site-footer a {
  display: inline-block;
  margin-bottom: 20px;
}

.mobile-nav-toggle {
  display: none;
  position: relative;
  width: 24px;
  height: 20px;
  margin-top: 0;
  cursor: pointer;
}

.mobile-nav-toggle span {
  position: absolute;
  right: 0;
  width: 22px;
  height: 2px;
  background: currentColor;
}

.mobile-nav-toggle span:nth-child(1) {
  top: 1px;
}

.mobile-nav-toggle span:nth-child(2) {
  top: 9px;
}

.mobile-nav-toggle span:nth-child(3) {
  top: 17px;
}

.mobile-backdrop {
  position: fixed;
  inset: 0;
  z-index: 40;
  visibility: hidden;
  background: rgb(0 0 0 / 0%);
}

.mobile-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  width: 260px;
  padding: 38px 26px;
  overflow-y: auto;
  color: white;
  background: rgb(34 34 34);
  transform: translateX(100%);
  transition: transform 160ms ease;
  text-transform: uppercase;
}

.mobile-panel a,
.mobile-panel button {
  display: block;
  width: 100%;
  padding: 11px 0;
  text-align: left;
  font-size: 19px;
  line-height: 1.2;
}

.mobile-subnav {
  display: none;
  padding-left: 18px;
}

.mobile-subnav--open {
  display: block;
}

.mobile-subnav a {
  font-size: 15px;
  color: rgb(210 210 210);
}

.mobile-nav-open .mobile-backdrop {
  visibility: visible;
}

.mobile-nav-open .mobile-panel {
  transform: translateX(0);
}

.page--not-found {
  padding-top: 140px;
}

@media (max-width: 991px) {
  body {
    font-size: 20px;
  }

  .site-header {
    padding: 26px 20px 0;
    align-items: center;
  }

  .site-title {
    max-width: 260px;
    font-size: 16px;
    line-height: 1;
  }

  .site-title span {
    display: inline;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-nav-toggle {
    display: block;
  }

  .hero--home {
    min-height: 100svh;
  }

  .hero--inner {
    height: 430px;
  }

  .hero-copy {
    padding-top: 82px;
    font-size: 19px;
  }

  .hero--inner .hero-copy {
    font-size: 16px;
  }

  .page-content,
  .page-content--with-sidebar {
    display: block;
    width: min(100% - 42px, 760px);
    padding-top: 48px;
  }

  .page-content--seo {
    width: min(100% - 42px, 760px);
    padding-top: 54px;
  }

  .gateway-columns,
  .audience-strip,
  .link-grid,
  .link-grid--wide {
    grid-template-columns: 1fr;
  }

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

  .side-nav {
    position: relative;
    top: auto;
    margin-bottom: 34px;
  }

  .side-nav-link {
    max-width: none;
  }

  .rich-text h2 {
    font-size: 30px;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 17px;
    line-height: 1.75;
  }

  .hero-image {
    width: 100%;
    max-width: none;
  }

  .hero-copy {
    font-size: 18px;
  }

  .hero--inner {
    height: 360px;
  }

  .page-content,
  .page-content--with-sidebar {
    width: min(100% - 32px, 760px);
  }

  .page-content--seo {
    width: min(100% - 32px, 760px);
    padding-top: 42px;
  }

  .conversion-gateway h2,
  .seo-landing h1 {
    font-size: 36px;
  }

  .gateway-lead,
  .seo-lead {
    font-size: 19px;
  }

  .quick-link-grid {
    grid-template-columns: 1fr;
  }

  .button-link {
    width: 100%;
  }

  .rich-text h2 {
    font-size: 25px;
  }

  .image-block {
    margin: 42px auto 58px;
  }
}
