:root {
  color-scheme: dark;
  --bg: #08111d;
  --panel: #0f1726;
  --panel-strong: #111b2d;
  --text: #f7fafc;
  --muted: #cbd5e1;
  --subtle: #94a3b8;
  --accent: #f59e0b;
  --border: rgba(148, 163, 184, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(245, 158, 11, 0.12), transparent 24%),
    radial-gradient(circle at 84% 18%, rgba(245, 158, 11, 0.05), transparent 16%),
    linear-gradient(180deg, rgba(8, 17, 29, 0.98), rgba(8, 17, 29, 1)),
    var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-feature-settings: "cv02", "cv03", "cv04", "cv11";
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  color: #fbbf24;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(9, 15, 26, 0.92);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(14px);
}

.site-shell {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.site-header .site-shell {
  min-height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text);
  font-weight: 800;
  letter-spacing: 0.2em;
}

.brand-mark {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.8rem;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.9), rgba(251, 191, 36, 0.78));
  color: #0b1220;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(245, 158, 11, 0.18);
}

.back-link {
  font-weight: 600;
  color: var(--muted);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.locale-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(16, 24, 38, 0.78);
}

.locale-switch a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.25rem;
  padding: 0.38rem 0.65rem;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.locale-switch a:hover {
  color: var(--text);
}

.locale-switch a.is-active {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.96), rgba(251, 191, 36, 0.88));
  color: #111827;
}

main.site-shell {
  padding-top: 3rem;
  padding-bottom: 4rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.8rem;
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 999px;
  color: #fbbf24;
  background: rgba(15, 23, 36, 0.8);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.badge::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 0 0.8rem rgba(245, 158, 11, 0.45);
}

.hero {
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}

.hero h1 {
  margin: 1rem 0 0.85rem;
  font-size: clamp(2.2rem, 6vw, 3.75rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.hero p {
  max-width: 48rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.panel {
  background: linear-gradient(180deg, rgba(16, 24, 38, 0.95), rgba(10, 15, 26, 0.98));
  border: 1px solid var(--border);
  border-radius: 1.1rem;
  padding: 1.5rem;
  box-shadow: 0 18px 50px rgba(2, 6, 23, 0.34);
}

.panel + .panel {
  margin-top: 1rem;
}

h2 {
  margin-top: 2.3rem;
  margin-bottom: 0.8rem;
  font-size: 1.35rem;
  line-height: 1.25;
}

h3 {
  margin-top: 1.35rem;
  margin-bottom: 0.65rem;
  font-size: 1.05rem;
  line-height: 1.35;
}

p,
li {
  color: var(--muted);
}

ul {
  padding-left: 1.2rem;
}

li + li,
p + p {
  margin-top: 0.7rem;
}

.small {
  color: var(--subtle);
  font-size: 0.95rem;
}

.info-grid {
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0 0;
}

.hero-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.hero-grid .panel {
  margin: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: currentColor;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
  display: grid;
  gap: 0.9rem;
}

.checklist li {
  position: relative;
  padding-left: 1.5rem;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58rem;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  box-shadow: 0 0 0.9rem rgba(245, 158, 11, 0.35);
}

.link-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.link-card {
  display: block;
  border: 1px solid var(--border);
  border-radius: 1.1rem;
  padding: 1.1rem 1.15rem;
  color: var(--text);
  background: linear-gradient(180deg, rgba(16, 24, 38, 0.9), rgba(10, 15, 26, 0.96));
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.link-card:hover {
  color: var(--text);
  border-color: rgba(245, 158, 11, 0.4);
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.24);
  transform: translateY(-2px);
}

.link-card strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1rem;
}

.cta-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.25rem;
  border-radius: 0.95rem;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.96), rgba(251, 191, 36, 0.88));
  color: #111827;
  font-weight: 800;
  box-shadow: 0 16px 34px rgba(245, 158, 11, 0.18);
}

.cta-button:hover {
  color: #111827;
  filter: brightness(1.04);
}

.faq-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 1.1rem;
  padding: 1.1rem 1.15rem;
  background: rgba(10, 15, 26, 0.82);
}

.faq-item h3 {
  margin: 0 0 0.45rem;
  color: var(--text);
  font-size: 1rem;
}

.faq-item p {
  margin: 0;
}

.info-grid .panel {
  margin: 0;
}

footer {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0 2rem;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--subtle);
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (min-width: 720px) {
  .info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-grid,
  .link-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 719px) {
  .site-header .site-shell {
    align-items: flex-start;
    padding-top: 0.85rem;
    padding-bottom: 0.85rem;
  }

  .header-actions {
    width: 100%;
    justify-content: space-between;
  }
}
