* { margin: 0; padding: 0; box-sizing: border-box; }
@font-face {
  font-family: 'Fredoka';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('/fonts/fredoka.woff2') format('woff2');
}
:root {
  --font-display: 'Fredoka', 'Segoe UI', system-ui, sans-serif;
  --ink: #232433;          /* body text: deep slate */
  --ink-soft: #62667e;
  --navy: #1d3a6b;         /* the house colour: ink on a name tag */
  --navy-dark: #122748;
  --cyan: #17b8c4;         /* the accent: the spark on the tag */
  --cyan-dark: #0e8f9b;
  --amber: #f5a524;        /* the call to action */
  --amber-dark: #cf8408;
  --rose: #e4557c;
  --line: #dde5f2;
  --paper: #fbfcff;
}
h1, h2, h3, .brand-name, .btn-primary, .pill { font-family: var(--font-display); }
body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: linear-gradient(165deg, #eaf1fb 0%, #f6fbfd 46%, #fdf5e7 100%) fixed;
  color: var(--ink);
  min-height: 100vh; display: flex; flex-direction: column;
}
.wrap { max-width: 1100px; margin: 0 auto; padding: 0 20px; width: 100%; }
a { color: var(--navy); }

/* ── Portal shell: navigation rail beside the content column ────────────────── */
.shell { flex: 1; width: 100%; max-width: 1300px; margin: 0 auto; padding: 0 20px 60px; }
.shell > main.wrap { max-width: none; padding-left: 0; padding-right: 0; margin-left: 0; margin-right: 0; }
.site-header .wrap, .site-footer .wrap { max-width: 1300px; }
.rail { display: none; }
@media (min-width: 1080px) {
  .shell.has-rail { display: grid; grid-template-columns: 244px minmax(0, 1fr); gap: 34px; align-items: start; }
  .rail { display: block; position: sticky; top: 84px; padding: 26px 0 20px; max-height: calc(100vh - 100px); overflow-y: auto; }
  .brand { flex: none; }
}
.rail-block { margin-bottom: 20px; }
.rail-h { font-size: .7rem; font-weight: 600; text-transform: uppercase; letter-spacing: .13em;
  color: var(--ink-soft); opacity: .85; margin: 0 0 8px; padding: 0 12px; }
.rail-link { display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 7px 12px; border-radius: 11px; color: var(--ink-soft); text-decoration: none;
  font-size: .9rem; font-weight: 600; line-height: 1.3; }
.rail-link:hover { background: #e8f1fb; color: var(--navy); }
.rail-link.is-on { background: var(--paper); color: var(--navy-dark); box-shadow: 0 4px 16px rgba(29,58,107,.12); }
.rail-ico { display: inline-flex; align-items: center; gap: 8px; min-width: 0; }
.rail-ico svg { flex: none; width: 17px; height: 17px; color: var(--cyan-dark); }
.rail-n { flex: none; font-size: .72rem; font-weight: 700; color: var(--ink-soft);
  background: rgba(255,255,255,.9); border-radius: 9999px; padding: 2px 8px; }
.rail-tool { background: var(--paper); border: 1px solid var(--line); border-radius: 18px;
  padding: 16px; box-shadow: 0 4px 16px rgba(29,58,107,.1); }
.rail-tool p { font-size: .82rem; line-height: 1.5; color: var(--ink-soft); margin: 0 0 8px; }
.rail-tool .btn-primary { font-size: .85rem; padding: 9px 16px; margin-top: 4px; }

/* ── Header ─────────────────────────────────────────────────────────────────── */
.site-header { background: rgba(255,255,255,.92); backdrop-filter: blur(10px); position: sticky; top: 0; z-index: 20; }
.site-header::after { content: ""; display: block; height: 2px;
  background: linear-gradient(90deg, var(--navy), var(--cyan), var(--amber), var(--rose), var(--navy)); }
.header-row { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 10px 20px; }
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; min-width: 0; }
.brand-mark { width: 44px; height: 44px; flex: none; filter: drop-shadow(0 2px 5px rgba(29,58,107,.3)); transition: transform .25s ease; }
.brand:hover .brand-mark { transform: scale(1.06) rotate(-4deg); }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; min-width: 0; }
.brand-name { font-weight: 600; font-size: 1.4rem; letter-spacing: -.01em; color: var(--navy-dark); white-space: nowrap; }
.brand-name b { color: var(--cyan-dark); font-weight: 600; }
.brand-tagline { font-size: .63rem; font-weight: 600; color: #8d92a6; letter-spacing: .13em; text-transform: uppercase; margin-top: 3px; white-space: nowrap; }
.nav-open { display: none; }
.nav-burger { display: none; flex-direction: column; gap: 4px; cursor: pointer; padding: 8px; }
.nav-burger span { display: block; width: 22px; height: 2px; background: var(--navy-dark); border-radius: 2px; }
.header-nav { display: flex; align-items: center; gap: 16px; }
.header-nav a { text-decoration: none; color: var(--ink); font-size: .92rem; font-weight: 600; }
.header-nav a:hover { color: var(--navy); }

/* Nav groups: one per content axis, built from the category rows. The panel opens on hover and
   on keyboard focus, and collapses into a flat list inside the burger menu. */
.nav-group { position: relative; }
.nav-group-top { display: inline-flex; align-items: center; gap: 5px; padding: 6px 0; }
.nav-caret { transition: transform .18s ease; }
.nav-group:hover .nav-caret, .nav-group:focus-within .nav-caret { transform: rotate(180deg); }
.nav-panel { display: none; position: absolute; top: 100%; left: -14px; z-index: 40; min-width: 250px;
  background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 8px;
  box-shadow: 0 18px 44px rgba(29,58,107,.18); }
.nav-group:hover .nav-panel, .nav-group:focus-within .nav-panel { display: block; }
.nav-panel a { display: flex; align-items: center; gap: 9px; padding: 8px 11px; border-radius: 10px;
  font-size: .9rem; font-weight: 600; color: var(--ink); }
.nav-panel a svg { color: var(--cyan-dark); flex: none; }
.nav-panel a:hover { background: #eaf3fb; color: var(--navy); }
.nav-panel-all { color: var(--navy) !important; font-weight: 700 !important; border-top: 1px solid var(--line); border-radius: 0 0 10px 10px; margin-top: 4px; }
/* The mobile twin sits OUTSIDE .header-nav, so it does not inherit that block's link reset and
   needs its own text-decoration:none, or it renders as an underlined pill. */
.nav-cta { display: inline-flex; align-items: center; gap: 6px; background: var(--navy); color: #fff !important;
  padding: 8px 14px; border-radius: 999px; text-decoration: none; }
.nav-cta:hover { background: var(--navy-dark); }
@media (min-width: 1080px) and (max-width: 1199px) {
  .header-nav { gap: 10px; }
  .hsearch { margin: 0 10px; }
}
@media (max-width: 879px) {
  .brand-name { font-size: 1.2rem; } .brand-mark { width: 38px; height: 38px; }
  .nav-burger { display: flex; }
  .header-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column;
    align-items: stretch; gap: 0; background: #fff; border-top: 1px solid var(--line); padding: 8px 20px 14px;
    max-height: 78vh; overflow-y: auto; }
  .nav-open:checked ~ .header-nav { display: flex; }
  .header-nav > a { padding: 11px 0; border-bottom: 1px solid var(--line); }
  .nav-group-top { padding: 11px 0; border-bottom: 1px solid var(--line); font-weight: 700; }
  .nav-caret { display: none; }
  .nav-panel { display: block; position: static; min-width: 0; border: 0; box-shadow: none; padding: 4px 0 8px 6px; }
  .nav-panel-all { border-top: 0; }
  .nav-cta { justify-content: center; margin-top: 12px; border-bottom: 0; }
}
.nav-cta-mobile { display: none; align-items: center; padding: 7px 13px;
  border-radius: 999px; font-size: .85rem; font-weight: 700; white-space: nowrap; }
@media (max-width: 879px) { .nav-cta-mobile { display: inline-flex; } }

/* ── Search: header twin and hero twin, one component ───────────────────────── */
.hsearch { position: relative; display: flex; align-items: center; order: 10; flex: 1 0 100%; margin: 8px 0 2px; }
.header-row { flex-wrap: wrap; }
.hsearch .hsearch-in { padding-top: 8px; padding-bottom: 8px; font-size: .9rem; }
@media (min-width: 1080px) {
  .hsearch { order: 0; flex: 1 1 160px; max-width: 320px; min-width: 0; margin: 0 16px; }
  .header-row { flex-wrap: nowrap; }
  .header-nav a { white-space: nowrap; }
  .hsearch .hsearch-in { padding-top: 10px; padding-bottom: 10px; font-size: .95rem; }
}
.hsearch-ico { position: absolute; left: 14px; color: var(--ink-soft); opacity: .7; pointer-events: none; }
.hsearch-in { width: 100%; font: inherit; color: var(--ink); padding: 10px 16px 10px 42px;
  border: 2px solid var(--line); border-radius: 9999px; background: rgba(255,255,255,.92); }
.hsearch-in::placeholder { color: var(--ink-soft); opacity: .8; }
.hsearch-in:focus { outline: none; border-color: var(--cyan); background: #fff; }
.hsearch-pop { position: absolute; top: calc(100% + 8px); left: 0; right: 0; z-index: 60;
  background: #fff; border: 1px solid var(--line); border-radius: 18px;
  box-shadow: 0 18px 44px rgba(29,58,107,.2); padding: 6px; max-height: 62vh; overflow-y: auto; }
.hsearch-pop[hidden] { display: none; }
.hs-hit { display: block; padding: 9px 12px; border-radius: 12px; text-decoration: none; }
.hs-hit:hover, .hs-hit.sel { background: #eaf3fb; }
.hs-t { display: block; font-family: var(--font-display); font-weight: 600; font-size: .95rem;
  color: var(--navy-dark); line-height: 1.25; }
.hs-m { display: block; font-size: .76rem; color: var(--ink-soft); margin-top: 2px; }
.hs-none { padding: 12px 14px; font-size: .88rem; color: var(--ink-soft); margin: 0; }

/* ── Heroes ─────────────────────────────────────────────────────────────────── */
.portal-hero { text-align: center; padding: 30px 0 4px; }
.portal-hero h1 { font-size: clamp(1.7rem, 4.2vw, 2.4rem); font-weight: 600; letter-spacing: -.02em;
  color: var(--navy-dark); margin-bottom: 10px; }
.portal-hero .lead { color: var(--ink-soft); font-size: 1.04rem; margin: 0 auto; line-height: 1.6; max-width: 62ch; }
.ph-stats { font-size: .85rem; color: var(--ink-soft); opacity: .9; margin: 14px 0 0; text-align: center; }
.hero { text-align: center; padding: 44px 0 26px; }
.hero h1 { font-size: clamp(1.7rem, 5vw, 2.6rem); font-weight: 600; letter-spacing: -.02em; color: var(--navy-dark); }
.lead { color: var(--ink-soft); font-size: 1.06rem; margin: 12px auto 0; line-height: 1.65; }
.btn-primary { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; background: var(--amber);
  color: #40290a; text-decoration: none; font-weight: 600; padding: 12px 22px; border-radius: 999px;
  border: 0; font-size: 1rem; font-family: var(--font-display); cursor: pointer;
  box-shadow: 0 4px 16px rgba(245,165,36,.4); }
.btn-primary:hover { background: var(--amber-dark); color: #fff; }
.gen-hero { padding: 16px 0 6px; }
.gen-hero-row { display: flex; align-items: flex-start; gap: 16px; }
.gen-icon { flex: none; display: inline-flex; align-items: center; justify-content: center;
  width: 64px; height: 64px; border-radius: 18px; background: #e7f1fb; color: var(--navy); }
@media (max-width: 700px) { .gen-hero-row { gap: 12px; } .gen-icon { width: 50px; height: 50px; border-radius: 14px; } }
.gen-hero h1 { font-size: clamp(1.6rem, 4.2vw, 2.25rem); color: var(--navy-dark); letter-spacing: -.02em; line-height: 1.15; font-weight: 600; }
.gen-hero .lead { margin: 10px 0 0; max-width: none; text-align: left; }
.byline { margin-top: 14px; font-size: .86rem; color: var(--ink-soft); }
.byline a { color: var(--navy); }
.byline .dot { margin: 0 6px; opacity: .5; }

/* ── Breadcrumbs ────────────────────────────────────────────────────────────── */
.crumbs { font-size: .85rem; color: var(--ink-soft); padding: 16px 0 4px; }
.crumbs a { color: var(--ink-soft); text-decoration: none; }
.crumbs a:hover { color: var(--navy); text-decoration: underline; }
.crumbs .sep { margin: 0 7px; opacity: .5; }

/* ── The generator widget ───────────────────────────────────────────────────── */
.tool { background: var(--paper); border: 1px solid var(--line); border-radius: 22px;
  padding: clamp(16px, 3vw, 26px); margin-top: 20px; box-shadow: 0 10px 30px rgba(29,58,107,.08); }
.tool.is-busy { opacity: .72; }
.tool-bar { display: flex; flex-wrap: wrap; align-items: flex-end; gap: 14px; }
.tool-pick { display: flex; flex-direction: column; gap: 6px; font-size: .82rem; font-weight: 600;
  color: var(--ink-soft); min-width: 200px; }
.tool-pick select { font: inherit; font-size: .95rem; color: var(--ink); padding: 11px 14px;
  border: 2px solid var(--line); border-radius: 14px; background: #fff; cursor: pointer; }
.tool-pick select:focus { outline: none; border-color: var(--cyan); }
.tool-go { margin-top: 0; }
.name-grid { list-style: none; display: grid; gap: 10px; margin: 18px 0 0;
  grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 980px) { .name-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 700px)  { .name-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 420px)  { .name-grid { grid-template-columns: 1fr; } }
.name-card { display: flex; flex-direction: column; }
/* The whole card is the copy button: on a page whose only job is handing you a name, the click
   target for taking one should be the name itself, not an icon beside it. */
.name-copy { position: relative; display: flex; align-items: center; justify-content: space-between;
  gap: 8px; width: 100%; text-align: left; font: inherit; cursor: pointer;
  background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 13px 14px;
  transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease; }
.name-copy:hover { border-color: var(--cyan); box-shadow: 0 6px 16px rgba(23,184,196,.18); transform: translateY(-1px); }
.name-txt { font-family: var(--font-display); font-weight: 500; font-size: 1.05rem; color: var(--navy-dark);
  line-height: 1.25; overflow-wrap: anywhere; }
.name-ico { flex: none; color: var(--ink-soft); opacity: 0; transition: opacity .15s ease; }
.name-copy:hover .name-ico, .name-copy:focus-visible .name-ico { opacity: .8; }
.name-copy.is-copied { border-color: var(--cyan); background: #e6fafb; }
.name-copy.is-copied .name-ico { display: none; }
.name-copy.is-copied::after { content: attr(data-copied); font-size: .74rem; font-weight: 700;
  color: var(--cyan-dark); text-transform: uppercase; letter-spacing: .06em; flex: none; }
.name-kind { align-self: flex-start; margin: 5px 0 0 3px; font-size: .74rem; font-weight: 600;
  color: var(--ink-soft); text-decoration: none; }
.name-kind:hover { color: var(--cyan-dark); text-decoration: underline; }
.tool-foot { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 12px; margin-top: 16px; }
.tool-note { font-size: .84rem; color: var(--ink-soft); margin: 0; max-width: 62ch; line-height: 1.55; }
.tool-seed { display: inline-block; margin-left: 4px; }
.tool-seed code { font-family: ui-monospace, 'Cascadia Mono', Menlo, monospace; font-size: .84rem;
  background: #e9f0fa; border-radius: 6px; padding: 1px 7px; color: var(--navy-dark); }
.tool-actions { display: flex; flex-wrap: wrap; gap: 9px; }

/* ── Buttons shared with the rest of the site ───────────────────────────────── */
.dl-btn { display: inline-flex; align-items: center; gap: 6px; background: #fff; border: 1px solid var(--line);
  border-radius: 999px; padding: 8px 15px; font: inherit; font-size: .82rem; font-weight: 700;
  color: var(--navy); text-decoration: none; cursor: pointer; line-height: 1;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease; }
.dl-btn svg { flex: none; }
.dl-btn:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(29,58,107,.16); }
.dl-btn.primary { background: var(--navy); border-color: var(--navy); color: #fff; }
.dl-btn.primary:hover { background: var(--navy-dark); border-color: var(--navy-dark); }

/* ── Section headings, cards, pills ─────────────────────────────────────────── */
.sec-h { display: flex; align-items: center; gap: 9px; margin: 34px 0 6px; color: var(--navy-dark);
  font-size: 1.34rem; font-weight: 600; }
.sec-h svg { color: var(--cyan-dark); flex: none; }
.sec-note { color: var(--ink-soft); font-size: .92rem; margin-bottom: 16px; line-height: 1.6; }
.gen-block { margin-top: 10px; }
.gen-cards { display: grid; gap: 14px; grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 6px; }
.gen-cards-lg { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 22px; }
@media (max-width: 760px) { .gen-cards, .gen-cards-lg { grid-template-columns: 1fr; } }
.gen-card { display: flex; align-items: flex-start; gap: 13px; background: var(--paper);
  border: 1px solid var(--line); border-radius: 16px; padding: 15px 17px; text-decoration: none;
  color: inherit; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.gen-card:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(29,58,107,.14); border-color: #b7d7ee; }
.gen-card-ico { flex: none; display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 12px; background: #e7f1fb; color: var(--navy); }
.gen-card-body { display: flex; flex-direction: column; gap: 5px; min-width: 0; }
.gen-card-title { font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; color: var(--navy-dark); line-height: 1.25; }
.gen-card-desc { color: var(--ink-soft); font-size: .87rem; line-height: 1.55;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.gen-card-meta { color: var(--cyan-dark); font-size: .78rem; font-weight: 700; }
.gen-card-meta .dot { margin: 0 5px; opacity: .5; color: var(--ink-soft); }
.pills { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin: 22px 0 8px; }
.pill { display: inline-flex; align-items: center; gap: 8px; background: #fff; border: 1px solid var(--line);
  border-radius: 999px; padding: 9px 16px; text-decoration: none; color: var(--navy-dark); font-weight: 500; font-size: .95rem;
  transition: transform .15s ease, box-shadow .15s ease; }
.pill svg { color: var(--cyan-dark); }
.pill:hover { border-color: var(--cyan); box-shadow: 0 4px 12px rgba(23,184,196,.18); transform: translateY(-1px); }
.pills .pill:nth-child(5n+1) { background: #e9f1fb; border-color: #cadff2; }
.pills .pill:nth-child(5n+2) { background: #e4f8fa; border-color: #bde9ee; }
.pills .pill:nth-child(5n+3) { background: #fdf3df; border-color: #f5e0b0; }
.pills .pill:nth-child(5n+4) { background: #fdeaf0; border-color: #f5c7d5; }
.pills .pill:nth-child(5n+5) { background: #eceafb; border-color: #d3cef2; }

/* ── The curated fifty ──────────────────────────────────────────────────────── */
.picks { margin-top: 8px; }
.pick-list { list-style: none; counter-reset: pick; display: grid; gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 4px; }
@media (max-width: 860px) { .pick-list { grid-template-columns: 1fr; } }
.pick { position: relative; background: var(--paper); border: 1px solid var(--line);
  border-radius: 16px; padding: 14px 17px 15px; counter-increment: pick; }
.pick::before { content: counter(pick); position: absolute; top: 14px; right: 16px;
  font-size: .72rem; font-weight: 700; color: var(--ink-soft); opacity: .45; }
.pick-name { display: inline-flex; align-items: center; gap: 7px; background: none; border: 0;
  padding: 0; font: inherit; cursor: pointer; }
.pick-name span { font-family: var(--font-display); font-weight: 600; font-size: 1.1rem;
  color: var(--navy-dark); line-height: 1.2; border-bottom: 2px dotted #b7d7ee; }
.pick-name:hover span { color: var(--cyan-dark); border-bottom-color: var(--cyan); }
.pick-desc { color: var(--ink); font-size: .9rem; line-height: 1.6; margin-top: 7px; }

/* ── Question block (C16: one question-shaped H2 with a direct answer) ──────── */
.qa { background: #e9f1fb; border: 1px solid #cadff2; border-radius: 18px;
  padding: 22px 26px; margin-top: 30px; }
.qa h2 { color: var(--navy-dark); font-size: 1.2rem; font-weight: 600; margin-bottom: 8px; }
.qa p { line-height: 1.75; color: var(--ink); }

/* ── Prose + how it works ───────────────────────────────────────────────────── */
.prose { background: var(--paper); border: 1px solid var(--line); border-radius: 18px;
  padding: 24px 28px; margin-top: 30px; line-height: 1.75; color: var(--ink); }
.prose h2, .prose h3 { color: var(--navy-dark); margin: 20px 0 8px; font-weight: 600; }
.prose h2 { font-size: 1.25rem; }
.prose h3 { font-size: 1.08rem; }
.prose h2:first-child, .prose h3:first-child { margin-top: 0; }
.prose p { margin-bottom: 12px; }
.prose p:last-child { margin-bottom: 0; }
.prose ul, .prose ol { margin: 0 0 12px 22px; }
.how { background: var(--paper); border: 1px solid var(--line); border-radius: 18px; padding: 24px 28px; margin-top: 32px; }
.how h2 { color: var(--navy-dark); margin-bottom: 12px; font-size: 1.25rem; font-weight: 600; }
.how ol { padding-left: 22px; color: var(--ink-soft); line-height: 2; }

/* ── FAQ accordions. Symmetric filled cards: no left-border accent stripes. ─── */
.faq { margin-top: 32px; }
.faq .sec-h { margin-bottom: 14px; }
.faq-item { background: var(--paper); border: 1px solid var(--line); border-radius: 16px;
  margin-bottom: 10px; overflow: hidden; }
.faq-item summary { display: flex; align-items: center; gap: 10px; padding: 15px 20px;
  cursor: pointer; list-style: none; font-family: var(--font-display); font-weight: 500;
  font-size: 1.02rem; color: var(--navy-dark); transition: background .15s ease; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::before { content: ""; flex: none; width: 9px; height: 9px;
  border-right: 2.2px solid var(--cyan-dark); border-bottom: 2.2px solid var(--cyan-dark);
  transform: rotate(-45deg); transition: transform .2s ease; margin-top: -2px; }
.faq-item[open] summary::before { transform: rotate(45deg); margin-top: -6px; }
.faq-item summary:hover { background: #f1f6fc; }
.faq-item[open] summary { border-bottom: 1px solid var(--line); background: #f6faff; }
.faq-a { padding: 14px 20px 16px; color: var(--ink); line-height: 1.7; }
.faq-a p { margin: 0 0 10px; }
.faq-a p:last-child { margin-bottom: 0; }
.faq-a a { color: var(--navy); text-decoration: underline;
  text-decoration-color: #9fc7e6; text-underline-offset: 3px; }
.faq-a a:hover { color: var(--cyan-dark); text-decoration-color: currentColor; }

/* ── Share row ──────────────────────────────────────────────────────────────── */
.share-row { display: flex; align-items: center; gap: 9px; flex-wrap: wrap; margin-top: 22px; }
.share-btn { display: inline-flex; align-items: center; gap: 7px; background: #fff;
  border: 1px solid var(--line); border-radius: 999px; padding: 8px 15px;
  font: inherit; font-size: .84rem; font-weight: 600; color: var(--ink);
  text-decoration: none; cursor: pointer; line-height: 1;
  transition: color .15s ease, border-color .15s ease, box-shadow .15s ease, transform .15s ease; }
.share-btn svg { flex: none; }
.share-btn:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0,0,0,.08); }
.sb-pin:hover  { color: #bd081c; border-color: #bd081c; }
.sb-fb:hover   { color: #1877f2; border-color: #1877f2; }
.sb-wa:hover   { color: #25d366; border-color: #25d366; }
.sb-copy:hover { color: var(--navy); border-color: var(--cyan); }

/* ── Forms ──────────────────────────────────────────────────────────────────── */
.sp-body form { margin-top: 26px; }
.sp-body form label { display: block; margin: 16px 0 6px; font-weight: 600; font-size: .92rem;
  color: var(--navy-dark); }
.sp-body form input[type="text"], .sp-body form input[type="email"], .sp-body form textarea {
  display: block; width: 100%; padding: 11px 13px; border: 1px solid var(--line);
  border-radius: 10px; font: inherit; background: #fff; color: var(--ink); box-sizing: border-box; }
.sp-body form input:focus, .sp-body form textarea:focus { outline: 0; border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(23,184,196,.16); }
.sp-body form textarea { min-height: 160px; resize: vertical; line-height: 1.6; }
.sp-body form input[name="website"] { position: absolute; left: -9999px; }   /* honeypot */
.sp-body form button { display: inline-flex; align-items: center; margin-top: 20px;
  background: var(--navy); color: #fff; border: 0; border-radius: 999px; padding: 12px 26px;
  font: inherit; font-weight: 700; cursor: pointer; box-shadow: 0 4px 16px rgba(29,58,107,.32); }
.sp-body form button:hover { background: var(--navy-dark); }
.form-ok { margin-top: 22px; padding: 16px 20px; border-radius: 14px; background: #e6fbf4;
  border: 1px solid #b3ead9; color: #0c6650; }
.form-err { margin-top: 22px; padding: 16px 20px; border-radius: 14px; background: #fdeeee;
  border: 1px solid #f2c3c3; color: #8c2020; }
.sp-body form .cf-turnstile { margin-top: 22px; }

/* ── Static / legal pages ───────────────────────────────────────────────────── */
.static-page { margin: 8px auto 0; background: var(--paper);
  border: 1px solid var(--line); border-radius: 20px; padding: 42px 48px 46px; }
@media (max-width: 700px) { .static-page { padding: 26px 22px 30px; border-radius: 16px; } }
.sp-head { border-bottom: 1px solid var(--line); padding-bottom: 22px; margin-bottom: 26px; }
.sp-head h1 { color: var(--navy-dark); font-size: clamp(1.7rem, 4.2vw, 2.2rem); font-weight: 600;
  letter-spacing: -.02em; line-height: 1.18; }
.sp-lead { margin-top: 12px; color: var(--ink-soft); font-size: 1.05rem; line-height: 1.6; }
.creator-card { display: flex; align-items: center; gap: 14px; background: #fff;
  border: 1px solid var(--line); border-radius: 14px; padding: 12px 16px; margin: 0 0 28px; }
.creator-card img { width: 62px; height: 62px; border-radius: 50%; flex: none;
  background: #eef3fa; padding: 5px; box-sizing: border-box; }
.creator-card span { display: flex; flex-direction: column; line-height: 1.45; }
.creator-card strong { color: var(--navy-dark); font-size: 1.03rem; }
.creator-card em { font-style: normal; color: var(--ink-soft); font-size: .88rem; }
.sp-body { color: var(--ink); font-size: 1.02rem; line-height: 1.78; }
.sp-body > *:first-child { margin-top: 0; }
.sp-body p { margin: 0 0 18px; }
.sp-body h2 { color: var(--navy-dark); font-size: 1.26rem; font-weight: 600; margin: 34px 0 12px;
  padding-top: 6px; line-height: 1.3; }
.sp-body h3 { color: var(--navy-dark); font-size: 1.06rem; margin: 26px 0 8px; }
.sp-body ul, .sp-body ol { margin: 0 0 20px; padding-left: 4px; list-style: none; }
.sp-body ol { counter-reset: sp; }
.sp-body li { position: relative; padding-left: 26px; margin-bottom: 9px; }
.sp-body ul > li::before { content: ""; position: absolute; left: 4px; top: .72em;
  width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); }
.sp-body ol > li { counter-increment: sp; }
.sp-body ol > li::before { content: counter(sp); position: absolute; left: 0; top: .1em;
  width: 19px; height: 19px; border-radius: 50%; background: var(--navy); color: #fff;
  font-size: .72rem; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.sp-body a { color: var(--navy); text-decoration: underline;
  text-decoration-color: #9fc7e6; text-underline-offset: 3px; }
.sp-body a:hover { color: var(--cyan-dark); text-decoration-color: currentColor; }
.sp-body strong { color: var(--navy-dark); }
.sp-body hr { border: 0; border-top: 1px solid var(--line); margin: 30px 0; }
/* House rule: no left-border stripes on callouts. A symmetric filled card instead. */
.sp-body blockquote { margin: 0 0 20px; padding: 16px 20px; background: #eef4fc;
  border: 1px solid var(--line); border-radius: 14px; color: var(--ink-soft); }
.sp-body > p:last-child > em:only-child { display: block; margin-top: 26px; padding-top: 18px;
  border-top: 1px solid var(--line); color: var(--ink-soft); font-size: .88rem; font-style: normal; }
.sp-more { margin: 40px auto 0; text-align: center; }
.sp-more h2 { color: var(--navy-dark); font-size: 1.1rem; margin-bottom: 4px; font-weight: 600; }

/* ── Footer ─────────────────────────────────────────────────────────────────── */
.site-footer { background: #fff; border-top: 1px solid var(--line); margin-top: auto; }
.footer-cols { display: grid; grid-template-columns: 1.5fr repeat(4, minmax(0, 1fr)); gap: 24px; padding: 34px 20px 22px; }
@media (max-width: 1040px) { .footer-cols { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .fbrand { grid-column: 1 / -1; } }
@media (max-width: 760px) { .footer-cols { grid-template-columns: repeat(2, 1fr); } }
.fbrand { min-width: 0; }
.fbrand .brand { margin-bottom: 12px; }
.fbrand .brand-mark { width: 40px; height: 40px; }
.fbrand .brand-name { font-size: 1.2rem; }
.fbrand-desc { margin: 0 0 12px; max-width: 54ch; color: var(--ink-soft); font-size: .86rem; line-height: 1.6; }
.fbrand-contact { margin: 0; max-width: 54ch; color: var(--ink-soft); font-size: .86rem; line-height: 1.6; }
.fbrand-contact a { color: var(--navy); font-weight: 700; text-decoration: none; white-space: nowrap; }
.fbrand-contact a:hover { color: var(--cyan-dark); text-decoration: underline; }
.fcol h4 { color: var(--navy-dark); font-size: .95rem; margin-bottom: 10px; font-family: var(--font-display); font-weight: 600; }
.fcol a, .fcol .lang-current { display: block; color: var(--ink-soft); text-decoration: none; font-size: .87rem; padding: 4px 0; }
.fcol a:hover { color: var(--cyan-dark); }
.fcol .lang-current { font-weight: 700; color: var(--navy-dark); }
.footer-base { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  border-top: 1px solid var(--line); padding: 14px 20px 22px; color: var(--ink-soft); font-size: .82rem; }

/* Copy feedback on a curated name: a chip beside it, so the name never disappears. */
.pick-name.is-copied span { color: var(--cyan-dark); border-bottom-color: var(--cyan); }
.pick-name.is-copied::after { content: attr(data-copied); margin-left: 8px; font-size: .68rem;
  font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--cyan-dark);
  background: #e6fafb; border-radius: 999px; padding: 3px 9px; }
