:root {
  color-scheme: dark;
  --bg: #0a0a0a;
  --panel: rgba(25, 25, 25, 0.94);
  --line: rgba(255, 105, 0, 0.22);
  --text: rgba(255, 255, 255, 0.96);
  --soft: rgba(255, 255, 255, 0.76);
  --dim: rgba(255, 255, 255, 0.56);
  --accent: rgb(255, 105, 0);
  --green: rgb(21, 224, 56);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(255, 105, 0, 0.14), transparent 320px),
    linear-gradient(180deg, rgba(255, 105, 0, 0.07), transparent 320px),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
}

.seoShell {
  width: min(940px, 100%);
  margin: 0 auto;
  padding: 18px;
}

.seoTop,
.seoHero,
.seoFaq,
.seoLinks,
.siteFooter {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel);
  box-shadow: 0 22px 80px rgba(0, 0, 0, 0.26);
}

.seoTop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
}

.seoBrand {
  color: var(--text);
  font-size: 17px;
  font-weight: 950;
  text-decoration: none;
}

.seoBrand span {
  color: var(--accent);
}

.seoButton,
.seoCta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid rgba(255, 105, 0, 0.5);
  border-radius: 10px;
  background: var(--accent);
  color: #111;
  font-size: 13px;
  font-weight: 950;
  text-decoration: none;
  padding: 10px 14px;
}

.seoHero,
.seoFaq {
  margin-top: 12px;
  padding: clamp(18px, 4vw, 34px);
}

.seoEyebrow {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.16em;
}

h1,
h2 {
  margin: 0;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(34px, 8vw, 64px);
  line-height: 0.98;
}

h2 {
  font-size: clamp(22px, 4vw, 31px);
}

.seoLead {
  max-width: 760px;
  margin: 16px 0 0;
  color: var(--soft);
  font-size: clamp(16px, 2.5vw, 20px);
  font-weight: 750;
  line-height: 1.48;
}

ul {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

li {
  position: relative;
  padding: 12px 12px 12px 34px;
  border: 1px solid rgba(21, 224, 56, 0.18);
  border-radius: 12px;
  background: rgba(21, 224, 56, 0.055);
  color: var(--soft);
  font-size: 14px;
  line-height: 1.42;
}

li::before {
  content: "";
  position: absolute;
  left: 13px;
  top: 17px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 14px rgba(21, 224, 56, 0.48);
}

.seoCta {
  margin-top: 22px;
}

.seoFaq {
  background:
    linear-gradient(135deg, rgba(255, 105, 0, 0.1), transparent 42%),
    var(--panel);
}

.legalHero h1 {
  max-width: 820px;
}

.legalContent {
  display: grid;
  gap: 12px;
  margin-top: 12px;
}

.legalSection {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(255, 105, 0, 0.06), transparent 48%),
    rgba(25, 25, 25, 0.9);
  padding: clamp(16px, 3vw, 24px);
}

.legalSection h2 {
  color: var(--text);
  font-size: clamp(19px, 3vw, 25px);
}

.legalSection p {
  margin: 10px 0 0;
  color: var(--soft);
  font-size: 14px;
  line-height: 1.55;
}

.legalSection ul {
  margin-top: 12px;
}

.legalSection li {
  background: rgba(255, 255, 255, 0.025);
}

details {
  margin-top: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.035);
  overflow: hidden;
}

summary {
  cursor: pointer;
  color: var(--text);
  font-size: 14px;
  font-weight: 900;
  padding: 14px;
}

details p {
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  color: var(--soft);
  font-size: 14px;
  line-height: 1.5;
  padding: 14px;
}

.seoLinks {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
  padding: 14px;
}

.seoLinks a {
  border: 1px solid rgba(255, 105, 0, 0.2);
  border-radius: 999px;
  background: rgba(255, 105, 0, 0.08);
  color: var(--soft);
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
  padding: 8px 10px;
}

.siteFooter {
  display: grid;
  grid-template-columns: minmax(190px, 0.72fr) minmax(0, 1.28fr);
  gap: 18px;
  margin-top: 12px;
  padding: 16px;
  background:
    linear-gradient(135deg, rgba(255, 105, 0, 0.08), transparent 38%),
    var(--panel);
}

.footerBrand {
  display: grid;
  align-content: start;
  gap: 7px;
  min-width: 0;
}

.footerBrand strong {
  color: var(--text);
  font-size: 15px;
  font-weight: 950;
}

.footerBrand span {
  color: var(--dim);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.45;
}

.footerColumns {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  min-width: 0;
}

.footerColumn {
  display: grid;
  align-content: start;
  gap: 7px;
  min-width: 0;
}

.footerColumn span {
  color: var(--accent);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footerColumn a {
  min-width: 0;
  overflow-wrap: anywhere;
  color: var(--soft);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.25;
  text-decoration: none;
}

.footerColumn a:hover,
.footerColumn a:focus-visible {
  color: var(--green);
  outline: none;
}

@media (max-width: 560px) {
  .seoShell {
    padding: 10px;
  }

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

  .seoButton,
  .seoCta {
    width: 100%;
  }

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

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

@media (max-width: 360px) {
  .footerColumns {
    grid-template-columns: 1fr;
  }
}
