:root {
  --paper: #fcfdfc;
  --paper-soft: #f6faf8;
  --paper-wash: #eaf8f1;
  --ink: #15221d;
  --ink-soft: #385047;
  --muted: #586b62;
  --line: #e3e9e6;
  --line-strong: #ccd8d2;
  --brand: #24b47e;
  --brand-hover: #147a55;
  --brand-pale: #69d9aa;
  --brand-deep: #17362c;
  --danger: #b34d55;
  --white: #ffffff;
  --wrap: 1090px;
  --article-wrap: 1090px;
  --header-h: 56px;
  --h1: 48px;
  --h2: 28px;
  --h3: 17px;
  --body: 16px;
  --small: 14px;
  --tiny: 12px;
  --code: 15px;
  --radius-control: 6px;
  --radius-card: 16px;
  --radius-panel: 20px;
  --s1: 8px;
  --s2: 16px;
  --s3: 24px;
  --s4: 40px;
  --s5: 64px;
  --s6: 80px;
  --s7: 96px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Noto Sans CJK SC", "Microsoft YaHei", sans-serif;
  font-size: var(--body);
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.reader-open {
  overflow: hidden;
}

button,
input {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

img,
svg {
  display: block;
  max-width: 100%;
}

[hidden] {
  display: none !important;
}

.wrap {
  width: min(calc(100% - 48px), var(--wrap));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  height: var(--header-h);
  border-bottom: 1px solid transparent;
  background: rgb(252 253 252 / 96%);
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: var(--s3);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  flex: none;
  gap: 9px;
  font-size: var(--h3);
  font-weight: 600;
  letter-spacing: -0.035em;
}

.brand-name {
  display: inline;
}

.brand-lockup img {
  width: 27px;
  height: 27px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-left: var(--s3);
  white-space: nowrap;
}

.site-nav a {
  padding: 6px 9px;
  white-space: nowrap;
  border-radius: var(--radius-control);
  color: var(--ink-soft);
  font-size: var(--small);
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: var(--paper-soft);
  color: var(--ink);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--s1);
  margin-left: auto;
}

.language-switch {
  position: relative;
}

.lang-trigger,
.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-control);
  background: var(--white);
  color: var(--ink-soft);
  font-size: var(--small);
  cursor: pointer;
}

.lang-trigger {
  position: relative;
  gap: 9px;
  padding: 0 28px 0 11px;
}

.chevron {
  position: absolute;
  top: 50%;
  right: 11px;
  width: 6px;
  height: 6px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateY(calc(-50% - 0.08em)) rotate(45deg);
  pointer-events: none;
}

.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 150px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: var(--radius-control);
  background: var(--white);
}

.lang-menu a {
  display: block;
  padding: 7px 9px;
  border-radius: 4px;
  color: var(--ink-soft);
  font-size: var(--small);
}

.lang-menu a:hover {
  background: var(--paper-soft);
  color: var(--ink);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-control);
  background: var(--white);
  color: var(--ink);
  font-size: var(--small);
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
}

.button:hover {
  border-color: var(--brand);
  background: var(--paper-soft);
  color: var(--ink);
}

.button-primary {
  border-color: var(--brand);
  background: var(--brand);
  color: var(--brand-deep);
}

.button-primary:hover {
  border-color: var(--brand-hover);
  background: var(--brand-hover);
  color: var(--white);
}

.button-quiet {
  background: transparent;
  color: var(--ink-soft);
}

.nav-toggle {
  display: none;
  width: 36px;
  padding: 0;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  width: 15px;
  height: 1px;
  background: currentColor;
  content: "";
}

.nav-toggle {
  flex-direction: column;
  gap: 4px;
}

.nav-drawer {
  position: absolute;
  top: var(--header-h);
  left: 24px;
  right: 24px;
  padding: var(--s2);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--white);
}

.nav-drawer a {
  display: block;
  padding: 10px;
  border-radius: var(--radius-control);
  font-size: var(--small);
}

.hero {
  padding: 150px 0 var(--s5);
}

.hero-lead {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  align-items: end;
  gap: var(--s5);
  margin-bottom: var(--s5);
}

.hero h1 {
  max-width: 620px;
  text-wrap: balance;
  margin: 0;
  font-size: var(--h1);
  font-weight: 400;
  font-synthesis: none;
  letter-spacing: normal;
  line-height: 1.12;
}

.hero h1 em {
  display: block;
  margin-top: 5px;
  color: var(--brand);
  font-style: normal;
  font-weight: 400;
}

.hero-aside p {
  max-width: 420px;
  margin: 0 0 var(--s3);
  color: var(--muted);
  font-size: var(--body);
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s1);
}

.mail-stage {
  display: flex;
  flex-direction: column;
  min-height: 714px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-control);
  background: var(--white);
}

.mail-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  min-height: 74px;
  border-bottom: 1px solid var(--line);
}

.address-block {
  min-width: 0;
  padding: 0 var(--s3);
}

.address-label {
  margin-bottom: 3px;
  color: var(--muted);
  font-size: var(--tiny);
}

.mail-address {
  overflow: hidden;
  color: var(--ink);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: var(--h3);
  letter-spacing: 0;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mail-stage.is-create-focus {
  border-color: var(--brand);
}

.mail-address.is-create-focus {
  color: var(--brand-hover);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.mail-life {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 var(--s3);
  border-left: 1px solid var(--line);
}

.life-ring {
  flex: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: conic-gradient(var(--brand) calc(var(--life, 1) * 1turn), var(--line) 0);
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #000 calc(100% - 2px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #000 calc(100% - 2px));
  font-size: 0;
  color: transparent;
  line-height: 0;
}

.life-copy span {
  display: block;
  color: var(--muted);
  font-size: var(--tiny);
}

.life-copy strong {
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: var(--small);
  font-weight: 500;
}

.toolbar-actions {
  display: flex;
  align-items: center;
  gap: var(--s1);
  padding-right: var(--s3);
}

.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 11px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-control);
  background: var(--white);
  color: var(--ink-soft);
  font-size: var(--small);
  cursor: pointer;
}

.icon-button:hover {
  border-color: var(--brand);
  background: var(--paper-soft);
  color: var(--ink);
}

.mail-workspace,
.inbox-grid {
  display: grid;
  flex: 1 1 640px;
  grid-template-columns: minmax(250px, 36%) minmax(0, 1fr);
  height: 640px;
  min-height: 0;
  overflow: hidden;
}

.mail-list {
  border-right: 1px solid var(--line);
  background: var(--paper-soft);
}

.list-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 52px;
  padding: 0 var(--s2);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: var(--tiny);
}

.live-state {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--ink-soft);
}

.live-state::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
  content: "";
}

.mail-item {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) auto;
  gap: 11px;
  width: 100%;
  min-height: 78px;
  padding: 13px var(--s2);
  border: 0;
  border-bottom: 1px solid var(--line);
  background: var(--paper-soft);
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.mail-item:hover,
.mail-item.is-active {
  background: var(--white);
  color: var(--ink);
}

.sender-badge {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-control);
  background: var(--white);
  color: var(--ink);
  font-size: var(--tiny);
  font-weight: 600;
}

.sender-badge.ebay {
  color: #9b3d41;
}

.sender-badge.ms {
  color: var(--brand-deep);
}

.mail-summary {
  position: relative;
  min-width: 0;
}

.mail-item.is-unread .mail-summary::before {
  position: absolute;
  top: 7px;
  left: -18px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
  content: "";
}

.mail-summary strong,
.mail-summary span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mail-summary strong {
  font-size: var(--small);
  font-weight: 500;
}

.mail-summary span {
  margin-top: 3px;
  color: var(--muted);
  font-size: var(--small);
}

.mail-item time {
  color: var(--muted);
  font-size: var(--tiny);
}

.mail-reader {
  position: relative;
  min-width: 0;
  min-height: 0;
  max-height: 640px;
  overflow: auto;
  background: var(--white);
}

.reader-actions {
  position: sticky;
  top: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: var(--s1);
  min-height: 52px;
  padding: 0 var(--s3);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
}

.reader-back,
.mail-reader:not(.is-open) [data-reader-close] {
  display: none;
}

.reader-letterhead {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  align-items: center;
  gap: 11px;
  padding: 13px var(--s2);
  border-bottom: 1px solid var(--line);
}

.mail-reader:not(.is-real) > .reader-letterhead {
  display: none;
}

.mail-reader.is-real .demo-letterhead,
.mail-reader.is-real .demo-brand,
.mail-reader > [data-demo-brand] {
  display: none !important;
}

.mail-frame {
  display: block;
  flex: 0 0 auto;
  width: 100%;
  min-height: 360px;
  border: 0;
  background: var(--white);
}

.reader-avatar,
.reader-letterhead .sender-badge {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-control);
  background: var(--white);
  color: var(--ink);
  font-size: var(--tiny);
  font-weight: 600;
}

.reader-letterhead h2 {
  margin: 0 0 5px;
  font-size: var(--h3);
  font-weight: 500;
  line-height: 1.25;
}

.reader-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 4px var(--s2);
  color: var(--ink-soft);
  font-size: var(--tiny);
}

.reader-body,
.reader-empty {
  padding: var(--s4);
  color: var(--ink-soft);
  font-size: var(--small);
  line-height: 1.7;
}

.inbox-empty,
.reader-empty {
  color: var(--muted);
  font-size: var(--small);
}

.inbox-empty,
.reader-empty {
  min-height: 160px;
  border: 1px solid var(--line);
  background: var(--white);
}

.inbox-empty {
  display: grid;
  align-content: center;
  gap: var(--s1);
  padding: var(--s4) var(--s2);
  text-align: center;
}

.inbox-empty strong,
.reader-empty strong,
.inbox-empty span,
.reader-empty span {
  display: block;
}

.inbox-empty strong,
.reader-empty strong {
  color: var(--ink);
  font-weight: 500;
}

.demo-letterhead {
  position: relative;
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  align-items: center;
  gap: var(--s2);
  margin: 0 0 var(--s3);
  padding: 0 0 var(--s3);
  border-bottom: 1px solid var(--line);
}

.demo-letter-mark {
  display: none;
}

.demo-letterhead strong,
.demo-letterhead span {
  display: block;
}

.demo-letterhead strong {
  color: var(--ink);
  font-size: var(--small);
  font-weight: 600;
}

.demo-letterhead div > span {
  margin-top: 3px;
  color: var(--muted);
  font-size: var(--tiny);
}

.demo-seal {
  display: grid !important;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-control);
  background: var(--paper-soft);
  color: var(--brand-deep);
  font-size: var(--tiny);
  font-weight: 600;
}

.event-record {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: var(--s3) 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.event-record > span {
  padding: var(--s2);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: var(--tiny);
}

.event-record strong {
  display: block;
  margin-top: 4px;
  color: var(--ink);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: var(--small);
  font-weight: 500;
}

.demo-brand {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  margin-bottom: var(--s3);
  padding: 0 9px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--paper-soft);
  color: var(--ink-soft);
  font-size: var(--tiny);
}

.verify-board {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--s1);
  max-width: 390px;
  margin: var(--s3) 0;
}

.verify-board span {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-control);
  background: var(--paper-soft);
  color: var(--ink);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: var(--h3);
}

.mail-disclaimer {
  margin-top: var(--s4);
  padding-top: var(--s2);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: var(--tiny);
}

.section {
  padding: var(--s5) 0;
}

.hero + .section {
  padding-top: var(--s5);
}

.feature-grid + * {
  margin-top: 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.7fr);
  align-items: end;
  gap: var(--s5);
  margin-bottom: var(--s4);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--brand-hover);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: var(--tiny);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.section h2 {
  margin: 0;
  text-wrap: balance;
  font-size: var(--h2);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.18;
}

.section-intro {
  margin: 0;
  color: var(--muted);
  font-size: var(--code);
}

.feature-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  border-radius: var(--radius-card);
  overflow: hidden;
}

.feature-card {
  min-height: 260px;
  padding: var(--s3);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.feature-card h3 {
  margin: 0 0 var(--s2);
  font-size: var(--h3);
  font-weight: 600;
}

.feature-card p {
  max-width: 36ch;
  margin: 0;
  color: var(--muted);
  font-size: var(--small);
}

.path-visual {
  display: grid;
  place-items: center;
  height: 140px;
  margin-top: var(--s4);
  padding-top: var(--s3);
  border-top: 1px solid var(--line);
  color: var(--brand-hover);
}

.path-visual svg {
  width: min(100%, 168px);
  height: 88px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.step {
  padding: var(--s4);
  border-right: 1px solid var(--line);
}

.step:last-child {
  border-right: 0;
}

.step-index {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin-bottom: var(--s3);
  border: 1px solid var(--brand);
  border-radius: 50%;
  color: var(--brand-deep);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: var(--tiny);
}

.step h3 {
  margin: 0 0 var(--s1);
  font-size: var(--h3);
  font-weight: 600;
}

.step p {
  margin: 0;
  color: var(--muted);
  font-size: var(--small);
}

.safety-band {
  background: var(--brand);
  color: var(--brand-deep);
}

.safety-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  min-height: 480px;
}

.safety-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--s6) var(--s5) var(--s6) 0;
}

.safety-copy .eyebrow {
  color: var(--brand-deep);
}

.safety-copy h2 {
  max-width: 12ch;
  margin: 0 0 var(--s3);
  font-size: var(--h2);
  font-weight: 500;
}

.safety-copy p {
  max-width: 42ch;
  margin: 0;
  color: var(--brand-deep);
  font-size: var(--code);
}

.receipt-graphic {
  align-self: center;
  min-height: 330px;
  padding: var(--s4);
  border: 1px solid rgb(23 54 44 / 22%);
  border-radius: var(--radius-card);
  background: rgb(255 255 255 / 70%);
  color: var(--brand-deep);
}

.receipt-row {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) auto;
  align-items: center;
  gap: var(--s2);
  padding: var(--s2) 0;
  border-bottom: 1px solid rgb(23 54 44 / 18%);
}

.receipt-stamp {
  width: 28px;
  height: 28px;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.receipt-row strong,
.receipt-row span {
  display: block;
  font-size: var(--small);
}

.receipt-row span {
  color: var(--ink-soft);
  font-size: var(--tiny);
}

.receipt-status {
  padding: 4px 8px;
  border: 1px solid rgb(23 54 44 / 26%);
  border-radius: 999px;
  background: var(--paper-wash);
  color: var(--brand-deep);
}

.decision-section {
  background: var(--paper-soft);
}

.decision-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.decision-card {
  min-height: 310px;
  padding: var(--s4);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.decision-code {
  color: var(--brand-hover);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: var(--tiny);
}

.decision-card h3 {
  margin: var(--s3) 0 var(--s2);
  font-size: var(--h3);
  font-weight: 600;
}

.decision-card p,
.decision-card li {
  color: var(--muted);
  font-size: var(--small);
}

.decision-card p {
  margin: 0;
}

.decision-card ul {
  margin: var(--s3) 0 0;
  padding-left: 18px;
}

.decision-card li + li {
  margin-top: var(--s1);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: var(--s3) 34px var(--s3) 0;
  color: var(--ink);
  font-size: var(--code);
  font-weight: 500;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 5px;
  width: 7px;
  height: 7px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateY(calc(-50% - 0.08em)) rotate(45deg);
  content: "";
}

.faq-list details[open] summary::after {
  transform: translateY(calc(-50% + 0.08em)) rotate(225deg);
}

.faq-list details p {
  max-width: 760px;
  margin: -8px 0 var(--s3);
  color: var(--muted);
  font-size: var(--small);
}

.final-cta {
  padding: var(--s7) 0;
  background: var(--brand-deep);
  color: var(--white);
  text-align: center;
}

.final-cta h2 {
  margin: 0 0 var(--s2);
  font-size: var(--h2);
  font-weight: 500;
}

.final-cta p {
  margin: 0 0 var(--s3);
  color: #b9ccc4;
  font-size: var(--code);
}

.final-cta .button-primary {
  background: var(--brand-pale);
  color: var(--brand-deep);
}

.site-footer {
  padding: var(--s6) 0 var(--s3);
  border-top: 1px solid var(--line);
  background: var(--paper-soft);
  color: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, minmax(0, 1fr));
  gap: var(--s4);
}

.footer-brand p {
  max-width: 32ch;
  margin: var(--s2) 0 0;
  color: var(--muted);
  font-size: var(--small);
}

.footer-column strong {
  display: block;
  margin-bottom: var(--s2);
  font-size: var(--small);
  font-weight: 600;
}

.footer-column a {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: var(--small);
}

.footer-column a:hover {
  color: var(--brand-hover);
}

.footer-help {
  margin-top: var(--s4);
  padding: var(--s3) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.footer-help strong,
.footer-help p {
  margin: 0;
}

.footer-help p {
  margin-top: 5px;
  color: var(--muted);
  font-size: var(--small);
}

.footer-help .button {
  margin-top: var(--s2);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: var(--s3);
  padding-top: var(--s3);
  color: var(--muted);
  font-size: var(--tiny);
}

@media (max-width: 900px) {
  .site-nav {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .hero {
    padding-top: var(--s7);
  }

  .hero-lead,
  .section-heading {
    grid-template-columns: 1fr;
    gap: var(--s3);
  }

  .mail-toolbar {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .mail-life {
    display: none;
  }

  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }

  .feature-card:first-child {
    grid-column: 1 / -1;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .wrap {
    width: min(calc(100% - 32px), var(--wrap));
  }

  .site-header {
    position: sticky;
    top: 0;
    border-bottom: 1px solid var(--line);
  }

  .brand-lockup {
    font-size: var(--h3);
  }

  .header-actions .button {
    display: none;
  }

  .lang-trigger {
    min-width: 58px;
    background: var(--paper-soft);
    color: var(--ink);
  }

  .hero {
    padding: var(--s5) 0 var(--s4);
  }

  .hero h1 {
    font-size: calc(var(--h1) * 0.79);
    line-height: 1.06;
  }

  .hero-lead {
    margin-bottom: var(--s4);
  }

  .hero-aside p {
    font-size: var(--code);
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .hero-actions .button {
    min-width: 0;
    padding-inline: 10px;
  }

  .mail-stage {
    min-height: 0;
    overflow: visible;
  }

  .mail-toolbar {
    display: block;
    min-height: 0;
  }

  .address-block {
    padding: var(--s2);
  }

  .mail-address {
    font-size: var(--body);
  }

  .toolbar-actions {
    padding: 0 var(--s2) var(--s2);
  }

  .toolbar-actions .icon-button {
    flex: 1;
  }

  .mail-workspace {
    display: block;
    min-height: 0;
    overflow: visible;
  }

  .mail-list {
    min-height: 208px;
    border-right: 0;
  }

  .mail-reader {
    display: none;
  }

  .mail-reader.is-open {
    position: fixed;
    z-index: 50;
    top: var(--header-h);
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    max-height: none;
    overflow: auto;
    background: var(--white);
    color: var(--ink);
    transform: none;
    animation: none;
  }

  .reader-actions {
    top: 0;
    justify-content: space-between;
  }

  .mail-reader.mobile-reader .reader-back {
    display: inline-flex;
  }

  .reader-letterhead,
  .reader-body {
    padding: var(--s3);
  }

  .section {
    padding: var(--s5) 0;
  }

  .feature-grid,
  .steps,
  .safety-grid,
  .decision-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    display: block;
    border: 0;
    overflow: visible;
  }

  .feature-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 104px;
    grid-template-rows: auto auto;
    gap: 6px var(--s2);
    min-height: 0;
    padding: var(--s3) 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .feature-card:first-child {
    border-top: 1px solid var(--line);
  }

  .feature-card h3 {
    grid-column: 1;
    margin: 0;
  }

  .feature-card p {
    grid-column: 1;
  }

  .feature-card .path-visual {
    grid-column: 2;
    grid-row: 1 / 3;
    height: 74px;
    margin: 0;
    padding-top: 0;
    border-top: 0;
  }

  .feature-card:first-child {
    grid-column: auto;
  }

  .feature-card {
    min-height: 0;
  }

  .step {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .step:last-child {
    border-bottom: 0;
  }

  .safety-copy {
    padding: var(--s5) 0 var(--s4);
  }

  .receipt-graphic {
    margin-bottom: var(--s5);
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--s4) var(--s3);
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    display: block;
  }

  .footer-bottom span {
    display: block;
    margin-top: var(--s1);
  }
}

.shell-dialog-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: var(--s3);
  background: rgb(21 34 29 / 36%);
}

.shell-dialog {
  width: min(100%, 360px);
  padding: var(--s3);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--white);
  color: var(--ink);
}

.shell-dialog-actions {
  display: flex;
  justify-content: flex-end;
  gap: var(--s1);
  margin-top: var(--s2);
}

/* Access and forwarding workspace */
.page-hero {
  padding: var(--s7) 0 var(--s5);
}

.page-hero h1 {
  max-width: 720px;
  margin: var(--s3) 0 0;
  font-size: var(--h1);
  font-weight: 400;
  font-synthesis: none;
  letter-spacing: normal;
  line-height: 1.12;
}

.page-hero .section-intro {
  max-width: 620px;
  margin-top: var(--s3);
}

.access-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1fr);
  gap: var(--s7);
  align-items: start;
  padding-bottom: var(--s7);
}

.access-note {
  padding-top: var(--s3);
}

.access-note h2 {
  margin: 0 0 var(--s2);
  font-size: var(--h2);
  font-weight: 500;
}

.access-note p {
  color: var(--muted);
  font-size: var(--code);
}

.access-facts {
  margin: var(--s4) 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.access-facts li {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: var(--s2);
  padding: var(--s2) 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: var(--small);
}

.access-facts span {
  color: var(--brand-hover);
  font-family: "SFMono-Regular", Consolas, monospace;
}

.access-card {
  padding: var(--s4);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--white);
}

.access-card h2 {
  margin: 0 0 var(--s1);
  font-size: var(--h3);
  font-weight: 500;
}

.access-card > p {
  margin: 0 0 var(--s4);
  color: var(--muted);
  font-size: var(--small);
}

.form-stack {
  display: flow-root;
}

.field-label {
  display: block;
  margin-bottom: var(--s1);
  color: var(--ink-soft);
  font-size: var(--small);
  font-weight: 500;
}

.text-field {
  width: 100%;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-control);
  outline: 0;
  background: var(--paper-soft);
  color: var(--ink);
  font-size: var(--small);
}

.text-field::placeholder {
  color: var(--muted);
  font-size: var(--small);
}

.text-field:focus {
  border-color: var(--ink-soft);
}

.form-stack .button-primary {
  width: 100%;
  margin-top: var(--s2);
}

.access-notice {
  min-height: 0;
  margin-top: 8px;
  color: var(--muted);
  font-size: var(--small);
}

.code-sent {
  margin: var(--s4) 0 var(--s3) !important;
  color: var(--ink-soft) !important;
}

.code-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s1);
  margin-top: 8px;
}

.code-actions .button {
  flex: 1;
}

.desk-shell {
  padding: var(--s5) 0 var(--s7);
}

.desk-banner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: var(--s3);
  align-items: center;
  padding-bottom: var(--s4);
  border-bottom: 1px solid var(--line);
}

.desk-banner h1 {
  margin: 0;
  font-size: var(--h2);
  font-weight: 500;
}

.session-line {
  margin: var(--s1) 0 0;
  color: var(--muted);
  font-size: var(--small);
}

.session-chip {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-left: var(--s1);
  padding: 0 10px;
  border-radius: 999px;
  background: var(--paper-wash);
  color: var(--brand-deep);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: var(--tiny);
}

.desk-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: var(--s4);
  margin-top: var(--s4);
}

.alias-bench,
.archive-ledger,
.surface-safety {
  min-width: 0;
}

.alias-bench {
  padding: var(--s4);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--paper-soft);
}

.workspace-title {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: var(--s2);
  margin-bottom: var(--s3);
}

.workspace-title h2 {
  margin: 0;
  font-size: var(--h3);
  font-weight: 500;
}

.workspace-title p {
  max-width: 52ch;
  margin: 6px 0 0;
  color: var(--muted);
  font-size: var(--small);
}

.quota-stamp,
.status-pill {
  display: inline-flex;
  align-items: center;
  width: max-content;
  min-height: 26px;
  margin-top: 6px;
  padding: 0 9px;
  border-radius: 999px;
  background: var(--paper-wash);
  color: var(--brand-deep);
  font-size: var(--tiny);
  white-space: nowrap;
}

.alias-compose {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: var(--s1);
  margin-bottom: var(--s3);
}

.alias-input-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-control);
  background: var(--white);
}

.alias-input-wrap:focus-within {
  border-color: var(--brand);
  outline: 2px solid var(--paper-wash);
  outline-offset: 1px;
}

.alias-input-wrap .text-field {
  min-width: 0;
  min-height: 38px;
  border: 0;
  border-radius: 0;
  background: var(--white);
}

.alias-input-wrap .text-field:focus {
  outline: 0;
}

.alias-suffix {
  display: flex;
  flex: none;
  align-items: center;
  padding: 0 11px;
  border-left: 1px solid var(--line);
  border-radius: 0 var(--radius-control) var(--radius-control) 0;
  color: var(--muted);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: var(--tiny);
}

.alias-list,
.archive-list {
  display: grid;
  gap: var(--s1);
  margin-top: var(--s3);
}

.alias-row,
.archive-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: var(--s2);
  padding: var(--s2);
  border-top: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
}

.alias-row .status-pill.is-active {
  background: var(--paper-wash);
  color: var(--brand-deep);
}

.alias-row .status-pill.is-paused {
  background: var(--line);
  color: var(--ink-soft);
}

.alias-address {
  overflow-wrap: anywhere;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: var(--small);
}

.row-actions {
  display: flex;
  flex-wrap: nowrap;
  white-space: nowrap;
  gap: 6px;
  justify-content: flex-end;
}

.row-actions .button {
  min-height: 32px;
  padding: 0 10px;
  font-size: var(--tiny);
}

.archive-ledger {
  grid-column: 1;
  padding: var(--s3);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
}

.archive-ledger .workspace-title {
  align-items: end;
}

.filter-box {
  position: relative;
}

.filter-trigger {
  display: inline-flex;
  align-items: center;
  gap: var(--s1);
  min-height: 40px;
  margin-block: var(--s2);
  padding: 0 11px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-control);
  background: var(--white);
  color: var(--ink-soft);
  font-size: var(--small);
  cursor: pointer;
}

.filter-chevron {
  flex: none;
  width: 6px;
  height: 6px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateY(calc(-50% + 2px)) rotate(45deg);
}

.filter-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  z-index: 5;
  min-width: 120px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: var(--radius-control);
  background: var(--white);
}

.filter-menu button {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 7px 8px;
  border: 0;
  border-radius: 4px;
  background: var(--white);
  color: var(--ink-soft);
  font-size: var(--small);
  text-align: left;
  cursor: pointer;
}

.filter-menu button:hover {
  background: var(--paper-soft);
  color: var(--ink);
}

.archive-row {
  width: 100%;
  border: 0;
  border-top: 1px solid var(--line);
  text-align: left;
  cursor: pointer;
}

.archive-row:hover {
  background: var(--paper-soft);
  color: var(--ink);
}

.archive-row strong,
.archive-row small,
.archive-row time {
  display: block;
}

.archive-row strong {
  font-size: var(--small);
  font-weight: 500;
}

.archive-row small,
.archive-row time {
  margin-top: 4px;
  color: var(--muted);
  font-size: var(--tiny);
}

.archive-detail {
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  margin-top: var(--s3);
  padding: var(--s3);
  border-top: 1px solid var(--line);
  background: var(--white);
}

.archive-meta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: var(--s2);
  padding-bottom: var(--s2);
  color: var(--muted);
  font-size: var(--tiny);
}

.surface-safety {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: start;
  padding: var(--s3);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--white);
}

.surface-safety [data-2fa-badge] {
  margin-bottom: var(--s3);
}

.surface-safety [data-2fa-disable] {
  margin-top: var(--s3);
}

.surface-safety ol {
  margin: var(--s3) 0;
  padding-left: 20px;
  color: var(--muted);
  font-size: var(--small);
}

.surface-safety li + li {
  margin-top: var(--s1);
}

.twofa-setup {
  margin-top: var(--s3);
  padding-top: var(--s3);
  border-top: 1px solid var(--line);
}

.twofa-setup [data-twofa-confirm] {
  margin-top: 24px;
}

.twofa-qr {
  display: grid;
  place-items: center;
  width: 160px;
  aspect-ratio: 1;
  margin: 0 auto var(--s2);
  background: var(--paper-soft);
}

.twofa-qr img {
  width: 144px;
  height: 144px;
}

.console-toast,
[data-inbox-toast] {
  position: fixed;
  right: var(--s3);
  bottom: var(--s3);
  z-index: 60;
  max-width: 320px;
  padding: 12px 16px;
  border-radius: var(--radius-control);
  background: var(--brand-deep);
  color: var(--white);
  font-size: var(--small);
}

.empty-panel {
  margin-top: var(--s3);
  padding: var(--s3) 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: var(--small);
}

.section-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: var(--s3);
}

.content-hero {
  padding: var(--s7) 0 var(--s4);
}

.content-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: calc(var(--h1) * 0.83);
  font-weight: 400;
  line-height: 1.12;
  text-wrap: balance;
}

.content-hero .section-intro {
  max-width: 720px;
  margin-top: var(--s3);
}

.overview-grid,
.legal-glance,
.content-grid,
.check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--s2);
}

.overview-card,
.content-card,
.check-card {
  min-width: 0;
  padding: var(--s3);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--white);
  color: var(--ink);
}

.overview-card h2,
.overview-card h3,
.decision-card h2,
.content-card h2,
.content-card h3,
.check-card h2,
.check-card h3 {
  margin: 0 0 var(--s1);
  font-size: var(--h3);
  font-weight: 500;
}

.decision-card h2 {
  padding-bottom: var(--s1);
  border-bottom: 1px solid var(--line);
}

.overview-card p,
.content-card p,
.check-card p,
.check-card li {
  color: var(--muted);
  font-size: var(--small);
}

.prose-section {
  padding: var(--s5) 0;
}

.prose-section h2 {
  margin: var(--s4) 0 var(--s2);
  font-size: var(--h2);
  font-weight: 500;
}

.prose-section p,
.prose-section li {
  max-width: 82ch;
  color: var(--ink-soft);
  font-size: var(--code);
  line-height: 1.75;
}

.table-scroll {
  max-width: 100%;
  overflow-x: auto;
  margin: var(--s4) 0;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  color: var(--ink);
  font-size: var(--small);
}

.data-table th,
.data-table td {
  padding: 14px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.data-table th {
  background: var(--paper-soft);
  font-weight: 500;
}

.dispatch-hero {
  padding: var(--s7) 0 var(--s4);
}

.dispatch-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: calc(var(--h1) * 0.83);
  font-weight: 400;
  line-height: 1.12;
  text-wrap: balance;
}

.dispatch-count {
  display: grid;
  justify-items: start;
  gap: 2px;
  width: max-content;
  margin: var(--s3) 0 0;
  color: var(--muted);
  font-size: var(--tiny);
}

.dispatch-count [data-dispatch-count] {
  color: var(--brand-hover);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: var(--h3);
  font-weight: 500;
}

.dispatch-list-section {
  padding: 0 0 var(--s7);
}

.dispatch-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--s2);
}

.dispatch-card {
  display: flex;
  flex-direction: column;
  min-height: 286px;
  padding: var(--s3);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
}

.dispatch-card-latest {
  grid-column: 1 / -1;
  min-height: 320px;
}

.dispatch-card:hover {
  border-color: var(--brand);
  background: var(--paper-soft);
  color: var(--ink);
}

.dispatch-card-meta,
.dispatch-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s2);
  color: var(--muted);
  font-size: var(--tiny);
}

.dispatch-card-meta span {
  color: var(--brand-hover);
}

.dispatch-card h2 {
  max-width: 750px;
  margin: var(--s4) 0 var(--s2);
  font-size: calc(var(--h2) * 0.86);
  font-weight: 500;
  line-height: 1.25;
}

.dispatch-card p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: var(--code);
}

.dispatch-card-foot {
  margin-top: auto;
  padding-top: var(--s4);
  border-top: 1px solid var(--line);
}

.dispatch-arrow {
  display: none;
}

.article-wrap,
.article-shell {
  width: min(calc(100% - 48px), var(--article-wrap));
  min-width: min(1080px, calc(100% - 48px));
  margin-inline: auto;
}

.article-hero {
  padding: var(--s4) 0 var(--s5);
  border-bottom: 1px solid var(--line);
}

.article-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s1);
  margin-bottom: var(--s4);
  color: var(--muted);
  font-size: var(--tiny);
}

.article-breadcrumb a:hover {
  color: var(--brand-hover);
}

.article-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  margin: 0 0 20px;
  padding: 0 10px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--paper-soft);
  color: var(--brand-hover);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: var(--tiny);
}

.article-hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: calc(var(--h1) * 0.83);
  font-weight: 400;
  line-height: 1.18;
  text-wrap: balance;
}

.article-lead {
  max-width: 760px;
  margin: var(--s3) 0 0;
  color: var(--muted);
  font-size: var(--body);
  line-height: 1.7;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s1);
  margin-top: var(--s3);
}

.article-meta span,
.article-meta time {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--muted);
  font-size: var(--tiny);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(190px, 240px) minmax(0, 1fr);
  align-items: start;
  gap: var(--s5);
  padding-top: var(--s5);
  padding-bottom: var(--s7);
}

.article-toc {
  position: sticky;
  top: calc(var(--header-h) + var(--s3));
  z-index: 4;
  padding: var(--s3);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--paper-soft);
}

.article-toc strong {
  font-size: var(--small);
  font-weight: 500;
}

.article-toc ol {
  margin: var(--s2) 0 0;
  padding-left: 20px;
  color: var(--muted);
  font-size: var(--small);
}

.article-toc li {
  margin: 0 0 7px;
  padding-left: 4px;
}

.article-toc a:hover {
  color: var(--brand-hover);
}

.toc-count {
  margin: var(--s2) 0 0;
  padding-top: var(--s2);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: var(--tiny);
}

.article-prose {
  min-width: 0;
  color: var(--ink-soft);
  font-size: var(--code);
  line-height: 1.75;
}

.article-prose p {
  margin: 0 0 var(--s2);
}

.article-prose .prose-opening {
  color: var(--ink);
  font-size: var(--body);
  line-height: 1.75;
}

.article-prose h2 {
  margin: 38px 0 14px;
  color: var(--ink);
  font-size: calc(var(--h2) * 0.93);
  font-weight: 500;
  line-height: 1.25;
}

.article-prose h3 {
  margin: 30px 0 10px;
  color: var(--ink);
  font-size: var(--h3);
  font-weight: 600;
}

.article-prose li {
  margin-bottom: 7px;
}

.article-table-wrap {
  max-width: 100%;
  overflow-x: auto;
  margin: var(--s4) 0;
}

.article-prose table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  color: var(--ink-soft);
  font-size: var(--small);
}

.article-prose th,
.article-prose td {
  padding: 13px 14px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.article-prose th {
  background: var(--paper-soft);
  color: var(--ink);
  font-weight: 500;
}

.article-product-cta {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: var(--s3);
  margin-top: var(--s5);
  padding: var(--s4);
  border-radius: var(--radius-card);
  background: var(--brand-deep);
  color: var(--white);
}

.article-product-cta > svg {
  color: var(--brand-pale);
}

.article-product-cta h2 {
  margin: 0 0 var(--s1);
  color: var(--white);
  font-size: calc(var(--h2) * 0.86);
}

.article-product-cta p {
  color: #d8e9e2;
}

.article-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s1);
  margin-top: var(--s3);
}

.article-product-cta .button:not(.button-primary) {
  border-color: #76958a;
  background: var(--white);
  color: var(--brand-deep);
}

.article-recommendation {
  position: fixed;
  right: var(--s3);
  bottom: var(--s3);
  z-index: 44;
  width: min(300px, calc(100vw - 32px));
  padding: var(--s3);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-card);
  background: var(--white);
  color: var(--ink);
}

.article-recommendation svg {
  margin-bottom: var(--s2);
  color: var(--brand-hover);
}

.article-recommendation strong,
.article-recommendation p,
.article-recommendation a {
  display: block;
}

.article-recommendation strong {
  font-size: var(--small);
  font-weight: 600;
}

.article-recommendation p {
  margin: var(--s1) 0 var(--s3);
  color: var(--muted);
  font-size: var(--small);
}

.article-recommendation a {
  color: var(--brand-hover);
  font-size: var(--small);
  font-weight: 500;
}

.article-recommendation .recommend-float-close {
  position: absolute;
  top: 10px;
  right: 10px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-control);
  background: var(--paper-soft);
  color: var(--ink);
  cursor: pointer;
}

@media (max-width: 760px) {
  .page-hero {
    padding: var(--s5) 0 var(--s4);
  }

  .page-hero h1 {
    font-size: calc(var(--h1) * 0.71);
    line-height: 1.16;
  }

  .page-hero h1 br {
    display: none;
  }

  .access-layout,
  .desk-grid,
  .overview-grid,
  .legal-glance,
  .content-grid,
  .check-grid,
  .dispatch-grid,
  .article-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: var(--s4);
  }

  .dispatch-hero {
    padding: var(--s5) 0 var(--s4);
  }

  .dispatch-hero h1,
  .article-hero h1 {
    font-size: calc(var(--h1) * 0.71);
  }

  .dispatch-card-latest {
    grid-column: auto;
  }

  .article-hero {
    padding-top: var(--s4);
  }

  .article-breadcrumb {
    margin-bottom: var(--s3);
  }

  .article-toc {
    position: static;
  }

  .article-product-cta {
    grid-template-columns: minmax(0, 1fr);
    padding: var(--s3);
  }

  .article-recommendation {
    right: var(--s2);
    bottom: var(--s2);
  }

  .access-layout {
    padding-bottom: var(--s5);
  }

  .access-card,
  .alias-bench {
    padding: var(--s3);
  }

  .surface-safety,
  .archive-ledger {
    grid-column: 1;
    grid-row: auto;
  }

  .desk-banner {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
  }

  .desk-banner .button {
    width: max-content;
  }

  .alias-compose {
    grid-template-columns: minmax(0, 1fr);
  }

  .alias-compose > .button {
    width: 100%;
  }

  .alias-input-wrap {
    min-width: 0;
    max-width: 100%;
  }

  .alias-row,
  .archive-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .row-actions {
    justify-content: flex-start;
  }
}
