:root {
  --bg: #062217;
  --bg-deep: #03120c;
  --bg-soft: #0d3a2a;
  --surface: rgba(7, 31, 22, 0.82);
  --surface-strong: rgba(8, 25, 19, 0.94);
  --surface-card: rgba(246, 238, 220, 0.96);
  --line: rgba(227, 194, 110, 0.18);
  --line-strong: rgba(227, 194, 110, 0.38);
  --text: #f7efd9;
  --muted: #d8cdb6;
  --accent: #e3c26e;
  --accent-strong: #ffe7ab;
  --accent-soft: rgba(227, 194, 110, 0.14);
  --ruby: #8f1f2d;
  --ruby-soft: rgba(143, 31, 45, 0.26);
  --ink: #183024;
  --shadow: 0 28px 80px rgba(1, 7, 4, 0.42);
  --shadow-soft: 0 16px 34px rgba(0, 0, 0, 0.2);
  --radius-lg: 30px;
  --radius-md: 20px;
  --radius-sm: 12px;
}

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

html {
  scroll-behavior: smooth;
  background: var(--bg-deep);
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 10%, rgba(227, 194, 110, 0.16), transparent 24%),
    radial-gradient(circle at 88% 14%, rgba(143, 31, 45, 0.2), transparent 22%),
    radial-gradient(circle at 50% 120%, rgba(17, 83, 58, 0.78), transparent 40%),
    linear-gradient(180deg, #072519 0%, #093022 26%, #052015 100%);
  font-family: "Trebuchet MS", "Gill Sans MT", "Verdana", sans-serif;
  line-height: 1.7;
  position: relative;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

body::before {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0, transparent 2%, transparent 50%, rgba(255, 255, 255, 0.03) 52%, transparent 54%, transparent 100%),
    linear-gradient(45deg, rgba(255, 255, 255, 0.025) 0, transparent 2%, transparent 50%, rgba(255, 255, 255, 0.025) 52%, transparent 54%, transparent 100%);
  background-size: 120px 120px;
  opacity: 0.26;
  z-index: -3;
}

body::after {
  inset: 16px;
  border: 1px solid rgba(227, 194, 110, 0.1);
  border-radius: 30px;
  z-index: -2;
}

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

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

.page-shell {
  min-height: 100vh;
  position: relative;
}

.page-shell::before,
.page-shell::after {
  content: "";
  position: fixed;
  inset: auto;
  pointer-events: none;
  z-index: -1;
  filter: blur(24px);
}

.page-shell::before {
  width: 320px;
  height: 320px;
  top: 14%;
  right: -76px;
  background: rgba(227, 194, 110, 0.14);
  border-radius: 50%;
}

.page-shell::after {
  width: 260px;
  height: 260px;
  bottom: 12%;
  left: -40px;
  background: rgba(143, 31, 45, 0.2);
  border-radius: 50%;
}

.container {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(16px);
  background:
    linear-gradient(180deg, rgba(4, 20, 14, 0.94), rgba(4, 20, 14, 0.76)),
    rgba(4, 20, 14, 0.8);
  border-bottom: 1px solid var(--line-strong);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}

.header-inner,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.24), transparent 32%),
    linear-gradient(135deg, var(--accent), #c6922d);
  color: #10160f;
  border: 3px solid rgba(255, 240, 196, 0.28);
  box-shadow:
    0 0 0 4px rgba(227, 194, 110, 0.14),
    0 12px 28px rgba(0, 0, 0, 0.28);
}

.brand-text {
  color: var(--accent-strong);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.top-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.top-nav a {
  color: var(--muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(227, 194, 110, 0.16);
  background: rgba(255, 255, 255, 0.02);
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.top-nav a:hover,
.top-nav a:focus-visible {
  color: var(--text);
  background: rgba(227, 194, 110, 0.1);
  border-color: rgba(227, 194, 110, 0.34);
  transform: translateY(-1px);
}

.hero {
  padding: 82px 0 48px;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.95fr);
  gap: 28px;
  align-items: start;
}

.hero-copy,
.hero-panel,
.info-card,
.howto-box,
.review-card,
.article-card,
.faq-card,
.schema-card,
.tech-card {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-copy,
.hero-panel,
.howto-box,
.article-card {
  border-radius: var(--radius-lg);
}

.hero-copy {
  padding: 36px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(9, 36, 25, 0.98), rgba(7, 28, 20, 0.92)),
    var(--surface);
}

.hero-panel {
  padding: 28px;
  display: grid;
  gap: 16px;
  background:
    linear-gradient(180deg, rgba(80, 18, 28, 0.92), rgba(41, 10, 16, 0.9)),
    var(--surface);
  position: relative;
  overflow: hidden;
}

.hero-copy::before,
.hero-panel::before,
.article-card::before,
.howto-box::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: calc(var(--radius-lg) - 8px);
  border: 1px solid rgba(227, 194, 110, 0.12);
  pointer-events: none;
}

.hero-copy::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.06), transparent 26%),
    radial-gradient(circle at right top, rgba(227, 194, 110, 0.08), transparent 26%);
  pointer-events: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  padding: 7px 12px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.7rem;
  font-weight: 800;
  border-radius: 999px;
  border: 1px solid rgba(227, 194, 110, 0.18);
  background: rgba(255, 255, 255, 0.025);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.breadcrumb {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.18;
  font-family: "Bookman Old Style", "Palatino Linotype", "Georgia", serif;
}

h1 {
  font-size: clamp(2.6rem, 5.3vw, 4.8rem);
  letter-spacing: -0.03em;
  max-width: 12ch;
  color: var(--accent-strong);
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.7rem);
  margin-bottom: 16px;
  color: var(--accent-strong);
}

h3 {
  font-size: clamp(1.12rem, 2vw, 1.42rem);
  margin-bottom: 12px;
  color: #f5e5ba;
}

p {
  margin: 0 0 16px;
  color: var(--muted);
}

.lead {
  margin-top: 22px;
  max-width: 64ch;
  font-size: 1.08rem;
  color: #eadfcb;
}

b {
  color: var(--accent-strong);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 22px;
}

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

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  color: #10160f;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.2), transparent 26%),
    linear-gradient(135deg, var(--accent-strong), #c99631);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
}

.button-secondary {
  border: 1px solid rgba(255, 214, 164, 0.18);
  color: var(--text);
  background:
    linear-gradient(135deg, rgba(143, 31, 45, 0.42), rgba(94, 19, 30, 0.26)),
    rgba(255, 255, 255, 0.02);
}

.signal-list,
.howto-list {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.signal-list li::marker,
.howto-list li::marker,
.schema-list li::marker,
.article-points li::marker {
  color: var(--accent);
}

.signal-list li + li,
.howto-list li + li {
  margin-top: 6px;
}

.stat-card {
  padding: 16px 18px;
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.07), transparent 30%),
    linear-gradient(180deg, rgba(255, 241, 216, 0.1), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 229, 167, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.stat-card::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: calc(var(--radius-md) - 6px);
  border: 1px dashed rgba(255, 234, 184, 0.18);
  pointer-events: none;
}

.stat-value {
  display: block;
  color: var(--accent-strong);
  font-size: 1.92rem;
  font-weight: 900;
  line-height: 1;
}

.stat-label,
.hero-note {
  color: var(--muted);
}

.hero-note {
  margin: 0;
}

.section {
  padding: 52px 0;
  position: relative;
}

.section-alt {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015), transparent 18%, transparent 82%, rgba(255, 255, 255, 0.015));
}

.section-heading {
  max-width: 72ch;
  margin-bottom: 24px;
  padding-left: 18px;
  position: relative;
}

.section-heading::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  bottom: 2px;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent-strong), rgba(227, 194, 110, 0.2));
}

.card-grid,
.review-grid,
.faq-list,
.schema-grid,
.tech-grid {
  display: grid;
  gap: 18px;
}

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

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

.schema-grid,
.tech-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 20px;
}

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

.info-card,
.review-card,
.faq-card,
.schema-card,
.tech-card {
  padding: 24px;
  border-radius: var(--radius-md);
}

.info-card {
  background:
    linear-gradient(180deg, rgba(255, 247, 229, 0.97), rgba(240, 229, 202, 0.94)),
    var(--surface-card);
  border-color: rgba(135, 108, 51, 0.16);
  box-shadow: var(--shadow-soft);
}

.faq-card {
  background:
    linear-gradient(180deg, rgba(246, 240, 226, 0.98), rgba(237, 225, 196, 0.95)),
    var(--surface-card);
  border-color: rgba(135, 108, 51, 0.16);
  box-shadow: var(--shadow-soft);
}

.info-card h3,
.info-card p,
.faq-card h3,
.faq-card p {
  color: var(--ink);
}

.review-card,
.schema-card,
.tech-card {
  background:
    linear-gradient(180deg, rgba(9, 34, 25, 0.96), rgba(6, 24, 18, 0.92)),
    var(--surface);
  border-color: var(--line-strong);
}

.howto-box {
  margin-top: 20px;
  padding: 26px 28px;
  display: grid;
  gap: 16px;
  background:
    linear-gradient(135deg, rgba(227, 194, 110, 0.16), transparent 46%),
    linear-gradient(180deg, rgba(9, 36, 25, 0.98), rgba(7, 29, 21, 0.94)),
    var(--surface-strong);
  position: relative;
  overflow: hidden;
}

.score {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 68px;
  padding: 8px 14px;
  margin-bottom: 16px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.18), transparent 28%),
    linear-gradient(135deg, rgba(227, 194, 110, 0.24), rgba(227, 194, 110, 0.08));
  color: var(--accent-strong);
  font-weight: 900;
  border: 1px solid rgba(255, 225, 160, 0.18);
}

.schema-card,
.tech-card {
  background:
    linear-gradient(180deg, rgba(12, 40, 28, 0.98), rgba(7, 25, 18, 0.94)),
    var(--surface-strong);
  box-shadow: var(--shadow-soft);
}

.comparison-wrap {
  margin-top: 22px;
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-strong);
  background:
    linear-gradient(180deg, rgba(9, 34, 25, 0.98), rgba(7, 26, 19, 0.94)),
    var(--surface-strong);
  box-shadow: var(--shadow);
}

.comparison-table {
  width: 100%;
  min-width: 820px;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 18px 20px;
  vertical-align: top;
  border-bottom: 1px solid rgba(227, 194, 110, 0.16);
}

.comparison-table th {
  color: var(--accent-strong);
  background: rgba(227, 194, 110, 0.08);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
}

.comparison-table td {
  color: #dfd4c0;
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.table-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.14), transparent 28%),
    linear-gradient(135deg, rgba(227, 194, 110, 0.18), rgba(227, 194, 110, 0.06));
  color: var(--accent-strong);
  font-weight: 800;
  border: 1px solid rgba(255, 225, 160, 0.14);
}

.summary-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.summary-pills li {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--accent-strong);
  background: rgba(227, 194, 110, 0.08);
  border: 1px solid rgba(227, 194, 110, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.schema-list,
.article-points {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.schema-list li + li,
.article-points li + li {
  margin-top: 8px;
}

.article-card {
  padding: 32px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(9, 34, 25, 0.98), rgba(7, 26, 19, 0.94)),
    var(--surface-strong);
  border-color: var(--line-strong);
}

.article-card::after {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  top: 0;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--ruby), var(--accent), var(--ruby));
}

.article-card + .article-card {
  margin-top: 24px;
}

.article-card h2 {
  margin-bottom: 18px;
}

.article-card h3 {
  margin-top: 22px;
  padding-left: 14px;
  border-left: 3px solid rgba(227, 194, 110, 0.58);
}

.article-card p {
  color: #dfd4c0;
}

.article-points {
  margin-bottom: 18px;
  display: grid;
  gap: 10px;
  padding-left: 0;
  list-style-position: inside;
}

.article-points li {
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  background: rgba(255, 246, 223, 0.06);
  border: 1px solid rgba(227, 194, 110, 0.12);
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.site-footer {
  padding: 18px 0 30px;
  border-top: 1px solid rgba(227, 194, 110, 0.16);
  background: linear-gradient(180deg, rgba(4, 18, 13, 0.2), rgba(4, 18, 13, 0.62));
}

.site-footer p {
  margin: 0;
  font-size: 0.94rem;
}

.site-footer a {
  color: var(--accent-strong);
}

@media (max-width: 980px) {
  .hero-grid,
  .card-grid,
  .review-grid,
  .faq-list,
  .schema-grid,
  .tech-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 56px;
  }

  body::after {
    inset: 10px;
  }
}

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

  .hero-copy,
  .hero-panel,
  .howto-box,
  .article-card {
    padding: 24px;
  }

  .top-nav {
    width: 100%;
  }

  .top-nav a {
    flex: 1 1 calc(50% - 10px);
    text-align: center;
  }

  h1 {
    max-width: none;
  }

  .button {
    width: 100%;
  }
}
