/*
 * forms.css — GoFindOne
 * Form page styles: post-a-problem.html
 * Imports: colors_and_type.css (must load first)
 * Last updated: 20260516
 *
 * Sections:
 *   1. Reset & base
 *   2. Nav
 *   3. Hero
 *   4. Page body
 *   5. Fields & inputs
 *   6. Prize type cards
 *   7. Work type cards
 *   8. Confidentiality toggle
 *   9. Tier reveal blocks
 *  10. AI assist panel
 *  11. Form actions (submit button, hint)
 *  12. Success screen
 *  13. Animations & utilities
 */


/* ─────────────────────────────────────────────
   1. RESET & BASE
───────────────────────────────────────────── */
* { margin: 0; padding: 0; box-sizing: border-box; }

html, body {
  background: var(--dark-bg);
  color: var(--dark-fg);
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  min-height: 100%;
}

body::after {
  content: ''; position: fixed; inset: 0; pointer-events: none; z-index: 100;
  opacity: 0.05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}


/* ─────────────────────────────────────────────
   2. NAV
───────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 50;
  padding: 18px 48px;
  display: flex; align-items: center; gap: 32px;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 0.5px solid var(--dark-border);
}
.nav-wm {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.06em; font-size: 22px;
  color: var(--dark-fg); text-decoration: none;
}
.nav-wm .dot { color: var(--teal); }
.nav-links { display: flex; gap: 28px; margin-left: auto; align-items: center; }
.nav-link {
  font-family: 'Source Serif 4', serif; font-weight: 400; font-size: 13px;
  color: var(--dark-fg-muted); text-decoration: none; letter-spacing: 0.04em;
  transition: color 220ms ease;
}
.nav-link:hover { color: var(--dark-fg); }
.nav-cta {
  font-family: 'Source Serif 4', serif; font-weight: 500; font-size: 12px;
  color: var(--teal); border: 1px solid rgba(94,200,200,0.4);
  padding: 8px 16px; border-radius: 3px; text-decoration: none; letter-spacing: 0.04em;
  transition: background 220ms ease;
}
.nav-cta:hover { background: rgba(94,200,200,0.08); }


/* ─────────────────────────────────────────────
   3. HERO
───────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 80px 48px 72px;
  border-bottom: 0.5px solid var(--dark-border);
  overflow: hidden;
}
.hero-ocean {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 70% 60% at 100% 50%, rgba(94,200,200,0.07) 0%, transparent 60%),
    linear-gradient(180deg, #0a0a0a 0%, #0c181e 100%);
}
.hero-grid {
  position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(94,200,200,0.025) 1px, transparent 1px),
    linear-gradient(180deg, rgba(94,200,200,0.012) 1px, transparent 1px);
  background-size: 180px 120px;
}
.hero-inner {
  position: relative; z-index: 1;
  max-width: 900px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: end;
}
.hero-eyebrow {
  font-family: 'IBM Plex Mono', monospace; font-size: 10px;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 18px;
}
.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  line-height: 0.95; letter-spacing: 0.04em;
  color: var(--dark-fg);
}
.hero-title em {
  font-family: 'Source Serif 4', serif;
  font-weight: 200; font-style: italic;
  color: var(--teal); letter-spacing: normal;
  text-transform: none; font-size: 0.7em;
}
.hero-sub {
  margin-top: 24px;
  font-family: 'Source Serif 4', serif;
  font-style: italic; font-weight: 300;
  font-size: 16px; color: rgba(244,241,236,0.5);
  line-height: 1.65; max-width: 480px;
}
.hero-proof {
  display: flex; flex-direction: column; gap: 10px;
  padding: 24px 28px;
  background: rgba(244,241,236,0.03);
  border: 0.5px solid var(--dark-border-mid);
  min-width: 220px;
}
.proof-item { display: flex; flex-direction: column; gap: 2px; }
.proof-val {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px; color: var(--teal); letter-spacing: 0.04em;
}
.proof-lbl {
  font-family: 'Source Serif 4', serif; font-weight: 300;
  font-size: 12px; color: var(--dark-fg-dim); line-height: 1.4;
}
.proof-divider { height: 0.5px; background: var(--dark-border); margin: 4px 0; }


/* ─────────────────────────────────────────────
   4. PAGE BODY
───────────────────────────────────────────── */
.body-wrap {
  max-width: 900px; margin: 0 auto;
  padding: 64px 48px 140px;
}

.section-header { margin-bottom: 36px; }
.section-eyebrow {
  font-family: 'IBM Plex Mono', monospace; font-size: 10px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 12px;
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  letter-spacing: 0.05em; line-height: 1.1;
  color: var(--dark-fg);
}
.section-sub {
  margin-top: 10px;
  font-family: 'Source Serif 4', serif; font-style: italic;
  font-weight: 300; font-size: 15px;
  color: var(--dark-fg-muted); line-height: 1.6;
}


/* ─────────────────────────────────────────────
   5. FIELDS & INPUTS
───────────────────────────────────────────── */
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 22px; }
.field:last-of-type { margin-bottom: 0; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 22px; }
.field-row .field { margin-bottom: 0; }

label {
  font-family: 'Source Serif 4', serif; font-weight: 400;
  font-size: 13px; color: var(--dark-fg);
  letter-spacing: 0.02em;
  display: flex; align-items: center; gap: 8px;
}
.req {
  font-family: 'IBM Plex Mono', monospace; font-size: 9px;
  color: var(--teal); letter-spacing: 0.12em;
}
.field-hint {
  font-family: 'Source Serif 4', serif; font-style: italic;
  font-weight: 300; font-size: 12px;
  color: var(--dark-fg-dim); line-height: 1.5;
  margin-top: -2px;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
select {
  width: 100%;
  background: var(--dark-bg-surface);
  border: 0.5px solid var(--dark-border-mid);
  border-radius: 3px;
  padding: 13px 16px;
  font-family: 'Source Serif 4', serif; font-weight: 300;
  font-size: 15px; color: var(--dark-fg);
  transition: border-color 220ms ease, box-shadow 220ms ease;
  outline: none;
  -webkit-appearance: none;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="number"]:focus,
textarea:focus,
select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(94,200,200,0.10);
}
input::placeholder, textarea::placeholder { color: var(--dark-fg-dimmer); }
textarea { resize: vertical; min-height: 120px; line-height: 1.7; }

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b665e' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px; cursor: pointer;
}
select option { background: #161616; color: var(--dark-fg); }

/* Prize amount input */
.prize-wrap { position: relative; }
.prize-prefix {
  position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
  font-family: 'IBM Plex Mono', monospace; font-size: 16px;
  color: var(--prize); pointer-events: none; z-index: 1;
}
.prize-wrap input {
  padding-left: 30px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 16px; color: var(--prize);
}


/* ─────────────────────────────────────────────
   6. PRIZE TYPE CARDS
───────────────────────────────────────────── */
.prize-type-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
  margin-bottom: 8px;
}
.pt-opt { position: relative; cursor: pointer; }
.pt-opt input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }
.pt-card {
  display: flex; flex-direction: column; gap: 6px;
  padding: 18px 16px;
  background: var(--dark-bg-surface);
  border: 1px solid var(--dark-border-mid);
  border-radius: 3px; cursor: pointer;
  transition: border-color 220ms ease, background 220ms ease;
  user-select: none; height: 100%;
}
.pt-opt input:checked + .pt-card {
  border-color: rgba(94,200,200,0.6);
  background: rgba(94,200,200,0.06);
}
.pt-card:hover { border-color: var(--dark-border-strong); }
.pt-opt input:checked + .pt-card:hover { border-color: var(--teal); }
.pt-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px; letter-spacing: 0.06em;
  color: var(--dark-fg-muted);
  transition: color 220ms ease;
}
.pt-opt input:checked + .pt-card .pt-name { color: var(--teal); }
.pt-desc {
  font-family: 'Source Serif 4', serif; font-weight: 300;
  font-size: 12px; color: var(--dark-fg-dim); line-height: 1.5;
}


/* ─────────────────────────────────────────────
   7. WORK TYPE CARDS
───────────────────────────────────────────── */
.work-type-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px;
  margin-bottom: 8px;
}
.wt-opt { position: relative; cursor: pointer; }
.wt-opt input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }
.wt-card {
  display: flex; flex-direction: column; gap: 8px;
  padding: 18px 16px;
  background: var(--dark-bg-surface);
  border: 1px solid var(--dark-border-mid);
  border-radius: 3px; cursor: pointer;
  transition: border-color 220ms ease, background 220ms ease;
  user-select: none; height: 100%;
}
.wt-opt input:checked + .wt-card {
  border-color: rgba(94,200,200,0.6);
  background: rgba(94,200,200,0.06);
}
.wt-card:hover { border-color: var(--dark-border-strong); }
.wt-opt input:checked + .wt-card:hover { border-color: var(--teal); }
.wt-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px; letter-spacing: 0.06em;
  color: var(--dark-fg-muted);
  transition: color 220ms ease;
}
.wt-opt input:checked + .wt-card .wt-name { color: var(--teal); }
.wt-desc {
  font-family: 'Source Serif 4', serif; font-weight: 300;
  font-size: 12px; color: var(--dark-fg-dim); line-height: 1.5;
}
.wt-eg {
  font-family: 'Source Serif 4', serif; font-style: italic;
  font-weight: 300; font-size: 11px;
  color: var(--dark-fg-dimmer); line-height: 1.4; margin-top: 2px;
}


/* ─────────────────────────────────────────────
   8. CONFIDENTIALITY TOGGLE
───────────────────────────────────────────── */
.conf-toggle { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.conf-opt { position: relative; cursor: pointer; }
.conf-opt input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }
.conf-card {
  padding: 16px 18px;
  background: var(--dark-bg-surface);
  border: 1px solid var(--dark-border-mid);
  border-radius: 3px; cursor: pointer;
  transition: border-color 220ms ease, background 220ms ease;
  user-select: none;
  display: flex; flex-direction: column; gap: 5px;
}
.conf-opt input:checked + .conf-card {
  border-color: rgba(94,200,200,0.5);
  background: rgba(94,200,200,0.05);
}
.conf-name {
  font-family: 'Source Serif 4', serif; font-weight: 500;
  font-size: 14px; color: var(--dark-fg);
}
.conf-desc {
  font-family: 'Source Serif 4', serif; font-style: italic;
  font-weight: 300; font-size: 12px;
  color: var(--dark-fg-dim); line-height: 1.4;
}


/* ─────────────────────────────────────────────
   9. TIER REVEAL BLOCKS
   Conditionally shown based on prize type + amount.
   JS adds/removes .visible.
───────────────────────────────────────────── */

/* Cash sub-fields (amount) */
.prize-cash-fields { display: none; }
.prize-cash-fields.visible { display: block; }

/* Charity sub-fields (cause name) */
.prize-charity-fields { display: none; }
.prize-charity-fields.visible { display: block; }

/* Tier blocks — each wraps one or more fields */
.tier-standard,
.tier-full,
.tier-serious { display: none; }

.tier-standard.visible,
.tier-full.visible,
.tier-serious.visible {
  display: block;
  animation: fadeSlideIn 280ms ease forwards;
}

/* Tier divider — subtle separator before expanded sections */
.tier-divider {
  display: none;
  height: 0.5px;
  background: var(--dark-border);
  margin: 28px 0;
}
.tier-divider.visible { display: block; }

/* Tier label — optional contextual heading */
.tier-label {
  font-family: 'IBM Plex Mono', monospace; font-size: 9px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--dark-fg-dimmer); margin-bottom: 18px;
}

/* Next-steps note (shown above submit) */
.next-steps-note {
  padding: 20px 24px;
  background: rgba(94,200,200,0.04);
  border: 0.5px solid rgba(94,200,200,0.18);
  border-radius: 3px;
  margin-bottom: 28px;
  display: none;
  grid-template-columns: auto 1fr; gap: 16px; align-items: start;
}
.next-steps-note.visible { display: grid; }
.nsn-icon {
  font-family: 'IBM Plex Mono', monospace; font-size: 18px;
  color: var(--teal); padding-top: 2px;
}
.nsn-text {
  font-family: 'Source Serif 4', serif; font-weight: 300;
  font-size: 14px; color: var(--dark-fg-muted); line-height: 1.65;
}
.nsn-text strong { color: var(--dark-fg); font-weight: 500; }


/* ─────────────────────────────────────────────
   10. AI ASSIST PANEL
───────────────────────────────────────────── */
.assist-toggle-row {
  display: flex; justify-content: flex-end;
  margin-top: 6px; margin-bottom: 0;
}
.btn-assist-toggle {
  background: none; border: none;
  font-family: 'Source Serif 4', serif; font-style: italic;
  font-size: 13px; color: var(--teal);
  cursor: pointer; padding: 0;
  display: flex; align-items: center; gap: 6px;
  transition: opacity 200ms ease;
}
.btn-assist-toggle:hover { opacity: 0.7; }

.assist-panel {
  display: none;
  margin-top: 16px; margin-bottom: 28px;
  border: 0.5px solid rgba(94,200,200,0.22);
  border-radius: 4px; overflow: hidden;
  animation: fadeSlideIn 280ms ease forwards;
}
.assist-panel.visible { display: block; }

.assist-header {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 20px;
  background: rgba(94,200,200,0.05);
  border-bottom: 0.5px solid rgba(94,200,200,0.14);
}
.assist-badge {
  font-family: 'IBM Plex Mono', monospace; font-size: 9px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--teal);
  background: rgba(94,200,200,0.10);
  border: 0.5px solid rgba(94,200,200,0.30);
  padding: 3px 8px; border-radius: 2px; flex-shrink: 0;
}
.assist-desc {
  font-family: 'Source Serif 4', serif; font-style: italic;
  font-weight: 300; font-size: 13px;
  color: var(--dark-fg-muted); line-height: 1.5;
}
.assist-body { padding: 24px 20px; display: flex; flex-direction: column; gap: 18px; }

.assist-scaffold { display: flex; flex-direction: column; gap: 18px; }
.scaffold-field { display: flex; flex-direction: column; gap: 7px; }
.scaffold-label {
  font-family: 'Source Serif 4', serif; font-weight: 400;
  font-size: 13px; color: var(--dark-fg);
  display: flex; align-items: baseline; gap: 10px;
}
.scaffold-num {
  font-family: 'IBM Plex Mono', monospace; font-size: 10px;
  color: var(--teal); letter-spacing: 0.08em; flex-shrink: 0;
}
.scaffold-hint {
  font-family: 'Source Serif 4', serif; font-style: italic;
  font-weight: 300; font-size: 12px;
  color: var(--dark-fg-dim); line-height: 1.45; margin-left: 28px;
}
.scaffold-field textarea { min-height: 72px; font-size: 14px; background: rgba(10,10,10,0.6); }

.char-counter {
  font-family: 'IBM Plex Mono', monospace; font-size: 10px;
  color: var(--dark-fg-dimmer); text-align: right;
  transition: color 220ms ease;
}
.char-counter.ready { color: var(--teal); }

.assist-actions {
  display: flex; align-items: center; gap: 16px; padding-top: 4px;
}
.btn-generate {
  height: 44px; padding: 0 28px;
  background: var(--teal); color: #0a0a0a;
  border: none; cursor: pointer;
  font-family: 'Source Serif 4', serif; font-weight: 500;
  font-size: 12px; letter-spacing: 0.10em; text-transform: uppercase;
  border-radius: 3px;
  transition: background 220ms ease, opacity 220ms ease, transform 150ms ease;
  display: inline-flex; align-items: center; gap: 10px; flex-shrink: 0;
}
.btn-generate:hover:not(:disabled) { background: var(--teal-bright); transform: translateY(-1px); }
.btn-generate:disabled { opacity: 0.35; cursor: not-allowed; transform: none; }
.generate-note {
  font-family: 'Source Serif 4', serif; font-style: italic;
  font-weight: 300; font-size: 12px; color: var(--dark-fg-dimmer); line-height: 1.45;
}

.spinner {
  width: 14px; height: 14px;
  border: 2px solid rgba(10,10,10,0.3); border-top-color: #0a0a0a;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: none;
}
.btn-generate.loading .spinner { display: block; }
.btn-generate.loading .btn-generate-label { display: none; }

.assist-result {
  display: none; flex-direction: column; gap: 10px;
  padding-top: 4px;
  border-top: 0.5px solid var(--dark-border); margin-top: 4px;
  animation: fadeSlideIn 280ms ease forwards;
}
.assist-result.visible { display: flex; }
.result-label {
  font-family: 'IBM Plex Mono', monospace; font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--dark-fg-dim);
  display: flex; align-items: center; justify-content: space-between;
}
.result-label-actions { display: flex; gap: 12px; align-items: center; }
.result-action {
  font-family: 'Source Serif 4', serif; font-style: italic;
  font-weight: 300; font-size: 12px;
  color: var(--teal); background: none; border: none;
  cursor: pointer; padding: 0; transition: opacity 200ms ease;
}
.result-action:hover { opacity: 0.7; }
.assist-result textarea {
  min-height: 140px; font-size: 14px; line-height: 1.75;
  background: rgba(94,200,200,0.03); border-color: rgba(94,200,200,0.18);
}
.result-note {
  font-family: 'Source Serif 4', serif; font-style: italic;
  font-weight: 300; font-size: 12px; color: var(--dark-fg-dimmer); line-height: 1.45;
}

.assist-error {
  display: none; align-items: center; gap: 10px;
  padding: 12px 16px;
  background: rgba(220,80,80,0.08); border: 0.5px solid rgba(220,80,80,0.25);
  border-radius: 3px;
  font-family: 'Source Serif 4', serif; font-weight: 300;
  font-size: 13px; color: rgba(244,180,180,0.9); line-height: 1.5;
}
.assist-error.visible { display: flex; }

/* Honeypot — completely hidden, never shown to humans */
.hp-field {
  position: absolute; left: -9999px; top: -9999px;
  width: 1px; height: 1px; overflow: hidden;
  opacity: 0; pointer-events: none;
}


/* ─────────────────────────────────────────────
   11. FORM ACTIONS
───────────────────────────────────────────── */
.form-actions {
  display: flex; flex-direction: column; align-items: center;
  gap: 16px; margin-top: 48px; padding-top: 28px;
  border-top: 0.5px solid var(--dark-border);
}
.btn-submit {
  height: 52px; padding: 0 48px;
  background: var(--teal); color: #0a0a0a;
  border: none; cursor: pointer;
  font-family: 'Source Serif 4', serif; font-weight: 500;
  font-size: 13px; letter-spacing: 0.10em; text-transform: uppercase;
  border-radius: 3px;
  transition: background 220ms ease, transform 150ms ease;
  display: inline-flex; align-items: center; gap: 12px;
  width: 100%; justify-content: center;
}
.btn-submit:hover { background: var(--teal-bright); transform: translateY(-1px); }
.btn-submit:disabled {
  background: var(--dark-bg-mid); color: var(--dark-fg-dim);
  cursor: not-allowed; transform: none;
}
.submit-hint {
  font-family: 'Source Serif 4', serif; font-style: italic;
  font-weight: 300; font-size: 13px;
  color: var(--dark-fg-dim); text-align: center; line-height: 1.5;
}

/* Submit spinner */
.submit-spinner {
  width: 16px; height: 16px;
  border: 2px solid rgba(10,10,10,0.3); border-top-color: #0a0a0a;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: none;
}
.btn-submit.loading .submit-spinner { display: block; }
.btn-submit.loading .btn-submit-label { display: none; }


/* ─────────────────────────────────────────────
   12. SUCCESS SCREEN
───────────────────────────────────────────── */
.success-screen {
  display: none; flex-direction: column; gap: 28px;
  padding: 48px 0; max-width: 640px;
  animation: fadeSlideIn 400ms ease forwards;
}
.success-screen.visible { display: flex; }
.success-eyebrow {
  font-family: 'IBM Plex Mono', monospace; font-size: 10px;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--teal);
}
.success-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 0.95; letter-spacing: 0.04em; color: var(--dark-fg);
}
.success-body {
  font-family: 'Source Serif 4', serif; font-style: italic;
  font-weight: 300; font-size: 17px;
  color: var(--dark-fg-muted); line-height: 1.65;
}
.success-steps {
  display: flex; flex-direction: column; gap: 14px;
  padding: 28px 32px;
  background: var(--dark-bg-surface);
  border: 0.5px solid var(--dark-border-mid); border-radius: 3px;
}
.ss-head {
  font-family: 'IBM Plex Mono', monospace; font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--dark-fg-dim); margin-bottom: 6px;
}
.ss-step { display: grid; grid-template-columns: 28px 1fr; gap: 12px; align-items: start; }
.ss-num {
  font-family: 'IBM Plex Mono', monospace; font-size: 11px;
  color: var(--teal); padding-top: 2px;
}
.ss-text {
  font-family: 'Source Serif 4', serif; font-weight: 300;
  font-size: 14px; color: var(--dark-fg-muted); line-height: 1.6;
}
.ss-text strong { color: var(--dark-fg); font-weight: 500; }
.success-back {
  font-family: 'Source Serif 4', serif; font-weight: 400;
  font-size: 14px; color: var(--teal); text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: gap 220ms ease;
}
.success-back:hover { gap: 12px; }


/* ─────────────────────────────────────────────
   13. ANIMATIONS & UTILITIES
───────────────────────────────────────────── */
@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes spin { to { transform: rotate(360deg); } }
