* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Manrope", sans-serif;
  background: #eef2f7;
  color: #0f172a;
  line-height: 1.55;
}
.hero {
  background:
    linear-gradient(
      135deg,
      #0a1628 0%,
      #13314f 60%,
      #0c4a6e 100%);
  color: #fff;
  padding: calc(42px + env(safe-area-inset-top)) 20px 42px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -15%;
  width: 500px;
  height: 500px;
  background:
    radial-gradient(
      circle,
      rgba(231, 76, 60, .18) 0%,
      transparent 65%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto;
}
.hero .badge {
  display: inline-block;
  background: rgba(231, 76, 60, .18);
  border: 1.5px solid #e74c3c;
  padding: 5px 16px;
  border-radius: 24px;
  font-size: .74em;
  font-weight: 700;
  color: #fca5a5;
  margin-bottom: 14px;
  letter-spacing: .8px;
  text-transform: uppercase;
}
.hero .version-badge {
  display: inline-block;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .15);
  padding: 3px 10px;
  border-radius: 20px;
  font-size: .6em;
  font-weight: 600;
  color: rgba(255, 255, 255, .5);
  margin-left: 8px;
  font-family: "JetBrains Mono", monospace;
  letter-spacing: 0;
  vertical-align: middle;
}
.hero h1 {
  font-size: 2.4em;
  font-weight: 800;
  margin-bottom: 6px;
  letter-spacing: -1.2px;
}
.hero p {
  opacity: .72;
  font-size: 1em;
}
.persp {
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
  padding: 12px 20px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  font-size: .83em;
  color: #475569;
  flex-wrap: wrap;
}
.persp svg {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
}
.persp strong {
  color: #e74c3c;
  font-weight: 800;
}
.tabs {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 14px;
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 8px rgba(0, 0, 0, .04);
  flex-wrap: wrap;
}
.tab {
  padding: 9px 18px;
  border: 2px solid #cbd5e1;
  background: #fff;
  border-radius: 24px;
  cursor: pointer;
  font-family: inherit;
  font-weight: 700;
  font-size: .8em;
  color: #475569;
  transition: all .2s;
}
.tab:hover {
  border-color: #0f172a;
  color: #0f172a;
}
.tab.active {
  background: #0f172a;
  border-color: #0f172a;
  color: #fff;
}
.tab.priority.active {
  background: #e74c3c;
  border-color: #e74c3c;
}
.tab.priority {
  border-color: #e74c3c;
  color: #e74c3c;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 28px 16px;
}
.section {
  display: none;
}
.section.active {
  display: block;
}
.exercise {
  background: #fff;
  border-radius: 18px;
  margin-bottom: 30px;
  overflow: hidden;
  box-shadow: 0 6px 28px rgba(15, 23, 42, .07);
}
.ex-header {
  padding: 20px 26px;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.ex-header.blue {
  background:
    linear-gradient(
      135deg,
      #13314f,
      #0c4a6e);
}
.ex-header.red {
  background:
    linear-gradient(
      135deg,
      #dc2626,
      #7f1d1d);
}
.ex-titleblock {
  flex: 1;
  min-width: 230px;
}
.ex-num {
  font-family: "JetBrains Mono", monospace;
  font-size: .72em;
  opacity: .7;
  margin-bottom: 3px;
  letter-spacing: 1px;
}
.ex-title {
  font-size: 1.32em;
  font-weight: 800;
  line-height: 1.18;
}
.ex-meta {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.ex-meta span {
  padding: 4px 11px;
  background: rgba(255, 255, 255, .18);
  border-radius: 20px;
  font-size: .74em;
  font-weight: 600;
  backdrop-filter: blur(8px);
}
.main-anim {
  padding: 28px;
  background:
    linear-gradient(
      180deg,
      #fafbfc 0%,
      #f1f5f9 100%);
  border-bottom: 1px solid #e2e8f0;
  position: relative;
}
.main-anim-title {
  font-size: .74em;
  font-family: "JetBrains Mono", monospace;
  font-weight: 600;
  color: #94a3b8;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 10px;
}
.main-anim-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 340px;
  position: relative;
}
.main-anim-wrap svg {
  width: 100%;
  max-width: 640px;
  height: auto;
}
.anim-controls {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 14px;
  align-items: center;
}
.play-btn {
  background: #13314f;
  color: #fff;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1em;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(19, 49, 79, .3);
  transition: all .2s;
}
.play-btn:hover {
  transform: scale(1.08);
  background: #0f172a;
}
.play-btn.priority {
  background: #dc2626;
  box-shadow: 0 4px 12px rgba(220, 38, 38, .3);
}
.phase-indicator {
  font-size: .78em;
  font-family: "JetBrains Mono", monospace;
  color: #475569;
  font-weight: 600;
}
.storyboard {
  padding: 24px 26px;
  background: #fff;
  border-bottom: 1px solid #f1f5f9;
}
.sb-title {
  font-size: .9em;
  color: #13314f;
  font-weight: 800;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.sb-title::before {
  content: "\1f3ac";
}
.sb-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 780px) {
  .sb-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.sb-frame {
  background: #fafbfc;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: 12px;
  position: relative;
}
.sb-frame.start {
  border-color: #94a3b8;
}
.sb-frame.end {
  border-color: #e74c3c;
}
.sb-frame-tag {
  position: absolute;
  top: -9px;
  left: 12px;
  padding: 2px 9px;
  border-radius: 12px;
  font-size: .62em;
  font-weight: 800;
  letter-spacing: .5px;
  background: #94a3b8;
  color: #fff;
}
.sb-frame.start .sb-frame-tag {
  background: #475569;
}
.sb-frame.end .sb-frame-tag {
  background: #e74c3c;
}
.sb-frame svg {
  width: 100%;
  height: auto;
  display: block;
}
.sb-caption {
  font-size: .72em;
  color: #475569;
  text-align: center;
  margin-top: 6px;
  line-height: 1.35;
}
.instructions {
  padding: 26px;
}
.instructions h3 {
  font-size: 1.05em;
  margin-bottom: 16px;
  color: #0f172a;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
}
.instructions h3::before {
  content: "\1f4cb";
}
.steps {
  display: grid;
  gap: 10px;
}
.step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 14px;
  background: #fafbfc;
  border-radius: 10px;
  border-left: 4px solid #13314f;
}
.step.red {
  border-left-color: #e74c3c;
}
.step-num {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: #13314f;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: .82em;
  font-family: "JetBrains Mono", monospace;
}
.step.red .step-num {
  background: #e74c3c;
}
.step-content h4 {
  font-size: .93em;
  margin-bottom: 2px;
  font-weight: 700;
}
.step-content p {
  font-size: .85em;
  color: #475569;
  line-height: 1.5;
}
.step-content strong {
  color: #dc2626;
  font-weight: 700;
}
.mistakes {
  padding: 20px 26px;
  background: #fef2f2;
  border-top: 1px solid #fee2e2;
}
.mistakes h3 {
  font-size: .9em;
  color: #b91c1c;
  margin-bottom: 10px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 6px;
}
.mistakes h3::before {
  content: "\26a0\fe0f";
}
.mistake-list {
  display: grid;
  gap: 5px;
}
.mistake {
  font-size: .82em;
  color: #7f1d1d;
  padding: 7px 11px;
  background: #fff;
  border-radius: 7px;
  border-left: 3px solid #dc2626;
  display: flex;
  align-items: center;
  gap: 7px;
}
.mistake::before {
  content: "\2717";
  color: #dc2626;
  font-weight: 800;
  font-size: 1.05em;
}
.reps {
  background:
    linear-gradient(
      135deg,
      #13314f,
      #0c4a6e);
  color: #fff;
  padding: 18px 26px;
}
.reps.red {
  background:
    linear-gradient(
      135deg,
      #dc2626,
      #7f1d1d);
}
.reps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 10px;
}
.rep-stat {
  text-align: center;
  padding: 6px;
}
.rep-stat .value {
  font-size: 1.4em;
  font-weight: 800;
  font-family: "JetBrains Mono", monospace;
  letter-spacing: -.5px;
}
.rep-stat .label {
  font-size: .66em;
  opacity: .78;
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-top: 2px;
}
.compass {
  font-size: 9px;
  font-family: "JetBrains Mono", monospace;
  font-weight: 600;
  fill: #94a3b8;
}
.compass-bold {
  font-size: 10px;
  font-family: "JetBrains Mono", monospace;
  font-weight: 800;
  fill: #e74c3c;
}
.tracker-header {
  background:
    linear-gradient(
      135deg,
      #0a1628,
      #13314f);
  color: #fff;
  padding: 24px 26px;
  border-radius: 18px 18px 0 0;
}
.tracker-header h2 {
  font-size: 1.3em;
  font-weight: 800;
  margin-bottom: 4px;
}
.tracker-header p {
  font-size: .82em;
  opacity: .7;
}
.tracker-card {
  background: #fff;
  border-radius: 18px;
  margin-bottom: 20px;
  overflow: hidden;
  box-shadow: 0 6px 28px rgba(15, 23, 42, .07);
}
.tracker-week {
  display: flex;
  gap: 8px;
  padding: 16px 20px;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  justify-content: center;
  flex-wrap: wrap;
}
.week-dot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: .65em;
  font-weight: 700;
  color: #94a3b8;
  font-family: "JetBrains Mono", monospace;
}
.week-dot .dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #e2e8f0;
  border: 2px solid #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1em;
  transition: all .3s;
}
.week-dot.done .dot {
  background: #16a34a;
  border-color: #15803d;
  color: #fff;
}
.week-dot.today .dot {
  border-color: #0f172a;
  border-width: 3px;
}
.week-dot.today {
  color: #0f172a;
}
.tracker-streak-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 14px 20px;
  background: #0f172a;
  color: #fff;
  font-size: .88em;
}
.streak-number {
  font-size: 2em;
  font-weight: 800;
  font-family: "JetBrains Mono", monospace;
  color: #f59e0b;
}
.tracker-ex-list {
  padding: 0;
}
.tracker-ex {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  border-bottom: 1px solid #f1f5f9;
  cursor: pointer;
  transition: background .15s;
  user-select: none;
}
.tracker-ex:hover {
  background: #f8fafc;
}
.tracker-ex:last-child {
  border-bottom: none;
}
.tracker-ex.done-ex {
  background: #f0fdf4;
}
.tracker-ex.done-ex:hover {
  background: #dcfce7;
}
.tracker-check {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  border: 2.5px solid #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1em;
  transition: all .2s;
  background: #fff;
}
.tracker-ex.done-ex .tracker-check {
  background: #16a34a;
  border-color: #16a34a;
  color: #fff;
}
.tracker-ex-info {
  flex: 1;
}
.tracker-ex-name {
  font-weight: 700;
  font-size: .9em;
  color: #0f172a;
}
.tracker-ex-detail {
  font-size: .76em;
  color: #64748b;
  margin-top: 1px;
}
.tracker-ex-time {
  font-size: .78em;
  font-family: "JetBrains Mono", monospace;
  color: #16a34a;
  font-weight: 700;
  min-width: 48px;
  text-align: right;
}
.tracker-banner {
  margin: 16px 20px;
  padding: 14px 18px;
  background: #f0fdf4;
  border: 2px solid #16a34a;
  border-radius: 12px;
  text-align: center;
  display: none;
}
.tracker-banner.visible {
  display: block;
}
.tracker-banner strong {
  color: #15803d;
  font-size: 1.05em;
}
.tracker-banner p {
  font-size: .82em;
  color: #166534;
  margin-top: 3px;
}
.tracker-controls {
  display: flex;
  gap: 10px;
  padding: 16px 20px;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  flex-wrap: wrap;
}
.tracker-btn {
  flex: 1;
  min-width: 120px;
  padding: 10px 16px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-family: inherit;
  font-weight: 700;
  font-size: .82em;
  transition: all .2s;
}
.tracker-btn-notif {
  background: #0f172a;
  color: #fff;
}
.tracker-btn-notif:hover {
  background: #1e293b;
}
.tracker-btn-notif.granted {
  background: #16a34a;
}
.tracker-btn-reset {
  background: #fef2f2;
  color: #dc2626;
  border: 1.5px solid #fecaca;
}
.tracker-btn-reset:hover {
  background: #fee2e2;
}
.tab-badge {
  display: inline-block;
  background: #64748b;
  color: #fff;
  border-radius: 20px;
  padding: 1px 7px;
  font-size: .68em;
  font-weight: 800;
  margin-left: 5px;
  vertical-align: middle;
  line-height: 1.4;
}
.tab-badge.complete {
  background: #16a34a;
}
.tab-badge.partial {
  background: #e74c3c;
}
@keyframes effortPulse {
  0%, 100% {
    opacity: .3;
    transform: scale(1);
  }
  50% {
    opacity: .6;
    transform: scale(1.15);
  }
}
.effort-glow {
  transform-origin: center;
  animation: effortPulse 1.4s ease-in-out infinite;
}
.routine-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  min-width: 540px;
}
.routine-table th {
  background: #13314f;
  color: #fff;
  padding: 12px 14px;
  text-align: left;
  font-size: .82em;
}
.routine-table td {
  padding: 11px 14px;
  border-bottom: 1px solid #f1f5f9;
  font-size: .86em;
}
.routine-table tr:nth-child(even) {
  background: #fafbfc;
}
.start-workout-wrap {
  padding: 20px 26px;
  background:
    linear-gradient(
      180deg,
      #f8fafc,
      #eef2f7);
  border-top: 1px solid #e2e8f0;
  display: flex;
  justify-content: center;
}
.start-workout-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 32px;
  background:
    linear-gradient(
      135deg,
      #0f172a,
      #1e3a5f);
  color: #fff;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-family: inherit;
  font-weight: 800;
  font-size: 1em;
  letter-spacing: .3px;
  box-shadow: 0 6px 24px rgba(15, 23, 42, .25);
  transition: all .22s;
  position: relative;
  overflow: hidden;
}
.start-workout-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, .08),
      transparent);
  pointer-events: none;
}
.start-workout-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(15, 23, 42, .35);
}
.start-workout-btn:active {
  transform: translateY(0);
}
.start-workout-btn.red-btn {
  background:
    linear-gradient(
      135deg,
      #dc2626,
      #7f1d1d);
  box-shadow: 0 6px 24px rgba(220, 38, 38, .3);
}
.start-workout-btn.red-btn:hover {
  box-shadow: 0 10px 32px rgba(220, 38, 38, .45);
}
.swb-icon {
  font-size: 1.3em;
  line-height: 1;
}
.swb-text {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.2;
}
.swb-text span:first-child {
  font-size: 1em;
  font-weight: 800;
}
.swb-text span:last-child {
  font-size: .72em;
  opacity: .78;
  font-weight: 600;
}
.workout-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 10, 20, .94);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.workout-overlay.active {
  display: flex;
}
.workout-modal {
  background: #0f172a;
  color: #fff;
  border-radius: 28px;
  padding: 36px 32px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  box-shadow: 0 32px 80px rgba(0, 0, 0, .8);
  position: relative;
  border: 1px solid rgba(255, 255, 255, .08);
}
.wm-close {
  position: absolute;
  top: 16px;
  right: 18px;
  background: rgba(255, 255, 255, .1);
  border: none;
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2em;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.wm-close:hover {
  background: rgba(255, 255, 255, .2);
}
.wm-title {
  font-size: .78em;
  font-family: "JetBrains Mono", monospace;
  color: #64748b;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.wm-exname {
  font-size: 1.2em;
  font-weight: 800;
  margin-bottom: 24px;
  color: #fff;
  line-height: 1.2;
}
.wm-ring-wrap {
  position: relative;
  width: 180px;
  height: 180px;
  margin: 0 auto 20px;
}
.wm-ring-svg {
  transform: rotate(-90deg);
}
.wm-ring-bg {
  fill: none;
  stroke: rgba(255, 255, 255, .1);
  stroke-width: 10;
}
.wm-ring-fg {
  fill: none;
  stroke-width: 10;
  stroke-linecap: round;
  transition: stroke-dashoffset .2s linear, stroke .4s;
}
.wm-ring-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.wm-countdown {
  font-size: 3.2em;
  font-weight: 800;
  font-family: "JetBrains Mono", monospace;
  line-height: 1;
  letter-spacing: -2px;
}
.wm-countdown-label {
  font-size: .7em;
  opacity: .6;
  margin-top: 2px;
  font-weight: 600;
}
.wm-phase {
  font-size: 1.4em;
  font-weight: 800;
  margin-bottom: 6px;
  letter-spacing: -.3px;
  min-height: 2em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wm-phase-sub {
  font-size: .82em;
  color: #94a3b8;
  margin-bottom: 20px;
  min-height: 2.4em;
  line-height: 1.4;
  padding: 0 10px;
}
.wm-progress-row {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 20px;
}
.wm-prog-stat {
  text-align: center;
}
.wm-prog-stat .val {
  font-size: 1.6em;
  font-weight: 800;
  font-family: "JetBrains Mono", monospace;
}
.wm-prog-stat .lbl {
  font-size: .65em;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: .6px;
  margin-top: 1px;
}
.wm-controls {
  display: flex;
  gap: 10px;
  justify-content: center;
}
.wm-btn {
  padding: 12px 26px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-family: inherit;
  font-weight: 800;
  font-size: .9em;
  transition: all .2s;
}
.wm-btn-pause {
  background: rgba(255, 255, 255, .12);
  color: #fff;
}
.wm-btn-pause:hover {
  background: rgba(255, 255, 255, .2);
}
.wm-btn-stop {
  background: rgba(220, 38, 38, .25);
  color: #fca5a5;
  border: 1.5px solid rgba(220, 38, 38, .4);
}
.wm-btn-stop:hover {
  background: rgba(220, 38, 38, .4);
}
.wm-done {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 0;
}
.wm-done-icon {
  font-size: 3.5em;
}
.wm-done h3 {
  font-size: 1.6em;
  font-weight: 800;
}
.wm-done p {
  color: #94a3b8;
  font-size: .88em;
}
.wm-done-close {
  margin-top: 12px;
  padding: 12px 32px;
  background:
    linear-gradient(
      135deg,
      #16a34a,
      #166534);
  border: none;
  color: #fff;
  border-radius: 50px;
  cursor: pointer;
  font-family: inherit;
  font-weight: 800;
  font-size: .95em;
}
.wm-voice {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #64748b;
  font-size: .75em;
  margin-top: 12px;
}
.wm-voice-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #64748b;
}
.wm-voice.speaking .wm-voice-dot {
  background: #22c55e;
  animation: voicePulse .6s ease-in-out infinite alternate;
}
@keyframes voicePulse {
  from {
    transform: scale(1);
    opacity: .7;
  }
  to {
    transform: scale(1.5);
    opacity: 1;
  }
}
.figviews {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 6px 0;
}
.figtoggle {
  display: inline-flex;
  gap: 5px;
  background: #e9eef5;
  padding: 5px;
  border-radius: 13px;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, .06);
}
.figtab {
  border: none;
  background: transparent;
  font-family: "JetBrains Mono", monospace;
  font-weight: 600;
  font-size: .82em;
  color: #64748b;
  padding: 8px 18px;
  border-radius: 9px;
  cursor: pointer;
  transition: all .15s;
}
.figtab:hover {
  color: #0f172a;
}
.figtab.active {
  background: #fff;
  color: #0f172a;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .14);
}
.figstage {
  width: 100%;
  display: flex;
  justify-content: center;
}
.figsvg {
  width: 100%;
  max-width: 560px;
  height: auto;
  display: block;
}
