:root {
  color-scheme: light;
  --bg: #f7f7f4;
  --surface: #ffffff;
  --surface-soft: #efeee8;
  --text: #1b1d20;
  --muted: #60646c;
  --line: #d9d7ce;
  --accent: #256b5d;
  --accent-strong: #17493f;
  --shadow: 0 18px 50px rgba(24, 31, 36, 0.12);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
}

a {
  color: inherit;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 24px;
}

.brand,
.site-nav,
.actions {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: block;
}

.site-nav {
  gap: 20px;
  font-size: 14px;
  color: var(--muted);
}

.site-nav a {
  text-decoration: none;
}

.hero,
.section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 56px 24px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 56px;
  align-items: center;
  min-height: 620px;
}

.hero-copy,
.hero-panel {
  min-width: 0;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: 76px;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero p {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.hero .hero-lead {
  margin-top: 20px;
  color: var(--accent-strong);
  font-size: 28px;
  font-weight: 800;
  line-height: 1.25;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.button.primary {
  border-color: var(--accent);
  background: var(--accent);
  color: #ffffff;
}

.button.primary:hover {
  background: var(--accent-strong);
}

.button.secondary {
  background: var(--surface);
}

.disclaimer {
  font-size: 13px !important;
}

.hero-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.panel-header {
  display: flex;
  gap: 8px;
  padding: 16px;
  border-bottom: 1px solid var(--line);
  background: var(--surface-soft);
}

.panel-header span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #a6a196;
}

.panel-body {
  display: grid;
  gap: 14px;
  padding: 20px;
}

.workflow-row {
  display: grid;
  gap: 6px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfbf9;
}

.workflow-row strong {
  font-size: 16px;
}

.workflow-row span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.section-heading {
  max-width: 680px;
  margin-bottom: 24px;
}

.concept-section .section-heading {
  max-width: 820px;
}

.section h2 {
  margin: 0;
  font-size: 34px;
  line-height: 1.12;
  letter-spacing: 0;
}

.section-heading p,
.status p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.feature-grid,
.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.feature-grid > *,
.screenshot-grid > * {
  min-width: 0;
}

.feature-grid article,
figure {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.feature-grid article {
  padding: 22px;
}

.feature-grid h3 {
  margin: 0;
  font-size: 18px;
}

.feature-grid p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

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

.single-screenshot {
  max-width: 760px;
}

.screenshot-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-bottom: 1px solid var(--line);
  background: #151515;
  object-fit: contain;
}

figcaption {
  padding: 14px 16px;
  color: var(--muted);
  font-size: 14px;
}

.status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 28px 24px 44px;
  color: var(--muted);
  font-size: 14px;
}

.site-footer a {
  font-weight: 700;
  text-decoration: none;
}

.policy-page {
  max-width: 880px;
  margin: 0 auto;
  padding: 42px 24px 72px;
}

.policy-hero {
  padding: 36px 0 28px;
  border-bottom: 1px solid var(--line);
}

.page-kicker {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 800;
}

.policy-hero h1 {
  margin: 0;
  font-size: 48px;
  line-height: 1.08;
  letter-spacing: 0;
}

.policy-hero p:last-child {
  margin: 14px 0 0;
  color: var(--muted);
}

.policy-section {
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.policy-section h2 {
  margin: 0 0 14px;
  font-size: 26px;
  line-height: 1.2;
}

.policy-section h3 {
  margin: 0 0 8px;
  font-size: 17px;
}

.policy-section p,
.policy-section li {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.policy-section p {
  margin: 0 0 14px;
}

.policy-section p:last-child {
  margin-bottom: 0;
}

.policy-section ul {
  margin: 0 0 18px;
  padding-left: 22px;
}

.permission-list {
  display: grid;
  gap: 14px;
}

.permission-list article,
.copy-block {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.copy-block + .copy-block {
  margin-top: 14px;
}

.policy-section a {
  color: var(--accent-strong);
  font-weight: 700;
}

code {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
  padding: 2px 5px;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.92em;
}

@media (max-width: 980px) {
  .hero h1 {
    font-size: 60px;
  }
}

@media (max-width: 780px) {
  .site-header,
  .hero,
  .section,
  .status {
    padding-right: 18px;
    padding-left: 18px;
  }

  .site-header,
  .status {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer {
    padding-right: 18px;
    padding-left: 18px;
  }

  .site-nav {
    flex-wrap: wrap;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 32px;
    min-height: auto;
    padding-top: 36px;
  }

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

  .policy-page {
    padding: 28px 18px 54px;
  }

  .policy-hero h1 {
    font-size: 36px;
  }

  .hero p {
    font-size: 16px;
  }

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