/* GrowJob SEO guides — static, accessible, no external dependencies */
 :root {
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --bg: #07110e;
  --bg-soft: #0b1915;
  --surface: rgba(14, 32, 27, 0.84);
  --surface-solid: #0e201b;
  --text: #f4fbf7;
  --text-muted: #b0c4ba;
  --text-faint: #7f988c;
  --border: rgba(218, 255, 237, 0.12);
  --accent: #6ef0ae;
  --accent-strong: #31ca7c;
  --accent-soft: #123d2b;
  --accent-ink: #ccffe1;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
  --shadow-hover: 0 24px 64px rgba(0, 0, 0, 0.4);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --container: 1180px;
  --reading: 760px;
  color-scheme: dark;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background: var(--bg);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.62;
  text-rendering: optimizeLegibility;
  transition: background-color .25s ease, color .25s ease;
}
button, input { font: inherit; }
a { color: inherit; }
img { display: block; max-width: 100%; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 10px;
  color: #fff;
  background: var(--accent);
  font-weight: 750;
  text-decoration: none;
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid var(--border);
  background: color-mix(in srgb, var(--bg) 85%, transparent);
  backdrop-filter: blur(18px);
}
.header-inner {
  min-height: 72px;
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: inline-flex;
  flex: none;
  gap: 10px;
  align-items: center;
  color: var(--text);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.04em;
  text-decoration: none;
}
.brand-mark {
  width: 36px;
  height: 36px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 6px 14px rgba(43, 203, 124, .22);
}
.brand-mark svg { width: 100%; height: 100%; }
.header-nav { display: flex; gap: 4px; align-items: center; margin-left: auto; }
.header-nav a, .header-nav button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border: 1px solid transparent;
  border-radius: 12px;
  color: var(--text-muted);
  background: transparent;
  font-weight: 680;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
}
.header-nav a:hover, .header-nav a[aria-current="page"] { color: var(--accent); background: var(--accent-soft); }
.theme-button { width: 42px; padding: 0 !important; }
.theme-button .sun { display: none; }
[data-theme="dark"] .theme-button .sun { display: block; }
[data-theme="dark"] .theme-button .moon { display: none; }

.hero-shell { position: relative; isolation: isolate; overflow: hidden; padding: 50px 0 30px; }
.hero-shell::before, .hero-shell::after {
  position: absolute;
  z-index: -1;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  content: "";
  filter: blur(5px);
  opacity: .72;
  pointer-events: none;
}
.hero-shell::before { top: -315px; right: -80px; background: radial-gradient(circle, rgba(110,240,174,.34) 0, rgba(43,203,124,.18) 44%, transparent 70%); }
.hero-shell::after { bottom: -375px; left: -160px; background: radial-gradient(circle, rgba(105,233,211,.19) 0, rgba(110,240,174,.14) 42%, transparent 70%); }
[data-theme="dark"] .hero-shell::before { opacity: .32; }
[data-theme="dark"] .hero-shell::after { opacity: .18; }

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: center;
  padding: 18px 0 0;
  color: var(--text-faint);
  font-size: 13px;
}
.breadcrumbs a { color: var(--text-muted); text-underline-offset: 3px; }
.breadcrumbs span[aria-hidden="true"] { color: var(--text-faint); }

.guide-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(275px, .55fr);
  gap: 34px;
  align-items: stretch;
  padding: 42px 0 34px;
}
.eyebrow {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  width: fit-content;
  margin-bottom: 15px;
  padding: 6px 10px;
  border: 1px solid rgba(124, 58, 237, .18);
  border-radius: 999px;
  color: var(--accent-ink);
  background: color-mix(in srgb, var(--accent-soft) 84%, transparent);
  font-size: 13px;
  font-weight: 750;
}
.eyebrow::before { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); content: ""; }
h1, h2, h3 { color: var(--text); line-height: 1.15; letter-spacing: -0.035em; }
h1 { max-width: 850px; margin: 0; font-size: clamp(36px, 5vw, 63px); font-weight: 820; }
.hero-copy { max-width: 720px; margin: 20px 0 0; color: var(--text-muted); font-size: clamp(18px, 2vw, 21px); line-height: 1.5; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 17px;
  border: 1px solid transparent;
  border-radius: 14px;
  color: #fff;
  background: var(--accent);
  box-shadow: 0 10px 22px rgba(110, 57, 221, .25);
  font-size: 15px;
  font-weight: 750;
  text-decoration: none;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}
.button:hover { transform: translateY(-2px); background: var(--accent-strong); box-shadow: 0 14px 28px rgba(110, 57, 221, .3); }
.button-secondary { color: var(--accent-ink); border-color: rgba(124, 58, 237, .18); background: var(--surface); box-shadow: none; }
.button-secondary:hover { background: var(--accent-soft); }

.hero-meta, .side-note {
  padding: 25px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow);
}
.hero-meta { display: grid; align-content: center; }
.meta-label { margin: 0 0 5px; color: var(--text-faint); font-size: 12px; font-weight: 720; letter-spacing: .05em; text-transform: uppercase; }
.meta-value { margin: 0 0 18px; font-size: 15px; font-weight: 700; }
.meta-value:last-child { margin-bottom: 0; }
.hero-meta hr { width: 100%; height: 1px; margin: 2px 0 17px; border: 0; background: var(--border); }

.quick-nav {
  display: flex;
  gap: 10px;
  align-items: center;
  overflow-x: auto;
  padding: 0 0 18px;
  scrollbar-width: thin;
}
.quick-nav a { flex: none; padding: 8px 12px; border: 1px solid var(--border); border-radius: 999px; color: var(--text-muted); background: var(--surface); font-size: 14px; font-weight: 680; text-decoration: none; }
.quick-nav a:hover { color: var(--accent); border-color: rgba(124,58,237,.32); }

.layout { display: grid; grid-template-columns: minmax(0, var(--reading)) minmax(240px, 300px); gap: 56px; align-items: start; padding: 25px 0 76px; }
.article { min-width: 0; }
.article > *:first-child { margin-top: 0; }
.article h2 { margin: 54px 0 17px; font-size: clamp(27px, 3vw, 37px); }
.article h3 { margin: 30px 0 12px; font-size: 22px; }
.article p { margin: 0 0 18px; color: var(--text-muted); }
.article strong { color: var(--text); }
.article a { color: var(--accent-ink); text-decoration-thickness: 1.5px; text-underline-offset: 3px; }
.article ul, .article ol { display: grid; gap: 11px; margin: 0 0 22px; padding-left: 23px; color: var(--text-muted); }
.article li::marker { color: var(--accent); font-weight: 800; }
.article blockquote { margin: 28px 0; padding: 20px 23px; border-left: 4px solid var(--accent); border-radius: 0 var(--radius-md) var(--radius-md) 0; color: var(--text); background: var(--accent-soft); font-size: 17px; font-weight: 620; }
.article-intro { padding: 23px 25px; border: 1px solid rgba(124, 58, 237, .17); border-radius: var(--radius-lg); background: linear-gradient(135deg, color-mix(in srgb, var(--accent-soft) 78%, transparent), var(--surface)); }
.article-intro p:last-child { margin-bottom: 0; }

.skill-grid, .principle-grid, .guide-grid { display: grid; gap: 14px; }
.skill-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); margin: 26px 0; }
.skill-card, .principle-card, .guide-card { border: 1px solid var(--border); background: var(--surface); box-shadow: 0 8px 24px rgba(51, 22, 103, .035); }
.skill-card { padding: 19px; border-radius: var(--radius-md); }
.skill-card .icon { display: grid; width: 36px; height: 36px; place-items: center; margin-bottom: 13px; border-radius: 12px; color: var(--accent-ink); background: var(--accent-soft); font-size: 17px; }
.skill-card h3 { margin: 0 0 6px; font-size: 17px; letter-spacing: -.02em; }
.skill-card p { margin: 0; font-size: 14px; line-height: 1.55; }

.steps { display: grid; gap: 0; margin: 26px 0; counter-reset: step; }
.step { position: relative; display: grid; grid-template-columns: 46px 1fr; gap: 15px; padding: 0 0 26px; }
.step::before { position: absolute; top: 44px; bottom: 0; left: 22px; width: 2px; background: var(--border); content: ""; }
.step:last-child { padding-bottom: 0; }
.step:last-child::before { display: none; }
.step-number { display: grid; z-index: 1; width: 46px; height: 46px; place-items: center; border-radius: 15px; color: #fff; background: var(--accent); box-shadow: 0 7px 15px rgba(124,58,237,.22); font-weight: 800; }
.step h3 { margin: 5px 0 6px; font-size: 19px; }
.step p { margin: 0; font-size: 15px; }

.checklist { margin: 28px 0; padding: 24px; border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--surface); }
.checklist h3 { margin: 0 0 13px; }
.checklist ul { gap: 9px; margin: 0; padding: 0; list-style: none; }
.checklist li { display: grid; grid-template-columns: 23px 1fr; gap: 9px; }
.checklist li::before { display: grid; width: 20px; height: 20px; place-items: center; margin-top: 2px; border: 1.5px solid color-mix(in srgb, var(--accent) 60%, var(--border)); border-radius: 6px; color: var(--accent); content: "✓"; font-size: 12px; font-weight: 900; }

.comparison { width: 100%; margin: 26px 0; overflow: hidden; border: 1px solid var(--border); border-radius: var(--radius-md); border-collapse: separate; border-spacing: 0; background: var(--surface); }
.comparison th, .comparison td { padding: 14px 16px; border-bottom: 1px solid var(--border); text-align: left; vertical-align: top; }
.comparison th { color: var(--text); background: color-mix(in srgb, var(--accent-soft) 55%, var(--surface)); font-size: 14px; }
.comparison td { color: var(--text-muted); font-size: 14px; }
.comparison tr:last-child td { border-bottom: none; }

.faq { display: grid; gap: 10px; margin-top: 22px; }
.faq details { overflow: clip; border: 1px solid var(--border); border-radius: var(--radius-md); background: var(--surface); }
.faq summary { display: flex; gap: 15px; align-items: center; padding: 17px 18px; color: var(--text); font-weight: 740; cursor: pointer; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { flex: none; width: 24px; height: 24px; margin-left: auto; border-radius: 8px; color: var(--accent-ink); background: var(--accent-soft); content: "+"; text-align: center; line-height: 23px; font-size: 20px; font-weight: 500; }
.faq details[open] summary::after { content: "−"; }
.faq .answer { padding: 0 18px 18px; }
.faq .answer p { margin: 0; font-size: 15px; }

.aside { position: sticky; top: 95px; }
.toc { padding: 20px; border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--surface); box-shadow: var(--shadow); }
.toc h2 { margin: 0 0 12px; font-size: 15px; letter-spacing: -.01em; }
.toc ol { display: grid; gap: 5px; margin: 0; padding: 0; list-style: none; }
.toc a { display: block; padding: 7px 8px; border-radius: 9px; color: var(--text-muted); font-size: 13px; line-height: 1.35; text-decoration: none; }
.toc a:hover, .toc a.is-active { color: var(--accent); background: var(--accent-soft); }
.side-note { margin-top: 15px; padding: 20px; }
.side-note strong { display: block; margin-bottom: 6px; font-size: 14px; }
.side-note p { margin: 0; color: var(--text-muted); font-size: 13px; line-height: 1.5; }

.related { margin-top: 60px; padding-top: 39px; border-top: 1px solid var(--border); }
.related h2 { margin: 0 0 20px; }
.guide-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.guide-card { display: flex; min-height: 235px; flex-direction: column; padding: 21px; border-radius: var(--radius-lg); text-decoration: none; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.guide-card:hover { transform: translateY(-4px); border-color: rgba(124,58,237,.28); box-shadow: var(--shadow-hover); }
.guide-card .card-kicker { color: var(--accent-ink); font-size: 12px; font-weight: 780; }
.guide-card h3 { margin: 10px 0 10px; font-size: 21px; }
.guide-card p { margin: 0; color: var(--text-muted); font-size: 14px; line-height: 1.54; }
.guide-card .card-link { margin-top: auto; padding-top: 21px; color: var(--accent); font-size: 14px; font-weight: 760; }

.hub-hero { padding: 66px 0 44px; }
.hub-hero-inner { max-width: 850px; }
.hub-hero h1 { max-width: 900px; }
.hub-hero .hero-copy { max-width: 710px; }
.hub-main { padding: 10px 0 78px; }
.section-heading { display: flex; gap: 24px; align-items: end; justify-content: space-between; margin: 42px 0 20px; }
.section-heading h2 { margin: 0; font-size: clamp(29px,3.3vw,42px); }
.section-heading p { max-width: 450px; margin: 0; color: var(--text-muted); font-size: 15px; }
.guide-grid-hub { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.guide-grid-hub .guide-card { min-height: 280px; }
.principle-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
.principle-card { padding: 23px; border-radius: var(--radius-lg); }
.principle-number { display: grid; width: 34px; height: 34px; place-items: center; margin-bottom: 14px; border-radius: 11px; color: var(--accent-ink); background: var(--accent-soft); font-size: 13px; font-weight: 800; }
.principle-card h3 { margin: 0 0 8px; font-size: 18px; }
.principle-card p { margin: 0; color: var(--text-muted); font-size: 14px; line-height: 1.56; }
.safe-note { display: grid; grid-template-columns: 44px 1fr; gap: 15px; margin-top: 35px; padding: 22px; border: 1px solid rgba(124,58,237,.18); border-radius: var(--radius-lg); background: var(--accent-soft); }
.safe-note .note-icon { display: grid; width: 44px; height: 44px; place-items: center; border-radius: 14px; color: var(--accent-ink); background: var(--surface-solid); font-weight: 900; }
.safe-note h2 { margin: 0 0 5px; font-size: 19px; }
.safe-note p { margin: 0; color: var(--text-muted); font-size: 14px; }

.legal-page { max-width: var(--reading); padding: 58px 0 80px; }
.legal-page h1 { font-size: clamp(35px, 5vw, 54px); }
.legal-page p, .legal-page li { color: var(--text-muted); }
.draft-badge { display: inline-block; margin: 20px 0; padding: 8px 11px; border-radius: 10px; color: #6b3a06; background: #fff3cf; font-size: 13px; font-weight: 750; }
[data-theme="dark"] .draft-badge { color: #ffdc92; background: #422d05; }

.cta-panel { display: flex; gap: 25px; align-items: center; justify-content: space-between; margin: 55px 0 0; padding: 27px; border-radius: var(--radius-xl); color: #fff; background: linear-gradient(135deg, #168b55 0%, #0d4e37 100%); box-shadow: 0 20px 42px rgba(6, 42, 27, .34); }
.cta-panel h2 { margin: 0 0 5px; color: #fff; font-size: 25px; }
.cta-panel p { max-width: 560px; margin: 0; color: #ede9fe; font-size: 15px; }
.cta-panel .button { flex: none; color: #07502f; background: #fff; box-shadow: none; }
.cta-panel .button:hover { color: #063c28; background: #eafff1; }

.site-footer { border-top: 1px solid var(--border); background: var(--bg-soft); }
.footer-inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; padding: 38px 0 24px; }
.footer-title { margin: 0 0 8px; font-size: 16px; font-weight: 790; }
.footer-copy { max-width: 570px; margin: 0; color: var(--text-muted); font-size: 13px; line-height: 1.58; }
.footer-links { display: flex; flex-wrap: wrap; gap: 9px 17px; align-content: start; justify-content: flex-end; }
.footer-links a { color: var(--text-muted); font-size: 13px; text-underline-offset: 3px; }
.footer-bottom { display: flex; gap: 18px; justify-content: space-between; padding: 16px 0 28px; border-top: 1px solid var(--border); color: var(--text-faint); font-size: 12px; }

:focus-visible { outline: 3px solid color-mix(in srgb, var(--accent) 70%, #fff); outline-offset: 3px; }

@media (max-width: 900px) {
  .guide-hero { grid-template-columns: 1fr; }
  .hero-meta { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .hero-meta hr { display: none; }
  .layout { grid-template-columns: minmax(0, 1fr); gap: 30px; }
  .aside { position: static; order: -1; }
  .toc { display: none; }
  .side-note { margin: 0; }
  .guide-grid, .guide-grid-hub, .principle-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 30px), var(--container)); }
  .header-inner { min-height: 64px; gap: 10px; }
  .brand { font-size: 18px; }
  .brand-mark { width: 32px; height: 32px; border-radius: 10px; }
  .header-nav { gap: 0; }
  .header-nav a { display: none; }
  .header-nav a:first-child { display: inline-flex; padding: 8px 10px; }
  .hero-shell { padding-top: 35px; }
  .guide-hero { padding: 29px 0 27px; }
  h1 { font-size: clamp(34px, 11vw, 48px); }
  .hero-copy { font-size: 18px; }
  .hero-meta { grid-template-columns: 1fr; padding: 20px; }
  .hero-meta .meta-value { margin-bottom: 13px; }
  .skill-grid, .guide-grid, .guide-grid-hub, .principle-grid { grid-template-columns: 1fr; }
  .article h2 { margin-top: 42px; font-size: 28px; }
  .article h3 { font-size: 20px; }
  .comparison { display: block; overflow-x: auto; white-space: normal; }
  .cta-panel { display: block; padding: 24px; }
  .cta-panel .button { width: 100%; margin-top: 19px; }
  .footer-inner { grid-template-columns: 1fr; gap: 22px; }
  .footer-links { justify-content: flex-start; }
  .footer-bottom { display: block; }
  .footer-bottom span + span { display: block; margin-top: 6px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
