*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}

:root{
  --black:       #0A0A0A;
  --black-soft:  #141414;
  --black-card:  #1A1A1A;
  --black-mid:   #222222;
  --black-border:#2E2E2E;
  --black-hover: #242424;
  --lime:        #B2FA63;
  --lime-dim:    #8DCC44;
  --lime-faint:  rgba(178,250,99,0.06);
  --lime-soft:   rgba(178,250,99,0.12);
  --lime-border: rgba(178,250,99,0.25);
  --lime-glow:   rgba(178,250,99,0.08);
  --white:       #FFFFFF;
  --text-high:   #EFEFEF;
  --text-mid:    #ABABAB;
  --text-low:    #757575;
  --radius:      10px;
  --radius-lg:   16px;
  --top-h:       106px;
  --bottom-h:    70px;
  --max:         660px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--black);
  color: var(--text-high);
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

/* ── TOP BAR ────────────────────────────── */
.top-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--black-border);
}
.top-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 32px; height: 54px;
  max-width: 960px; margin: 0 auto; gap: 20px;
}
.logo {
  display: flex; align-items: center; gap: 10px; flex-shrink: 0;
}
.logo-mark { display: flex; align-items: center; color: var(--white); flex-shrink: 0; }
.logo-mark svg { height: 22px; width: auto; display: block; }
.logo-sep {
  width: 1px; height: 13px;
  background: var(--black-border); flex-shrink: 0;
}
.logo-label {
  font-size: 11px; font-weight: 500; color: var(--text-low);
  white-space: nowrap; letter-spacing: 0.1px;
}
.save-dot {
  font-size: 11px; font-weight: 600; color: var(--lime);
  opacity: 0; transition: opacity 0.3s; flex-shrink: 0;
  display: flex; align-items: center; gap: 5px;
}
.save-dot::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--lime); display: block;
}
.save-dot.show { opacity: 1; }

/* section pills */
.pills-row {
  overflow-x: auto; scrollbar-width: none;
  display: flex; align-items: center; gap: 2px;
  padding: 0 32px 10px;
  max-width: 960px; margin: 0 auto;
}
.pills-row::-webkit-scrollbar { display: none; }
.pill {
  display: flex; align-items: center; gap: 5px;
  padding: 4px 11px; border-radius: 20px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.2px;
  color: var(--text-low); white-space: nowrap; flex-shrink: 0;
  border: 1px solid transparent;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
}
.pill-dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--black-border); flex-shrink: 0;
  transition: background 0.2s;
}
.pill.done { color: var(--text-mid); }
.pill.done .pill-dot { background: var(--lime-dim); }
.pill.active {
  color: var(--lime);
  background: var(--lime-faint);
  border-color: var(--lime-border);
}
.pill.active .pill-dot { background: var(--lime); }

/* progress */
.progress-track { height: 2px; background: var(--black-border); }
.progress-fill {
  height: 100%; background: var(--lime);
  transition: width 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 8px rgba(178,250,99,0.4);
}

/* ── MAIN ────────────────────────────────── */
.main { padding-top: var(--top-h); min-height: 100vh; }

/* ── STEP ANIMATION ── */
.step { display: none; }
.step.active { display: block; animation: fadeUp 0.3s ease both; }
.bridge-step { display: none; }
.bridge-step.active { display: flex; animation: fadeUp 0.3s ease both; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── WELCOME ─────────────────────────────── */
.welcome-wrap {
  max-width: var(--max); margin: 0 auto;
  padding: 40px 28px;
  min-height: calc(100vh - var(--top-h));
  display: flex; flex-direction: column; justify-content: center;
  position: relative;
}
/* lime glow top-left */
.welcome-wrap::before {
  content: '';
  position: absolute; top: -120px; left: -120px;
  width: 480px; height: 480px; border-radius: 50%;
  background: radial-gradient(circle, rgba(178,250,99,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.welcome-eyebrow {
  font-size: 10px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--lime); margin-bottom: 20px;
}
.welcome-headline {
  font-size: clamp(40px, 6.5vw, 64px); font-weight: 900;
  letter-spacing: -2.5px; line-height: 1.0;
  color: var(--white); margin-bottom: 20px;
}
.welcome-headline em { font-style: normal; color: var(--lime); }
.welcome-body {
  font-size: 15px; color: var(--text-mid);
  max-width: 440px; line-height: 1.75; margin-bottom: 36px;
}
.welcome-list {
  display: flex; flex-direction: column; gap: 10px; margin-bottom: 44px;
}
.welcome-item {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 13px; color: var(--text-mid); line-height: 1.55;
}
.w-icon {
  width: 18px; height: 18px; border-radius: 50%; flex-shrink: 0;
  background: var(--lime-faint); border: 1px solid var(--lime-border);
  color: var(--lime); font-size: 8px; font-weight: 800;
  display: flex; align-items: center; justify-content: center; margin-top: 1px;
}
.welcome-item strong { color: var(--text-high); font-weight: 600; }
.welcome-fields {
  display: flex; flex-direction: column; gap: 14px;
  margin-bottom: 36px; max-width: 440px;
}
.wf-row { display: flex; flex-direction: column; gap: 6px; }
.wf-label {
  font-size: 12px; font-weight: 600; letter-spacing: 0.2px;
  color: var(--text-mid);
}
.btn-start {
  display: inline-flex; align-items: center; gap: 10px;
  align-self: flex-start;
  background: var(--lime); color: var(--black);
  font-size: 14px; font-weight: 700; letter-spacing: 0.1px;
  padding: 13px 26px; border-radius: var(--radius);
  border: none; cursor: pointer;
  transition: background 0.15s, transform 0.1s, box-shadow 0.15s;
  box-shadow: 0 0 0 0 rgba(178,250,99,0);
}
.btn-start:hover {
  background: var(--lime-dim); transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(178,250,99,0.2);
}

/* ── CONTENT SECTION ─────────────────────── */
.content-wrap {
  max-width: var(--max); margin: 0 auto;
  padding: 52px 28px calc(var(--bottom-h) + 48px);
}
.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 14px;
}
.section-num {
  font-size: 9.5px; font-weight: 800; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--black);
  background: var(--lime); padding: 2px 7px; border-radius: 4px;
}
.section-of {
  font-size: 9.5px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--text-low);
}
.section-headline {
  font-size: 30px; font-weight: 800; letter-spacing: -0.8px;
  color: var(--white); margin-bottom: 6px; line-height: 1.1;
}
.section-sub {
  font-size: 13.5px; color: var(--text-low); margin-bottom: 44px;
  line-height: 1.55;
}

/* ── QUESTIONS ──────────────────────────── */
.q-block { margin-bottom: 38px; }
.q-label {
  font-size: 15.5px; font-weight: 600; color: var(--text-high);
  margin-bottom: 6px; line-height: 1.4;
}
.q-hint {
  font-size: 12.5px; color: var(--text-low);
  margin-bottom: 11px; line-height: 1.55;
}
.q-hint em { font-style: italic; color: var(--text-mid); }
hr.divider {
  border: none; border-top: 1px solid var(--black-border); margin: 34px 0;
}

/* inputs */
textarea, input[type=text], input[type=url] {
  width: 100%;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius);
  color: var(--text-high);
  font-family: 'Inter', sans-serif;
  font-size: 14px; line-height: 1.6;
  padding: 13px 16px;
  resize: vertical; outline: none;
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
}
textarea:focus, input[type=text]:focus, input[type=url]:focus {
  border-color: rgba(178,250,99,0.4);
  box-shadow: 0 0 0 3px rgba(178,250,99,0.06);
  background: var(--black-mid);
}
textarea::placeholder, input::placeholder { color: var(--text-low); }
textarea { min-height: 98px; }
textarea.tall { min-height: 136px; }

/* numbered inline rows */
.inline-fields { display: flex; flex-direction: column; gap: 8px; }
.inline-row { display: flex; align-items: flex-start; gap: 10px; }
.inline-num {
  font-size: 10.5px; font-weight: 700; color: var(--lime);
  width: 18px; flex-shrink: 0; padding-top: 15px; text-align: center;
}
.inline-row input[type=text] { flex: 1; margin: 0; }

/* option cards */
.options { display: flex; flex-direction: column; gap: 7px; }
.opt {
  display: flex; align-items: center; gap: 12px;
  background: var(--black-card); border: 1px solid var(--black-border);
  border-radius: var(--radius); padding: 12px 16px; cursor: pointer;
  transition: border-color 0.15s, background 0.15s; user-select: none;
}
.opt:hover { border-color: rgba(178,250,99,0.2); background: var(--black-mid); }
.opt.sel { border-color: var(--lime); background: var(--lime-faint); }
.opt.sel label { color: var(--text-high); }
.opt input { accent-color: var(--lime); cursor: pointer; flex-shrink: 0; }
.opt label {
  font-size: 13.5px; font-weight: 500; color: var(--text-mid);
  cursor: pointer; flex: 1; transition: color 0.15s;
}
.opt:hover label { color: var(--text-high); }

/* stack rows */
.stack-row { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.stack-label {
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.8px;
  text-transform: uppercase; color: var(--text-low);
  width: 116px; flex-shrink: 0;
}
.stack-row input[type=text] { flex: 1; margin: 0; }

/* capabilities table */
.cap-wrap { overflow-x: auto; margin-top: 10px; }
.cap-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.cap-table th {
  text-align: left; font-size: 9.5px; font-weight: 700;
  letter-spacing: 1.2px; text-transform: uppercase; color: var(--text-low);
  padding: 8px 14px; border-bottom: 1px solid var(--black-border);
}
.cap-table td {
  padding: 6px 14px; border-bottom: 1px solid var(--black-border);
  vertical-align: middle;
}
.cap-table tr:last-child td { border-bottom: none; }
.cap-table tr:hover td { background: var(--black-hover); }
.cap-table td:first-child { color: var(--text-mid); font-weight: 500; }
.cap-table select {
  background: var(--black-card); border: 1px solid var(--black-border);
  border-radius: 6px; color: var(--text-high);
  font-family: 'Inter', sans-serif; font-size: 12.5px;
  padding: 5px 10px; outline: none; cursor: pointer; width: 100%;
  transition: border-color 0.15s;
}
.cap-table select:focus { border-color: var(--lime-border); }
.cap-table input[type=text] { margin: 0; padding: 5px 10px; font-size: 12.5px; }

/* label row with tooltip */
.q-label-row { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.tip {
  width: 15px; height: 15px; border-radius: 50%;
  background: var(--black-border); color: var(--text-low);
  font-size: 9px; font-weight: 800;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: help; position: relative; flex-shrink: 0;
}
.tip-body {
  display: none; position: absolute; top: calc(100% + 7px); left: 0;
  background: var(--black-card); border: 1px solid var(--black-border);
  border-radius: 8px; padding: 10px 14px; font-size: 12px;
  color: var(--text-mid); width: 260px; z-index: 100; line-height: 1.55;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}
.tip:hover .tip-body { display: block; }

/* ── BRIDGE SCREENS ──────────────────────── */
.bridge-step {
  min-height: calc(100vh - var(--top-h));
  align-items: stretch;
}
.bridge-wrap {
  max-width: var(--max); margin: 0 auto;
  padding: 0 28px;
  flex: 1;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
}
/* large background number */
.bridge-wrap::before {
  content: attr(data-num);
  position: absolute; right: -20px; top: 50%;
  transform: translateY(-50%);
  font-size: 220px; font-weight: 900; letter-spacing: -10px;
  color: rgba(178,250,99,0.04);
  pointer-events: none; user-select: none; line-height: 1;
}
.bridge-timer {
  display: flex; align-items: center; gap: 14px; margin-bottom: 40px;
}
.countdown-svg { flex-shrink: 0; }
.countdown-svg .ring-bg { stroke: var(--black-border); }
.countdown-svg .ring-fg {
  stroke: var(--lime); stroke-linecap: round;
  transition: stroke-dashoffset 0.1s linear;
  filter: drop-shadow(0 0 4px rgba(178,250,99,0.5));
}
.countdown-num {
  font-size: 13px; font-weight: 800; fill: var(--lime);
  dominant-baseline: central; text-anchor: middle;
}
.bridge-timer-label {
  font-size: 11.5px; color: var(--text-low); font-weight: 500;
}
.bridge-eyebrow {
  font-size: 9.5px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--lime); margin-bottom: 16px;
}
.bridge-title {
  font-size: clamp(28px, 4.5vw, 42px); font-weight: 900;
  letter-spacing: -1px; color: var(--white);
  line-height: 1.08; margin-bottom: 18px;
}
.bridge-body {
  font-size: 15.5px; color: var(--text-mid);
  max-width: 460px; line-height: 1.72; margin-bottom: 40px;
}
.btn-bridge {
  display: inline-flex; align-items: center; gap: 10px;
  align-self: flex-start;
  background: transparent;
  border: 1px solid var(--black-border);
  color: var(--text-low); font-size: 13.5px; font-weight: 600;
  padding: 11px 22px; border-radius: var(--radius); cursor: pointer;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}
.btn-bridge:hover {
  border-color: var(--lime-border);
  color: var(--lime); background: var(--lime-faint);
}

/* ── THANK YOU ───────────────────────────── */
.ty-wrap {
  max-width: var(--max); margin: 0 auto;
  padding: 80px 28px;
  min-height: calc(100vh - var(--top-h));
  display: flex; flex-direction: column; justify-content: center;
}
.ty-check {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--lime-faint); border: 1px solid var(--lime-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; margin-bottom: 32px;
  box-shadow: 0 0 24px rgba(178,250,99,0.1);
}
.ty-headline {
  font-size: 48px; font-weight: 900; letter-spacing: -2px;
  color: var(--white); margin-bottom: 16px; line-height: 1;
}
.ty-body {
  font-size: 15.5px; color: var(--text-mid);
  line-height: 1.75; max-width: 460px; margin-bottom: 48px;
}
.ty-steps { display: flex; flex-direction: column; gap: 20px; }
.ty-row { display: flex; gap: 18px; align-items: flex-start; }
.ty-num {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--black-card); border: 1px solid var(--black-border);
  font-size: 11px; font-weight: 700; color: var(--lime);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
}
.ty-text { font-size: 14px; color: var(--text-mid); line-height: 1.65; }
.ty-text strong { color: var(--text-high); font-weight: 600; }
.ty-footer {
  margin-top: 56px; padding-top: 28px;
  border-top: 1px solid var(--black-border);
}
.ty-footer p { font-size: 12px; color: var(--text-low); line-height: 1.8; }

/* ── BOTTOM NAV ──────────────────────────── */
.bottom-nav {
  position: fixed; bottom: 0; left: 0; right: 0;
  height: var(--bottom-h);
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--black-border);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 28px; z-index: 800;
}
.bottom-nav.hidden { display: none; }
.btn-back {
  background: transparent; border: 1px solid var(--black-border);
  color: var(--text-low); font-size: 13px; font-weight: 600;
  padding: 9px 18px; border-radius: var(--radius); cursor: pointer;
  transition: color 0.15s, border-color 0.15s;
  font-family: 'Inter', sans-serif;
}
.btn-back:hover { color: var(--text-high); border-color: var(--text-low); }
.btn-back.invisible { visibility: hidden; pointer-events: none; }
.nav-label {
  font-size: 11px; font-weight: 600; color: var(--text-low);
  letter-spacing: 0.3px; text-align: center;
}
.btn-next {
  background: var(--lime); color: var(--black);
  font-size: 13px; font-weight: 700; letter-spacing: 0.1px;
  padding: 10px 22px; border-radius: var(--radius);
  border: none; cursor: pointer;
  transition: background 0.15s, box-shadow 0.15s;
  font-family: 'Inter', sans-serif;
}
.btn-next:hover {
  background: var(--lime-dim);
  box-shadow: 0 0 16px rgba(178,250,99,0.2);
}
.btn-next:disabled {
  opacity: 0.6; cursor: default; box-shadow: none;
}

/* ── CALLOUT BOX ─────────────────────────── */
.callout {
  margin-top: 40px; padding: 24px 26px;
  background: var(--lime-faint); border: 1px solid var(--lime-border);
  border-radius: var(--radius-lg);
}
.callout-label {
  font-size: 9.5px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--lime); margin-bottom: 8px;
}
.callout-body { font-size: 13.5px; color: var(--text-mid); line-height: 1.65; }

/* ── FILE UPLOAD ─────────────────────────── */
.upload-examples {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 14px 24px; margin: 4px 0 18px;
}
.ue-head {
  display: block; font-size: 10px; font-weight: 700; letter-spacing: 1.2px;
  text-transform: uppercase; color: var(--lime); margin-bottom: 6px;
}
.ue-col ul { list-style: none; display: flex; flex-direction: column; gap: 3px; }
.ue-col li {
  font-size: 12.5px; color: var(--text-mid); line-height: 1.4;
  padding-left: 13px; position: relative;
}
.ue-col li::before {
  content: ''; position: absolute; left: 0; top: 8px;
  width: 4px; height: 4px; border-radius: 50%; background: var(--black-border);
}
.dropzone {
  border: 1.5px dashed var(--black-border); border-radius: var(--radius-lg);
  padding: 28px 20px; text-align: center; cursor: pointer;
  transition: border-color .15s, background .15s;
}
.dropzone:hover, .dropzone:focus-visible {
  border-color: var(--lime-border); background: var(--lime-faint); outline: none;
}
.dropzone.dragover { border-color: var(--lime); background: var(--lime-soft); }
.dropzone svg { color: var(--text-low); margin-bottom: 8px; transition: color .15s; }
.dropzone:hover svg, .dropzone.dragover svg { color: var(--lime); }
.dz-title { font-size: 13.5px; color: var(--text-mid); }
.dz-link { color: var(--lime); font-weight: 600; }
.dz-sub { font-size: 11.5px; color: var(--text-low); margin-top: 4px; }
.file-list { display: flex; flex-direction: column; gap: 6px; margin-top: 12px; }
.file-chip {
  display: flex; align-items: center; gap: 10px;
  background: var(--black-card); border: 1px solid var(--black-border);
  border-radius: var(--radius); padding: 9px 12px;
}
.fc-name { flex: 1; font-size: 13px; color: var(--text-high); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.fc-size { font-size: 11.5px; color: var(--text-low); flex-shrink: 0; }
.fc-remove { background: none; border: none; color: var(--text-low); cursor: pointer; font-size: 15px; line-height: 1; padding: 0 2px; flex-shrink: 0; transition: color .15s; }
.fc-remove:hover { color: #ff6b6b; }

/* ── THEME TOGGLE BUTTON ─────────────────── */
.theme-toggle {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--black-card); border: 1px solid var(--black-border);
  color: var(--text-mid); display: flex; align-items: center; justify-content: center;
  cursor: pointer; flex-shrink: 0;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.theme-toggle:hover { border-color: var(--lime-border); color: var(--lime); }
.theme-toggle svg { display: block; }

/* ── LIGHT MODE OVERRIDES ────────────────── */
/* Light theme uses its own darker text colours (dark theme stays bright) */
html[data-theme="light"] {
  --text-high: #1A1A1A;
  --text-mid:  #555555;
  --text-low:  #6E6E6E;
}
html[data-theme="light"] .bridge-title { color: #1A1A1A; }
html[data-theme="light"] .bridge-body { color: #555555; }

html[data-theme="light"] body {
  background: #F5F5F2; color: #111111;
}
/* top bar */
html[data-theme="light"] .top-bar {
  background: rgba(245,245,242,0.97); border-color: #E2E2DE;
}
html[data-theme="light"] .logo-mark { color: #111111; }
html[data-theme="light"] .logo-sep { background: #D0D0CC; }
html[data-theme="light"] .logo-label { color: #AAAAAA; }
html[data-theme="light"] .save-dot { color: #3A8A00; }
html[data-theme="light"] .save-dot::before { background: #8DCC44; }
html[data-theme="light"] .theme-toggle {
  background: #FFFFFF; border-color: #E2E2DE; color: #777777;
}
html[data-theme="light"] .theme-toggle:hover {
  border-color: rgba(80,180,0,0.35); color: #3A8A00;
}
/* pills */
html[data-theme="light"] .pill { color: #AAAAAA; }
html[data-theme="light"] .pill-dot { background: #E2E2DE; }
html[data-theme="light"] .pill.done { color: #777777; }
html[data-theme="light"] .pill.done .pill-dot { background: #8DCC44; }
html[data-theme="light"] .pill.active {
  color: #3A8A00; background: rgba(80,180,0,0.08); border-color: rgba(80,180,0,0.25);
}
html[data-theme="light"] .pill.active .pill-dot { background: #8DCC44; }
/* progress */
html[data-theme="light"] .progress-track { background: #E2E2DE; }
/* welcome */
html[data-theme="light"] .welcome-wrap::before { opacity: 0; }
html[data-theme="light"] .welcome-eyebrow { color: #3A8A00; }
html[data-theme="light"] .welcome-headline { color: #111111; }
html[data-theme="light"] .welcome-headline em {
  color: #111111; background: var(--lime);
  padding: 0 6px 3px; border-radius: 6px; display: inline-block;
}
html[data-theme="light"] .welcome-body { color: #555555; }
html[data-theme="light"] .welcome-item { color: #555555; }
html[data-theme="light"] .welcome-item strong { color: #111111; }
html[data-theme="light"] .w-icon { background: var(--lime); color: #111111; border-color: #8DCC44; }
html[data-theme="light"] .btn-start { background: #111111; color: #FFFFFF; box-shadow: none; }
html[data-theme="light"] .btn-start:hover { background: #333333; box-shadow: 0 4px 20px rgba(0,0,0,0.15); }
/* content sections */
html[data-theme="light"] .section-of { color: #AAAAAA; }
html[data-theme="light"] .section-headline { color: #111111; }
html[data-theme="light"] .section-sub { color: #6B6B6B; }
/* questions */
html[data-theme="light"] .q-label { color: #111111; }
html[data-theme="light"] .q-hint { color: #6B6B6B; }
html[data-theme="light"] .q-hint em { color: #777777; }
html[data-theme="light"] .inline-num { color: #3A8A00; }
html[data-theme="light"] hr.divider { border-color: #E2E2DE; }
/* inputs */
html[data-theme="light"] textarea,
html[data-theme="light"] input[type=text],
html[data-theme="light"] input[type=url] {
  background: #FFFFFF; border-color: #E2E2DE; color: #111111;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
html[data-theme="light"] textarea:focus,
html[data-theme="light"] input[type=text]:focus,
html[data-theme="light"] input[type=url]:focus {
  border-color: #8DCC44; box-shadow: 0 0 0 3px rgba(80,180,0,0.08);
  background: #FFFFFF;
}
html[data-theme="light"] textarea::placeholder,
html[data-theme="light"] input::placeholder { color: #C8C8C4; }
/* options */
html[data-theme="light"] .options .opt {
  background: #FFFFFF; border-color: #E2E2DE;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
html[data-theme="light"] .options .opt:hover {
  border-color: rgba(80,180,0,0.3); background: rgba(80,180,0,0.05); box-shadow: none;
}
html[data-theme="light"] .options .opt.sel {
  border-color: #8DCC44; background: rgba(80,180,0,0.07);
}
html[data-theme="light"] .options .opt label { color: #777777; }
html[data-theme="light"] .options .opt:hover label,
html[data-theme="light"] .options .opt.sel label { color: #111111; }
/* stack labels */
html[data-theme="light"] .stack-label { color: #6B6B6B; }
/* cap table */
html[data-theme="light"] .cap-table th { color: #AAAAAA; border-color: #E2E2DE; }
html[data-theme="light"] .cap-table td { border-color: #E8E8E4; }
html[data-theme="light"] .cap-table tr:hover td { background: #F5F5F2; }
html[data-theme="light"] .cap-table td:first-child { color: #555555; }
html[data-theme="light"] .cap-table select {
  background: #FFFFFF; border-color: #E2E2DE; color: #111111;
}
html[data-theme="light"] .cap-table select:focus { border-color: #8DCC44; }
html[data-theme="light"] .cap-table input[type=text] { box-shadow: none; }
/* tooltip */
html[data-theme="light"] .tip { background: #E2E2DE; color: #777777; }
html[data-theme="light"] .tip-body { background: #111111; color: #CCCCCC; }
/* callout */
html[data-theme="light"] .callout {
  background: rgba(80,180,0,0.07); border-color: rgba(80,180,0,0.22);
}
html[data-theme="light"] .callout-label { color: #3A8A00; }
html[data-theme="light"] .callout-body { color: #555555; }
/* file upload */
html[data-theme="light"] .ue-head { color: #3A8A00; }
html[data-theme="light"] .ue-col li { color: #555555; }
html[data-theme="light"] .ue-col li::before { background: #C8C8C4; }
html[data-theme="light"] .dropzone { border-color: #D8D8D4; background: #FFFFFF; }
html[data-theme="light"] .dropzone:hover, html[data-theme="light"] .dropzone:focus-visible { border-color: rgba(80,180,0,0.4); background: rgba(80,180,0,0.05); }
html[data-theme="light"] .dz-title { color: #555555; }
html[data-theme="light"] .dz-sub { color: #AAAAAA; }
html[data-theme="light"] .dz-link { color: #3A8A00; }
html[data-theme="light"] .file-chip { background: #FFFFFF; border-color: #E2E2DE; box-shadow: 0 1px 3px rgba(0,0,0,0.05); }
html[data-theme="light"] .fc-name { color: #111111; }
/* thank you */
html[data-theme="light"] .ty-check {
  background: var(--lime); border: none; box-shadow: 0 4px 20px rgba(80,180,0,0.2);
}
html[data-theme="light"] .ty-headline { color: #111111; }
html[data-theme="light"] .ty-body { color: #555555; }
html[data-theme="light"] .ty-num { background: var(--lime); color: #111111; border: none; }
html[data-theme="light"] .ty-text { color: #555555; }
html[data-theme="light"] .ty-text strong { color: #111111; }
html[data-theme="light"] .ty-footer { border-color: #E2E2DE; }
html[data-theme="light"] .ty-footer p { color: #AAAAAA; }
/* bottom nav */
html[data-theme="light"] .bottom-nav {
  background: rgba(245,245,242,0.97); border-color: #E2E2DE;
}
html[data-theme="light"] .btn-back { color: #AAAAAA; border-color: #E2E2DE; }
html[data-theme="light"] .btn-back:hover { color: #111111; border-color: #C0C0BC; }
html[data-theme="light"] .nav-label { color: #AAAAAA; }
html[data-theme="light"] .btn-next { background: #111111; color: #FFFFFF; }
html[data-theme="light"] .btn-next:hover { background: #333333; box-shadow: 0 4px 16px rgba(0,0,0,0.15); }

/* ── RESPONSIVE ──────────────────────────── */
@media (max-width: 620px) {
  .top-row, .pills-row { padding-left: 18px; padding-right: 18px; }
  .content-wrap, .welcome-wrap, .bridge-wrap, .ty-wrap { padding-left: 18px; padding-right: 18px; }
  .bottom-nav { padding: 0 18px; }
  .logo-label { display: none; }
  .logo-sep { display: none; }
  .cap-table { font-size: 12px; }
  .upload-examples { grid-template-columns: 1fr; }
}
