@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@700;900&family=Barlow:wght@400;500;600;700&display=swap');

:root {
  --deep: #1E0845;
  --gold: #F5C500;
  --ink: #1A0D3A;
  --ink-muted: #6B5A8E;
  --paper: #FFFFFF;
  --paper-tint: #f9f7ff;
  --line: rgba(26, 13, 58, 0.15);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Barlow', sans-serif;
  background: var(--paper);
  background-image: radial-gradient(circle, rgba(245, 197, 0, 0.15) 1px, transparent 1px);
  background-size: 32px 32px;
  color: var(--ink);
}

.topbar {
  background: var(--deep);
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 3px solid var(--gold);
}

.logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 900;
  color: white;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.logo span { color: var(--gold); }

.topbar-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.wizard-wrap {
  max-width: 640px;
  margin: 0 auto;
  padding: 48px 20px 80px;
}

.progress {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 18px;
  padding: 0 4px;
}
.progress-step {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  white-space: nowrap;
}
.progress-dot { width: 7px; height: 7px; min-width: 7px; border-radius: 50%; }
.progress-step.active .progress-dot { background: var(--deep); }
.progress-step.active span { color: var(--deep); }
.progress-step.inactive .progress-dot { background: rgba(26,13,58,0.15); }
.progress-step.inactive span { color: rgba(26,13,58,0.3); }
.progress-line { flex: 1; height: 1px; background: rgba(26,13,58,0.1); min-width: 4px; }

@media (max-width: 480px) {
  .progress-step span { display: none; }
  .progress { gap: 4px; }
}

.wizard-card {
  background: var(--paper);
  border-top: 4px solid var(--gold);
  box-shadow: 0 2px 16px rgba(30, 8, 69, 0.07);
}

.wizard-header {
  background: var(--deep);
  padding: 22px 28px 26px;
  border-bottom: 3px solid var(--gold);
}

.wizard-tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.wizard-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 26px;
  font-weight: 900;
  text-transform: uppercase;
  color: white;
  line-height: 1.05;
}

.wizard-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 8px;
  line-height: 1.5;
}

.wizard-body {
  padding: 28px 28px 32px;
  background: white;
}

.q-block { margin-bottom: 24px; }

.q-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 14px;
  line-height: 1.4;
}

.option-btn {
  display: block;
  width: 100%;
  text-align: left;
  padding: 14px 16px;
  margin-bottom: 8px;
  border: 1px solid var(--line);
  background: white;
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.15s;
}
.option-btn:hover { border-color: var(--deep); background: var(--paper-tint); }
.option-btn.selected { border-color: var(--deep); background: var(--deep); color: white; }

.self-check {
  font-size: 12px;
  color: var(--ink-muted);
  font-style: italic;
  margin-top: -4px;
  margin-bottom: 16px;
  padding-left: 2px;
}

.continue-btn {
  width: 100%;
  height: 48px;
  background: var(--gold);
  color: var(--deep);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  margin-top: 4px;
}
.continue-btn:disabled { opacity: 0.4; cursor: not-allowed; }

.footer-note {
  text-align: center;
  font-size: 11px;
  color: var(--ink-muted);
  margin-top: 16px;
  font-style: italic;
}

.pillar-option {
  display: block;
  width: 100%;
  text-align: left;
  padding: 16px 18px;
  margin-bottom: 10px;
  border: 1px solid var(--line);
  background: white;
  font-family: 'Barlow', sans-serif;
  cursor: pointer;
  transition: all 0.15s;
}
.pillar-option:hover { border-color: var(--deep); background: var(--paper-tint); }
.pillar-option.selected { border-color: var(--deep); background: var(--deep); }
.pillar-option-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 4px;
}
.pillar-option.selected .pillar-option-title { color: var(--gold); }
.pillar-option-def {
  font-size: 13px;
  color: var(--ink-muted);
  line-height: 1.4;
  margin-bottom: 6px;
}
.pillar-option.selected .pillar-option-def { color: rgba(255,255,255,0.65); }
.pillar-option-check {
  font-size: 12px;
  font-style: italic;
  color: rgba(107,90,142,0.75);
  line-height: 1.4;
}
.pillar-option.selected .pillar-option-check { color: rgba(245,197,0,0.85); }

.pass-divider {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin: 20px 0 10px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

textarea.text-input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  color: var(--ink);
  resize: vertical;
}

/* ============================================================
   LANDING PAGE SECTIONS — hero, disclaimer, info sections,
   delivery diagram, illustrative comparison mockup, final CTA.
   Added when the marketing page was merged into the real app.
   ============================================================ */

.hero {
  background: var(--deep);
  padding: 64px 32px 56px;
  text-align: center;
  border-bottom: 4px solid var(--gold);
  background-image: radial-gradient(circle, rgba(245, 197, 0, 0.08) 1px, transparent 1px);
  background-size: 28px 28px;
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 56px;
  font-weight: 900;
  text-transform: uppercase;
  color: white;
  line-height: 0.95;
  margin-top: 0;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}
.hero-title span { color: var(--gold); }
.hero-sub {
  max-width: 640px;
  margin: 0 auto;
  font-size: 19px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

.disclaimer-strip {
  background: var(--paper-tint);
  padding: 20px 32px;
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.disclaimer-text {
  max-width: 640px;
  margin: 0 auto;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--ink-muted);
  font-style: italic;
}
.disclaimer-text strong {
  color: var(--ink);
  font-style: normal;
  font-weight: 700;
}

.info-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 24px 8px;
}
.info-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 8px;
  text-align: center;
}
.info-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 34px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--ink);
  text-align: center;
  margin-top: 0;
  margin-bottom: 28px;
  line-height: 1;
}
.info-card {
  background: white;
  border-top: 4px solid var(--gold);
  box-shadow: 0 2px 16px rgba(30, 8, 69, 0.06);
  padding: 28px 32px;
}
.info-lead {
  font-size: 16px;
  font-weight: 600;
  color: var(--deep);
  line-height: 1.5;
  margin: 0 0 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.info-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.info-list li {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.info-list li:last-child { border-bottom: none; }
.info-list li strong {
  color: var(--deep);
  font-weight: 700;
}

.delivery-diagram {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px;
  margin: 24px 0 16px;
  padding: 20px 10px;
  background: var(--paper-tint);
}
.delivery-item {
  width: 120px;
  text-align: center;
  padding: 8px 4px;
}
.delivery-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--deep);
  color: var(--gold);
  font-size: 18px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
}
.delivery-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--ink);
  margin-bottom: 6px;
}
.delivery-desc {
  font-size: 11px;
  line-height: 1.4;
  color: var(--ink-muted);
}
.delivery-arrow {
  align-self: center;
  font-size: 18px;
  color: var(--gold);
  font-weight: 700;
  padding: 0 2px;
}
.delivery-footer {
  text-align: center;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--deep);
  margin-bottom: 6px;
}
.dm-caption {
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink-muted);
  margin-top: 18px;
  text-align: center;
}

.not-context {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
  margin: 0 0 22px;
}
.not-caption {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--ink-muted);
  margin: 0;
}

.mockup-frame {
  border-radius: 24px;
  background: linear-gradient(180deg, #fef6ec 0%, #fdf1e3 100%);
  max-width: 360px;
  margin: 0 auto 22px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
  border: 1px solid rgba(0,0,0,0.06);
}
.mockup-statusbar {
  background: #2b2b2b;
  color: white;
  font-size: 11px;
  font-weight: 600;
  padding: 8px 18px 4px;
  display: flex;
  justify-content: space-between;
}
.mockup-statusicons { letter-spacing: 1px; opacity: 0.7; }
.mockup-urlbar {
  background: #2b2b2b;
  color: #d0d0d0;
  font-size: 12px;
  padding: 6px 18px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.mockup-urlicon { color: #a8a29a; }
.mockup-shareicon { margin-left: auto; color: #a8a29a; }
.mockup-body {
  padding: 20px 20px 22px;
  text-align: center;
}
.mockup-banner {
  background: white;
  border-radius: 100px;
  padding: 10px 16px;
  font-size: 12px;
  color: #c0703a;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 26px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}
.mockup-chevron { color: #c0703a; font-weight: 900; }
.mockup-headline {
  font-family: 'Barlow', sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #2b2b2b;
  line-height: 1.25;
  margin-bottom: 10px;
}
.mockup-subline {
  font-size: 13px;
  color: #7a756a;
  margin-bottom: 20px;
}
.mockup-inputbox {
  background: white;
  border-radius: 18px;
  padding: 18px 16px 14px;
  text-align: left;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
  margin-bottom: 16px;
}
.mockup-placeholder {
  color: #a8a29a;
  font-size: 13.5px;
  margin-bottom: 26px;
}
.mockup-inputrow {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mockup-model {
  font-size: 12px;
  color: #6b665c;
  font-weight: 600;
  background: #f2f0eb;
  padding: 5px 10px;
  border-radius: 100px;
}
.mockup-caret { font-size: 9px; }
.mockup-inputicons {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: #a8a29a;
}
.mockup-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background: #2b2b2b;
  border-radius: 50%;
  color: white;
  font-size: 13px;
}
.mockup-toggles {
  display: inline-flex;
  background: white;
  border-radius: 100px;
  padding: 4px;
  gap: 4px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  margin-bottom: 16px;
}
.mockup-toggle {
  font-size: 12px;
  font-weight: 600;
  color: #8a8578;
  padding: 6px 14px;
  border-radius: 100px;
}
.mockup-toggle.active {
  background: #f2f0eb;
  color: #2b2b2b;
}
.mockup-footnote {
  font-size: 11.5px;
  color: #a8a29a;
}
.mockup-link { color: #4a7fc7; }

.final-cta {
  background: var(--deep);
  padding: 56px 32px;
  text-align: center;
  border-top: 4px solid var(--gold);
  background-image: radial-gradient(circle, rgba(245, 197, 0, 0.08) 1px, transparent 1px);
  background-size: 28px 28px;
}
.final-cta-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 34px;
  font-weight: 900;
  text-transform: uppercase;
  color: white;
  line-height: 1.05;
  margin-bottom: 14px;
}
.final-cta-sub {
  max-width: 480px;
  margin: 0 auto 28px;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255,255,255,0.75);
}
.final-cta-btn {
  display: inline-block;
  background: var(--gold);
  color: var(--deep);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 16px 38px;
  text-decoration: none;
}

html {
  scroll-behavior: smooth;
}
