:root {
  color-scheme: dark;
  --bg: #08080a;
  --panel: #121214;
  --panel-2: #18181b;
  --line: #2a2a2f;
  --text: #e8e8eb;
  --muted: #a1a1aa;
  --amber: #f59e0b;
  --amber-soft: #fcd34d;
  --green: #4ade80;
  --blue: #60a5fa;
  --red: #fb7185;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--amber-soft); text-underline-offset: 3px; }
a:hover { color: #fff; }
img { display: block; max-width: 100%; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8, 8, 10, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.nav {
  max-width: 1180px;
  min-height: 72px;
  margin: 0 auto;
  padding: 10px 22px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand {
  color: #fff;
  font-weight: 800;
  font-family: Inter, sans-serif;
  font-size: 1.18rem;
  text-decoration: none;
  white-space: nowrap;
}
.brand span { color: var(--amber); }
.nav-links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 18px;
}
.nav-links a {
  color: #d4d4d8;
  font-size: .92rem;
  text-decoration: none;
}
.nav-links a:hover { color: #fff; }
.lang-switch { position: relative; }
.lang-switch summary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid #3a3a40;
  border-radius: 7px;
  color: #d4d4d8;
  font-size: .86rem;
  font-weight: 700;
  letter-spacing: .02em;
  cursor: pointer;
  list-style: none;
}
.lang-switch summary::-webkit-details-marker { display: none; }
.lang-switch summary svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  transition: transform .15s ease;
}
.lang-switch[open] summary svg { transform: rotate(180deg); }
.lang-switch summary:hover { border-color: var(--amber); color: var(--amber); }
.lang-switch ul {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 30;
  width: 160px;
  margin: 0;
  padding: 8px;
  list-style: none;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #101012;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .5);
}
.lang-switch li a {
  display: block;
  padding: 8px 12px;
  border-radius: 6px;
  color: #e6e6e9;
  font-size: .88rem;
  font-weight: 600;
  text-decoration: none;
}
.lang-switch li a:hover { background: rgba(245, 158, 11, .12); color: #fff; }
.lang-switch li a[aria-current="true"] { color: var(--amber); }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border: 1px solid var(--amber);
  border-radius: 8px;
  background: var(--amber);
  color: #09090b;
  font-weight: 750;
  text-decoration: none;
}
.button:hover { background: var(--amber-soft); color: #09090b; }
.button.secondary {
  background: transparent;
  color: #fff;
  border-color: #45454c;
}
.button.secondary:hover { border-color: var(--amber); color: var(--amber-soft); }

.hero {
  max-width: 1180px;
  margin: 0 auto;
  padding: 86px 22px 54px;
}
.hero-grid {
  display: block;
}
.eyebrow {
  color: var(--amber);
  font-weight: 750;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}
h1, h2, h3 {
  color: #fff;
  font-family: Inter, system-ui, sans-serif;
  line-height: 1.18;
  letter-spacing: 0;
}
h1 {
  max-width: 980px;
  margin: 12px 0 18px;
  font-size: clamp(2.75rem, 6vw, 5.25rem);
  line-height: 1.02;
}
h2 {
  margin: 46px 0 14px;
  font-size: clamp(1.55rem, 3vw, 2.1rem);
}
h3 { margin: 24px 0 8px; font-size: 1.12rem; }
.lead {
  max-width: 780px;
  margin: 0;
  color: #c4c4cc;
  font-size: 1.17rem;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.hero-media {
  margin: 46px 0 0;
  overflow: hidden;
  border: 1px solid #35353b;
  border-radius: 8px;
  background: #000;
  box-shadow: 0 28px 70px rgba(0, 0, 0, .42);
}
.hero-media img { width: 100%; aspect-ratio: 16 / 7; object-fit: cover; }
.caption {
  margin: 0;
  padding: 10px 12px;
  color: var(--muted);
  font-size: .8rem;
}

.content {
  max-width: 940px;
  margin: 0 auto;
  padding: 8px 22px 72px;
}
.content.wide { max-width: 1120px; }
.content p, .content li { color: #d1d1d6; }
.content ul, .content ol { padding-left: 24px; }
.content li + li { margin-top: 7px; }
.answer {
  margin: 26px 0;
  padding: 18px 20px;
  border-left: 3px solid var(--amber);
  background: var(--panel);
}
.note {
  margin: 24px 0;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}
.note.warning { border-color: #7f1d1d; }
.note strong { color: #fff; }
.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 22px 0;
}
.card {
  min-width: 0;
  padding: 23px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #101012;
}
.card h2, .card h3 { margin-top: 0; }
.card p:last-child { margin-bottom: 0; }
.kicker { color: var(--blue); font-size: .82rem; font-weight: 700; }
.good { color: var(--green); }
.bad { color: var(--red); }
.muted { color: var(--muted); }

.pricing-widget {
  max-width: 460px;
  margin: 26px auto 0;
  text-align: center;
}
.billing-toggle {
  display: inline-flex;
  gap: 2px;
  margin-bottom: 22px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--line);
}
.toggle-btn {
  padding: 9px 20px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-weight: 650;
  cursor: pointer;
}
.toggle-btn.is-active {
  background: var(--amber);
  color: #09090b;
}
.save-badge {
  margin-left: 6px;
  color: var(--green);
  font-size: .78rem;
}
.price-card {
  padding: 30px;
  border: 2px solid var(--amber);
  border-radius: 14px;
  background: var(--panel-2);
  box-shadow: 0 0 40px rgba(245, 158, 11, .15);
  text-align: left;
}
.price-row {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  margin: 4px 0 4px;
}
.price-amount {
  color: #fff;
  font-size: 2.6rem;
  font-weight: 800;
}
.price-period {
  padding-bottom: 6px;
  color: var(--muted);
}
.price-note {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: .92rem;
}
.price-features {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
  color: var(--text);
  font-size: .92rem;
}
.price-features li {
  padding-left: 26px;
  position: relative;
  margin-top: 10px;
}
.price-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--amber);
  font-weight: 800;
}
.pricing-cta {
  width: 100%;
  border: 0;
  cursor: pointer;
  font-size: 1rem;
}
.trust-line {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: .8rem;
  text-align: center;
}
.pricing-trial-link {
  display: block;
  margin-top: 20px;
  color: var(--text);
  font-weight: 650;
  text-align: center;
  text-decoration-color: var(--amber);
  text-underline-offset: 4px;
}

table {
  width: 100%;
  margin: 24px 0;
  border-collapse: collapse;
  background: var(--panel);
}
th, td {
  padding: 12px 13px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
th { color: var(--amber-soft); background: #0d0d0f; }

.breadcrumbs {
  max-width: 1180px;
  margin: 0 auto;
  padding: 22px 22px 0;
  color: var(--muted);
  font-size: .86rem;
}
.breadcrumbs a { color: #d4d4d8; }
.source-list {
  padding: 16px 18px 16px 38px;
  border: 1px solid var(--line);
  background: #0d0d0f;
}
.cta-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--panel);
}
.cta-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 38px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.cta-inner h2 { margin: 0 0 6px; }
.cta-inner p { margin: 0; color: var(--muted); }
.site-footer {
  max-width: 1180px;
  margin: 0 auto;
  padding: 32px 22px 54px;
  display: flex;
  justify-content: space-between;
  gap: 28px;
  color: var(--muted);
  font-size: .88rem;
}
.footer-links { display: flex; flex-wrap: wrap; gap: 16px; }
.footer-links a { color: #c4c4cc; }

.cookie-banner {
  position: fixed;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 100;
  max-width: 680px;
  margin: 0 auto;
  padding: 12px 14px;
  border: 1px solid #3f3f46;
  border-radius: 8px;
  background: #111114;
  box-shadow: 0 12px 40px rgba(0, 0, 0, .55);
  display: flex;
  align-items: center;
  gap: 14px;
}
.cookie-banner p {
  flex: 1;
  margin: 0;
  color: #d4d4d8;
  font-size: .84rem;
}
.cookie-actions { display: flex; gap: 8px; }
.cookie-actions button {
  min-height: 36px;
  padding: 7px 12px;
  border: 1px solid #44444c;
  border-radius: 6px;
  background: transparent;
  color: #fff;
  cursor: pointer;
}
.cookie-actions .accept {
  border-color: var(--amber);
  background: var(--amber);
  color: #000;
}

@media (max-width: 820px) {
  .nav { gap: 12px; }
  .nav-links a:not(.button) { display: none; }
  .hero { padding-top: 52px; }
  .grid { grid-template-columns: 1fr; }
  .cta-inner, .site-footer { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 520px) {
  h1 { font-size: 2.65rem; }
  .hero, .content { padding-left: 17px; padding-right: 17px; }
  .hero-media { margin-right: -17px; margin-left: -17px; border-right: 0; border-left: 0; border-radius: 0; }
  .hero-media img { aspect-ratio: 16 / 10; }
  .actions .button { width: 100%; }
  table { display: block; overflow-x: auto; }
  .cookie-banner { align-items: stretch; flex-direction: column; }
  .cookie-actions { justify-content: flex-end; }
}

:focus-visible {
  outline: 3px solid rgba(245, 158, 11, .5);
  outline-offset: 3px;
}
