/* ══════════════════════════════════════
   DESIGN TOKENS — Amway Achievers Style
   Adapted from Gallery design system
══════════════════════════════════════ */
:root {
  /* Primary */
  --blue-600:    #38539a;
  --blue-500:    #4a65b0;
  --blue-200:    #f2f3fa;
  --blue-100:    #f7f8fc;

  /* Grayscale */
  --white:       #ffffff;
  --gray-50:     #fafafa;
  --gray-100:    #f8f9fa;
  --gray-200:    #e9ecef;
  --gray-300:    #e4e4e4;
  --gray-400:    #dee2e6;
  --gray-500:    #adb5bd;
  --gray-600:    #6c757d;
  --gray-700:    #495057;
  --gray-800:    #343a40;
  --gray-900:    #212529;
  --black:       #2c2c2c;

  /* Semantic */
  --bg:          #ffffff;
  --bg-surface:  #f2f3fa;
  --bg-card:     #ffffff;
  --text-primary:#000000;
  --text-body:   #2c2c2c;
  --text-secondary: #444143;
  --text-muted:  #6c757d;
  --border:      #e4e4e4;
  --accent:      #38539a;
  --accent-hover:#4a65b0;

  /* Spacing */
  --sp-xs: 4px;
  --sp-sm: 8px;
  --sp-md: 12px;
  --sp-lg: 16px;
  --sp-xl: 24px;
  --sp-2xl: 32px;
  --sp-3xl: 48px;

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;

  /* Shadows */
  --shadow-sm:  0 1px 2px 0 rgba(0,0,0,0.05);
  --shadow-md:  0 4px 6px -1px rgba(0,0,0,0.1);
  --shadow-lg:  0 10px 15px -3px rgba(0,0,0,0.1);
  --shadow-card-hover: 0 2px 24px rgba(0,0,0,0.12);

  /* Transition */
  --tr-fast: 150ms ease;
  --tr-base: 200ms ease;
  --tr-slow: 300ms ease;
}

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

html {
  font-size: 16px;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text-body);
  overflow: hidden;
  width: 100vw;
  height: 100dvh;
}

h1, h2, h3, h4, h5, h6 { margin: 0; font-weight: 700; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
button {
  font-family: inherit; font-size: inherit; line-height: inherit;
  margin: 0; padding: 0; border: none; background: none;
  cursor: pointer; color: inherit;
}
img, svg { display: block; max-width: 100%; height: auto; }

/* ══════════════════════════════════════
   DECK / SLIDES
══════════════════════════════════════ */
#deck {
  position: relative;
  width: 100%;
  height: 100dvh;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
  transform: translateX(32px);
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  background: var(--bg);
}
.slide.active {
  opacity: 1;
  pointer-events: all;
  transform: translateX(0);
}
.slide.exit {
  opacity: 0;
  transform: translateX(-32px);
}

/* ══════════════════════════════════════
   HIDDEN LEGACY ELEMENTS
══════════════════════════════════════ */
.bg-grid { display: none; }

/* Top accent bar */
.slide-header-bar {
  position: sticky;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  flex-shrink: 0;
  z-index: 10;
}

/* ══════════════════════════════════════
   FIXED CHROME — Navigation & Controls
══════════════════════════════════════ */
#back-link {
  position: fixed;
  top: 20px; left: 20px;
  font-size: 13px; font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  z-index: 300;
  background: var(--white);
  padding: 6px 16px;
  border-radius: 9999px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: background .2s, color .2s;
}
#back-link:hover {
  background: var(--accent);
  color: var(--white);
}

#theme-toggle {
  display: none;
}

#counter {
  position: fixed;
  top: 20px; right: 20px;
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--text-muted);
  z-index: 300;
  background: var(--white);
  padding: 6px 16px;
  border-radius: 9999px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

#nav {
  position: fixed;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  display: flex; align-items: center; gap: 12px;
  z-index: 300;
  background: var(--white);
  padding: 8px 16px;
  border-radius: 9999px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.nav-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--accent);
  font-size: 18px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--tr-base);
  flex-shrink: 0;
}
.nav-btn:hover:not(:disabled) {
  background: var(--bg-surface);
  border-color: var(--accent);
  box-shadow: var(--shadow-sm);
}
.nav-btn:disabled { opacity: 0.3; cursor: default; }

#dots { display: flex; gap: 6px; align-items: center; }
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gray-400);
  transition: all var(--tr-slow);
  cursor: pointer;
}
.dot:hover { background: var(--gray-500); }
.dot.active {
  background: var(--accent);
  width: 24px;
  border-radius: 4px;
}

/* ══════════════════════════════════════
   SLIDE INNER — Shared
══════════════════════════════════════ */
.slide-inner {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* ══════════════════════════════════════
   COVER SLIDE
══════════════════════════════════════ */
#slide-cover {
  background: var(--accent);
}

#slide-cover .slide-header-bar {
  background: rgba(255,255,255,0.2);
}

#slide-cover .slide-inner {
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 100dvh;
  padding: 80px 32px 100px;
}

.cover-glow {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(120px);
  z-index: 0;
}
.cover-glow-1 {
  width: 500px; height: 500px;
  background: radial-gradient(rgba(255,255,255,0.15), transparent 70%);
  top: -150px; right: -100px;
}
.cover-glow-2 {
  width: 400px; height: 400px;
  background: radial-gradient(rgba(72,100,176,0.3), transparent 70%);
  bottom: -100px; left: -80px;
}

.cover-kicker {
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.7); font-weight: 700; margin-bottom: 20px;
  opacity: 0; animation: fadeUp 0.6s ease 0.2s forwards;
}
.cover-title {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(36px, 8vw, 96px);
  font-weight: 700; line-height: 1.1;
  color: #ffffff; margin-bottom: 16px;
  opacity: 0; animation: fadeUp 0.6s ease 0.35s forwards;
}
.cover-title span { color: rgba(255,255,255,0.85); font-weight: 400; }
.cover-sub {
  font-size: clamp(16px, 2.2vw, 24px); font-weight: 400;
  color: rgba(255,255,255,0.75); margin-bottom: 36px; line-height: 1.7;
  max-width: 560px;
  opacity: 0; animation: fadeUp 0.6s ease 0.5s forwards;
}
.cover-divider {
  width: 64px; height: 2px;
  background: rgba(255,255,255,0.3);
  margin: 0 auto 32px;
  border-radius: 1px;
  opacity: 0; animation: fadeIn 0.6s ease 0.65s forwards;
}
.cover-badges {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.6s ease 0.75s forwards;
}
.badge {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 20px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 9999px;
  font-size: 14px; font-weight: 700;
  letter-spacing: 0.04em;
  color: #ffffff;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
}
.badge-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.8); }
.badge-dot.white { background: #ffffff; }
.cover-tagline {
  position: absolute; bottom: 80px; left: 50%; transform: translateX(-50%);
  white-space: nowrap; font-size: 11px; letter-spacing: 0.12em;
  color: rgba(255,255,255,0.35);
  opacity: 0; animation: fadeIn 0.8s ease 1s forwards;
}

/* ══════════════════════════════════════
   OVERVIEW SLIDE
══════════════════════════════════════ */
#slide-overview .slide-inner { padding: 72px 40px 100px 72px; min-height: 100dvh; }

.slide-label {
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent); font-weight: 700; margin-bottom: 8px;
}
.slide-title {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(28px, 3.5vw, 56px); font-weight: 700;
  color: var(--text-primary); line-height: 1.15; margin-bottom: 12px;
}
.slide-intro {
  font-size: clamp(14px, 1.4vw, 18px); font-weight: 400;
  color: var(--text-secondary); max-width: 580px; line-height: 1.8; margin-bottom: 36px;
}

.overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.overview-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  cursor: default;
  transition: all var(--tr-slow);
  position: relative;
  overflow: hidden;
}
.overview-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  opacity: 0;
  transition: opacity var(--tr-slow);
}
.overview-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}
.overview-card:hover::before { opacity: 1; }

.ov-num {
  font-size: 11px; letter-spacing: 0.12em; color: var(--accent);
  font-weight: 700; margin-bottom: 8px;
}
.ov-icon { font-size: 28px; margin-bottom: 10px; display: block; }
.ov-title {
  font-size: 15px; font-weight: 700; color: var(--text-primary);
  margin-bottom: 6px; line-height: 1.3;
}
.ov-desc {
  font-size: 13px; font-weight: 400; color: var(--text-secondary);
  line-height: 1.7;
}

/* ══════════════════════════════════════
   CATEGORY SLIDES — Sidebar + Content
══════════════════════════════════════ */
.cat-slide .slide-inner { flex-direction: row; min-height: 100dvh; }

.cat-sidebar {
  width: 320px; min-width: 320px;
  background: var(--bg-surface);
  border-right: 1px solid var(--border);
  padding: 56px 36px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden; flex-shrink: 0;
}
.cat-sidebar::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 120px;
  background: linear-gradient(to top, rgba(56,83,154,0.04), transparent);
  pointer-events: none;
}
.cat-number {
  font-family: 'DM Sans', sans-serif; font-size: 120px; font-weight: 700;
  color: rgba(56,83,154,0.06); line-height: 1;
  position: absolute; bottom: 20px; left: 20px;
  pointer-events: none; user-select: none;
}
.cat-icon-large { font-size: 48px; margin-bottom: 20px; display: block; }
.cat-label {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent); font-weight: 700; margin-bottom: 8px;
}
.cat-title {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(22px, 2.2vw, 34px);
  font-weight: 700; color: var(--text-primary); line-height: 1.2; margin-bottom: 14px;
}
.cat-description {
  font-size: 14px; font-weight: 400; color: var(--text-secondary); line-height: 1.8;
}

.cat-content {
  flex: 1;
  padding: 56px 48px 100px;
  display: flex; flex-direction: column; justify-content: center;
}

/* ══════════════════════════════════════
   FEATURE ITEMS
══════════════════════════════════════ */
.features-grid { display: grid; gap: 12px; }
.features-1col { grid-template-columns: 1fr; }
.features-2col { grid-template-columns: 1fr 1fr; }

.feature-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 22px;
  display: flex; align-items: flex-start; gap: 16px;
  transition: all var(--tr-base);
  position: relative;
  overflow: hidden;
}
.feature-item::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 3px;
  background: var(--accent);
  opacity: 0;
  transition: opacity var(--tr-base);
}
.feature-item:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-card-hover);
}
.feature-item:hover::before { opacity: 1; }

.feature-icon { font-size: 24px; flex-shrink: 0; margin-top: 1px; }
.feature-text h4 {
  font-size: 15px; font-weight: 700; color: var(--text-primary);
  margin-bottom: 4px; line-height: 1.3;
}
.feature-text p {
  font-size: 14px; font-weight: 400; color: var(--text-secondary);
  line-height: 1.75;
}

/* ══════════════════════════════════════
   CLOSING SLIDE
══════════════════════════════════════ */
#slide-closing .slide-inner {
  justify-content: center; align-items: center; text-align: center;
  min-height: 100dvh; padding: 80px 28px 100px;
}
.closing-logos {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; margin-bottom: 28px;
}
.logo-text {
  font-size: 22px; font-weight: 700; letter-spacing: 0.02em;
}
.logo-text.ml { color: var(--accent); }
.logo-text.aw { color: var(--text-primary); }
.logo-sep { width: 1px; height: 28px; background: var(--border); }

.closing-title {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(32px, 5.5vw, 76px); font-weight: 700;
  color: var(--text-primary); margin-bottom: 16px; line-height: 1.15;
}
.closing-title span { color: var(--accent); }
.closing-sub {
  font-size: clamp(14px, 1.6vw, 20px); font-weight: 400;
  color: var(--text-secondary); max-width: 540px; line-height: 1.8;
  margin: 0 auto 40px;
}
.closing-steps {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px;
}
.step-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px 22px; width: 200px;
  text-align: left; transition: all var(--tr-slow);
  position: relative; overflow: hidden;
}
.step-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  opacity: 0;
  transition: opacity var(--tr-slow);
}
.step-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}
.step-card:hover::before { opacity: 1; }
.step-num {
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent); font-weight: 700; margin-bottom: 10px;
}
.step-icon { font-size: 26px; margin-bottom: 10px; display: block; }
.step-title {
  font-size: 15px; font-weight: 700; color: var(--text-primary); margin-bottom: 4px;
}
.step-desc {
  font-size: 13px; font-weight: 400; color: var(--text-secondary); line-height: 1.65;
}
.closing-contact { font-size: 14px; color: var(--text-muted); }
.closing-contact a {
  color: var(--accent); text-decoration: none; font-weight: 700;
  transition: color var(--tr-fast);
}
.closing-contact a:hover { color: var(--accent-hover); }

/* ══════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.slide.active .cat-sidebar  { animation: fadeUp 0.4s ease 0.0s both; }
.slide.active .cat-content  { animation: fadeUp 0.4s ease 0.08s both; }
.slide.active .slide-label  { animation: fadeUp 0.4s ease 0.0s both; }
.slide.active .slide-title  { animation: fadeUp 0.4s ease 0.08s both; }
.slide.active .slide-intro  { animation: fadeUp 0.4s ease 0.15s both; }
.slide.active .overview-grid { animation: fadeUp 0.4s ease 0.22s both; }
.slide.active .feature-item:nth-child(1) { animation: fadeUp 0.4s ease 0.12s both; }
.slide.active .feature-item:nth-child(2) { animation: fadeUp 0.4s ease 0.18s both; }
.slide.active .feature-item:nth-child(3) { animation: fadeUp 0.4s ease 0.24s both; }
.slide.active .feature-item:nth-child(4) { animation: fadeUp 0.4s ease 0.30s both; }
.slide.active .feature-item:nth-child(5) { animation: fadeUp 0.4s ease 0.36s both; }
.slide.active .closing-logos { animation: fadeUp 0.4s ease 0.08s both; }
.slide.active .closing-title { animation: fadeUp 0.4s ease 0.15s both; }
.slide.active .closing-sub   { animation: fadeUp 0.4s ease 0.22s both; }
.slide.active .closing-steps { animation: fadeUp 0.4s ease 0.28s both; }
.slide.active .closing-contact { animation: fadeUp 0.4s ease 0.34s both; }

/* ══════════════════════════════════════
   MOBILE — ≤768px
══════════════════════════════════════ */
@media (max-width: 768px) {
  html { font-size: 15px; }

  #nav { gap: 8px; padding: 6px 12px; bottom: 16px; }
  .nav-btn { width: 36px; height: 36px; font-size: 16px; }
  .dot { width: 6px; height: 6px; }
  .dot.active { width: 18px; }
  #counter { font-size: 12px; padding: 5px 12px; top: 16px; right: 14px; }

  #slide-cover .slide-inner { padding: 72px 24px 100px; }
  .cover-tagline { display: none; }

  #slide-overview .slide-inner { padding: 72px 20px 100px 24px; }
  .overview-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .overview-card { padding: 18px 16px; }

  /* Stack sidebar above content on mobile */
  .cat-slide .slide-inner { flex-direction: column; }
  .cat-sidebar {
    width: 100%; min-width: unset;
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 40px 24px 32px;
  }
  .cat-number { font-size: 80px; bottom: 8px; left: 16px; }
  .cat-icon-large { font-size: 36px; margin-bottom: 12px; }
  .cat-content { padding: 28px 20px 100px; }
  .features-2col { grid-template-columns: 1fr; }

  #slide-closing .slide-inner { padding: 64px 20px 100px; }
  .closing-steps { flex-direction: column; align-items: center; }
  .step-card { width: 100%; max-width: 320px; }
}

@media (max-width: 420px) {
  .overview-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════
   DESKTOP — ≥1024px
══════════════════════════════════════ */
@media (min-width: 1024px) {
  .cat-sidebar {
    width: 340px; min-width: 340px;
    padding: 64px 40px;
  }
}

/* ══════════════════════════════════════
   DESKTOP — ≥1440px (Presentation)
══════════════════════════════════════ */
@media (min-width: 1440px) {
  /* Typography scale-up */
  .cat-description  { font-size: 16px; }
  .feature-text h4  { font-size: 18px; }
  .feature-text p   { font-size: 16px; }
  .ov-title         { font-size: 17px; }
  .ov-desc          { font-size: 15px; }
  .badge            { font-size: 16px; }
  .step-title       { font-size: 17px; }
  .step-desc        { font-size: 15px; }
  .closing-contact  { font-size: 16px; }
  .cover-kicker     { font-size: 13px; }

  /* Labels */
  .slide-label      { font-size: 13px; }
  .cat-label        { font-size: 13px; }
  .ov-num           { font-size: 12px; }
  .step-num         { font-size: 11px; }

  /* Icons */
  .ov-icon          { font-size: 36px; }
  .cat-icon-large   { font-size: 60px; }
  .feature-icon     { font-size: 30px; }
  .step-icon        { font-size: 34px; }

  /* Sidebar */
  .cat-sidebar      { width: 370px; min-width: 370px; padding: 68px 44px; }
  .cat-number       { font-size: 150px; }

  /* Spacing */
  #slide-overview .slide-inner { padding: 80px 56px 120px 80px; }
  .overview-grid    { gap: 18px; }
  .overview-card    { padding: 30px 26px; }
  .cat-content      { padding: 72px 60px 120px; }
  .features-grid    { gap: 16px; }
  .feature-item     { padding: 24px 26px; gap: 18px; }
  .closing-steps    { gap: 20px; }
  .step-card        { padding: 28px 24px; width: 220px; }

  /* Nav */
  .nav-btn          { width: 44px; height: 44px; font-size: 20px; }
  .dot              { width: 9px; height: 9px; }
  .dot.active       { width: 28px; }
  #counter          { font-size: 14px; padding: 7px 18px; }

  /* Max-widths */
  .slide-intro      { max-width: 680px; }
  .closing-sub      { max-width: 640px; }

  /* Cover */
  .cover-divider    { width: 80px; }
  .logo-text        { font-size: 26px; }
  .logo-sep         { height: 34px; }
}

/* ══════════════════════════════════════
   LARGE DISPLAY — ≥1920px (Projection)
══════════════════════════════════════ */
@media (min-width: 1920px) {
  /* Typography */
  .cat-description  { font-size: 18px; }
  .feature-text h4  { font-size: 20px; }
  .feature-text p   { font-size: 18px; }
  .ov-title         { font-size: 20px; }
  .ov-desc          { font-size: 17px; }
  .badge            { font-size: 18px; padding: 12px 24px; }
  .step-title       { font-size: 20px; }
  .step-desc        { font-size: 17px; }
  .closing-contact  { font-size: 18px; }
  .cover-kicker     { font-size: 14px; }

  .slide-label      { font-size: 14px; }
  .cat-label        { font-size: 14px; }
  .ov-num           { font-size: 14px; }
  .step-num         { font-size: 12px; }

  .ov-icon          { font-size: 44px; }
  .cat-icon-large   { font-size: 72px; }
  .feature-icon     { font-size: 36px; }
  .step-icon        { font-size: 40px; }

  /* Content cap */
  .slide-inner      { max-width: 1800px; margin: 0 auto; }

  .cat-sidebar      { width: 420px; min-width: 420px; padding: 76px 52px; }
  .cat-number       { font-size: 180px; }

  #slide-overview .slide-inner { padding: 100px 72px 140px 96px; }
  .overview-grid    { gap: 24px; }
  .overview-card    { padding: 36px 32px; }
  .cat-content      { padding: 88px 80px 140px; }
  .features-grid    { gap: 20px; }
  .feature-item     { padding: 28px 32px; gap: 22px; }
  .closing-steps    { gap: 28px; }
  .step-card        { padding: 32px 28px; width: 260px; }

  .nav-btn          { width: 50px; height: 50px; font-size: 22px; }
  .dot              { width: 10px; height: 10px; }
  .dot.active       { width: 30px; }
  #counter          { font-size: 16px; padding: 8px 20px; }

  .slide-intro      { max-width: 800px; }
  .closing-sub      { max-width: 740px; }

  .cover-divider    { width: 100px; }
  .logo-text        { font-size: 30px; }
  .logo-sep         { height: 40px; }
}
