/* TrichoScan FAST AI Online app layer
   Compact overrides for Pico CSS. Keep this file focused: layout, brand, switches,
   result widgets, analysis list and the two visual styles. */

:root {
  --app-radius: .5rem;
  --app-radius-sm: .35rem;
  --app-gap: .75rem;
  --app-brand-size: 2.25rem;
  --app-header-bg: color-mix(in srgb, var(--pico-background-color) 94%, transparent);
  --app-border: var(--pico-muted-border-color);
}

html[data-visual-style="asia"] {
  --app-radius: 1.05rem;
  --app-radius-sm: .8rem;
  --app-brand-size: 2.8rem;
  --app-rose: #b85a7a;
  --app-rose-hover: #97445f;
  --app-rose-soft: rgba(184, 90, 122, .14);
  --pico-primary: var(--app-rose);
  --pico-primary-background: var(--app-rose);
  --pico-primary-border: var(--app-rose);
  --pico-primary-underline: rgba(184, 90, 122, .48);
  --pico-primary-hover: var(--app-rose-hover);
  --pico-primary-hover-background: var(--app-rose-hover);
  --pico-primary-hover-border: var(--app-rose-hover);
  --pico-primary-hover-underline: var(--app-rose-hover);
  --pico-primary-focus: rgba(184, 90, 122, .28);
  --pico-primary-inverse: #fff;
  --pico-switch-checked-background-color: var(--app-rose);
  --pico-form-element-active-border-color: var(--app-rose);
  --pico-form-element-focus-color: rgba(184, 90, 122, .28);
  --pico-progress-color: var(--app-rose);
}

html[data-theme="light"][data-visual-style="asia"] {
  --pico-primary: var(--app-rose);
  --pico-primary-background: var(--app-rose);
  --pico-primary-border: var(--app-rose);
  --pico-primary-underline: rgba(184, 90, 122, .48);
  --pico-primary-hover: var(--app-rose-hover);
  --pico-primary-hover-background: var(--app-rose-hover);
  --pico-primary-hover-border: var(--app-rose-hover);
  --pico-primary-hover-underline: var(--app-rose-hover);
  --pico-primary-focus: rgba(184, 90, 122, .28);
  --pico-primary-inverse: #fff;

  --pico-switch-checked-background-color: var(--app-rose);
  --pico-form-element-active-border-color: var(--app-rose);
  --pico-form-element-focus-color: rgba(184, 90, 122, .28);
  --pico-progress-color: var(--app-rose);
}

html[data-theme="dark"][data-visual-style="asia"] {
  --app-rose: #d47799;
  --app-rose-hover: #e394b1;
  --app-rose-soft: rgba(212, 119, 153, .18);
  --pico-primary-background: #c96588;
  --pico-primary-inverse: #1f1218;
}

* { box-sizing: border-box; }

body { min-height: 100vh; }

img, svg, video, canvas { max-width: 100%; }
input, select, textarea, button { max-width: 100%; }
a, .notice, .card-panel, .hero { overflow-wrap: anywhere; }

main.container {
  padding-top: .45rem;
  padding-bottom: .9rem;
}

/* Header */
.site-header-shell {
  position: sticky;
  top: 0;
  z-index: 10;
  margin-bottom: .55rem;
  padding-block: 0;
  border-bottom: 1px solid color-mix(in srgb, var(--pico-primary) 18%, var(--app-border));
  background: var(--app-header-bg);
  backdrop-filter: blur(14px);
}

.site-header {
  padding-top: .25rem;
  padding-bottom: .2rem;
}

.main-nav,
.nav-actions,
.nav-links,
.nav-controls,
.brand,
.brand-copy { min-width: 0; }

.main-nav {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: .45rem 1rem;
  width: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  max-width: 100%;
  color: var(--pico-color);
  text-decoration: none;
}

.brand:hover,
.brand:focus { text-decoration: none; }

.brand-mark {
  display: inline-grid;
  place-items: center;
  flex: 0 0 var(--app-brand-size);
  width: var(--app-brand-size);
  height: var(--app-brand-size);
  border: 1px solid color-mix(in srgb, var(--pico-primary) 40%, var(--app-border));
  border-radius: var(--app-radius-sm);
  color: var(--pico-primary);
  background: radial-gradient(circle at 38% 30%, color-mix(in srgb, var(--pico-primary) 16%, transparent), transparent 50%), var(--pico-card-background-color);
}

html[data-visual-style="asia"] .brand-mark { border-radius: 999px; }

.brand-mark svg {
  width: 1.75rem;
  height: 1.75rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-hair { fill: color-mix(in srgb, currentColor 50%, transparent); }

.brand-copy {
  display: grid;
  gap: .05rem;
  line-height: 1.05;
  min-width: 0;
  max-width: 100%;
}

.brand-copy strong {
  display: block;
  max-width: 100%;
  color: var(--pico-primary);
  font-size: clamp(1.05rem, 3.2vw, 1.58rem);
  letter-spacing: -.035em;
  line-height: 1.05;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.brand-copy small {
  display: block;
  color: var(--pico-muted-color);
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: .35rem .85rem;
  max-width: 100%;
}

.nav-links,
.nav-controls {
  display: flex;
  align-items: center;
  gap: .35rem .65rem;
  min-width: 0;
}

.nav-links { flex-wrap: wrap; }
.nav-controls { flex-wrap: nowrap; }

.nav-actions a {
  display: inline-flex;
  align-items: center;
  min-height: 1.55rem;
  margin: 0;
  padding: .1rem .45rem;
  border-radius: 999px;
  color: var(--pico-primary);
  text-decoration: none;
  white-space: nowrap;
}

.nav-actions a:hover,
.nav-actions a:focus {
  color: var(--pico-primary);
  background: color-mix(in srgb, var(--pico-primary) 8%, transparent);
  text-decoration: none;
}

.nav-actions a:focus-visible {
  outline: 2px solid var(--pico-primary-focus);
  outline-offset: 2px;
}

.user-pill {
  display: inline-flex;
  align-items: center;
  min-height: 1.9rem;
  max-width: min(17rem, 100%);
  padding: 0 .65rem;
  overflow: hidden;
  border-radius: 999px;
  background: var(--pico-muted-border-color);
  color: var(--pico-muted-color);
  font-size: .86rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.subscription-account-button,
.nav-actions a.subscription-account-button {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 2.05rem;
  min-width: 2.05rem;
  height: 2.05rem;
  min-height: 2.05rem;
  margin: 0;
  padding: .08rem;
  border: 0;
  border-radius: 999px;
  color: var(--pico-primary);
  background: color-mix(in srgb, var(--pico-primary) 7%, transparent);
  text-decoration: none;
  box-shadow: none;
}
.subscription-account-button svg {
  width: 1.75rem;
  height: 1.75rem;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.subscription-account-button .subscription-icon-head { fill: color-mix(in srgb, currentColor 16%, transparent); }
.subscription-account-button:hover,
.subscription-account-button:focus,
.nav-actions a.subscription-account-button:hover,
.nav-actions a.subscription-account-button:focus {
  color: var(--pico-primary-hover);
  background: color-mix(in srgb, var(--pico-primary) 14%, transparent);
  text-decoration: none;
  transform: translateY(-1px);
}
.subscription-account-button:focus-visible { outline: 2px solid var(--pico-primary-focus); outline-offset: 2px; }
.subscription-account-button-large {
  width: 3.25rem;
  min-width: 3.25rem;
  height: 3.25rem;
  min-height: 3.25rem;
  padding: .12rem;
}
.subscription-account-button-large svg { width: 2.8rem; height: 2.8rem; }
.subscription-manage-action { display: flex; justify-content: flex-start; margin: .8rem 0 .25rem; }
html[data-visual-style="asia"] .subscription-account-button { background: var(--app-rose-soft); }

.language-select,
.theme-switch,
.visual-style-switch {
  margin: 0;
  min-width: 0;
}

.language-select select {
  width: auto;
  min-width: 7.8rem;
  margin: 0;
  padding-top: .25rem;
  padding-bottom: .25rem;
}

.theme-switch,
.visual-style-switch {
  display: inline-flex;
  align-items: center;
  gap: .32rem;
  min-height: 1.9rem;
  color: var(--pico-muted-color);
  white-space: nowrap;
  cursor: pointer;
  user-select: none;
}

.theme-switch input[role="switch"],
.visual-style-switch input[role="switch"] {
  flex: 0 0 auto;
  margin: 0;
}

.theme-symbol {
  width: .95rem;
  height: .95rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.style-symbol {
  display: inline-grid;
  place-items: center;
  width: 1.28rem;
  height: 1.1rem;
  color: var(--pico-muted-color);
}

.style-symbol svg {
  width: 1.28rem;
  height: .82rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

html[data-visual-style="classic"] .style-symbol-classic,
html[data-visual-style="asia"] .style-symbol-asia { color: var(--pico-primary); }

.switch-text {
  display: none;
  color: var(--pico-muted-color);
  font-size: .8rem;
  line-height: 1;
  white-space: nowrap;
}


/* Content blocks */
.hero,
.card-panel {
  margin-top: .75rem;
  padding: clamp(.9rem, 2vw, 1.25rem);
  border: 1px solid var(--app-border);
  border-radius: var(--app-radius);
  background: var(--pico-card-background-color);
  box-shadow: var(--pico-card-box-shadow);
}

.hero {
  display: grid;
  gap: .8rem;
  position: relative;
  overflow: hidden;
}

html[data-visual-style="asia"] .hero,
html[data-visual-style="asia"] .card-panel,
html[data-visual-style="asia"] .metric,
html[data-visual-style="asia"] .result-image-card img,
html[data-visual-style="asia"] .analysis-list-item { box-shadow: none; }

.card-panel > header,
.hero > div:first-child { margin-bottom: .5rem; }

.card-panel h1,
.hero h1 { margin-bottom: .45rem; }

.card-panel header p,
.hero p { margin-bottom: .6rem; }

.actions,
.list-header,
.analysis-list-title,
.analysis-list-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .45rem .75rem;
}

.list-header { justify-content: space-between; align-items: flex-start; }

.notice {
  margin: .65rem 0;
  padding: .65rem .8rem;
  border: 1px solid var(--app-border);
  border-radius: var(--app-radius-sm);
  background: var(--pico-code-background-color);
}

.notice.ok { border-color: color-mix(in srgb, var(--pico-ins-color) 35%, var(--app-border)); }
.notice.err { border-color: color-mix(in srgb, var(--pico-del-color) 35%, var(--app-border)); }

.muted,
.small { color: var(--pico-muted-color); }
.small { font-size: .9rem; }

/* Forms: reduce Pico's roomy vertical rhythm inside panels. */
.card-panel form { margin-top: .5rem; }
.card-panel label { margin-bottom: .55rem; }
.card-panel input,
.card-panel select,
.card-panel textarea { margin-bottom: .55rem; }
.card-panel button,
.card-panel [role="button"] { margin-bottom: .25rem; }


.form-field,
.password-field {
  display: block;
  margin-bottom: .55rem;
}

.form-field > label,
.password-field > label {
  display: block;
  margin-bottom: .25rem;
}

.form-field input {
  width: 100%;
  margin-bottom: 0;
}

.password-input-wrap {
  position: relative;
  display: block;
  width: 100%;
}

.password-input-wrap input {
  width: 100%;
  margin-bottom: 0;
  padding-right: 4.9rem;
}

.password-toggle {
  position: absolute;
  top: 50%;
  right: .35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: 3.65rem;
  max-width: 4.35rem;
  min-height: 0;
  height: calc(100% - .7rem);
  margin: 0 !important;
  padding: .15rem .45rem;
  transform: translateY(-50%);
  border: 1px solid color-mix(in srgb, var(--pico-primary) 22%, var(--app-border));
  border-radius: var(--app-radius-sm);
  background: color-mix(in srgb, var(--pico-primary) 7%, var(--pico-card-background-color));
  color: var(--pico-primary);
  font-size: .78rem;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  box-shadow: none;
}

.password-toggle:hover,
.password-toggle:focus {
  border-color: color-mix(in srgb, var(--pico-primary) 42%, var(--app-border));
  background: color-mix(in srgb, var(--pico-primary) 12%, var(--pico-card-background-color));
  color: var(--pico-primary);
}

.password-toggle:focus-visible {
  outline: 2px solid var(--pico-primary-focus);
  outline-offset: 2px;
}

.password-toggle[aria-pressed="true"] {
  background: color-mix(in srgb, var(--pico-primary) 18%, var(--pico-card-background-color));
}

/* Results */
.metrics-grid,
.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: .65rem;
}

.metric {
  padding: .75rem;
  border: 1px solid var(--app-border);
  border-radius: var(--app-radius-sm);
  background: var(--pico-background-color);
}

.metric b {
  display: block;
  margin-top: .2rem;
  font-size: 1.22rem;
  line-height: 1.15;
}

.result-image-card { margin: 0; }
.result-image-card header { padding-bottom: .5rem; }
.result-image-card img {
  width: 100%;
  border: 1px solid var(--app-border);
  border-radius: var(--app-radius-sm);
  background: var(--pico-background-color);
}

.progress-wrap {
  height: .55rem;
  overflow: hidden;
  border-radius: 999px;
  background: var(--pico-muted-border-color);
}

.progress-bar {
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: var(--pico-primary);
  transition: width .25s ease;
}

.result-comment {
  margin-top: .6rem;
  padding: .65rem .8rem;
  border: 1px solid var(--app-border);
  border-radius: var(--app-radius-sm);
  background: color-mix(in srgb, var(--pico-card-background-color) 86%, var(--pico-muted-border-color));
}

.result-comment p { margin: .25rem 0 0; }

.mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .86rem;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

/* Analysis history */
.analysis-list {
  display: grid;
  gap: .55rem;
}

.analysis-list-item {
  display: flex;
  justify-content: space-between;
  gap: .75rem;
  margin: 0;
  padding: .75rem;
  border: 1px solid var(--app-border);
  border-radius: var(--app-radius-sm);
  background: var(--pico-card-background-color);
}

.analysis-list-main { min-width: 0; }
.analysis-list-title { font-weight: 700; }
.analysis-list-meta {
  margin-top: .2rem;
  color: var(--pico-muted-color);
  font-size: .88rem;
}
.analysis-list-comment {
  margin: .4rem 0 0;
  color: var(--pico-muted-color);
}
.analysis-list-action { align-self: center; white-space: nowrap; }

.status-badge {
  display: inline-flex;
  align-items: center;
  min-height: 1.35rem;
  padding: .1rem .45rem;
  border: 1px solid var(--app-border);
  border-radius: 999px;
  color: var(--pico-muted-color);
  background: var(--pico-card-background-color);
  font-size: .76rem;
  line-height: 1;
}
.status-succeeded { border-color: rgba(40, 160, 90, .35); color: #1f7a45; }
.status-failed,
.status-analysis-error { border-color: rgba(200, 70, 70, .35); color: #b23b3b; }
.status-running,
.status-queued,
.status-created { border-color: color-mix(in srgb, var(--pico-primary) 40%, transparent); color: var(--pico-primary); }
[data-theme="dark"] .status-succeeded { color: #7bd99f; }
[data-theme="dark"] .status-failed,
[data-theme="dark"] .status-analysis-error { color: #ff9b9b; }

.site-footer-shell {
  margin-top: 2rem;
  border-top: 1px solid color-mix(in srgb, var(--pico-primary) 14%, var(--app-border));
  background:
    linear-gradient(
      180deg,
      transparent,
      color-mix(in srgb, var(--pico-primary) 3%, transparent)
    );
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: .45rem 1.25rem;
  align-items: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
  color: var(--pico-muted-color);
}

.footer-brand {
  display: grid;
  gap: .08rem;
  min-width: 0;
}

.footer-brand strong {
  color: var(--pico-color);
  font-size: .95rem;
  line-height: 1.1;
}

.footer-brand span,
.footer-copy {
  font-size: .76rem;
  line-height: 1.25;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: .25rem .35rem;
  flex-wrap: wrap;
  font-size: .78rem;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 1.55rem;
  padding: .1rem .45rem;
  border-radius: 999px;
  color: var(--pico-muted-color);
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus {
  color: var(--pico-primary);
  background: color-mix(in srgb, var(--pico-primary) 8%, transparent);
  text-decoration: none;
}

.footer-copy {
  grid-column: 1 / -1;
  opacity: .78;
}

@media (max-width: 640px) {
  .site-footer {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .footer-links a {
    padding-left: 0;
  }
}

.legal-page {
  max-width: 860px;
}

.legal-page h1 {
  margin-bottom: .7rem;
}

.legal-page h2 {
  margin-top: 1.6rem;
  margin-bottom: .45rem;
}

.legal-page p,
.legal-page li {
  line-height: 1.55;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.checkout-legal-note {
  margin-top: -.25rem;
  color: var(--pico-muted-color);
  font-size: .82rem;
  line-height: 1.45;
}


/* Narrow desktop/tablet header: avoid the awkward 2-column squeeze around 700 px. */
@media screen and (min-width: 641px) and (max-width: 760px) {
  .site-header {
    padding-top: .28rem;
    padding-bottom: .28rem;
  }

  .main-nav {
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: .32rem;
  }

  .brand {
    max-width: 100%;
  }

  .brand-copy strong {
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
  }

  .nav-actions {
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
    justify-content: stretch;
    gap: .22rem;
    width: 100%;
  }

  .nav-links,
  .nav-controls {
    width: 100%;
    justify-content: flex-start;
  }

  .nav-links {
    gap: .1rem .55rem;
  }

  .nav-controls {
    flex-wrap: wrap;
    gap: .2rem .7rem;
    margin-left: 0;
  }

  .nav-actions a,
  .user-pill {
    min-height: 1.55rem;
    padding: .02rem .2rem;
  }

  .language-select select {
    min-width: 7rem;
    padding-top: .14rem;
    padding-bottom: .14rem;
  }

  .switch-text {
    display: inline-block;
    font-size: .78rem;
    line-height: 1.2;
  }

  .theme-symbol,
  .style-symbol {
    display: none;
  }

  .theme-switch,
  .visual-style-switch {
    gap: .28rem;
    min-height: 1.55rem;
  }

  .theme-switch input[role="switch"],
  .visual-style-switch input[role="switch"] {
    margin: 0;
  }

  .site-footer {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .footer-links a {
    padding-left: 0;
  }
}

/* Responsive: compact, stacked header on phones. */
@media (max-width: 980px) {
  .main-nav {
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: .28rem;
  }

  .nav-actions {
    justify-content: space-between;
    align-items: center;
  }

  .nav-controls {
    margin-left: auto;
  }
}

/* Logged-in header: at Pico's 700/950/1200 px container widths the extra links
   would squeeze the brand into a tiny column. Keep it in two rows until
   the wide 1450 px container starts. */
@media screen and (min-width: 981px) and (max-width: 1535px) {
  .main-nav-authenticated {
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: .34rem;
  }

  .main-nav-authenticated .brand {
    justify-self: start;
    max-width: min(100%, 34rem);
  }

  .main-nav-authenticated .brand-copy strong {
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
  }

  .main-nav-authenticated .nav-actions {
    width: 100%;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: .3rem .8rem;
  }

  .main-nav-authenticated .nav-links {
    flex: 1 1 auto;
    min-width: 0;
  }

  .main-nav-authenticated .nav-controls {
    flex: 0 0 auto;
    margin-left: 0;
  }

  .main-nav-authenticated .user-pill {
    max-width: min(15rem, 38vw);
  }
}

@media (max-width: 640px) {
  :root { --app-brand-size: 1.85rem; --app-gap: .55rem; }

  main.container { padding-top: .25rem; }
  .site-header-shell { margin-bottom: .32rem; }
  .site-header {
    padding-top: .18rem;
    padding-bottom: .18rem;
  }

  .main-nav {
    gap: .24rem;
    line-height: 1.08;
  }

  .brand {
    align-items: center;
    gap: .38rem;
    min-height: 2rem;
  }

  .brand-mark {
    flex-basis: 1.85rem;
    width: 1.85rem;
    height: 1.85rem;
  }

  .brand-mark svg {
    width: 1.15rem;
    height: 1.15rem;
  }

  .brand-copy strong {
    font-size: clamp(.96rem, 3.8vw, 1.08rem);
    line-height: 1.02;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    overflow-wrap: normal;
  }

  .brand-copy small { display: none; }

  .nav-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: .22rem;
    width: 100%;
    justify-content: stretch;
    align-items: stretch;
    overflow: visible;
  }

  .nav-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .18rem .5rem;
    min-width: 0;
  }

  .nav-controls {
    display: grid;
    grid-template-columns: minmax(5.8rem, 1fr) max-content max-content;
    gap: .3rem;
    align-items: center;
    width: 100%;
    min-width: 0;
    margin-left: 0;
  }

  .nav-actions a,
  .user-pill,
  .language-select select {
    min-height: 1.45rem;
    font-size: .78rem;
    line-height: 1;
  }

  .nav-actions a.subscription-account-button {
    width: 1.8rem;
    min-width: 1.8rem;
    height: 1.8rem;
    min-height: 1.8rem;
    padding: .06rem;
  }
  .nav-actions a.subscription-account-button svg { width: 1.55rem; height: 1.55rem; }

  .nav-actions a {
    padding: .02rem .12rem;
    border-radius: 999px;
  }

  .user-pill {
    max-width: min(100%, 13rem);
    padding: 0 .55rem;
  }

  .language-select,
  .language-select select {
    width: 100%;
  }

  .language-select select {
    min-width: 0;
    max-width: none;
    height: 1.55rem;
    padding-top: .08rem;
    padding-bottom: .08rem;
    padding-left: .42rem;
    padding-right: 1.35rem;
  }

  .theme-switch,
  .visual-style-switch {
    justify-self: end;
    gap: .18rem;
    min-height: 1.45rem;
    padding: 0;
  }

  .switch-text {
    display: inline-block;
    font-size: .74rem;
    line-height: 1;
  }

  .theme-symbol,
  .style-symbol {
    display: none;
  }

  .theme-switch input[role="switch"],
  .visual-style-switch input[role="switch"] {
    margin: 0;
    font-size: .78rem;
  }

  .hero,
  .card-panel { margin-top: .45rem; padding: .75rem; }
  .actions { align-items: stretch; }
  .actions > a,
  .actions > button,
  .actions > [role="button"] { width: 100%; }
  .metrics-grid,
  .image-grid { grid-template-columns: 1fr; }
  .list-header,
  .analysis-list-item { flex-direction: column; align-items: stretch; }
  .analysis-list-title,
  .analysis-list-meta { min-width: 0; }
  .analysis-list-meta { gap: .18rem .45rem; }
  .analysis-list-action { align-self: flex-start; }
}

@media (max-width: 420px) {
  :root { --app-brand-size: 1.65rem; }

  .site-header {
    padding: .14rem .35rem;
  }

  .brand {
    gap: .32rem;
    min-height: 1.8rem;
  }

  .brand-mark {
    flex-basis: 1.65rem;
    width: 1.65rem;
    height: 1.65rem;
  }

  .brand-mark svg {
    width: 1.02rem;
    height: 1.02rem;
  }

  .brand-copy strong {
    font-size: .92rem;
  }

  .nav-actions { gap: .18rem; }
  .nav-links { gap: .12rem .42rem; }
  .nav-controls {
    grid-template-columns: minmax(5rem, 1fr) max-content max-content;
    gap: .22rem;
  }

  .nav-actions a,
  .user-pill,
  .language-select select {
    min-height: 1.36rem;
    font-size: .7rem;
  }

  .user-pill { max-width: 11rem; }
  .language-select select { height: 1.42rem; }

  .theme-switch,
  .visual-style-switch { gap: .12rem; }
  .switch-text { font-size: .68rem; }
  .theme-switch input[role="switch"],
  .visual-style-switch input[role="switch"] { font-size: .7rem; }

  .hero,
  .card-panel { padding: .65rem; }
}



/* Final mobile header override: separate rows, no overlaid switch labels. */
@media screen and (max-width: 640px) {
  .site-header-shell { margin-bottom: .32rem; }

  .site-header {
    padding: .3rem .7rem;
  }

  .main-nav {
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: .28rem;
    line-height: 1.15;
  }

  .brand {
    gap: .42rem;
    min-height: 2rem;
  }

  .brand-mark {
    flex: 0 0 1.9rem;
    width: 1.9rem;
    height: 1.9rem;
  }

  .brand-mark svg {
    width: 1.16rem;
    height: 1.16rem;
  }

  .brand-copy strong {
    font-size: clamp(.98rem, 4vw, 1.14rem);
    line-height: 1.08;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    overflow-wrap: normal;
  }

  .brand-copy small { display: none; }

  .nav-actions {
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
    justify-content: stretch;
    gap: .16rem;
    width: 100%;
    max-width: 100%;
    overflow: visible;
  }

  .nav-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .08rem .55rem;
    min-width: 0;
  }

  .nav-controls {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .14rem .75rem;
    width: 100%;
    min-width: 0;
    margin-left: 0;
  }

  .nav-actions a,
  .user-pill {
    min-height: 1.52rem;
    padding: 0;
    font-size: .82rem;
    line-height: 1.25;
  }

  .user-pill {
    max-width: min(100%, 11rem);
    padding: 0 .45rem;
  }

  .language-select {
    flex: 0 0 6.6rem;
    width: 6.6rem;
  }

  .language-select select {
    width: 100%;
    min-width: 0;
    max-width: none;
    height: 1.7rem;
    min-height: 1.7rem;
    padding-top: .08rem;
    padding-bottom: .08rem;
    padding-left: .42rem;
    padding-right: 1.25rem;
    font-size: .8rem;
    line-height: 1.15;
  }

  .theme-switch,
  .visual-style-switch {
    display: inline-flex !important;
    align-items: center;
    gap: .3rem;
    min-height: 1.52rem;
    height: auto;
    padding: 0;
    line-height: 1.2;
    white-space: nowrap;
  }

  .switch-text {
    display: inline-block;
    position: static;
    font-size: .76rem;
    line-height: 1.2;
  }

  .theme-symbol,
  .style-symbol {
    display: none !important;
  }

  .theme-switch input[role="switch"],
  .visual-style-switch input[role="switch"] {
    flex: 0 0 2.25em;
    width: 2.25em;
    height: 1.25em;
    margin: 0;
    font-size: .76rem;
    transform: none !important;
  }
}

@media screen and (max-width: 420px) {
  .site-header {
    padding: .25rem .55rem;
  }

  .brand {
    gap: .36rem;
    min-height: 1.86rem;
  }

  .brand-mark {
    flex-basis: 1.74rem;
    width: 1.74rem;
    height: 1.74rem;
  }

  .brand-mark svg {
    width: 1.05rem;
    height: 1.05rem;
  }

  .brand-copy strong { font-size: .98rem; }
  .nav-actions { gap: .12rem; }
  .nav-links { gap: .04rem .45rem; }
  .nav-controls { gap: .1rem .62rem; }

  .nav-actions a,
  .user-pill {
    min-height: 1.4rem;
    font-size: .78rem;
  }

  .user-pill { max-width: 9.5rem; }

  .language-select {
    flex-basis: 6rem;
    width: 6rem;
  }

  .language-select select {
    height: 1.58rem;
    min-height: 1.58rem;
    font-size: .76rem;
  }

  .switch-text { font-size: .72rem; }

  .theme-switch input[role="switch"],
  .visual-style-switch input[role="switch"] {
    font-size: .7rem;
  }
}

@media screen and (max-width: 340px) {
  .nav-controls {
    gap: .08rem .5rem;
  }

  .language-select {
    flex-basis: 5.8rem;
    width: 5.8rem;
  }
}

/* Result overview: HTML report-style layout, suitable for later PDF conversion. */
.result-overview-panel {
  --overview-bg: color-mix(in srgb, var(--pico-primary) 5%, var(--pico-background-color));
  --overview-surface: var(--pico-card-background-color);
  --overview-line: color-mix(in srgb, var(--pico-primary) 16%, var(--app-border));
  --overview-ink: var(--pico-color);
  --overview-muted: var(--pico-muted-color);
  --overview-label: color-mix(in srgb, var(--pico-color) 82%, var(--pico-muted-color));
  --overview-accent: var(--pico-primary);
  --overview-soft: color-mix(in srgb, var(--pico-primary) 4%, var(--pico-background-color));
  --overview-row-line: color-mix(in srgb, var(--pico-primary) 12%, var(--app-border));
  --overview-card-shadow: 0 .18rem 0 color-mix(in srgb, var(--overview-accent) 16%, transparent);
  --overview-panel-radius: 1.15rem;
  --overview-header-radius: .9rem;
  --overview-card-radius: .85rem;
  max-width: 1320px;
  margin-inline: auto;
  padding: clamp(.75rem, 1.4vw, 1.05rem);
  border-color: var(--overview-line);
  border-radius: var(--overview-panel-radius);
  background: var(--overview-bg);
  color: var(--overview-ink);
  box-shadow: none;
}

html[data-theme="dark"] .result-overview-panel {
  --overview-bg: color-mix(in srgb, var(--pico-card-background-color) 72%, var(--pico-background-color));
  --overview-surface: var(--pico-card-background-color);
  --overview-line: color-mix(in srgb, var(--pico-primary) 18%, var(--app-border));
  --overview-soft: color-mix(in srgb, var(--pico-primary) 5%, var(--pico-background-color));
  --overview-row-line: color-mix(in srgb, var(--pico-primary) 12%, var(--app-border));
  --overview-card-shadow: none;
}

html[data-visual-style="asia"] .result-overview-panel {
  --overview-bg:
    radial-gradient(circle at 12% 0%, color-mix(in srgb, var(--app-rose) 14%, transparent), transparent 32%),
    color-mix(in srgb, var(--app-rose) 7%, var(--pico-background-color));
  --overview-surface: color-mix(in srgb, var(--pico-card-background-color) 96%, var(--app-rose));
  --overview-line: color-mix(in srgb, var(--app-rose) 22%, var(--app-border));
  --overview-accent: var(--app-rose);
  --overview-soft: color-mix(in srgb, var(--app-rose) 5%, var(--pico-background-color));
  --overview-row-line: color-mix(in srgb, var(--app-rose) 14%, var(--app-border));
  --overview-card-shadow: none;
  --overview-panel-radius: 1.7rem;
  --overview-header-radius: 1.35rem;
  --overview-card-radius: 1.25rem;
}

html[data-theme="dark"][data-visual-style="asia"] .result-overview-panel {
  --overview-bg:
    radial-gradient(circle at 12% 0%, color-mix(in srgb, var(--app-rose) 18%, transparent), transparent 32%),
    color-mix(in srgb, var(--app-rose) 10%, var(--pico-background-color));
  --overview-surface: color-mix(in srgb, var(--pico-card-background-color) 90%, var(--app-rose));
  --overview-soft: color-mix(in srgb, var(--app-rose) 8%, var(--pico-background-color));
}

.result-overview-header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  margin-bottom: .75rem;
  padding: .75rem .95rem;
  border: 1px solid var(--overview-line);
  border-radius: var(--overview-header-radius);
  background: var(--overview-surface);
}

.result-overview-brandline,
.overview-image-card > header {
  display: flex;
  align-items: flex-start;
  gap: .55rem;
  min-width: 0;
}

.result-overview-brandline > div,
.overview-image-card > header > div {
  min-width: 0;
}

.result-overview-marker {
  flex: 0 0 .45rem;
  width: .45rem;
  height: 1.55rem;
  margin-top: .05rem;
  border-radius: 999px;
  background: var(--overview-accent);
}

.result-overview-brandline strong,
.overview-image-card strong {
  display: block;
  color: var(--overview-accent);
  font-weight: 800;
  line-height: 1.15;
}

.result-analysis-datetime-main {
  display: block;
  margin-top: .2rem;
  color: var(--overview-muted);
  font-size: .9rem;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0;
}

.result-overview-brandline > div > span:not(.result-analysis-datetime-main),
.overview-image-card span {
  display: block;
  color: var(--overview-muted);
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.result-overview-heading {
  text-align: right;
}

.result-overview-heading-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: .55rem;
}

.result-pdf-actions {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  flex: 0 0 auto;
}

.result-pdf-action-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .28rem;
  min-width: 3.65rem;
  height: 2.65rem;
  margin: 0;
  padding: .38rem .62rem;
  border: 1px solid color-mix(in srgb, var(--overview-accent) 45%, var(--overview-line));
  border-radius: 999px;
  background: color-mix(in srgb, var(--overview-accent) 8%, var(--overview-surface));
  color: var(--overview-accent);
  box-shadow: none;
  text-decoration: none;
}

.result-pdf-action-button:hover,
.result-pdf-action-button:focus {
  border-color: var(--overview-accent);
  background: color-mix(in srgb, var(--overview-accent) 15%, var(--overview-surface));
  color: var(--overview-accent);
  transform: translateY(-1px);
}

.result-pdf-action-button:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--overview-accent) 55%, transparent);
  outline-offset: 2px;
}

.result-pdf-action-button svg {
  width: 1.45rem;
  height: 1.45rem;
  overflow: visible;
}

.result-pdf-action-label {
  font-size: .68rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .045em;
}

.result-pdf-action-button .pdf-icon-page,
.result-pdf-action-button .pdf-icon-fold,
.result-pdf-action-button .pdf-icon-share,
.result-pdf-action-button .pdf-icon-download {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.result-pdf-action-button .pdf-icon-node {
  fill: var(--overview-surface);
  stroke: currentColor;
  stroke-width: 1.55;
}

.result-pdf-share-button.is-loading svg {
  animation: result-pdf-pulse .8s ease-in-out infinite alternate;
}

.result-pdf-share-status {
  display: block;
  min-height: 1em;
  margin-top: .18rem;
  color: var(--overview-muted);
  font-size: .72rem;
  line-height: 1.2;
}

@keyframes result-pdf-pulse {
  from { opacity: .42; transform: scale(.94); }
  to { opacity: 1; transform: scale(1); }
}

.result-overview-heading h1 {
  margin: 0;
  color: var(--overview-ink);
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  line-height: 1.05;
  letter-spacing: -.035em;
}

.result-overview-heading p {
  margin: .25rem 0 0;
}

.result-meta-line {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: .15rem .7rem;
}

.result-meta-line span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.result-api-version {
  font-size: .72rem;
  opacity: .72;
}

.result-analysis-error-card {
  margin-top: .6rem;
  padding: clamp(.85rem, 1.7vw, 1.15rem);
  border: 1px solid var(--overview-line);
  border-radius: var(--overview-card-radius);
  background: var(--overview-surface);
  box-shadow: var(--overview-card-shadow);
}

.result-analysis-error-card h2 {
  margin: 0 0 .55rem;
  color: var(--overview-ink);
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  line-height: 1.15;
}

.result-error-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .5rem;
  margin: .7rem 0 0;
}

.result-error-meta > div {
  min-width: 0;
  padding: .55rem .65rem;
  border: 1px solid var(--overview-row-line);
  border-radius: calc(var(--overview-card-radius) * .75);
  background: var(--overview-soft);
}

.result-error-meta dt {
  margin: 0 0 .18rem;
  color: var(--overview-muted);
  font-size: .78rem;
  line-height: 1.15;
}

.result-error-meta dd {
  margin: 0;
  color: var(--overview-ink);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.overview-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .7rem;
  margin-top: .55rem;
}

.overview-card,
.overview-image-card {
  min-width: 0;
  margin: 0;
  border: 1px solid var(--overview-line);
  border-radius: var(--overview-card-radius);
  background: var(--overview-surface);
  box-shadow: var(--overview-card-shadow);
}

.overview-card {
  padding: .65rem .75rem .55rem;
}

.overview-card h2 {
  display: flex;
  align-items: center;
  gap: .4rem;
  margin: 0 0 .42rem;
  color: var(--overview-ink);
  font-size: .98rem;
  line-height: 1.2;
}

.overview-card h2 span {
  width: .46rem;
  height: .46rem;
  border-radius: 999px;
  background: var(--overview-accent);
}

.overview-metric-row {
  display: grid;
  grid-template-columns: minmax(12rem, 1fr) 4.4rem 3.6rem;
  gap: .35rem;
  align-items: baseline;
  min-height: 1.25rem;
  border-top: 1px solid var(--overview-row-line);
  color: var(--overview-ink);
  font-size: .88rem;
  line-height: 1.18;
}

.overview-card .overview-metric-row:first-of-type {
  border-top: 0;
}

.overview-metric-label {
  min-width: 0;
  color: var(--overview-label);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.overview-metric-value {
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.overview-metric-unit {
  color: var(--overview-muted);
  font-size: .8rem;
  white-space: nowrap;
}

.overview-image-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .6rem;
  margin-top: .7rem;
}

.overview-image-card {
  overflow: hidden;
}

.overview-image-card > header {
  padding: .65rem .75rem .45rem;
  border-bottom: 1px solid var(--overview-row-line);
}

.overview-image-card > header .result-overview-marker {
  height: 1.75rem;
}

.overview-image-card img {
  display: block;
  width: 100%;
  height: auto;
  border: 0;
  border-radius: 0;
  background: var(--overview-soft);
}

.result-raw-data {
  margin-top: .75rem;
}

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

@media (max-width: 799px) {
  .result-overview-panel {
    border-radius: .85rem;
    padding: .6rem;
  }

  html[data-visual-style="asia"] .result-overview-panel {
    border-radius: 1.05rem;
  }

  .result-overview-header {
    align-items: flex-start;
    flex-direction: column;
    gap: .45rem;
    padding: .65rem;
  }

  .result-overview-heading {
    text-align: left;
    max-width: 100%;
  }

  .result-overview-heading-row { justify-content: flex-start; }
  .result-meta-line { justify-content: flex-start; }

  .result-overview-heading h1 {
    font-size: clamp(1.38rem, 8vw, 1.85rem);
  }

  .overview-card-grid,
  .overview-image-grid { grid-template-columns: 1fr; }
  .result-error-meta { grid-template-columns: 1fr; }
  .overview-card,
  .overview-image-card { border-radius: .72rem; }
  html[data-visual-style="asia"] .overview-card,
  html[data-visual-style="asia"] .overview-image-card { border-radius: 1rem; }
  .overview-metric-row { grid-template-columns: minmax(0, 1fr) max-content max-content; gap: .22rem; }
  .overview-metric-label { white-space: normal; overflow: visible; text-overflow: clip; }
  .overview-metric-value,
  .overview-metric-unit { white-space: nowrap; }
}

@media (max-width: 420px) {
  .result-overview-panel { padding: .45rem; }
  .result-overview-brandline,
  .overview-image-card > header { gap: .42rem; }
  .result-overview-marker { width: .36rem; flex-basis: .36rem; }
  .overview-card { padding: .58rem .62rem .5rem; }
  .overview-card h2 { font-size: .92rem; }
  .overview-metric-row {
    grid-template-columns: minmax(0, 1fr) max-content;
    grid-template-areas:
      "label label"
      "value unit";
    align-items: baseline;
    row-gap: .02rem;
    padding: .13rem 0;
  }
  .overview-metric-label { grid-area: label; }
  .overview-metric-value { grid-area: value; }
  .overview-metric-unit { grid-area: unit; }
}

@media print {
  @page {
    margin: 8mm;
  }

  .site-header-shell,
  .site-footer-shell,
  .result-raw-data { display: none !important; }

  main.container {
    width: 100%;
    max-width: none;
    padding: 0;
  }

  .result-overview-panel {
    --overview-bg: #eef4f8;
    --overview-surface: #ffffff;
    --overview-line: #d7e1ec;
    --overview-ink: #142437;
    --overview-muted: #60728a;
    --overview-label: #3c4e65;
    --overview-accent: #2f7fc1;
    --overview-soft: #f8fbfd;
    --overview-row-line: #e7eef6;
    --overview-card-shadow: none;
    --overview-panel-radius: 0;
    --overview-header-radius: .9rem;
    --overview-card-radius: .85rem;
    margin: 0;
    padding: .15cm;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: var(--overview-bg) !important;
    color: var(--overview-ink) !important;
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }

  .result-overview-header {
    padding: .45rem .6rem;
  }

  .result-overview-heading h1 {
    font-size: 1.55rem;
  }

  .overview-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .38rem;
  }

  .overview-image-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .38rem;
  }

  .overview-card {
    padding: .42rem .5rem .35rem;
  }

  .overview-card h2 {
    margin-bottom: .25rem;
    font-size: .86rem;
  }

  .overview-metric-row {
    grid-template-columns: minmax(0, 1fr) minmax(2.6rem, max-content) minmax(3.25rem, max-content);
    gap: .18rem;
    min-height: 0;
    padding: .045rem 0;
    font-size: .76rem;
    line-height: 1.12;
  }

  .overview-metric-label {
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
  }

  .overview-metric-value,
  .overview-metric-unit {
    white-space: nowrap;
    overflow: visible;
  }

  .overview-metric-unit {
    font-size: .72rem;
  }

  .overview-image-card > header {
    padding: .42rem .5rem .3rem;
  }

  .overview-card,
  .overview-image-card,
  .result-overview-header { break-inside: avoid; }
}

/* Home page images */
.home-image-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .8rem;
  margin-top: .4rem;
}

.home-image-card {
  min-width: 0;
  margin: 0;
  padding: .7rem;
  border: 1px solid var(--app-border);
  border-radius: var(--app-radius-sm);
  background: color-mix(in srgb, var(--pico-card-background-color) 92%, var(--pico-primary));
}

.home-image {
  display: block;
  width: 100%;
  aspect-ratio: 1160 / 677;
  margin-bottom: .65rem;
  border: 1px solid var(--app-border);
  border-radius: var(--app-radius-sm);
  object-fit: cover;
}

.home-image--contain {
  background: color-mix(in srgb, var(--pico-primary) 2%, #fff);
  object-fit: contain;
}

.home-image-card h2 {
  margin: 0 0 .3rem;
  font-size: 1rem;
}

.home-image-card p { margin: 0; }

/* Explicit legal consent before subscription checkout */
.checkout-consent {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: .45rem;
  align-items: start;
  margin: .35rem 0 .8rem;
  padding: .65rem .75rem;
  border: 1px solid var(--app-border);
  border-radius: var(--app-radius-sm);
  background: color-mix(in srgb, var(--pico-primary) 4%, var(--pico-card-background-color));
  font-size: .86rem;
  line-height: 1.45;
}

.checkout-consent input[type="checkbox"] {
  margin: .18rem 0 0;
}

.checkout-consent span { min-width: 0; }

/* Date and source filename in the result header */
.result-analysis-meta-main {
  display: flex;
  flex-wrap: wrap;
  gap: .15rem .65rem;
  margin-top: .2rem;
  color: var(--overview-muted);
  font-size: .9rem;
  font-weight: 400;
  line-height: 1.3;
}

.result-analysis-filename {
  min-width: 0;
  max-width: min(34rem, 60vw);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.result-technical-details {
  margin-top: .75rem;
  padding: .1rem .65rem .65rem;
  border: 1px solid var(--overview-line);
  border-radius: var(--overview-card-radius);
  background: var(--overview-surface);
}

.result-technical-details summary {
  padding: .55rem 0;
  color: var(--overview-muted);
  font-size: .86rem;
  font-weight: 600;
}

.result-technical-details h3 {
  margin: .8rem 0 .35rem;
  font-size: .9rem;
}

.result-technical-details pre {
  max-height: 28rem;
  margin-bottom: 0;
  overflow: auto;
}

@media (max-width: 799px) {
  .home-image-grid { grid-template-columns: 1fr; }
  .result-analysis-filename {
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
  }
}

@media print {
  .result-technical-details { display: none !important; }
}

/* Prominent TrichoScan FAST runtime version in the report header. */
.result-program-version {
  color: var(--overview-ink);
  font-weight: 700;
}
