/* ═══════════════════════════════════════════════════════════════════════
   NoticeSahayak — Variable-First Theme System
   Every color is a CSS variable.  Two theme blocks do all the work.
   ═══════════════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;800&family=Inter:wght@400;500;600;700;800&family=DM+Mono:wght@400;500&family=Noto+Sans+Devanagari:wght@400;500;600;700&display=swap');

/* ══════════════════════════════════════════════════════
   ROOT — brand tokens (never change) + dark defaults
   ══════════════════════════════════════════════════════ */
:root {
  /* Brand — constant */
  --orange:       #E85D1A;
  --orange-hover: #C94E10;
  --teal-c:       #0B7C5A;
  --serif:        'Playfair Display', Georgia, serif;
  --mono-f:       'DM Mono', monospace;

  /* ── LANDING palette ── default = DARK DEEP BLUE ── */
  --lp-bg1:          #040B1C;   /* hero, footer */
  --lp-bg2:          #030A18;   /* trust strip, pricing */
  --lp-bg3:          #080D1A;   /* how, faq, body */
  --lp-card:         #0E1828;   /* cards inside sections */
  --lp-divider:      #1A2540;   /* grid dividers, card borders */
  --lp-nav-bg:       rgba(3,8,20,0.96);
  --lp-nav-border:   rgba(255,255,255,0.07);
  --lp-text-h:       #F1F5F9;   /* headings */
  --lp-text-b:       #94A3B8;   /* body */
  --lp-text-m:       rgba(255,255,255,0.4); /* muted */
  --lp-ticker-bg:    #07101F;
  --lp-tool-card-bg: rgba(255,255,255,0.05);
  --lp-tool-card-br: rgba(255,255,255,0.11);
  --lp-label:        rgba(255,255,255,0.35);
  --lp-drop-border:  rgba(255,255,255,0.2);
  --lp-drop-text:    rgba(255,255,255,0.55);
  --lp-drop-or:      rgba(255,255,255,0.3);
  --lp-drop-icon:    rgba(255,255,255,0.25);
  --lp-choose-br:    rgba(255,255,255,0.2);
  --lp-choose-text:  rgba(255,255,255,0.7);
  --lp-privacy-c:    rgba(255,255,255,0.28);
  --lp-nav-text:     rgba(255,255,255,0.65);
  --lp-nav-chip-bg:  rgba(255,255,255,0.07);
  --lp-nav-chip-br:  rgba(255,255,255,0.12);
  --lp-nav-chip-c:   rgba(255,255,255,0.6);
  --lp-upload-dis-bg:rgba(255,255,255,0.08);
  --lp-upload-dis-c: rgba(255,255,255,0.25);
  --lp-grid-line:    rgba(255,255,255,0.03);
  --lp-faq-hover:    #141F32;
  --lp-step-num-c:   #2D3E58;
  --lp-logo-c:       #ffffff;
  --lp-logo-dim:     rgba(255,255,255,0.4);
  --lp-footer-text:  rgba(255,255,255,0.45);
  --lp-footer-muted: rgba(255,255,255,0.28);
  --lp-footer-dim:   rgba(255,255,255,0.22);
  --lp-footer-head:  rgba(255,255,255,0.35);
  --lp-footer-hover: #ffffff;
  --lp-footer-div:   rgba(255,255,255,0.08);

  /* ── FLOW SCREEN palette ── default = DARK ── */
  --bg-primary:        #040B1C;
  --bg-secondary:      #0E1828;
  --bg-tertiary:       #1A2540;
  --bg-elevated:       #1E293B;
  --bg-accent-subtle:  rgba(59,130,246,0.12);
  --bg-success-subtle: rgba(22,163,74,0.12);
  --bg-warning-subtle: rgba(217,119,6,0.12);
  --bg-danger-subtle:  rgba(220,38,38,0.12);

  --text-primary:   #F1F5F9;
  --text-secondary: #94A3B8;
  --text-tertiary:  #64748B;
  --text-inverse:   #0F172A;
  --text-accent:    #60A5FA;
  --text-success:   #4ADE80;
  --text-warning:   #FBBF24;
  --text-danger:    #FB7185;

  --border-primary:   #1E293B;
  --border-secondary: #334155;
  --border-accent:    #3B82F6;

  --accent:       #3B82F6;
  --accent-hover: #60A5FA;
  --accent-glow:  rgba(59,130,246,0.25);

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.4);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.4);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.5);
  --shadow-glow: 0 0 30px var(--accent-glow);

  --gradient-btn:       linear-gradient(135deg, #3B82F6 0%, #8B5CF6 100%);
  --gradient-btn-hover: linear-gradient(135deg, #60A5FA 0%, #A78BFA 100%);

  --radius-sm:   8px;
  --radius-md:   12px;
  --radius-lg:   16px;
  --radius-xl:   20px;
  --radius-full: 9999px;

  --transition:        0.3s cubic-bezier(0.4,0,0.2,1);
  --transition-fast:   0.15s cubic-bezier(0.4,0,0.2,1);
  --transition-spring: 0.5s cubic-bezier(0.34,1.56,0.64,1);
}

/* ══════════════════════════════════════════════════════
   DARK THEME  —  deep blue everywhere
   ══════════════════════════════════════════════════════ */
[data-theme="dark"] {
  /* Landing */
  --lp-bg1:          #040B1C;
  --lp-bg2:          #030A18;
  --lp-bg3:          #080D1A;
  --lp-card:         #0E1828;
  --lp-divider:      #1A2540;
  --lp-nav-bg:       rgba(3,8,20,0.96);
  --lp-nav-border:   rgba(255,255,255,0.07);
  --lp-text-h:       #F1F5F9;
  --lp-text-b:       #94A3B8;
  --lp-text-m:       rgba(255,255,255,0.4);
  --lp-ticker-bg:    #07101F;
  --lp-tool-card-bg: rgba(255,255,255,0.05);
  --lp-tool-card-br: rgba(255,255,255,0.11);
  --lp-label:        rgba(255,255,255,0.35);
  --lp-drop-border:  rgba(255,255,255,0.2);
  --lp-drop-text:    rgba(255,255,255,0.55);
  --lp-drop-or:      rgba(255,255,255,0.3);
  --lp-drop-icon:    rgba(255,255,255,0.25);
  --lp-choose-br:    rgba(255,255,255,0.2);
  --lp-choose-text:  rgba(255,255,255,0.7);
  --lp-privacy-c:    rgba(255,255,255,0.28);
  --lp-nav-text:     rgba(255,255,255,0.65);
  --lp-nav-chip-bg:  rgba(255,255,255,0.07);
  --lp-nav-chip-br:  rgba(255,255,255,0.12);
  --lp-nav-chip-c:   rgba(255,255,255,0.6);
  --lp-upload-dis-bg:rgba(255,255,255,0.08);
  --lp-upload-dis-c: rgba(255,255,255,0.25);
  --lp-grid-line:    rgba(255,255,255,0.03);
  --lp-faq-hover:    #141F32;
  --lp-step-num-c:   #2D3E58;
  --lp-logo-c:       #ffffff;
  --lp-logo-dim:     rgba(255,255,255,0.4);
  --lp-footer-text:  rgba(255,255,255,0.45);
  --lp-footer-muted: rgba(255,255,255,0.28);
  --lp-footer-dim:   rgba(255,255,255,0.22);
  --lp-footer-head:  rgba(255,255,255,0.35);
  --lp-footer-hover: #ffffff;
  --lp-footer-div:   rgba(255,255,255,0.08);
  /* Flow screens */
  --bg-primary:        #040B1C;
  --bg-secondary:      #0E1828;
  --bg-tertiary:       #1A2540;
  --bg-elevated:       #1E293B;
  --bg-accent-subtle:  rgba(59,130,246,0.12);
  --bg-success-subtle: rgba(22,163,74,0.12);
  --bg-warning-subtle: rgba(217,119,6,0.12);
  --bg-danger-subtle:  rgba(220,38,38,0.12);
  --text-primary:   #F1F5F9;
  --text-secondary: #94A3B8;
  --text-tertiary:  #64748B;
  --text-inverse:   #0F172A;
  --text-accent:    #60A5FA;
  --text-success:   #4ADE80;
  --text-warning:   #FBBF24;
  --text-danger:    #FB7185;
  --border-primary:   #1E293B;
  --border-secondary: #334155;
  --border-accent:    #3B82F6;
  --accent:       #3B82F6;
  --accent-hover: #60A5FA;
  --accent-glow:  rgba(59,130,246,0.25);
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.4);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.4);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.5);
  --gradient-btn:       linear-gradient(135deg, #3B82F6 0%, #8B5CF6 100%);
  --gradient-btn-hover: linear-gradient(135deg, #60A5FA 0%, #A78BFA 100%);
}

/* ══════════════════════════════════════════════════════
   LIGHT THEME  —  sky blue everywhere
   ══════════════════════════════════════════════════════ */
[data-theme="light"] {
  /* Landing */
  --lp-bg1:          #7ABDE0;
  --lp-bg2:          #A8D4EE;
  --lp-bg3:          #D0ECFF;
  --lp-card:         #EAF6FF;
  --lp-divider:      #8EC4E4;
  --lp-nav-bg:       rgba(168,212,238,0.96);
  --lp-nav-border:   rgba(3,60,100,0.15);
  --lp-text-h:       #091C35;
  --lp-text-b:       #1A3D5C;
  --lp-text-m:       #3E6480;
  --lp-ticker-bg:    #0284C7;
  --lp-tool-card-bg: rgba(255,255,255,0.78);
  --lp-tool-card-br: rgba(3,105,161,0.2);
  --lp-label:        rgba(9,28,53,0.42);
  --lp-drop-border:  rgba(3,105,161,0.25);
  --lp-drop-text:    #1A3D5C;
  --lp-drop-or:      rgba(9,28,53,0.35);
  --lp-drop-icon:    rgba(9,28,53,0.22);
  --lp-choose-br:    rgba(3,105,161,0.28);
  --lp-choose-text:  #1A3D5C;
  --lp-privacy-c:    rgba(9,28,53,0.35);
  --lp-nav-text:     rgba(9,28,53,0.68);
  --lp-nav-chip-bg:  rgba(3,105,161,0.08);
  --lp-nav-chip-br:  rgba(3,105,161,0.2);
  --lp-nav-chip-c:   rgba(9,28,53,0.62);
  --lp-upload-dis-bg:rgba(3,105,161,0.08);
  --lp-upload-dis-c: rgba(9,28,53,0.3);
  --lp-grid-line:    rgba(9,28,53,0.05);
  --lp-faq-hover:    #C0E0F5;
  --lp-step-num-c:   #6BAED6;
  --lp-logo-c:       #091C35;
  --lp-logo-dim:     rgba(9,28,53,0.4);
  --lp-footer-text:  rgba(9,28,53,0.55);
  --lp-footer-muted: rgba(9,28,53,0.4);
  --lp-footer-dim:   rgba(9,28,53,0.32);
  --lp-footer-head:  rgba(9,28,53,0.45);
  --lp-footer-hover: #091C35;
  --lp-footer-div:   rgba(9,28,53,0.12);
  /* Flow screens */
  --bg-primary:        #D0ECFF;
  --bg-secondary:      #EAF6FF;
  --bg-tertiary:       #BAD8F5;
  --bg-elevated:       #F4FBFF;
  --bg-accent-subtle:  rgba(3,105,161,0.1);
  --bg-success-subtle: rgba(15,122,62,0.1);
  --bg-warning-subtle: rgba(180,83,9,0.1);
  --bg-danger-subtle:  rgba(185,28,28,0.1);
  --text-primary:   #091C35;
  --text-secondary: #1A3D5C;
  --text-tertiary:  #3E6480;
  --text-inverse:   #FFFFFF;
  --text-accent:    #0369A1;
  --text-success:   #0A6E35;
  --text-warning:   #92400E;
  --text-danger:    #991B1B;
  --border-primary:   #8EC4E4;
  --border-secondary: #5AAAD6;
  --border-accent:    #0369A1;
  --accent:       #0369A1;
  --accent-hover: #0284C7;
  --accent-glow:  rgba(3,105,161,0.2);
  --shadow-sm: 0 1px 2px rgba(3,60,100,0.07);
  --shadow-md: 0 4px 6px -1px rgba(3,60,100,0.1);
  --shadow-lg: 0 10px 15px -3px rgba(3,60,100,0.1);
  --shadow-xl: 0 20px 25px -5px rgba(3,60,100,0.12);
  --gradient-btn:       linear-gradient(135deg, #0369A1 0%, #0284C7 100%);
  --gradient-btn-hover: linear-gradient(135deg, #0284C7 0%, #38BDF8 100%);
}

/* ══════════════════════════════════════════════════════
   RESET
   ══════════════════════════════════════════════════════ */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.65;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background-color 0.35s ease, color 0.35s ease;
}
[data-lang="hi"] body,
[data-lang="hi"] input,
[data-lang="hi"] textarea,
[data-lang="hi"] button {
  font-family: 'Noto Sans Devanagari', 'Inter', sans-serif;
}
::selection { background: var(--orange); color: white; }

/* ══════════════════════════════════════════════════════
   SITE NAVIGATION
   ══════════════════════════════════════════════════════ */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: 64px;
  background: var(--lp-nav-bg);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--lp-nav-border);
  display: flex;
  align-items: center;
  transition: background-color 0.35s ease, border-color 0.35s ease, box-shadow 0.3s ease;
}
.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-logo {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--lp-logo-c);
  text-decoration: none;
  letter-spacing: -0.3px;
  transition: color 0.35s ease;
}
.logo-orange { color: var(--orange); }
.site-logo   { cursor: pointer; }

/* Persistent session-ID badge — fixed top-left, visible on checklist & generating */
.session-badge {
  position: fixed;
  top: 72px;
  left: 20px;
  z-index: 40;
  display: none;         /* shown via JS as flex */
  flex-direction: column;
  gap: 6px;
  padding: 12px 14px;
  max-width: 220px;
  background: linear-gradient(135deg, rgba(232,93,26,0.18) 0%, rgba(13,31,60,0.85) 100%);
  border: 1.5px solid rgba(232, 93, 26, 0.55);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(232, 93, 26, 0.20), 0 2px 8px rgba(0,0,0,0.40);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: 11px;
  /* subtle pulse glow to attract attention */
  animation: badge-glow 3s ease-in-out infinite;
}
@keyframes badge-glow {
  0%, 100% { box-shadow: 0 4px 20px rgba(232,93,26,0.20), 0 2px 8px rgba(0,0,0,0.40); }
  50%       { box-shadow: 0 4px 24px rgba(232,93,26,0.42), 0 2px 8px rgba(0,0,0,0.40); }
}
.session-badge-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(232, 93, 26, 0.80);
}
.session-badge-row {
  display: flex;
  align-items: center;
  gap: 7px;
}
.session-badge-code {
  font-family: 'DM Mono', ui-monospace, monospace;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #ff7a3d;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.50);
  border: 1px solid rgba(232, 93, 26, 0.50);
  user-select: all;
  text-shadow: 0 0 10px rgba(232,93,26,0.45);
}
.session-badge-copy {
  padding: 4px 10px;
  font-size: 10px;
  font-weight: 700;
  border-radius: 6px;
  border: 1.5px solid rgba(232, 93, 26, 0.55);
  background: rgba(232, 93, 26, 0.15);
  color: #ff7a3d;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s, transform 0.1s;
}
.session-badge-copy:hover {
  background: rgba(232, 93, 26, 0.30);
  transform: scale(1.04);
}
.session-badge-copy:active { transform: scale(0.97); }
.session-badge-note {
  margin: 0;
  font-size: 9px;
  line-height: 1.45;
  color: rgba(180, 190, 210, 0.80);
}
@media (max-width: 640px) {
  .session-badge { top: 60px; left: 10px; max-width: 175px; padding: 9px 11px; }
  .session-badge-code { font-size: 13px; padding: 3px 7px; }
  .session-badge-note { font-size: 8px; }
}

.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  font-size: 13px;
  color: var(--lp-nav-text);
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--lp-logo-c); }

.nav-actions { display: flex; align-items: center; gap: 8px; }

.nav-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  padding: 0 12px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--lp-nav-chip-c);
  background: var(--lp-nav-chip-bg);
  border: 1px solid var(--lp-nav-chip-br);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all 0.2s;
}
.nav-chip:hover { color: var(--lp-logo-c); background: var(--lp-nav-chip-bg); filter: brightness(1.2); }
.nav-chip.icon-chip { width: 32px; padding: 0; }
.nav-chip svg { width: 15px; height: 15px; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  background: var(--orange);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: background .2s, transform .15s;
}
.nav-cta:hover { background: var(--orange-hover); transform: translateY(-1px); }
.site-nav.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.25); }

/* ── Live visitor indicator ── */
.live-indicator {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 9px 3px 7px;
  border-radius: 20px;
  background: rgba(34, 197, 94, 0.07);
  border: 1px solid rgba(34, 197, 94, 0.20);
  user-select: none;
  pointer-events: none;
}
.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
  animation: liveDotPulse 2.2s ease-out infinite;
}
@keyframes liveDotPulse {
  0%   { box-shadow: 0 0 0 0   rgba(34,197,94,0.55); }
  70%  { box-shadow: 0 0 0 5px rgba(34,197,94,0);    }
  100% { box-shadow: 0 0 0 0   rgba(34,197,94,0);    }
}
.live-label {
  color: #22c55e;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.live-count {
  color: var(--lp-nav-text);
  font-size: 12px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  min-width: 16px;
}
@media (max-width: 640px) {
  .live-label  { display: none; }
  .live-indicator { padding: 3px 7px; }
}
@media (max-width: 400px) {
  .live-indicator { display: none; }
}

/* ══════════════════════════════════════════════════════
   TRUSTED TECHNOLOGY STRIP
   ══════════════════════════════════════════════════════ */
.tech-trust-section {
  background: var(--lp-bg2);
  padding: 60px 40px;
  border-top: 1px solid var(--lp-divider);
}
.tech-trust-eyebrow {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lp-text-m);
  margin: 0 0 36px;
}
.tech-trust-row {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  max-width: 760px;
  margin: 0 auto;
}
.tech-trust-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 24px 28px;
  background: #ffffff;
  border-radius: 14px;
  min-width: 175px;
  box-shadow: 0 2px 18px rgba(0,0,0,0.22), 0 1px 4px rgba(0,0,0,0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.tech-trust-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.28), 0 2px 8px rgba(0,0,0,0.14);
}

/* Google Analytics CSS icon */
.tech-ga-icon {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 42px;
}
.ga-dot  { width: 12px; height: 12px; border-radius: 50%; background: #E37400; flex-shrink: 0; }
.ga-mid  { width: 12px; height: 26px; border-radius: 6px; background: #E37400; flex-shrink: 0; }
.ga-tall { width: 12px; height: 40px; border-radius: 6px; background: #F9AB00; flex-shrink: 0; }

/* Microsoft Clarity CSS icon */
.tech-ms-icon {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  width: 40px;
  height: 40px;
}
.tech-ms-icon span { border-radius: 1px; }

.tech-trust-brand {
  font-size: 13px;
  font-weight: 700;
  color: #1a1a1a;
  text-align: center;
  white-space: nowrap;
}
.tech-trust-role {
  font-size: 11px;
  color: #888;
  text-align: center;
  line-height: 1.4;
}

/* Razorpay card — inline SVG logo (icon + wordmark) for crispness at any size */
.tech-trust-card--rp { min-width: 200px; gap: 10px; }
.rp-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 42px;
  text-decoration: none;
}
.rp-mark { height: 30px; width: auto; display: block; }
.rp-word {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0C2451;
  line-height: 1;
}

@media (max-width: 640px) {
  .tech-trust-section { padding: 44px 20px; }
  .tech-trust-row { gap: 14px; }
  .tech-trust-card { min-width: 150px; padding: 18px 20px; }
  .tech-trust-card--rp { min-width: 170px; }
  .rp-word { font-size: 20px; }
}
@media (max-width: 400px) {
  .tech-trust-row { flex-direction: column; align-items: center; }
  .tech-trust-card { width: 100%; max-width: 240px; }
}

/* ══════════════════════════════════════════════════════
   HERO SECTION
   ══════════════════════════════════════════════════════ */
.hero-section {
  min-height: 100vh;
  background: var(--lp-bg1);
  padding: 128px 40px 80px;
  position: relative;
  overflow: hidden;
  transition: background-color 0.35s ease;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--lp-grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--lp-grid-line) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero-blob1 {
  position: absolute; top: -120px; right: -120px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(232,93,26,0.18), transparent 70%);
  pointer-events: none;
}
.hero-blob2 {
  position: absolute; bottom: -80px; left: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(26,79,168,0.2), transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hero-title {
  font-family: var(--serif);
  font-size: 52px;
  line-height: 1.1;
  color: var(--lp-text-h);
  margin-bottom: 20px;
  transition: color 0.35s ease;
}
.hero-title em { font-style: normal; color: var(--orange); }
.hero-sub {
  font-size: 17px;
  line-height: 1.65;
  color: var(--lp-text-b);
  margin-bottom: 36px;
  max-width: 480px;
  transition: color 0.35s ease;
}
.hero-stats {
  display: flex;
  gap: 36px;
  margin-bottom: 32px;
}
.hero-stat-n {
  font-family: var(--mono-f);
  font-size: 26px;
  font-weight: 500;
  color: var(--lp-text-h);
  transition: color 0.35s ease;
}
.hero-stat-l {
  font-size: 12px;
  color: var(--lp-text-m);
  margin-top: 3px;
  line-height: 1.4;
  transition: color 0.35s ease;
}
.hero-trust { display: flex; gap: 14px; flex-wrap: wrap; }
.trust-pill {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: var(--lp-text-b);
  transition: color 0.35s ease;
}
.trust-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teal-c);
  flex-shrink: 0;
}

/* ── Hero Tool Card ── */
.hero-tool-card {
  background: var(--lp-tool-card-bg);
  border: 1px solid var(--lp-tool-card-br);
  border-radius: 18px;
  padding: 28px;
  backdrop-filter: blur(12px);
  transition: background-color 0.35s ease, border-color 0.35s ease;
}
.hero-tool-card #screen-upload {
  display: block !important;
  padding: 0;
  animation: none;
}
.tool-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--lp-label);
  text-transform: uppercase;
  margin-bottom: 20px;
  transition: color 0.35s ease;
}
.tool-section { margin-bottom: 16px; }

/* Tool Dropzone */
.tool-dropzone {
  border: 2px dashed var(--lp-drop-border);
  border-radius: 12px;
  padding: 32px 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s;
  margin-bottom: 12px;
}
.tool-dropzone.drag-over {
  border-color: var(--orange);
  background: rgba(232,93,26,0.08);
}
.tool-drop-icon {
  color: var(--lp-drop-icon);
  margin-bottom: 12px;
  transition: color 0.35s ease, transform var(--transition-spring);
}
.tool-drop-icon svg { width: 40px; height: 40px; }
.tool-dropzone:hover .tool-drop-icon { color: var(--orange); transform: translateY(-3px); }
.tool-drop-text  { font-size: 13px; color: var(--lp-drop-text); margin: 4px 0; transition: color 0.35s ease; }
.tool-drop-or    { display: block; font-size: 12px; color: var(--lp-drop-or); margin: 6px 0; transition: color 0.35s ease; }
.tool-drop-hint    { font-size: 11px; color: var(--lp-drop-or); margin-top: 6px; transition: color 0.35s ease; }
.tool-drop-warning { font-size: 11px; color: rgba(255,180,60,0.8); margin-top: 6px; letter-spacing: 0.2px; }

.tool-choose-btn {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  background: transparent;
  border: 1.5px solid var(--lp-choose-br);
  border-radius: var(--radius-full);
  color: var(--lp-choose-text);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.tool-choose-btn:hover { filter: brightness(1.15); }

.tool-file-info {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(11,124,90,0.18);
  border: 1px solid rgba(11,124,90,0.4);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: #5DCAA5;
  margin-bottom: 12px;
  animation: fadeSlideIn 0.3s ease-out;
  line-height: 1.5;
}

.tool-upload-btn {
  width: 100%;
  padding: 14px;
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all .2s;
  letter-spacing: 0.2px;
  margin-bottom: 12px;
}
.tool-upload-btn:hover { background: var(--orange-hover); transform: translateY(-1px); }
.tool-upload-btn:disabled {
  background: var(--lp-upload-dis-bg);
  color: var(--lp-upload-dis-c);
  cursor: not-allowed;
  transform: none;
}
.tool-privacy {
  text-align: center;
  font-size: 11px;
  color: var(--lp-privacy-c);
  line-height: 1.5;
  transition: color 0.35s ease;
}

/* ══════════════════════════════════════════════════════
   NOTICE TICKER
   ══════════════════════════════════════════════════════ */
.notice-ticker {
  background: var(--lp-ticker-bg);
  padding: 10px 0;
  overflow: hidden;
  transition: background-color 0.35s ease;
}
.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: ticker-scroll 35s linear infinite;
}
.ticker-item {
  font-size: 12px;
  font-weight: 600;
  color: var(--lp-logo-c);
  padding: 0 28px;
  letter-spacing: 0.5px;
  transition: color 0.35s ease;
}
.ticker-sep { color: var(--lp-footer-head); padding: 0 4px; transition: color 0.35s ease; }
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════════════════
   TRUST STRIP
   ══════════════════════════════════════════════════════ */
.trust-strip { background: var(--lp-bg2); padding: 52px 40px; transition: background-color 0.35s ease; }
.trust-strip-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.trust-stat { text-align: center; }
.trust-n {
  font-family: var(--mono-f);
  font-size: 36px;
  font-weight: 500;
  color: var(--lp-text-h);
  margin-bottom: 8px;
  transition: color 0.35s ease;
}
.trust-l { font-size: 13px; color: var(--lp-text-m); line-height: 1.45; transition: color 0.35s ease; }

/* ══════════════════════════════════════════════════════
   SHARED LANDING SECTION STYLES
   ══════════════════════════════════════════════════════ */
.sec-inner  { max-width: 1140px; margin: 0 auto; }
.sec-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.sec-title {
  font-family: var(--serif);
  font-size: 38px;
  line-height: 1.2;
  color: var(--lp-text-h);
  margin-bottom: 16px;
  transition: color 0.35s ease;
}
.sec-sub {
  font-size: 16px;
  color: var(--lp-text-b);
  line-height: 1.65;
  max-width: 560px;
  margin-bottom: 0;
  transition: color 0.35s ease;
}

/* ══════════════════════════════════════════════════════
   HOW IT WORKS
   ══════════════════════════════════════════════════════ */
.how-section { padding: 88px 40px; background: var(--lp-bg3); transition: background-color 0.35s ease; }
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 52px;
  background: var(--lp-divider);
  border-radius: 14px;
  overflow: hidden;
  transition: background-color 0.35s ease;
}
.how-step { background: var(--lp-bg3); padding: 36px 28px; transition: background-color 0.35s ease; }
.step-num {
  font-family: var(--mono-f);
  font-size: 11px;
  color: var(--lp-step-num-c);
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 18px;
  transition: color 0.35s ease;
}
.step-icon-box {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--lp-bg1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 18px;
  transition: background-color 0.35s ease;
}
.step-title { font-size: 16px; font-weight: 700; color: var(--lp-text-h); margin-bottom: 10px; transition: color 0.35s ease; }
.step-desc  { font-size: 14px; color: var(--lp-text-b); line-height: 1.65; transition: color 0.35s ease; }

/* ══════════════════════════════════════════════════════
   PRICING (landing)
   ══════════════════════════════════════════════════════ */
.lp-pricing { padding: 88px 40px; background: var(--lp-bg2); transition: background-color 0.35s ease; }
.lp-pricing .sec-inner { display: flex; flex-direction: column; align-items: center; }
.lp-pricing .sec-eyebrow,
.lp-pricing .sec-title,
.lp-pricing .sec-sub {
  text-align: center;
  max-width: 560px;
  width: 100%;
}
.lp-pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 48px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.lp-price-card {
  border-radius: 20px;
  padding: 48px 48px;
  border: 1.5px solid var(--lp-divider);
  background: var(--lp-card);
  position: relative;
  transition: background-color 0.35s ease, border-color 0.35s ease, box-shadow 0.2s;
}
.lp-price-card:hover {
  border-color: var(--orange);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}
.lp-price-featured {
  background: var(--lp-bg1);
  border-color: var(--lp-bg1);
}
.lp-featured-tag {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 99px;
  letter-spacing: 0.8px;
  white-space: nowrap;
}
.lp-plan-name {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--lp-text-b);
  margin-bottom: 12px;
  transition: color 0.35s ease;
}
.lp-price-featured .lp-plan-name { color: var(--lp-logo-dim); }
.lp-price-amount {
  font-family: var(--serif);
  font-size: 42px;
  color: var(--lp-text-h);
  margin-bottom: 4px;
  transition: color 0.35s ease;
}
.lp-price-featured .lp-price-amount { color: var(--lp-text-h); }
.lp-price-period {
  font-size: 13px;
  color: var(--lp-text-m);
  margin-bottom: 28px;
  transition: color 0.35s ease;
}
.lp-price-featured .lp-price-period { color: var(--lp-logo-dim); }
.lp-features { list-style: none; margin-bottom: 28px; display: flex; flex-direction: column; gap: 11px; }
.lp-features li { font-size: 14px; color: var(--lp-text-b); display: flex; gap: 9px; align-items: flex-start; transition: color 0.35s ease; }
.lp-price-featured .lp-features li { color: var(--lp-text-b); }
.lp-check { color: var(--teal-c); font-weight: 700; flex-shrink: 0; }
.lp-price-featured .lp-check { color: #5DCAA5; }
.lp-btn-outline,
.lp-btn-primary {
  display: block;
  width: 100%;
  text-align: center;
  padding: 13px;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 700;
  background: var(--orange);
  color: #fff;
  border: none;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.lp-btn-outline:hover,
.lp-btn-primary:hover { background: var(--orange-hover); transform: translateY(-1px); }
.lp-btn-ghost {
  display: block;
  width: 100%;
  text-align: center;
  padding: 13px;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 700;
  background: var(--lp-tool-card-bg);
  color: var(--lp-text-h);
  border: 1.5px solid var(--lp-divider);
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: background 0.2s, color 0.35s ease, border-color 0.35s ease;
}
.lp-btn-ghost:hover { background: var(--lp-card); }

/* ══════════════════════════════════════════════════════
   FAQ
   ══════════════════════════════════════════════════════ */
/* ══════════════════════════════════════════════════════
   ARTICLES SECTION
   ══════════════════════════════════════════════════════ */
.articles-section {
  padding: 88px 40px;
  background: var(--lp-bg2);
  transition: background-color 0.35s ease;
}
.sec-sub-text {
  font-size: 15px;
  color: var(--lp-text-b);
  line-height: 1.65;
  max-width: 520px;
  margin-top: 10px;
  transition: color 0.35s ease;
}
.articles-top-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.art-admin-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--orange);
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
  font-family: inherit;
}
.art-admin-btn:hover { background: var(--orange-hover); transform: translateY(-1px); }

/* search */
.art-search-wrap {
  position: relative;
  margin-bottom: 10px;
}

/* keyword chips */
.art-chips {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.art-chip-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--lp-text-m);
  letter-spacing: 0.4px;
  white-space: nowrap;
  transition: color 0.35s ease;
}
.art-chip {
  padding: 5px 12px;
  border-radius: 99px;
  border: 1px solid var(--lp-divider);
  background: transparent;
  color: var(--lp-text-b);
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
  transition: all var(--transition);
  white-space: nowrap;
}
.art-chip:hover { border-color: var(--orange); color: var(--orange); background: rgba(232,93,26,0.07); }
.art-chip.active { background: var(--orange); border-color: var(--orange); color: #fff; }

/* load more */
.art-load-more-wrap {
  text-align: center;
  margin-top: 28px;
}
.art-load-more-btn {
  background: transparent;
  border: 1.5px solid var(--lp-divider);
  color: var(--lp-text-b);
  padding: 11px 28px;
  border-radius: 99px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}
.art-load-more-btn:hover { border-color: var(--orange); color: var(--orange); background: rgba(232,93,26,0.06); }
.art-search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--lp-text-m);
  pointer-events: none;
  transition: color 0.35s ease;
}
.art-search-input {
  width: 100%;
  padding: 12px 16px 12px 42px;
  border: 1.5px solid var(--lp-divider);
  border-radius: 10px;
  background: var(--lp-card);
  color: var(--lp-text-h);
  font-family: inherit;
  font-size: 14px;
  outline: none;
  transition: border-color var(--transition), background-color 0.35s ease, color 0.35s ease;
}
.art-search-input::placeholder { color: var(--lp-text-m); }
.art-search-input:focus { border-color: var(--orange); }

/* tabs */
.art-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.art-tab {
  padding: 7px 16px;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  border: 1.5px solid var(--lp-divider);
  background: transparent;
  color: var(--lp-text-b);
  transition: all var(--transition);
  font-family: inherit;
}
.art-tab:hover { border-color: var(--orange); color: var(--lp-text-h); }
.art-tab.active { background: var(--orange); border-color: var(--orange); color: #fff; }

/* grid */
.art-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.art-card {
  background: var(--lp-card);
  border: 1px solid var(--lp-divider);
  border-radius: 12px;
  padding: 18px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), background-color 0.35s ease;
}
.art-card:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,0,0,0.25); border-color: var(--orange); }
.art-card.hidden { display: none; }
.art-card.art-card--new::after {
  content: 'NEW';
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  background: var(--teal-c);
  color: #fff;
  padding: 2px 7px;
  border-radius: 99px;
}
.art-card-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-bottom: 2px;
}
.art-card-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--lp-text-h);
  line-height: 1.45;
  transition: color 0.35s ease;
}
.art-card-kw {
  font-size: 11px;
  color: var(--lp-text-m);
  font-family: var(--mono-f);
  transition: color 0.35s ease;
}
.art-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 8px;
}
.art-badge {
  font-size: 10px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 99px;
  letter-spacing: 0.4px;
}
.art-badge--high { background: rgba(232,93,26,0.15); color: var(--orange); }
.art-badge--med  { background: rgba(201,147,10,0.15); color: #C9930A; }
.art-badge--low  { background: var(--lp-divider); color: var(--lp-text-b); }
.art-read-lnk { font-size: 11px; color: var(--orange); font-weight: 600; }
.art-delete-btn {
  display: none;
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(220,38,38,0.12);
  border: none;
  color: #FB7185;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 6px;
  cursor: pointer;
  transition: background var(--transition);
  font-family: inherit;
}
.art-delete-btn:hover { background: rgba(220,38,38,0.25); }
.art-no-results {
  display: none;
  text-align: center;
  padding: 48px 20px;
  color: var(--lp-text-b);
  font-size: 15px;
  transition: color 0.35s ease;
}
.art-no-results.visible { display: block; }
.art-card.art-hidden { display: none; }

/* admin modal overlay */
.art-admin-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(4px);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.art-admin-overlay.open { opacity: 1; pointer-events: all; }
.art-admin-modal {
  background: var(--lp-card);
  border: 1px solid var(--lp-divider);
  border-radius: 16px;
  width: 100%;
  max-width: 580px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 40px 80px rgba(0,0,0,0.4);
  transform: translateY(20px);
  transition: transform 0.25s, background-color 0.35s ease;
}
.art-admin-overlay.open .art-admin-modal { transform: translateY(0); }
.art-modal-head {
  background: var(--lp-bg1);
  padding: 22px 26px;
  border-radius: 16px 16px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background-color 0.35s ease;
}
.art-modal-head-title { font-size: 17px; font-weight: 700; color: var(--lp-text-h); }
.art-modal-close {
  background: none;
  border: none;
  color: var(--lp-text-m);
  font-size: 22px;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  transition: color var(--transition);
}
.art-modal-close:hover { color: var(--lp-text-h); }
.art-modal-body { padding: 26px; }

/* auth */
.art-auth-step { text-align: center; }
.art-auth-icon { font-size: 38px; margin-bottom: 10px; }
.art-auth-title { font-size: 18px; font-weight: 700; color: var(--lp-text-h); margin-bottom: 4px; transition: color 0.35s ease; }
.art-auth-sub { font-size: 13px; color: var(--lp-text-b); margin-bottom: 20px; transition: color 0.35s ease; }
.art-auth-input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--lp-divider);
  border-radius: 8px;
  background: var(--lp-bg3);
  color: var(--lp-text-h);
  font-family: inherit;
  font-size: 15px;
  text-align: center;
  letter-spacing: 3px;
  outline: none;
  margin-bottom: 12px;
  transition: border-color var(--transition), background-color 0.35s ease;
}
.art-auth-input:focus { border-color: var(--orange); }
.art-auth-error { font-size: 13px; color: #FB7185; margin-bottom: 12px; display: none; }
.art-auth-error.visible { display: block; }
.art-auth-btn {
  width: 100%;
  background: var(--orange);
  color: #fff;
  border: none;
  padding: 13px;
  border-radius: 8px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition);
}
.art-auth-btn:hover { background: var(--orange-hover); }

/* form */
.art-form { display: none; }
.art-form.active { display: block; }
.art-form-row { margin-bottom: 16px; }
.art-form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 16px; }
.art-form-label { font-size: 11px; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; color: var(--lp-text-b); display: block; margin-bottom: 6px; transition: color 0.35s ease; }
.art-form-input, .art-form-select, .art-form-textarea {
  width: 100%;
  padding: 11px 13px;
  border: 1.5px solid var(--lp-divider);
  border-radius: 8px;
  background: var(--lp-bg3);
  color: var(--lp-text-h);
  font-family: inherit;
  font-size: 13px;
  outline: none;
  transition: border-color var(--transition), background-color 0.35s ease, color 0.35s ease;
}
.art-form-input::placeholder, .art-form-textarea::placeholder { color: var(--lp-text-m); }
.art-form-input:focus, .art-form-select:focus, .art-form-textarea:focus { border-color: var(--orange); }
.art-form-select option { background: var(--lp-bg1); }
.art-form-textarea { height: 100px; resize: vertical; line-height: 1.6; }
.art-form-hint { font-size: 11px; color: var(--lp-text-m); margin-top: 4px; transition: color 0.35s ease; }
.art-form-btns {
  display: flex;
  gap: 10px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--lp-divider);
}
.art-form-submit {
  flex: 1;
  background: var(--orange);
  color: #fff;
  border: none;
  padding: 13px;
  border-radius: 8px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition);
}
.art-form-submit:hover { background: var(--orange-hover); }
.art-form-cancel {
  background: transparent;
  color: var(--lp-text-b);
  border: 1.5px solid var(--lp-divider);
  padding: 13px 18px;
  border-radius: 8px;
  font-family: inherit;
  font-size: 13px;
  cursor: pointer;
  transition: all var(--transition);
}
.art-form-cancel:hover { border-color: var(--lp-text-b); color: var(--lp-text-h); }

/* success */
.art-form-success { display: none; text-align: center; padding: 28px 0; }
.art-form-success.active { display: block; }
.art-success-icon { font-size: 44px; margin-bottom: 10px; }
.art-success-title { font-size: 20px; font-weight: 700; color: var(--lp-text-h); margin-bottom: 6px; transition: color 0.35s ease; }
.art-success-sub { font-size: 13px; color: var(--lp-text-b); margin-bottom: 20px; transition: color 0.35s ease; }
.art-success-btn {
  background: var(--lp-bg3);
  color: var(--lp-text-h);
  border: 1.5px solid var(--lp-divider);
  padding: 11px 22px;
  border-radius: 8px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}
.art-success-btn:hover { border-color: var(--orange); color: var(--orange); }

/* admin mode bar */
.art-admin-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--teal-c);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  padding: 7px;
  z-index: 400;
  display: none;
  letter-spacing: 0.4px;
}
.art-admin-bar.visible { display: block; }
.art-admin-bar-logout { cursor: pointer; text-decoration: underline; opacity: 0.85; }

/* responsive */
@media (max-width: 900px) {
  .art-grid { grid-template-columns: 1fr 1fr; }
  .articles-top-row { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 600px) {
  .articles-section { padding: 64px 24px; }
  .art-grid { grid-template-columns: 1fr; }
  .art-form-row-2 { grid-template-columns: 1fr; }
}

.faq-section { padding: 88px 40px; background: var(--lp-bg3); transition: background-color 0.35s ease; }
.faq-list { margin-top: 44px; display: flex; flex-direction: column; gap: 4px; }
.faq-item {
  background: var(--lp-card);
  border-radius: 11px;
  overflow: hidden;
  border: 1px solid var(--lp-divider);
  transition: background-color 0.35s ease, border-color 0.35s ease;
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 19px 24px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  color: var(--lp-text-h);
  transition: background-color 0.2s, color 0.35s ease;
}
.faq-q:hover { background: var(--lp-faq-hover); }
.faq-arrow { transition: transform .25s, color 0.35s ease; color: var(--lp-text-m); font-size: 20px; flex-shrink: 0; }
.faq-item.open .faq-arrow { transform: rotate(45deg); color: var(--orange); }
.faq-a { display: none; padding: 0 24px 20px; font-size: 14px; color: var(--lp-text-b); line-height: 1.7; transition: color 0.35s ease; }
.faq-item.open .faq-a { display: block; }

/* ══════════════════════════════════════════════════════
   SITE FOOTER
   ══════════════════════════════════════════════════════ */
.site-footer { background: var(--lp-bg1); padding: 64px 40px 32px; transition: background-color 0.35s ease; }
.footer-inner { max-width: 1140px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 52px;
  margin-bottom: 52px;
}
.footer-logo {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--lp-logo-c);
  margin-bottom: 14px;
  transition: color 0.35s ease;
}
.footer-logo span { color: var(--orange); }
.footer-desc {
  font-size: 13px;
  color: var(--lp-footer-muted);
  line-height: 1.7;
  margin-bottom: 16px;
  transition: color 0.35s ease;
}
.footer-tagline { opacity: 0.65; font-size: 12px; margin-top: 4px; }
.footer-disclaimer {
  font-size: 11px;
  color: var(--lp-footer-dim);
  line-height: 1.65;
  transition: color 0.35s ease;
}
.footer-col-title {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--lp-footer-head);
  margin-bottom: 16px;
  transition: color 0.35s ease;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-links a {
  font-size: 13px;
  color: var(--lp-footer-text);
  text-decoration: none;
  transition: color .2s;
}
.footer-links a:hover { color: var(--lp-footer-hover); }
.footer-bottom {
  border-top: 1px solid var(--lp-footer-div);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy-wrap { display: flex; flex-direction: column; gap: 4px; }
.footer-copy { font-size: 12px; color: var(--lp-footer-dim); transition: color 0.35s ease; }
.footer-gstin {
  font-size: 11px;
  color: var(--lp-footer-dim);
  opacity: 0.85;
  letter-spacing: 0.3px;
}
.footer-legal { display: flex; gap: 20px; }
.footer-legal a {
  font-size: 12px;
  color: var(--lp-footer-dim);
  text-decoration: none;
  transition: color .2s;
}
.footer-legal a:hover { color: var(--lp-footer-hover); }

/* ══════════════════════════════════════════════════════
   FLOW WRAP — Steps + Container
   ══════════════════════════════════════════════════════ */
#flow-wrap {
  padding-top: 64px;
  background: var(--bg-primary);
  transition: background-color 0.35s ease;
}

.steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 24px 0 0;
  position: relative;
}

.back-btn {
  position: absolute;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: 1px solid var(--border-primary);
  border-radius: var(--radius-full);
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 500;
  padding: 5px 12px 5px 9px;
  cursor: pointer;
  transition: all var(--transition);
  line-height: 1;
}
.back-btn:hover {
  color: var(--text-primary);
  border-color: var(--text-secondary);
  background: var(--bg-card);
}
.back-btn.hidden { display: none; }
.step-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border-primary);
  transition: all var(--transition), background-color 0.35s ease;
}
.step-dot.active { width: 26px; border-radius: var(--radius-full); background: var(--accent); }
.step-dot.done   { background: var(--text-success); }

.container { max-width: 780px; margin: 0 auto; padding: 0 20px; }

.screen {
  display: none;
  animation: fadeSlideIn 0.45s ease-out;
  padding: 32px 0 60px;
}
.screen.active { display: block; }

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

/* ══════════════════════════════════════════════════════
   FLOW CARDS
   ══════════════════════════════════════════════════════ */
.card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-primary);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
  transition: background-color 0.35s ease, border-color 0.35s ease, box-shadow var(--transition);
}
.card:hover { box-shadow: var(--shadow-md); }
.card.center-card { text-align: center; }
.card h2 { font-size: 1.12rem; font-weight: 700; margin-bottom: 14px; letter-spacing: -0.2px; color: var(--text-primary); }

/* ══════════════════════════════════════════════════════
   BUTTONS (flow screens)
   ══════════════════════════════════════════════════════ */
.btn { text-decoration: none; cursor: pointer; border: none; font-family: inherit; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 24px;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  background: var(--gradient-btn);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: -0.2px;
}
.btn-primary:hover { background: var(--gradient-btn-hover); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-primary.full { width: 100%; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-accent);
  background: transparent;
  border: 2px solid var(--border-primary);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition);
}
.btn-outline:hover { border-color: var(--accent); background: var(--bg-accent-subtle); }
.btn-outline.full { width: 100%; margin-top: 14px; }

/* ══════════════════════════════════════════════════════
   FLOW SCREEN COMPONENTS
   ══════════════════════════════════════════════════════ */
.progress-bar {
  height: 4px;
  background: var(--border-primary);
  border-radius: var(--radius-full);
  overflow: hidden;
  margin-top: 20px;
}
.progress-fill {
  height: 100%;
  width: 0%;
  background: var(--gradient-btn);
  border-radius: var(--radius-full);
  animation: progressGrow 15s ease-out forwards;
}
@keyframes progressGrow {
  from { width: 0%; }
  to   { width: 90%; }
}

.spinner {
  width: 48px; height: 48px;
  border: 3px solid var(--border-primary);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 20px;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Confirm fields */
.confirm-grid { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.confirm-field {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-primary);
  transition: border-color 0.35s ease;
}
.confirm-field--grounds {
  align-items: flex-start;
  flex-direction: column;
  gap: 8px;
  padding: 14px 0;
}
.confirm-field .label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-tertiary);
  min-width: 130px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.confirm-field input {
  flex: 1;
  background: var(--bg-tertiary);
  border: 1.5px solid var(--border-primary);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  font-size: 0.9rem;
  color: var(--text-primary);
  text-align: right;
  outline: none;
  transition: border-color 0.35s ease, background-color 0.35s ease;
}
.confirm-field input:focus { border-color: var(--accent); }
.grounds-textarea {
  width: 100%;
  background: var(--bg-tertiary);
  border: 1.5px solid var(--border-primary);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--text-primary);
  outline: none;
  resize: vertical;
  min-height: 120px;
  transition: border-color 0.35s ease, background-color 0.35s ease;
}
.grounds-textarea:focus { border-color: var(--accent); box-shadow: var(--shadow-glow); }

/* Prose / explanation — legacy fallback */
.prose {
  margin-bottom: 20px;
  min-height: 80px;
}

/* ── Explanation loading / error ── */
.explain-loading {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 28px 0;
  color: var(--text-tertiary);
  font-size: 0.9rem;
}
.explain-error, .explain-fallback {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.75;
  padding: 8px 0 20px;
}

/* ── Explanation sections ── */
.explain-section {
  border-radius: var(--radius-md);
  padding: 20px 22px;
  margin-bottom: 14px;
  border: 1px solid var(--border-primary);
  transition: background-color 0.35s ease, border-color 0.35s ease;
}
.explain-section--what  { background: var(--bg-accent-subtle);   border-color: rgba(59,130,246,0.2); }
.explain-section--grounds { background: var(--bg-warning-subtle); border-color: rgba(217,119,6,0.2); }
.explain-section--action  { background: var(--bg-success-subtle); border-color: rgba(22,163,74,0.2); }

.explain-section-icon {
  font-size: 1.3rem;
  margin-bottom: 6px;
  line-height: 1;
}
.explain-section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 10px;
  transition: color 0.35s ease;
}
.explain-section-body {
  font-size: 0.93rem;
  line-height: 1.7;
  color: var(--text-primary);
  margin: 0;
  transition: color 0.35s ease;
}

/* ── Grounds list ── */
.explain-grounds-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.explain-ground {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.explain-ground-num {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(217,119,6,0.25);
  color: var(--text-warning);
  font-size: 0.78rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  transition: background-color 0.35s ease, color 0.35s ease;
}
.explain-ground-body { flex: 1; }
.explain-ground-head {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 3px;
  transition: color 0.35s ease;
}
.explain-ground-detail {
  font-size: 0.86rem;
  line-height: 1.65;
  color: var(--text-secondary);
  transition: color 0.35s ease;
}

/* ── Action section items ── */
.explain-deadline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(251,191,36,0.15);
  border: 1px solid rgba(251,191,36,0.3);
  border-radius: var(--radius-sm);
  padding: 7px 14px;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--text-warning);
  margin-bottom: 14px;
  transition: background-color 0.35s ease, border-color 0.35s ease, color 0.35s ease;
}
.explain-steps {
  margin: 0 0 12px 0;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.explain-steps li {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-primary);
  transition: color 0.35s ease;
}
.explain-warning {
  font-size: 0.85rem;
  color: var(--text-warning);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  background: rgba(217,119,6,0.08);
  margin-bottom: 8px;
  transition: color 0.35s ease, background-color 0.35s ease;
}
.explain-reassurance {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-success);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  background: rgba(22,163,74,0.08);
  margin-bottom: 14px;
  transition: color 0.35s ease, background-color 0.35s ease;
}

/* ── Trust banner ── */
.explain-trust-banner {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-top: 6px;
  padding: 16px 18px;
  background: linear-gradient(135deg, rgba(59,130,246,0.12) 0%, rgba(139,92,246,0.1) 100%);
  border: 1px solid rgba(99,102,241,0.25);
  border-radius: var(--radius-md);
  transition: background-color 0.35s ease, border-color 0.35s ease;
}
.explain-trust-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}
.explain-trust-body { flex: 1; }
.explain-trust-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 5px;
  transition: color 0.35s ease;
}
.explain-trust-text {
  font-size: 0.84rem;
  line-height: 1.6;
  color: var(--text-secondary);
  transition: color 0.35s ease;
}

/* ── Markdown fallback renderer ── */
.explain-md-body {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--text-secondary);
  padding-bottom: 8px;
}
.explain-md-body p { margin-bottom: 10px; }
.explain-md-body strong { color: var(--text-primary); }
.explain-md-heading {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin: 18px 0 6px;
}
.explain-divider {
  border: none;
  border-top: 1px solid var(--border-primary);
  margin: 14px 0;
  transition: border-color 0.35s ease;
}
.explain-parse-error {
  padding: 20px;
  background: rgba(251,191,36,0.12);
  border: 1px solid rgba(251,191,36,0.4);
  border-radius: var(--radius-lg);
  color: var(--text-primary);
  font-size: 15px;
  line-height: 1.6;
}
.explain-num-inline {
  display: inline-block;
  width: 20px;
  font-weight: 700;
  color: var(--text-warning);
}

/* Checklist */
/* ══════════════════════════════════════════════════════
   CHECKLIST — Documents You'll Need
   ══════════════════════════════════════════════════════ */

/* Header */
.cl-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}
.cl-header-icon { font-size: 1.8rem; flex-shrink: 0; margin-top: 2px; }
.cl-header h2   { font-size: 1.1rem; font-weight: 700; margin-bottom: 4px; color: var(--text-primary); transition: color 0.35s ease; }
.cl-header-sub  { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.5; margin: 0; transition: color 0.35s ease; }

/* Progress bar */
.cl-progress-bar {
  height: 6px;
  background: var(--bg-tertiary);
  border-radius: 99px;
  margin-bottom: 6px;
  overflow: hidden;
  transition: background-color 0.35s ease;
}
.cl-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent) 0%, var(--text-success) 100%);
  border-radius: 99px;
  transition: width 0.5s cubic-bezier(0.4,0,0.2,1);
}
.cl-progress-label {
  font-size: 0.76rem;
  color: var(--text-tertiary);
  margin-bottom: 18px;
  transition: color 0.35s ease;
}

/* Loading / empty */
.cl-loading {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 24px 0;
  color: var(--text-tertiary);
  font-size: 0.88rem;
}
.cl-empty {
  font-size: 0.9rem;
  color: var(--text-secondary);
  text-align: center;
  padding: 24px 0 16px;
}

/* Each document card */
.cl-card {
  border: 1.5px solid var(--border-primary);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.3s ease, background-color 0.3s ease, box-shadow 0.2s ease;
}
.cl-card:hover { box-shadow: var(--shadow-md); }
.cl-card--done    { border-color: rgba(74,222,128,0.4); background: var(--bg-success-subtle); }
.cl-card--skipped { border-color: var(--border-primary); opacity: 0.7; }

.cl-card-top {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px 12px;
}
.cl-card-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-tertiary);
  border-radius: var(--radius-sm);
  transition: background-color 0.35s ease;
}
.cl-card-info { flex: 1; min-width: 0; }
.cl-card-name {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  transition: color 0.35s ease;
}
.cl-card-desc {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 4px;
  transition: color 0.35s ease;
}
.cl-card-where {
  font-size: 0.78rem;
  color: var(--text-tertiary);
  transition: color 0.35s ease;
}
.cl-card-status {
  flex-shrink: 0;
  padding-top: 4px;
}
.cl-status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}
.cl-status-dot--pending  { background: var(--border-secondary); }
.cl-status-dot--done     { background: var(--text-success); box-shadow: 0 0 6px rgba(74,222,128,0.5); }
.cl-status-dot--skipped  { background: var(--text-tertiary); }

/* Badges */
.cl-badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 99px;
}
.cl-badge--required { background: rgba(251,113,133,0.15); color: var(--text-danger); border: 1px solid rgba(251,113,133,0.3); }
.cl-badge--optional { background: var(--bg-tertiary); color: var(--text-tertiary); border: 1px solid var(--border-primary); }

/* Action row */
.cl-card-actions {
  display: flex;
  gap: 10px;
  padding: 0 18px 14px;
}
.cl-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  font-size: 0.83rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-family: inherit;
  transition: all 0.18s ease;
  border: none;
  white-space: nowrap;
}
.cl-btn--upload {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 2px 8px var(--accent-glow);
}
.cl-btn--upload:hover { background: var(--accent-hover); transform: translateY(-1px); box-shadow: 0 4px 12px var(--accent-glow); }
.cl-btn--skip {
  background: var(--bg-tertiary);
  color: var(--text-secondary);
  border: 1.5px solid var(--border-primary);
}
.cl-btn--skip:hover { background: var(--bg-elevated); border-color: var(--border-secondary); }

/* Upload loading */
.cl-uploading {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.83rem;
  color: var(--text-tertiary);
  padding: 8px 0;
}
.spinner-sm {
  width: 16px; height: 16px;
  border: 2px solid var(--border-primary);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  flex-shrink: 0;
}

/* Done / skipped state rows */
.cl-done {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.83rem;
  font-weight: 600;
  padding: 8px 0;
}
.cl-done--uploaded { color: var(--text-success); }
.cl-done--skipped  { color: var(--text-tertiary); font-weight: 400; font-style: italic; }

/* Price tag */
/* ── Payment card ── */
.pay-card { max-width: 480px; margin: 0 auto; }

.pay-header { text-align: center; margin-bottom: 24px; }
.pay-shield { font-size: 2.2rem; margin-bottom: 10px; }
.pay-title { font-size: 1.3rem; font-weight: 700; margin-bottom: 8px; color: var(--text-primary); transition: color 0.35s ease; }
.pay-sub { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.6; transition: color 0.35s ease; }

.pay-price-block {
  text-align: center;
  background: var(--bg-accent-subtle);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-md);
  padding: 18px 24px;
  margin-bottom: 20px;
  transition: background-color 0.35s ease, border-color 0.35s ease;
}
.pay-amount {
  font-family: var(--serif);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--text-accent);
  line-height: 1;
  transition: color 0.35s ease;
}
.pay-gst { font-size: 1rem; font-weight: 400; color: var(--text-tertiary); }
.pay-period { font-size: 0.82rem; color: var(--text-tertiary); margin-top: 8px; transition: color 0.35s ease; }

/* ── Order-summary header ─────────────────────────────────── */
.pay-price-block { padding: 20px 22px; }
.pay-breakup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--border-accent);
}
.pay-breakup-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-secondary);
}
.pay-breakup-tag {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 12px;
  background: rgba(232, 93, 26, 0.12);
  color: var(--text-accent);
  border: 1px solid rgba(232, 93, 26, 0.28);
}

/* ── Breakup rows ─────────────────────────────────────────── */
.pay-breakup {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
}
.pay-breakup-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  padding: 8px 0;
  line-height: 1.4;
}
.pay-breakup-label { font-weight: 500; display: flex; flex-direction: column; gap: 2px; }
.pay-breakup-sublabel {
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--text-tertiary);
  letter-spacing: 0.2px;
}
.pay-breakup-val {
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: var(--text-primary);
  white-space: nowrap;
}

.pay-breakup-divider {
  height: 1px;
  background: linear-gradient(to right,
    transparent 0%,
    var(--border-accent) 20%,
    var(--border-accent) 80%,
    transparent 100%);
  margin: 6px 0;
}

/* ── Total row — emphasised ───────────────────────────────── */
.pay-breakup-total {
  margin-top: 2px;
  padding-top: 4px;
  padding-bottom: 2px;
  align-items: center;
}
.pay-breakup-total .pay-breakup-label > span:first-child {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.2px;
}
.pay-breakup-total .pay-breakup-val {
  display: inline-flex;
  align-items: baseline;
  gap: 1px;
  color: var(--text-accent);
  font-feature-settings: "tnum" 1, "lnum" 1;
}
.pay-breakup-currency {
  font-family: inherit;
  font-size: 1.25rem;
  font-weight: 700;
  margin-right: 2px;
  font-variant-numeric: tabular-nums;
}
.pay-breakup-amount {
  font-family: inherit;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.2px;
  font-variant-numeric: tabular-nums;
}
.pay-breakup-paise {
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  opacity: 0.85;
  font-variant-numeric: tabular-nums;
}

/* ── Footnote / trust strip ───────────────────────────────── */
.pay-breakup-footnote {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px dashed var(--border-accent);
  font-size: 0.78rem;
  color: var(--text-tertiary);
  line-height: 1.4;
}
.pay-breakup-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: rgba(74, 222, 128, 0.15);
  color: #4ADE80;
  font-size: 0.7rem;
  font-weight: 800;
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .pay-breakup-amount { font-size: 1.7rem; }
  .pay-breakup-currency { font-size: 1.2rem; }
  .pay-breakup-paise { font-size: 0.95rem; }
  .pay-price-block { padding: 16px 18px; }
}

.pay-features {
  list-style: none;
  margin: 0 0 22px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.pay-features li {
  font-size: 0.88rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.35s ease;
}
.pay-check {
  color: var(--text-success);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.btn-pay {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  background: var(--orange);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  width: 100%;
  letter-spacing: -0.2px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(232,93,26,0.35);
}
.btn-pay:hover { background: var(--orange-hover); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(232,93,26,0.45); }
.btn-pay [data-i18n-html], .btn-pay span[data-i18n-html] { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.pay-btn-sub { font-size: 0.72rem; font-weight: 500; opacity: 0.88; letter-spacing: 0.1px; line-height: 1.2; }
.pay-btn-lock { font-size: 0.95rem; }

.pay-methods {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 16px 0 12px;
}
.pay-methods-label {
  font-size: 0.76rem;
  color: var(--text-tertiary);
  flex-shrink: 0;
  transition: color 0.35s ease;
}
.pay-method-icons { display: flex; gap: 6px; flex-wrap: wrap; }
.pay-method-chip {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 9px;
  border-radius: 4px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-primary);
  color: var(--text-secondary);
  letter-spacing: 0.2px;
  transition: background-color 0.35s ease, border-color 0.35s ease, color 0.35s ease;
}

.pay-secure-note {
  font-size: 0.76rem;
  color: var(--text-tertiary);
  text-align: center;
  margin: 4px 0 12px;
  transition: color 0.35s ease;
}

/* ── Refund Trust Note ── */
.pay-trust-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: linear-gradient(135deg, rgba(74,222,128,0.07), rgba(45,212,191,0.05));
  border: 1px solid rgba(74,222,128,0.2);
  border-radius: 12px;
  padding: 14px 16px;
  margin: 16px 0 4px;
}
.pay-trust-icon {
  font-size: 1.3rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 1px;
}
.pay-trust-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.pay-trust-text strong {
  font-size: 0.82rem;
  font-weight: 700;
  color: #4ADE80;
  letter-spacing: 0.1px;
}
.pay-trust-text span {
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.55;
  transition: color 0.35s ease;
}
.pay-trust-text span strong {
  color: var(--text-primary);
  font-weight: 600;
}

.price-tag {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-accent);
  margin: 16px 0 4px;
}
.price-note { font-size: 0.85rem; color: var(--text-tertiary); margin-bottom: 16px; transition: color 0.35s ease; }
.disclaimer { font-size: 0.78rem; color: var(--text-tertiary); margin: 12px 0; line-height: 1.6; transition: color 0.35s ease; }
.privacy { font-size: 0.78rem; color: var(--text-tertiary); margin-top: 8px; background: var(--bg-tertiary); padding: 10px 14px; border-radius: var(--radius-sm); transition: background-color 0.35s ease, color 0.35s ease; }
.dev-link { font-size: 0.8rem; text-align: center; margin-top: 12px; }
.dev-link a { color: var(--text-accent); text-decoration: none; }

/* Dev bypass block */
.dev-bypass-block {
  margin-top: 20px;
  padding: 14px 16px;
  border: 1px dashed var(--border-secondary);
  border-radius: var(--radius-md);
  text-align: center;
  transition: border-color 0.35s ease;
}
.dev-bypass-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 8px;
  transition: color 0.35s ease;
}
.dev-bypass-btn {
  background: transparent;
  border: 1px solid var(--border-secondary);
  border-radius: var(--radius-sm);
  color: var(--text-accent);
  font-size: 0.84rem;
  font-weight: 600;
  padding: 8px 18px;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s, border-color 0.2s;
}
.dev-bypass-btn:hover { background: var(--bg-accent-subtle); border-color: var(--accent); }
.hint { font-size: 0.8rem; color: var(--text-tertiary); }

/* Success / Error icons */
.success-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--bg-success-subtle);
  color: var(--text-success);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; font-weight: 700;
  margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(22,163,74,0.25);
  animation: successPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.error-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--bg-danger-subtle);
  color: var(--text-danger);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; font-weight: 700;
  margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(220,38,38,0.25);
  animation: successPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes successPop {
  from { transform: scale(0.5); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}

/* ── Email Capture Modal ─────────────────────────────────────── */
.ecm-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
}
.ecm-box {
  background: var(--card-bg, #0E1828);
  border: 1px solid var(--border-primary, #1E293B);
  border-radius: 18px;
  padding: 36px 32px 28px;
  max-width: 430px; width: 100%;
  text-align: center;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
  animation: ecm-in .22s ease;
}
@keyframes ecm-in {
  from { opacity:0; transform: translateY(18px) scale(0.97); }
  to   { opacity:1; transform: translateY(0)   scale(1); }
}
.ecm-icon { font-size: 38px; margin-bottom: 12px; }
.ecm-title {
  font-size: 1.25rem; font-weight: 700;
  color: var(--text-primary, #F1F5F9);
  margin: 0 0 12px;
}
.ecm-sub {
  font-size: 0.88rem; line-height: 1.65;
  color: var(--text-secondary, #94A3B8);
  margin: 0 0 16px;
}
.ecm-badge {
  display: inline-block;
  background: rgba(232,93,26,0.10);
  border: 1px solid rgba(232,93,26,0.25);
  color: #e85d1a;
  font-size: 0.75rem; font-weight: 600;
  border-radius: 20px; padding: 5px 14px;
  margin-bottom: 20px;
}
.ecm-input {
  width: 100%; padding: 13px 16px;
  border: 2px solid var(--border-primary, #1E293B);
  border-radius: 10px;
  background: var(--input-bg, #0a1120);
  color: var(--text-primary, #F1F5F9);
  font-size: 0.95rem; font-family: inherit;
  outline: none; margin-bottom: 8px;
  transition: border-color .2s;
}
.ecm-input:focus { border-color: #e85d1a; }
.ecm-error { font-size: 0.8rem; color: #fb7185; margin: 0 0 8px; }
.pdm-success {
  font-size: 0.92rem; font-weight: 600;
  color: #34d399;
  background: rgba(16, 185, 129, 0.10);
  border: 1px solid rgba(16, 185, 129, 0.35);
  border-radius: 10px;
  padding: 10px 14px;
  margin: 0 0 12px;
}
.ecm-btn-primary {
  display: block; width: 100%;
  background: #e85d1a; color: #fff;
  border: none; border-radius: 10px;
  padding: 14px; font-size: 0.95rem;
  font-weight: 700; font-family: inherit;
  cursor: pointer; margin-bottom: 10px;
  transition: background .2s;
}
.ecm-btn-primary:hover { background: #c94e10; }
.ecm-btn-skip {
  background: none; border: none;
  color: var(--text-secondary, #64748B);
  font-size: 0.82rem; font-family: inherit;
  cursor: pointer; padding: 6px;
  text-decoration: underline; text-underline-offset: 3px;
  transition: color .2s;
}
.ecm-btn-skip:hover { color: var(--text-primary, #F1F5F9); }

.textarea {
  width: 100%;
  padding: 14px;
  border: 2px solid var(--border-primary);
  border-radius: var(--radius-md);
  font-family: 'Consolas', monospace;
  font-size: 0.83rem;
  resize: vertical;
  margin-bottom: 14px;
  background: var(--bg-primary);
  color: var(--text-primary);
  outline: none;
  line-height: 1.7;
  transition: border-color 0.35s ease, background-color 0.35s ease;
}
.textarea:focus { border-color: var(--accent); box-shadow: var(--shadow-glow); }

.small { font-size: 0.8rem; color: var(--text-tertiary); }
.small a { color: var(--accent); text-decoration: none; }
.small a:hover { text-decoration: underline; }

/* ── TOAST ── */
.toast {
  position: fixed;
  bottom: 24px; left: 50%;
  transform: translateX(-50%) translateY(80px);
  padding: 12px 24px;
  background: var(--text-primary);
  color: var(--text-inverse);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: var(--shadow-xl);
  z-index: 1000;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  pointer-events: none;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ══════════════════════════════════════════════════════
   ANIMATIONS
   ══════════════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up   { animation: fadeUp .65s ease forwards; }
.fade-up-1 { animation-delay: .1s; opacity: 0; }
.fade-up-2 { animation-delay: .22s; opacity: 0; }
.fade-up-3 { animation-delay: .34s; opacity: 0; }
.fade-up-4 { animation-delay: .48s; opacity: 0; }
.fade-up-5 { animation-delay: .64s; opacity: 0; }

/* ══════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════ */
@media (max-width: 1000px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-title  { font-size: 40px; }
  .hero-tool-card { max-width: 480px; margin: 0 auto; }
  .trust-strip-inner { grid-template-columns: 1fr 1fr; }
  .how-grid    { grid-template-columns: 1fr; }
  .footer-top  { grid-template-columns: 1fr 1fr; gap: 32px; }
  .lp-pricing-grid { grid-template-columns: 1fr; max-width: 560px; margin-left: auto; margin-right: auto; }
}
@media (max-width: 768px) {
  .nav-links   { display: none; }
  .hero-section { padding: 100px 24px 60px; }
  .hero-title  { font-size: 34px; }
  .hero-stats  { gap: 22px; }
  .hero-stat-n { font-size: 22px; }
  .trust-strip { padding: 40px 24px; }
  .trust-strip-inner { grid-template-columns: 1fr 1fr; gap: 28px; }
  .trust-n     { font-size: 28px; }
  .how-section, .lp-pricing, .faq-section { padding: 64px 24px; }
  .sec-title   { font-size: 28px; }
  .site-footer { padding: 52px 24px 28px; }
  .footer-top  { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .card { padding: 20px 16px; }
}
@media (max-width: 480px) {
  .nav-inner   { padding: 0 16px; }
  .hero-title  { font-size: 28px; }
  .hero-stats  { flex-direction: column; gap: 16px; }
  .trust-strip-inner { grid-template-columns: 1fr 1fr; }
  .hero-trust  { flex-direction: column; gap: 8px; }
  .confirm-field { flex-direction: column; align-items: flex-start; gap: 4px; }
  .confirm-field input { text-align: left; width: 100%; }
  .grounds-textarea { font-size: 0.83rem; }
}

/* ═══════════════════════════════════════════════════════════
   NEW FLOW — social proof, countdown, blurred checklist preview,
   resume code display + entry, unlock banner
══════════════════════════════════════════════════════════ */

/* Social proof on explain screen */
.social-proof {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; margin: 4px 0 18px;
  border-radius: 999px;
  font-size: 13px; font-weight: 500;
  background: rgba(16, 185, 129, 0.10);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.25);
}
.social-proof .sp-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #10b981;
  animation: sp-pulse 1.8s ease-in-out infinite;
}
@keyframes sp-pulse {
  0%, 100% { transform: scale(1);   opacity: 1;   }
  50%      { transform: scale(1.4); opacity: 0.5; }
}

/* Countdown on payment screen */
.pay-deadline {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; margin: 4px 0 14px;
  border-radius: 10px;
  background: rgba(234, 88, 12, 0.10);
  border: 1px solid rgba(234, 88, 12, 0.30);
  font-size: 14px;
}
.pay-deadline-icon { font-size: 18px; }
.pay-deadline-text strong {
  color: #ea580c; font-weight: 700; margin-right: 6px;
  font-variant-numeric: tabular-nums;
}

/* Blurred checklist preview on payment screen */
.pay-preview {
  margin: 16px 0;
  padding: 14px;
  border: 1px dashed var(--border, rgba(255,255,255,0.14));
  border-radius: 10px;
  background: rgba(255,255,255,0.02);
}
.pay-preview-head {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600;
  color: var(--muted, #9ca3af);
  margin-bottom: 10px;
  text-transform: uppercase; letter-spacing: 0.04em;
}
.pay-preview-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 6px;
}
.pay-preview-list li {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 10px;
  border-radius: 6px;
  background: rgba(255,255,255,0.04);
  font-size: 13px;
  filter: blur(2.5px);
  user-select: none; pointer-events: none;
}
.pay-preview-list li::before {
  content: "📄"; flex-shrink: 0;
}

/* Unlock banner on post-payment checklist */
.cl-unlock-banner {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px; margin-bottom: 16px;
  border-radius: 10px;
  background: rgba(16, 185, 129, 0.12);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.30);
  font-size: 14px; font-weight: 600;
}
.cl-unlock-icon { font-size: 18px; }

/* Strengthen banner — replaces unlock banner on the doc-upload checklist */
.cl-strengthen-banner {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px; margin-bottom: 18px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.14) 0%, rgba(255, 179, 71, 0.07) 100%);
  border: 1px solid rgba(255, 107, 53, 0.40);
  color: #ff8a55;
  font-size: 14px;
  font-weight: 600;
}
.cl-strengthen-icon { font-size: 22px; flex-shrink: 0; }

.cl-list { margin-bottom: 18px; }

.cl-action-plan-toggle {
  margin: 18px 0 8px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  background: rgba(255,255,255,0.02);
  padding: 0;
}
.cl-action-plan-toggle summary {
  cursor: pointer;
  list-style: none;
  padding: 12px 16px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-secondary, #aaa);
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cl-action-plan-toggle summary::-webkit-details-marker { display: none; }
.cl-action-plan-toggle summary::after {
  content: '▾';
  font-size: 12px;
  margin-left: 8px;
  transition: transform .2s;
}
.cl-action-plan-toggle[open] summary::after { transform: rotate(180deg); }
.cl-action-plan-toggle > div { padding: 6px 16px 14px; }

[data-theme="light"] .cl-action-plan-toggle {
  border-color: rgba(0,0,0,0.10);
  background: rgba(0,0,0,0.02);
}

.cl-generate-btn {
  background: linear-gradient(135deg, #FF6B35 0%, #FFB347 100%) !important;
  font-weight: 700;
  padding: 16px 22px;
  font-size: 16px;
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.30);
}
.cl-generate-btn:hover {
  box-shadow: 0 8px 28px rgba(255, 107, 53, 0.45);
  transform: translateY(-1px);
}

.cl-skip-hint {
  font-size: 12px;
  color: var(--text-tertiary, rgba(255,255,255,0.45));
  text-align: center;
  margin-top: 10px;
  line-height: 1.55;
}

/* ════════════════════════════════════════════════════════════
   PER-DOCUMENT NOTE TOGGLE  (inside each .cl-card)
   ════════════════════════════════════════════════════════════ */
.cl-note-toggle {
  margin-top: 10px;
  border-top: 1px dashed rgba(255,255,255,0.07);
  padding-top: 10px;
}
[data-theme="light"] .cl-note-toggle {
  border-top-color: rgba(0,0,0,0.10);
}
.cl-note-toggle summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-secondary, rgba(255,255,255,0.65));
  padding: 4px 0;
  user-select: none;
}
.cl-note-toggle summary::-webkit-details-marker { display: none; }
.cl-note-toggle summary::after {
  content: '▾';
  margin-left: auto;
  font-size: 11px;
  transition: transform .2s;
  color: var(--text-tertiary, rgba(255,255,255,0.4));
}
.cl-note-toggle[open] summary::after { transform: rotate(180deg); }
.cl-note-toggle-icon { font-size: 13px; }
.cl-note-toggle-label { flex: 0 1 auto; }
.cl-note-saved-tick {
  font-size: 11px;
  font-weight: 700;
  color: #10b981;
  margin-left: 8px;
  letter-spacing: 0.02em;
}
.cl-note-input {
  width: 100%;
  margin-top: 8px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--text-primary, #fff);
  font-family: inherit;
  font-size: 13px;
  line-height: 1.55;
  resize: vertical;
  min-height: 70px;
  outline: none;
  transition: border-color .15s, background .15s;
  box-sizing: border-box;
}
.cl-note-input::placeholder {
  color: var(--text-tertiary, rgba(255,255,255,0.35));
  font-style: italic;
}
.cl-note-input:focus {
  border-color: rgba(255, 107, 53, 0.55);
  background: rgba(255,255,255,0.05);
}
[data-theme="light"] .cl-note-input {
  background: rgba(0,0,0,0.02);
  border-color: rgba(0,0,0,0.12);
  color: #1a1a1a;
}
[data-theme="light"] .cl-note-input:focus {
  background: rgba(0,0,0,0.04);
  border-color: rgba(255, 107, 53, 0.55);
}

/* ════════════════════════════════════════════════════════════
   GLOBAL "ANYTHING ELSE" NOTE — above the Generate button
   ════════════════════════════════════════════════════════════ */
.cl-general-note {
  position: relative;
  margin: 18px 0 8px;
  padding: 16px;
  background: linear-gradient(135deg, rgba(255, 179, 71, 0.06) 0%, rgba(255, 107, 53, 0.04) 100%);
  border: 1px solid rgba(255, 179, 71, 0.25);
  border-radius: 12px;
}
.cl-general-note-head {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 10px;
}
.cl-general-note-icon {
  font-size: 22px;
  line-height: 1;
  margin-top: 2px;
}
.cl-general-note-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary, #fff);
  margin-bottom: 3px;
}
.cl-general-note-sub {
  font-size: 12px;
  line-height: 1.55;
  color: var(--text-secondary, rgba(255,255,255,0.65));
}
.cl-general-note-input {
  width: 100%;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--text-primary, #fff);
  font-family: inherit;
  font-size: 13.5px;
  line-height: 1.6;
  resize: vertical;
  min-height: 90px;
  outline: none;
  transition: border-color .15s, background .15s;
  box-sizing: border-box;
}
.cl-general-note-input::placeholder {
  color: var(--text-tertiary, rgba(255,255,255,0.40));
  font-style: italic;
}
.cl-general-note-input:focus {
  border-color: rgba(255, 107, 53, 0.55);
  background: rgba(0, 0, 0, 0.25);
}
[data-theme="light"] .cl-general-note-input {
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(0,0,0,0.12);
  color: #1a1a1a;
}
[data-theme="light"] .cl-general-note-input:focus {
  background: #fff;
  border-color: rgba(255, 107, 53, 0.55);
}
.cl-note-saved-indicator {
  position: absolute;
  top: 16px; right: 16px;
  font-size: 11px;
  font-weight: 700;
  color: #10b981;
  letter-spacing: 0.02em;
  opacity: 0;
  transition: opacity .25s;
}
.cl-note-saved-indicator.saved { opacity: 1; }

/* Resume code box on post-payment checklist screen */
.cl-resume-box {
  margin: 0 0 18px;
  padding: 14px 16px;
  border-radius: 10px;
  background: rgba(232, 93, 26, 0.08);
  border: 1px dashed rgba(232, 93, 26, 0.45);
}
.cl-resume-head {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600;
  color: var(--fg, #e5e7eb);
  margin-bottom: 10px;
}
.cl-resume-icon { font-size: 16px; }
.cl-resume-row {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
}
.cl-resume-code {
  font-family: 'DM Mono', ui-monospace, monospace;
  font-size: 20px; font-weight: 700;
  letter-spacing: 0.15em;
  padding: 6px 14px;
  border-radius: 8px;
  background: rgba(0,0,0,0.35);
  color: #e85d1a;
  border: 1px solid rgba(232, 93, 26, 0.40);
}
.cl-resume-copy {
  padding: 6px 14px; font-size: 12px; font-weight: 600;
  border-radius: 8px;
  border: 1px solid rgba(232, 93, 26, 0.40);
  background: transparent;
  color: #e85d1a;
  cursor: pointer;
}
.cl-resume-copy:hover {
  background: rgba(232, 93, 26, 0.12);
}
.cl-resume-note {
  margin: 10px 0 0;
  font-size: 12px;
  color: var(--muted, #9ca3af);
  line-height: 1.5;
}

/* Resume code display on download screen */
.resume-block {
  margin: 20px 0 14px;
  padding: 14px;
  border-radius: 10px;
  background: rgba(232, 93, 26, 0.08);
  border: 1px solid rgba(232, 93, 26, 0.24);
  text-align: center;
}
.resume-title {
  margin: 0 0 10px; font-size: 13px; font-weight: 600;
  color: var(--fg, #e5e7eb);
}
.resume-code-row {
  display: flex; align-items: center; justify-content: center;
  gap: 10px; flex-wrap: wrap;
}
.resume-code {
  font-family: 'DM Mono', ui-monospace, monospace;
  font-size: 22px; font-weight: 700;
  letter-spacing: 0.15em;
  padding: 8px 16px;
  border-radius: 8px;
  background: rgba(0,0,0,0.35);
  color: #e85d1a;
  border: 1px solid rgba(232, 93, 26, 0.40);
}
.resume-copy-btn { padding: 8px 16px; font-size: 13px; }

/* Resume code entry on upload card */
.resume-entry {
  margin-top: 14px; padding-top: 14px;
  border-top: 1px solid var(--border, rgba(255,255,255,0.08));
}
.resume-entry-label {
  font-size: 12px; font-weight: 600; margin: 0 0 8px;
  color: var(--muted, #9ca3af);
  text-transform: uppercase; letter-spacing: 0.04em;
}
.resume-entry-row { display: flex; gap: 8px; }
.resume-entry-input {
  flex: 1; padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid var(--border, rgba(255,255,255,0.14));
  background: rgba(0,0,0,0.25);
  color: inherit;
  font-family: 'DM Mono', ui-monospace, monospace;
  font-size: 14px; letter-spacing: 0.12em;
  text-transform: uppercase;
}
.resume-entry-input:focus {
  outline: none;
  border-color: #e85d1a;
  box-shadow: 0 0 0 2px rgba(232,93,26,0.18);
}
.resume-entry-btn { padding: 10px 16px; font-size: 13px; white-space: nowrap; }
.resume-entry-err {
  margin: 6px 0 0; font-size: 12px; color: #ef4444; min-height: 14px;
}

/* ── Button loading state (payment, dev-bypass) ────────────────────── */
.btn.is-loading,
.dev-bypass-btn.is-loading {
  opacity: 0.82;
  cursor: progress;
  pointer-events: none;
}
.btn-spinner {
  display: inline-block;
  width: 14px; height: 14px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  margin-right: 8px;
  vertical-align: -2px;
}
.dev-bypass-btn.is-loading .btn-spinner {
  border-color: rgba(232,93,26,0.35);
  border-top-color: #e85d1a;
}

/* Inline loading block for the checklist screen when cache missed */
.cl-loading {
  display: flex; flex-direction: column; align-items: center;
  gap: 10px; padding: 36px 20px; color: var(--text-secondary, #6b7280);
  font-size: 14px;
}
.cl-loading .spinner {
  width: 32px; height: 32px; margin: 0;
  border-width: 2.5px;
}

/* ── Trust block (explain screen) ─────────────────────────────────── */
.trust-block {
  background: linear-gradient(135deg, rgba(232,93,26,0.08) 0%, rgba(232,93,26,0.03) 100%);
  border: 1px solid rgba(232,93,26,0.2);
  border-radius: 12px;
  padding: 16px 18px;
  margin-bottom: 20px;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.trust-badge-icon { font-size: 18px; }
.trust-badge-text {
  font-size: 14px;
  font-weight: 700;
  color: #e85d1a;
  letter-spacing: 0.01em;
}
.trust-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 12px;
}
.trust-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.trust-stat-num {
  font-size: 17px;
  font-weight: 800;
  color: var(--text-primary, #f1f5f9);
  letter-spacing: -0.02em;
}
.trust-stat-label {
  font-size: 11px;
  color: var(--text-secondary, #94a3b8);
  text-align: center;
  line-height: 1.3;
}
.trust-stat-divider {
  width: 1px;
  height: 32px;
  background: rgba(232,93,26,0.2);
  flex-shrink: 0;
  margin: 0 4px;
}
.trust-tagline {
  font-size: 12.5px;
  color: var(--text-secondary, #94a3b8);
  text-align: center;
  margin: 0;
  font-style: italic;
}

/* ── Disclaimer Modal ──────────────────────────────────────────── */
.disc-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.72);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.disc-modal {
  background: var(--lp-bg2, #1e2535);
  border: 1px solid var(--lp-border, rgba(255,255,255,0.1));
  border-radius: 16px;
  padding: 2rem;
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}
[data-theme="light"] .disc-modal {
  background: #fff;
  border-color: rgba(0,0,0,0.1);
  box-shadow: 0 24px 60px rgba(0,0,0,0.15);
}
.disc-modal-title {
  font-family: var(--font-serif, Georgia, serif);
  font-size: 1.45rem;
  color: var(--lp-text-h, #f1f5f9);
  margin: 0 0 1.1rem;
}
[data-theme="light"] .disc-modal-title {
  color: #0f172a;
}
.disc-modal-body {
  font-size: 0.875rem;
  color: var(--lp-text-b, #94a3b8);
  line-height: 1.75;
  margin-bottom: 1.35rem;
  border-left: 3px solid var(--lp-accent, #f59e0b);
  padding-left: 1rem;
}
[data-theme="light"] .disc-modal-body {
  color: #475569;
}
.disc-modal-body p {
  margin: 0 0 0.7rem;
}
.disc-modal-body p:last-child {
  margin-bottom: 0;
}
.disc-modal-check {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: var(--lp-text-b, #94a3b8);
  cursor: pointer;
  margin-bottom: 1.35rem;
  line-height: 1.5;
}
[data-theme="light"] .disc-modal-check {
  color: #334155;
}
.disc-modal-check input[type="checkbox"] {
  margin-top: 2px;
  width: 17px;
  height: 17px;
  accent-color: var(--lp-accent, #f59e0b);
  cursor: pointer;
  flex-shrink: 0;
}
.disc-modal-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.disc-proceed-btn {
  flex: 1;
  min-width: 120px;
  padding: 0.75rem 1.5rem;
  background: var(--lp-accent, #f59e0b);
  color: #000;
  border: none;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s;
}
.disc-proceed-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.disc-proceed-btn:not(:disabled):hover {
  opacity: 0.87;
}
.disc-cancel-btn {
  padding: 0.75rem 1.25rem;
  background: transparent;
  color: var(--lp-text-b, #94a3b8);
  border: 1px solid var(--lp-border, rgba(255,255,255,0.15));
  border-radius: 8px;
  font-size: 0.95rem;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
[data-theme="light"] .disc-cancel-btn {
  border-color: rgba(0,0,0,0.2);
  color: #64748b;
}
.disc-cancel-btn:hover {
  border-color: var(--lp-accent, #f59e0b);
  color: var(--lp-accent, #f59e0b);
}
.disc-declined-banner {
  font-size: 0.85rem;
  color: #ef4444;
  margin: 0.5rem 0 0;
  padding: 0.5rem 0.75rem;
  background: rgba(239,68,68,0.1);
  border-radius: 6px;
  border: 1px solid rgba(239,68,68,0.25);
  text-align: center;
}

/* ════════════════════════════════════════════════════════════
   REPLY PREVIEW SCREEN — post-payment full draft (non-copyable)
   ════════════════════════════════════════════════════════════ */
.preview-card { padding: 28px 24px; }

.preview-unlock-banner {
  display: flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.14) 0%, rgba(34, 197, 94, 0.06) 100%);
  border: 1px solid rgba(34, 197, 94, 0.40);
  color: #4ade80;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  margin: 0 auto 14px;
  width: fit-content;
}
.preview-unlock-icon { font-size: 14px; }

.preview-header { text-align: center; margin-bottom: 18px; }
.preview-eyebrow {
  display: inline-block;
  background: linear-gradient(135deg, #FFB347 0%, #FF6B35 100%);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 999px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.30);
}
.preview-title {
  font-size: 26px;
  margin: 0 0 8px;
  line-height: 1.25;
  font-weight: 800;
}
.preview-sub {
  color: rgba(255,255,255,0.65);
  font-size: 14.5px;
  line-height: 1.6;
  max-width: 560px;
  margin: 0 auto;
}

.preview-trust-row {
  display: flex; flex-wrap: wrap; gap: 8px;
  justify-content: center;
  margin: 16px 0 22px;
}
.preview-trust-pill {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.85);
  font-size: 12px;
  font-weight: 600;
  padding: 7px 13px;
  border-radius: 999px;
  white-space: nowrap;
}

.preview-doc-wrap {
  position: relative;
  background: #fdfcf7;
  color: #1a1a1a;
  border-radius: 12px;
  padding: 32px 36px 64px;
  margin-bottom: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.28), inset 0 0 0 1px rgba(0,0,0,0.05);
  font-family: 'Georgia', 'Times New Roman', serif;
}

.preview-watermark {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) rotate(-22deg);
  font-size: 64px;
  font-weight: 900;
  color: rgba(220, 95, 30, 0.09);
  letter-spacing: 0.08em;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 1;
}

.preview-doc {
  position: relative;
  z-index: 2;
  font-size: 14.5px;
  line-height: 1.75;
  min-height: 140px;
}
.preview-loading {
  display: flex; flex-direction: column;
  align-items: center; gap: 10px;
  color: #555;
  padding: 30px 0;
}
.preview-doc-addressee {
  font-weight: 700;
  margin-bottom: 4px;
  white-space: pre-line;
}
.preview-doc-subject {
  margin: 14px 0;
  font-weight: 700;
  border-bottom: 1.5px solid #1a1a1a;
  padding-bottom: 8px;
}
.preview-doc-salutation {
  margin: 16px 0 10px;
  font-weight: 600;
}
.preview-doc-opening { margin-bottom: 18px; text-align: justify; }

.preview-doc-ground { margin: 18px 0; }
.preview-doc-ground-heading {
  font-weight: 800;
  margin-bottom: 6px;
  text-decoration: underline;
}
.preview-doc-ground-body { text-align: justify; }
.preview-doc-closing {
  margin: 22px 0 14px;
  text-align: justify;
  font-style: italic;
  color: #2a2a2a;
}
.preview-doc-section { margin: 18px 0; }
.preview-doc-section-heading {
  font-weight: 800;
  text-decoration: underline;
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.preview-doc-section-body { text-align: justify; }
.preview-doc-section-body > div { margin: 2px 0; }
.preview-doc-signoff {
  margin-top: 26px;
  font-weight: 700;
  white-space: pre-line;
  line-height: 1.6;
}

.preview-doc-hidden {
  position: relative;
  margin: 14px 0;
  padding: 12px 90px 12px 14px;
  background: rgba(0,0,0,0.04);
  border-radius: 8px;
  border: 1px dashed rgba(0,0,0,0.12);
}
.preview-doc-hidden-heading {
  font-weight: 800;
  margin-bottom: 6px;
  text-decoration: underline;
  filter: blur(0);
}
.preview-doc-hidden-body {
  filter: blur(4.5px);
  user-select: none;
  pointer-events: none;
  font-style: italic;
  color: #444;
  line-height: 1.6;
}
.preview-doc-hidden-lock {
  position: absolute;
  top: 12px; right: 12px;
  background: rgba(220, 95, 30, 0.12);
  border: 1px solid rgba(220, 95, 30, 0.45);
  padding: 4px 10px;
  border-radius: 999px;
  color: #c4571c;
  font-weight: 800;
  font-size: 10px;
  letter-spacing: 0.08em;
}

.preview-doc.nocopy,
.preview-doc.nocopy * {
  user-select: none !important;
  -webkit-user-select: none !important;
  -ms-user-select: none !important;
  -moz-user-select: none !important;
  -webkit-touch-callout: none !important;
}
.preview-doc.nocopy::selection,
.preview-doc.nocopy *::selection {
  background: transparent !important;
  color: inherit !important;
}

.preview-fade-overlay {
  /* Reserved for future use — kept hidden when full draft is shown */
  display: none;
}

.preview-cta-banner {
  display: flex; gap: 14px; align-items: flex-start;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.13) 0%, rgba(255, 179, 71, 0.07) 100%);
  border: 1px solid rgba(255, 107, 53, 0.40);
  border-radius: 12px;
  padding: 16px 18px;
  margin-bottom: 16px;
}
.preview-cta-icon { font-size: 28px; flex-shrink: 0; line-height: 1; }
.preview-cta-body { flex: 1; }
.preview-cta-title {
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 4px;
  color: #fff;
}
.preview-cta-text {
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255,255,255,0.75);
}

.preview-continue-btn {
  background: linear-gradient(135deg, #FF6B35 0%, #FFB347 100%) !important;
  font-size: 16px;
  padding: 16px 22px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.35);
}
.preview-continue-btn:hover {
  box-shadow: 0 8px 28px rgba(255, 107, 53, 0.50);
  transform: translateY(-1px);
}
.preview-cta-arrow {
  display: inline-block;
  transition: transform .25s ease;
}
.preview-continue-btn:hover .preview-cta-arrow { transform: translateX(5px); }

.preview-disclaimer {
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  margin-top: 14px;
  line-height: 1.5;
}

/* Anti-copy toast */
.preview-copy-toast {
  position: fixed;
  bottom: 24px; left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: rgba(20, 20, 24, 0.96);
  color: #fff;
  border: 1px solid rgba(255, 107, 53, 0.4);
  padding: 12px 18px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
  max-width: 90vw;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
  z-index: 9999;
}
.preview-copy-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Light theme adjustments */
[data-theme="light"] .preview-sub,
[data-theme="light"] .preview-cta-text { color: rgba(0,0,0,0.65); }
[data-theme="light"] .preview-trust-pill {
  background: rgba(0,0,0,0.04);
  border-color: rgba(0,0,0,0.10);
  color: rgba(0,0,0,0.80);
}
[data-theme="light"] .preview-cta-title { color: #1a1a1a; }
[data-theme="light"] .preview-disclaimer { color: rgba(0,0,0,0.55); }

@media (max-width: 600px) {
  .preview-card { padding: 22px 16px; }
  .preview-doc-wrap { padding: 22px 18px 56px; }
  .preview-doc { font-size: 13.5px; }
  .preview-watermark { font-size: 44px; }
  .preview-title { font-size: 21px; }
  .preview-doc-hidden { padding-right: 14px; }
  .preview-doc-hidden-lock {
    position: static;
    display: inline-block;
    margin-top: 6px;
  }
  .preview-continue-btn { font-size: 14.5px; padding: 14px 16px; }
}
