/*
 * FastQuote — landing page styles.
 *
 * Conversion-focused: hero + demo strip + 3-step + pricing + footer.
 * Built per spec — visual truth lives here, behavioural truth in landing.js.
 *
 * Mobile-first: stacks under 1100px, simplifies further under 720px.
 * Touch targets: every .btn ≥ 44px; .btn-lg = 56px.
 */

:root {
  /* Colour */
  --bg:           #0d0805;
  --bg-2:         #14100b;
  --bg-3:         #1a1410;
  --bg-card:      #1c1612;
  --rule:         #2a241c;
  --rule-2:       #3a3228;
  --ink:          #f8f2e6;
  --ink-2:        #d9c9a8;
  --ink-3:        #a8967a;
  --ink-4:        #6b5d4c;
  --brand:        #d97706;
  --brand-bright: #f59332;
  --brand-dk:     #b85d00;
  --brand-soft:   rgba(217, 119, 6, 0.10);
  --ok:           #65a32d;
  --ok-bright:    #9dc767;

  /* Type */
  --display: "Barlow Condensed", system-ui, sans-serif;
  --body:    "Inter", system-ui, sans-serif;
  --mono:    "JetBrains Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; }
html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
img { display: block; max-width: 100%; }

/* Focus — visible on every interactive element. Amber on the deepest
   page background tests at 6.25:1 (passes AA but borderline against
   the 7:1 enhanced target); the box-shadow halo lifts it well above
   that on every dark surface without relying on outline-offset which
   can clip in scroll containers. */
:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(217, 119, 6, 0.22);
}

/* ─── Buttons ───────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 14px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 2px;
  min-height: 44px;
  transition: background-color 0.15s, border-color 0.15s, transform 0.05s, box-shadow 0.15s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn-sm {
  font-size: 13px;
  padding: 9px 16px;
  min-height: 38px;
}
.btn-lg {
  font-size: 15px;
  padding: 18px 28px;
  min-height: 56px;
}

.btn-primary {
  background: var(--brand);
  color: #1a0e02;
  border-color: var(--brand);
  box-shadow: 0 2px 0 var(--brand-dk), 0 8px 24px -8px rgba(217, 119, 6, 0.5);
}
.btn-primary:hover { background: var(--brand-bright); border-color: var(--brand-bright); }

.btn-ghost {
  background: transparent;
  color: var(--ink-2);
  border-color: var(--rule-2);
}
.btn-ghost:hover { color: var(--ink); border-color: var(--ink-3); }

.btn-block { width: 100%; }

/* ─── Nav ───────────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(13, 8, 5, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--rule);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 28px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.08em;
  color: var(--ink);
}
.brand-mark {
  width: 10px;
  height: 10px;
  background: var(--brand);
  display: inline-block;
}
.nav-links {
  display: flex;
  gap: 28px;
  justify-content: center;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-3);
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--ink); }
.nav-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}
.nav-login {
  font-size: 14px;
  color: var(--ink-3);
  font-weight: 500;
  transition: color 0.15s;
}
.nav-login:hover { color: var(--ink); }

/* ─── Eyebrow ───────────────────────────────────────────────────── */
.eyebrow {
  font-family: var(--body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1.5px;
  background: var(--brand);
}

/* ─── Hero ──────────────────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(800px 400px at 80% 0%, rgba(217, 119, 6, 0.10), transparent 70%),
    radial-gradient(1200px 600px at 10% 100%, rgba(217, 119, 6, 0.04), transparent 70%),
    linear-gradient(to bottom, var(--bg) 0%, var(--bg-2) 100%);
}
.hero-grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.5;
  /* Subtle SVG grain — fine speckle on the warm dark bg. */
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.85  0 0 0 0 0.78  0 0 0 0 0.65  0 0 0 0.06 0'/></filter><rect width='180' height='180' filter='url(%23n)'/></svg>");
}
.hero-inner {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 100px 28px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(48px, 7vw, 92px);
  text-transform: uppercase;
  line-height: 0.92;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 24px 0 28px;
}
.hero-title-amber { color: var(--brand); display: block; }
.hero-sub {
  font-size: 18px;
  color: var(--ink-2);
  line-height: 1.5;
  max-width: 520px;
  margin: 0 0 36px;
}
.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 36px;
}
.hero-facts {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero-facts li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14.5px;
  color: var(--ink-3);
}
.hero-facts li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--brand);
  border-radius: 50%;
  flex: 0 0 auto;
}

/* ─── Live demo strip ───────────────────────────────────────────── */
.demo {
  background: var(--bg-card);
  border: 1px solid var(--rule);
  border-radius: 4px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(217, 119, 6, 0.05),
    0 30px 60px -20px rgba(0, 0, 0, 0.6),
    0 0 80px -20px rgba(217, 119, 6, 0.1);
}
.demo-head {
  background: var(--bg-3);
  border-bottom: 1px solid var(--rule);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.demo-live {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink-2);
  text-transform: uppercase;
}
.demo-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e94545;
  box-shadow: 0 0 0 0 rgba(233, 69, 69, 0.6);
  animation: demoPulse 1.6s ease-out infinite;
}
@keyframes demoPulse {
  0%   { box-shadow: 0 0 0 0 rgba(233, 69, 69, 0.6); }
  70%  { box-shadow: 0 0 0 8px rgba(233, 69, 69, 0); }
  100% { box-shadow: 0 0 0 0 rgba(233, 69, 69, 0); }
}
.demo-replay {
  background: transparent;
  border: 1px solid var(--rule-2);
  color: var(--ink-2);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 14px;
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  /* 44px touch target — replay is a primary interaction with the demo
     even though the demo runs on its own; on mobile it must be reachable. */
  min-height: 44px;
  transition: border-color 0.15s, color 0.15s;
}
.demo-replay:hover { color: var(--ink); border-color: var(--ink-3); }
.demo-replay svg { width: 14px; height: 14px; }

.demo-stage {
  position: relative;
  min-height: 360px;
  padding: 28px 24px;
}
.demo-stage-step {
  position: absolute;
  inset: 28px 24px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
}
.demo-stage-step.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.demo-stage-label {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--ink-3);
  text-transform: uppercase;
  margin: 0 0 18px;
}

/* Stage 1 — photos */
.demo-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.demo-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 3px;
  border: 1px solid var(--rule-2);
  background: var(--bg-3);
  overflow: hidden;
  opacity: 0;
  transform: translateY(12px);
  animation: demoPhotoIn 0.45s ease forwards;
}
.demo-photo:nth-child(1) { animation-delay: 0ms; }
.demo-photo:nth-child(2) { animation-delay: 350ms; }
.demo-photo:nth-child(3) { animation-delay: 700ms; }
@keyframes demoPhotoIn {
  to { opacity: 1; transform: translateY(0); }
}
.demo-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(180, 150, 110, 0.18), transparent 55%),
    radial-gradient(circle at 70% 60%, rgba(120, 95, 70, 0.20), transparent 50%),
    linear-gradient(135deg, #2c241c 0%, #1a1410 100%);
  z-index: 0;
}
/* Real photo layered over the gradient fallback. The fallback shows
   through only if the photo fails to load. */
.demo-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 1;
}
.demo-photo::after {
  content: '✓';
  position: absolute;
  right: 8px;
  bottom: 8px;
  width: 22px;
  height: 22px;
  background: var(--ok);
  color: #0d0805;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  opacity: 0;
  animation: demoCheckIn 0.3s ease 0.45s forwards;
  z-index: 2;
}
.demo-photo:nth-child(2)::after { animation-delay: 0.8s; }
.demo-photo:nth-child(3)::after { animation-delay: 1.15s; }
@keyframes demoCheckIn { to { opacity: 1; } }

/* Stage 2 — numbers */
.demo-rows {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.demo-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid var(--rule);
  opacity: 0;
  transform: translateX(-8px);
  animation: demoRowIn 0.4s ease forwards;
  animation-delay: var(--d, 0ms);
}
.demo-row:last-child { border-bottom: none; }
@keyframes demoRowIn {
  to { opacity: 1; transform: translateX(0); }
}
.demo-row-label {
  font-size: 13px;
  color: var(--ink-3);
  font-weight: 500;
}
.demo-row-v {
  font-family: var(--mono);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}

/* Stage 3 — total + status */
.demo-total {
  background: var(--brand-soft);
  border-left: 3px solid var(--brand);
  padding: 18px 20px;
  border-radius: 0 3px 3px 0;
}
.demo-total-eyebrow {
  font-family: var(--body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin: 0 0 6px;
}
.demo-total-value {
  font-family: var(--display);
  font-weight: 700;
  font-size: 48px;
  letter-spacing: -0.015em;
  line-height: 1;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  margin: 0 0 6px;
}
.demo-total-meta {
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--ink-3);
}
.demo-status {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--ink-2);
}
.demo-status-dot {
  width: 8px;
  height: 8px;
  background: var(--ok);
  border-radius: 50%;
  flex: 0 0 auto;
}

.demo-progress {
  height: 2px;
  background: var(--rule);
  position: relative;
  overflow: hidden;
}
.demo-progress-bar {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0%;
  background: var(--brand);
  transition: width linear;
}

/* ─── Trust strip ───────────────────────────────────────────────── */
.trust {
  background: var(--bg-3);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.trust-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 36px 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 0;
}
.trust-cell {
  position: relative;
  text-align: center;
  padding: 4px 16px;
}
.trust-cell + .trust-cell::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 44px;
  background: var(--rule-2);
}
.trust-stat {
  font-family: var(--display);
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1;
  margin: 0 0 6px;
}
.trust-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-3);
}

/* ─── How it works ──────────────────────────────────────────────── */
.how {
  background: var(--bg);
}
.how-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 100px 28px;
}
.how-head {
  text-align: center;
  margin-bottom: 56px;
}
.section-eyebrow {
  display: inline-flex;
  justify-content: center;
  margin-bottom: 18px;
}
.section-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(36px, 4.5vw, 56px);
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0;
}
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.step {
  background: var(--bg-card);
  border: 1px solid var(--rule);
  border-radius: 4px;
  padding: 32px 28px;
  transition: border-color 0.2s, transform 0.2s;
}
.step:hover { border-color: var(--rule-2); transform: translateY(-2px); }
.step-num {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  color: var(--brand);
  letter-spacing: 0.08em;
}
.step-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: 26px;
  text-transform: uppercase;
  line-height: 1.05;
  color: var(--ink);
  margin: 14px 0 14px;
}
.step-body {
  font-size: 14.5px;
  color: var(--ink-3);
  line-height: 1.55;
  margin: 0 0 22px;
}
.step-mock {
  background: var(--bg-3);
  border: 1px solid var(--rule);
  border-radius: 3px;
  padding: 14px;
  min-height: 100px;
}
.step-mock-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.step-mock-photo {
  aspect-ratio: 4 / 5;
  width: 100%;
  border: 1px solid var(--rule-2);
  border-radius: 2px;
  object-fit: cover;
  display: block;
  background: linear-gradient(135deg, #2c241c 0%, #1a1410 100%);
}
.step-mock-table {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12px;
  font-family: var(--mono);
}
.step-mock-row {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
  border-bottom: 1px solid var(--rule);
  color: var(--ink-3);
}
.step-mock-row.amber {
  color: var(--brand);
  background: var(--brand-soft);
  border-bottom-color: transparent;
  margin: 0 -6px;
  padding: 4px 6px;
}
.step-mock-quote {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.step-mock-ref {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.04em;
}
.step-mock-total {
  font-family: var(--display);
  font-weight: 700;
  font-size: 24px;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
}
.step-mock-accepted {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ok-bright);
  border: 1px solid var(--ok);
  background: rgba(101, 163, 45, 0.08);
  padding: 4px 8px;
  border-radius: 2px;
  align-self: flex-start;
}
.step-mock-accepted::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--ok);
  border-radius: 50%;
}

/* ─── Pricing ───────────────────────────────────────────────────── */
.pricing {
  background: var(--bg-2);
  border-top: 1px solid var(--rule);
}
.pricing-inner {
  max-width: 920px;
  margin: 0 auto;
  padding: 100px 28px;
}
.pricing-head {
  text-align: center;
  margin-bottom: 48px;
}
.pricing-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--rule);
  border-radius: 4px;
  padding: 44px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.pricing-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--brand);
  border-radius: 4px 0 0 4px;
}
.pricing-money-eyebrow {
  font-family: var(--body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin: 0 0 12px;
}
.pricing-headline {
  font-family: var(--display);
  font-weight: 800;
  font-size: 40px;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0;
}
.pricing-headline span { color: var(--brand); display: block; }
.pricing-caption {
  margin-top: 14px;
  font-size: 13px;
  color: var(--ink-3);
}
.pricing-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14.5px;
  color: var(--ink-2);
}
.tick {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  background: var(--brand-soft);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.tick svg { width: 10px; height: 10px; }
.pricing-cta-col {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
}
.pricing-cta-note {
  font-size: 12px;
  color: var(--ink-3);
  text-align: center;
}

/* ─── Footer ────────────────────────────────────────────────────── */
.foot {
  border-top: 1px solid var(--rule);
  background: var(--bg);
}
.foot-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 36px 28px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  font-size: 13px;
  color: var(--ink-3);
}
.foot-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.foot-tag { color: var(--ink-3); margin-left: 6px; }
.foot-links {
  display: inline-flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}
/* 44px touch target on each footer link — the small font size left the
   hit area well under that without the padding. */
.foot-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 4px 0;
}
.foot-links a:hover { color: var(--ink); }
.foot-right { text-align: right; }

/* ─── Responsive ────────────────────────────────────────────────── */
@media (max-width: 1099px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 80px 24px;
  }
  .how-inner { padding: 80px 24px; }
  .how-grid { grid-template-columns: 1fr; gap: 16px; }
  .trust-inner {
    grid-template-columns: 1fr 1fr;
    padding: 28px 24px;
  }
  .trust-cell + .trust-cell::before { display: none; }
  .pricing-inner { padding: 80px 24px; }
  .pricing-card {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 28px;
    padding: 36px 28px;
  }
  .pricing-features { align-items: flex-start; }
  .pricing-headline { font-size: 36px; }
  .foot-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .foot-links { justify-content: center; }
  .foot-right { text-align: center; }
}

@media (max-width: 719px) {
  .nav-links { display: none; }
  .nav-inner { grid-template-columns: 1fr auto; gap: 16px; padding: 14px 20px; }
  .hero-inner { padding: 56px 20px; gap: 36px; }
  .hero-title { font-size: clamp(36px, 11vw, 56px); }
  .hero-cta-row .btn { flex: 1 1 100%; }
  .how-inner { padding: 56px 20px; }
  .pricing-inner { padding: 56px 20px; }
  .demo-stage { min-height: 320px; padding: 22px 18px; }
  .demo-stage-step { inset: 22px 18px; }
  .demo-total-value { font-size: 38px; }
  .step { padding: 28px 22px; }
  .step-title { font-size: 22px; }
}

/* ─── prefers-reduced-motion ────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  /* The demo's punchline (stage 3) is held statically by landing.js
     when prefers-reduced-motion is set. Make sure photo checks /
     row reveals start in their resolved state. */
  .demo-photo, .demo-photo::after, .demo-row { opacity: 1 !important; transform: none !important; }
  .demo-progress-bar { width: 100% !important; }
}
