:root {
  --seo-bg: #081019;
  --seo-panel: #101c28;
  --seo-ink: #f6fbff;
  --seo-muted: #aab8c7;
  --seo-line: rgba(255, 255, 255, 0.14);
  --seo-cyan: #47d6ff;
  --seo-amber: #ffb24a;
  --seo-green: #8de28d;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--seo-bg);
  color: var(--seo-ink);
  font-family: "Outfit", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

a {
  color: inherit;
}

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

.seo-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(8, 16, 25, 0.94);
  border-bottom: 1px solid var(--seo-line);
  backdrop-filter: blur(14px);
}

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

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

.seo-logo img {
  width: 38px;
  height: 38px;
}

.seo-logo strong {
  color: var(--seo-amber);
}

.seo-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  flex-wrap: wrap;
}

.seo-nav a {
  padding: 9px 10px;
  border-radius: 8px;
  color: var(--seo-muted);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.seo-nav a:hover,
.seo-nav a[aria-current="page"] {
  color: var(--seo-ink);
  background: rgba(71, 214, 255, 0.12);
}

.seo-hero {
  border-bottom: 1px solid var(--seo-line);
  background: linear-gradient(180deg, rgba(71, 214, 255, 0.10), rgba(255, 178, 74, 0.05) 55%, rgba(8, 16, 25, 0));
}

.seo-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  align-items: center;
  gap: 44px;
  min-height: 520px;
  padding: 72px 0;
}

.seo-eyebrow {
  margin: 0 0 14px;
  color: var(--seo-amber);
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.seo-hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2.35rem, 7vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.seo-intro {
  max-width: 720px;
  margin: 24px 0 0;
  color: #d8e7f4;
  font-size: 1.18rem;
  line-height: 1.65;
}

.seo-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.seo-primary,
.seo-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
}

.seo-primary {
  background: var(--seo-amber);
  color: #101018;
}

.seo-secondary {
  border: 1px solid var(--seo-line);
  color: var(--seo-ink);
  background: rgba(255, 255, 255, 0.04);
}

.seo-hero-panel {
  border: 1px solid var(--seo-line);
  border-radius: 8px;
  background: rgba(16, 28, 40, 0.86);
  padding: 26px;
}

.seo-hero-panel img {
  display: block;
  width: min(210px, 70%);
  margin: 0 auto 22px;
}

.seo-hero-panel ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.seo-hero-panel li {
  padding: 12px 14px;
  border: 1px solid var(--seo-line);
  border-radius: 8px;
  color: #e8f5ff;
  background: rgba(255, 255, 255, 0.04);
  font-weight: 700;
}

.seo-sections {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 54px 0;
}

.seo-section-card {
  min-height: 210px;
  border: 1px solid var(--seo-line);
  border-radius: 8px;
  background: var(--seo-panel);
  padding: 24px;
}

.seo-section-card h2 {
  margin: 0 0 12px;
  font-size: 1.28rem;
  letter-spacing: 0;
}

.seo-section-card p {
  margin: 0;
  color: var(--seo-muted);
  line-height: 1.62;
}

.seo-proof-band {
  border-top: 1px solid var(--seo-line);
  border-bottom: 1px solid var(--seo-line);
  background: #0d1721;
}

.seo-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 24px 0;
}

.seo-proof-grid p {
  margin: 0;
  color: var(--seo-muted);
}

.seo-proof-grid strong {
  color: var(--seo-green);
}

.seo-footer {
  padding: 34px 0;
  color: var(--seo-muted);
}

.seo-footer p {
  margin: 0 0 10px;
}

.seo-footer a {
  margin-right: 14px;
  color: var(--seo-cyan);
  font-weight: 700;
  text-decoration: none;
}

@media (max-width: 860px) {
  .seo-nav-row {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 0;
  }

  .seo-nav {
    justify-content: flex-start;
  }

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

  .seo-hero-grid {
    min-height: auto;
    padding: 44px 0;
  }
}

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

  .seo-logo {
    white-space: normal;
  }

  .seo-nav a {
    padding: 8px 9px;
    font-size: 0.86rem;
  }

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

  .seo-primary,
  .seo-secondary {
    width: 100%;
  }
}
