/* Same chrome as the in-app About / Help screens. Not a second site. */
:root {
  --bg0: #F3EFE8;
  --bg1: #FFFCFA;
  --border: #E0D8CE;
  --text: #1C1814;
  --muted: #6B6258;
  --faint: #9A9086;
  --accent: #0F766E;
  --accent-deep: #0B5F58;
  --page-bg:
    radial-gradient(ellipse 95% 70% at 50% 0%, rgba(20, 184, 166, 0.34) 0%, rgba(15, 118, 110, 0.14) 42%, transparent 72%),
    linear-gradient(180deg, #F6F2EC 0%, #F3EFE8 48%, #EFE9E1 100%);
}
* { box-sizing: border-box; }
html { background: #F3EFE8; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: transparent;
  min-height: 100vh;
  padding: 12px 16px 28px;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-color: var(--bg0);
  background-image: var(--page-bg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.screen {
  position: relative;
  z-index: 1;
  max-width: 440px;
  margin: 0 auto;
}
.topbar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  padding: 10px 12px;
  border-radius: 16px;
  overflow: hidden;
  background: #FFFCFA;
  border: 1px solid rgba(60, 40, 20, 0.08);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
}
.topbar::before {
  content: none;
  display: none;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
  color: inherit;
  min-width: 0;
}
.logo-mark {
  width: 52px;
  height: 52px;
  border-radius: 15px;
  overflow: hidden;
  flex-shrink: 0;
  background: linear-gradient(145deg, #1D4ED8 0%, #14B8A6 55%, #0F766E 100%);
}
.logo-mark img { width: 100%; height: 100%; object-fit: cover; display: block; }
.brand-text { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.logo-word {
  font-size: 1.48rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}
.logo-word .tt {
  background: linear-gradient(180deg, #14B8A6 0%, #0D9488 45%, #0F766E 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.brand-tag {
  font-size: 0.68rem;
  font-weight: 550;
  color: #6B6258;
  line-height: 1.2;
  white-space: nowrap;
}
.topbar-back {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  color: var(--accent-deep);
  font-size: 15px;
  font-weight: 650;
  padding: 8px 10px;
  border-radius: 12px;
  flex-shrink: 0;
}
.topbar-back svg { width: 18px; height: 18px; }
.soft-stage {
  margin: 0 0 10px;
  padding: 14px 12px;
  border-radius: 20px;
  background: color-mix(in srgb, var(--bg1) 88%, #FFFFFF);
  border: 1px solid rgba(60, 40, 20, 0.05);
}
.soft-stage-head {
  margin: 0 0 12px;
  padding: 0 2px 10px;
  border-bottom: 1px solid rgba(60, 40, 20, 0.07);
}
.section-title {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
}
.info-doc {
  background: var(--bg1);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px 18px 16px;
}
.info-doc > p {
  margin: 0 0 12px;
  font-size: 14.5px;
  line-height: 1.58;
  color: var(--text);
}
.info-doc > p:last-child { margin-bottom: 0; }
.info-doc h3 {
  margin: 18px 0 8px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  font-size: 13.5px;
  font-weight: 780;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.info-doc h3:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.info-doc a {
  color: var(--accent-deep);
  font-weight: 650;
}
.info-doc ul {
  margin: 0 0 12px;
  padding: 0 0 0 1.1em;
  font-size: 14.5px;
  line-height: 1.58;
}
.app-footer {
  margin-top: 8px;
  padding: 6px 6px 2px;
  text-align: center;
  font-size: 12px;
  color: var(--faint);
}
.app-footer-row {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 0.35em;
  white-space: nowrap;
  font-size: 11.5px;
}
.app-footer a { color: var(--accent-deep); text-decoration: none; font-weight: 650; }
.app-footer-dot { opacity: 0.5; }
.contact-email {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  box-sizing: border-box;
  margin: 8px 0 0;
  padding: 16px 12px;
  border-radius: 14px;
  border: 1.5px solid rgba(15, 118, 110, 0.28);
  background: #E6F3F0;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #0B5F58;
  text-decoration: none;
  word-break: break-all;
  line-height: 1.25;
}
.contact-email:hover {
  background: #D5EDE8;
  border-color: #0F766E;
}
.app-footer .home-footer-chip {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  padding: 3px 9px;
  border-radius: 999px;
  border: 1.5px solid #D4B24A;
  background: rgba(255, 220, 90, 0.16);
  color: #7A5A12;
  font-weight: 750;
  text-decoration: none;
}
