/* Shockland site. Plain CSS, system fonts, no external requests. */
:root {
  --bg: #0f141b;
  --panel: #17202b;
  --panel-2: #1d2937;
  --text: #e8eef5;
  --muted: #a9b6c6;
  --accent: #ffb020;
  --accent-ink: #1a1200;
  --lime: #b8e034;
  --line: #2a3848;
  --radius: 14px;
  --max: 1040px;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 17px/1.6 system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-underline-offset: 3px; }
a:hover { color: #ffd070; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 20px; }

/* header */
.site-header { background: #0b1016; border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 5; }
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 64px; flex-wrap: wrap; }
.brand { display: flex; align-items: center; gap: 12px; color: var(--text); text-decoration: none; font-weight: 700; font-size: 19px; letter-spacing: .3px; }
.brand img { width: 36px; height: 36px; border-radius: 9px; }
.nav { display: flex; gap: 6px; flex-wrap: wrap; }
.nav a { color: var(--muted); text-decoration: none; padding: 8px 12px; border-radius: 8px; font-size: 16px; }
.nav a:hover, .nav a[aria-current="page"] { color: var(--text); background: var(--panel-2); }

/* hero */
.hero { position: relative; overflow: hidden; border-bottom: 1px solid var(--line); }
.hero::before { content: ""; position: absolute; inset: 0; background: url("images/smf/smf-feature.jpg") center / cover no-repeat; opacity: .38; }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15,20,27,.25), var(--bg) 96%); }
.hero .wrap { position: relative; z-index: 1; padding-top: 72px; padding-bottom: 72px; }
.hero h1 { margin: 0 0 12px; font-size: clamp(38px, 7vw, 64px); line-height: 1.05; letter-spacing: -.5px; }
.hero h1 span { color: var(--lime); }
.hero p.lead { margin: 0 0 26px; max-width: 640px; font-size: clamp(18px, 2.4vw, 21px); color: #d5deea; }
.buttons { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.btn { display: inline-block; padding: 13px 22px; border-radius: 11px; font-weight: 700; text-decoration: none; background: var(--accent); color: var(--accent-ink); }
.btn:hover { background: #ffc85a; color: var(--accent-ink); }
.btn.off { background: var(--panel-2); color: var(--muted); cursor: default; border: 1px solid var(--line); }
.btn.off:hover { background: var(--panel-2); color: var(--muted); }
.note { color: var(--muted); font-size: 15px; margin: 14px 0 0; }

/* sections */
main section { padding: 54px 0; }
main section + section { border-top: 1px solid var(--line); }
h2 { margin: 0 0 8px; font-size: clamp(26px, 4vw, 34px); line-height: 1.2; }
.sub { margin: 0 0 28px; color: var(--muted); max-width: 660px; }
.grid { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); }
.card { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; }
.card h3 { margin: 0 0 6px; font-size: 19px; }
.card p { margin: 0; color: var(--muted); font-size: 16px; }
.split { display: grid; gap: 28px; grid-template-columns: 1fr; align-items: center; }
@media (min-width: 800px) { .split { grid-template-columns: 1.1fr .9fr; } }
.safe { background: var(--panel); border: 1px solid var(--line); border-left: 4px solid var(--lime); border-radius: var(--radius); padding: 22px 24px; }
.safe ul { margin: 10px 0 0; padding-left: 20px; }
.safe li { margin: 4px 0; }
.shot { border-radius: var(--radius); border: 1px solid var(--line); }

/* text pages */
.page { padding: 44px 0 64px; }
.page h1 { margin: 0 0 14px; font-size: clamp(30px, 5vw, 42px); }
.page h2 { margin-top: 32px; font-size: 24px; }
.page p, .page li { max-width: 760px; }
.page ul { padding-left: 22px; }

/* footer */
.site-footer { border-top: 1px solid var(--line); background: #0b1016; color: var(--muted); font-size: 15px; }
.site-footer .wrap { display: flex; justify-content: space-between; gap: 12px 24px; flex-wrap: wrap; padding-top: 26px; padding-bottom: 26px; }
.site-footer a { color: var(--muted); }
.site-footer a:hover { color: var(--text); }
.site-footer nav { display: flex; gap: 16px; flex-wrap: wrap; }

:focus-visible { outline: 3px solid var(--lime); outline-offset: 2px; }
@media (prefers-reduced-motion: no-preference) { .btn, .nav a { transition: background .15s, color .15s; } }
