:root {
  color-scheme: light;
  --paper: oklch(98.6% 0.012 8);
  --paper-deep: oklch(96.4% 0.022 8);
  --panel: oklch(99.4% 0.006 8);
  --panel-blush: oklch(95.6% 0.034 6);
  --panel-soft: oklch(97.4% 0.016 8);
  --ink-deep: oklch(20% 0.03 12);
  --ink: oklch(24% 0.04 12);
  --ink-mid: oklch(38% 0.04 12);
  --muted: oklch(54% 0.04 12);
  --line: oklch(89% 0.028 6);
  --line-soft: oklch(94% 0.018 6);
  --line-strong: oklch(82% 0.05 4);
  --carmine: oklch(60% 0.18 0);
  --carmine-deep: oklch(52% 0.18 358);
  --carmine-ink: oklch(40% 0.13 358);
  --carmine-mist: oklch(94% 0.04 4);
  --rose-gold: oklch(72% 0.09 40);
  --moss: oklch(58% 0.12 160);
  --shadow-sm: 0 1px 2px oklch(40% 0.06 12 / 0.06);
  --shadow-md: 0 8px 22px oklch(40% 0.08 12 / 0.1);
  --shadow-lg: 0 22px 58px oklch(40% 0.1 12 / 0.16);
  --max: 1240px;
  --radius-xs: 4px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  font-family:
    "PingFang SC", "HarmonyOS Sans SC", "Microsoft YaHei UI", "Hiragino Sans GB",
    -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  font-kerning: normal;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
  scroll-behavior: smooth;
}

body {
  background:
    linear-gradient(180deg, oklch(99.2% 0.008 8), var(--paper) 42%, var(--paper-deep)),
    var(--paper);
  color: var(--ink);
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
}

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

button {
  font: inherit;
}

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

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--carmine);
  outline-offset: 3px;
}

.site-header {
  align-items: center;
  display: grid;
  gap: 24px;
  grid-template-columns: 170px 1fr auto;
  margin: 0 auto;
  max-width: var(--max);
  min-height: 76px;
  padding: 16px 28px;
  position: relative;
  z-index: 3;
}

.brand,
.footer-brand,
.shell-brand {
  align-items: center;
  display: inline-flex;
  gap: 12px;
}

.brand img,
.footer-brand img,
.shell-brand img,
.float-capture img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  flex: 0 0 auto;
}

.brand img,
.footer-brand img {
  height: 38px;
  width: 38px;
}

.brand span {
  color: var(--ink-deep);
  font-size: 28px;
  font-weight: 850;
  letter-spacing: 0;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: clamp(22px, 4vw, 52px);
  justify-content: center;
}

.site-nav a {
  color: var(--ink-mid);
  font-size: 14px;
  font-weight: 760;
  padding: 10px 0;
  position: relative;
  white-space: nowrap;
}

.site-nav a::after {
  background: var(--carmine);
  bottom: 3px;
  content: "";
  height: 1px;
  left: 0;
  opacity: 0;
  position: absolute;
  transform: scaleX(0.5);
  transition: opacity 160ms var(--ease), transform 160ms var(--ease);
  width: 100%;
}

.site-nav a:hover {
  color: var(--ink);
}

.site-nav a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-action,
.button,
.save-card button {
  align-items: center;
  border-radius: var(--radius-md);
  display: inline-flex;
  font-size: 14px;
  font-weight: 820;
  justify-content: center;
  line-height: 1;
  min-height: 42px;
  transition:
    background-color 160ms var(--ease),
    border-color 160ms var(--ease),
    box-shadow 160ms var(--ease),
    color 160ms var(--ease),
    transform 160ms var(--ease);
}

.nav-action,
.primary,
.save-card button {
  background: var(--carmine);
  border: 1px solid var(--carmine);
  color: oklch(99% 0.006 8);
}

.nav-action {
  padding: 0 16px;
}

.nav-action:hover,
.primary:hover,
.save-card button:hover {
  background: var(--carmine-deep);
  border-color: var(--carmine-deep);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.button {
  min-width: 136px;
  padding: 0 20px;
}

.secondary {
  background: var(--panel);
  border: 1px solid var(--line);
  color: var(--ink);
}

.secondary:hover {
  background: var(--panel-soft);
  border-color: var(--line-strong);
  transform: translateY(-1px);
}

.text-link {
  align-items: center;
  color: var(--carmine-ink);
  display: inline-flex;
  font-size: 14px;
  font-weight: 820;
  gap: 8px;
  margin-top: 24px;
  padding-bottom: 4px;
  position: relative;
}

.text-link::after {
  background: currentColor;
  bottom: 0;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  right: 0;
  transform-origin: left;
  transition: transform 160ms var(--ease);
}

.text-link:hover::after {
  transform: scaleX(0.72);
}

.hero {
  align-items: center;
  display: grid;
  gap: clamp(32px, 5vw, 72px);
  grid-template-columns: minmax(360px, 0.82fr) minmax(520px, 1.18fr);
  margin: 0 auto;
  max-width: var(--max);
  min-height: min(760px, calc(100svh - 76px));
  padding: clamp(28px, 5vw, 64px) 28px 64px;
  position: relative;
}

.hero::after,
.section-grid::before,
.archive::before,
.sync::before {
  background: linear-gradient(90deg, transparent, var(--line), transparent);
  content: "";
  height: 1px;
  left: 28px;
  position: absolute;
  right: 28px;
}

.hero::after {
  bottom: 0;
}

.hero-copy {
  max-width: 610px;
}

.hero-mark,
.section-index {
  color: var(--carmine-ink);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.08em;
  line-height: 1.4;
  margin: 0 0 20px;
  text-transform: uppercase;
}

.hero h1 {
  color: var(--ink-deep);
  font-size: clamp(44px, 6vw, 76px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.98;
  margin: 0;
  max-width: 680px;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

.hero-lede,
.section-copy p {
  color: var(--ink-mid);
  font-size: 16px;
  font-weight: 540;
  line-height: 1.8;
  margin: 24px 0 0;
  max-width: 58ch;
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-facts {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 36px 0 0;
  padding-top: 18px;
}

.hero-facts div,
.hero-facts dt,
.hero-facts dd {
  margin: 0;
}

.hero-facts dt {
  color: var(--ink);
  font-family: ui-monospace, "SF Mono", "JetBrains Mono", Menlo, Consolas, monospace;
  font-size: 11px;
  font-weight: 760;
  line-height: 1.45;
}

.hero-facts dd {
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.45;
  margin-top: 4px;
}

.hero-stage {
  min-height: 600px;
  min-width: 0;
  position: relative;
}

.product-shell {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 42px oklch(40% 0.08 12 / 0.11);
  margin-left: auto;
  max-width: 690px;
  min-width: 0;
  overflow: hidden;
}

.shell-top {
  align-items: center;
  border-bottom: 1px solid var(--line-soft);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
}

.shell-brand img {
  height: 34px;
  width: 34px;
}

.shell-brand strong {
  color: var(--ink-deep);
  display: block;
  font-size: 18px;
  font-weight: 870;
  line-height: 1;
}

.shell-brand span {
  color: var(--muted);
  display: block;
  font-size: 12px;
  font-weight: 620;
  line-height: 1.3;
  margin-top: 5px;
}

.shell-status {
  background: var(--panel-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-mid);
  flex: 0 0 auto;
  font-size: 12px;
  font-weight: 760;
  padding: 6px 10px;
}

.shell-tabs {
  background: var(--panel-blush);
  display: grid;
  gap: 4px;
  grid-template-columns: repeat(3, 1fr);
  padding: 6px;
}

.shell-tabs span {
  border-radius: var(--radius-md);
  color: var(--ink-mid);
  font-size: 13px;
  font-weight: 780;
  padding: 9px 10px;
  text-align: center;
}

.shell-tabs .active {
  background: var(--panel);
  box-shadow: var(--shadow-sm);
  color: var(--carmine-deep);
}

.workspace-preview {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1fr) 240px;
  padding: 18px;
}

.archive-preview {
  min-width: 0;
}

.toolbar {
  align-items: center;
  border-bottom: 1px solid var(--line-soft);
  color: var(--muted);
  display: flex;
  font-size: 12px;
  font-weight: 750;
  justify-content: space-between;
  margin-bottom: 12px;
  padding-bottom: 10px;
}

.archive-preview img {
  aspect-ratio: 488 / 640;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  height: 420px;
  object-fit: cover;
  object-position: top center;
  width: 100%;
}

.save-card {
  align-self: start;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  display: grid;
  gap: 12px;
  padding: 16px;
}

.card-label,
.tool-stack span {
  color: var(--carmine-ink);
  font-family: ui-monospace, "SF Mono", "JetBrains Mono", Menlo, Consolas, monospace;
  font-size: 11px;
  font-weight: 760;
  line-height: 1.3;
}

.save-card strong {
  color: var(--ink-deep);
  font-size: 15px;
  font-weight: 850;
  line-height: 1;
}

.save-card p {
  background: var(--panel);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  color: var(--ink-mid);
  font-family: ui-monospace, "SF Mono", "JetBrains Mono", Menlo, Consolas, monospace;
  font-size: 12px;
  line-height: 1.55;
  margin: 0;
  padding: 12px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tag-list span {
  color: var(--ink-mid);
  font-size: 12px;
  font-weight: 680;
}

.save-card button {
  cursor: pointer;
  min-height: 40px;
  width: 100%;
}

.float-capture {
  align-items: center;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  color: var(--carmine-deep);
  display: grid;
  gap: 8px;
  justify-items: center;
  padding: 12px;
  position: absolute;
  right: -8px;
  top: 98px;
  width: 76px;
}

.float-capture img {
  height: 38px;
  width: 38px;
}

.float-capture span {
  font-size: 13px;
  font-weight: 850;
}

.section-grid {
  display: grid;
  gap: clamp(40px, 7vw, 92px);
  grid-template-columns: minmax(300px, 410px) minmax(0, 1fr);
  margin: 0 auto;
  max-width: var(--max);
  padding: 96px 28px;
  position: relative;
}

.section-grid::before,
.archive::before,
.sync::before {
  top: 0;
}

.section-copy h2 {
  color: var(--ink-deep);
  font-size: clamp(34px, 4.5vw, 58px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.05;
  margin: 0;
  max-width: 10.5em;
  text-wrap: balance;
}

.capture-demo {
  align-items: end;
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(260px, 430px) minmax(220px, 1fr);
}

.capture-demo > img {
  aspect-ratio: 488 / 640;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  height: auto;
  object-fit: cover;
  object-position: top center;
  width: 100%;
}

.capture-notes {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 0;
}

.capture-notes div {
  border-bottom: 1px solid var(--line-soft);
  padding: 20px 0;
}

.capture-notes strong {
  color: var(--ink-deep);
  display: block;
  font-size: 18px;
  font-weight: 850;
  line-height: 1.2;
}

.capture-notes span {
  color: var(--ink-mid);
  display: block;
  font-size: 14px;
  font-weight: 540;
  line-height: 1.6;
  margin-top: 8px;
}

.archive {
  align-items: center;
  display: grid;
  gap: clamp(40px, 7vw, 90px);
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  margin: 0 auto;
  max-width: none;
  padding: 96px max(28px, calc((100vw - var(--max)) / 2 + 28px));
  position: relative;
}

.archive::after {
  background: linear-gradient(90deg, var(--paper-deep), var(--paper));
  content: "";
  inset: 0;
  position: absolute;
  z-index: -1;
}

.archive-media {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.archive-media img {
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.archive-list {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 36px;
}

.archive-list span {
  border-top: 1px solid var(--line);
  color: var(--ink-mid);
  font-size: 14px;
  font-weight: 820;
  padding-top: 12px;
}

.assist {
  align-items: start;
}

.tool-stack {
  display: grid;
  gap: 0;
}

.tool-stack article {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 10px;
  grid-template-columns: 120px minmax(180px, 0.7fr) minmax(220px, 1fr);
  padding: 24px 0;
}

.tool-stack article:last-child {
  border-bottom: 1px solid var(--line);
}

.tool-stack strong {
  color: var(--ink-deep);
  font-size: clamp(20px, 2.6vw, 32px);
  font-weight: 900;
  line-height: 1.05;
}

.tool-stack p {
  color: var(--ink-mid);
  font-size: 14px;
  font-weight: 540;
  line-height: 1.7;
  margin: 0;
}

.sync {
  background: var(--panel-blush);
  display: grid;
  gap: clamp(40px, 7vw, 88px);
  grid-template-columns: minmax(300px, 430px) minmax(0, 1fr);
  margin: 0 auto;
  max-width: none;
  padding: 96px max(28px, calc((100vw - var(--max)) / 2 + 28px));
  position: relative;
}

.sync-flow {
  align-content: start;
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.sync-panel {
  align-content: start;
  display: grid;
  gap: 16px;
}

.sync-flow div {
  background: oklch(99.2% 0.007 8 / 0.72);
  border: 1px solid var(--line);
  min-height: 168px;
  padding: 20px 16px 18px;
  position: relative;
  transition:
    background-color 160ms var(--ease),
    border-color 160ms var(--ease),
    transform 160ms var(--ease);
}

.sync-flow div:hover {
  background: oklch(99.4% 0.006 8);
  border-color: var(--line-strong);
  transform: translateY(-1px);
}

.sync-flow div:first-child {
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}

.sync-flow div:last-child {
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

.sync-flow div:not(:last-child)::after {
  color: var(--carmine-ink);
  content: "→";
  font-family: ui-monospace, "SF Mono", "JetBrains Mono", Menlo, Consolas, monospace;
  font-size: 18px;
  font-weight: 700;
  position: absolute;
  right: -11px;
  top: 22px;
  z-index: 1;
}

.sync-icon {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  color: var(--ink);
  display: block;
  fill: none;
  height: 52px;
  margin-bottom: 24px;
  padding: 7px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
  transition:
    background-color 160ms var(--ease),
    border-color 160ms var(--ease),
    color 160ms var(--ease);
  width: 52px;
}

.github-icon {
  fill: currentColor;
  padding: 8px;
  stroke: none;
}

.feishu-icon {
  fill: none;
  padding: 6px;
  stroke: none;
}

.sync-flow div:hover .sync-icon {
  background: var(--carmine-mist);
  border-color: oklch(86% 0.06 4);
  color: var(--carmine-ink);
}

.sync-flow strong {
  color: var(--ink-deep);
  display: block;
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
}

.sync-flow span {
  color: var(--ink-mid);
  display: block;
  font-size: 13px;
  font-weight: 540;
  line-height: 1.65;
  margin-top: 18px;
}

.privacy-strip {
  align-items: start;
  background: oklch(99.2% 0.007 8 / 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  display: grid;
  gap: 8px;
  grid-template-columns: minmax(160px, 0.3fr) minmax(0, 1fr);
  padding: 18px 20px;
}

.privacy-strip strong {
  color: var(--ink-deep);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.45;
}

.privacy-strip span {
  color: var(--ink-mid);
  font-size: 13px;
  font-weight: 560;
  line-height: 1.7;
}

.site-footer {
  align-items: center;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(220px, 1fr) auto minmax(150px, 1fr);
  margin: 0 auto;
  max-width: var(--max);
  padding: 34px 28px;
}

.footer-brand strong {
  color: var(--ink-deep);
  display: block;
  font-size: 23px;
  font-weight: 900;
  line-height: 1;
}

.footer-brand span {
  color: var(--muted);
  display: block;
  font-size: 12px;
  font-weight: 720;
  line-height: 1.3;
  margin-top: 6px;
}

.site-footer p {
  color: var(--carmine-ink);
  font-family: "KaiTi", "STKaiti", "Microsoft YaHei UI", cursive;
  font-size: clamp(22px, 2.7vw, 34px);
  line-height: 1.25;
  margin: 0;
  text-align: center;
}

.footer-links {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  justify-self: end;
}

.footer-links a {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  color: var(--carmine-ink);
  font-size: 14px;
  font-weight: 820;
  padding: 11px 16px;
  transition: background-color 160ms var(--ease), border-color 160ms var(--ease);
}

.footer-links a:hover {
  background: var(--panel);
  border-color: var(--line-strong);
}

.privacy-page {
  margin: 0 auto;
  max-width: none;
}

.privacy-hero {
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(320px, 0.92fr) minmax(360px, 0.58fr);
  margin: 0 auto;
  max-width: var(--max);
  padding: 64px 28px 74px;
  position: relative;
}

.privacy-hero::after,
.privacy-grid::before {
  background: linear-gradient(90deg, transparent, var(--line), transparent);
  content: "";
  height: 1px;
  left: 28px;
  position: absolute;
  right: 28px;
}

.privacy-hero::after {
  bottom: 0;
}

.privacy-hero h1 {
  color: var(--ink-deep);
  font-size: 56px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.02;
  margin: 0;
  overflow-wrap: anywhere;
}

.privacy-lede {
  color: var(--ink-mid);
  font-size: 17px;
  font-weight: 540;
  line-height: 1.85;
  margin: 24px 0 0;
  max-width: 66ch;
}

.privacy-date {
  color: var(--muted);
  font-family: ui-monospace, "SF Mono", "JetBrains Mono", Menlo, Consolas, monospace;
  font-size: 12px;
  font-weight: 720;
  line-height: 1.5;
  margin: 28px 0 0;
}

.privacy-summary {
  align-self: end;
  border-top: 1px solid var(--line);
  display: grid;
}

.privacy-summary div {
  border-bottom: 1px solid var(--line-soft);
  display: grid;
  gap: 8px;
  padding: 18px 0;
}

.privacy-summary strong {
  color: var(--ink-deep);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.25;
}

.privacy-summary span {
  color: var(--ink-mid);
  font-size: 14px;
  font-weight: 540;
  line-height: 1.65;
}

.privacy-grid {
  display: grid;
  gap: 72px;
  grid-template-columns: 230px minmax(0, 1fr);
  margin: 0 auto;
  max-width: var(--max);
  padding: 74px 28px 96px;
  position: relative;
}

.privacy-grid::before {
  display: none;
  top: 0;
}

.privacy-toc {
  align-self: start;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 0;
  position: sticky;
  top: 18px;
}

.privacy-toc a {
  border-bottom: 1px solid var(--line-soft);
  color: var(--ink-mid);
  font-size: 13px;
  font-weight: 780;
  line-height: 1.4;
  padding: 13px 0;
}

.privacy-toc a:hover,
.privacy-policy a {
  color: var(--carmine-ink);
}

.privacy-policy {
  max-width: 820px;
}

.privacy-policy section {
  border-top: 1px solid var(--line);
  padding: 34px 0;
}

.privacy-policy section:first-child {
  padding-top: 0;
}

.privacy-policy h2 {
  color: var(--ink-deep);
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.18;
  margin: 0 0 18px;
}

.privacy-policy h3 {
  color: var(--ink-deep);
  font-size: 17px;
  font-weight: 880;
  line-height: 1.3;
  margin: 0;
}

.privacy-policy p,
.privacy-policy li {
  color: var(--ink-mid);
  font-size: 15px;
  font-weight: 520;
  line-height: 1.85;
}

.privacy-policy p {
  margin: 0;
}

.privacy-policy p + p,
.privacy-policy p + ul,
.privacy-policy ul + p {
  margin-top: 16px;
}

.privacy-policy ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 1.2em;
}

.privacy-policy code {
  background: var(--panel-soft);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-xs);
  color: var(--carmine-ink);
  font-family: ui-monospace, "SF Mono", "JetBrains Mono", Menlo, Consolas, monospace;
  font-size: 0.92em;
  padding: 0.08em 0.34em;
}

.policy-list {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.policy-list div,
.permission-grid div {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  display: grid;
  gap: 10px;
  padding: 18px;
}

.policy-list.compact div {
  background: transparent;
}

.data-table {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.data-table > div {
  display: grid;
  grid-template-columns: minmax(150px, 0.34fr) minmax(0, 1fr);
}

.data-table > div + div {
  border-top: 1px solid var(--line-soft);
}

.data-table strong,
.data-table span {
  color: var(--ink-mid);
  font-size: 14px;
  line-height: 1.65;
  padding: 14px 16px;
}

.data-table strong {
  background: var(--panel-blush);
  color: var(--ink-deep);
  font-weight: 900;
}

.data-table span:first-child {
  color: var(--ink-deep);
  font-weight: 820;
}

.permission-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.permission-grid strong {
  align-self: start;
}

.permission-grid span {
  color: var(--ink-mid);
  font-size: 14px;
  font-weight: 540;
  line-height: 1.7;
}

.limited-use {
  background: var(--panel-blush);
  border-left: 3px solid var(--carmine);
  color: var(--ink-deep) !important;
  font-family: ui-monospace, "SF Mono", "JetBrains Mono", Menlo, Consolas, monospace;
  font-size: 13px !important;
  font-weight: 720 !important;
  margin-bottom: 16px !important;
  padding: 16px 18px;
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: auto 1fr;
  }

  .site-nav {
    display: none;
  }

  .nav-action {
    justify-self: end;
  }

  .hero,
  .section-grid,
  .archive,
  .sync,
  .privacy-hero,
  .privacy-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-stage {
    min-height: auto;
  }

  .product-shell {
    margin-left: 0;
    max-width: none;
    width: 100%;
  }

  .float-capture {
    right: 18px;
    top: 78px;
  }

  .section-copy h2 {
    max-width: 12em;
  }

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

  .privacy-grid {
    gap: 48px;
  }

  .privacy-toc {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    position: static;
  }

  .sync-flow div,
  .sync-flow div:first-child,
  .sync-flow div:last-child {
    border-radius: var(--radius-lg);
  }

  .sync-flow div::after {
    display: none;
  }
}

@media (max-width: 760px) {
  body {
    overflow-x: clip;
  }

  .site-header {
    gap: 12px;
    grid-template-columns: auto auto;
    justify-content: space-between;
    max-width: 100%;
    min-height: 70px;
    padding: 14px 18px;
    width: 100%;
  }

  .brand span {
    font-size: 24px;
  }

  .brand img {
    height: 34px;
    width: 34px;
  }

  .nav-action {
    display: none;
  }

  .hero,
  .section-grid,
  .archive,
  .sync,
  .privacy-hero,
  .privacy-grid {
    display: block;
    max-width: 100%;
    overflow: hidden;
    padding-left: 18px;
    padding-right: 18px;
    width: 100%;
  }

  .hero {
    padding-bottom: 44px;
    padding-top: 32px;
  }

  .hero::after,
  .section-grid::before,
  .archive::before,
  .sync::before,
  .privacy-hero::after {
    left: 18px;
    right: 18px;
  }

  .hero h1 {
    font-size: 40px;
    line-height: 1.02;
    max-width: 100%;
  }

  .privacy-hero h1 {
    font-size: 38px;
    line-height: 1.06;
  }

  .hero-copy,
  .section-copy,
  .hero-stage,
  .product-shell,
  .workspace-preview,
  .archive-preview,
  .capture-demo,
  .tool-stack,
  .sync-flow,
  .sync-panel,
  .privacy-summary,
  .privacy-policy {
    max-width: 100%;
    min-width: 0;
  }

  .hero-copy,
  .section-copy,
  .hero-actions,
  .product-shell {
    width: calc(100vw - 36px);
  }

  .hero-stage,
  .capture-demo,
  .archive-copy,
  .tool-stack,
  .sync-flow,
  .privacy-summary {
    margin-top: 32px;
  }

  .hero-lede,
  .section-copy p,
  .privacy-lede {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .hero-lede,
  .section-copy p,
  .privacy-lede {
    font-size: 15px;
  }

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

  .button {
    min-width: 0;
    padding: 0 12px;
    width: 100%;
  }

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

  .shell-top {
    align-items: flex-start;
    min-width: 0;
  }

  .shell-brand,
  .shell-brand > div {
    min-width: 0;
  }

  .shell-brand span {
    white-space: normal;
  }

  .shell-status {
    display: none;
  }

  .workspace-preview {
    grid-template-columns: 1fr;
    padding: 12px;
  }

  .archive-preview img {
    height: auto;
  }

  .save-card {
    display: none;
  }

  .float-capture {
    display: none;
  }

  .section-grid,
  .archive,
  .sync,
  .privacy-grid {
    padding-bottom: 70px;
    padding-top: 70px;
  }

  .privacy-hero {
    padding-bottom: 54px;
    padding-top: 36px;
  }

  .capture-demo {
    grid-template-columns: 1fr;
  }

  .archive-list,
  .sync-flow,
  .policy-list,
  .permission-grid,
  .privacy-strip,
  .data-table > div {
    grid-template-columns: 1fr;
  }

  .privacy-toc {
    display: none;
  }

  .tool-stack article {
    gap: 8px;
    grid-template-columns: 1fr;
    padding: 22px 0;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 30px 18px;
  }

  .site-footer p {
    text-align: left;
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0ms !important;
  }
}
