:root {
  --bg: #f0efed;
  --surface: rgba(255,255,255,.62);
  --surface-solid: #faf9f7;
  --ink: #111111;
  --muted: #6f6e6b;
  --line: rgba(17,17,17,.13);
  --accent: #ff4b28;
  --accent-soft: rgba(255,75,40,.12);
  --success: #168a4a;
  --radius: 28px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 86% 0%, rgba(255,75,40,.13), transparent 31rem),
    linear-gradient(180deg, #f3f2f0, var(--bg));
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
.site-shell { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.site-header {
  position: sticky;
  top: 14px;
  z-index: 20;
  width: min(1180px, calc(100% - 32px));
  margin: 14px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 68px;
  padding: 10px 12px 10px 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(246,245,243,.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 14px 40px rgba(0,0,0,.06);
}
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; font-size: 19px; font-weight: 800; letter-spacing: -.03em; }
.brand img { width: 29px; height: 29px; object-fit: contain; filter: invert(1); }
.brand span { color: #8b8985; font-weight: 500; }
.nav { display: flex; align-items: center; gap: 4px; }
.nav a { padding: 11px 14px; border-radius: 13px; color: #55534f; text-decoration: none; font-size: 14px; font-weight: 650; transition: .2s ease; }
.nav a:hover, .nav a[aria-current="page"] { color: #111; background: rgba(17,17,17,.065); }
.nav .nav-cta { color: white; background: var(--accent); }
.nav .nav-cta:hover { color: white; background: #e93d1e; transform: translateY(-1px); }
.hero { padding: clamp(72px, 10vw, 142px) 0 72px; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; color: var(--accent); font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: currentColor; box-shadow: 0 0 0 6px var(--accent-soft); }
h1 { max-width: 960px; margin: 25px 0 24px; font-size: clamp(48px, 8vw, 104px); line-height: .94; letter-spacing: -.065em; font-weight: 760; }
.hero-copy { max-width: 730px; margin: 0; color: var(--muted); font-size: clamp(18px, 2.2vw, 25px); line-height: 1.45; letter-spacing: -.025em; }
.search-wrap { position: relative; max-width: 760px; margin-top: 42px; }
.search-wrap svg { position: absolute; left: 20px; top: 50%; width: 21px; height: 21px; transform: translateY(-50%); color: #7f7d79; }
.search {
  width: 100%;
  min-height: 64px;
  padding: 0 22px 0 56px;
  border: 1px solid var(--line);
  border-radius: 18px;
  outline: none;
  background: rgba(255,255,255,.7);
  color: var(--ink);
  font: inherit;
  font-size: 16px;
  box-shadow: 0 16px 46px rgba(0,0,0,.06);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.search:focus { border-color: rgba(255,75,40,.65); box-shadow: 0 0 0 5px var(--accent-soft), 0 20px 50px rgba(0,0,0,.07); transform: translateY(-1px); }
.section { padding: 22px 0 88px; }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 24px; margin-bottom: 28px; }
.section-head h2 { margin: 0; font-size: clamp(30px, 4vw, 50px); letter-spacing: -.05em; }
.section-head p { max-width: 450px; margin: 0; color: var(--muted); line-height: 1.55; }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.help-card {
  position: relative;
  min-height: 230px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  text-decoration: none;
  overflow: hidden;
  transition: transform .28s cubic-bezier(.2,.8,.2,1), background .2s ease, box-shadow .28s ease;
  animation: card-in .65s both;
}
.help-card::after { content: "↗"; position: absolute; right: 22px; top: 20px; width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; transition: .25s ease; }
.help-card:hover { transform: translateY(-6px); background: rgba(255,255,255,.88); box-shadow: 0 24px 60px rgba(0,0,0,.08); }
.help-card:hover::after { color: white; border-color: var(--accent); background: var(--accent); transform: rotate(45deg); }
.card-icon { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 45px; border-radius: 15px; background: var(--accent-soft); color: var(--accent); }
.card-icon svg { width: 23px; height: 23px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.help-card h3 { margin: 0 0 8px; padding-right: 45px; font-size: 22px; letter-spacing: -.035em; }
.help-card p { margin: 0; color: var(--muted); line-height: 1.5; }
.trust-strip { display: grid; grid-template-columns: 1.15fr .85fr; gap: 14px; margin-top: 14px; }
.trust-panel { padding: 32px; border: 1px solid var(--line); border-radius: var(--radius); background: #111; color: white; }
.trust-panel.light { color: var(--ink); background: rgba(255,255,255,.68); }
.trust-panel h3 { margin: 0 0 10px; font-size: 27px; letter-spacing: -.04em; }
.trust-panel p { margin: 0 0 24px; color: rgba(255,255,255,.58); line-height: 1.6; }
.trust-panel.light p { color: var(--muted); }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 18px; border: 1px solid rgba(255,255,255,.22); border-radius: 15px; color: white; text-decoration: none; font-weight: 750; transition: .2s ease; }
.button:hover { transform: translateY(-2px); background: rgba(255,255,255,.1); }
.button.dark { color: #111; border-color: var(--line); background: rgba(255,255,255,.7); }
.article-layout { display: grid; grid-template-columns: 250px minmax(0, 760px); gap: 74px; align-items: start; padding: 76px 0 110px; }
.article-nav { position: sticky; top: 110px; }
.article-nav a { display: block; margin-bottom: 7px; padding: 11px 13px; border-radius: 12px; color: #6c6a67; text-decoration: none; font-size: 14px; font-weight: 650; }
.article-nav a:hover, .article-nav a.active { color: #111; background: rgba(17,17,17,.06); }
.article { min-width: 0; }
.article .eyebrow { margin-bottom: 20px; }
.article h1 { margin: 0 0 28px; font-size: clamp(48px, 7vw, 82px); }
.article-lead { margin: 0 0 48px; color: var(--muted); font-size: 21px; line-height: 1.55; }
.article-section { margin: 0 0 48px; padding-top: 8px; scroll-margin-top: 120px; }
.article-section h2 { margin: 0 0 16px; font-size: 30px; letter-spacing: -.04em; }
.article-section h3 { margin: 26px 0 10px; font-size: 19px; }
.article-section p, .article-section li { color: #4f4e4b; font-size: 16px; line-height: 1.75; }
.article-section ul, .article-section ol { padding-left: 22px; }
.callout { margin: 28px 0; padding: 22px 24px; border: 1px solid rgba(255,75,40,.25); border-radius: 20px; background: var(--accent-soft); }
.callout strong { display: block; margin-bottom: 6px; }
.callout p { margin: 0; color: #4b302a; }
.facts { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; margin: 24px 0; }
.fact { padding: 20px; border: 1px solid var(--line); border-radius: 19px; background: rgba(255,255,255,.58); }
.fact small { display: block; margin-bottom: 8px; color: var(--muted); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.fact strong { font-size: 18px; }
.site-footer { padding: 32px 0 42px; border-top: 1px solid var(--line); color: var(--muted); }
.footer-row { display: flex; justify-content: space-between; align-items: center; gap: 25px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; }
.footer-links a { text-decoration: none; font-size: 14px; font-weight: 650; }
.footer-links a:hover { color: var(--ink); }
.empty-state { display:none; padding: 35px; border: 1px solid var(--line); border-radius: var(--radius); color: var(--muted); background: var(--surface); }
@keyframes card-in { from { opacity:0; transform:translateY(18px); } to { opacity:1; transform:translateY(0); } }
@media (max-width: 900px) {
  .nav a:not(.nav-cta) { display:none; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-strip { grid-template-columns: 1fr; }
  .article-layout { grid-template-columns: 1fr; gap: 34px; }
  .article-nav { position: static; display: flex; overflow-x: auto; padding-bottom: 8px; }
  .article-nav a { white-space: nowrap; }
}
@media (max-width: 620px) {
  .site-shell, .site-header { width: min(100% - 20px, 1180px); }
  .site-header { top: 8px; margin-top: 8px; min-height: 60px; padding-left: 13px; border-radius: 18px; }
  .brand { font-size: 17px; }
  .brand span { display:none; }
  .nav .nav-cta { padding: 10px 12px; }
  .hero { padding-top: 76px; }
  .card-grid, .facts { grid-template-columns: 1fr; }
  .help-card { min-height: 205px; }
  .section-head, .footer-row { align-items:flex-start; flex-direction:column; }
  .article-layout { padding-top: 54px; }
}
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { scroll-behavior:auto !important; animation-duration:.01ms !important; transition-duration:.01ms !important; } }
