:root {
  --bg: #050505;
  --bg-soft: #090909;
  --panel: #101010;
  --panel-2: #141414;
  --panel-3: #1a1a1a;
  --text: #ffffff;
  --muted: #b7b7b7;
  --muted-2: #969696;
  --line: #242424;
  --line-strong: #3a3a3a;
  --brand: #f3e600;
  --brand-strong: #fff477;
  --brand-soft: rgba(243, 230, 0, 0.12);
  --ok: #91d585;
  --radius: 14px;
  --shadow: 0 22px 48px rgba(0, 0, 0, 0.5);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Space Grotesk", "Segoe UI", "Helvetica Neue", sans-serif;
  color: var(--text);
  background-color: var(--bg);
  background-image:
    radial-gradient(circle at 100% 0%, rgba(20, 20, 20, 1) 0%, transparent 50%),
    radial-gradient(circle at 0% 100%, rgba(20, 20, 20, 1) 0%, transparent 52%);
  line-height: 1.6;
  letter-spacing: -0.01em;
}

body::before {
  content: "";
  position: fixed;
  top: -200px;
  right: -180px;
  width: 760px;
  height: 760px;
  background: radial-gradient(circle, rgba(243, 230, 0, 0.07) 0%, transparent 72%);
  filter: blur(90px);
  pointer-events: none;
  z-index: -1;
}

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

a:focus-visible,
button:focus-visible {
  outline: 2px solid rgba(243, 230, 0, 0.64);
  outline-offset: 2px;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(10px);
  background: rgba(7, 7, 7, 0.9);
  border-bottom: 1px solid var(--line);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.brand img {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  border: 1px solid var(--line-strong);
  background: linear-gradient(140deg, rgba(243, 230, 0, 0.2), rgba(255, 255, 255, 0.02));
}

.brand small {
  display: block;
  color: var(--muted-2);
  font-weight: 500;
  font-size: 0.69rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

.nav-link,
.btn {
  border: 1px solid var(--line);
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  background: var(--panel);
  transition: border-color 0.18s ease, background-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.nav-link:hover,
.btn:hover {
  border-color: var(--line-strong);
  color: var(--brand);
  background: var(--panel-3);
}

.btn-primary {
  border-color: rgba(243, 230, 0, 0.38);
  background: var(--brand);
  color: #000;
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}

.btn-primary:hover {
  border-color: rgba(243, 230, 0, 0.55);
  color: #000;
  background: #fff;
  transform: translateY(-1px);
}

.hero {
  padding: 56px 0 30px;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 22px;
  align-items: start;
}

.kicker {
  display: inline-block;
  color: var(--brand);
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 0.7rem;
  text-transform: uppercase;
  margin-bottom: 10px;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.12;
  letter-spacing: -0.015em;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.35rem);
  margin-bottom: 12px;
}

h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 12px;
}

h3 {
  font-size: 1.06rem;
  margin-bottom: 8px;
}

.lead {
  font-size: 1.04rem;
  color: var(--muted);
  margin: 0 0 16px;
  max-width: 74ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0;
}

.hero-side {
  background: linear-gradient(180deg, #121212, #0c0c0c);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero-side::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--brand);
  opacity: 0.75;
}

.hero-side ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.search-intents {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.intent-chip {
  font-size: 0.72rem;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted-2);
  background: var(--panel);
}

.section {
  padding: 26px 0;
  border-top: 1px solid var(--line);
}

main > .section:first-of-type,
main > .hero + .section,
main > .page-hero + .section {
  border-top: 0;
}

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

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.card {
  background: linear-gradient(180deg, var(--panel), var(--bg-soft));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  position: relative;
  overflow: hidden;
}

.card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(243, 230, 0, 0.26);
}

.card p {
  margin-bottom: 0;
  color: var(--muted);
}

.card ul {
  margin: 8px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.list-links {
  margin: 0;
  padding-left: 18px;
}

.list-links li {
  margin-bottom: 7px;
}

.list-links a,
.resource-list a {
  color: var(--brand);
  text-decoration: underline;
  text-decoration-color: rgba(243, 230, 0, 0.38);
  text-underline-offset: 0.16em;
}

.cta-band {
  margin: 34px 0 44px;
  padding: 22px;
  border-radius: var(--radius);
  border: 1px solid rgba(243, 230, 0, 0.28);
  background: linear-gradient(145deg, rgba(243, 230, 0, 0.15), rgba(243, 230, 0, 0.06));
  box-shadow: var(--shadow);
}

.cta-band .lead {
  margin-bottom: 0;
}

.footer {
  border-top: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.24);
  padding: 30px 0 44px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 14px;
}

.footer h3 {
  font-size: 0.98rem;
}

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

.footer li {
  margin-bottom: 5px;
}

.footer a:hover {
  color: var(--brand);
}

.muted {
  color: var(--muted-2);
}

.crumbs {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--muted-2);
  font-size: 0.79rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.notice {
  border-left: 2px solid rgba(243, 230, 0, 0.6);
  background: rgba(243, 230, 0, 0.11);
  border-radius: 10px;
  padding: 10px 12px;
  color: #e8e5bd;
}

.faq dt {
  font-weight: 700;
  margin-top: 14px;
}

.faq dd {
  margin: 5px 0 0;
  color: var(--muted);
}

.page-hero {
  padding: 52px 0 12px;
}

.page-hero h1 {
  margin-bottom: 10px;
  max-width: 24ch;
}

.answer-band {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(243, 230, 0, 0.3);
  background: linear-gradient(140deg, rgba(243, 230, 0, 0.15), rgba(243, 230, 0, 0.05));
}

.answer-band h2 {
  font-size: 1.03rem;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand);
}

.answer-band p {
  margin: 0;
  color: #f0f0e5;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--panel), #0c0c0c);
  box-shadow: var(--shadow);
}

.compare-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
}

.compare-table th,
.compare-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  text-align: left;
}

.compare-table th {
  font-size: 0.73rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--brand);
  background: rgba(243, 230, 0, 0.08);
}

.compare-table td {
  color: var(--muted);
}

.compare-table tbody tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.01);
}

.compare-table tr:last-child td {
  border-bottom: 0;
}

.scenario-card,
.proof-module,
.trust-item,
.real-server-card,
.testimonial-card,
.case-card,
.metric-card,
.cite-card,
.evidence-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: linear-gradient(180deg, var(--panel-2), var(--bg-soft));
}

.scenario-card,
.proof-module,
.trust-item,
.real-server-card,
.testimonial-card,
.case-card,
.metric-card,
.cite-card {
  padding: 14px;
}

.scenario-card {
  position: relative;
  overflow: hidden;
}

.scenario-card::after,
.proof-module::after,
.case-card::after,
.cite-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(243, 230, 0, 0.28);
}

.scenario-card p,
.proof-module p,
.trust-item p,
.real-server-card p,
.case-card p,
.metric-note,
.cite-card p,
.testimonial-meta,
.evidence-card p {
  color: var(--muted);
}

.proof-module {
  position: relative;
  overflow: hidden;
}

.proof-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #000;
  background: var(--brand);
  border-radius: 999px;
  padding: 4px 9px;
  margin-bottom: 10px;
  font-weight: 700;
}

.proof-band {
  border: 1px solid rgba(243, 230, 0, 0.35);
  border-radius: var(--radius);
  padding: 16px;
  background: linear-gradient(145deg, rgba(243, 230, 0, 0.14), rgba(243, 230, 0, 0.05));
}

.proof-band p {
  margin: 6px 0 0;
  color: #efecc8;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}

.real-server-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.example-stack {
  display: grid;
  gap: 12px;
}

.example-block {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: linear-gradient(180deg, #131313, #090909);
  overflow: hidden;
}

.example-label {
  display: block;
  padding: 8px 12px;
  border-bottom: 1px solid var(--line);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand);
  font-weight: 700;
}

.example-block pre {
  margin: 0;
  padding: 12px;
  font-size: 0.82rem;
  line-height: 1.55;
  color: #f2f2f2;
  overflow-x: auto;
}

.example-block code {
  font-family: "JetBrains Mono", "SFMono-Regular", Menlo, Consolas, monospace;
}

.evidence-gallery {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.evidence-card {
  padding: 12px;
}

.evidence-thumb {
  border: 1px dashed rgba(243, 230, 0, 0.35);
  border-radius: 10px;
  min-height: 90px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  color: var(--muted-2);
  font-size: 0.78rem;
  text-align: center;
  background: rgba(243, 230, 0, 0.05);
}

.testimonial-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.testimonial-card blockquote {
  margin: 0 0 10px;
  color: #f0f0e0;
  font-weight: 500;
}

.case-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.metrics-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
}

.metric-value {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brand-strong);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.metric-note {
  margin: 0;
  font-size: 0.84rem;
}

.cite-card {
  position: relative;
  overflow: hidden;
}

.cite-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.cite-card li {
  margin-bottom: 6px;
}

.resource-list {
  margin: 0;
  padding-left: 18px;
}

.resource-list li {
  margin-bottom: 7px;
}

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

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

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

  .page-hero h1 {
    max-width: none;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(1120px, calc(100% - 1.2rem));
  }

  .nav-links {
    gap: 6px;
  }

  .nav-link,
  .btn {
    font-size: 0.72rem;
    padding: 7px 10px;
  }

  .section {
    padding: 22px 0;
  }
}