/* ============================================================
   TTP Advisor Modal — advisor-modal.css
   The Token Playbook · v1.0 · March 2026
   ============================================================ */

/* ============================================================
   OVERLAY & MODAL SHELL
   ============================================================ */
#ttp-advisor-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(5, 15, 26, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}

#ttp-advisor-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}

#ttp-advisor-modal {
  position: relative;
  width: 100%;
  max-width: 680px;
  max-height: 90vh;
  background: #081928;
  border: 1px solid #1A3A5C;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(26, 144, 184, 0.15),
    inset 0 1px 0 rgba(126, 202, 195, 0.08);
  transform: translateY(16px) scale(0.98);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

#ttp-advisor-overlay.is-open #ttp-advisor-modal {
  transform: translateY(0) scale(1);
}

/* ============================================================
   PROGRESS BAR
   ============================================================ */
.adv-progress-bar {
  position: relative;
  height: 3px;
  background: #0D2E4A;
  flex-shrink: 0;
}

.adv-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #1A90B8, #7ECAC3);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 0 2px 2px 0;
  box-shadow: 0 0 8px rgba(26, 144, 184, 0.5);
}

/* ============================================================
   MODAL HEADER
   ============================================================ */
.adv-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px 16px;
  border-bottom: 1px solid #0D2E4A;
  flex-shrink: 0;
}

.adv-header-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.adv-header-logo {
  font-family: 'JetBrains Mono', 'Fira Code', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #1A90B8;
  opacity: 0.8;
}

.adv-header-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #7ECAC3;
  box-shadow: 0 0 6px #7ECAC3;
  animation: adv-pulse 2s infinite;
}

@keyframes adv-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.adv-step-indicator {
  font-family: 'JetBrains Mono', 'Fira Code', monospace;
  font-size: 11px;
  color: #3A6A8A;
  letter-spacing: 0.5px;
}

.adv-close {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: transparent;
  border: 1px solid transparent;
  color: #6A95B5;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
  transition: all 0.2s;
  font-family: inherit;
}

.adv-close:hover {
  background: #0D2E4A;
  border-color: #1A3A5C;
  color: #E8F0F7;
}

/* ============================================================
   SCROLLABLE BODY
   ============================================================ */
.adv-body {
  flex: 1;
  overflow-y: auto;
  padding: 28px 28px 24px;
  scrollbar-width: thin;
  scrollbar-color: #1A3A5C transparent;
}

.adv-body::-webkit-scrollbar { width: 4px; }
.adv-body::-webkit-scrollbar-track { background: transparent; }
.adv-body::-webkit-scrollbar-thumb { background: #1A3A5C; border-radius: 4px; }

/* ============================================================
   SCREEN TRANSITIONS
   ============================================================ */
.adv-screen {
  display: none;
  animation: adv-fadein 0.35s ease;
}

.adv-screen.is-active {
  display: block;
}

@keyframes adv-fadein {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   SCREEN 1 — INTERVIEW
   ============================================================ */
.adv-question-header {
  margin-bottom: 24px;
}

.adv-question-label {
  font-family: 'JetBrains Mono', 'Fira Code', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #1A90B8;
  margin-bottom: 8px;
}

.adv-question-text {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.3;
  letter-spacing: -0.5px;
}

.adv-question-sub {
  font-size: 14px;
  color: #6A95B5;
  margin-top: 6px;
  line-height: 1.5;
}

/* Card choices */
.adv-choices {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.adv-choice {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: #0A2540;
  border: 1.5px solid #1A3A5C;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.18s ease;
  text-align: left;
  width: 100%;
  font-family: 'Inter', system-ui, sans-serif;
}

.adv-choice:hover {
  background: #0D2E4A;
  border-color: #1A90B8;
}

.adv-choice.is-selected {
  background: rgba(26, 144, 184, 0.12);
  border-color: #1A90B8;
  box-shadow: 0 0 0 1px rgba(26, 144, 184, 0.3);
}

.adv-choice-radio {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #1A3A5C;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.18s;
}

.adv-choice.is-selected .adv-choice-radio {
  border-color: #1A90B8;
  background: #1A90B8;
}

.adv-choice.is-selected .adv-choice-radio::after {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: white;
}

.adv-choice-label {
  font-size: 15px;
  font-weight: 500;
  color: #E8F0F7;
  line-height: 1.4;
}

.adv-choice-hint {
  font-size: 12px;
  color: #6A95B5;
  margin-top: 2px;
  font-weight: 400;
}

/* Email input question */
.adv-email-wrap {
  margin-bottom: 24px;
}

.adv-email-input {
  width: 100%;
  padding: 14px 18px;
  background: #0A2540;
  border: 1.5px solid #1A3A5C;
  border-radius: 10px;
  color: #FFFFFF;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  outline: none;
  transition: border-color 0.2s;
  margin-bottom: 8px;
}

.adv-email-input::placeholder {
  color: #3A6A8A;
}

.adv-email-input:focus {
  border-color: #1A90B8;
  box-shadow: 0 0 0 3px rgba(26, 144, 184, 0.12);
}

.adv-email-hint {
  font-size: 12px;
  color: #3A6A8A;
  font-style: italic;
}

/* Nav row */
.adv-nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 4px;
}

.adv-btn-back {
  padding: 11px 20px;
  background: transparent;
  border: 1.5px solid #1A3A5C;
  border-radius: 8px;
  color: #6A95B5;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.adv-btn-back:hover {
  border-color: #1A90B8;
  color: #E8F0F7;
}

.adv-btn-next {
  padding: 12px 28px;
  background: linear-gradient(135deg, #1A90B8, #0D4C7A);
  border: none;
  border-radius: 8px;
  color: #FFFFFF;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.adv-btn-next:hover:not(:disabled) {
  background: linear-gradient(135deg, #1578A0, #0D4C7A);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(26, 144, 184, 0.35);
}

.adv-btn-next:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}

/* ============================================================
   SCREEN 2 — TEASER
   ============================================================ */
.adv-teaser-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.adv-teaser-eyebrow {
  font-family: 'JetBrains Mono', 'Fira Code', monospace;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #7ECAC3;
}

.adv-teaser-title {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.25;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}

.adv-teaser-summary {
  background: linear-gradient(135deg, rgba(13, 76, 122, 0.3), rgba(26, 144, 184, 0.1));
  border: 1px solid rgba(26, 144, 184, 0.25);
  border-radius: 12px;
  padding: 20px 22px;
  margin-bottom: 20px;
}

.adv-teaser-summary p {
  font-size: 15px;
  color: #E8F0F7;
  line-height: 1.7;
}

.adv-teaser-insight {
  background: rgba(240, 165, 0, 0.06);
  border: 1px solid rgba(240, 165, 0, 0.2);
  border-left: 3px solid #F0A500;
  border-radius: 0 10px 10px 0;
  padding: 16px 18px;
  margin-bottom: 24px;
}

.adv-teaser-insight-label {
  font-family: 'JetBrains Mono', 'Fira Code', monospace;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #F0A500;
  margin-bottom: 8px;
  opacity: 0.8;
}

.adv-teaser-insight p {
  font-size: 14px;
  color: #E8F0F7;
  line-height: 1.65;
  font-style: italic;
}

.adv-teaser-deliverables {
  margin-bottom: 28px;
}

.adv-teaser-deliverables h4 {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #6A95B5;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.adv-teaser-deliverables ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.adv-teaser-deliverables li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #E8F0F7;
  line-height: 1.5;
}

.adv-teaser-deliverables li::before {
  content: '→';
  color: #1A90B8;
  flex-shrink: 0;
  margin-top: 0;
  font-weight: 600;
}

.adv-teaser-closer {
  font-size: 13px;
  color: #6A95B5;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 28px;
  border-top: 1px solid #0D2E4A;
  padding-top: 20px;
}

/* CTA pair */
.adv-cta-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 16px;
}

.adv-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 18px 16px;
  border-radius: 12px;
  cursor: pointer;
  border: none;
  font-family: 'Inter', system-ui, sans-serif;
  transition: all 0.22s ease;
  text-align: center;
}

.adv-cta--standard {
  background: rgba(26, 144, 184, 0.12);
  border: 1.5px solid rgba(26, 144, 184, 0.35);
}

.adv-cta--standard:hover {
  background: rgba(26, 144, 184, 0.2);
  border-color: #1A90B8;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26, 144, 184, 0.2);
}

.adv-cta--expedited {
  background: linear-gradient(135deg, rgba(240, 165, 0, 0.15), rgba(240, 165, 0, 0.06));
  border: 1.5px solid rgba(240, 165, 0, 0.4);
}

.adv-cta--expedited:hover {
  background: linear-gradient(135deg, rgba(240, 165, 0, 0.25), rgba(240, 165, 0, 0.12));
  border-color: #F0A500;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(240, 165, 0, 0.2);
}

.adv-cta-price {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
}

.adv-cta--standard .adv-cta-price { color: #1A90B8; }
.adv-cta--expedited .adv-cta-price { color: #F0A500; }

.adv-cta-tier {
  font-size: 13px;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 6px;
}

.adv-cta-desc {
  font-size: 12px;
  color: #6A95B5;
  line-height: 1.4;
}

.adv-cta-fine-print {
  text-align: center;
  font-size: 12px;
  color: #3A6A8A;
  line-height: 1.5;
}

/* Investor branch disclaimer */
.advisor-disclaimer {
  font-size: 11px;
  color: rgba(126, 202, 195, 0.6);
  font-style: italic;
  max-width: 520px;
  text-align: center;
  margin: 14px auto 10px;
  line-height: 1.55;
}

/* ============================================================
   SCREEN 3 — GATE / COMING SOON
   ============================================================ */
.adv-gate {
  text-align: center;
  padding: 12px 0 8px;
}

.adv-gate-icon {
  font-size: 40px;
  margin-bottom: 16px;
  line-height: 1;
}

.adv-gate-title {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.adv-gate-msg {
  font-size: 15px;
  color: #6A95B5;
  line-height: 1.6;
  max-width: 400px;
  margin: 0 auto 24px;
}

.adv-gate-notice {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: rgba(240, 165, 0, 0.08);
  border: 1px solid rgba(240, 165, 0, 0.25);
  border-radius: 8px;
  font-size: 13px;
  color: #F0A500;
  margin-bottom: 24px;
}

.adv-gate-summary {
  background: #0A2540;
  border: 1px solid #1A3A5C;
  border-radius: 10px;
  padding: 16px 20px;
  text-align: left;
  margin-bottom: 20px;
}

.adv-gate-summary-label {
  font-family: 'JetBrains Mono', 'Fira Code', monospace;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #3A6A8A;
  margin-bottom: 10px;
}

.adv-gate-summary-rows {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.adv-gate-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
}

.adv-gate-summary-key { color: #6A95B5; }
.adv-gate-summary-val { color: #E8F0F7; font-weight: 500; }

.adv-gate-back {
  padding: 12px 24px;
  background: transparent;
  border: 1.5px solid #1A3A5C;
  border-radius: 8px;
  color: #6A95B5;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 8px;
}

.adv-gate-back:hover {
  border-color: #1A90B8;
  color: #E8F0F7;
}

/* ============================================================
   SINGLE GENERATE CTA
   ============================================================ */
.adv-cta-single {
  margin-bottom: 16px;
}

.adv-btn-generate {
  display: block;
  width: 100%;
  padding: 16px 28px;
  background: linear-gradient(135deg, #1A90B8, #0D4C7A);
  border: none;
  border-radius: 10px;
  color: #FFFFFF;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.01em;
}

.adv-btn-generate:hover {
  background: linear-gradient(135deg, #1578A0, #0D4C7A);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(26, 144, 184, 0.4);
}

/* ============================================================
   GENERATING / SPINNER SCREEN
   ============================================================ */
.adv-generating {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
  text-align: center;
  gap: 20px;
}

.adv-generating-spinner {
  width: 48px;
  height: 48px;
  border: 3px solid rgba(26, 144, 184, 0.2);
  border-top-color: #1A90B8;
  border-radius: 50%;
  animation: adv-spin 0.8s linear infinite;
}

@keyframes adv-spin {
  to { transform: rotate(360deg); }
}

.adv-generating-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
}

.adv-generating-msg {
  font-size: 0.85rem;
  color: #7ECAC3;
  max-width: 320px;
}

/* ============================================================
   SCREEN 4 — REPORT
   ============================================================ */
.adv-report-header {
  padding: 24px 32px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-shrink: 0;
}

.adv-report-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: #1A90B8;
  text-transform: uppercase;
  margin-bottom: 6px;
  font-family: 'JetBrains Mono', 'Fira Code', monospace;
}

.adv-report-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
}

.adv-report-meta {
  font-size: 0.75rem;
  color: #7ECAC3;
  margin-top: 4px;
}

.adv-report-body {
  padding: 24px 32px;
  overflow-y: auto;
  max-height: 55vh;
  line-height: 1.7;
  color: #c0c8d0;
  flex: 1;
}

.adv-report-body h2 {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  margin: 24px 0 8px;
  border-left: 3px solid #1A90B8;
  padding-left: 10px;
}

.adv-report-body p {
  margin: 0 0 12px;
  font-size: 0.9rem;
}

.adv-report-body ul,
.adv-report-body ol {
  margin: 0 0 12px;
  padding-left: 20px;
}

.adv-report-body li {
  margin-bottom: 6px;
  font-size: 0.9rem;
}

.adv-report-body strong {
  color: #fff;
}

.adv-report-footer {
  padding: 16px 32px 24px;
  display: flex;
  gap: 12px;
  border-top: 1px solid rgba(255,255,255,0.08);
  flex-shrink: 0;
}

.adv-report-cta {
  background: #1A90B8;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 0.85rem;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s;
}

.adv-report-cta:hover {
  background: #1578A0;
}

.adv-report-share {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: #c0c8d0;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s;
}

.adv-report-share:hover {
  border-color: rgba(255,255,255,0.4);
  color: #fff;
}

/* Screen 4 needs a different layout — use flex column for header/body/footer */
#adv-screen-report.is-active {
  display: flex;
  flex-direction: column;
  max-height: 75vh;
}

/* ============================================================
   GENERATING STEPS (replaces spinner)
   ============================================================ */
.adv-generating-steps-wrap {
  padding: 32px 24px 24px;
}

.adv-generating-steps-title {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
  text-align: center;
}

.adv-gen-steps {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.adv-gen-step {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  padding: 2px 0;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.adv-gen-step[data-state="pending"] {
  color: #3A6A8A;
  opacity: 0.6;
}

.adv-gen-step[data-state="active"] {
  color: #fff;
  opacity: 1;
}

.adv-gen-step[data-state="done"] {
  color: #1A90B8;
  font-size: 0.825rem;
}

.adv-gen-step-icon {
  font-size: 0.85rem;
  width: 18px;
  flex-shrink: 0;
  text-align: center;
}

.adv-gen-step[data-state="active"] .adv-gen-step-icon {
  animation: adv-pulse-dot 1s infinite;
  color: #7ECAC3;
}

@keyframes adv-pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.adv-gen-progress-bar {
  height: 3px;
  background: #0D2E4A;
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 24px;
}

.adv-gen-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #1A90B8, #7ECAC3);
  border-radius: 2px;
  transition: width 0.6s ease;
  width: 0%;
}

/* "While you wait" card */
.adv-while-you-wait {
  background: rgba(10, 37, 64, 0.8);
  border-left: 3px solid #1A90B8;
  border-radius: 0 8px 8px 0;
  padding: 12px 16px;
}

.adv-wait-label {
  font-family: 'JetBrains Mono', 'Fira Code', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: #1A90B8;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.adv-wait-link {
  font-size: 0.82rem;
  color: #c0c8d0;
  text-decoration: none;
  line-height: 1.5;
  transition: color 0.2s;
}

.adv-wait-link:hover {
  color: #7ECAC3;
}

/* ============================================================
   SCREEN 4 — ACCEPT TERMS
   ============================================================ */
.adv-accept-header {
  padding: 28px 32px 16px;
}

.adv-accept-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: #1A90B8;
  text-transform: uppercase;
  margin-bottom: 6px;
  font-family: 'JetBrains Mono', 'Fira Code', monospace;
}

.adv-accept-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
}

.adv-accept-body {
  padding: 0 32px 16px;
}

.adv-accept-body > p {
  color: #c0c8d0;
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.adv-accept-disclaimer {
  background: rgba(255,255,255,0.04);
  border-left: 3px solid rgba(255,255,255,0.15);
  padding: 12px 16px;
  border-radius: 0 6px 6px 0;
  margin-bottom: 12px;
  font-size: 0.8rem;
  color: #8a9ab0;
  line-height: 1.6;
}

.adv-accept-checkbox-label {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  cursor: pointer;
  padding: 16px;
  background: rgba(26,144,184,0.08);
  border: 1px solid rgba(26,144,184,0.2);
  border-radius: 8px;
  margin-top: 16px;
}

.adv-accept-checkbox-label input[type="checkbox"] {
  margin-top: 2px;
  width: 16px;
  height: 16px;
  accent-color: #1A90B8;
  flex-shrink: 0;
  cursor: pointer;
}

.adv-accept-checkbox-label span {
  font-size: 0.85rem;
  color: #c0c8d0;
  line-height: 1.5;
}

.adv-accept-footer {
  padding: 16px 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.adv-accept-btn {
  background: #555;
  color: #888;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: not-allowed;
  transition: all 0.2s;
}

.adv-accept-btn.active {
  background: #1A90B8;
  color: #fff;
  cursor: pointer;
}

.adv-accept-btn.active:hover {
  background: #1578A0;
}

.adv-accept-note {
  font-size: 0.75rem;
  color: #556;
  text-align: center;
}

.adv-accept-note.hidden {
  display: none;
}

/* ============================================================
   TIME SAVINGS ESTIMATE (in report body)
   ============================================================ */
.adv-time-savings {
  margin: 24px 0;
  padding: 20px;
  background: rgba(26,144,184,0.06);
  border: 1px solid rgba(26,144,184,0.2);
  border-radius: 8px;
}

.adv-time-savings-header {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.adv-time-savings-intro {
  font-size: 0.8rem;
  color: #8a9ab0;
  margin-bottom: 12px;
}

.adv-time-savings-rows {
  margin-bottom: 12px;
}

.adv-time-savings-row {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.8rem;
  color: #c0c8d0;
}

.adv-time-savings-row:last-child {
  border-bottom: none;
}

.adv-time-savings-hours {
  color: #7ECAC3;
  font-weight: 600;
  white-space: nowrap;
  margin-left: 12px;
}

.adv-time-savings-total,
.adv-time-savings-ttp {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 0.85rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 4px;
}

.adv-time-savings-label {
  color: #c0c8d0;
}

.adv-time-savings-value {
  color: #fff;
  font-weight: 600;
  margin-left: 12px;
  text-align: right;
}

.adv-time-savings-saved {
  margin-top: 12px;
  padding: 10px 14px;
  background: rgba(126,202,195,0.1);
  border-radius: 6px;
  font-size: 0.85rem;
  color: #7ECAC3;
  text-align: center;
}

.adv-time-savings-saved strong {
  color: #fff;
}

/* ============================================================
   UPSELL CARD
   ============================================================ */
.adv-upsell {
  margin: 24px 0;
  padding: 24px;
  background: linear-gradient(135deg, rgba(13,76,122,0.3), rgba(26,144,184,0.15));
  border: 1px solid rgba(26,144,184,0.4);
  border-radius: 12px;
  transition: opacity 0.4s ease;
}

.adv-upsell--dismissed {
  opacity: 0;
}

.adv-upsell-badge {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7ECAC3;
  background: rgba(126,202,195,0.1);
  border: 1px solid rgba(126,202,195,0.3);
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.adv-upsell-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.adv-upsell-body p {
  font-size: 0.85rem;
  color: #c0c8d0;
  margin-bottom: 10px;
  line-height: 1.6;
}

.adv-upsell-includes {
  list-style: none;
  padding: 0;
  margin: 12px 0;
}

.adv-upsell-includes li {
  font-size: 0.82rem;
  color: #7ECAC3;
  padding: 4px 0;
}

.adv-upsell-pricing {
  margin: 16px 0 12px;
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.adv-upsell-price {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

.adv-upsell-price-note {
  font-size: 0.75rem;
  color: #8a9ab0;
}

.adv-upsell-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.adv-upsell-btn {
  background: #1A90B8;
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  text-align: center;
}

.adv-upsell-btn:hover {
  background: #1580a5;
}

.adv-upsell-skip {
  font-size: 0.78rem;
  color: #556;
  cursor: pointer;
  text-align: center;
  text-decoration: underline;
}

.adv-upsell-skip:hover {
  color: #8a9ab0;
}

/* ============================================================
   REPORT LEGAL DISCLAIMER
   ============================================================ */
.adv-report-legal {
  margin: 16px 0;
  padding: 12px 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  font-size: 0.75rem;
  color: #6a7a8a;
  line-height: 1.6;
}

.adv-report-legal strong {
  color: #8a9ab0;
}

.adv-report-legal-investment {
  margin-top: 8px;
  padding: 12px 16px;
  background: rgba(245,158,11,0.05);
  border: 1px solid rgba(245,158,11,0.2);
  border-radius: 6px;
  font-size: 0.75rem;
  color: #6a7a8a;
  line-height: 1.6;
}

.adv-report-legal-investment strong {
  color: #f59e0b;
}

.adv-accept-disclaimer--investment {
  background: rgba(245,158,11,0.05);
  border-left: 3px solid rgba(245,158,11,0.4);
  border-color: rgba(245,158,11,0.2);
}

/* ============================================================
   PRINT STYLES
   ============================================================ */
@media print {
  body > *:not(#ttp-advisor-overlay) { display: none !important; }
  #ttp-advisor-overlay { position: static; background: white; opacity: 1; pointer-events: all; }
  #ttp-advisor-modal {
    box-shadow: none;
    border: none;
    max-height: none;
    transform: none;
  }
  .adv-screen:not(#adv-screen-report) { display: none !important; }
  #adv-screen-accept { display: none !important; }
  .adv-report-legal {
    margin: 16px 0;
    padding: 12px 16px;
    background: #f8f8f8;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.75rem;
    color: #555;
    line-height: 1.6;
  }
  .adv-report-legal strong { color: #333; }
  #adv-screen-report {
    display: block !important;
    color: #000;
    background: white;
    max-height: none;
  }
  .adv-report-header {
    border-bottom: 1px solid #ddd;
    padding: 16px 0;
  }
  .adv-report-eyebrow { color: #1A90B8; }
  .adv-report-title { color: #000; }
  .adv-report-meta { color: #555; }
  .adv-report-body {
    max-height: none;
    overflow: visible;
    color: #000;
    padding: 16px 0;
  }
  .adv-report-body h2 {
    color: #000;
    border-left-color: #1A90B8;
  }
  .adv-report-body strong { color: #000; }
  .adv-progress-bar,
  .adv-header,
  .adv-close,
  .adv-report-footer { display: none !important; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 640px) {
  #ttp-advisor-overlay {
    padding: 0;
    align-items: flex-end;
  }

  #ttp-advisor-modal {
    border-radius: 16px 16px 0 0;
    max-height: 92vh;
    border-left: none;
    border-right: none;
    border-bottom: none;
  }

  .adv-header {
    padding: 16px 20px 14px;
  }

  .adv-body {
    padding: 20px 20px 20px;
  }

  .adv-question-text {
    font-size: 19px;
  }

  .adv-cta-pair {
    grid-template-columns: 1fr;
  }

  .adv-teaser-title {
    font-size: 22px;
  }
}

@media (max-width: 400px) {
  .adv-choice-label {
    font-size: 14px;
  }

  .adv-question-text {
    font-size: 17px;
  }
}
