/* ── uff.email editorial (V8) ── */

* { box-sizing: border-box; }
[data-i18n][hidden] { display: none !important; }

:root {
  --bg: #fffcf5;
  --ink: #111111;
  --muted: rgba(17, 17, 17, 0.6);
  --dim: rgba(17, 17, 17, 0.4);
  --faint: rgba(17, 17, 17, 0.3);
  --line: rgba(17, 17, 17, 0.1);
  --line-soft: rgba(17, 17, 17, 0.06);
  --highlight: #ffe066;
  --highlight-soft: rgba(255, 224, 102, 0.7);
  --brand-grad: linear-gradient(135deg, #6366f1, #8b5cf6 50%, #0ea5e9);
  --accent: #6366f1;
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --mono: "SF Mono", ui-monospace, "Menlo", "Consolas", monospace;
  --hand: "Caveat", "Comic Sans MS", cursive;
  --ui: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
a { color: inherit; }

.container { width: min(720px, calc(100% - 48px)); margin: 0 auto; }
.container-wide { width: min(1080px, calc(100% - 48px)); margin: 0 auto; }
.container.narrow { width: min(660px, calc(100% - 48px)); }

/* ── brand: gradient uff.email (serif) ── */
.email, .brand-grad {
  background: var(--brand-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ── lang switch ── */
#lang-switch {
  appearance: none;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--dim);
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  cursor: pointer;
}
#lang-switch:hover { color: var(--ink); }

/* ── header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 252, 245, 0.85);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line-soft);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 60px;
}
.wordmark {
  font-family: var(--ui);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-decoration: none;
  color: var(--ink);
}
.header-tagline { font-size: 12px; color: var(--dim); white-space: nowrap; }
.header-actions { display: flex; align-items: center; gap: 20px; }
.nav { display: flex; align-items: center; gap: 16px; }
.nav a { text-decoration: none; font-size: 13px; color: var(--muted); }
.nav a:hover { color: var(--ink); }
.nav a.nav-cta {
  background: #000;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 999px;
}
.nav a.nav-cta:hover { background: #333; color: #fff; }

/* ── buttons ── */
.button {
  display: inline-block;
  background: #000;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.18s ease, transform 0.18s ease;
}
.button:hover { background: #333; transform: translateY(-1px); }
.button .arrow { font-weight: 400; margin-left: 2px; }
.button-block { width: 100%; text-align: center; }

/* ── hero ── */
.hero { padding: 40px 0 0; text-align: center; }
.hero-title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(38px, 8vw, 56px);
  line-height: 1.0;
  letter-spacing: -0.04em;
  font-weight: 600;
}
.hero-title .title-sub { display: inline-block; margin-top: 8px; }

.hero-address-wrap { position: relative; margin: 88px 0 0; }
.annotate {
  position: absolute;
  top: -56px;
  left: -106px;
  z-index: 20;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}
.annotate .note {
  display: block;
  font-family: var(--hand);
  font-size: 24px;
  line-height: 1;
  color: var(--ink);
  transform: rotate(-8deg);
  transform-origin: left bottom;
}
.annotate svg { display: block; margin-top: 6px; margin-left: 20px; }

.hero-address-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px 24px;
  animation: pulseSoft 2.2s ease-in-out infinite;
}
.hero-address-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 28px;
  background: rgba(255, 224, 102, 0.2);
  filter: blur(18px);
  transform: translateY(8px);
  z-index: -1;
}
.hero-address-label {
  display: block;
  font-family: var(--ui);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.3;
  text-align: center;
  margin-bottom: 16px;
}
.hero-address-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 4px 4px;
}
.handle-box-wrap { position: relative; }
.handle-marker {
  position: absolute;
  inset: 0;
  background: var(--highlight);
  border-radius: 14px;
  transform: rotate(-1.2deg) scale(1.04) translateY(2px);
}
.handle-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 14px;
  border: 2px solid #000;
  box-shadow: 0 2px 0 #111;
  padding: 8px 18px;
  min-width: 200px;
}
.handle-input {
  font-family: var(--ui);
  font-weight: 800;
  font-size: clamp(30px, 7vw, 42px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
  background: transparent;
  border: 0;
  outline: none;
  text-align: center;
  min-width: 86px;
  max-width: 220px;
  transition: opacity 0.18s ease;
}
.handle-input:focus-visible { outline: none; }
.handle-cursor {
  width: 3px;
  height: 28px;
  margin-left: 3px;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 999px;
  animation: blink 1s step-end infinite;
  flex-shrink: 0;
  transition: opacity 0.15s ease;
}
.handle-box:focus-within .handle-cursor { opacity: 0; }
.hero-address-suffix {
  font-family: var(--ui);
  font-size: clamp(26px, 6vw, 38px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-left: 4px;
  color: var(--ink);
}

.chips { margin-top: 28px; display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; align-items: center; }
.chip-label { font-family: var(--hand); font-size: 18px; opacity: 0.6; margin-right: 4px; }
.chip {
  font-family: var(--sans);
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--ink);
  cursor: pointer;
  transition: all 0.15s ease;
}
.chip:hover { border-color: rgba(17,17,17,0.25); background: #fff; }
.chip[aria-pressed="true"] {
  background: #000;
  color: #fff;
  border-color: #000;
  box-shadow: 0 2px 0 #111;
}
.chip-tail { font-family: var(--hand); font-size: 16px; opacity: 0.4; margin-left: 4px; }
.hero-reserve {
  display: inline-block;
  margin-top: 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--dim);
  text-decoration: none;
}
.hero-reserve:hover { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }

.live-note { margin-top: 20px; font-size: 12px; opacity: 0.4; text-align: center; }
.live-note b { font-weight: 600; color: rgba(17,17,17,0.7); }

.hero-sub {
  margin: 40px auto 0;
  max-width: 52ch;
  font-size: 18px;
  line-height: 1.6;
  opacity: 0.7;
  text-align: center;
}
.hero-sub strong { color: var(--ink); font-weight: 600; }

.hero-reframe {
  margin: 40px auto 0;
  font-family: var(--serif);
  font-size: clamp(20px, 3.4vw, 26px);
  line-height: 1.25;
  font-weight: 600;
  letter-spacing: -0.01em;
}

/* drag / cross lists */
.drag-list, .cross-list {
  list-style: none;
  margin: 36px auto 0;
  padding: 0;
  display: grid;
  justify-content: center;
  row-gap: 6px;
  column-gap: 14px;
  font-size: 15px;
  color: var(--muted);
  text-align: left;
}
.drag-list { grid-template-columns: max-content auto max-content; }
.cross-list { grid-template-columns: max-content max-content auto max-content; }
.drag-list li, .cross-list li { display: contents; }
.drag-list .what, .cross-list .what { text-align: right; }
.drag-arrow { color: var(--dim); text-align: center; }
.drag-list .tool { color: var(--dim); }
.cross-list .struck { color: var(--dim); text-decoration: line-through; text-decoration-thickness: 1.5px; }
.cross-list .to-brand { font-family: var(--ui); font-weight: 800; letter-spacing: -0.03em; color: var(--ink); }

/* ── demo email ── */
.demo { margin-top: 40px; }
.demo-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  text-align: left;
}
.demo-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.05);
}
.demo-to {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.demo-dot { display: inline-block; width: 8px; height: 8px; background: var(--highlight); border-radius: 999px; margin-right: 8px; }
.demo-fwd { font-size: 11px; opacity: 0.4; }
.demo-body { padding: 20px; }
.demo-forward { margin: 0; font-size: 13.5px; line-height: 1.6; opacity: 0.8; }
.demo-reply {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px dashed var(--line);
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.demo-avatar {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}
.demo-reply-body { font-size: 13.5px; line-height: 1.55; }
.demo-reply-body strong { font-weight: 600; }
.demo-reply-body .bullets { opacity: 0.6; display: block; margin-top: 2px; }
.demo-note { margin: 12px 0 0; font-size: 11px; text-align: center; opacity: 0.4; }

.demo-cta { text-align: center; margin-top: 32px; margin-bottom: 20px; }
.demo-cta-note { margin: 22px 0 0; font-size: 12px; opacity: 0.5; }

/* ── sections ── */
.section { padding: 64px 0; }
.section-rule { border-top: 1px solid var(--line); }
.rule { height: 1px; background: var(--line); margin: 0; border: 0; }
.eyebrow {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.4;
  text-align: center;
  margin: 0 0 24px;
}
h2.section-title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(32px, 6vw, 40px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  font-weight: 600;
  text-align: center;
}
.section-deck { margin: 12px auto 0; font-size: 15px; opacity: 0.6; max-width: 48ch; line-height: 1.6; text-align: center; }
.section-lead { margin: 24px 0 0; font-family: var(--serif); font-size: clamp(26px, 4.5vw, 30px); line-height: 1.25; letter-spacing: -0.02em; text-align: center; }
.section-lead + .section-deck { margin-top: 20px; }

/* what is it — numbered list */
.num-list { margin: 40px 0 0; display: flex; flex-direction: column; gap: 32px; }
.num-item { display: flex; gap: 16px; }
.num-item .num {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 700;
  opacity: 0.3;
  width: 24px;
  flex-shrink: 0;
}
.num-item h3 { margin: 0; font-family: var(--serif); font-size: 19px; font-weight: 600; }
.num-item p { margin: 6px 0 0; font-size: 14.5px; line-height: 1.6; opacity: 0.6; max-width: 48ch; }

/* three ways — divided list */
.ways { margin: 40px 0 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.way { display: flex; gap: 20px; padding: 28px 0; border-bottom: 1px solid var(--line-soft); }
.way:last-child { border-bottom: 0; }
.way-badge-wrap { width: 88px; flex-shrink: 0; }
.way-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
}
.way-badge.black { background: #000; color: #fff; }
.way-badge.yellow { background: var(--highlight); color: #000; }
.way-badge.outline { border: 1px solid rgba(17,17,17,0.15); }
.way h3 { margin: 0; font-family: var(--serif); font-size: 18px; font-weight: 600; }
.way p { margin: 8px 0 0; font-size: 14px; line-height: 1.6; opacity: 0.6; max-width: 44ch; }
.way-example { margin: 12px 0 0; font-family: var(--mono); font-size: 11px; opacity: 0.4; }

/* delegate list */
.delegate-list { margin: 32px 0 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.delegate-list li {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-soft);
}
.delegate-list li:last-child { border-bottom: 0; }
.delegate-ask { font-size: 14.5px; font-weight: 500; line-height: 1.35; }
.delegate-ask .arrow { color: var(--ink); opacity: 0.5; }
.delegate-result {
  font-size: 12.5px;
  opacity: 0.4;
  text-align: right;
  flex-shrink: 0;
  max-width: 20ch;
}

/* background trio */
.trio-head { margin-top: 56px; text-align: center; }
.trio-head h3 { margin: 0; font-family: var(--serif); font-size: 22px; font-weight: 600; }
.trio-head p { margin: 4px 0 0; font-size: 13px; opacity: 0.5; }
.trio { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.trio-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-radius: 14px;
  padding: 16px 20px;
  background: #fff;
  border: 1px solid var(--line);
}
.trio-card.yellow { background: var(--highlight-soft); border-color: transparent; }
.trio-card span { font-size: 13.5px; }
.trio-card .what { font-weight: 700; }
.trio-card .mono { font-family: var(--mono); font-size: 11px; opacity: 0.6; }

/* privacy */
.privacy-card {
  margin: 40px auto 0;
  max-width: 480px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px;
}
.privacy-card-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  opacity: 0.4;
  margin-bottom: 12px;
}
.inbox-list { display: flex; flex-direction: column; gap: 8px; }
.inbox-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(17, 17, 17, 0.04);
  font-size: 13px;
  opacity: 0.6;
}
.inbox-item .stays { font-size: 10px; }
.inbox-item.forwarded { background: var(--highlight); opacity: 1; font-weight: 500; }
.inbox-item.forwarded .fwd { font-size: 11px; }
.privacy-divider { display: flex; justify-content: center; margin: 16px 0; }
.privacy-divider .bar { width: 1px; height: 32px; background: rgba(17,17,17,0.2); }
.isolated {
  background: #000;
  color: #fff;
  border-radius: 14px;
  padding: 16px;
}
.isolated .title { font-size: 12px; font-weight: 500; }
.isolated .sub { font-size: 11px; opacity: 0.6; margin-top: 8px; line-height: 1.5; }
.privacy-foot { margin: 12px 0 0; font-size: 11px; text-align: center; opacity: 0.4; }

/* pricing */
.pricing-card {
  margin: 32px auto 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.pricing-top { display: flex; align-items: center; justify-content: space-between; }
.pricing-handle { font-family: var(--ui); font-size: 20px; font-weight: 800; letter-spacing: -0.03em; }
.pricing-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--highlight);
}
.pricing-price-row { margin-top: 24px; display: flex; align-items: baseline; gap: 8px; }
.pricing-price { font-family: var(--serif); font-size: 36px; font-weight: 600; line-height: 1; }
.pricing-per { font-size: 13px; opacity: 0.5; }
.pricing-features { margin: 24px 0 0; display: flex; flex-direction: column; gap: 4px; font-size: 13.5px; line-height: 1.6; opacity: 0.7; }
.pricing-note { margin: 12px 0 0; font-size: 11px; text-align: center; opacity: 0.4; }

/* final cta */
.final { padding: 64px 0 96px; border-top: 1px solid var(--line); text-align: center; }

/* brand + helpers */
.brand {
  font-family: var(--ui);
  font-weight: 800;
  letter-spacing: -0.03em;
}
.highlight {
  background-image: linear-gradient(transparent 58%, var(--highlight) 58%);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.handle-status {
  margin: 14px 0 0;
  min-height: 18px;
  font-size: 13px;
  text-align: center;
}
.handle-status.ok { color: #15803d; }
.handle-status.bad { color: #b91c1c; }
.handle-status.dim { color: var(--dim); }
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  width: 180%;
  margin: 32px 0 0 -40%;
}
.tag {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 16px;
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.tag:hover { background: var(--highlight); border-color: var(--highlight); }

/* ── footer ── */
.site-footer { border-top: 1px solid var(--line); padding: 40px 0; }
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  font-size: 11px;
  opacity: 0.4;
}
.footer-inner .wordmark { font-size: 16px; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
.footer-links a { color: inherit; text-decoration: none; }
.footer-links a:hover { opacity: 1; color: var(--ink); }
.footer-meta { display: flex; flex-direction: column; gap: 4px; }

/* ── use cases / blog ── */
.hero-list { padding: 64px 0 16px; }
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.post-card {
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  text-decoration: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.post-card:hover { border-color: var(--ink); box-shadow: 0 16px 40px rgba(0,0,0,0.08); transform: translateY(-3px); }
.post-card-date { margin: 0 0 14px; color: var(--dim); font-size: 13px; }
.post-card-title { margin: 0 0 10px; font-family: var(--serif); font-size: 22px; line-height: 1.15; letter-spacing: -0.02em; }
.post-card-deck { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.55; flex: 1; }
.post-card-link { margin-top: 20px; font-weight: 600; font-size: 14px; }

.post-header { padding: 64px 0 32px; }
.back-link { display: inline-block; margin-bottom: 26px; color: var(--muted); text-decoration: none; font-size: 15px; }
.back-link:hover { color: var(--ink); }
.post-date { margin: 0 0 14px; color: var(--dim); font-size: 14px; }
.post-title { margin: 0 0 18px; font-family: var(--serif); font-size: clamp(34px, 5.4vw, 54px); line-height: 1.05; letter-spacing: -0.035em; font-weight: 600; }
.post-deck { margin: 0; color: var(--muted); font-size: 21px; line-height: 1.5; }
.post-body { padding: 8px 0 72px; }
.post-body h2 { margin: 42px 0 12px; font-family: var(--serif); font-size: 26px; letter-spacing: -0.02em; line-height: 1.2; }
.post-body p { margin: 0 0 20px; color: var(--ink); font-size: 18px; line-height: 1.7; }
.post-body ul, .post-body ol { margin: 0 0 20px; padding-left: 26px; }
.post-body li { margin: 8px 0; font-size: 17px; line-height: 1.6; }
.post-body blockquote { margin: 26px 0; padding: 18px 24px; border-left: 3px solid var(--highlight); background: #fff; border-radius: 0 12px 12px 0; font-size: 16px; }
.post-body blockquote p { margin: 0; font-size: 16px; }
.post-cta { padding: 72px 0; text-align: center; background: #000; color: #fff; }
.post-cta h2 { margin: 0 0 12px; font-family: var(--serif); font-size: 34px; letter-spacing: -0.03em; }
.post-cta p { margin: 0 auto 24px; color: rgba(255,255,255,0.7); max-width: 30em; }
.post-cta .button { background: #fff; color: #000; }
.post-cta .button:hover { opacity: 0.92; color: #000; }

/* ── legal / changelog ── */
.page-legal .section { padding-top: 56px; }
.page-legal .container.narrow { width: min(720px, calc(100% - 48px)); }
.page-legal h1 {
  font-family: var(--serif);
  font-size: clamp(32px, 5vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 600;
  margin: 0 0 8px;
}
.page-legal .updated { font-size: 14px; color: var(--dim); margin: 0 0 40px; }
.page-legal h2 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 36px 0 12px;
}
.page-legal p { font-size: 16px; color: var(--ink-soft); margin: 0 0 16px; line-height: 1.7; }
.page-legal ul { margin: 0 0 16px 24px; }
.page-legal li { font-size: 16px; color: var(--ink-soft); margin-bottom: 8px; line-height: 1.6; }
.page-legal code {
  font-family: var(--mono);
  font-size: 0.9em;
  background: var(--bg);
  border: 1px solid var(--line-soft);
  border-radius: 6px;
  padding: 1px 6px;
}
.page-legal .note { background: var(--bg); border: 1px solid var(--line); border-radius: 12px; padding: 20px; margin: 24px 0; }
.page-legal .note p { margin-bottom: 0; }
.page-legal .payment-details { background: var(--bg); border: 1px solid var(--line); border-radius: 12px; padding: 24px; margin: 24px 0; }
.page-legal .payment-row { display: flex; padding: 10px 0; border-bottom: 1px solid var(--line-soft); font-size: 15px; gap: 16px; }
.page-legal .payment-row:last-child { border-bottom: 0; }
.page-legal .payment-label { font-weight: 600; min-width: 160px; flex-shrink: 0; }
.page-legal .payment-value { font-family: var(--mono); font-size: 14px; color: var(--muted); word-break: break-all; }
.page-legal .provider-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; margin: 20px 0 32px; }
.page-legal .provider-card { background: var(--bg); border: 1px solid var(--line); border-radius: 12px; padding: 24px; }
.page-legal .provider-name { font-size: 18px; font-weight: 600; margin-bottom: 6px; }
.page-legal .provider-role { font-size: 14px; color: var(--muted); line-height: 1.6; }
.page-legal a[href^="mailto:"] { color: var(--accent); text-decoration: none; }
.page-legal a[href^="mailto:"]:hover { text-decoration: underline; }
.page-changelog h3 { font-size: 16px; font-weight: 600; color: var(--accent); margin: 28px 0 10px; }
.page-changelog .clog-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-left: 6px;
  vertical-align: middle;
  border: none;
  background: none;
}
.page-changelog .clog-feat { background: #ecfdf5; color: #059669; }
.page-changelog .clog-fix { background: #fef3c7; color: #d97706; }
@media (max-width: 480px) {
  .page-legal .payment-row { flex-direction: column; gap: 4px; }
  .page-legal .payment-label { min-width: auto; }
}

/* ── provision form ── */
.page-provision .section { padding-top: 48px; }
.page-provision .container.narrow { width: min(560px, calc(100% - 48px)); }
.page-provision h1 {
  font-family: var(--serif);
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0 0 8px;
  text-align: center;
}
.page-provision .section-subtitle { text-align: center; color: var(--muted); font-size: 16px; margin: 0 0 32px; }
.page-provision .request-card { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 32px; }
.page-provision .form-group { margin-bottom: 20px; }
.page-provision .form-group label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 6px; color: var(--ink-soft); }
.page-provision .form-hint { font-weight: 400; color: var(--dim); font-size: 12px; }
.page-provision .form-error { font-size: 13px; color: #ef4444; margin-top: 4px; display: none; }
.page-provision .form-error.visible { display: block; }
.page-provision .cta-button {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  background: #000;
  color: #fff;
  border: 0;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.page-provision .cta-button:hover { background: #333; }
.page-provision .cta-button:disabled { opacity: 0.6; cursor: not-allowed; }
.page-provision .cta-button.btn-green { background: #059669; }
.page-provision .cta-button.btn-red { background: #dc2626; }
.page-provision .cta-button.btn-loading { background: #525252; cursor: wait; }
.page-provision .form-status { margin-top: 12px; font-size: 14px; text-align: center; min-height: 20px; }
.page-provision .form-status.green { color: #059669; }
.page-provision .form-status.red { color: #dc2626; }
.page-provision .form-status.gray { color: var(--dim); }
.page-provision .form-success { text-align: center; padding: 20px 0 0; display: none; }
.page-provision .form-success.visible { display: block; }
.page-provision .form-success-check { font-size: 32px; margin-bottom: 8px; }
.page-provision .form-success-text { font-size: 15px; color: var(--muted); }
.page-provision .form-footer-text { font-size: 13px; color: var(--dim); text-align: center; margin-top: 16px; }
.page-provision .add-email-btn {
  background: none;
  border: 1px dashed var(--line);
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 13px;
  font-family: inherit;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s;
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 4px;
}
.page-provision .add-email-btn:hover { border-color: var(--accent); color: var(--accent); }
.page-provision .name-suggestions { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.page-provision .name-suggestion-chip {
  font-size: 12px;
  padding: 4px 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--bg);
  cursor: pointer;
  font-family: inherit;
  color: var(--muted);
  transition: border-color 0.2s;
}
.page-provision .name-suggestion-chip:hover { border-color: var(--accent); }
.page-provision .form-group input[type="text"],
.page-provision .form-group input[type="email"] {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  color: var(--ink);
  background: var(--bg);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  box-sizing: border-box;
}
.page-provision .form-group input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1); background: #fff; }
.page-provision .input-group-wrap {
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--bg);
  transition: border-color 0.2s, box-shadow 0.2s;
  overflow: hidden;
}
.page-provision .input-group-wrap:focus-within { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1); background: #fff; }
.page-provision .input-group-wrap input {
  flex: 1;
  border: none !important;
  background: transparent !important;
  padding: 12px 14px !important;
  font-size: 15px !important;
  font-family: inherit !important;
  color: var(--ink) !important;
  outline: none !important;
  box-shadow: none !important;
  min-width: 0;
  border-radius: 0 !important;
}
.page-provision .input-suffix { padding: 12px 14px 12px 0; font-size: 15px; color: var(--dim); font-weight: 500; white-space: nowrap; user-select: none; }
.page-provision .extra-email-row { display: flex; gap: 8px; align-items: center; margin-bottom: 12px; }
.page-provision .extra-email-row input {
  flex: 1;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  color: var(--ink);
  background: var(--bg);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  box-sizing: border-box;
}
.page-provision .extra-email-row input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1); background: #fff; }
.page-provision .remove-email-btn { background: none; border: none; color: var(--dim); cursor: pointer; font-size: 18px; padding: 4px 8px; transition: color 0.2s; line-height: 1; flex-shrink: 0; }
.page-provision .remove-email-btn:hover { color: #ef4444; }

/* ── animations ── */
@keyframes wiggle { 0%, 100% { transform: rotate(-7deg); } 50% { transform: rotate(-2deg); } }
@keyframes pulseSoft {
  0%, 100% { box-shadow: 0 20px 50px rgba(0,0,0,0.08), 0 0 0 0 rgba(255,224,102,0); }
  50% { box-shadow: 0 24px 60px rgba(0,0,0,0.1), 0 0 0 12px rgba(255,224,102,0.35); }
}
@keyframes blink { 0%, 49% { opacity: 1; } 50%, 100% { opacity: 0; } }

/* ── accessibility ── */
a:focus-visible, button:focus-visible, input:focus-visible {
  outline: 2px solid #6366f1;
  outline-offset: 2px;
  border-radius: 6px;
}
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

/* ── responsive ── */
@media (min-width: 768px) {
  .hero-address-wrap { margin-top: 56px; }
  .hero-address-card { padding: 32px 32px; }
  .handle-input { max-width: 300px; }
  .handle-cursor { height: 32px; }
}
@media (max-width: 860px) {
  .post-grid { grid-template-columns: 1fr; }
  .header-tagline { display: none; }
}
@media (max-width: 560px) {
  .header-actions { gap: 12px; }
  .container, .container-wide, .container.narrow { width: min(100% - 32px, 1080px); }
  .hero-title { font-size: 42px; }
  .annotate { left: 50%; transform: translateX(-50%); }
  .annotate .note { font-size: 21px; }
  .delegate-result { display: none; }
  .way { flex-direction: column; gap: 12px; }
  .post-body p { font-size: 17px; }
}
