/* =====================================================================
 * STORY LOADOUT — public site
 * Design tokens lifted straight from Story Loadout HQ (css/app.css +
 * story-loadout-ui.css) so the site and the internal tools read as one
 * system. Retune everything from the :root block below.
 * ===================================================================== */

:root {
  /* Surfaces */
  --ink:   #0B0D10;   /* page background */
  --ink-2: #14171C;   /* panels, cards */
  --ink-3: #1E222A;   /* borders, dividers */
  --ink-4: #2A3040;   /* hover borders, scrollbar */

  /* Text */
  --bone:   #F4F1EA;  /* primary / headings */
  --bone-2: #C9C5B6;  /* body copy */
  --mist:   #A7AEC0;  /* secondary */
  --muted:  #6B7385;  /* meta, labels */

  /* Accent */
  --signal:     #F5DA3F;
  --signal-ink: #2A2410;
  --signal-2:   #FFE85C;

  /* Support */
  --info:   #4FE3D6;
  --ok:     #34D399;
  --danger: #F87171;

  /* Type */
  --font: 'Geist', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --mono: 'Geist Mono', ui-monospace, 'SFMono-Regular', monospace;

  /* Shape */
  --r-sm: 5px;
  --r-md: 8px;
  --r-lg: 12px;
  --r-xl: 18px;
  --r-pill: 999px;

  --shadow-md: 0 10px 30px -8px rgba(0,0,0,0.45);
  --shadow-lg: 0 24px 60px -16px rgba(0,0,0,0.6);

  /* Layout */
  --wrap: 1120px;
  --wrap-narrow: 760px;
  --nav-h: 64px;
}

/* =====================================================================
 * RESET / BASE
 * ===================================================================== */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 20px); }

body {
  margin: 0;
  background: var(--ink);
  color: var(--bone-2);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg, video { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  color: var(--bone);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 0;
}

a { color: var(--signal); text-decoration: none; transition: color 120ms ease; }
a:hover { color: var(--signal-2); }

p { margin: 0; }

button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

::selection { background: rgba(245, 218, 63, 0.3); }

* { scrollbar-width: thin; scrollbar-color: var(--ink-4) transparent; }
*::-webkit-scrollbar { width: 9px; height: 9px; }
*::-webkit-scrollbar-track { background: transparent; }
*::-webkit-scrollbar-thumb { background: var(--ink-4); border-radius: var(--r-pill); }
*::-webkit-scrollbar-thumb:hover { background: #3a4055; }

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

/* =====================================================================
 * SHARED PRIMITIVES
 * ===================================================================== */
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.wrap--narrow { max-width: var(--wrap-narrow); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font: 600 11px/1 var(--mono);
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted);
}
.eyebrow .tick { color: var(--signal); }

.section { padding: 72px 0; }
.section--tight { padding: 48px 0; }
.section-head { max-width: 620px; margin-bottom: 36px; }
.section-head h2 { font-size: clamp(24px, 3.4vw, 34px); margin: 14px 0 12px; }
.section-head p { color: var(--mist); font-size: 15px; }

.hr { border: 0; border-top: 1px solid var(--ink-3); margin: 0; }

/* Buttons ------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 11px 18px;
  border-radius: var(--r-sm);
  font: 700 13.5px/1 var(--font);
  letter-spacing: -0.005em;
  white-space: nowrap;
  border: 1px solid transparent;
  transition: background 120ms ease, border-color 120ms ease, color 120ms ease, transform 120ms ease;
}
.btn:active { transform: translateY(1px); }
.btn svg { width: 16px; height: 16px; }

.btn--primary { background: var(--signal); color: var(--signal-ink); border-color: var(--signal); }
.btn--primary:hover { background: var(--signal-2); border-color: var(--signal-2); color: var(--signal-ink); }

.btn--secondary { background: var(--ink-2); color: var(--bone); border-color: var(--ink-3); }
.btn--secondary:hover { background: var(--ink-3); border-color: var(--ink-4); color: var(--bone); }

.btn--ghost { background: transparent; color: var(--mist); }
.btn--ghost:hover { background: var(--ink-2); color: var(--bone); }

.btn--lg { padding: 14px 24px; font-size: 15px; }
.btn--sm { padding: 8px 13px; font-size: 12.5px; }

/* Tag / badge ------------------------------------------------------- */
.tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 9px; border-radius: var(--r-sm);
  font: 700 10px/1 var(--mono); letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--mist); background: rgba(167,174,192,0.12);
}
.tag .dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.tag--signal { color: var(--signal); background: rgba(245,218,63,0.14); }
.tag--info   { color: var(--info);   background: rgba(79,227,214,0.12); }
.tag--ok     { color: var(--ok);     background: rgba(52,211,153,0.14); }
.tag--danger { color: var(--danger); background: rgba(248,113,113,0.14); }

/* =====================================================================
 * HEADER / NAV
 * ===================================================================== */
#sl-header { display: block; min-height: var(--nav-h); }

.site-header {
  position: sticky; top: 0; z-index: 50;
  height: var(--nav-h);
  background: rgba(11, 13, 16, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--ink-3);
  transition: box-shadow 160ms ease;
}
.site-header.is-scrolled { box-shadow: var(--shadow-md); }
.site-header .wrap { display: flex; align-items: center; gap: 20px; height: 100%; }

.brand { display: inline-flex; align-items: center; gap: 11px; color: var(--bone); flex-shrink: 0; }
.brand:hover { color: var(--bone); }
.brand__mark { width: 26px; height: 26px; color: var(--signal); flex-shrink: 0; }
.brand__mark svg { width: 100%; height: 100%; display: block; }
.brand__word { font: 800 16px/1 var(--font); letter-spacing: -0.025em; }
.brand__word span { color: var(--muted); }

.nav { display: flex; align-items: center; gap: 4px; margin-left: 8px; }
.nav a {
  padding: 8px 12px; border-radius: var(--r-md);
  font: 600 13.5px/1 var(--font); color: var(--mist);
  transition: color 120ms ease, background 120ms ease;
}
.nav a:hover { color: var(--bone); background: var(--ink-2); }
.nav a.is-active { color: var(--bone); background: var(--ink-3); }

.header-actions { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.tebex svg { width: 15px; height: 15px; }
.tebex[aria-disabled="true"] { cursor: default; opacity: 0.92; }
.tebex[aria-disabled="true"]:hover { background: var(--signal); border-color: var(--signal); }
.header-social { display: flex; align-items: center; gap: 2px; }
.header-social a {
  width: 34px; height: 34px; display: grid; place-items: center;
  color: var(--muted); border-radius: var(--r-md);
  transition: color 120ms ease, background 120ms ease;
}
.header-social a:hover { color: var(--bone); background: var(--ink-2); }
.header-social svg { width: 17px; height: 17px; }

.nav-toggle { display: none; width: 38px; height: 38px; border-radius: var(--r-md); color: var(--bone); }
.nav-toggle:hover { background: var(--ink-2); }
.nav-toggle svg { width: 20px; height: 20px; }

/* mobile menu panel */
.mobile-menu { display: none; }

@media (max-width: 860px) {
  .nav, .header-social { display: none; }
  .nav-toggle { display: grid; place-items: center; }
  .mobile-menu {
    display: block; position: fixed; inset: var(--nav-h) 0 auto 0; z-index: 49;
    background: var(--ink-2); border-bottom: 1px solid var(--ink-3);
    transform: translateY(-120%); transition: transform 200ms ease;
    box-shadow: var(--shadow-lg);
  }
  .mobile-menu.is-open { transform: translateY(0); }
  .mobile-menu nav { display: flex; flex-direction: column; padding: 14px; }
  .mobile-menu nav a {
    padding: 13px 14px; border-radius: var(--r-md);
    font: 600 15px/1 var(--font); color: var(--bone-2);
  }
  .mobile-menu nav a:hover, .mobile-menu nav a.is-active { background: var(--ink-3); color: var(--bone); }
  .mobile-menu .mm-social { display: flex; gap: 6px; padding: 10px 14px 18px; }
  .mobile-menu .mm-social a {
    flex: 1; height: 42px; display: grid; place-items: center;
    background: var(--ink); border: 1px solid var(--ink-3); border-radius: var(--r-md); color: var(--mist);
  }
  .mobile-menu .mm-social a:hover { color: var(--bone); border-color: var(--ink-4); }
  .mobile-menu .mm-social svg { width: 18px; height: 18px; }
}

/* =====================================================================
 * HERO
 * ===================================================================== */
.hero { position: relative; padding: 96px 0 84px; overflow: hidden; }
.hero::before, .hero::after {
  content: ""; position: absolute; z-index: 0; border-radius: 50%;
  filter: blur(90px); opacity: 0.5; pointer-events: none;
}
.hero::before { width: 620px; height: 420px; top: -140px; right: -120px;
  background: radial-gradient(closest-side, rgba(245,218,63,0.18), transparent); }
.hero::after { width: 560px; height: 380px; bottom: -180px; left: -160px;
  background: radial-gradient(closest-side, rgba(79,227,214,0.10), transparent); }
.hero .wrap { position: relative; z-index: 1; }

.hero h1 {
  font-size: clamp(38px, 6.4vw, 66px);
  letter-spacing: -0.035em;
  margin: 20px 0 20px;
  max-width: 16ch;
}
.hero h1 em { color: var(--signal); font-style: normal; }
.hero p.lead {
  font-size: clamp(16px, 2.1vw, 19px);
  color: var(--mist); max-width: 52ch; margin-bottom: 32px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.hero-note { margin-top: 20px; font: 500 12.5px/1.5 var(--mono); color: var(--muted); letter-spacing: 0.02em; }

/* =====================================================================
 * FEATURE / CATEGORY GRID
 * ===================================================================== */
.grid { display: grid; gap: 16px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--ink-2);
  border: 1px solid var(--ink-3);
  border-radius: var(--r-lg);
  padding: 22px;
  transition: border-color 140ms ease, transform 140ms ease, background 140ms ease;
}
a.card { color: inherit; display: block; }
a.card:hover { border-color: var(--ink-4); transform: translateY(-2px); }

.card--accent { border-top: 2px solid var(--signal); }
.card__icon {
  width: 40px; height: 40px; border-radius: var(--r-md);
  display: grid; place-items: center; margin-bottom: 16px;
  background: rgba(245,218,63,0.12); color: var(--signal);
}
.card__icon svg { width: 20px; height: 20px; }
.card h3 { font-size: 17px; margin-bottom: 8px; }
.card p { font-size: 14px; color: var(--mist); line-height: 1.6; }
.card__meta { margin-top: 14px; font: 600 11px/1 var(--mono); letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }

/* =====================================================================
 * POST / GUIDE LIST
 * ===================================================================== */
.post-list { display: flex; flex-direction: column; }
.post-row {
  display: grid; grid-template-columns: 140px 1fr; gap: 28px;
  padding: 26px 0; border-top: 1px solid var(--ink-3);
  color: inherit;
}
.post-list .post-row:first-child { border-top: 0; }
.post-row:hover h3 { color: var(--signal); }
.post-row__date { font: 600 12px/1.5 var(--mono); letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }
.post-row__body h3 { font-size: 20px; margin-bottom: 8px; transition: color 120ms ease; }
.post-row__body p { color: var(--mist); font-size: 14.5px; }
.post-row__tags { display: flex; gap: 8px; margin-top: 14px; flex-wrap: wrap; }

/* Guide groups */
.guide-group + .guide-group { margin-top: 44px; }
.guide-group__head { display: flex; align-items: baseline; gap: 12px; margin-bottom: 18px; }
.guide-group__head h3 { font-size: 15px; font-family: var(--mono); font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mist); }
.guide-group__head .count { font: 600 11px/1 var(--mono); color: var(--muted); }

/* =====================================================================
 * ARTICLE / PROSE
 * ===================================================================== */
.article-head { padding: 56px 0 32px; border-bottom: 1px solid var(--ink-3); }
.article-head .back { display: inline-flex; align-items: center; gap: 7px; font: 600 12.5px/1 var(--mono); letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); margin-bottom: 26px; }
.article-head .back:hover { color: var(--bone); }
.article-head h1 { font-size: clamp(30px, 5vw, 46px); letter-spacing: -0.03em; margin-bottom: 18px; max-width: 22ch; }
.article-head .byline { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 16px; color: var(--muted); font: 500 13px/1 var(--mono); letter-spacing: 0.04em; }
.article-head .byline .sep { width: 4px; height: 4px; border-radius: 50%; background: var(--ink-4); }

.prose { padding: 40px 0 72px; font-size: 16.5px; line-height: 1.75; color: var(--bone-2); }
.prose > * + * { margin-top: 22px; }
.prose h2 { font-size: 24px; margin-top: 48px; letter-spacing: -0.02em; }
.prose h3 { font-size: 18.5px; margin-top: 36px; letter-spacing: -0.015em; }
.prose h2 + p, .prose h3 + p { margin-top: 14px; }
.prose a { text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(245,218,63,0.4); }
.prose strong { color: var(--bone); font-weight: 700; }
.prose ul, .prose ol { padding-left: 22px; }
.prose li { margin-top: 8px; }
.prose li::marker { color: var(--muted); }
.prose blockquote {
  margin: 28px 0; padding: 4px 0 4px 20px;
  border-left: 3px solid var(--signal);
  color: var(--mist); font-style: italic;
}
.prose code {
  font-family: var(--mono); font-size: 0.88em;
  background: var(--ink); border: 1px solid var(--ink-3);
  border-radius: var(--r-sm); padding: 2px 6px; color: var(--bone);
}
.prose pre {
  background: var(--ink); border: 1px solid var(--ink-3);
  border-radius: var(--r-md); padding: 18px 20px; overflow-x: auto;
  font-family: var(--mono); font-size: 13.5px; line-height: 1.7; color: var(--bone-2);
}
.prose pre code { background: none; border: 0; padding: 0; font-size: inherit; color: inherit; }
.prose .callout {
  display: flex; gap: 14px; padding: 18px 20px; border-radius: var(--r-md);
  background: var(--ink-2); border: 1px solid var(--ink-3);
  font-size: 14.5px; color: var(--mist);
}
.prose .callout svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 3px; color: var(--signal); }
.prose .callout--warn { border-color: rgba(245,218,63,0.25); background: rgba(245,218,63,0.05); }
.prose .callout--warn svg { color: var(--signal); }
.prose img { border-radius: var(--r-md); border: 1px solid var(--ink-3); margin: 28px 0; }
.prose hr { border: 0; border-top: 1px solid var(--ink-3); margin: 40px 0; }
.prose figure { margin: 0; }
.prose figcaption { margin-top: 10px; font: 500 12.5px/1.5 var(--mono); color: var(--muted); text-align: center; }

.article-foot {
  margin-top: 20px; padding: 28px; border-radius: var(--r-lg);
  background: var(--ink-2); border: 1px solid var(--ink-3);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px;
}
.article-foot p { color: var(--mist); font-size: 14.5px; max-width: 42ch; }
.article-foot strong { color: var(--bone); }

/* =====================================================================
 * SOCIAL / DISCORD CTA
 * ===================================================================== */
.cta-band {
  position: relative; overflow: hidden;
  border: 1px solid var(--ink-3); border-radius: var(--r-xl);
  background: var(--ink-2); padding: 44px;
}
.cta-band::after {
  content: ""; position: absolute; width: 460px; height: 320px; right: -120px; top: -140px;
  background: radial-gradient(closest-side, rgba(245,218,63,0.16), transparent); filter: blur(70px);
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { font-size: clamp(24px, 3.6vw, 32px); margin: 12px 0 10px; }
.cta-band p { color: var(--mist); max-width: 46ch; margin-bottom: 24px; }

.social-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.social-grid a {
  display: flex; flex-direction: column; gap: 10px;
  padding: 18px; border-radius: var(--r-lg);
  background: var(--ink); border: 1px solid var(--ink-3); color: var(--bone-2);
  transition: border-color 140ms ease, transform 140ms ease, color 140ms ease;
}
.social-grid a:hover { border-color: var(--ink-4); transform: translateY(-2px); color: var(--bone); }
.social-grid svg { width: 24px; height: 24px; }
.social-grid .s-name { font: 700 13px/1 var(--font); color: var(--bone); }
.social-grid .s-handle { font: 500 11.5px/1 var(--mono); color: var(--muted); }
.social-grid .discord:hover { border-color: #5865F2; }
.social-grid .youtube:hover { border-color: #FF0033; }
.social-grid .tiktok:hover { border-color: var(--info); }
.social-grid .instagram:hover { border-color: #E1306C; }

/* =====================================================================
 * FOOTER
 * ===================================================================== */
.site-footer { border-top: 1px solid var(--ink-3); padding: 52px 0 40px; margin-top: 24px; }
.site-footer .cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 40px; }
.site-footer .brand { margin-bottom: 14px; }
.site-footer .tagline { font-size: 13.5px; color: var(--muted); max-width: 32ch; }
.site-footer h4 { font: 600 10px/1 var(--mono); letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.site-footer ul a { color: var(--mist); font-size: 13.5px; }
.site-footer ul a:hover { color: var(--bone); }
.site-footer .foot-base {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px;
  padding-top: 24px; border-top: 1px solid var(--ink-3);
  font: 500 12px/1.5 var(--mono); color: var(--muted); letter-spacing: 0.03em;
}
.site-footer .foot-base .foot-social { display: flex; gap: 4px; }
.site-footer .foot-base .foot-social a { width: 30px; height: 30px; display: grid; place-items: center; color: var(--muted); border-radius: var(--r-sm); }
.site-footer .foot-base .foot-social a:hover { color: var(--bone); background: var(--ink-2); }
.site-footer .foot-base .foot-social svg { width: 15px; height: 15px; }

/* =====================================================================
 * RESPONSIVE
 * ===================================================================== */
@media (max-width: 940px) {
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .social-grid { grid-template-columns: repeat(2, 1fr); }
  .site-footer .cols { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 620px) {
  .section { padding: 56px 0; }
  .hero { padding: 68px 0 60px; }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .social-grid { grid-template-columns: 1fr 1fr; }
  .post-row { grid-template-columns: 1fr; gap: 10px; }
  .post-row__date { order: -1; }
  .cta-band { padding: 30px 22px; }
  .site-footer .cols { grid-template-columns: 1fr 1fr; }
  .wrap { padding: 0 18px; }
}

/* Motion-reduction */
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; scroll-behavior: auto; }
}

/* =====================================================================
 * PRODUCTS, BUNDLES, CONTACT
 * Added when the site moved to being driven by the admin panel.
 * ===================================================================== */

/* Section head with the "all →" button pushed right */
.section-head--row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  max-width: none;
}
.section-head--row > div { max-width: 520px; }

/* ---------- Product / bundle cards ---------- */
.product-card { display: flex; flex-direction: column; }
.product-card__img {
  width: calc(100% + 44px);
  margin: -22px -22px 18px;
  height: 172px;
  object-fit: cover;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  display: block;
  background: var(--ink-3);
}
.product-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 14px;
}
.price {
  color: var(--signal);
  font: 700 15px/1 var(--mono);
  letter-spacing: -0.01em;
}
.price--lg { font-size: 26px; }

.bundle-card { display: flex; flex-direction: column; }
.bundle-list {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  border-top: 1px solid var(--ink-3);
}
.bundle-list li {
  padding: 7px 0;
  border-bottom: 1px dashed var(--ink-3);
  font-size: 13.5px;
}
.bundle-list li:last-child { border-bottom: none; }
.bundle-list a { color: var(--bone-2); text-decoration: none; }
.bundle-list a:hover { color: var(--signal); }

/* ---------- Category filter ---------- */
.cat-filter { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 30px; }
.cat-filter .tag { text-decoration: none; cursor: pointer; transition: border-color .14s, color .14s, background .14s; }
.cat-filter .tag:hover { border-color: var(--mist); color: var(--bone); }
.cat-filter .tag.is-active {
  border-color: var(--signal);
  color: var(--signal);
  background: rgba(245, 218, 63, 0.09);
}
.cat-filter__n { color: var(--muted); margin-left: 2px; }

/* ---------- Product detail hero ---------- */
.product-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
  gap: 40px;
  align-items: center;
  margin-top: 22px;
}
@media (max-width: 860px) { .product-hero { grid-template-columns: 1fr; gap: 28px; } }
.product-hero__text h1 { margin: 16px 0 14px; }
.product-hero__media img {
  width: 100%;
  border-radius: var(--r-xl);
  border: 1px solid var(--ink-3);
  box-shadow: var(--shadow-lg);
  display: block;
}

.buy-band {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin: 26px 0 10px;
  padding: 18px 22px;
  background: var(--ink-2);
  border: 1px solid var(--ink-3);
  border-radius: var(--r-lg);
}

.article-hero {
  width: 100%;
  border-radius: var(--r-lg);
  border: 1px solid var(--ink-3);
  margin: 0 0 30px;
  display: block;
}

/* ---------- Notices / empty states ---------- */
.empty-note {
  text-align: center;
  padding: 46px 24px;
  border: 1px dashed var(--ink-4);
  border-radius: var(--r-lg);
  color: var(--mist);
}
.empty-note p { margin: 0 0 18px; }

.notice {
  padding: 22px 24px;
  border-radius: var(--r-lg);
  border: 1px solid var(--ink-3);
  background: var(--ink-2);
  margin-bottom: 26px;
}
.notice h3 { margin: 0 0 8px; }
.notice p { margin: 0 0 16px; color: var(--bone-2); }
.notice p:last-child { margin-bottom: 0; }
.notice--ok  { border-color: rgba(52, 211, 153, 0.32); }
.notice--ok h3 { color: var(--ok); }
.notice--bad { border-color: rgba(248, 113, 113, 0.32); }
.notice--bad p { color: var(--danger); }

/* ---------- Contact form ---------- */
.contact-form { margin-top: 4px; }
.contact-form .field { margin-bottom: 18px; }
.contact-form label {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}
.contact-form input[type=text],
.contact-form input[type=email],
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  background: var(--ink-2);
  color: var(--bone);
  border: 1px solid var(--ink-4);
  border-radius: var(--r-md);
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.55;
  transition: border-color .14s, box-shadow .14s;
}
.contact-form textarea { resize: vertical; min-height: 170px; }
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--signal);
  box-shadow: 0 0 0 3px rgba(245, 218, 63, 0.13);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--muted); }
.form-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 640px) { .form-2 { grid-template-columns: 1fr; gap: 0; } }

/* Honeypot — off-screen, never shown to a person */
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Bundle pricing — the "was / save" line under a bundle price */
.was { color: var(--muted); font-size: 12.5px; margin-top: 5px; }
.was s { opacity: .75; }
.saving {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 7px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(52, 211, 153, 0.32);
  background: rgba(52, 211, 153, 0.09);
  color: var(--ok);
  font: 600 10.5px/1.5 var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.bundle-list li.muted { color: var(--muted); }
