:root {
  --bg: #f6f7f2;
  --ink: #223529;
  --muted: #68755f;
  --green: #395a45;
  --line: #dfe5db;
  --paper: #fff;
  --pale: #eaf0e5;
  color-scheme: light;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
    "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  color: var(--ink);
  background: var(--bg);
  font-synthesis: none;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 40px;
}
body {
  margin: 0;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid #90ae72;
  outline-offset: 5px;
}
img {
  display: block;
  max-width: 100%;
}
button {
  cursor: pointer;
}
.wrap {
  max-width: 1160px;
  width: calc(100% - 96px);
  margin-inline: auto;
}
.skip {
  position: fixed;
  top: -60px;
  left: 20px;
  padding: 12px;
  background: white;
  z-index: 10;
}
.skip:focus {
  top: 12px;
}
.nav {
  height: 106px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
}
.brand strong {
  font-size: 20px;
  font-weight: 650;
  letter-spacing: 1px;
}
.brand > span {
  color: #7b8677;
  font-size: 15px;
  margin-left: 4px;
  letter-spacing: -0.4px;
}
.nav nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 14px;
}
.nav nav > a:not(.button):hover,
.footer a:hover {
  color: #728b59;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  background: var(--green);
  color: white;
  font-size: 15px;
  font-weight: 550;
  border: 1px solid var(--green);
  padding: 17px 25px;
  border-radius: 10px;
  transition:
    background 0.2s,
    transform 0.2s;
  box-shadow: 0 3px 5px #23402a0c;
}
.button:hover {
  background: #294333;
  transform: translateY(-2px);
}
.button.small {
  font-size: 13px;
  padding: 11px 17px;
  border-radius: 8px;
}
.hero {
  padding-top: 30px;
  text-align: center;
}
.eyebrow {
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.eyebrow > span {
  width: 6px;
  height: 6px;
  background: #839d6b;
  border-radius: 50%;
}
h1 {
  font-size: clamp(44px, 5vw, 68px);
  line-height: 1.24;
  letter-spacing: -3px;
  font-weight: 650;
  margin: 22px 0 18px;
}
h1 em {
  font-style: normal;
  color: #768b61;
}
.intro {
  font-size: 16px;
  line-height: 1.9;
  color: #6c786a;
  letter-spacing: 0.3px;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 29px;
  margin: 24px 0 12px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 550;
}
.text-link:hover {
  color: #6d8654;
}
.release {
  font-size: 11px;
  color: #68755f;
  line-height: 1.8;
  letter-spacing: 0.25px;
}
.mobile-break {
  display: none;
}
.app-scene {
  text-align: left;
  margin: 48px auto 0;
  position: relative;
  scroll-margin-top: 30px;
}
.app-scene:before {
  content: "";
  position: absolute;
  inset: 70px -45px -40px;
  background: radial-gradient(ellipse, #dfe7d5, transparent 72%);
  z-index: -1;
}
.scene-label {
  display: flex;
  justify-content: space-between;
  margin: 0 5px 15px;
  font-size: 11px;
  color: #68755f;
  letter-spacing: 1px;
}
.app-window {
  border: 1px solid #dce3d5;
  border-radius: 15px;
  overflow: hidden;
  background: #fbfcf9;
  box-shadow:
    0 20px 70px #314b2a0d,
    0 3px 8px #314b2a05;
}
.window-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #e4e9df;
  height: 42px;
  padding: 0 17px;
  font-size: 10px;
  color: #8b9586;
  background: #f0f3ec;
}
.lights {
  display: flex;
  gap: 6px;
  width: 100px;
}
.lights i {
  height: 8px;
  width: 8px;
  border-radius: 50%;
  background: #e5aa9d;
}
.lights i:nth-child(2) {
  background: #e7d395;
}
.lights i:nth-child(3) {
  background: #adc896;
}
.demo-label {
  width: 100px;
  text-align: right;
  font-size: 9px;
  color: #899581;
}
.app-layout {
  display: grid;
  grid-template-columns: 154px 1fr;
  min-height: 410px;
}
.app-sidebar {
  background: #eff3eb;
  border-right: 1px solid #e4e9df;
  padding: 24px 14px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 12px;
}
.mini-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 600;
  margin: 0 7px 18px;
}
.mini-new {
  background: #44634d;
  border-radius: 6px;
  padding: 11px;
  color: white;
  font-size: 11px;
  margin-bottom: 10px;
}
.mini-nav {
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #7e8b76;
}
.mini-nav.current {
  color: #3d5d45;
  background: #e0e8d9;
  border-radius: 6px;
}
.mini-nav small {
  margin-left: auto;
  font-size: 10px;
  opacity: 0.6;
}
.mini-settings {
  margin-top: auto;
  padding: 10px;
  color: #8e9985;
  font-size: 10px;
}
.app-content {
  padding: 29px 27px 20px;
  min-width: 0;
}
.app-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.app-heading h2 {
  font-size: 23px;
  margin: 0;
  font-weight: 600;
  letter-spacing: 1px;
}
.mock-search {
  background: white;
  border: 1px solid #e8ece3;
  border-radius: 6px;
  padding: 7px 12px;
  width: 155px;
  color: #a0a895;
  font-size: 9px;
}
.app-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 20px 0 15px;
}
.demo-filters {
  display: flex;
  gap: 3px;
}
.demo-filters button {
  border: 0;
  background: none;
  padding: 6px 11px;
  font-size: 10px;
  color: #8a967d;
  border-radius: 5px;
}
.demo-filters button.active {
  background: #e8efdf;
  color: #436044;
}
.post-count {
  font-size: 9px;
  color: #93a085;
}
.demo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 17px;
  min-height: 277px;
  align-items: start;
}
.post-card {
  border-radius: 9px;
  background: white;
  overflow: hidden;
  border: 1px solid #e7ebe1;
  box-shadow: 0 3px 5px #213b2302;
}
.post-card[hidden] {
  display: none;
}
.cover {
  position: relative;
  aspect-ratio: 1.4;
}
.cover > img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.media-badge {
  position: absolute;
  bottom: 10px;
  left: 10px;
  font-size: 9px;
  border-radius: 4px;
  color: white;
  background: #18352188;
  padding: 3px 6px;
  backdrop-filter: blur(4px);
}
.post-info {
  padding: 13px 13px 15px;
}
.post-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #68755f;
  font-size: 8px;
}
.status {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.status:before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
}
.status.draft {
  color: #9b9b83;
}
.status.sent {
  color: #728b62;
}
.status.queued {
  color: #a18755;
}
.post-info h3 {
  font-size: 11px;
  font-weight: 600;
  line-height: 1.6;
  margin: 12px 0 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.post-info p {
  font-size: 9px;
  color: #a1a890;
  margin: 0;
  line-height: 1.7;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.platforms {
  display: flex;
  gap: 5px;
  margin-top: 16px;
}
.xhs,
.dy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  color: white;
  font-style: normal;
  flex-shrink: 0;
}
.xhs {
  background: #ef5c73;
}
.dy {
  background: #293532;
}
.platforms span {
  width: 14px;
  height: 14px;
  font-size: 8px;
}
.app-bottom {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 21px;
  font-size: 9px;
  color: #a0aa94;
}
.local-dot {
  width: 4px;
  height: 4px;
  background: #8aa976;
  border-radius: 50%;
}
.platform-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 42px 0;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  color: #68755f;
}
.platform-line strong {
  display: flex;
  gap: 8px;
  align-items: center;
  font-weight: 500;
  color: #5f6e57;
  font-size: 13px;
}
.platform-line i {
  width: 22px;
  height: 22px;
  font-size: 11px;
}
.more-platforms {
  font-size: 11px;
  opacity: 0.8;
}
.features {
  padding: 110px 0 85px;
}
.section-heading {
  text-align: center;
}
.section-heading h2 {
  font-size: 38px;
  font-weight: 550;
  line-height: 1.45;
  letter-spacing: -1px;
  margin: 20px 0 42px;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}
.feature-art {
  height: 205px;
  background: #edf0e7;
  border: 1px solid #e6eade;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 27px;
}
.feature-number {
  font-size: 11px;
  letter-spacing: 1px;
  color: #68755f;
}
.feature-grid h3 {
  font-size: 17px;
  font-weight: 550;
  margin: 13px 0 11px;
}
.feature-grid p {
  font-size: 13px;
  line-height: 1.95;
  color: #68755f;
  margin: 0;
}
.file-back {
  position: absolute;
  background: #cdd8ba;
  width: 120px;
  height: 141px;
  border-radius: 9px;
  transform: rotate(12deg) translate(17px, -3px);
}
.file-front {
  width: 144px;
  background: white;
  padding: 7px;
  border-radius: 9px;
  transform: rotate(-8deg) translate(-13px, 3px);
  box-shadow: 0 6px 20px #47603c15;
}
.file-front img {
  width: 100%;
  height: 96px;
  object-fit: cover;
  border-radius: 5px;
}
.file-front > span {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 3px 3px;
  font-size: 8px;
  color: #6c795c;
}
.file-front small {
  font-size: 7px;
  color: #a1a58f;
}
.floating-tag {
  position: absolute;
  bottom: 39px;
  right: 36px;
  background: #fff;
  border: 1px solid #dde5d2;
  padding: 9px 13px;
  border-radius: 20px;
  font-size: 10px;
  transform: rotate(5deg);
}
.copy-paper {
  background: white;
  border: 1px solid #dfe6d5;
  border-radius: 9px;
  padding: 16px;
  width: 224px;
  box-shadow: 0 7px 17px #36502b06;
  transform: rotate(-3deg);
}
.copy-platform {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 9px;
  color: #8d9b7c;
}
.copy-platform i,
.copy-tab i,
.receipt i {
  width: 17px;
  height: 17px;
  font-size: 9px;
}
.copy-paper > strong {
  display: block;
  font-size: 12px;
  font-weight: 500;
  margin: 15px 0;
}
.paper-line {
  height: 4px;
  background: #eef1e9;
  display: block;
  margin-top: 6px;
  border-radius: 3px;
}
.paper-line.short {
  width: 70%;
}
.copy-tab {
  display: flex;
  gap: 6px;
  align-items: center;
  border-top: 1px solid #f0f3eb;
  margin: 15px -16px -16px;
  padding: 11px 16px;
  font-size: 9px;
}
.copy-tab b {
  color: #8a9e74;
  margin-left: auto;
  font-weight: 400;
}
.receipt {
  width: 235px;
  transform: rotate(3deg);
  background: white;
  border-radius: 9px;
  box-shadow: 0 7px 17px #36502b06;
  border: 1px solid #dfe6d5;
}
.receipt > span {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 17px 15px;
  font-size: 10px;
  border-bottom: 1px solid #eef1e8;
}
.receipt b {
  font-size: 9px;
  font-weight: 400;
  margin-left: auto;
  color: #7e946a;
}
.receipt b.wait {
  color: #b29760;
}
.receipt > div {
  font-size: 8px;
  color: #a7b09b;
  text-align: center;
  padding: 12px;
}
.local-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 43px 7px;
  display: flex;
  align-items: center;
  gap: 25px;
}
.local-icon {
  width: 72px;
  height: 72px;
  background: #e8eede;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #789263;
  flex-shrink: 0;
}
.local-section h2 {
  font-size: 20px;
  font-weight: 550;
  margin: 0 0 12px;
}
.local-section p {
  font-size: 13px;
  line-height: 1.8;
  color: #68755f;
  margin: 0;
}
.local-section .text-link {
  margin-left: auto;
  font-size: 12px;
  white-space: nowrap;
}
.download-section {
  text-align: center;
  padding: 92px 0 88px;
}
.download-section > img {
  margin: auto;
}
.download-section h2 {
  font-size: 43px;
  font-weight: 550;
  line-height: 1.35;
  letter-spacing: -1px;
  margin: 24px 0 18px;
}
.download-section > p:not(.release) {
  font-size: 14px;
  color: #68755f;
}
.download-section .button {
  margin-top: 18px;
  min-width: 170px;
}
.download-section .release {
  margin: 14px 0;
}
.subtle-link {
  font-size: 11px;
  color: #68755f;
}
.subtle-link:hover {
  text-decoration: underline;
}
.footer {
  border-top: 1px solid var(--line);
  padding: 34px 0 23px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.footer .brand strong {
  font-size: 15px;
}
.footer .brand span {
  font-size: 12px;
}
.footer p {
  font-size: 11px;
  color: #68755f;
  margin: 10px 0;
}
.footer-links {
  display: flex;
  gap: 26px;
  color: #68755f;
  font-size: 12px;
}
.copyright {
  width: 100%;
  display: flex;
  justify-content: space-between;
  color: #68755f;
  font-size: 10px;
  margin-top: 29px;
  padding-top: 18px;
  border-top: 1px solid #e8ecdf;
}
.prose {
  max-width: 760px;
  margin: 65px auto 100px;
  line-height: 1.95;
  color: #64735b;
}
.prose h1 {
  font-size: 40px;
  color: var(--ink);
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.prose h2 {
  font-size: 21px;
  font-weight: 600;
  color: var(--ink);
  margin: 44px 0 12px;
}
.prose p,
.prose li {
  font-size: 15px;
}
.prose a:not(.button) {
  text-decoration: underline;
  text-underline-offset: 4px;
  color: #35573d;
}
.prose .lead {
  font-size: 17px;
  color: #89947f;
}
.prose code {
  font-size: 12px;
  background: #eaf0e3;
  padding: 3px 6px;
  word-break: break-all;
}
.prose .note {
  padding: 16px 21px;
  background: #eaf0e3;
  border-radius: 9px;
  font-size: 13px;
}
.prose details {
  border-bottom: 1px solid var(--line);
  padding: 17px 0;
}
.prose summary {
  cursor: pointer;
  font-size: 15px;
  color: #30452c;
  font-weight: 550;
}
.prose details p {
  font-size: 14px;
}
.prose ol {
  padding-left: 22px;
}
.prose li {
  padding-left: 7px;
  margin: 8px 0;
}
.hero > .eyebrow,
.hero > h1,
.hero > .intro,
.hero-actions {
  animation: enter 0.65s both;
}
.hero > h1 {
  animation-delay: 0.06s;
}
.hero > .intro {
  animation-delay: 0.12s;
}
.hero-actions {
  animation-delay: 0.18s;
}
@keyframes enter {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (min-width: 1450px) {
  .hero {
    padding-top: 45px;
  }
}
@media (max-width: 1000px) {
  .wrap {
    width: calc(100% - 56px);
  }
  .app-layout {
    grid-template-columns: 125px 1fr;
  }
  .app-content {
    padding: 24px 18px 18px;
  }
  .demo-grid {
    gap: 11px;
  }
  .post-info {
    padding: 10px;
  }
  .feature-grid {
    gap: 20px;
  }
  .feature-art {
    height: 185px;
  }
  .copy-paper,
  .receipt {
    width: 84%;
  }
  .floating-tag {
    right: 14px;
  }
  .local-section {
    gap: 18px;
  }
  .platform-line {
    gap: 20px;
  }
}
@media (max-width: 700px) {
  .wrap {
    width: calc(100% - 36px);
  }
  .nav {
    height: 82px;
  }
  .brand strong {
    font-size: 18px;
  }
  .brand > span {
    display: none;
  }
  .nav nav {
    gap: 19px;
    font-size: 12px;
  }
  .nav nav > a:first-child {
    display: none;
  }
  .button.small {
    font-size: 11px;
    padding: 10px 13px;
  }
  .hero {
    padding-top: 42px;
  }
  h1 {
    font-size: 49px;
    letter-spacing: -2px;
  }
  .intro {
    font-size: 14px;
  }
  .mobile-break {
    display: block;
  }
  .hero-actions {
    gap: 20px;
  }
  .button {
    font-size: 13px;
    padding: 15px 19px;
  }
  .text-link {
    font-size: 12px;
  }
  .release {
    font-size: 10px;
  }
  .app-scene {
    margin-top: 49px;
  }
  .scene-label {
    font-size: 9px;
  }
  .app-layout {
    grid-template-columns: 1fr;
    min-height: 340px;
  }
  .app-sidebar {
    display: none;
  }
  .app-content {
    padding: 20px 16px;
  }
  .window-top {
    height: 32px;
  }
  .app-heading h2 {
    font-size: 20px;
  }
  .demo-grid {
    gap: 10px;
    min-height: 230px;
  }
  .post-info h3 {
    font-size: 10px;
  }
  .post-info p {
    font-size: 8px;
  }
  .post-meta {
    font-size: 7px;
  }
  .platform-line {
    flex-wrap: wrap;
    padding: 29px 0;
    gap: 17px;
  }
  .platform-line > span:first-child {
    width: 100%;
    text-align: center;
    font-size: 11px;
  }
  .more-platforms {
    display: none;
  }
  .features {
    padding: 73px 0 55px;
  }
  .section-heading h2 {
    font-size: 29px;
  }
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 42px;
    max-width: 420px;
    margin: auto;
  }
  .feature-art {
    height: 230px;
    margin-bottom: 22px;
  }
  .copy-paper {
    width: 224px;
  }
  .receipt {
    width: 235px;
  }
  .floating-tag {
    right: calc(50% - 102px);
  }
  .feature-grid h3 {
    font-size: 19px;
  }
  .feature-grid p {
    font-size: 14px;
  }
  .local-section {
    flex-wrap: wrap;
    padding: 32px 0;
    align-items: flex-start;
  }
  .local-icon {
    width: 49px;
    height: 49px;
    border-radius: 12px;
  }
  .local-icon svg {
    width: 28px;
  }
  .local-section > div:nth-child(2) {
    flex: 1;
  }
  .local-section h2 {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 8px;
  }
  .local-section p {
    font-size: 12px;
  }
  .desktop-break {
    display: none;
  }
  .local-section .text-link {
    margin-left: 67px;
    margin-top: -4px;
  }
  .download-section {
    padding: 67px 0 65px;
  }
  .download-section h2 {
    font-size: 35px;
  }
  .footer {
    gap: 21px;
  }
  .footer-links {
    gap: 19px;
    font-size: 11px;
  }
  .copyright {
    margin-top: 0;
    font-size: 9px;
  }
  .footer p {
    font-size: 10px;
  }
  .prose {
    margin: 40px auto 65px;
  }
  .prose h1 {
    font-size: 32px;
  }
  .prose p,
  .prose li {
    font-size: 14px;
  }
  .prose .lead {
    font-size: 15px;
  }
}
@media (max-width: 430px) {
  .demo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .post-card:last-child {
    grid-column: auto;
  }
  .app-toolbar {
    margin: 17px 0 12px;
  }
  .mock-search {
    width: 117px;
    font-size: 8px;
  }
  .post-info {
    padding: 11px;
  }
  .post-info h3 {
    font-size: 10px;
  }
  .post-info p {
    font-size: 9px;
  }
  .post-meta {
    font-size: 8px;
  }
  .demo-grid {
    min-height: 230px;
  }
  .hero-actions {
    gap: 17px;
  }
  .hero .text-link {
    font-size: 11px;
  }
  h1 {
    font-size: 44px;
  }
  .post-card:last-child .cover {
    aspect-ratio: 1.4;
  }
  .scene-label > span:last-child {
    display: none;
  }
  .footer {
    align-items: flex-start;
  }
  .footer-links {
    flex-wrap: wrap;
    max-width: 110px;
    row-gap: 12px;
    justify-content: flex-end;
  }
  .brand img {
    width: 32px;
    height: 32px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
}

@media (max-width: 700px) {
  .app-scene:before {
    left: 0;
    right: 0;
  }
}
