:root {
  color-scheme: dark;
  --seo-bg: #08111f;
  --seo-panel: #101b2c;
  --seo-panel-soft: #142238;
  --seo-text: #eef4ff;
  --seo-muted: #aebbd0;
  --seo-line: rgba(174, 187, 208, 0.24);
  --seo-accent: #5eead4;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--seo-bg);
  color: var(--seo-text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

.seo-page {
  min-height: 100vh;
}

.seo-header,
.seo-article,
.seo-footer {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.seo-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
}

.seo-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
}

.seo-brand img {
  width: 34px;
  height: 34px;
}

.seo-nav,
.seo-footer nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

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

.seo-nav a:hover,
.seo-footer a:hover,
.seo-related a:hover {
  color: var(--seo-text);
}

.seo-nav__cta,
.seo-button {
  border: 1px solid rgba(94, 234, 212, 0.55);
  border-radius: 8px;
  background: rgba(94, 234, 212, 0.12);
  color: var(--seo-text) !important;
  font-weight: 700;
}

.seo-nav__cta {
  padding: 8px 12px;
}

.seo-hero {
  padding: 72px 0 44px;
}

.seo-eyebrow {
  margin: 0 0 14px;
  color: var(--seo-accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 18px;
  font-size: clamp(2.4rem, 7vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.seo-hero p {
  max-width: 760px;
  color: var(--seo-muted);
  font-size: 1.12rem;
}

.seo-hero .seo-companion {
  font-size: 0.98rem;
  color: var(--seo-accent);
}

.seo-button {
  display: inline-flex;
  margin-top: 14px;
  padding: 12px 16px;
  text-decoration: none;
}

.seo-sections {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 28px 0 52px;
}

.seo-section,
.seo-faq__item,
.seo-related {
  border: 1px solid var(--seo-line);
  border-radius: 8px;
  background: var(--seo-panel);
}

.seo-section,
.seo-faq__item {
  padding: 22px;
}

.seo-section h2,
.seo-faq h2,
.seo-related h2 {
  font-size: 1.35rem;
  letter-spacing: 0;
}

.seo-section p,
.seo-faq__item p {
  color: var(--seo-muted);
}

.seo-faq {
  display: grid;
  gap: 14px;
  margin: 0 0 52px;
}

.seo-faq h2,
.seo-related h2 {
  margin-bottom: 4px;
}

.seo-related {
  padding: 22px;
  margin-bottom: 56px;
}

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

.seo-related a {
  display: block;
  min-height: 54px;
  padding: 14px;
  border-radius: 8px;
  background: var(--seo-panel-soft);
}

.seo-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0 40px;
  border-top: 1px solid var(--seo-line);
}

@media (max-width: 760px) {
  .seo-header,
  .seo-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .seo-hero {
    padding-top: 42px;
  }

  .seo-sections,
  .seo-related__grid {
    grid-template-columns: 1fr;
  }
}
