:root {
  --ink: #191b1a;
  --muted: #686d68;
  --paper: #f6f6f1;
  --panel: #fff;
  --line: #dcded6;
  --acid: #dfff55;
  --blue: #5077ff;
  --orange: #ff7048;
  --mono: "Courier New", monospace;
  --sans: "Avenir Next", "Segoe UI", sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.55;
}
a {
  color: inherit;
}
.shell {
  width: min(1160px, calc(100% - 40px));
  margin: auto;
}
.nav {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  font-weight: 750;
  letter-spacing: -0.03em;
}
.brand img {
  width: 36px;
  height: 36px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 13px;
}
.nav-links a {
  text-decoration: none;
  color: #555b56;
}
.store-button,
.primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  border-radius: 9px;
  padding: 12px 17px;
  font-weight: 700;
  font-size: 13px;
  box-shadow: 0 8px 24px rgba(25, 27, 26, 0.14);
}
.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(
      circle at 82% 20%,
      rgba(80, 119, 255, 0.13),
      transparent 24%
    ),
    linear-gradient(180deg, #f0f2e7 0%, var(--paper) 92%);
}
.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(25, 27, 26, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(25, 27, 26, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, #000, transparent 80%);
  pointer-events: none;
}
.hero-grid {
  min-height: 690px;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 70px;
  position: relative;
  z-index: 1;
}
.kicker {
  font: 700 11px var(--mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #61675f;
}
.hero h1 {
  font-size: clamp(48px, 6vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.072em;
  margin: 18px 0 24px;
  max-width: 760px;
}
.hero h1 em {
  font-style: normal;
  background: var(--acid);
  padding: 0 0.1em;
}
.hero-copy > p {
  font-size: 18px;
  color: #565c57;
  max-width: 590px;
}
.actions {
  display: flex;
  gap: 12px;
  margin: 30px 0;
}
.secondary {
  display: inline-flex;
  align-items: center;
  border: 1px solid #cfd2ca;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 9px;
  text-decoration: none;
  padding: 11px 16px;
  font-weight: 650;
  font-size: 13px;
}
.trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.trust span {
  font: 700 10px var(--mono);
  background: #e7e9e1;
  border: 1px solid #d6d8d0;
  padding: 7px 9px;
  border-radius: 7px;
}
.product-window {
  background: #202320;
  border: 1px solid #343834;
  border-radius: 18px;
  box-shadow: 0 35px 80px rgba(24, 27, 24, 0.24);
  overflow: hidden;
  transform: rotate(1.5deg);
}
.window-bar {
  height: 42px;
  border-bottom: 1px solid #383c38;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  color: #9da39b;
  font: 10px var(--mono);
}
.window-dots {
  display: flex;
  gap: 6px;
}
.window-dots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #646a63;
}
.window-body {
  display: grid;
  grid-template-columns: 100px 1fr;
  min-height: 390px;
}
.mini-nav {
  padding: 18px 10px;
  border-right: 1px solid #383c38;
}
.mini-logo {
  width: 32px;
  height: 32px;
  margin: 0 0 22px 5px;
}
.mini-nav span {
  display: block;
  height: 28px;
  margin: 5px 0;
  border-radius: 6px;
  background: #2c302c;
}
.mini-nav span:first-of-type {
  background: var(--acid);
}
.mini-main {
  padding: 24px;
}
.mini-label {
  font: 10px var(--mono);
  color: #8b928a;
}
.mini-main h3 {
  font-size: 24px;
  color: #fff;
  margin: 6px 0 20px;
}
.model-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  border-top: 1px solid #3a3f3a;
  padding: 14px 0;
  color: #e0e4de;
}
.model-row small {
  display: block;
  color: #838b82;
  font: 9px var(--mono);
  margin-top: 3px;
}
.model-row b:last-child {
  color: var(--acid);
  font: 10px var(--mono);
}
.signal {
  height: 5px;
  background: #373c37;
  margin-top: 26px;
}
.signal i {
  display: block;
  width: 72%;
  height: 100%;
  background: linear-gradient(90deg, var(--acid), var(--blue));
}
.section {
  padding: 104px 0;
}
.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 48px;
}
.section h2 {
  font-size: 43px;
  line-height: 1.04;
  letter-spacing: -0.055em;
  margin: 8px 0 0;
}
.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.feature {
  background: rgba(255, 255, 255, 0.45);
  padding: 28px;
  min-height: 220px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.feature-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--acid);
  border-radius: 8px;
  font: 700 11px var(--mono);
}
.feature:nth-child(2) .feature-mark,
.feature:nth-child(5) .feature-mark {
  background: var(--blue);
  color: #fff;
}
.feature:nth-child(3) .feature-mark {
  background: var(--orange);
  color: #fff;
}
.feature h3 {
  margin: 30px 0 8px;
  font-size: 17px;
}
.feature p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}
.how {
  background: #202320;
  color: #f5f6f1;
}
.how .kicker {
  color: #a8afa6;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px;
  margin-top: 48px;
}
.step-num {
  font: 700 48px var(--mono);
  color: var(--acid);
}
.steps h3 {
  font-size: 20px;
  margin: 12px 0 8px;
}
.steps p {
  color: #aab0aa;
  margin: 0;
}
.faq {
  max-width: 820px;
}
.faq details {
  border-top: 1px solid var(--line);
  padding: 21px 0;
}
.faq details:last-child {
  border-bottom: 1px solid var(--line);
}
.faq summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
  display: flex;
  justify-content: space-between;
}
.faq summary:after {
  content: "+";
  font: 20px var(--mono);
}
.faq details[open] summary:after {
  content: "−";
}
.faq details p {
  color: var(--muted);
  max-width: 720px;
}
.cta {
  padding: 30px 0 100px;
}
.cta-box {
  background: var(--acid);
  padding: 56px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.cta h2 {
  font-size: 36px;
  letter-spacing: -0.05em;
  margin: 0 0 8px;
}
.cta p {
  margin: 0;
  color: #4d5730;
}
.footer {
  border-top: 1px solid var(--line);
  padding: 28px 0 44px;
  color: #707570;
  font-size: 12px;
}
.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.footer-links {
  display: flex;
  gap: 20px;
}
.legal {
  max-width: 820px;
  padding: 72px 0 110px;
}
.legal h1 {
  font-size: 48px;
  letter-spacing: -0.06em;
  margin: 10px 0 12px;
}
.legal .updated {
  font: 11px var(--mono);
  color: #777d76;
  margin-bottom: 44px;
}
.legal h2 {
  font-size: 20px;
  margin: 36px 0 8px;
}
.legal p,
.legal li {
  color: #555b56;
}
.legal a {
  font-weight: 700;
}

/* Product screenshots */
.showcase {
  padding-top: 0;
}
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.screenshot-card {
  margin: 0;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 46px rgba(25, 27, 26, 0.08);
}
.screenshot-card img,
.article-figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: #f2f3ee;
}
.screenshot-card figcaption {
  padding: 18px 20px 20px;
  color: var(--muted);
  font-size: 13px;
}
.screenshot-card strong {
  display: block;
  color: var(--ink);
  font-size: 15px;
  margin-bottom: 4px;
}

/* Blog listing */
.blog-preview {
  background: #eceee6;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.post-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}
.post-card {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  color: inherit;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 14px;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
}
.post-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(25, 27, 26, 0.1);
}
.post-card .post-tag,
.article-meta,
.eyebrow {
  font: 700 10px var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #626960;
}
.post-card h3 {
  max-width: 520px;
  margin: 20px 0 12px;
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -0.035em;
}
.post-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.post-card .read-more {
  margin-top: 28px;
  font: 700 11px var(--mono);
  color: var(--ink);
}
.section-link {
  display: inline-flex;
  margin-top: 28px;
  font-weight: 700;
}

/* Blog pages */
.page-header {
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #f0f2e7, var(--paper));
}
.page-intro {
  padding: 92px 0 82px;
}
.page-intro h1 {
  max-width: 880px;
  margin: 14px 0 18px;
  font-size: clamp(44px, 6vw, 72px);
  line-height: 1;
  letter-spacing: -0.065em;
}
.page-intro > p {
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
}
.article-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 760px);
  justify-content: center;
  gap: 64px;
  padding: 72px 0 110px;
}
.article-toc {
  position: sticky;
  top: 28px;
  align-self: start;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.article-toc strong {
  display: block;
  margin-bottom: 10px;
  font: 700 10px var(--mono);
  letter-spacing: 0.1em;
}
.article-toc a {
  display: block;
  padding: 5px 0;
  color: var(--muted);
  font-size: 12px;
  text-decoration: none;
}
.article-content {
  min-width: 0;
}
.article-content .lead {
  margin-top: 0;
  color: #3f4540;
  font-size: 21px;
  line-height: 1.6;
}
.article-content h2 {
  margin: 56px 0 14px;
  font-size: 32px;
  line-height: 1.15;
  letter-spacing: -0.04em;
  scroll-margin-top: 28px;
}
.article-content h3 {
  margin: 34px 0 10px;
  font-size: 20px;
}
.article-content p,
.article-content li {
  color: #4f5550;
  font-size: 16px;
}
.article-content li + li {
  margin-top: 8px;
}
.article-content code {
  padding: 0.12em 0.36em;
  border-radius: 4px;
  background: #e8eae3;
  font: 0.88em var(--mono);
}
.article-figure {
  margin: 38px 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel);
}
.article-figure figcaption {
  padding: 14px 18px;
  color: var(--muted);
  font-size: 12px;
}
.callout,
.checklist,
.decision-table {
  margin: 28px 0;
  padding: 22px 24px;
  border: 1px solid #d1d7b8;
  border-left: 5px solid var(--acid);
  border-radius: 10px;
  background: #f0f3df;
}
.callout strong,
.checklist strong {
  display: block;
  margin-bottom: 8px;
}
.checklist ul {
  margin-bottom: 0;
}
.decision-table {
  overflow-x: auto;
  padding: 0;
  border-left: 1px solid var(--line);
  background: var(--panel);
}
.decision-table table {
  width: 100%;
  border-collapse: collapse;
  min-width: 620px;
}
.decision-table th,
.decision-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  font-size: 13px;
}
.decision-table th {
  background: #eceee6;
  font: 700 10px var(--mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.article-cta {
  margin-top: 58px;
  padding: 32px;
  border-radius: 14px;
  background: var(--ink);
  color: #fff;
}
.article-cta h2 {
  margin-top: 0;
  color: #fff;
}
.article-cta p {
  color: #c7ccc6;
}
.article-cta .primary {
  background: var(--acid);
  color: var(--ink);
}
.breadcrumbs {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 12px;
}
.breadcrumbs a {
  text-decoration: none;
}
.breadcrumbs span {
  padding: 0 8px;
}
@media (max-width: 850px) {
  .nav-links > a:not(.store-button) {
    display: none;
  }
  .hero-grid,
  .section-head {
    grid-template-columns: 1fr;
  }
  .hero-grid {
    padding: 90px 0;
  }
  .product-window {
    transform: none;
  }
  .feature-grid,
  .steps,
  .showcase-grid,
  .post-grid {
    grid-template-columns: 1fr;
  }
  .feature {
    min-height: 0;
  }
  .cta-box,
  .footer-row {
    align-items: flex-start;
    flex-direction: column;
  }
  .section {
    padding: 76px 0;
  }
  .article-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .article-toc {
    position: static;
  }
  .page-intro {
    padding: 68px 0 58px;
  }
}
