:root {
  --page-bg: #0d0d0b;
  --card-bg: rgba(255, 255, 255, 0.04);
  --card-border: rgba(255, 255, 255, 0.08);
  --text-main: #f5f5f4;
  --text-muted: #b5b5b0;
  --text-soft: #8a8a84;
  --brand: #ff6a00;
  --brand-soft: rgba(255, 106, 0, 0.14);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--text-main);
  background:
    radial-gradient(circle at top right, rgba(255, 106, 0, 0.16), transparent 28%),
    radial-gradient(circle at bottom left, rgba(255, 106, 0, 0.08), transparent 24%),
    var(--page-bg);
}

body.homeSharedReady {
  overflow-x: hidden;
}

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

img {
  display: block;
  max-width: 100%;
}

.seoShell {
  min-height: 100vh;
}

.homeSharedNav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, border-color 0.3s ease;
}

.homeSharedNav.is-elevated {
  background: rgba(4, 4, 4, 0.96);
  backdrop-filter: blur(18px);
  border-bottom-color: rgba(255, 255, 255, 0.06);
}

.homeSharedNav__inner,
.homeSharedFooter__inner {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.homeSharedNav__inner {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.homeSharedNav__left {
  display: flex;
  align-items: center;
  gap: 40px;
  min-width: 0;
}

.homeSharedNav__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.homeSharedNav__brand img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.homeSharedNav__brand span {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.homeSharedNav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.homeSharedNav__links a,
.homeSharedNav__login,
.homeSharedNav__mobile a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.15s ease;
}

.homeSharedNav__links a:hover,
.homeSharedNav__login:hover,
.homeSharedNav__mobile a:hover {
  color: #fff;
}

.homeSharedNav__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.homeSharedNav__login {
  padding: 8px 12px;
  font-size: 1rem;
  font-weight: 500;
}

.homeSharedNav__cta,
.homeSharedNav__mobileCta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--brand);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  box-shadow: 0 0 20px rgba(255, 106, 0, 0.35);
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.homeSharedNav__cta {
  min-height: 42px;
  padding: 0 20px;
}

.homeSharedNav__cta:hover,
.homeSharedNav__mobileCta:hover {
  transform: translateY(-1px);
  background: #ff8020;
  box-shadow: 0 0 32px rgba(255, 106, 0, 0.55);
}

.homeSharedNav__toggle {
  display: none;
  padding: 4px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
}

.homeSharedNav__toggle:hover {
  color: #fff;
}

.homeSharedNav__icon--close {
  display: none;
}

.homeSharedNav__toggle[aria-expanded="true"] .homeSharedNav__icon--menu {
  display: none;
}

.homeSharedNav__toggle[aria-expanded="true"] .homeSharedNav__icon--close {
  display: block;
}

.homeSharedNav__mobile {
  display: none;
}

.homeSharedFooter {
  margin-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: transparent;
}

.homeSharedFooter__inner {
  padding: 48px 0 24px;
}

.homeSharedFooter__grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) repeat(3, minmax(0, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.homeSharedFooter__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.homeSharedFooter__brand img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.homeSharedFooter__brand span {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.homeSharedFooter__lead {
  max-width: 320px;
  margin: 0 0 20px;
  color: #555;
  font-size: 0.875rem;
  line-height: 1.7;
}

.homeSharedFooter__socials {
  display: flex;
  gap: 8px;
}

.homeSharedFooter__socials a {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  color: #555;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.homeSharedFooter__socials a:hover {
  background: rgba(255, 106, 0, 0.12);
  border-color: rgba(255, 106, 0, 0.3);
  color: var(--brand);
}

.homeSharedFooter__col h4 {
  margin: 0 0 16px;
  color: #444;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.homeSharedFooter__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.homeSharedFooter__col a {
  color: #555;
  font-size: 0.875rem;
  transition: color 0.15s ease;
}

.homeSharedFooter__col a:hover {
  color: #ccc;
}

.homeSharedFooter__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.homeSharedFooter__bottom p {
  margin: 0;
  color: #333;
  font-size: 0.75rem;
}

.homeSharedFooter__status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #444;
  font-size: 0.75rem;
}

.homeSharedFooter__status span:first-child {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--brand);
  animation: pulseGlow 2.5s ease-in-out infinite;
}

.seoTopbar {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
  background: rgba(8, 8, 8, 0.86);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.seoTopbar__inner,
.seoPage__section,
.seoFooter__inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.seoTopbar__inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.seoBrand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.seoBrand img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.seoNav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  color: var(--text-soft);
  font-size: 0.96rem;
}

.seoNav a:hover,
.seoFooter__links a:hover {
  color: #fff;
}

.seoTopbar__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.seoPage__hero {
  padding: 88px 0 44px;
}

.seoPage__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  color: #ff9a57;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.seoPage__eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--brand);
  box-shadow: 0 0 18px rgba(255, 106, 0, 0.7);
}

.seoPage__heroGrid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.9fr);
  gap: 28px;
  align-items: start;
}

.seoPage h1,
.seoPage h2,
.seoPage h3 {
  font-family: "Clash Display", "Inter", system-ui, sans-serif;
  letter-spacing: -0.03em;
}

.seoPage h1 {
  margin: 0 0 20px;
  font-size: clamp(2.6rem, 7vw, 5rem);
  line-height: 0.95;
}

.seoPage__lead {
  max-width: 720px;
  margin: 0 0 30px;
  color: var(--text-muted);
  font-size: 1.08rem;
  line-height: 1.8;
}

.seoHeroCard,
.seoCard,
.seoFaqItem,
.seoInfoCard {
  border: 1px solid var(--card-border);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(10, 10, 10, 0.78);
  box-shadow: var(--shadow);
}

.seoHeroCard {
  padding: 26px;
}

.seoHeroCard h2 {
  margin: 0 0 14px;
  font-size: 1.4rem;
}

.seoHeroCard p,
.seoHeroCard li,
.seoCard p,
.seoCard li,
.seoFaqItem p,
.seoInfoCard p,
.seoInfoCard li {
  color: var(--text-muted);
  line-height: 1.7;
}

.seoHeroList,
.seoList {
  margin: 18px 0 0;
  padding-left: 18px;
}

.seoActions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.seoBtn,
.seoBtnGhost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.16s ease, background 0.16s ease, border-color 0.16s ease, color 0.16s ease;
}

.seoBtn {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 0 24px rgba(255, 106, 0, 0.28);
}

.seoBtnGhost {
  border: 1px solid rgba(255, 106, 0, 0.28);
  background: var(--brand-soft);
  color: #ffb17b;
}

.seoBtn:hover,
.seoBtnGhost:hover {
  transform: translateY(-1px);
}

.seoPage__section {
  padding: 26px 0;
}

.seoSectionHeading {
  max-width: 780px;
  margin-bottom: 24px;
}

.seoSectionHeading h2 {
  margin: 0 0 10px;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1;
}

.seoSectionHeading p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.75;
}

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

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

.seoCard,
.seoInfoCard {
  padding: 24px;
}

.seoCard h3,
.seoInfoCard h3,
.seoFaqItem h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
}

.seoCard small,
.seoStat {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  margin-bottom: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--brand-soft);
  color: #ffb17b;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.seoFaq {
  display: grid;
  gap: 14px;
}

.seoFaqItem {
  padding: 22px 24px;
}

.seoFaqItem p {
  margin: 0;
}

.seoHighlight {
  border-left: 3px solid var(--brand);
  padding-left: 16px;
}

.seoSplit {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  gap: 20px;
}

.seoInfoCard ul {
  margin: 0;
  padding-left: 18px;
}

.seoFooter {
  margin-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 24px 0 44px;
}

.seoFooter__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.seoFooter__links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

@media (max-width: 980px) {
  .homeSharedNav__links,
  .homeSharedNav__actions {
    display: none;
  }

  .homeSharedNav__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .homeSharedNav__mobile {
    display: grid;
    gap: 12px;
    padding: 16px 24px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(4, 4, 4, 0.98);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.45);
  }

  .homeSharedNav__mobileCta {
    min-height: 44px;
    margin-top: 4px;
  }

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

  .homeSharedFooter__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .seoPage__heroGrid,
  .seoSplit,
  .seoGrid,
  .seoGrid--two {
    grid-template-columns: 1fr;
  }

  .seoTopbar__inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 0;
  }

  .seoTopbar__actions {
    width: 100%;
    flex-wrap: wrap;
  }
}

@media (max-width: 640px) {
  .homeSharedNav__inner,
  .homeSharedFooter__inner {
    width: min(1120px, calc(100% - 32px));
  }

  .seoPage__hero {
    padding-top: 64px;
  }

  .seoPage h1 {
    font-size: 2.4rem;
    line-height: 1;
  }

  .seoHeroCard,
  .seoCard,
  .seoFaqItem,
  .seoInfoCard {
    border-radius: 22px;
  }
}
