:root {
  --bg: #0e1116;
  --bg-soft: #151b23;
  --canvas: #f7f4ef;
  --card: #ffffff;
  --line: #e7dece;
  --text: #17191f;
  --muted: #5f6875;
  --accent: #ffb347;
  --accent-strong: #ff981f;
  --shadow: 0 22px 70px rgba(15, 17, 22, .12);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--canvas);
  color: var(--text);
  line-height: 1.72;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
p { margin: 0; color: var(--muted); }
h1, h2, h3 { margin: 0; letter-spacing: -.04em; line-height: 1.08; }
h1 { font-size: clamp(2.4rem, 4vw, 4rem); }
h2 { font-size: clamp(1.45rem, 2vw, 2rem); margin-top: 34px; }
h3 { font-size: 1.1rem; margin-top: 22px; }
ul { margin: 12px 0 0; padding-left: 20px; color: var(--muted); }
.container { width: min(calc(100% - 40px), 980px); margin: 0 auto; }
.hero {
  background:
    radial-gradient(circle at 12% 18%, rgba(255,179,71,.16), transparent 22%),
    radial-gradient(circle at 88% 12%, rgba(255,255,255,.08), transparent 20%),
    linear-gradient(180deg, #0b0e13 0%, #11161d 100%);
  color: #fff;
  padding: 28px 0 72px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: .16;
  pointer-events: none;
}
.nav {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 78px;
}
.brand img { width: min(260px, 42vw); }
.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  color: rgba(255,255,255,.82);
  font-weight: 600;
}
.nav-links a:hover,
.back-link:hover,
.card a:hover,
.footer-links a:hover { color: var(--accent); }
.hero-copy {
  position: relative;
  z-index: 1;
  padding-top: 10px;
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  color: rgba(255,255,255,.86);
  font-size: .86rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.kicker::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(255,179,71,.12);
}
.hero p {
  margin-top: 18px;
  max-width: 760px;
  color: rgba(255,255,255,.74);
  font-size: 1.03rem;
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  color: rgba(255,255,255,.88);
  font-weight: 700;
}
main {
  margin-top: -26px;
  padding-bottom: 60px;
}
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: var(--shadow);
  padding: 36px;
}
.card p + p,
.card ul + p,
.card p + ul,
.card h2 + p,
.card h3 + p {
  margin-top: 12px;
}
.card a {
  color: #946000;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.meta {
  margin-top: 8px;
  font-size: .95rem;
  color: var(--muted);
}
.footer {
  border-top: 1px solid rgba(255,255,255,.08);
  background: #0b0e13;
  color: rgba(255,255,255,.74);
  padding: 26px 0 40px;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
@media (max-width: 760px) {
  .container { width: min(calc(100% - 28px), 980px); }
  .nav { min-height: 70px; }
  .nav-links { display: none; }
  .hero { padding-bottom: 56px; }
  .card { padding: 24px; border-radius: 24px; }
}
