/* ── Design tokens ── */
:root {
  --indigo:       #4f46e5;
  --indigo-dark:  #4338ca;
  --indigo-light: #eef2ff;
  --text:         #1f2430;
  --muted:        #6b7280;
  --border:       #e5e7eb;
  --border-input: #d1d5db;
  --bg:           #f9fafb;
  --white:        #ffffff;
  --danger:       #ef4444;
  --success:      #10b981;
  --warning:      #f59e0b;
  --radius:       10px;
  --shadow:       0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md:    0 4px 6px -1px rgba(0,0,0,.1), 0 2px 4px -1px rgba(0,0,0,.06);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; }
body   { margin: 0; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif; color: var(--text); background: var(--bg); line-height: 1.55; font-size: 15px; }
h1,h2,h3,h4 { margin: 0 0 .5em; line-height: 1.2; font-weight: 700; }
p      { margin: 0 0 1em; }
a      { color: var(--indigo); text-decoration: none; }
a:hover { text-decoration: underline; }
ul     { margin: 0; padding: 0; list-style: none; }
img    { display: block; max-width: 100%; }

/* ── Layout ── */
.container { max-width: 780px; margin: 0 auto; padding: 0 20px; }
.container--wide { max-width: 1040px; margin: 0 auto; padding: 0 20px; }

/* ── Navigation ── */
.nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 20px;
}
.nav__logo {
  font-size: 17px;
  font-weight: 700;
  color: var(--indigo);
  text-decoration: none;
}
.nav__logo span { color: var(--text); }
.nav__links { display: flex; align-items: center; gap: 8px; }
.nav__links a { font-size: 14px; font-weight: 500; color: var(--muted); padding: 6px 10px; border-radius: 6px; }
.nav__links a:hover { color: var(--text); background: var(--bg); text-decoration: none; }
/* Buttons in the nav: out-specify the muted link color so button text renders correctly */
.nav__links a.btn { padding: 6px 12px; font-weight: 600; }
.nav__links a.btn--primary,
.nav__links a.btn--primary:hover { color: #fff; }
.nav__links a.btn--secondary { color: var(--text); }
.nav__links a.btn--secondary:hover { color: var(--text); background: var(--bg); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background .15s, border-color .15s, color .15s;
  text-decoration: none;
}
.btn--primary { background: var(--indigo); color: #fff; border-color: var(--indigo); }
.btn--primary:hover { background: var(--indigo-dark); border-color: var(--indigo-dark); text-decoration: none; color: #fff; }
.btn--secondary { background: var(--white); color: var(--text); border-color: var(--border-input); }
.btn--secondary:hover { background: var(--bg); text-decoration: none; }
.btn--ghost { background: transparent; color: var(--indigo); border-color: transparent; }
.btn--ghost:hover { background: var(--indigo-light); text-decoration: none; }
.btn--danger { background: var(--danger); color: #fff; border-color: var(--danger); }
.btn--danger:hover { background: #dc2626; text-decoration: none; color: #fff; }
.btn--full { width: 100%; }
.btn--sm { padding: 6px 12px; font-size: 13px; }
.btn:disabled { opacity: .5; cursor: not-allowed; }

/* ── Golden-hour lighting note (Pro) ── */
.lighting-note {
  font-size: 14px;
  line-height: 1.5;
  padding: 12px 16px;
  border-radius: var(--radius);
  margin-bottom: 14px;
  border: 1px solid var(--border);
  background: var(--white);
}
.lighting-note--good   { background: #ecfdf5; border-color: #a7f3d0; color: #065f46; }
.lighting-note--warn   { background: #fffbeb; border-color: #fde68a; color: #92400e; }
.lighting-note--locked { background: var(--indigo-light); border-color: #c7d2fe; color: var(--indigo-dark); }

/* ── Card ── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 16px;
  box-shadow: var(--shadow);
}
.card--flat { box-shadow: none; }

/* ── Form elements ── */
.form-group { margin-bottom: 16px; }
.form-label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 5px; color: var(--text); }
.form-input, .form-select {
  width: 100%;
  padding: 9px 11px;
  border: 1px solid var(--border-input);
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: border-color .15s, box-shadow .15s;
}
.form-input:focus, .form-select:focus {
  outline: none;
  border-color: var(--indigo);
  box-shadow: 0 0 0 3px rgba(79,70,229,.12);
}
.form-check { display: flex; align-items: center; gap: 9px; margin: 10px 0; }
.form-check input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--indigo); cursor: pointer; flex-shrink: 0; }
.form-check label { font-size: 14px; cursor: pointer; margin: 0; }
.form-row { display: flex; gap: 14px; flex-wrap: wrap; }
.form-row > .form-group { flex: 1; min-width: 150px; }
.form-hint { font-size: 12px; color: var(--muted); margin-top: 4px; }
.form-error { font-size: 13px; color: var(--danger); margin-top: 6px; display: none; }
.form-error.show { display: block; }

/* ── Alerts ── */
.alert { padding: 11px 14px; border-radius: 8px; font-size: 14px; margin-bottom: 14px; display: none; }
.alert.show { display: block; }
.alert--success { background: #ecfdf5; border: 1px solid #6ee7b7; color: #065f46; }
.alert--error   { background: #fef2f2; border: 1px solid #fca5a5; color: #991b1b; }
.alert--info    { background: var(--indigo-light); border: 1px solid #a5b4fc; color: #3730a3; }
.alert--warning { background: #fffbeb; border: 1px solid #fcd34d; color: #92400e; }

/* ── Badge ── */
.badge { display: inline-flex; align-items: center; padding: 2px 8px; border-radius: 99px; font-size: 11px; font-weight: 700; letter-spacing: .03em; text-transform: uppercase; }
.badge--pro { background: var(--indigo); color: #fff; }
.badge--free { background: var(--bg); color: var(--muted); border: 1px solid var(--border); }

/* ── Modal ── */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.45);
  display: flex; align-items: center; justify-content: center;
  z-index: 999;
  padding: 20px;
  display: none;
}
.modal-overlay.show { display: flex; }
.modal {
  background: var(--white);
  border-radius: 14px;
  padding: 28px;
  max-width: 420px;
  width: 100%;
  box-shadow: var(--shadow-md);
}
.modal h3 { margin: 0 0 8px; font-size: 18px; }
.modal p  { color: var(--muted); font-size: 14px; margin: 0 0 20px; }
.modal__actions { display: flex; gap: 10px; justify-content: flex-end; margin-top: 20px; }

/* ═══════════════════════════════════════════
   LANDING PAGE
══════════════════════════════════════════ */
.hero {
  text-align: center;
  padding: 72px 20px 60px;
  background: linear-gradient(180deg, var(--indigo-light) 0%, var(--bg) 100%);
}
.hero__eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--indigo);
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.hero h1 {
  font-size: clamp(28px, 5vw, 46px);
  max-width: 640px;
  margin: 0 auto 16px;
  color: var(--text);
}
.hero p {
  font-size: 17px;
  color: var(--muted);
  max-width: 500px;
  margin: 0 auto 32px;
}
.hero__cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.hero__note { font-size: 12px; color: var(--muted); margin-top: 14px; }

.steps { padding: 60px 20px; }
.steps h2 { text-align: center; font-size: 24px; margin-bottom: 36px; }
.steps__grid { display: flex; gap: 24px; flex-wrap: wrap; }
.step { flex: 1; min-width: 200px; text-align: center; padding: 0 12px; }
.step__num {
  width: 36px; height: 36px;
  background: var(--indigo-light);
  color: var(--indigo);
  border-radius: 50%;
  font-size: 15px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px;
}
.step h3 { font-size: 15px; margin-bottom: 6px; }
.step p  { font-size: 14px; color: var(--muted); margin: 0; }

.pricing { background: var(--white); padding: 60px 20px; border-top: 1px solid var(--border); }
.pricing h2 { text-align: center; font-size: 24px; margin-bottom: 8px; }
.pricing__sub { text-align: center; color: var(--muted); font-size: 15px; margin-bottom: 40px; }
.pricing__grid { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; }
.pricing__card {
  flex: 1; min-width: 260px; max-width: 340px;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  background: var(--white);
}
.pricing__card--pro {
  border-color: var(--indigo);
  box-shadow: 0 0 0 2px rgba(79,70,229,.15);
}
.pricing__tier { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); margin-bottom: 8px; }
.pricing__card--pro .pricing__tier { color: var(--indigo); }
.pricing__price { font-size: 36px; font-weight: 800; margin-bottom: 4px; }
.pricing__price span { font-size: 16px; font-weight: 500; color: var(--muted); }
.pricing__alt { font-size: 13px; color: var(--muted); margin-bottom: 20px; }
.pricing__features { margin-bottom: 24px; }
.pricing__features li {
  font-size: 14px;
  padding: 6px 0;
  border-bottom: 1px solid var(--bg);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.pricing__features li::before { content: "✓"; color: var(--success); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.pricing__features li.disabled { color: var(--muted); }
.pricing__features li.disabled::before { content: "—"; color: var(--border-input); }

.landing-footer {
  padding: 28px 20px;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  border-top: 1px solid var(--border);
}
.landing-footer a { color: var(--muted); margin: 0 8px; }

/* ═══════════════════════════════════════════
   APP PAGE — the tool
══════════════════════════════════════════ */
.app-wrap { max-width: 760px; margin: 0 auto; padding: 28px 20px 60px; }
.app-wrap h1 { font-size: 22px; margin: 0 0 4px; }
.app-wrap .sub { color: var(--muted); font-size: 14px; margin: 0 0 22px; }

.tool-toolbar { display: flex; gap: 8px; margin: 8px 0 16px; flex-wrap: wrap; }
.tool-toolbar .btn { flex: 1; min-width: 110px; }

#timeline, #secondlist, #contactslist { width: 100%; border-collapse: collapse; font-size: 14px; }
#timeline td, #secondlist td, #contactslist td { padding: 8px 6px; border-bottom: 1px solid #f0f0f3; vertical-align: middle; }
#timeline td.t, #secondlist td.t, #contactslist td.t { width: 96px; font-weight: 700; color: var(--indigo); white-space: nowrap; }
#contactslist td.t { width: auto; min-width: 110px; padding-right: 16px; }
#timeline td.d { color: var(--muted); font-size: 12px; white-space: nowrap; width: 64px; }
#timeline td.del, #secondlist td.del, #contactslist td.del { width: 28px; text-align: right; }
#timeline td.del button, #secondlist td.del button, #contactslist td.del button {
  background: none; border: none; color: var(--muted); font-size: 16px;
  cursor: pointer; padding: 0 4px; opacity: 0; transition: opacity .15s;
  line-height: 1;
}
#timeline tr:hover td.del button, #secondlist tr:hover td.del button, #contactslist tr:hover td.del button { opacity: 1; }
#timeline tr:hover td.del button:hover, #secondlist tr:hover td.del button:hover, #contactslist tr:hover td.del button:hover { color: var(--danger); }

[contenteditable]:focus { outline: 2px solid var(--indigo); outline-offset: 2px; border-radius: 3px; }
[contenteditable]:hover:not(:focus) { background: #fafafa; border-radius: 3px; }

.add-row-btn {
  background: none; border: 1px dashed var(--border-input); color: var(--muted);
  border-radius: 6px; padding: 6px 12px; font-size: 13px; cursor: pointer;
  width: 100%; margin-top: 8px; transition: border-color .15s, color .15s;
}
.add-row-btn:hover { border-color: var(--indigo); color: var(--indigo); }

.shot-section { margin-bottom: 4px; }
.phase {
  font-weight: 700; font-size: 13px; margin: 14px 0 4px; color: #374151;
  display: flex; align-items: center; justify-content: space-between;
}
.phase-name { flex: 1; }
.phase-name[contenteditable]:focus { outline: 2px solid var(--indigo); outline-offset: 2px; border-radius: 3px; }
.shots { padding-left: 18px; font-size: 14px; color: #374151; list-style: disc; }
.shots li { margin: 3px 0; display: flex; align-items: flex-start; gap: 4px; }
.shots li span { flex: 1; }
.shots li .del-shot {
  background: none; border: none; color: var(--muted); font-size: 14px;
  cursor: pointer; padding: 0 3px; opacity: 0; transition: opacity .15s; line-height: 1; flex-shrink: 0;
}
.shots li:hover .del-shot { opacity: 1; }
.shots li:hover .del-shot:hover { color: var(--danger); }
.add-shot-btn {
  background: none; border: none; color: var(--muted); font-size: 12px;
  cursor: pointer; padding: 2px 0 2px 18px; transition: color .15s;
}
.add-shot-btn:hover { color: var(--indigo); }

.save-bar {
  background: var(--indigo-light);
  border: 1px solid #a5b4fc;
  border-radius: 10px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 16px;
  flex-wrap: wrap;
}
.save-bar p { font-size: 14px; color: #3730a3; margin: 0; }

.foot { font-size: 12px; color: var(--muted); text-align: center; margin-top: 8px; }

/* ═══════════════════════════════════════════
   AUTH PAGE
══════════════════════════════════════════ */
.auth-wrap {
  min-height: calc(100vh - 57px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}
.auth-card { background: var(--white); border: 1px solid var(--border); border-radius: 14px; padding: 32px; width: 100%; max-width: 400px; box-shadow: var(--shadow-md); }
.auth-card h2 { font-size: 22px; margin-bottom: 6px; }
.auth-card .sub { color: var(--muted); font-size: 14px; margin-bottom: 24px; }
.auth-tabs { display: flex; gap: 0; border-bottom: 2px solid var(--border); margin-bottom: 24px; }
.auth-tab {
  padding: 8px 16px;
  font-size: 14px; font-weight: 600;
  cursor: pointer; border: none; background: none; color: var(--muted);
  border-bottom: 2px solid transparent; margin-bottom: -2px;
  transition: color .15s, border-color .15s;
}
.auth-tab.active { color: var(--indigo); border-bottom-color: var(--indigo); }
.auth-tab:hover { color: var(--text); }
.auth-divider { text-align: center; color: var(--muted); font-size: 13px; margin: 16px 0; }
.auth-footer { text-align: center; font-size: 13px; color: var(--muted); margin-top: 20px; }

/* ═══════════════════════════════════════════
   DASHBOARD PAGE
══════════════════════════════════════════ */
.dash-wrap { max-width: 780px; margin: 0 auto; padding: 32px 20px 60px; }
.dash-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; flex-wrap: wrap; gap: 12px; }
.dash-header h1 { font-size: 22px; margin: 0; }
.plan-grid { display: flex; flex-direction: column; gap: 12px; }
.plan-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.plan-card__info h3 { font-size: 15px; margin: 0 0 2px; }
.plan-card__info p  { font-size: 12px; color: var(--muted); margin: 0; }
.plan-card__actions { display: flex; gap: 8px; }
.empty-state { text-align: center; padding: 60px 20px; color: var(--muted); }
.empty-state h3 { font-size: 17px; color: var(--text); margin-bottom: 8px; }
.empty-state p { font-size: 14px; margin-bottom: 20px; }

/* ── Upgrade prompt banner ── */
.upgrade-banner {
  background: linear-gradient(135deg, var(--indigo) 0%, #7c3aed 100%);
  color: #fff;
  border-radius: 12px;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.upgrade-banner h3 { font-size: 16px; margin: 0 0 4px; }
.upgrade-banner p  { font-size: 13px; margin: 0; opacity: .85; }
.upgrade-banner .btn { background: #fff; color: var(--indigo); border-color: #fff; flex-shrink: 0; }
.upgrade-banner .btn:hover { background: var(--indigo-light); text-decoration: none; }

/* ── Spinner ── */
.spinner {
  width: 18px; height: 18px;
  border: 2px solid rgba(255,255,255,.3);
  border-top-color: currentColor;
  border-radius: 50%;
  animation: spin .6s linear infinite;
  display: inline-block;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Section separator ── */
.section-head { font-size: 15px; font-weight: 700; margin: 18px 0 10px; padding-bottom: 6px; border-bottom: 2px solid #eef0f4; }
.section-head::before {
  content: ""; display: inline-block; width: 8px; height: 8px;
  border-radius: 2px; background: var(--indigo); margin-right: 8px;
}

/* ── Generated-output reveal — rows fade in like the generator just ran
   (mirrors the homepage demo card). Rows past the stagger window share the
   final delay so nothing appears out of order. ── */
#timeline tr, .shot-section {
  animation: out-row-in .3s ease both;
  animation-delay: .36s;
}
#timeline tr:nth-child(1), .shot-section:nth-child(1) { animation-delay: 0s; }
#timeline tr:nth-child(2), .shot-section:nth-child(2) { animation-delay: .04s; }
#timeline tr:nth-child(3), .shot-section:nth-child(3) { animation-delay: .08s; }
#timeline tr:nth-child(4), .shot-section:nth-child(4) { animation-delay: .12s; }
#timeline tr:nth-child(5), .shot-section:nth-child(5) { animation-delay: .16s; }
#timeline tr:nth-child(6), .shot-section:nth-child(6) { animation-delay: .20s; }
#timeline tr:nth-child(7), .shot-section:nth-child(7) { animation-delay: .24s; }
#timeline tr:nth-child(8), .shot-section:nth-child(8) { animation-delay: .28s; }
#timeline tr:nth-child(9), .shot-section:nth-child(9) { animation-delay: .32s; }
@keyframes out-row-in {
  from { opacity: 0; transform: translateY(5px); }
  to   { opacity: 1; transform: none; }
}
/* Never animate in PDF export, print, or for reduced-motion users */
.out.pdf-mode #timeline tr, .out.pdf-mode .shot-section { animation: none !important; }
@media print {
  #timeline tr, .shot-section { animation: none !important; }
}
@media (prefers-reduced-motion: reduce) {
  #timeline tr, .shot-section { animation: none !important; }
}

/* ── Tactile button press ── */
.btn:active:not(:disabled) { transform: translateY(1px); }

/* ═══════════════════════════════════════════
   PRINT STYLES
══════════════════════════════════════════ */
@media print {
  .nav, .tool-toolbar, .save-bar, .add-row-btn, .add-shot-btn, .del-shot, #generate-btn, .foot { display: none !important; }
  body { background: #fff; }
  .card { box-shadow: none; border: 1px solid #ddd; }
  .app-wrap { padding: 0; max-width: 100%; }
  [contenteditable] { outline: none !important; }
  .pdf-brand { display: block !important; }
}
.pdf-brand {
  display: none;
  text-align: center;
  font-size: 11px;
  color: #aaa;
  margin-top: 24px;
  padding-top: 12px;
  border-top: 1px solid #eee;
}

/* ── PDF export mode ──
   html2canvas ignores @media print, so exportPDF() toggles .pdf-mode on #out
   to hide interactive chrome (buttons, save bar) in the rendered PDF. */
.out.pdf-mode .tool-toolbar,
.out.pdf-mode .save-bar,
.out.pdf-mode .add-row-btn,
.out.pdf-mode .add-shot-btn,
.out.pdf-mode .del-shot,
.out.pdf-mode td.del,
.out.pdf-mode .foot { display: none !important; }
.out.pdf-mode [contenteditable] { outline: none !important; }

/* ── Branded PDF header (Pro custom branding) ── */
.pdf-header {
  display: none;
  align-items: center;
  gap: 14px;
  padding-bottom: 14px;
  margin-bottom: 18px;
  border-bottom: 3px solid var(--indigo);
}
.pdf-header.show { display: flex; }
.pdf-header img { max-height: 52px; max-width: 180px; }
.pdf-header__name { font-size: 18px; font-weight: 700; }
.pdf-header__sub  { font-size: 12px; color: var(--muted); }

/* ═══════════════════════════════════════════
   LANDING PAGE (index.html) EXTRAS
══════════════════════════════════════════ */

/* Split hero: copy left, sample timeline right */
.hero--split { text-align: left; padding: 64px 20px 68px; }
.hero__cols { display: flex; align-items: center; gap: 48px; }
.hero__copy { flex: 1 1 340px; min-width: 0; }
.hero--split h1 { margin: 0 0 16px; max-width: none; }
.hero--split .hero__copy > p { margin: 0 0 28px; max-width: 520px; }
.hero--split .hero__cta { justify-content: flex-start; }
.hero__demo { flex: 1 1 380px; min-width: 0; }

/* The signature element: a real-looking generated timeline */
.demo-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  padding: 18px 20px 14px;
  max-width: 460px;
  margin: 0 auto;
}
.demo-card__head {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding-bottom: 10px; margin-bottom: 6px;
  border-bottom: 2px solid var(--indigo-light);
  flex-wrap: wrap;
}
.demo-card__title { font-size: 14px; font-weight: 700; }
.demo-card__tag {
  font-size: 11px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  color: var(--indigo); background: var(--indigo-light);
  padding: 3px 9px; border-radius: 99px; white-space: nowrap;
}
.demo-row {
  display: flex; gap: 12px; align-items: baseline;
  font-size: 13.5px; padding: 6px 2px;
  border-bottom: 1px solid #f0f0f3;
  animation: demo-row-in .4s ease both;
}
.demo-row:nth-child(2)  { animation-delay: .05s; }
.demo-row:nth-child(3)  { animation-delay: .12s; }
.demo-row:nth-child(4)  { animation-delay: .19s; }
.demo-row:nth-child(5)  { animation-delay: .26s; }
.demo-row:nth-child(6)  { animation-delay: .33s; }
.demo-row:nth-child(7)  { animation-delay: .40s; }
.demo-row:nth-child(8)  { animation-delay: .47s; }
.demo-row:nth-child(9)  { animation-delay: .54s; }
.demo-row__time { font-weight: 700; color: var(--indigo); white-space: nowrap; width: 62px; flex-shrink: 0; }
.demo-row--gold {
  background: #fffbeb; border-bottom-color: #fde68a;
  border-radius: 6px; margin: 0 -6px; padding: 6px 8px;
}
.demo-row--gold .demo-row__time { color: #b45309; }
.demo-row__label {
  font-style: normal; font-size: 11px; font-weight: 700; color: #b45309;
  background: #fef3c7; border-radius: 99px; padding: 1px 7px; margin-left: 6px;
  white-space: nowrap;
}
.demo-card__foot { font-size: 12px; color: var(--muted); padding-top: 10px; }
@keyframes demo-row-in {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .demo-row { animation: none; }
}

/* Generic landing band (free tier, event types) */
.band { padding: 60px 20px; background: var(--white); border-top: 1px solid var(--border); }
.band h2 { text-align: center; font-size: 24px; margin-bottom: 8px; }
.band__sub { text-align: center; color: var(--muted); font-size: 15px; max-width: 560px; margin: 0 auto 32px; }
.band__cta { text-align: center; margin-top: 28px; }

.checkgrid {
  list-style: none; padding: 0; margin: 0 auto; max-width: 640px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px 28px;
}
.checkgrid li { position: relative; padding-left: 26px; font-size: 14px; }
.checkgrid li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  color: var(--success); font-weight: 700;
}

/* Pro feature grid */
.features { padding: 60px 20px; }
.features h2 { text-align: center; font-size: 24px; margin-bottom: 8px; }
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 8px; }
.feat {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 22px;
}
.feat h3 { font-size: 15px; margin: 0 0 6px; }
.feat p { font-size: 13.5px; color: var(--muted); margin: 0; }

/* Event type chips */
.band--types { background: var(--bg); }
.type-chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; max-width: 620px; margin: 0 auto; }
.type-chip {
  background: var(--white); border: 1px solid var(--border); border-radius: 99px;
  padding: 8px 16px; font-size: 14px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 8px;
}
.type-chip em {
  font-style: normal; font-size: 10px; font-weight: 700; letter-spacing: .05em;
  text-transform: uppercase; padding: 2px 7px; border-radius: 99px;
  background: var(--indigo-light); color: var(--indigo);
}

/* FAQ accordion (native <details>) */
.faq { padding: 60px 20px; background: var(--white); border-top: 1px solid var(--border); }
.faq h2 { text-align: center; font-size: 24px; margin-bottom: 28px; }
.faq details {
  border: 1px solid var(--border); border-radius: 10px;
  background: var(--bg); margin-bottom: 10px; padding: 0 18px;
}
.faq summary {
  cursor: pointer; font-size: 15px; font-weight: 600;
  padding: 14px 0; list-style: none; position: relative; padding-right: 28px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 2px; top: 50%; transform: translateY(-50%);
  font-size: 18px; font-weight: 400; color: var(--indigo);
}
.faq details[open] summary::after { content: "–"; }
.faq details p { font-size: 14px; color: var(--muted); margin: 0; padding: 0 0 16px; }

/* Final CTA */
.cta-band {
  text-align: center; padding: 64px 20px;
  background: linear-gradient(135deg, var(--indigo) 0%, #7c3aed 100%);
  color: #fff;
}
.cta-band h2 { font-size: 26px; margin-bottom: 8px; color: #fff; }
.cta-band p { font-size: 15px; opacity: .85; margin: 0 0 24px; }
.cta-band .btn { background: #fff; color: var(--indigo); border-color: #fff; font-weight: 700; }
.cta-band .btn:hover { background: var(--indigo-light); text-decoration: none; }

@media (max-width: 860px) {
  .hero__cols { flex-direction: column; gap: 36px; }
  .hero--split { text-align: center; }
  .hero--split .hero__cta { justify-content: center; }
  .hero--split .hero__copy > p { margin-left: auto; margin-right: auto; }
  .feat-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .checkgrid { grid-template-columns: 1fr; }
  .feat-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 600px) {
  .hero { padding: 48px 20px 40px; }
  .steps__grid { flex-direction: column; gap: 32px; }
  .pricing__grid { flex-direction: column; align-items: center; }
  .pricing__card { max-width: 100%; }
  .nav__links .hide-mobile { display: none; }
  .auth-card { padding: 24px 18px; }
  .save-bar { flex-direction: column; align-items: flex-start; }
  .plan-card { flex-direction: column; align-items: flex-start; }
}

/* ── Gear checklist: clickable ☐/☑ boxes (buildGearDOM/makeGearLi) ── */
.gear-box { flex: 0 0 auto; cursor: pointer; user-select: none; font-size: 16px; line-height: 1.3; color: #4f46e5; }
.gear-box:hover { color: #3730a3; }
.gear-text.gear-done { text-decoration: line-through; color: var(--muted); }
