:root {
  color-scheme: dark;
  --bg: #08090b;
  --panel: #111318;
  --panel-2: #171a20;
  --line: #2a2e36;
  --text: #f6f7f8;
  --muted: #aeb4be;
  --orange: #ff8a00;
  --orange-2: #ffb44d;
  --max: 1180px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--bg); color: var(--text); font-size: 16px; line-height: 1.55; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
.wrap { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(8, 9, 11, .9);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(16px);
}
.header-inner { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; width: min(330px, 52vw); }
.brand img { display: block; width: 100%; height: auto; }
.main-nav { display: flex; align-items: center; gap: 28px; color: #d9dde3; font-weight: 700; font-size: .9rem; }
.main-nav a:hover, .main-nav a:focus-visible { color: var(--orange-2); }
.youtube-link { border: 1px solid #464c56; border-radius: 999px; padding: 9px 15px; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 72px;
  background:
    radial-gradient(circle at 76% 25%, rgba(255,138,0,.16), transparent 28%),
    linear-gradient(145deg, #08090b 42%, #111216 100%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to right, transparent, black 56%, transparent);
}
.hero-inner { position: relative; z-index: 1; max-width: 830px; }
.eyebrow { margin: 0 0 12px; color: var(--orange-2); font-size: .82rem; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
h1 { max-width: 760px; margin: 0; font-size: clamp(2.6rem, 7vw, 5.6rem); line-height: .95; letter-spacing: -.055em; }
.hero-copy { max-width: 670px; margin: 24px 0 30px; color: #c6cbd3; font-size: clamp(1.05rem, 2vw, 1.25rem); }
.search-shell { display: flex; align-items: center; max-width: 760px; padding: 8px; border: 1px solid #353a43; border-radius: 16px; background: #fff; box-shadow: 0 18px 60px rgba(0,0,0,.36), 0 0 38px rgba(255,138,0,.08); }
.search-shell svg { flex: 0 0 auto; margin-left: 12px; color: #575e68; }
.search-shell input { width: 100%; min-height: 52px; border: 0; outline: 0; padding: 0 14px; color: #111318; background: transparent; font-size: 1rem; }
.search-shell button { min-height: 48px; border: 0; border-radius: 11px; padding: 0 22px; background: var(--orange); color: #15100a; font-weight: 900; cursor: pointer; }
.search-shell button:hover { background: #ff9d26; }
.quick-links { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 18px; }
.quick-links button { border: 1px solid #3a3f48; border-radius: 999px; padding: 8px 13px; color: #d9dde3; background: #14171c; cursor: pointer; }
.quick-links button:hover { border-color: var(--orange); color: #fff; }

.ad-slot { display: grid; place-items: center; min-height: 96px; margin: 34px auto; border: 1px dashed #383d46; border-radius: 12px; background: #0d0f12; color: #6f7681; font-size: .76rem; letter-spacing: .13em; text-transform: uppercase; }
.ad-slot.tall { min-height: 280px; margin: 0; }

section { padding: 68px 0; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 28px; }
.section-head h2 { margin: 0; font-size: clamp(1.8rem, 3vw, 2.7rem); letter-spacing: -.035em; }
.section-head p { max-width: 540px; margin: 0; color: var(--muted); }
.category-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.category-card { min-height: 170px; padding: 24px; border: 1px solid var(--line); border-radius: 16px; background: linear-gradient(145deg, #15181d, #0f1115); transition: transform .2s ease, border-color .2s ease; }
.category-card:hover { transform: translateY(-3px); border-color: #6b4a24; }
.category-icon { display: grid; place-items: center; width: 43px; height: 43px; margin-bottom: 25px; border-radius: 12px; background: rgba(255,138,0,.12); color: var(--orange-2); font-weight: 950; }
.category-card h3 { margin: 0 0 5px; font-size: 1.05rem; }
.category-card p { margin: 0; color: var(--muted); font-size: .9rem; }

.guides { background: #0c0e11; border-block: 1px solid #1c2026; }
.guide-layout { display: grid; grid-template-columns: minmax(0, 1fr) 290px; gap: 28px; align-items: start; }
.guide-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.guide-card { display: flex; flex-direction: column; min-height: 245px; padding: 25px; border: 1px solid var(--line); border-radius: 17px; background: var(--panel); }
.guide-card[hidden] { display: none; }
.tag { align-self: flex-start; padding: 5px 9px; border-radius: 7px; background: rgba(255,138,0,.13); color: var(--orange-2); font-size: .74rem; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; }
.guide-card h3 { margin: 20px 0 8px; font-size: 1.28rem; line-height: 1.25; }
.guide-card p { margin: 0 0 24px; color: var(--muted); }
.guide-link { margin-top: auto; color: #fff; font-weight: 850; }
.guide-link span { color: var(--orange); }
.no-results { display: none; padding: 36px; border: 1px solid var(--line); border-radius: 16px; color: var(--muted); text-align: center; }

.mission { display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; align-items: center; }
.mission h2 { margin: 0 0 18px; font-size: clamp(2rem, 4vw, 3.6rem); line-height: 1.02; letter-spacing: -.045em; }
.mission p { color: var(--muted); }
.bench-note { padding: 28px; border-left: 3px solid var(--orange); background: #121419; color: #d8dce2; }
.bench-note strong { display: block; margin-bottom: 8px; color: #fff; }

footer { padding: 38px 0 48px; border-top: 1px solid #20242a; color: #8d949e; font-size: .85rem; }
.footer-inner { display: flex; justify-content: space-between; gap: 30px; }
.footer-inner p { max-width: 700px; margin: 0; }

@media (max-width: 900px) {
  .main-nav a:not(.youtube-link) { display: none; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .guide-layout { grid-template-columns: 1fr; }
  .ad-slot.tall { min-height: 100px; }
  .mission { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 620px) {
  .wrap { width: min(calc(100% - 28px), var(--max)); }
  .header-inner { min-height: 66px; }
  .brand { width: min(255px, 65vw); }
  .youtube-link { padding: 7px 10px; font-size: .8rem; }
  .hero { padding: 62px 0 52px; }
  .search-shell { display: grid; grid-template-columns: auto 1fr; }
  .search-shell button { grid-column: 1 / -1; }
  .section-head { display: block; }
  .section-head p { margin-top: 10px; }
  .category-grid, .guide-grid { grid-template-columns: 1fr; }
  section { padding: 52px 0; }
  .footer-inner { display: block; }
  .footer-inner p + p { margin-top: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}

.article-wrap{max-width:820px;margin:auto;padding:48px 20px 72px}.article-wrap h1{font-size:clamp(2rem,5vw,3.5rem);line-height:1.12;letter-spacing:-.035em}.article-wrap h2{font-size:1.5rem;margin-top:2rem}.article-wrap p,.article-wrap li{font-size:1.075rem;line-height:1.8;color:#d2d7df}.article-wrap li{margin:12px 0}.article-wrap a{color:#ffb44d;text-decoration:underline;text-underline-offset:3px}.article-wrap .meta{font-size:.875rem;color:#aeb4be}.article-wrap nav{margin-bottom:28px}.article-wrap aside{margin-top:36px;border-top:1px solid #353a43;padding-top:20px}a:focus-visible,button:focus-visible,input:focus-visible{outline:3px solid #ffb44d;outline-offset:4px}#guides{scroll-margin-top:90px}
