@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300 900;
  font-display: swap;
  src: url('/fonts/inter-variable.woff2') format('woff2');
}

:root {
  color-scheme: dark;
  /* Mirrors the app palette in tailwind.config.js. This layer is prerendered
     to static HTML and served without the app's CSS, so the values are
     duplicated here by necessity - keep the two in step. */
  --seo-bg: #050505;
  --seo-surface: #0D0D0F;
  --seo-surface-raised: #151518;
  --seo-text: #F7F7F4;
  --seo-body: rgba(247, 247, 244, 0.74);
  --seo-muted: rgba(242, 233, 236, 0.58);
  --seo-hairline: #29292E;
  --seo-rose: #FF7DA8;
  --seo-champagne: #F7E3B5;
  --seo-sky: #A7D8FF;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--seo-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 76% 3%, rgba(255, 125, 168, 0.13), transparent 26rem),
    radial-gradient(circle at 22% 24%, rgba(167, 216, 255, 0.07), transparent 30rem),
    var(--seo-bg);
  color: var(--seo-text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

:focus-visible {
  outline: 2px solid rgba(247, 247, 244, 0.82);
  outline-offset: 3px;
}

::selection {
  background: rgba(255, 125, 168, 0.32);
  color: #F7F7F4;
}

.seo-shell {
  min-height: 100vh;
  overflow: hidden;
}

.seo-container {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.seo-skip {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 10px;
  background: #fff;
  color: #050505;
  font-weight: 700;
  transform: translateY(-160%);
}

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

.seo-header {
  position: relative;
  z-index: 10;
  border-bottom: 1px solid var(--seo-hairline);
  background: rgba(5, 5, 5, 0.82);
}

.seo-header__inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.seo-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.seo-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.seo-nav a,
.seo-footer a {
  color: var(--seo-muted);
  text-decoration: none;
}

.seo-nav a {
  padding-block: 10px;
  font-size: 14px;
}

.seo-nav a:hover,
.seo-nav a[aria-current='page'],
.seo-footer a:hover {
  color: #fff;
}

.seo-button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid rgba(247, 247, 244, 0.18);
  border-radius: 12px;
  background: #fff;
  color: #08080b;
  font-size: 15px;
  font-weight: 750;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

.seo-button:hover {
  background: #e9ecff;
}

.seo-button--compact {
  min-height: 40px;
  padding-inline: 16px;
  font-size: 14px;
}

.seo-hero {
  padding: 96px 0 108px;
}

.seo-hero--guide {
  padding-bottom: 96px;
}

.seo-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  align-items: end;
  gap: 80px;
}

.seo-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
  color: var(--seo-muted);
  font-size: 13px;
}

.seo-breadcrumb a {
  text-decoration: none;
}

.seo-breadcrumb a:hover {
  color: #fff;
}

.seo-kicker,
.seo-section-heading > p,
.seo-fact-panel > p:first-child {
  margin: 0 0 16px;
  color: var(--seo-sky);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.seo-hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2.8rem, 6vw, 5.3rem);
  font-weight: 760;
  letter-spacing: -0.04em;
  line-height: 0.98;
  text-wrap: balance;
}

.seo-lead {
  max-width: 720px;
  margin: 28px 0 0;
  color: var(--seo-body);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
  line-height: 1.65;
}

.seo-byline {
  margin: 24px 0 0;
  color: var(--seo-muted);
  font-size: 13px;
}

.seo-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 38px;
}

.seo-text-link {
  color: var(--seo-body);
  font-size: 15px;
  font-weight: 650;
  text-underline-offset: 5px;
}

.seo-fact-panel {
  position: relative;
  padding: 28px;
  border: 1px solid var(--seo-hairline);
  border-radius: 16px;
  background: rgba(21, 21, 24, 0.82);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.3);
}

.seo-fact-panel::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 28px;
  width: 88px;
  height: 2px;
  background: var(--seo-rose);
}

.seo-fact-panel dl {
  margin: 0;
}

.seo-fact-panel dl > div {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 20px;
  padding: 17px 0;
  border-top: 1px solid var(--seo-hairline);
}

.seo-fact-panel dt {
  color: var(--seo-muted);
  font-size: 13px;
}

.seo-fact-panel dd {
  margin: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 650;
}

.seo-fact-panel__answer {
  margin: 0;
  color: var(--seo-body);
  font-size: 17px;
  line-height: 1.7;
}

.seo-answer {
  border-block: 1px solid var(--seo-hairline);
  background: rgba(247, 247, 244, 0.025);
}

.seo-answer__grid {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 70px;
  padding-block: 52px;
}

.seo-answer h2 {
  margin: 0;
  font-size: 19px;
  letter-spacing: -0.02em;
}

.seo-answer p {
  max-width: 72ch;
  margin: 0;
  color: var(--seo-body);
  font-size: 18px;
  line-height: 1.75;
}

.seo-section {
  padding: 112px 0;
}

.seo-section--tinted {
  border-block: 1px solid var(--seo-hairline);
  background: rgba(13, 13, 15, 0.76);
}

.seo-content-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.65fr) minmax(0, 1.35fr);
  gap: 88px;
}

.seo-section-heading h2 {
  max-width: 480px;
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 720;
  letter-spacing: -0.035em;
  line-height: 1.08;
  text-wrap: balance;
}

.seo-feature-list {
  border-top: 1px solid var(--seo-hairline);
}

.seo-feature-list article,
.seo-feature-list > section {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 34px;
  padding: 30px 0;
  border-bottom: 1px solid var(--seo-hairline);
}

.seo-feature-list h3,
.seo-steps h3 {
  margin: 0;
  font-size: 19px;
  letter-spacing: -0.02em;
}

.seo-feature-list p,
.seo-steps p {
  margin: 0;
  color: var(--seo-body);
  font-size: 16px;
}

.seo-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.seo-steps li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-top: 1px solid var(--seo-hairline);
}

.seo-steps li:last-child {
  border-bottom: 1px solid var(--seo-hairline);
}

.seo-steps li > span {
  color: var(--seo-champagne);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.08em;
}

.seo-steps p {
  margin-top: 8px;
}

.seo-two-column {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 96px;
  align-items: start;
}

.seo-check-list,
.seo-boundaries ul {
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.seo-check-list li {
  position: relative;
  padding: 17px 0 17px 34px;
  border-top: 1px solid var(--seo-hairline);
  color: var(--seo-body);
}

.seo-check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--seo-sky);
  font-weight: 800;
}

.seo-boundaries {
  padding: 34px;
  border-radius: 16px;
  background: var(--seo-surface-raised);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.26);
}

.seo-boundaries h2 {
  margin: 0;
  font-size: 21px;
  letter-spacing: -0.02em;
}

.seo-boundaries li {
  padding: 16px 0;
  border-top: 1px solid var(--seo-hairline);
  color: var(--seo-body);
  font-size: 15px;
}

.seo-boundaries > p {
  margin: 20px 0 0;
  color: var(--seo-body);
  font-size: 15px;
}

.seo-boundaries > .seo-text-link {
  display: inline-block;
  margin-top: 24px;
}

.seo-source-note {
  padding: 58px 0;
  border-block: 1px solid var(--seo-hairline);
  background: rgba(247, 247, 244, 0.025);
}

.seo-source-note__inner {
  display: grid;
  grid-template-columns: minmax(220px, 0.55fr) minmax(0, 1.05fr) minmax(220px, 0.7fr);
  gap: 48px;
  align-items: start;
}

.seo-source-note h2 {
  margin: 0;
  font-size: 20px;
  letter-spacing: -0.02em;
}

.seo-source-note p,
.seo-source-note ul {
  margin: 0;
  color: var(--seo-body);
  font-size: 14px;
}

.seo-source-note ul {
  padding-left: 20px;
}

.seo-source-note li + li {
  margin-top: 10px;
}

.seo-source-note a {
  color: #fff;
  text-underline-offset: 4px;
}

.seo-faq {
  padding-top: 80px;
}

.seo-faq__list {
  border-top: 1px solid var(--seo-hairline);
}

.seo-faq details {
  border-bottom: 1px solid var(--seo-hairline);
}

.seo-faq summary {
  padding: 24px 44px 24px 0;
  cursor: pointer;
  color: #fff;
  font-size: 18px;
  font-weight: 650;
}

.seo-faq details p {
  max-width: 70ch;
  margin: -4px 0 26px;
  color: var(--seo-body);
}

.seo-related {
  padding: 90px 0;
  border-top: 1px solid var(--seo-hairline);
  background: #07070a;
}

.seo-related__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 42px;
  border-block: 1px solid var(--seo-hairline);
}

.seo-related__list a {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 28px;
  border-right: 1px solid var(--seo-hairline);
  color: var(--seo-muted);
  text-decoration: none;
}

.seo-related__list a:last-child {
  border-right: 0;
}

.seo-related__list a:hover {
  background: rgba(247, 247, 244, 0.025);
  color: #fff;
}

.seo-related__list strong {
  color: #fff;
  font-size: 24px;
  letter-spacing: -0.03em;
}

.seo-related__list span:first-child,
.seo-related__list span:last-child {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.seo-footer {
  padding: 76px 0 32px;
  background: #050505;
}

.seo-footer__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 0.6fr;
  gap: 70px;
}

.seo-footer p {
  max-width: 360px;
  margin: 22px 0 0;
  color: var(--seo-muted);
}

.seo-footer nav,
.seo-footer__legal {
  display: grid;
  align-content: start;
  gap: 14px;
}

.seo-footer__meta {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 56px;
  padding-top: 22px;
  border-top: 1px solid var(--seo-hairline);
  color: var(--seo-muted);
  font-size: 12px;
}

.seo-pillar-hero .seo-hero__grid {
  align-items: center;
}

.seo-tool-index {
  border-block: 1px solid var(--seo-hairline);
}

.seo-tool-index > p {
  margin: 0;
  padding: 18px 0;
  color: var(--seo-sky);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.seo-tool-index ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.seo-tool-index li {
  border-top: 1px solid var(--seo-hairline);
}

.seo-tool-index a {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 16px;
  align-items: center;
  padding: 14px 0;
  text-decoration: none;
}

.seo-tool-index a > span:first-child {
  color: var(--seo-champagne);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.08em;
}

.seo-tool-index a > span:last-child {
  display: grid;
  gap: 1px;
}

.seo-tool-index strong {
  color: #fff;
  font-size: 15px;
  letter-spacing: -0.02em;
}

.seo-tool-index small {
  color: var(--seo-muted);
  font-size: 12px;
}

.seo-tool-index a:hover strong {
  color: var(--seo-sky);
}

.seo-prose {
  max-width: 72ch;
}

.seo-prose p + p {
  margin-top: 18px;
}

.seo-pillar-heading {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: 88px;
  align-items: end;
  margin-bottom: 58px;
}

.seo-pillar-heading > p {
  max-width: 68ch;
  margin: 0;
  color: var(--seo-body);
  font-size: 17px;
  line-height: 1.75;
}

.seo-product-directory {
  border-top: 1px solid var(--seo-hairline);
}

.seo-product-row {
  display: grid;
  grid-template-columns: 50px minmax(220px, 0.7fr) minmax(0, 1.3fr);
  gap: 38px;
  padding: 48px 0;
  border-bottom: 1px solid var(--seo-hairline);
  scroll-margin-top: 24px;
}

.seo-product-row__index {
  padding-top: 7px;
  color: var(--seo-champagne);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.08em;
}

.seo-product-row__heading > p:first-child {
  margin: 0 0 10px;
  color: var(--seo-sky);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.seo-product-row__heading h3 {
  margin: 0;
  font-size: clamp(1.65rem, 3vw, 2.4rem);
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.seo-product-row__heading > p:last-child {
  margin: 18px 0 0;
  color: var(--seo-muted);
  font-size: 14px;
}

.seo-product-row__body > p {
  max-width: 68ch;
  margin: 0;
  color: var(--seo-body);
  font-size: 16px;
}

.seo-product-row__body ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 26px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.seo-product-row__body li {
  position: relative;
  padding: 11px 0 11px 22px;
  border-top: 1px solid var(--seo-hairline);
  color: var(--seo-body);
  font-size: 14px;
}

.seo-product-row__body li::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 1px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--seo-sky);
}

.seo-table-wrap {
  overflow-x: auto;
  border-block: 1px solid var(--seo-hairline);
  outline-offset: 6px;
}

.seo-table-wrap table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  text-align: left;
}

.seo-table-wrap th,
.seo-table-wrap td {
  padding: 20px 22px 20px 0;
  border-bottom: 1px solid var(--seo-hairline);
  vertical-align: top;
}

.seo-table-wrap tbody tr:last-child > * {
  border-bottom: 0;
}

.seo-table-wrap thead th {
  color: var(--seo-muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.seo-table-wrap tbody th {
  width: 25%;
  color: #fff;
  font-size: 15px;
}

.seo-table-wrap td {
  color: var(--seo-body);
  font-size: 15px;
}

.seo-aeo-answer {
  max-width: 72ch;
  margin: 0;
  color: var(--seo-body);
  font-size: 18px;
  line-height: 1.75;
}

.seo-evidence-block__items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 38px;
  border-block: 1px solid var(--seo-hairline);
}

.seo-evidence-block__items article {
  padding: 28px 30px 28px 0;
}

.seo-evidence-block__items article + article {
  padding-left: 30px;
  border-left: 1px solid var(--seo-hairline);
}

.seo-evidence-block__items h3 {
  margin: 0;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.seo-evidence-block__items p {
  margin: 12px 0 0;
  color: var(--seo-body);
  font-size: 15px;
}

.seo-section-heading__body {
  max-width: 46ch;
  margin: 26px 0 0;
  color: var(--seo-body);
  font-size: 15px;
}

.seo-choice-list {
  border-top: 1px solid var(--seo-hairline);
}

.seo-choice-list article {
  display: grid;
  grid-template-columns: 0.58fr 0.92fr 1.5fr;
  gap: 24px;
  padding: 26px 0;
  border-bottom: 1px solid var(--seo-hairline);
}

.seo-choice-list article > p:first-child {
  margin: 2px 0 0;
  color: var(--seo-champagne);
  font-size: 12px;
  font-weight: 700;
}

.seo-choice-list h3 {
  margin: 0;
  font-size: 17px;
  letter-spacing: -0.02em;
}

.seo-choice-list article > p:last-child {
  margin: 0;
  color: var(--seo-body);
  font-size: 14px;
}

.seo-boundary-list {
  margin: 0;
  border-top: 1px solid var(--seo-hairline);
}

.seo-boundary-list > div {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 30px;
  padding: 25px 0;
  border-bottom: 1px solid var(--seo-hairline);
}

.seo-boundary-list dt {
  color: #fff;
  font-weight: 700;
}

.seo-boundary-list dd {
  margin: 0;
  color: var(--seo-body);
}

.seo-pillar-cta {
  padding: 96px 0;
  border-top: 1px solid var(--seo-hairline);
  background: var(--seo-surface-raised);
}

.seo-pillar-cta__inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 88px;
  align-items: end;
}

.seo-pillar-cta__inner > div:first-child > p {
  margin: 0 0 14px;
  color: var(--seo-sky);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.seo-pillar-cta h2 {
  max-width: 560px;
  margin: 0;
  font-size: clamp(2.25rem, 5vw, 4.4rem);
  letter-spacing: -0.04em;
  line-height: 1;
  text-wrap: balance;
}

.seo-pillar-cta__inner > div:last-child > p {
  max-width: 62ch;
  margin: 0 0 30px;
  color: var(--seo-body);
  font-size: 17px;
}

@media (max-width: 900px) {
  .seo-nav {
    display: none;
  }

  .seo-hero {
    padding: 76px 0 84px;
  }

  .seo-hero__grid,
  .seo-content-grid,
  .seo-two-column,
  .seo-answer__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .seo-hero__grid {
    align-items: start;
  }

  .seo-section {
    padding: 88px 0;
  }

  .seo-feature-list article,
  .seo-feature-list > section {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .seo-related__list {
    grid-template-columns: 1fr;
  }

  .seo-related__list a {
    min-height: 164px;
    border-right: 0;
    border-bottom: 1px solid var(--seo-hairline);
  }

  .seo-related__list a:last-child {
    border-bottom: 0;
  }

  .seo-footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .seo-footer__grid > div:first-child {
    grid-column: 1 / -1;
  }

  .seo-pillar-heading,
  .seo-pillar-cta__inner,
  .seo-source-note__inner {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .seo-product-row {
    grid-template-columns: 40px minmax(180px, 0.7fr) minmax(0, 1.3fr);
    gap: 24px;
  }

  .seo-choice-list article {
    grid-template-columns: 0.5fr 1fr 1.35fr;
  }
}

@media (max-width: 600px) {
  .seo-container {
    width: min(100% - 28px, 1120px);
  }

  .seo-header__inner {
    min-height: 64px;
  }

  .seo-button--compact {
    min-height: 42px;
  }

  .seo-hero {
    padding: 56px 0 70px;
  }

  .seo-breadcrumb {
    margin-bottom: 28px;
  }

  .seo-hero h1 {
    font-size: clamp(2.55rem, 13vw, 4rem);
  }

  .seo-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .seo-actions .seo-button {
    width: 100%;
  }

  .seo-text-link {
    align-self: flex-start;
    padding: 8px 0;
  }

  .seo-fact-panel,
  .seo-boundaries {
    padding: 24px;
  }

  .seo-fact-panel dl > div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .seo-section {
    padding: 72px 0;
  }

  .seo-answer__grid {
    padding-block: 40px;
  }

  .seo-steps li {
    grid-template-columns: 38px 1fr;
    gap: 14px;
  }

  .seo-footer__grid {
    grid-template-columns: 1fr;
  }

  .seo-footer__grid > div:first-child {
    grid-column: auto;
  }

  .seo-footer__meta {
    flex-direction: column;
  }

  .seo-product-row {
    grid-template-columns: 32px 1fr;
    gap: 18px;
    padding: 38px 0;
  }

  .seo-product-row__body {
    grid-column: 2;
  }

  .seo-product-row__body ul,
  .seo-evidence-block__items {
    grid-template-columns: 1fr;
  }

  .seo-evidence-block__items article {
    padding: 24px 0;
  }

  .seo-evidence-block__items article + article {
    padding-left: 0;
    border-top: 1px solid var(--seo-hairline);
    border-left: 0;
  }

  .seo-choice-list article,
  .seo-boundary-list > div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .seo-table-wrap {
    margin-right: -14px;
  }

  .seo-pillar-cta {
    padding: 72px 0;
  }
}

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