html {
  overflow-y: scroll;
  scrollbar-gutter: stable;
}

.sasu-page {
  max-width: 600px;
  margin: 0 auto;
  font-family: 'Verdana', 'Geneva', sans-serif;
  font-size: 10pt;
  line-height: 1.5em;
  color: black;
}

.sasu-page h1 {
  margin: 0;
  font-size: 18pt;
  line-height: 1.2em;
}

.sasu-page h2 {
  margin: 0;
  padding-bottom: 5pt;
  font-size: 10pt;
}

.sasu-page h3 {
  margin: 0;
  padding-top: 2pt;
  padding-bottom: 2pt;
  font-size: 10pt;
}

.sasu-page ul {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 2pt;
}

.language-switcher {
  display: flex;
  justify-content: flex-end;
  padding-bottom: 8pt;
  font-size: 9pt;
}

.language-switcher button {
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid #aaa;
  border-radius: 4px;
  background: white;
  padding: 2pt 6pt;
  font: inherit;
  cursor: pointer;
  box-shadow: none;
}

.sasu-hero,
.sasu-section {
  padding-bottom: 8pt;
}

.sasu-hero-header {
  display: flex;
  align-items: center;
  gap: 10pt;
}

.sasu-icon {
  width: 56px;
  height: 56px;
}

.sasu-subtitle {
  padding-top: 2pt;
  font-weight: bold;
}

.sasu-tagline {
  padding-top: 6pt;
  padding-bottom: 6pt;
  font-size: 11pt;
}

.sasu-demo {
  padding-bottom: 8pt;
  text-align: center;
  max-width: 380px;
  margin: 0 auto;
}

.sasu-demo-label {
  margin: 0 0 6px;
  font-size: 9pt;
  font-weight: bold;
  color: #555;
}

.sasu-demo-window {
  overflow: hidden;
  border-radius: 10px;
  background: #fff;
  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.12),
    0 0 0 1px rgba(0, 0, 0, 0.07);
  text-align: left;
}

.sasu-demo-titlebar {
  display: flex;
  align-items: center;
  padding: 10px 12px 8px;
  background: linear-gradient(180deg, #ececec 0%, #dedede 100%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.sasu-demo-traffic {
  display: flex;
  align-items: center;
  gap: 7px;
}

.sasu-demo-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 0.5px solid rgba(0, 0, 0, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.sasu-demo-dot--close {
  background: #ff5f57;
}

.sasu-demo-dot--minimize {
  background: #febc2e;
}

.sasu-demo-dot--zoom {
  background: #28c840;
}

.sasu-demo-toolbar {
  padding: 8px 10px 10px;
  background: #f5f5f7;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.sasu-demo-url-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 24px;
  padding: 4px 12px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Helvetica Neue', system-ui, sans-serif;
  font-size: 11px;
  line-height: 1.2;
  color: #333;
}

.sasu-demo-content {
  background: #fafafa;
  padding: 14px 10px 18px;
}

.sasu-demo-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.sasu-demo-target {
  position: relative;
  width: 100%;
  padding: 12px;
}

.sasu-demo-button {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 12px 16px;
  border: none;
  border-radius: 999px;
  background: #1f6b42;
  color: #fff;
  font: inherit;
  font-size: 9pt;
  font-weight: bold;
  line-height: 1.3;
  cursor: default;
  text-align: left;
}

.sasu-demo-button-icon {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  font-size: 11px;
  line-height: 1;
}

.sasu-demo-button-text {
  flex: 1 1 auto;
  text-align: center;
}

.sasu-guidance-ring {
  position: absolute;
  inset: 0;
  border: 6px solid #006adb;
  border-radius: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.sasu-guidance-label {
  display: inline-block;
  background: #006adb;
  color: #fff;
  font-weight: bold;
  font-size: 10pt;
  line-height: 1.2;
  padding: 4pt 10pt;
  border-radius: 5px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.sasu-demo-stage.is-revealed .sasu-guidance-label,
.sasu-demo-stage.is-revealed .sasu-guidance-ring {
  opacity: 1;
  transform: translateY(0);
}

.sasu-demo-stage.is-revealed.is-tapped .sasu-guidance-label,
.sasu-demo-stage.is-revealed.is-tapped .sasu-guidance-ring {
  opacity: 0;
}

@media (prefers-reduced-motion: reduce) {
  .sasu-demo-stage.is-revealed .sasu-guidance-label {
    transform: none;
  }
}

.sasu-demo figcaption {
  padding: 5pt 6pt;
  margin: 0;
  font-size: 9pt;
}

.sasu-demo-caption {
  color: #444;
}

.download-link,
.download-link:visited {
  display: inline-block;
  border: 1px solid #000;
  border-radius: 4px;
  padding: 3pt 7pt;
  background: #000;
  color: #fff;
  text-decoration: none;
  transition: background 120ms ease, box-shadow 120ms ease;
}

.download-link:hover {
  background: #555;
  border-color: #555;
  color: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
}

html[data-theme="modern"] body.resume-page .download-link,
html[data-theme="modern"] body.resume-page .download-link:visited,
html[data-theme="modern"] body.resume-page .download-link:hover {
  color: #fff;
}

.download-version {
  padding-left: 3pt;
  font-size: 9pt;
}

.small-note {
  padding-top: 5pt;
  font-size: 9pt;
}

.home-link {
  padding-bottom: 8pt;
}
