/* ==========================================================================
   NoDepositKiwi — No Deposit Bonus Casino NZ 2026
   Theme: royal indigo/violet + electric blue + casino gold. Koru signature motif.
   Body font: system stack (fast). Display font: Space Grotesk (1 webfont).
   ========================================================================== */

:root {
  --bg:        #0a0a18;
  --bg-2:      #0e0e22;
  --surface:   #15142e;
  --surface-2: #1b1a3a;
  --raised:    #232249;
  --border:    rgba(180, 175, 235, 0.12);
  --border-2:  rgba(180, 175, 235, 0.20);

  --violet:   #7b3ff2;
  --violet-2: #a05cff;
  --violet-d: #5a24bd;
  --blue:     #3b6ef5;
  --gold:     #d8ac5a;
  --gold-b:   #ecc978;
  --accent:   #9b8cff;

  --ink:     #0a0a18;
  --text:    #f4f3fb;
  --body:    #c2bede;
  --muted:   #8a86ad;

  --font-display: "Space Grotesk", "Segoe UI", system-ui, sans-serif;
  --font-body: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --radius: 14px;
  --radius-sm: 10px;
  --maxw: 1200px;
  --shadow: 0 10px 30px -12px rgba(0, 0, 0, 0.7);
  --shadow-lg: 0 24px 60px -20px rgba(0, 0, 0, 0.85);
}

* { box-sizing: border-box; }

html, body { max-width: 100%; overflow-x: hidden; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--body);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  /* subtle pounamu ambience */
  background-image:
    radial-gradient(900px 500px at 82% -8%, rgba(123, 63, 242, 0.16), transparent 60%),
    radial-gradient(700px 420px at 6% 4%, rgba(59, 110, 245, 0.10), transparent 55%),
    radial-gradient(600px 400px at 50% 100%, rgba(216, 172, 90, 0.05), transparent 60%);
  background-attachment: fixed;
}

img, svg, video, iframe { max-width: 100%; height: auto; display: block; }
figure { margin: 0; }

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

p, li, td, th, dd, dt, summary, figcaption, a { overflow-wrap: break-word; word-break: break-word; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  overflow-wrap: break-word;
  color: var(--text);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 700;
}

::selection { background: rgba(160, 92, 255, 0.35); color: #fff; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--gold); color: var(--ink);
  padding: 10px 16px; border-radius: 0 0 10px 0; font-weight: 700; z-index: 100;
}
.skip-link:focus { left: 0; }

/* ------------------------------------------------------------------ layout */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

.eyebrow {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  margin: 0 0 14px;
}

.lead { font-size: 1.16rem; color: #d3cfec; }

.note {
  font-size: 0.85rem;
  color: var(--muted);
  border-left: 2px solid var(--gold);
  padding: 4px 0 4px 14px;
  margin: 18px 0;
  font-style: italic;
}

/* -------------------------------------------------------------- buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  border: 0; cursor: pointer;
  border-radius: 999px;
  padding: 13px 22px;
  font-size: 15px;
  letter-spacing: 0.01em;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; }

.btn-claim {
  background: linear-gradient(180deg, var(--violet-2), var(--violet));
  color: #f6f2ff;
  box-shadow: 0 6px 18px -8px rgba(123, 63, 242, 0.95), inset 0 1px 0 rgba(255,255,255,0.22);
}
.btn-claim:hover { transform: translateY(-1px); box-shadow: 0 10px 26px -8px rgba(160, 92, 255, 1), inset 0 1px 0 rgba(255,255,255,0.28); }
.btn-claim:active { transform: translateY(0); }

.btn-gold {
  background: linear-gradient(180deg, var(--gold-b), var(--gold));
  color: var(--ink);
  box-shadow: 0 6px 18px -8px rgba(216, 172, 90, 0.8);
}
.btn-gold:hover { transform: translateY(-1px); }

.btn-ghost {
  background: transparent; color: var(--text);
  border: 1px solid var(--border-2);
}
.btn-ghost:hover { border-color: var(--accent); color: #fff; }

.btn-sm { padding: 9px 16px; font-size: 13px; }
.btn-block { width: 100%; }

/* ---------------------------------------------------------------- header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: saturate(140%) blur(10px);
  background: rgba(10, 10, 24, 0.82);
  border-bottom: 1px solid var(--border);
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; gap: 16px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand:hover { text-decoration: none; }
.brand .mark { width: 40px; height: 40px; flex: 0 0 auto; }
.brand .word {
  font-family: var(--font-display); font-weight: 700; font-size: 20px;
  color: var(--text); letter-spacing: -0.02em; line-height: 1;
}
.brand .word b { color: var(--gold); font-weight: 700; }
.brand .tag {
  display: block; font-family: var(--font-display);
  font-size: 9.5px; letter-spacing: 0.2em; color: var(--accent);
  font-weight: 600; margin-top: 3px;
}

.header-actions { display: flex; align-items: center; gap: 14px; }
.header-cta { padding: 10px 18px; }
.header-cta .cta-short { display: none; }

.pill-18 {
  font-family: var(--font-display); font-weight: 700; font-size: 12px;
  color: var(--gold-b); border: 1px solid var(--gold); border-radius: 999px;
  padding: 5px 12px; letter-spacing: 0.05em;
}

/* ------------------------------------------------------------------- hero */
.hero { padding: 54px 0 26px; }
.hero-grid {
  display: grid; grid-template-columns: 1.35fr 1fr; gap: 40px; align-items: center;
}
.hero h1 {
  font-size: clamp(2rem, 4.6vw, 3.35rem);
  margin: 0 0 18px;
}
.hero h1 .hl { color: var(--gold); }
.hero .lead { margin: 0 0 22px; max-width: 60ch; }

.meta-strip {
  display: flex; flex-wrap: wrap; gap: 10px 10px; margin: 0 0 26px;
}
.meta-chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 999px; padding: 7px 14px; font-size: 13.5px; color: var(--body);
}
.meta-chip b { color: var(--text); font-family: var(--font-display); }
.meta-chip .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }

.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-art {
  background:
    radial-gradient(120% 100% at 70% 20%, rgba(123,63,242,0.22), transparent 60%),
    linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border); border-radius: 22px;
  padding: 18px; box-shadow: var(--shadow-lg);
}

.author-row {
  display: flex; align-items: center; gap: 12px;
  margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--border);
  font-size: 14px; color: var(--muted);
}
.author-av {
  width: 42px; height: 42px; border-radius: 50%; flex: 0 0 auto;
  background: linear-gradient(135deg, var(--violet-2), var(--violet-d));
  display: grid; place-items: center; color: #f6f2ff;
  font-family: var(--font-display); font-weight: 700; font-size: 16px;
}
.author-row b { color: var(--text); font-family: var(--font-display); }

/* ---------------------------------------------------------- content grid */
.layout {
  display: grid; grid-template-columns: minmax(0, 1fr) 336px; gap: 40px;
  padding: 30px 0 60px; align-items: start;
}
.content > section { scroll-margin-top: 84px; }
.content section + section { margin-top: 46px; }

.content h2 {
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  margin: 0 0 8px; position: relative; padding-left: 18px;
}
.content h2::before {
  content: ""; position: absolute; left: 0; top: 0.18em; bottom: 0.18em;
  width: 5px; border-radius: 3px;
  background: linear-gradient(180deg, var(--gold-b), var(--violet));
}
.content h3 {
  font-size: 1.2rem; margin: 30px 0 6px; color: #ebe8f8;
}
.content p { margin: 12px 0; }
.content section > p:first-of-type { margin-top: 14px; }

/* styled lists */
.content ul.check, .content ol.steps { list-style: none; padding: 0; margin: 18px 0; }
.content ul.check li, .content ol.steps li {
  position: relative; padding: 10px 0 10px 40px; border-bottom: 1px solid var(--border);
}
.content ul.check li:last-child, .content ol.steps li:last-child { border-bottom: 0; }
.content ul.check li::before {
  content: "✓"; position: absolute; left: 6px; top: 10px;
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(123, 63, 242, 0.22); color: var(--violet-2);
  display: grid; place-items: center; font-size: 13px; font-weight: 700;
}
.content ol.steps { counter-reset: step; }
.content ol.steps li { counter-increment: step; }
.content ol.steps li::before {
  content: counter(step); position: absolute; left: 4px; top: 9px;
  width: 26px; height: 26px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-b), var(--gold)); color: var(--ink);
  display: grid; place-items: center; font-size: 13px; font-weight: 700;
  font-family: var(--font-display);
}
.content ul.warn { list-style: none; padding: 0; margin: 16px 0; }
.content ul.warn li {
  position: relative; padding: 8px 0 8px 30px;
}
.content ul.warn li::before { content: "⚠"; position: absolute; left: 2px; color: var(--gold-b); }

/* -------------------------------------------------------- casino ranking */
.ranking {
  border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; background: var(--surface); box-shadow: var(--shadow);
  margin: 20px 0 8px;
}
.rank-head {
  display: grid;
  grid-template-columns: 52px 1.5fr 1.4fr 1fr 130px;
  gap: 14px; align-items: center;
  padding: 12px 18px; background: var(--bg-2);
  font-family: var(--font-display); font-size: 11.5px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--muted); border-bottom: 1px solid var(--border);
}
.rank-row {
  display: grid;
  grid-template-columns: 52px 1.5fr 1.4fr 1fr 130px;
  gap: 14px; align-items: center;
  padding: 16px 18px; border-bottom: 1px solid var(--border);
  transition: background 0.15s ease;
}
.rank-row:last-child { border-bottom: 0; }
.rank-row:hover { background: rgba(160, 92, 255, 0.06); }
.rank-row.top { background: linear-gradient(90deg, rgba(216,172,90,0.08), transparent 60%); }

.rank-badge {
  width: 34px; height: 34px; border-radius: 10px; flex: 0 0 auto;
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700; font-size: 15px;
  color: var(--muted); background: var(--raised); border: 1px solid var(--border);
}
.rank-row.top .rank-badge {
  background: linear-gradient(135deg, var(--gold-b), var(--gold)); color: var(--ink); border: 0;
}

.casino-id { display: flex; align-items: center; gap: 12px; min-width: 0; }
.casino-logo {
  width: 46px; height: 46px; border-radius: 12px; flex: 0 0 auto;
  display: grid; place-items: center; color: #fff;
  font-family: var(--font-display); font-weight: 700; font-size: 15px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.22), 0 4px 10px -4px rgba(0,0,0,0.5);
}
.casino-name { font-family: var(--font-display); font-weight: 700; color: var(--text); font-size: 16px; }
.casino-sub { font-size: 12.5px; color: var(--muted); }
.casino-sub .lic { color: var(--accent); }

.welcome { font-weight: 600; color: #ebe8f8; font-size: 14.5px; }
.welcome small { display: block; color: var(--muted); font-weight: 400; font-size: 12px; }

.free-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(123, 63, 242, 0.16); color: var(--violet-2);
  border: 1px solid rgba(123, 63, 242, 0.40);
  border-radius: 999px; padding: 5px 12px; font-size: 12.5px; font-weight: 700;
  font-family: var(--font-display);
}

.rank-cell.cta { display: flex; justify-content: flex-end; }
.rank-label { display: none; } /* shown only on mobile card mode */

/* -------------------------------------------------------------- data table */
.table-scroll {
  overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius);
  margin: 20px 0; -webkit-overflow-scrolling: touch;
  background: var(--surface); max-width: 100%;
}
table.data {
  width: 100%; border-collapse: collapse; min-width: 520px; font-size: 14.5px;
}
table.data caption { text-align: left; color: var(--muted); font-size: 13px; padding: 10px 16px 0; }
table.data th, table.data td { padding: 12px 16px; text-align: left; }
table.data thead th {
  font-family: var(--font-display); font-size: 12px; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--accent); background: var(--bg-2);
  border-bottom: 1px solid var(--border-2); white-space: nowrap;
}
table.data tbody tr { border-bottom: 1px solid var(--border); }
table.data tbody tr:last-child { border-bottom: 0; }
table.data tbody tr:nth-child(even) { background: rgba(255,255,255,0.015); }
table.data td:first-child { color: var(--text); font-weight: 600; }
table.data .pro { color: var(--accent); }
table.data .con { color: #e88a9e; }

/* --------------------------------------------------------------- callout */
.rg-callout {
  border: 1px solid rgba(216, 172, 90, 0.45);
  background:
    linear-gradient(180deg, rgba(216,172,90,0.10), rgba(216,172,90,0.03));
  border-radius: var(--radius); padding: 22px 24px; margin: 22px 0;
  display: grid; grid-template-columns: auto 1fr; gap: 18px; align-items: start;
}
.rg-callout .rg-icon {
  width: 46px; height: 46px; border-radius: 12px; flex: 0 0 auto;
  background: linear-gradient(135deg, var(--gold-b), var(--gold)); color: var(--ink);
  display: grid; place-items: center; font-size: 24px;
}
.rg-callout h3 { margin: 0 0 6px; color: var(--gold-b); font-size: 1.15rem; }
.rg-callout p { margin: 6px 0; color: #e7dcc4; }
.rg-callout a { color: var(--gold-b); font-weight: 700; }
.rg-callout .hot { font-family: var(--font-display); font-weight: 700; color: #fff; }

.art-figure {
  border: 1px solid var(--border); border-radius: var(--radius);
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  padding: 12px; margin: 22px 0; overflow: hidden;
}
.art-figure img { border-radius: 8px; width: 100%; }
.art-figure figcaption { color: var(--muted); font-size: 12.5px; text-align: center; padding: 10px 4px 2px; }

/* --------------------------------------------------------------- sidebar */
.aside { position: sticky; top: 84px; display: grid; gap: 20px; }

.widget {
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border-2); border-radius: 18px;
  box-shadow: var(--shadow); overflow: hidden;
}
.widget-head {
  padding: 16px 18px 12px; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.widget-head h2, .widget-head h3 {
  font-size: 15px; margin: 0; letter-spacing: 0.02em; padding: 0;
}
.widget-head h2::before { display: none; }
.widget-head .flame { color: var(--gold-b); font-size: 12px; font-weight: 700; font-family: var(--font-display); }

.bonus-item {
  display: grid; grid-template-columns: 44px 1fr auto; gap: 12px; align-items: center;
  padding: 14px 16px; border-bottom: 1px solid var(--border);
}
.bonus-item:last-child { border-bottom: 0; }
.bonus-logo {
  width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center; color: #fff;
  font-family: var(--font-display); font-weight: 700; font-size: 14px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.22);
}
.bonus-info { min-width: 0; }
.bonus-info .bn { font-family: var(--font-display); font-weight: 700; color: var(--text); font-size: 15px; line-height: 1.2; }
.bonus-info .bo { font-size: 12.5px; color: var(--muted); margin-top: 2px; }

.widget.rg {
  padding: 18px; text-align: center;
}
.widget.rg .rg-num { font-family: var(--font-display); font-weight: 700; font-size: 20px; color: var(--gold-b); }
.widget.rg p { margin: 6px 0; font-size: 13.5px; }
.widget.rg .small { color: var(--muted); font-size: 12px; }

/* ---------------------------------------------------------------- footer */
.site-footer {
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.25));
  padding: 50px 0 30px; margin-top: 20px;
}
.foot-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 34px;
}
.foot-brand .mark { width: 44px; height: 44px; margin-bottom: 12px; }
.foot-brand p { font-size: 14px; color: var(--muted); max-width: 34ch; }
.site-footer h4 {
  font-family: var(--font-display); font-size: 12.5px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--accent); margin: 0 0 14px;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin: 8px 0; }
.site-footer li a { color: var(--body); font-size: 14.5px; }
.site-footer li a:hover { color: #fff; text-decoration: none; }

.foot-bottom {
  margin-top: 36px; padding-top: 22px; border-top: 1px solid var(--border);
  display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: space-between;
  font-size: 12.5px; color: var(--muted);
}
.foot-bottom .rg-line { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.foot-bottom .badge18 {
  border: 1px solid var(--gold); color: var(--gold-b); border-radius: 999px;
  padding: 3px 10px; font-weight: 700; font-family: var(--font-display); font-size: 11.5px;
}
.disclaimer {
  background: var(--surface); border: 1px solid var(--border); border-radius: 12px;
  padding: 16px 18px; font-size: 12.5px; color: var(--muted); margin-top: 24px; line-height: 1.6;
}

/* ============================================================ RESPONSIVE */
@media (max-width: 1080px) {
  .layout { grid-template-columns: 1fr; }
  .aside { position: static; display: grid; gap: 20px; max-width: 560px; margin: 8px auto 0; }
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 26px; }
  .hero-art { display: none; }
  .pill-18 { display: none; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 26px; }
  .foot-brand { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .hero { padding: 34px 0 14px; }
  .aside { grid-template-columns: 1fr; }

  /* MAIN CASINO TABLE -> vertical cards */
  .rank-head { display: none; }
  .ranking { background: transparent; border: 0; box-shadow: none; overflow: visible; }
  .rank-row {
    grid-template-columns: 1fr; gap: 12px;
    background: var(--surface); border: 1px solid var(--border-2);
    border-radius: var(--radius); margin-bottom: 14px; padding: 16px;
    box-shadow: var(--shadow); position: relative;
  }
  .rank-row:last-child { border-bottom: 1px solid var(--border-2); }
  .rank-row.top { background: linear-gradient(180deg, rgba(216,172,90,0.10), var(--surface)); }
  .rank-row .rank-badge { position: absolute; top: 16px; right: 16px; }
  .rank-row .casino-id { padding-right: 44px; }
  .rank-cell { display: flex; align-items: center; justify-content: space-between; gap: 12px;
    border-top: 1px dashed var(--border); padding-top: 10px; }
  .rank-label {
    display: inline; font-family: var(--font-display); font-size: 11px;
    letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted);
  }
  .rank-cell.cta { border-top: 0; padding-top: 4px; }
  .rank-cell.cta .btn { width: 100%; }
  .welcome small { display: inline; }

  /* DATA TABLES -> stacked cards (no horizontal scrolling anywhere) */
  .table-scroll {
    overflow-x: visible; border: 0; background: transparent;
    border-radius: 0; margin: 18px 0;
  }
  table.data { min-width: 0; width: 100%; display: block; font-size: 15px; }
  table.data thead { display: none; }
  table.data tbody { display: block; }
  table.data tbody tr {
    display: block; width: 100%;
    background: var(--surface); border: 1px solid var(--border-2);
    border-radius: var(--radius); box-shadow: var(--shadow);
    margin: 0 0 14px; padding: 6px 16px 12px;
  }
  table.data tbody tr:nth-child(even) { background: var(--surface); }
  table.data tbody tr:last-child { margin-bottom: 0; }
  table.data td {
    display: block; width: 100%; padding: 10px 0;
    border-bottom: 1px dashed var(--border); white-space: normal;
  }
  table.data td:last-child { border-bottom: 0; }
  table.data td::before {
    content: attr(data-label);
    display: block; margin-bottom: 3px;
    font-family: var(--font-display); font-size: 11px; font-weight: 600;
    letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted);
  }
  /* first cell acts as the card title */
  table.data td:first-child {
    padding-top: 12px; font-size: 17px; font-weight: 700;
    font-family: var(--font-display); color: var(--text);
  }
  table.data td:first-child::before { color: var(--accent); }

  /* figures and callouts stay inside the viewport */
  .art-figure { max-width: 100% !important; margin-left: 0 !important; margin-right: 0 !important; }
  .rg-callout { grid-template-columns: 1fr; padding: 18px; }
  .foot-grid { grid-template-columns: 1fr; }
  .foot-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 460px) {
  .wrap { padding: 0 15px; }
  .brand .tag { display: none; }
  .brand .word { font-size: 18px; }
  .header-cta { padding: 9px 14px; font-size: 12.5px; }
  .header-cta .cta-full { display: none; }
  .header-cta .cta-short { display: inline; 
  /* stack hero buttons so nothing can overhang a narrow screen */
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; white-space: normal; }
  .aside { max-width: 100%; }
  .bonus-item { gap: 10px; padding: 13px 14px; }
  .widget-head { padding: 14px 14px 11px; }
  .rank-row { padding: 14px; }
  table.data tbody tr { padding: 4px 13px 10px; }
}
  .site-header .wrap { gap: 10px; }
  .meta-chip { font-size: 12.5px; padding: 6px 11px; }
  .rg-callout { grid-template-columns: 1fr; }
}

/* ---------------------------------------------------- intro / quick answer */
.quick-answer {
  border: 1px solid rgba(216, 172, 90, 0.40);
  background: linear-gradient(180deg, rgba(216,172,90,0.10), rgba(216,172,90,0.03));
  border-radius: var(--radius); padding: 18px 22px; margin: 20px 0;
}
.quick-answer p { margin: 0; color: #efe4cc; }
.quick-answer b { color: var(--gold-b); }

.author-bio {
  display: grid; grid-template-columns: auto 1fr; gap: 16px; align-items: start;
  border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--surface); padding: 18px 20px; margin: 22px 0;
}
.author-bio p { margin: 0; font-size: 14.5px; color: var(--body); }
.author-bio .ab-name {
  font-family: var(--font-display); font-weight: 700; color: var(--text);
  font-size: 16px; margin-bottom: 4px;
}
.author-bio .ab-name span {
  display: block; font-size: 12.5px; font-weight: 500; color: var(--accent);
  letter-spacing: 0.04em;
}

/* ------------------------------------------------------------------- FAQ */
.faq {
  border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--surface); overflow: hidden; margin: 20px 0;
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: 0; }
.faq-item > summary {
  cursor: pointer; list-style: none; position: relative;
  padding: 16px 56px 16px 18px;
  font-family: var(--font-display); font-weight: 600; font-size: 16px;
  color: var(--text); transition: background 0.15s ease;
}
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item > summary:hover { background: rgba(160, 92, 255, 0.06); }
.faq-item > summary::after {
  content: "+"; position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
  width: 26px; height: 26px; border-radius: 50%;
  background: rgba(123, 63, 242, 0.20); color: var(--violet-2);
  display: grid; place-items: center; font-size: 17px; font-weight: 700; line-height: 1;
}
.faq-item[open] > summary::after { content: "\2212"; }
.faq-item[open] > summary { background: rgba(160, 92, 255, 0.05); }
.faq-answer { padding: 0 18px 16px; }
.faq-answer p { margin: 0; color: var(--body); font-size: 15.5px; }

@media (max-width: 460px) {
  .author-bio { grid-template-columns: 1fr; }
}

/* --------------------------------------------- very narrow phones (<=380px) */
@media (max-width: 380px) {
  .site-header .wrap { gap: 8px; }
  .brand { gap: 9px; }
  .brand .mark { width: 34px; height: 34px; }
  .brand .word { font-size: 16px; }
  .header-cta { padding: 8px 12px; font-size: 12px; }
  .hero h1 { font-size: 1.75rem; }
  .rg-callout { padding: 16px; }
  .faq-item > summary { padding: 14px 48px 14px 14px; font-size: 15px; }
  .faq-answer { padding: 0 14px 14px; }
  table.data td:first-child { font-size: 16px; }
}
