:root {
  --wrap: 1280px;
  --header-h: 102px;
  --h1: clamp(52px, 5.2vw, 68px);
  --h2: clamp(28px, 3.2vw, 40px);
  --h3: 24px;
  --body: 20px;
  --radius-control: 4px;
  --radius-card: 10px;
  --s1: 12px;
  --s2: 20px;
  --s3: 32px;
  --s4: 52px;
  --s5: 76px;
  --s6: 104px;
  --s7: 160px;
  --paper: #fbf9f6;
  --white: #ffffff;
  --ink: #17202b;
  --muted: #526272;
  --line: #ebe6e1;
  --soft: #f3efeb;
  --brand: #3657c8;
  --brand-deep: #27439f;
  --brand-wash: #e8edff;
  --accent: #d8e1ff;
  --success: #25725a;
  --night: #1c2838;
  --shadow: 0 1px 1px rgba(49, 67, 81, 0.02), 0 8px 24px rgba(49, 67, 81, 0.04);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Noto Sans CJK SC", "Microsoft YaHei", Arial, sans-serif;
  font-size: var(--body);
  line-height: 1.6;
}
button,
input {
  font: inherit;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}
[hidden] {
  display: none !important;
}
.wrap {
  width: min(calc(100% - 48px), var(--wrap));
  margin-inline: auto;
}
.site-header {
  position: sticky;
  z-index: 20;
  inset: 0 0 auto;
  height: var(--header-h);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 44px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 25px;
  font-weight: 750;
  letter-spacing: -0.6px;
}
.brand img {
  width: 38px;
  height: 38px;
}
.primary-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-left: 26px;
  color: var(--muted);
  font-size: 16px;
}
.primary-nav a:hover,
.text-link:hover {
  color: var(--brand);
}
.primary-nav a[aria-current="page"],
.nav-drawer a[aria-current="page"] {
  color: var(--ink);
  font-weight: 750;
  background: var(--brand-wash);
  border-radius: 8px;
  padding: 6px 12px;
}
.nav-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
}
.nav-actions > .button[data-create-mailbox] {
  min-height: 44px;
  padding: 0 16px;
}
.button {
  min-height: 57px;
  padding: 0 25px;
  border: 1px solid var(--brand);
  border-radius: var(--radius-control);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: var(--white);
  background: var(--brand);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}
.button:hover {
  background: var(--brand-deep);
  border-color: var(--brand-deep);
}
.button-outline {
  color: var(--brand);
  background: var(--white);
  border-color: var(--line);
}
.button-outline:hover {
  color: var(--white);
}
.language {
  position: relative;
}
.language-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-control);
  color: var(--ink);
  background: var(--white);
  cursor: pointer;
}
.language-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 160px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--white);
  box-shadow: var(--shadow);
}
.language-menu a {
  display: block;
  padding: 8px 12px;
  border-radius: 4px;
}
.language-menu a:hover,
.language-menu a[aria-current="page"] {
  color: var(--brand);
  background: var(--brand-wash);
}
.menu-toggle,
.nav-drawer {
  display: none;
}
.hero {
  position: relative;
  min-height: 1050px;
  padding-top: 178px;
  isolation: isolate;
}
.aurora {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  width: 48vw;
  height: 980px;
  overflow: hidden;
  opacity: 0.8;
  background: linear-gradient(90deg, transparent 0%, rgba(54, 87, 200, 0.08) 40%, rgba(54, 87, 200, 0.2) 72%, rgba(216, 225, 255, 0.8) 100%);
}
.aurora::before,
.aurora::after {
  content: "";
  position: absolute;
  inset: -10% 4% 4% 30%;
  filter: blur(24px);
  background: repeating-linear-gradient(90deg, transparent 0 48px, rgba(54, 87, 200, 0.22) 54px 74px, transparent 88px 120px);
  transform: skewX(-5deg);
  animation: shimmer 8s ease-in-out infinite alternate;
}
.aurora::after {
  inset: 20% -15% -5% 48%;
  opacity: 0.75;
  filter: blur(42px);
  background: radial-gradient(circle, var(--accent), transparent 65%);
}
@keyframes shimmer {
  to {
    transform: translateX(20px) skewX(-2deg);
    opacity: 0.65;
  }
}
.hero-copy {
  max-width: 990px;
}
.hero h1 {
  max-width: 980px;
  margin: 0;
  font-size: var(--h1);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
  text-wrap: balance;
}
.hero h1 em {
  display: block;
  font-family: inherit;
  font-weight: 600;
  font-style: normal;
}
.hero-lede {
  max-width: 700px;
  margin: 44px 0 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.6;
}
.tool-stage {
  position: relative;
  z-index: 2;
  margin-top: 54px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.45fr);
  gap: 20px;
  align-items: stretch;
}
.address-card,
.inbox-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--white);
  box-shadow: var(--shadow);
}
.address-card {
  position: relative;
  min-height: 628px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.address-card::after {
  display: none;
}
.address-card > * {
  position: relative;
  z-index: 1;
}
.address-card.is-highlighted {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px var(--brand-wash), var(--shadow);
}
.card-label {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.address-value {
  margin: 28px 0 0;
  overflow: hidden;
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: clamp(16px, 1.8vw, 22px);
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}
.address-actions {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.timer {
  color: var(--muted);
  font-size: 16px;
}
.privacy-seal {
  position: relative;
  z-index: 1;
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 16px;
}
.seal-rings {
  width: 92px;
  height: 92px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 0 0 18px var(--brand-wash);
}
.seal-rings img {
  width: 46px;
  height: 46px;
}
.seal-copy strong,
.seal-copy span {
  display: block;
}
.seal-copy span {
  color: var(--muted);
  font-size: 15px;
}
.inbox-card {
  min-height: 628px;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
}
.inbox-head {
  min-height: 78px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.inbox-title {
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.inbox-title h2 {
  margin: 0;
  font-size: 23px;
  line-height: 1.2;
}
.mail-count {
  color: var(--muted);
  font-size: 14px;
}
.refresh-button {
  border: 0;
  color: var(--brand);
  background: transparent;
  font-weight: 700;
  cursor: pointer;
}
.inbox-body {
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(220px, 0.82fr) minmax(0, 1.28fr);
}
.mail-list {
  overflow-y: auto;
  border-right: 1px solid var(--line);
  background: var(--paper);
}
.mail-row {
  width: 100%;
  padding: 22px 20px;
  border: 0;
  border-bottom: 1px solid var(--line);
  display: block;
  text-align: left;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
}
.mail-row:hover,
.mail-row.is-active {
  background: var(--white);
}
.mail-row.is-active {
  box-shadow: inset 4px 0 var(--brand);
}
.mail-from,
.mail-subject,
.mail-preview {
  display: block;
}
.mail-from {
  color: var(--brand);
  font-size: 14px;
  font-weight: 750;
}
.mail-subject {
  margin-top: 7px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.mail-preview {
  margin-top: 6px;
  overflow: hidden;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.mail-reader {
  min-width: 0;
  overflow-y: auto;
  background: var(--white);
}
.demo-mail {
  padding: 30px;
}
.demo-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.demo-brand svg {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
}
.demo-brand strong,
.demo-brand span {
  display: block;
}
.demo-brand span {
  color: var(--muted);
  font-size: 13px;
}
.demo-mail h3 {
  margin: 28px 0 0;
  font-size: 25px;
  line-height: 1.3;
}
.demo-mail p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 16px;
}
.code-block,
.playlist-card {
  margin-top: 24px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--paper);
}
.code-block {
  color: var(--brand);
  font-size: 34px;
  font-weight: 800;
  letter-spacing: 5px;
  text-align: center;
}
.fake-action {
  margin-top: 24px;
  pointer-events: none;
}
.demo-note {
  width: max-content;
  max-width: 100%;
  margin-top: 24px;
  padding: 5px 9px;
  border-radius: 4px;
  color: var(--brand-deep);
  background: var(--brand-wash);
  font-size: 12px;
  font-weight: 700;
}
.section {
  padding: var(--s7) 0;
}
.section-white {
  background: var(--white);
}
.eyebrow {
  width: max-content;
  min-width: 0;
  max-width: min(100%, calc(100vw - 48px));
  margin: 0 0 20px;
  overflow-wrap: anywhere;
  color: var(--brand);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.1em;
}
.section h2 {
  max-width: 1000px;
  margin: 0;
  font-size: var(--h2);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
}
.section-intro {
  max-width: 720px;
  margin: 28px 0 0;
  color: var(--muted);
}
.feature-grid {
  margin-top: var(--s6);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.feature-card {
  min-height: 0;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform 180ms ease;
}
.feature-card:hover {
  transform: translateY(-5px);
}
.orbit-art {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: 10px;
  background: var(--brand-wash);
  color: var(--brand);
}
.orbit-art svg {
  display: block;
  width: 22px;
  height: 22px;
}
.orbit-art::before,
.orbit-art::after {
  display: none;
}
.feature-card h3 {
  margin: 0;
  font-size: var(--h3);
}
.feature-card p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 17px;
}
.quote-section {
  padding: var(--s7) 0;
  background: var(--paper);
}
.quote-shell {
  min-height: 660px;
  padding: 72px;
  border-radius: var(--radius-card);
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 64px;
  align-items: center;
  background: var(--white);
  box-shadow: var(--shadow);
}
.quote-portrait {
  position: relative;
  min-height: 480px;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: linear-gradient(145deg, var(--brand-wash), var(--accent));
}
.quote-portrait::before {
  content: "F";
  position: absolute;
  inset: auto 0 -115px;
  color: var(--brand);
  font-family: inherit;
  font-size: 500px;
  line-height: 1;
  text-align: center;
  opacity: 0.82;
}
.quote-copy blockquote {
  margin: 0;
  font-family: inherit;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.13;
}
.quote-copy p {
  margin: 34px 0 0;
  color: var(--muted);
}
.steps {
  margin-top: var(--s6);
  border-top: 1px solid var(--line);
}
.step {
  padding: 42px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 100px 1fr 1fr;
  gap: 30px;
}
.step-num {
  color: var(--brand);
  font-family: inherit;
  font-size: 42px;
}
.step h3,
.step p {
  margin: 0;
}
.step h3 {
  font-size: 30px;
}
.step p {
  color: var(--muted);
}
.faq-grid {
  margin-top: var(--s6);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  align-items: start;
}
.faq-grid details {
  padding: 26px;
  border-top: 1px solid var(--line);
  background: var(--white);
}
.faq-grid summary {
  cursor: pointer;
  font-weight: 750;
}
.faq-grid p {
  color: var(--muted);
  font-size: 17px;
}
.cta-band {
  padding: var(--s6) 0;
  color: var(--white);
  background: var(--night);
  border-radius: var(--radius-card) var(--radius-card) 0 0;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.cta-inner h2 {
  max-width: 780px;
  margin: 0;
  font-family: inherit;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 400;
  line-height: 1.08;
}
.site-footer {
  padding: 72px 0 28px;
  color: var(--white);
  background: var(--night);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.site-footer .brand img,
.site-footer .footer-brand img {
  content: url("fwdzy-mark-inverse.svg");
}
.footer-layout {
  display: grid;
  grid-template-columns: minmax(200px, 1.15fr) repeat(6, minmax(0, 1fr));
  gap: 48px 20px;
  align-items: start;
}
.footer-brand {
  display: grid;
  gap: 16px;
  align-content: start;
}
.footer-brand .brand {
  color: var(--white);
}
.footer-brand > a[href^="mailto"] {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}
.footer-brand p {
  max-width: 330px;
  color: var(--accent);
  font-size: 16px;
}
.footer-mail {
  display: grid;
  gap: 8px;
  margin: 0;
  max-width: 280px;
}
.footer-mail label {
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
}
.footer-mail input {
  width: 100%;
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}
.footer-mail a {
  display: grid;
  place-items: center;
  min-height: 40px;
  border-radius: 4px;
  background: var(--white);
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}
.footer-search {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 240px) minmax(0, 1fr);
  align-items: end;
  gap: 12px 28px;
  margin: 0;
  padding: 22px 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  max-width: none;
}
.footer-search label {
  display: block;
  margin: 0;
  color: var(--white);
  font-size: 16px;
  font-weight: 650;
  letter-spacing: 0;
  text-transform: none;
}
.footer-group h3 {
  margin: 0 0 16px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.48);
}
.footer-group a {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
}
.footer-group a:hover {
  color: var(--white);
}
.footer-bottom {
  margin-top: 48px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--accent);
  font-size: 13px;
}
.toast {
  position: fixed;
  z-index: 50;
  left: 50%;
  bottom: 28px;
  width: max-content;
  max-width: min(430px, calc(100% - 32px));
  padding: 12px 18px;
  border-radius: 12px;
  color: var(--white);
  background: var(--night);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 12px);
  transition: 180ms ease;
}
.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}
@media (max-width: 980px) {
  .primary-nav,
  .nav-actions > .text-link,
  .nav-actions > .button {
    display: none;
  }
  .nav-actions {
    gap: 10px;
  }
  .menu-toggle {
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    display: grid;
    place-content: center;
    gap: 4px;
    background: var(--white);
  }
  .menu-toggle span {
    width: 19px;
    height: 2px;
    background: var(--ink);
  }
  .nav-drawer {
    position: absolute;
    top: 86px;
    left: 24px;
    right: 24px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius-card);
    background: var(--white);
    box-shadow: var(--shadow);
  }
  .nav-drawer.is-open {
    display: grid;
    gap: 8px;
  }
  .nav-drawer a {
    padding: 10px;
  }
  .tool-stage,
  .quote-shell {
    grid-template-columns: 1fr;
  }
  .address-card {
    min-height: 420px;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .feature-card {
    min-height: 0;
  }
  .footer-layout {
    grid-template-columns: 1.3fr 1fr 1fr;
  }
  .footer-search,
  .footer-brand {
    grid-column: 1 / -1;
  }
}
@media (max-width: 640px) {
  :root {
    --body: 18px;
    --s7: 104px;
  }
  .wrap {
    width: min(calc(100% - 32px), var(--wrap));
  }
  .site-header {
    height: 86px;
  }
  .header-inner {
    gap: 12px;
  }
  .brand {
    gap: 8px;
    font-size: 20px;
  }
  .brand img {
    width: 32px;
    height: 32px;
  }
  .language-toggle {
    padding: 0 10px;
  }
  .hero {
    min-height: 0;
    padding: 132px 0 92px;
  }
  .aurora {
    width: 70vw;
    height: 760px;
    opacity: 0.5;
  }
  .hero h1 {
    font-size: clamp(44px, 13vw, 58px);
  }
  .hero-lede {
    margin-top: 28px;
    font-size: 18px;
  }
  .tool-stage {
    margin-top: 38px;
  }
  .address-card {
    min-height: 390px;
    padding: 26px;
  }
  .address-card::after {
    display: none;
  }
  .address-value {
    font-size: clamp(14px, 4.2vw, 18px);
  }
  .address-actions {
    align-items: flex-start;
    flex-direction: column;
  }
  .address-actions .button {
    width: 100%;
  }
  .inbox-card {
    min-height: 0;
  }
  .inbox-body {
    display: block;
  }
  .mail-list {
    max-height: 360px;
    border-right: 0;
  }
  .mail-reader {
    display: none;
  }
  .section h2 {
    font-size: clamp(26px, 7vw, 36px);
  }
  .feature-grid,
  .steps,
  .faq-grid {
    margin-top: 58px;
  }
  .orbit-art {
    width: 48px;
    height: 48px;
  }
  .quote-shell {
    padding: 20px;
    gap: 36px;
  }
  .quote-portrait {
    min-height: 340px;
  }
  .step {
    grid-template-columns: 64px 1fr;
  }
  .step p {
    grid-column: 2;
  }
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }
  .footer-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 22px;
  }
  .footer-search,
  .footer-brand {
    grid-column: 1 / -1;
  }
  .footer-search {
    grid-template-columns: minmax(0, 1fr);
  }
}
.text-button {
  min-height: 44px;
  padding: 0 8px;
  border: 0;
  color: var(--brand);
  background: transparent;
  font-weight: 700;
  cursor: pointer;
}
.danger-link {
  color: #744b4b;
}
input,
textarea,
.composer,
.alias-composer {
  width: 100%;
  min-width: 0;
  min-height: 52px;
  padding: 11px 14px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: var(--radius-control);
  color: var(--white);
  background: var(--night);
}
input:focus,
textarea:focus {
  border-color: var(--ink);
  outline: none;
}
.footer-search span {
  display: flex;
  align-items: stretch;
  min-width: 0;
}
.footer-search input {
  flex: 1;
  min-width: 0;
  border-right: 0;
  border-radius: var(--radius-control) 0 0 var(--radius-control);
}
.footer-search button {
  flex: none;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid var(--brand);
  border-radius: 0 var(--radius-control) var(--radius-control) 0;
  color: var(--white);
  background: var(--brand);
}
.status-pill {
  width: max-content;
  max-width: 100%;
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--success);
  background: #e4f3ed;
  font-size: 13px;
  font-weight: 750;
}
.reader-head {
  padding: 28px;
  border-bottom: 1px solid var(--line);
}
.reader-head h3 {
  margin: 12px 0 0;
}
.reader-meta,
.real-meta {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
}
.message-frame {
  width: 100%;
  min-height: 420px;
  border: 0;
}
.mail-delete {
  margin: 24px;
}
.mail-sheet {
  position: fixed;
  z-index: 60;
  inset: 0;
  overflow-y: auto;
  background: var(--white);
}
.sheet-close {
  position: sticky;
  z-index: 2;
  top: 12px;
  margin: 12px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  background: var(--white);
}
.error-page {
  width: min(calc(100% - 32px), 720px);
  min-height: 100vh;
  margin: auto;
  display: grid;
  place-content: center;
  justify-items: start;
}
.error-page h1 {
  margin: 0;
  font-size: clamp(42px, 7vw, 64px);
  line-height: 1.1;
}
.error-page p:not(.eyebrow) {
  color: var(--muted);
}
.access-page,
.access-main,
.legal-main,
.guide-main {
  min-width: 0;
}
.brand-name {
  display: inline-block;
  min-width: 76px;
}
.page-hero,
.access-intro {
  padding: 132px 0 104px;
}
.page-hero .eyebrow + h1,
.access-intro .eyebrow + h1,
.studio-head .eyebrow + h1 {
  margin-top: 20px;
}
.page-hero h1,
.access-intro h1,
.studio-head h1 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(44px, 5vw, 64px);
  font-weight: 520;
  line-height: 1.12;
  letter-spacing: -1.2px;
}
.access-intro h1 em {
  display: block;
  font: inherit;
  font-style: normal;
}
.access-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  gap: 76px;
  align-items: center;
}
.auth-conversation {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--white);
  box-shadow: var(--shadow);
}
.auth-note {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  background: var(--brand-wash);
}
.auth-note p {
  margin: 0;
  font-size: 15px;
}
.auth-progress {
  margin-top: 28px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.auth-progress span {
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--muted);
  background: var(--soft);
  font-size: 13px;
}
.auth-progress .is-current {
  color: var(--white);
  background: var(--brand);
}
.auth-conversation h2 {
  margin: 24px 0 0;
  font-size: 30px;
}
.auth-conversation form {
  margin-top: 28px;
  display: grid;
  gap: 10px;
}
.auth-conversation form > .button,
.auth-conversation .action-row {
  margin-top: 16px;
}
.target-line {
  margin: 0 0 14px;
  color: var(--muted);
}
.action-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.route-studio {
  padding: 132px 0 160px;
}
.studio-head {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: flex-end;
}
.studio-layout {
  margin-top: 72px;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(300px, 0.7fr);
  gap: 24px;
}
.identity-canvas,
.delivery-ledger,
.guard-rail {
  min-width: 0;
  padding: 34px;
}
.identity-canvas {
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--white);
  box-shadow: var(--shadow);
}
.delivery-ledger {
  border-radius: var(--radius-card);
  color: var(--white);
  background: var(--night);
}
.delivery-ledger .empty-state,
.delivery-ledger .real-meta,
.delivery-ledger header p {
  color: var(--accent);
}
.delivery-ledger .status-pill {
  color: var(--success);
  background: #e4f3ed;
}
.guard-rail {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: start;
  border-radius: var(--radius-card);
  background: var(--brand-wash);
}
.identity-canvas header,
.ledger-tools {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
}
.identity-canvas h2,
.delivery-ledger h2,
.guard-rail h2 {
  margin: 8px 0 0;
  font-size: 32px;
  line-height: 1.2;
}
.identity-canvas header p,
.delivery-ledger header p,
.guard-rail > p {
  margin: 10px 0 0;
}
.surface-index {
  color: var(--brand);
  font-weight: 800;
}
.quota {
  white-space: nowrap;
  color: var(--brand);
}
.alias-composer {
  margin-top: 32px;
  padding: 24px;
  display: grid;
  gap: 10px;
}
.alias-field {
  display: flex;
  align-items: stretch;
}
.alias-field input {
  flex: 1;
  border-radius: 4px 0 0 4px;
  color: var(--white);
  background: var(--night);
}
.alias-field span {
  flex: none;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-left: 0;
  border-radius: 0 4px 4px 0;
  display: grid;
  place-items: center;
  white-space: nowrap;
  background: var(--soft);
}
.alias-composer .action-row {
  margin-top: 14px;
  margin-bottom: 24px;
}
.empty-state {
  margin-top: 24px;
  padding: 24px;
  border: 1px dashed var(--line);
  border-radius: var(--radius-card);
}
.empty-state p {
  margin: 8px 0 0;
  color: var(--muted);
}
.alias-table-wrap {
  margin-top: 24px;
  overflow-x: auto;
}
table {
  width: 100%;
  border-collapse: collapse;
}
th,
td {
  padding: 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
.alias-table th:nth-last-child(-n+2),
.alias-table td:nth-last-child(-n+2) {
  white-space: nowrap;
}
.alias-row-actions {
  display: flex;
  gap: 8px;
  flex-wrap: nowrap;
}
.status-pill.is-active {
  color: var(--success);
  background: #e4f3ed;
}
.status-pill.is-paused {
  color: #744b4b;
  background: #f5e7e5;
}
.delivery-ledger {
  grid-column: 1;
}
.ledger-tools {
  margin-top: 28px;
  align-items: center;
}
.filter-menu {
  position: relative;
}
.filter-trigger {
  position: relative;
  min-height: 44px;
  padding: 0 38px 0 14px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-control);
  color: var(--white);
  background: transparent;
}
.filter-trigger::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 14px;
  width: 7px;
  height: 7px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateY(calc(-50% - 0.28em)) rotate(45deg);
}
.filter-trigger {
  margin-block: 16px;
}
.filter-options {
  position: absolute;
  z-index: 4;
  top: calc(100% + 8px);
  min-width: 150px;
  padding: 8px;
  border-radius: var(--radius-card);
  background: var(--white);
  box-shadow: var(--shadow);
}
.filter-options button {
  width: 100%;
  min-height: 40px;
  padding: 9px;
  border: 0;
  display: flex;
  align-items: center;
  text-align: left;
  background: transparent;
}
.delivery-ledger .text-button {
  color: var(--accent);
}
.delivery-ledger input,
.delivery-ledger textarea {
  color: var(--white);
  background: var(--night);
  border-color: rgba(255,255,255,.25);
}
.ledger-list {
  margin-top: 24px;
  display: grid;
  gap: 10px;
}
.ledger-row {
  width: 100%;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-card);
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  gap: 8px 16px;
  text-align: left;
  color: var(--white);
  background: rgba(255,255,255,.04);
}
.archive-detail {
  min-width: 0;
  max-width: 100%;
  margin-top: 24px;
  overflow-wrap: anywhere;
}
.archive-detail iframe {
  max-width: 100%;
}
.archive-detail h3 {
  margin: 12px 0 0;
}
.guard-rail ol {
  padding-left: 24px;
}
.guard-rail li + li {
  margin-top: 10px;
}
.guard-rail > .button,
.twofa-setup,
.twofa-disable {
  margin-top: 24px;
}
.twofa-setup,
.twofa-disable {
  padding: 20px;
  border-radius: 14px;
  display: grid;
  gap: 10px;
  background: var(--white);
}
.twofa-qr-plate {
  margin: 0;
}
.twofa-qr-plate figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
}
.twofa-howto {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 8px;
}
.intent-strip {
  border-top: 1px solid var(--line);
}
.intent-strip .action-row {
  margin-top: 28px;
}
.alias-field:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(54,87,200,.14);
}
.alias-field:focus-within input:focus {
  outline: none;
}
.attachment-link,
.attachment-note {
  margin-top: 12px;
  display: block;
}
.secret-line {
  display: flex;
  align-items: center;
  gap: 8px;
}
.secret-line code {
  min-width: 0;
  overflow-wrap: anywhere;
}
.confirm-layer {
  position: fixed;
  z-index: 70;
  inset: 0;
  padding: 20px;
  display: grid;
  place-items: center;
  background: rgba(23,32,43,.64);
}
.confirm-card {
  width: min(100%, 480px);
  padding: 30px;
  border-radius: var(--radius-card);
  background: var(--white);
}
.confirm-card h2 {
  margin: 0;
}
.legal-summary {
  padding: 0 0 104px;
}
.overview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.overview-card {
  min-width: 0;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--white);
  box-shadow: var(--shadow);
}
.overview-card strong {
  font-size: 24px;
}
.overview-card p {
  margin: 10px 0 0;
  color: var(--muted);
}
.legal-prose {
  padding-bottom: 160px;
}
.legal-prose > article,
.legal-prose > h2,
.legal-prose > .table-scroll {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}
.legal-prose > article {
  margin-top: 72px;
}
.legal-prose h2 {
  font-size: 34px;
  line-height: 1.2;
}
.legal-prose p,
.legal-prose li {
  color: var(--muted);
}
.table-scroll {
  margin-bottom: 72px;
  overflow-x: auto;
}
.allow-deny {
  max-width: 1100px;
  margin: 0 auto 104px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 20px;
}
.allow-deny article {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--white);
}
@media (max-width: 900px) {
  .access-intro-grid,
  .studio-layout {
    grid-template-columns: minmax(0,1fr);
  }
  .guard-rail {
    grid-column: 1;
    grid-row: auto;
  }
}
@media (max-width: 640px) {
  .overview-grid,
  .allow-deny {
    grid-template-columns: minmax(0,1fr);
  }
  .studio-head,
  .identity-canvas header {
    align-items: flex-start;
    flex-direction: column;
  }
  .identity-canvas,
  .delivery-ledger,
  .guard-rail,
  .auth-conversation {
    padding: 22px;
  }
  .alias-field span {
    padding-inline: 9px;
    font-size: 14px;
  }
}
.decision-section,
.planner-section {
  padding: 0 0 104px;
}
.decision-path,
.timeline,
.action-explain,
.duration-bands,
.scenario-list,
.note-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.decision-path article,
.timeline article,
.action-explain article,
.duration-bands article,
.scenario-list article,
.note-columns article {
  min-width: 0;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--white);
  box-shadow: var(--shadow);
}
.decision-path span,
.timeline span {
  color: var(--brand);
  font-weight: 800;
}
.decision-path h3,
.timeline h3,
.action-explain h3,
.note-columns h3 {
  margin: 12px 0 0;
}
.decision-path p,
.timeline p,
.action-explain p,
.duration-bands p,
.scenario-list p,
.note-columns p {
  color: var(--muted);
}
.named-decision-table {
  margin-top: 64px;
}
.scenario-list {
  margin-top: 64px;
}
.scenario-list article {
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  align-items: start;
  gap: 10px;
}
.scenario-list p {
  grid-column: 1 / -1;
  margin: 0;
}
.section-cta {
  padding-top: 48px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.planner-shell {
  padding: 44px;
  border-radius: var(--radius-card);
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(280px,.7fr);
  gap: 44px;
  color: var(--white);
  background: var(--night);
}
.range-readout {
  margin-top: 20px;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 16px;
}
.range-readout input,
.range-readout input[type="range"] {
  flex: 1 1 auto;
  width: auto;
  min-width: 0;
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  accent-color: var(--brand);
}
.range-readout strong {
  flex: 0 0 auto;
  min-width: 4.5em;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .1);
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  white-space: nowrap;
}
.planner-shell fieldset {
  margin-top: 28px;
  border: 1px solid rgba(255,255,255,.2);
}
.planner-shell fieldset label {
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.planner-shell input[type="radio"] {
  width: auto;
  min-height: auto;
}
.planner-result {
  padding: 28px;
  border-radius: var(--radius-card);
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--white);
  font-size: 24px;
  font-weight: 700;
}
.timeline,
.action-explain,
.duration-bands,
.note-columns {
  margin-top: 64px;
}
.long-note {
  max-width: 800px;
  margin: 48px 0 0;
  color: var(--muted);
}
@media (max-width: 640px) {
  .decision-path,
  .timeline,
  .action-explain,
  .duration-bands,
  .scenario-list,
  .note-columns,
  .planner-shell {
    grid-template-columns: minmax(0,1fr);
  }
  .planner-shell {
    padding: 24px;
  }
}
.route-diagnostic,
.manual-section,
.audit-section {
  padding: 0 0 104px;
}
.route-stops {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}
.route-stops li {
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 110px minmax(0,1fr);
  gap: 28px;
  align-items: start;
}
.route-stops li > span,
.manual-spread article > span,
.priority-stack article > span {
  color: var(--brand);
  font-weight: 800;
}
.route-stops h2 {
  margin: 0;
  font-size: 30px;
}
.route-stops p {
  color: var(--muted);
}
.symptom-grid,
.risk-ladder,
.priority-stack {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 20px;
}
.symptom-grid article,
.risk-ladder article,
.priority-stack article {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--white);
  box-shadow: var(--shadow);
}
.symptom-grid p,
.risk-ladder p,
.priority-stack p {
  color: var(--muted);
}
.manual-spread {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 20px;
}
.manual-spread article {
  padding: 30px;
  border-radius: var(--radius-card);
  background: var(--white);
  box-shadow: var(--shadow);
}
.manual-spread h2 {
  font-size: 30px;
}
.manual-spread li + li {
  margin-top: 10px;
}
.manual-spread p {
  color: var(--muted);
}
.audit-board {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 16px;
}
.audit-board fieldset {
  display: flex;
  min-width: 0;
  margin: 0;
  padding: 0 0 16px;
  flex-direction: column;
  gap: 8px;
  border: 0;
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.audit-board legend {
  display: block;
  width: 100%;
  margin: 0 0 4px;
  padding: 16px 18px 12px;
  border-bottom: 1px solid var(--line);
  background: var(--soft);
  border-radius: 16px 16px 0 0;
  color: var(--ink);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
}
.audit-board label {
  margin: 0 14px;
  padding: 12px 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border-radius: 10px;
  background: var(--paper);
  color: var(--ink);
  font-size: 15px;
  line-height: 1.45;
}
.audit-board input {
  width: auto;
  min-width: 18px;
  min-height: 18px;
  margin-top: 2px;
  accent-color: var(--brand);
}
.audit-result {
  grid-column: 1 / -1;
  padding: 30px;
  border-radius: var(--radius-card);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: var(--white);
  background: var(--night);
}
.journal-main {
  min-width: 0;
}
.count-pill {
  margin-top: 20px;
  display: block;
  color: var(--brand);
  font-weight: 800;
}
.journal-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 20px;
}
.journal-card,
.decision-card {
  min-width: 0;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--white);
  box-shadow: var(--shadow);
}
.journal-card > span,
.decision-card > span {
  color: var(--brand);
  font-weight: 800;
}
.journal-card time {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}
.decision-card h2 {
  margin: 14px 0 0;
  font-size: 18px;
}
.journal-card h3,
.decision-card h3 {
  margin: 14px 0 0;
  font-size: 28px;
}
.journal-card p,
.decision-card p {
  color: var(--muted);
}
.timeline article {
  align-items: start;
}
.timeline article h3,
.timeline h3 {
  margin-top: 0;
}
.audit-table,
.stop-table {
  margin-top: 48px;
}
.planner-shell input:not([type="range"]),
.planner-shell fieldset,
.site-footer input,
.site-footer .footer-search,
.delivery-ledger input,
.delivery-ledger textarea,
.delivery-ledger .filter-trigger,
.delivery-ledger .filter-menu,
.confirm-layer input,
.cta-band input {
  color: var(--white);
  background: var(--night);
  border-color: rgba(255,255,255,.25);
}
@media (max-width: 700px) {
  .manual-spread,
  .audit-board,
  .symptom-grid,
  .risk-ladder,
  .priority-stack,
  .journal-grid {
    grid-template-columns: minmax(0,1fr);
  }
  .route-stops li {
    grid-template-columns: minmax(0,1fr);
  }
  .audit-result {
    grid-column: 1;
    flex-direction: column;
  }
}
.section h2.journal-tools-title {
  margin: 104px 0 0;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}
.journal-grid-tools {
  margin-top: 32px;
}
.article-main {
  min-width: 0;
}
.article-hero {
  padding: 132px 0 76px;
}
.article-shell {
  width: min(calc(100% - 48px), 1140px);
  margin-inline: auto;
}
.article-breadcrumb {
  margin-bottom: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  color: var(--muted);
  font-size: 15px;
}
.article-breadcrumb a {
  color: var(--brand);
}
.article-hero h1 {
  margin: 18px 0 0;
  font-size: clamp(44px, 5vw, 64px);
  font-weight: 520;
  line-height: 1.08;
  letter-spacing: -1.2px;
}
.article-deck {
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 21px;
}
.article-meta {
  margin: 30px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.article-meta span,
.article-meta time {
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: var(--white);
  font-size: 14px;
}
.article-body {
  padding: 0 0 150px;
}
.article-toc {
  position: relative;
  z-index: 2;
  margin-bottom: 64px;
  padding: 28px 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--white);
  box-shadow: var(--shadow);
}
.article-toc h2 {
  margin: 0;
  font-size: 24px;
}
.article-toc ol {
  margin: 16px 0 0;
  padding-left: 24px;
}
.article-toc li,
.article-prose li {
  margin: 0 0 8px;
}
.article-toc a {
  color: var(--brand);
}
.article-toc .blog-count {
  margin-top: 18px;
  display: inline-block;
  color: var(--muted);
  font-size: 14px;
}
.article-prose h2 {
  margin: 72px 0 18px;
  font-size: 29px;
  line-height: 1.25;
}
.article-prose h3 {
  margin: 34px 0 12px;
  font-size: 22px;
}
.article-prose p,
.article-prose ul,
.article-prose ol {
  margin-top: 0;
  margin-bottom: 20px;
  color: var(--muted);
}
.article-prose strong {
  color: var(--ink);
}
.article-note {
  margin: 34px 0;
  padding: 24px 26px;
  border-left: 3px solid var(--brand);
  background: var(--brand-wash);
}
.article-cta {
  margin-top: 86px;
  padding: 38px;
  border-radius: var(--radius-card);
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  color: var(--white);
  background: var(--night);
}
.article-cta svg {
  width: 56px;
  height: 56px;
}
.article-cta h2 {
  margin: 0 0 8px;
  font-size: 26px;
}
.article-cta p {
  margin: 0;
  color: #dce4ee;
}
.article-cta .button {
  background: var(--brand);
}
.recommend-float {
  position: fixed;
  z-index: 50;
  right: 24px;
  bottom: 24px;
  width: min(460px, calc(100% - 48px));
  padding: 18px 54px 18px 18px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
  background: var(--night);
  box-shadow: var(--shadow);
}
.recommend-float svg {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
}
.recommend-float a {
  font-size: 15px;
  line-height: 1.35;
}
.recommend-float a strong {
  display: block;
}
.recommend-float-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 34px;
  height: 34px;
  border: 0;
  color: var(--white);
  background: transparent;
  cursor: pointer;
}
@media (max-width: 700px) {
  .article-hero {
    padding: 84px 0 54px;
  }
  .article-shell {
    width: min(calc(100% - 32px), 1140px);
  }
  .article-cta {
    grid-template-columns: minmax(0, 1fr);
    padding: 28px;
  }
  .article-cta .button {
    justify-self: start;
  }
  .recommend-float {
    right: 16px;
    bottom: 16px;
    width: calc(100% - 32px);
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }
}
.studio-layout {
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
}
.studio-head h1 {
  max-width: 720px;
  font-size: clamp(32px, 3.6vw, 44px);
  line-height: 1.15;
}
.studio-head [data-account-line] {
  display: inline-block;
  margin-top: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--ink);
  font-size: 14px;
}
.surface-index {
  display: none;
}
.identity-canvas,
.delivery-ledger,
.guard-rail {
  grid-column: auto;
  grid-row: auto;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--shadow);
}
.guard-rail {
  background: var(--soft);
  box-shadow: none;
}
.delivery-ledger .empty-state,
.delivery-ledger .real-meta,
.delivery-ledger header p,
.delivery-ledger .text-button {
  color: var(--muted);
}
.delivery-ledger .filter-trigger,
.delivery-ledger input,
.delivery-ledger textarea,
.delivery-ledger .filter-menu {
  color: var(--ink);
  background: var(--white);
  border-color: var(--line);
}
.alias-composer {
  border-radius: var(--radius-card);
}
.alias-field input {
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
}
.alias-field span {
  background: var(--white);
}
.guard-rail ol {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: guard-step;
}
.guard-rail li {
  position: relative;
  padding: 12px 14px 12px 44px;
  border-radius: 10px;
  background: var(--white);
}
.guard-rail li::before {
  counter-increment: guard-step;
  content: counter(guard-step);
  position: absolute;
  left: 12px;
  top: 12px;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--brand-wash);
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
}
body.sheet-open {
  overflow: hidden;
}
body.sheet-open .quote-portrait::before {
  visibility: hidden;
}
.mail-sheet {
  z-index: 80;
}
.sheet-close {
  position: sticky;
  top: 12px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  margin: 16px;
  padding: 10px 16px;
  border-radius: 999px;
}
.delivery-ledger .ledger-row {
  color: var(--ink);
  background: var(--soft);
  border-color: var(--line);
}
@media (max-width: 640px) {
  .address-actions {
    position: relative;
    z-index: 2;
  }
  .timer {
    order: -1;
    width: 100%;
    margin: 0 0 8px;
  }
  .privacy-seal {
    margin-top: 20px;
  }
  .seal-rings {
    width: 40px;
    height: 40px;
    box-shadow: none;
  }
  .seal-rings img {
    width: 22px;
    height: 22px;
  }
}
