.info-content {
  height: calc(var(--app-height, 100dvh) - var(--topbar-height, 64px));
  overflow-y: auto;
  overflow-x: hidden;
  padding: 18px 16px 32px;
  box-sizing: border-box;
  max-width: 600px;
  margin: 0 auto;
  width: 100%;
  -webkit-overflow-scrolling: touch;
}

@supports (padding-bottom: env(safe-area-inset-bottom)) {
  .info-content {
    padding-bottom: calc(32px + env(safe-area-inset-bottom));
  }
}

.info-content > * + * {
  margin-top: 12px;
}

.info-section {
  margin-bottom: 0;
}

.info-term,
.info-block,
.license-card {
  background-color: var(--md-sys-color-surface-container-low);
  border-radius: 24px;
  border: 1px solid color-mix(in srgb, var(--md-sys-color-outline-variant) 62%, transparent);
}

.info-term {
  padding: 18px;
}

.info-term__number,
.info-block__title {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--md-sys-color-primary);
  margin-bottom: 8px;
}

.info-term__title {
  font-size: 16px;
  font-weight: 600;
  color: var(--md-sys-color-on-surface);
  line-height: 1.3;
  margin-bottom: 8px;
}

.info-term__body,
.info-block__body {
  font-size: 14px;
  color: var(--md-sys-color-on-surface-variant);
  line-height: 1.65;
}

.about-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px 20px 22px;
  gap: 12px;
  background-color: var(--md-sys-color-surface-container-low);
  border-radius: 28px;
  border: 1px solid color-mix(in srgb, var(--md-sys-color-outline-variant) 62%, transparent);
}

.about-hero__logo,
.about-hero__logo-fallback {
  width: 88px;
  height: 88px;
  border-radius: 24px;
}

.about-hero__logo {
  object-fit: cover;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.about-hero__logo-fallback {
  background: var(--md-sys-color-primary-container);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-hero__logo-fallback .material-symbols-rounded {
  font-size: 42px;
  color: var(--md-sys-color-primary);
}

.about-hero__name {
  font-size: 24px;
  font-weight: 600;
  color: var(--md-sys-color-on-surface);
  line-height: 1.2;
}

.about-hero__version {
  font-size: 13px;
  color: var(--md-sys-color-on-surface-variant);
  background: var(--md-sys-color-surface-container);
  padding: 5px 14px;
  border-radius: var(--radius-full);
}

.info-block {
  padding: 18px;
}

.info-block__steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.info-block__steps li {
  font-size: 14px;
  color: var(--md-sys-color-on-surface-variant);
  line-height: 1.55;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.info-block__step-num {
  min-width: 24px;
  height: 24px;
  border-radius: var(--radius-full);
  background: var(--md-sys-color-primary-container);
  color: var(--md-sys-color-primary);
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.license-card {
  padding: 16px 18px;
}

.license-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.license-card__name {
  font-size: 15px;
  font-weight: 600;
  color: var(--md-sys-color-on-surface);
  line-height: 1.35;
}

.license-card__badge {
  font-size: 11px;
  font-weight: 500;
  color: var(--md-sys-color-on-primary-container);
  background: var(--md-sys-color-primary-container);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  flex-shrink: 0;
}

.license-card__desc {
  font-size: 13px;
  color: var(--md-sys-color-on-surface-variant);
  line-height: 1.55;
  margin-bottom: 6px;
}

.license-card__url {
  font-size: 12px;
  color: var(--md-sys-color-primary);
  font-family: "Roboto Mono", monospace;
  word-break: break-all;
  line-height: 1.45;
}

@media (max-width: 420px) {
  .info-content {
    padding: 16px 12px 24px;
  }

  .about-hero {
    border-radius: 24px;
    padding: 24px 18px 20px;
  }

  .about-hero__logo,
  .about-hero__logo-fallback {
    width: 80px;
    height: 80px;
    border-radius: 22px;
  }

  .info-term,
  .info-block,
  .license-card {
    border-radius: 20px;
  }

  .license-card__header {
    flex-direction: column;
    align-items: flex-start;
  }
}
