.screen h6{
margin-bottom: 30px!important}

:root {
  --ink: #0D0D0D;
  --muted: rgba(255,255,255,0.75);
  --border: rgba(255,255,255,0.14);
  --card-bg: rgba(255,255,255,0.08);
  --input-bg: rgba(255,255,255,0.06);
}
.content-row.dark-mode {
  background-color: var(--black);
}

.content-row.dark-mode * {
  color: var(--white);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }




/* ── SCREENS ── */
.screen { display: none; }
.screen.active { display: block; }

/* ── HERO ── */
.hero {
  padding: 60px 0 40px;
  text-align: center;
  max-width: 600px;
  margin: auto;
}

.accel-watermark {
  font-size: 1em!important;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange)!important;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.accel-tagline-watermark {
margin-bottom: 10px;
}

.hero-eyebrow {
  font-size: 0.8em!important;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange)!important;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--orange);
  opacity: 0.4;
}
.hero-title {
  font-size: clamp(48px, 8vw, 86px);
  line-height: 0.9;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}
.hero-title span { color: var(--orange); }
.hero-sub {

  color: rgba(255,255,255,0.45);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

/* ── STAT BAR ── */
.stat-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 48px;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.stat-item {
  background: var(--card-bg);
  padding: 18px 20px;
  text-align: center;
  backdrop-filter: blur(10px);
}
.stat-num {
  font-size: 2em!important;
  font-weight: 600;
  color: var(--orange)!important;
  line-height: 1;
  display: block;
  margin-bottom: 15px;
}
.stat-label {
  font-size: 0.8em!important;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted)!important;
  text-wrap: balance;
  margin-bottom: 0;
}
.stat-item:nth-child(1) .stat-num { color: var(--red)!important; }
.stat-item:nth-child(2) .stat-num { color: var(--orange)!important; }
.stat-item:nth-child(3) .stat-num { color: var(--yellow)!important; }

.content-row.dark-mode .button.solid.orange:before {
background: var(--white)!important;}

.content-row.dark-mode .button.solid.orange {
border: none;
  margin-bottom: 10px;
}

.content-row.dark-mode .button.solid.orange:hover {
color: var(--black)!important;
border: none;
}

.content-row.dark-mode .button.outline.white:hover {
color: black!important;}

.content-row.dark-mode .button.outline.white.back:after {
    transform: rotate(180deg);
    margin-left: 0;
    margin-right: 10px;
}

.content-row.dark-mode .button.outline.white {
    border: none;
    color: white !important;
    margin-bottom: 10px;
}
.content-row.dark-mode .button.outline.white.back {
    display: inline-flex;
    flex-direction: row-reverse;
}

/* ── CTA BUTTON ── 
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: white;
  border: none;
  padding: 16px 36px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-primary:hover {
  background: #ff7a35;
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(255,97,19,0.35);
}
.btn-primary .arrow {
  font-size: 16px;
  transition: transform 0.2s;
}
.btn-primary:hover .arrow { transform: translateX(4px); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--black);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 12px 24px;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 12px;
}
.btn-secondary:hover {
  border-color: rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.8);
}

/* ── PROGRESS BAR ── */
.progress-wrap {
  margin-bottom: 40px;
}
.progress-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.progress-step {
  font-size: 0.8em!important;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--black);
}
.progress-count {
  font-size: 0.8em!important;
  color: var(--orange)!important;
  letter-spacing: 0.1em;
}
.progress-track {
  height: 3px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--orange), var(--red));
  border-radius: 2px;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── QUESTION CARD ── */
.question-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 36px 40px;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}
.question-card h4{
  font-size: 2em!important;
  margin-bottom: 10px;
}
.q-eyebrow {
  font-size: 0.8em!important;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--orange)!important;
  margin-bottom: 12px;
}
.q-text {
  line-height: 1.3;
  margin-bottom: 8px;
}
.q-sub {
  font-size: 1em!important;
  color: rgba(255,255,255,0.4);
  margin-bottom: 28px;
  line-height: 1.6;
}

/* ── OPTION TILES ── */
.options-grid {
  display: grid;
  gap: 10px;
}
.options-grid.cols-2 { grid-template-columns: 1fr 1fr; }
.options-grid.cols-1 { grid-template-columns: 1fr; }

.option-tile {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  padding: 16px 20px;
  cursor: pointer;
  transition: all 0.18s;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  text-align: left;
}
.option-tile:hover {
  border-color: rgba(255,97,19,0.4);
  background: rgba(255,97,19,0.06);
}
.option-tile.selected {
  border-color: var(--orange);
  background: rgba(255,97,19,0.1);
}
.option-tile.selected .tile-dot {
  background: var(--orange);
  border-color: var(--orange);
}
.tile-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.2);
  flex-shrink: 0;
  margin-top: 2px;
  transition: all 0.18s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tile-dot::after {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: white;
  opacity: 0;
  transition: opacity 0.18s;
}
.option-tile.selected .tile-dot::after { opacity: 1; }
.tile-body {
}
.tile-label {
  font-size: 1.2em!important;
  font-weight: 600;
  margin-bottom: 5px;
}
.tile-sub {
  font-size: 1em!important;
  color: rgba(255,255,255,0.4);
  line-height: 1.45;
}

/* ── SLIDER ── */
.slider-wrap { margin-top: 30px!important; }
.slider-display {
  font-size: 52px;
  font-weight: 600;
  color: var(--orange)!important;
  line-height: 1;
  margin-bottom: 16px;
}
.slider-display span {
  font-size: 22px;
  color: rgba(255,255,255,0.4);
}
input[type=range] {
  -webkit-appearance: none;
  width: 100%;
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  outline: none;
  margin-bottom: 10px;
}
input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--orange);
  cursor: pointer;
  box-shadow: 0 0 0 4px rgba(255,97,19,0.2);
  transition: box-shadow 0.2s;
}
input[type=range]::-webkit-slider-thumb:hover {
  box-shadow: 0 0 0 8px rgba(255,97,19,0.2);
}
.slider-ticks {
  display: flex;
  justify-content: space-between;
  font-size: 0.8em!important;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.08em;
}


/* ── NAV BUTTONS ── */
.nav-btns, .creative-btns {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.creative-btns {
margin-top: 20px}

.creative-question-text {
font-size: 0.8em!important}

/* ── INSIGHT FLASH ── */
.insight-flash {
  background: rgba(255,97,19,0.08);
  border: 1px solid rgba(255,97,19,0.2);
  border-left: 3px solid var(--orange);
  border-radius: 4px;
  padding: 14px 18px;
  margin-bottom: 24px;
  font-size: 1em!important;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  display: none;
}
.insight-flash.show { display: block; }
.insight-flash strong { color: var(--orange)!important; }

/* ── EMAIL GATE ── */
.gate-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 48px 40px;
  text-align: center;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.gate-preview {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.gate-preview-stat {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  padding: 16px 24px;
  text-align: center;
  flex: 1;
  min-width: 120px;
}
.gate-preview-num {
  font-size: 36px;
    font-weight: 600;
  line-height: 1;
  margin-bottom: 4px;
  filter: blur(7px);
  user-select: none;
}
.gate-preview-num.red { color: var(--red); }
.gate-preview-num.orange { color: var(--orange); }
.gate-preview-num.green { color: #2dd4a0; }
.gate-preview-label {
  font-size: 0.8em!important;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--black);
}
.gate-lock-icon {
  font-size: 32px;
  margin-bottom: 16px;
}
.gate-title {
  font-size: 36px;
  margin-bottom: 10px;
  line-height: 1.1;
}
.gate-sub {
  font-size: 1em!important;
  color: rgba(255,255,255,0.45);
  max-width: 420px;
  margin: 0 auto 32px;
  line-height: 1.7;
}
.gate-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 420px;
  margin: 0 auto;
}
.input-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  align-items: start;
}
.form-input, select.form-input option { background: #0a0a0a; color: white; }
.form-input {
  background: var(--input-bg);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 3px;
  padding: 14px 16px;;
  font-size: 1em!important;
  color: white;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.form-input::placeholder { color: rgba(255,255,255,0.25); }
.form-input:focus { border-color: var(--orange); }
.gate-disclaimer {
  font-size: 0.8em!important;
  color: rgba(255,255,255,0.2);
  text-align: center;
  margin-top: 12px;
  letter-spacing: 0.06em;
  line-height: 1.6;
}

/* ── RESULTS SCREEN ── */
.results-hero {
  text-align: center;
  padding: 50px 0 40px;
}
.results-eyebrow {
  font-size: 0.8em!important;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange)!important;
  margin-bottom: 12px;
}
.results-title {
  font-size: clamp(36px, 6vw, 64px);
  line-height: 0.95;
  margin-bottom: 10px;
}
.results-title .highlight { color: var(--red); }

/* ── RESULTS GRID ── */
.results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3px;
  margin-bottom: 3px;
}
.result-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  padding: 28px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.result-card.featured {
  background: rgba(252,5,55,0.06);
  border-color: rgba(252,5,55,0.25);
}
.result-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
}
.result-card.col-red::before { background: var(--red); }
.result-card.col-orange::before { background: var(--orange); }
.result-card.col-green::before { background: #2dd4a0; }

.result-label {
  font-size: 0.8em!important;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--black);
  margin-bottom: 10px;
}
.result-num {
  font-size: 44px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 6px;
}
.result-num.red { color: var(--red)!important; }
.result-num.orange { color: var(--orange)!important; }
.result-num.green { color: #2dd4a0!important; }
.result-desc {
  font-size: 1em!important;
  color: rgba(255,255,255,0.35);
  line-height: 1.5;
}

/* ── RISK BREAKDOWN ── */
.risk-section {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 32px;
  margin: 16px 0;
}
.risk-section-title {
  font-size: 0.8em!important;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--black);
  margin-bottom: 20px;
}
.risk-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}
.risk-row:last-child { margin-bottom: 0; }
.risk-label-wrap { flex: 1; }
.risk-name {
  font-size: 1em!important;
  margin-bottom: 2px;
}
.risk-desc { font-size: 11px; color: rgba(255,255,255,0.35); }
.risk-bar-wrap {
  width: 200px;
  height: 6px;
  background: rgba(255,255,255,0.06);
  border-radius: 3px;
  overflow: hidden;
  flex-shrink: 0;
}
.risk-bar-fill {
  height: 100%;
  border-radius: 3px;
  transition: width 1s cubic-bezier(0.4,0,0.2,1);
}
.risk-val {
  font-size: 1em!important;
  font-weight: 600;
  color: var(--orange)!important;
  width: 80px;
  text-align: right;
  flex-shrink: 0;
}

/* ── ACCELERATE CALLOUT ── */
.accelerate-callout {
  background: linear-gradient(135deg, rgba(255,97,19,0.12), rgba(252,5,55,0.08));
  border: 1px solid rgba(255,97,19,0.25);
  border-radius: 6px;
  padding: 36px;
  margin: 16px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}
.callout-label {
  font-size: 0.8em!important;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--orange)!important;
  margin-bottom: 10px;
}
.callout-title {
  margin-bottom: 10px;
  font-weight: 600;
}
.callout-body {
  font-size: 0.8em!important;
  color:rgba(255,255,255,1)!important;
}
.callout-saving {
  text-align: center;
  background: rgba(255,97,19,0.1);
  border: 1px solid rgba(255,97,19,0.2);
  border-radius: 4px;
  padding: 20px 24px;
  min-width: 160px;
}
.callout-saving-label {
  font-size: 0.9em!important;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
  color: white!important;
}
.callout-saving-num {
  font-size: 40px;
  font-weight: 600;
  color: #2dd4a0!important;
  line-height: 1;
  margin-bottom: 4px;
}
.callout-saving-sub {
  font-size: 0.9em!important;
  color: white!important;
}

.callout-sector {
  font-size:0.8em!important;
  letter-spacing:0.1em;

}

/* ── REPORT FOOTER ── */
.report-footer {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.report-footer-logo {
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-logo-slash { color: var(--orange); }
.report-footer-text {

  font-size: 0.8em!important;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.08em;
}
.report-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* ── DISCLAIMER ── */
.results-disclaimer {
  font-size: 0.8em!important;
  color: rgba(255,255,255,0.5)!important;
  margin-top: 20px;
  font-style: italic;
}

/* ── RISK SCORE GAUGE ── */
.risk-score-wrap {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}
.risk-gauge-ring {
  width: 80px;
  height: 80px;
  margin: 0 auto 8px;
}
.risk-gauge-ring circle {
  fill: none;
  stroke-width: 6;
  stroke-linecap: round;
}
.risk-gauge-track { stroke: rgba(255,255,255,0.06); }
.risk-gauge-fill {
  stroke: var(--red);
  stroke-dasharray: 220;
  stroke-dashoffset: 220;
  transition: stroke-dashoffset 1.4s cubic-bezier(0.4,0,0.2,1);
  transform: rotate(-90deg);
  transform-origin: 50% 50%;
}
.risk-gauge-label {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -44%);
  font-size: 22px;
  color: var(--red)!important;
  font-weight: 600;
  line-height: 1;
  pointer-events: none;
}

/* ── FORM FIELD ERROR ── */
.field-error {

  font-size: 0.8em!important;
  color: var(--red);
  letter-spacing: 0.08em;
  margin-top: 4px;
  display: none;
  text-align: left;
}
.field-error.show { display: block; }
.form-input.error { border-color: var(--red); }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.4s ease forwards; }

@keyframes countUp {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.live-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  margin-right: 6px;
  animation: pulse-dot 1.5s ease infinite;
  vertical-align: middle;
}

/* ── RESPONSIVE ── */
@media (max-width: 640px) {
  .header { padding: 16px 20px; }
  .main { padding: 0 16px 60px; }
  .hero { padding: 40px 0 28px; }
  .question-card { padding: 24px 20px; }
  .options-grid.cols-2 { grid-template-columns: 1fr; }
  .stat-bar { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr; }
  .accelerate-callout { grid-template-columns: 1fr; }
  .gate-card { padding: 32px 20px; }
  .input-row { grid-template-columns: 1fr; }
  .risk-bar-wrap { width: 100px; }
}