/* ══════════════════════════════════════════
   REGFYL DESIGN SYSTEM — style.css
   Palette: Deep Navy / Ink / Gold / Slate
   Type: Inter (body) — loaded per page
   ══════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Colour tokens */
  --navy:       #0D1F4E;
  --navy-mid:   #162B6A;
  --navy-soft:  #1E3A8A;
  --navy-light: #3B5FC0;
  --navy-pale:  #C8D5F0;
  --navy-ghost: #EEF2FA;
  --navy-faint: #F5F7FC;

  --gold:       #F0B429;
  --gold-dk:    #8C6A00;
  --gold-pale:  #FEF3C7;

  --ink:        #080F26;
  --white:      #FFFFFF;
  --off:        #F8F9FC;
  --border:     #E2E8F4;
  --border-mid: #C1CDE8;

  --text:       #0D1F4E;
  --text-mid:   #3A4E78;
  --text-muted: #637098;
  --text-faint: #9AAAC8;

  --green:      #15803D;
  --green-bg:   #F0FDF4;
  --green-border:#BBF7D0;
  --amber:      #B45309;
  --amber-bg:   #FFFBEB;
  --red:        #B91C1C;
  --red-bg:     #FEF2F2;

  /* Spacing scale */
  --sp-xs:  4px;
  --sp-sm:  8px;
  --sp-md:  16px;
  --sp-lg:  24px;
  --sp-xl:  40px;
  --sp-2xl: 64px;
  --sp-3xl: 96px;

  /* Radii */
  --r-sm:  6px;
  --r-md:  10px;
  --r-lg:  16px;
  --r-xl:  24px;

  /* Shadows */
  --shadow-sm:  0 1px 4px rgba(13,31,78,.06);
  --shadow-md:  0 4px 20px rgba(13,31,78,.09);
  --shadow-lg:  0 12px 40px rgba(13,31,78,.13);

  /* Transitions */
  --ease: .18s ease;

  --sans: 'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 300;
  height: 64px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
  font-size: 18px; font-weight: 800; color: var(--navy); letter-spacing: -.03em;
}
.nav-logo-mark {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 900; color: var(--gold); letter-spacing: -.02em;
}
.nav-links {
  display: flex; align-items: center; gap: 2px;
  list-style: none;
}
.nav-links a {
  font-size: 13px; font-weight: 500; color: var(--text-muted);
  text-decoration: none; padding: 6px 14px; border-radius: var(--r-md);
  transition: color var(--ease), background var(--ease);
  white-space: nowrap;
}
.nav-links a:hover { color: var(--navy); background: var(--navy-ghost); }
.nav-links a.active { color: var(--navy); background: var(--navy-ghost); font-weight: 600; }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a { display: flex; align-items: center; gap: 4px; }
.nav-dropdown > a::after { content: '▾'; font-size: 10px; opacity: .5; }
.dropdown-menu {
  display: none; position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 8px;
  min-width: 220px; box-shadow: var(--shadow-lg);
  z-index: 400;
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block; padding: 10px 14px; border-radius: var(--r-md);
  font-size: 13px; font-weight: 500; color: var(--text-mid);
  text-decoration: none; transition: background var(--ease), color var(--ease);
  white-space: nowrap;
}
.dropdown-menu a:hover { background: var(--navy-ghost); color: var(--navy); }
.dropdown-menu .dm-label {
  font-size: 10px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--text-faint);
  padding: 8px 14px 4px; display: block;
}

.nav-cta {
  font-size: 13px; font-weight: 600; color: #fff;
  background: var(--navy); padding: 9px 22px;
  border-radius: var(--r-md); text-decoration: none;
  transition: background var(--ease);
  white-space: nowrap; margin-left: 8px;
}
.nav-cta:hover { background: var(--navy-mid); }

/* ── LAYOUT ── */
.container { max-width: 1120px; margin: 0 auto; padding: 0 48px; }
.pt-nav { padding-top: 64px; }

/* ── TYPOGRAPHY ── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--navy-light);
}
.eyebrow::before {
  content: ''; display: inline-block;
  width: 18px; height: 3px; background: var(--gold); border-radius: 2px;
}
.eyebrow.light { color: rgba(240,180,41,.85); }
.eyebrow.light::before { background: var(--gold); }

h1.display {
  font-size: clamp(44px,6vw,80px); font-weight: 800;
  letter-spacing: -.045em; line-height: 1.0;
  color: var(--navy);
}
h1.display em { font-style: normal; color: var(--navy-light); font-weight: 300; }
h1.display .accent { color: var(--gold); }

h2.section-h {
  font-size: clamp(28px,4vw,48px); font-weight: 800;
  letter-spacing: -.04em; line-height: 1.06;
  color: var(--navy);
}
h2.section-h em { font-style: normal; color: var(--navy-light); font-weight: 300; }
h2.section-h.on-dark { color: #fff; }
h2.section-h.on-dark em { color: var(--gold); font-weight: 300; }

h3.card-h {
  font-size: 18px; font-weight: 700;
  letter-spacing: -.02em; color: var(--navy); line-height: 1.2;
}

.lead {
  font-size: 18px; font-weight: 300; color: var(--text-muted);
  line-height: 1.75; max-width: 560px;
}
.body-copy { font-size: 15px; color: var(--text-muted); line-height: 1.75; }

/* ── BUTTONS ── */
.btn {
  display: inline-block; text-decoration: none;
  font-size: 14px; font-weight: 600; font-family: var(--sans);
  border-radius: var(--r-md); padding: 12px 26px;
  border: none; cursor: pointer; transition: all var(--ease);
  white-space: nowrap;
}
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-mid); }
.btn-gold { background: var(--gold); color: var(--ink); }
.btn-gold:hover { opacity: .88; }
.btn-outline {
  background: transparent; color: var(--text-mid);
  border: 1.5px solid var(--border-mid);
}
.btn-outline:hover { border-color: var(--navy); color: var(--navy); }
.btn-ghost-white {
  background: rgba(255,255,255,.1); color: rgba(255,255,255,.8);
  border: 1.5px solid rgba(255,255,255,.2);
}
.btn-ghost-white:hover { background: rgba(255,255,255,.18); color: #fff; border-color: rgba(255,255,255,.4); }
.btn-lg { padding: 15px 32px; font-size: 15px; }
.btn-row { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

/* ── CHIPS / BADGES ── */
.chip {
  display: inline-block; font-size: 11px; font-weight: 600;
  padding: 4px 10px; border-radius: 20px; letter-spacing: .01em;
}
.chip-navy { background: var(--navy); color: #fff; }
.chip-navy-soft { background: var(--navy-soft); color: #fff; }
.chip-gold { background: var(--gold); color: var(--ink); }
.chip-gray { background: var(--navy-ghost); color: var(--navy-soft); border: 1px solid var(--navy-pale); }
.chip-green { background: var(--green-bg); color: var(--green); border: 1px solid var(--green-border); }

.badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 600;
  padding: 5px 12px; border-radius: 99px;
  background: var(--navy-ghost); color: var(--navy-soft);
  border: 1px solid var(--navy-pale);
}
.badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

/* ── CARDS ── */
.card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 28px;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--navy-pale); }
.card-dark {
  background: var(--navy); border-color: var(--navy-mid);
}
.card-icon {
  width: 44px; height: 44px; border-radius: var(--r-md);
  background: var(--navy-ghost); border: 1px solid var(--navy-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; margin-bottom: 16px; flex-shrink: 0;
}
.card-dark .card-icon {
  background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.15);
}

/* ── GRIDS ── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }

/* ── SECTIONS ── */
.section { padding: var(--sp-3xl) 0; }
.section-sm { padding: var(--sp-2xl) 0; }
.section-dark { background: var(--navy); }
.section-off { background: var(--off); }
.section-faint { background: var(--navy-faint); }

/* ── HERO (shared page hero) ── */
.page-hero {
  padding: 120px 0 80px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.page-hero-inner { max-width: 700px; }

/* ── FLOW STEPS ── */
.flow-steps { display: flex; flex-direction: column; gap: 0; }
.flow-step { display: flex; gap: 20px; padding-bottom: 28px; }
.flow-step:last-child { padding-bottom: 0; }
.flow-step-spine { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; }
.flow-step-num {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--navy); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; flex-shrink: 0;
}
.flow-step-line { width: 1.5px; flex: 1; min-height: 24px; background: var(--border); margin: 4px 0; }
.flow-step:last-child .flow-step-line { display: none; }
.flow-step-body { padding-top: 4px; }
.flow-step-h { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.flow-step-p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ── TESTIMONIAL ── */
.testi-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 32px;
  display: flex; flex-direction: column; gap: 24px;
}
.testi-card.featured { background: var(--navy); border-color: var(--navy); }
.testi-q { font-size: 15px; line-height: 1.75; font-style: italic; color: var(--text-mid); flex: 1; }
.testi-q::before { content: '\201C'; }
.testi-q::after  { content: '\201D'; }
.testi-card.featured .testi-q { color: rgba(255,255,255,.75); }
.testi-person { display: flex; align-items: center; gap: 12px; }
.testi-av {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: var(--navy-ghost); border: 2px solid var(--navy-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; color: var(--navy);
}
.testi-card.featured .testi-av { background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.2); color: #fff; }
.testi-name { font-size: 13px; font-weight: 600; color: var(--text); }
.testi-role { font-size: 12px; color: var(--text-muted); }
.testi-card.featured .testi-name { color: #fff; }
.testi-card.featured .testi-role { color: rgba(255,255,255,.45); }

/* ── STAT BAR ── */
.stat-row { display: grid; grid-template-columns: repeat(4,1fr); }
.stat-item {
  padding: 48px 28px; text-align: center;
  border-right: 1px solid rgba(255,255,255,.1);
}
.stat-item:last-child { border-right: none; }
.stat-n {
  font-size: 44px; font-weight: 800; letter-spacing: -.04em;
  color: #fff; line-height: 1; margin-bottom: 8px;
}
.stat-n sup { font-size: .55em; color: var(--gold); }
.stat-l { font-size: 13px; color: rgba(255,255,255,.45); line-height: 1.4; }

/* ── LOGO CAROUSEL ── */
.logo-carousel-wrap {
  overflow: hidden; position: relative;
  --carousel-fade: var(--white);
}
.logo-carousel-wrap::before,
.logo-carousel-wrap::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 100px; z-index: 2;
  pointer-events: none;
}
.logo-carousel-wrap::before { left: 0; background: linear-gradient(to right, var(--carousel-fade) 20%, transparent); }
.logo-carousel-wrap::after  { right: 0; background: linear-gradient(to left, var(--carousel-fade) 20%, transparent); }
.logo-track {
  display: flex; gap: 12px; align-items: center;
  width: max-content;
  padding: 4px 0;
  animation: scroll-logos 38s linear infinite;
}
.logo-track:hover { animation-play-state: paused; }
@keyframes scroll-logos {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.logo-pill {
  display: flex; align-items: center; justify-content: center;
  height: 48px; padding: 0 22px; min-width: 120px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-md);
  font-size: 13px; font-weight: 700; color: var(--text-mid);
  letter-spacing: -.02em; flex-shrink: 0; white-space: nowrap;
  transition: border-color var(--ease), box-shadow var(--ease);
}
.logo-pill:hover { border-color: var(--navy-pale); box-shadow: var(--shadow-sm); }
.logo-pill img { max-height: 26px; max-width: 96px; object-fit: contain; display: block; }

/* ── FOOTER ── */
.footer-wrap {
  background: var(--navy); color: rgba(255,255,255,.5);
  border-top: 1px solid rgba(255,255,255,.08);
}
.footer-main {
  display: grid; grid-template-columns: 260px 1fr 1fr 1fr;
  gap: 48px; padding: 64px 0 48px;
}
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 17px; font-weight: 800; color: #fff; text-decoration: none; letter-spacing: -.03em;
}
.footer-logo-mark {
  width: 30px; height: 30px; border-radius: 7px;
  background: rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 900; color: var(--gold);
}
.footer-tagline { font-size: 13px; line-height: 1.65; color: rgba(255,255,255,.4); max-width: 200px; }
.footer-col-h { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 16px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 13px; color: rgba(255,255,255,.55); text-decoration: none;
  transition: color var(--ease);
}
.footer-links a:hover { color: #fff; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 0; border-top: 1px solid rgba(255,255,255,.08);
  font-size: 12px; color: rgba(255,255,255,.3);
}
.footer-bottom a { color: rgba(255,255,255,.4); text-decoration: none; }
.footer-bottom a:hover { color: rgba(255,255,255,.7); }
.footer-bottom-links { display: flex; gap: 24px; }

/* ── CTA BAND ── */
.cta-band {
  background: var(--navy); padding: 96px 0; text-align: center;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(240,180,41,.12) 0%, transparent 65%);
  pointer-events: none;
}
.cta-band-inner { position: relative; max-width: 560px; margin: 0 auto; }
.cta-band h2 { font-size: clamp(28px,4vw,48px); font-weight: 800; letter-spacing: -.04em; color: #fff; line-height: 1.08; margin-bottom: 16px; }
.cta-band p { font-size: 16px; color: rgba(255,255,255,.5); margin-bottom: 36px; line-height: 1.7; }

/* ── STAGE PANEL ── */
.stage-panel {
  display: grid; grid-template-columns: 300px 1fr;
  gap: 64px; padding: 72px 0; align-items: start;
  border-bottom: 1px solid var(--border);
}
.stage-panel:last-child { border-bottom: none; }
.stage-panel.reverse { direction: rtl; }
.stage-panel.reverse > * { direction: ltr; }
.stage-num-label {
  font-size: 10px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--gold-dk); margin-bottom: 10px;
}
.stage-h { font-size: 26px; font-weight: 800; letter-spacing: -.03em; color: var(--navy); margin-bottom: 12px; line-height: 1.1; }
.stage-tagline { font-size: 15px; color: var(--text-muted); line-height: 1.75; margin-bottom: 20px; }

/* ── SCREEN FRAME ── */
.scr-frame {
  border: 1px solid var(--border); border-radius: var(--r-lg);
  overflow: hidden; box-shadow: var(--shadow-md);
  background: var(--off); line-height: 0;
}
.scr-frame img { width: 100%; height: auto; display: block; }
.scr-caption { font-size: 12px; color: var(--text-faint); margin-top: 10px; line-height: 1.5; }

/* ── MOCK UI (privacy-preserving product illustrations) ── */
.mock-panel { background: var(--white); padding: 22px 24px; }
.mock-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; gap: 12px; }
.mock-title { font-size: 13px; font-weight: 700; color: var(--navy); }
.mock-sub { font-size: 11px; color: var(--text-faint); }
.mock-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 9px 0; border-bottom: 1px solid var(--border); }
.mock-row:last-child { border-bottom: none; }
.mock-label { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--text-mid); }
.mock-pill { font-size: 10px; font-weight: 700; padding: 3px 10px; border-radius: 99px; white-space: nowrap; flex-shrink: 0; }
.mock-pill.green { background: var(--green-bg); color: var(--green); }
.mock-pill.amber { background: var(--amber-bg); color: var(--amber); }
.mock-pill.red { background: var(--red-bg); color: var(--red); }
.mock-pill.navy { background: var(--navy-ghost); color: var(--navy-soft); border: 1px solid var(--navy-pale); }
.mock-mask { font-family: monospace; font-size: 11px; color: var(--text-faint); letter-spacing: .03em; }
.mock-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.mock-bar-track { flex: 1; height: 6px; border-radius: 3px; background: var(--border); overflow: hidden; }
.mock-bar-fill { height: 100%; border-radius: 3px; background: var(--navy); }
.mock-avatar {
  width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0;
  background: var(--navy-ghost); border: 1px solid var(--navy-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; font-weight: 700; color: var(--navy);
}
.mock-tabs { display: flex; gap: 6px; margin-bottom: 16px; flex-wrap: wrap; }
.mock-tab { font-size: 10px; font-weight: 700; padding: 5px 11px; border-radius: 7px; background: var(--off); color: var(--text-muted); }
.mock-tab.active { background: var(--navy); color: #fff; }
.mock-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.mock-stat { padding: 12px 14px; border-radius: var(--r-md); border: 1px solid var(--border); background: var(--off); }
.mock-stat .n { font-size: 18px; font-weight: 800; color: var(--navy); line-height: 1; margin-bottom: 4px; }
.mock-stat .l { font-size: 10px; color: var(--text-faint); font-weight: 600; }

/* ── COMPARISON TABLE ── */
.compare-table { width: 100%; border-collapse: collapse; }
.compare-table th, .compare-table td {
  padding: 14px 18px; border-bottom: 1px solid var(--border);
  text-align: left; font-size: 14px;
}
.compare-table th {
  font-weight: 700; color: var(--navy); font-size: 13px;
  background: var(--off); vertical-align: bottom;
}
.compare-table th:first-child { border-radius: var(--r-md) 0 0 0; }
.compare-table th:last-child { border-radius: 0 var(--r-md) 0 0; }
.compare-table td { color: var(--text-mid); }
.compare-table td:first-child { font-weight: 600; color: var(--navy); }
.compare-table .check { color: var(--green); font-weight: 700; }
.compare-table .cross { color: var(--text-faint); }
.compare-table tr:last-child td { border-bottom: none; }

/* ── ACCORDION ── */
.accordion-item { border-bottom: 1px solid var(--border); }
.accordion-item:first-child { border-top: 1px solid var(--border); }
.accordion-btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0; background: none; border: none; cursor: pointer;
  font-family: var(--sans); font-size: 16px; font-weight: 600;
  color: var(--navy); text-align: left; gap: 16px;
}
.accordion-btn::after { content: '+'; font-size: 20px; color: var(--navy-light); flex-shrink: 0; }
.accordion-btn[aria-expanded="true"]::after { content: '−'; }
.accordion-body { display: none; padding-bottom: 20px; }
.accordion-body.open { display: block; }
.accordion-body p { font-size: 15px; color: var(--text-muted); line-height: 1.75; }

/* ── MOBILE / RESPONSIVE ── */
@media (max-width: 1024px) {
  .container { padding: 0 32px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .nav { padding: 0 20px; }
  .nav-links { display: none; }
  .container { padding: 0 20px; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: 1fr 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }

  .stage-panel { grid-template-columns: 1fr; gap: 32px; }
  .stage-panel.reverse { direction: ltr; }

  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-bottom-links { flex-wrap: wrap; justify-content: center; }

  .page-hero { padding: 100px 0 60px; }
  .section { padding: 64px 0; }
  .cta-band { padding: 64px 0; }
}

@media (max-width: 480px) {
  .footer-main { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: 1fr; }
  h1.display { font-size: 38px; }
}

/* ── UTILITY ── */
.text-center { text-align: center; }
.gap-sm { gap: var(--sp-sm); }
.gap-md { gap: var(--sp-md); }
.gap-lg { gap: var(--sp-lg); }
.mb-sm { margin-bottom: var(--sp-sm); }
.mb-md { margin-bottom: var(--sp-md); }
.mb-lg { margin-bottom: var(--sp-lg); }
.mb-xl { margin-bottom: var(--sp-xl); }
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.reveal.vis { opacity: 1; transform: none; }
