/* ═══════════════════════════════════════════════
   RESET & TOKENS
   ═══════════════════════════════════════════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #080b10;
  --bg-card: #0d1117;
  --bg-raised: #151b23;
  --bg-hover: #1c2330;
  --border: #1b2130;
  --border-light: #2a3140;
  --text: #e2e8f0;
  --text-dim: #8892a4;
  --text-muted: #505868;
  --accent: #60a5fa;
  --accent-dim: rgba(96, 165, 250, 0.12);
  --green: #34d399;
  --green-dim: rgba(52, 211, 153, 0.1);
  --orange: #fbbf24;
  --purple: #a78bfa;
  --red: #f87171;
  --radius: 8px;
  --radius-lg: 12px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'JetBrains Mono', monospace;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--accent); color: var(--bg); }

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

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

/* ═══════════════════════════════════════════════
   LAYOUT
   ═══════════════════════════════════════════════ */
.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 28px;
}

.wrap--wide {
  max-width: 1200px;
}

/* ═══════════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 56px;
  display: flex;
  align-items: center;
  background: rgba(8, 11, 16, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav__inner {
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__brand {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav__link {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-dim);
  transition: color 0.15s;
}
.nav__link:hover { color: var(--text); }

.nav__buy {
  font-size: 11px;
  font-weight: 600;
  color: var(--bg);
  background: var(--text);
  padding: 7px 16px;
  border-radius: 5px;
  transition: all 0.15s;
}
.nav__buy:hover {
  background: var(--accent);
  color: var(--bg);
}

/* ═══════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════ */
.hero {
  padding: 130px 0 0;
  text-align: center;
}

.hero__badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(96, 165, 250, 0.18);
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 32px;
}

.hero__title {
  font-size: clamp(28px, 4.5vw, 50px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.035em;
  margin-bottom: 24px;
  color: var(--text);
}

.hero__title span {
  color: var(--text-muted);
}

.hero__sub {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-dim);
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  margin-bottom: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.15s;
  text-decoration: none;
  border-radius: 6px;
}

.btn--primary {
  font-size: 13px;
  color: var(--bg);
  background: var(--text);
  padding: 13px 32px;
}
.btn--primary:hover {
  background: var(--accent);
  color: var(--bg);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(96, 165, 250, 0.2);
}

.btn--ghost {
  font-size: 13px;
  color: var(--text-dim);
  background: transparent;
  border: 1px solid var(--border-light);
  padding: 12px 24px;
}
.btn--ghost:hover {
  color: var(--text);
  border-color: var(--text-muted);
}

.hero__meta {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 16px;
}

/* ═══════════════════════════════════════════════
   HERO IMAGE
   ═══════════════════════════════════════════════ */
.hero-image {
  margin: 56px auto 0;
  max-width: 1100px;
  padding: 0 28px;
}

.hero-image__frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow:
    0 2px 4px rgba(0,0,0,0.2),
    0 12px 48px rgba(0,0,0,0.4);
  opacity: 0;
  animation: fadeUp 0.6s ease 0.5s forwards;
}

.hero-image__frame img {
  width: 100%;
  height: auto;
  display: block;
}

/* ═══════════════════════════════════════════════
   PAIN POINTS — BENEFIT STRIP
   ═══════════════════════════════════════════════ */
.benefits {
  padding: 80px 0 0;
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.benefit {
  background: var(--bg-card);
  padding: 28px 24px;
}

.benefit__icon {
  font-size: 18px;
  margin-bottom: 12px;
  line-height: 1;
}

.benefit__title {
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.benefit__desc {
  font-size: 11px;
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════
   SECTION SHARED
   ═══════════════════════════════════════════════ */
.section {
  padding: 100px 0;
}

.section__label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.section__title {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.25;
  margin-bottom: 16px;
}

.section__desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-dim);
  max-width: 520px;
  line-height: 1.7;
}

.section--border {
  border-top: 1px solid var(--border);
}

/* ═══════════════════════════════════════════════
   VIDEO SECTION
   ═══════════════════════════════════════════════ */
.video-section {
  padding: 80px 0 100px;
}

.video-section__header {
  text-align: center;
  margin-bottom: 40px;
}

.video-section__frame {
  max-width: 820px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: 0 8px 40px rgba(0,0,0,0.3);
}

.video-section__frame video {
  width: 100%;
  height: auto;
  display: block;
}

.video-section__caption {
  text-align: center;
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 16px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

/* ═══════════════════════════════════════════════
   VIDEO EXPAND / LIGHTBOX
   ═══════════════════════════════════════════════ */
.video-section__frame {
  position: relative;
}

.video-expand-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--text-dim);
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s, background 0.15s, color 0.15s;
  z-index: 2;
}

.video-section__frame:hover .video-expand-btn {
  opacity: 1;
}

.video-expand-btn:hover {
  background: rgba(0,0,0,0.8);
  color: var(--text);
  border-color: rgba(255,255,255,0.25);
}

.video-lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
  cursor: pointer;
}

.video-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.video-lightbox__inner {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
}

.video-lightbox__inner video {
  width: 100%;
  height: auto;
  display: block;
}

/* ═══════════════════════════════════════════════
   FEATURES
   ═══════════════════════════════════════════════ */
.features {
  padding: 100px 0 0;
  border-top: 1px solid var(--border);
}

.features__header {
  margin-bottom: 0;
}

.features__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.feat-band {
  padding: 80px 0;
}

.feat-band--tinted {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* Feature row — alternating layout */
.feat {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 56px;
  align-items: center;
}

.feat--flip {
  grid-template-columns: 1fr 1.15fr;
}

.feat--flip .feat__text {
  order: -1;
}

.feat__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: 0 4px 32px rgba(0,0,0,0.3);
}

.feat__img img {
  width: 100%;
  height: auto;
}

.feat__img--constrain {
  display: flex;
  justify-content: center;
  border: none;
  box-shadow: none;
  background: transparent;
}

.feat__img--constrain img {
  width: auto;
  max-width: 280px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: 0 4px 32px rgba(0,0,0,0.3);
}

.feat__text {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feat__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  width: fit-content;
  padding: 4px 10px;
  border-radius: 4px;
}

.feat__badge--terminal {
  color: var(--accent);
  background: var(--accent-dim);
}

.feat__badge--monitor {
  color: var(--orange);
  background: rgba(251, 191, 36, 0.1);
}

.feat__badge--boards {
  color: var(--purple);
  background: rgba(167, 139, 250, 0.1);
}

.feat__badge--claimed {
  color: var(--green);
  background: var(--green-dim);
}

.feat__badge--screenshot {
  color: var(--green);
  background: var(--green-dim);
}

.feat__name {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.feat__desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1.8;
}

.feat__desc code {
  font-size: 11px;
  font-family: inherit;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  padding: 1px 7px;
  border-radius: 4px;
  color: var(--accent);
}

.feat__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}

.feat__tag {
  font-size: 10px;
  font-weight: 400;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 3px 9px;
  border-radius: 4px;
}

/* Screenshot tool — compact standalone */
.feat--solo {
  display: block;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.feat--solo .feat__text {
  align-items: center;
}

.feat--solo .feat__tags {
  justify-content: center;
}

/* ═══════════════════════════════════════════════
   HOW IT WORKS
   ═══════════════════════════════════════════════ */
.steps-section {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 56px;
}

.step__num {
  font-size: 44px;
  font-weight: 800;
  color: var(--border-light);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -0.04em;
}

.step__title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.step__desc {
  font-size: 12px;
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════
   PRICING
   ═══════════════════════════════════════════════ */
.pricing-section {
  padding: 100px 0;
  border-top: 1px solid var(--border);
  text-align: center;
}

.pricing-card {
  max-width: 440px;
  margin: 48px auto 0;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 44px 36px 36px;
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--green), var(--purple));
}

.pricing-card__name {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.pricing-card__price {
  font-size: 52px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 6px;
}

.pricing-card__price span {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-dim);
}

.pricing-card__note {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.pricing-card__features {
  list-style: none;
  text-align: left;
  margin-bottom: 32px;
}

.pricing-card__features li {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-dim);
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-card__features li:last-child {
  border-bottom: none;
}

.pricing-card__features li .check {
  color: var(--green);
  font-size: 13px;
  flex-shrink: 0;
}

.pricing-card .btn--primary {
  width: 100%;
  justify-content: center;
  padding: 14px;
  font-size: 13px;
}

/* ═══════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════ */
.footer {
  padding: 32px 0;
  border-top: 1px solid var(--border);
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__left {
  font-size: 11px;
  color: var(--text-muted);
}

.footer__left a {
  color: var(--text-dim);
  transition: color 0.15s;
}
.footer__left a:hover { color: var(--text); }

.footer__right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer__right a {
  font-size: 11px;
  color: var(--text-muted);
  transition: color 0.15s;
}
.footer__right a:hover { color: var(--text-dim); }

/* ═══════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero__badge,
.hero__title,
.hero__sub,
.hero__actions,
.hero__meta {
  opacity: 0;
  animation: fadeUp 0.5s ease forwards;
}

.hero__badge { animation-delay: 0.05s; }
.hero__title { animation-delay: 0.15s; }
.hero__sub { animation-delay: 0.25s; }
.hero__actions { animation-delay: 0.35s; }
.hero__meta { animation-delay: 0.42s; }

/* ═══════════════════════════════════════════════
   FEATURE PAGE
   ═══════════════════════════════════════════════ */
.feature-hero {
  padding: 120px 0 60px;
  text-align: center;
}

.feature-hero__title {
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.feature-hero__desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-dim);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.75;
}

.feature-details {
  padding: 60px 0;
}

.feature-details__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.feature-detail {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
}

.feature-detail__title {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
}

.feature-detail__desc {
  font-size: 12px;
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1.7;
}

.feature-media {
  max-width: 820px;
  margin: 0 auto 60px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: 0 8px 40px rgba(0,0,0,0.3);
}

.feature-media img,
.feature-media video {
  width: 100%;
  height: auto;
  display: block;
}

.feature-cta {
  padding: 80px 0;
  text-align: center;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* ═══════════════════════════════════════════════
   GUIDE / DOCS PAGE
   ═══════════════════════════════════════════════ */
.guide {
  padding: 120px 0 80px;
}

.guide__header {
  max-width: 680px;
  margin: 0 auto 56px;
  text-align: center;
}

.guide__body {
  max-width: 720px;
  margin: 0 auto;
}

.guide__body h2 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 48px 0 16px;
  line-height: 1.3;
}

.guide__body h3 {
  font-size: 14px;
  font-weight: 600;
  margin: 32px 0 12px;
}

.guide__body p {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1.85;
  margin-bottom: 20px;
}

.guide__body ul,
.guide__body ol {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1.85;
  margin: 0 0 20px 20px;
}

.guide__body li {
  margin-bottom: 6px;
}

.guide__body strong {
  font-weight: 600;
  color: var(--text);
}

.guide__body a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.guide__body a:hover {
  color: var(--text);
}

.guide__body code {
  font-size: 11px;
  font-family: inherit;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  padding: 1px 7px;
  border-radius: 4px;
  color: var(--accent);
}

.code-block {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 0 0 24px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.code-block__label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
  display: block;
}

.code-block pre {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 400;
  color: var(--text-dim);
  line-height: 1.7;
  white-space: pre;
  margin: 0;
}

.code-block pre .comment {
  color: var(--text-muted);
}

.code-block pre .string {
  color: var(--green);
}

.code-block pre .key {
  color: var(--accent);
}

.code-block pre .method {
  color: var(--orange);
}

.endpoint-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 0 0 24px;
}

.endpoint-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
  min-width: 480px;
}

.endpoint-table th {
  text-align: left;
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 10px 12px;
  border-bottom: 1px solid var(--border-light);
}

.endpoint-table td {
  font-weight: 300;
  color: var(--text-dim);
  padding: 10px 12px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.endpoint-table td:first-child {
  font-weight: 500;
  color: var(--orange);
  white-space: nowrap;
}

.endpoint-table td:nth-child(2) {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--accent);
}

/* ═══════════════════════════════════════════════
   BLOG
   ═══════════════════════════════════════════════ */
.blog-hero {
  padding: 120px 0 48px;
  text-align: center;
}

.blog-hero__title {
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.blog-hero__desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-dim);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

.blog-list {
  padding: 0 0 100px;
}

.blog-list__grid {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.blog-card {
  background: var(--bg-card);
  padding: 28px 32px;
  display: block;
  transition: background 0.15s;
}
.blog-card:hover {
  background: var(--bg-raised);
}

.blog-card__date {
  font-size: 10px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.blog-card__title {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  line-height: 1.3;
}

.blog-card__excerpt {
  font-size: 12px;
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1.7;
  max-width: 640px;
}

/* Blog Post */
.post {
  padding: 120px 0 80px;
}

.post__header {
  max-width: 680px;
  margin: 0 auto 48px;
}

.post__date {
  font-size: 10px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.post__title {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 16px;
}

.post__subtitle {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1.7;
}

.post__body {
  max-width: 680px;
  margin: 0 auto;
}

.post__body h2 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 40px 0 16px;
  line-height: 1.3;
}

.post__body h3 {
  font-size: 15px;
  font-weight: 600;
  margin: 32px 0 12px;
}

.post__body p {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1.85;
  margin-bottom: 20px;
}

.post__body ul,
.post__body ol {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1.85;
  margin: 0 0 20px 20px;
}

.post__body li {
  margin-bottom: 6px;
}

.post__body code {
  font-size: 11px;
  font-family: inherit;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  padding: 1px 7px;
  border-radius: 4px;
  color: var(--accent);
}

.post__body blockquote {
  border-left: 2px solid var(--accent);
  padding-left: 20px;
  margin: 24px 0;
}

.post__body blockquote p {
  color: var(--text);
  font-style: italic;
}

.post__body strong {
  font-weight: 600;
  color: var(--text);
}

.post__body a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.post__body a:hover {
  color: var(--text);
}

.post__footer {
  max-width: 680px;
  margin: 48px auto 0;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */
@media (max-width: 900px) {
  .feat,
  .feat--flip {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .feat--flip .feat__text { order: 0; }
  .benefits__grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .feature-details__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .feature-details__grid { grid-template-columns: 1fr; }
  .guide { padding: 100px 0 60px; }
  .guide__header { margin-bottom: 40px; }
  .guide__body h2 { font-size: 16px; margin-top: 36px; }
  .code-block { padding: 16px; }
  .code-block pre { font-size: 11px; }
  .hero { padding: 110px 0 0; }
  .hero__title { font-size: 28px; }
  .hero__sub { font-size: 13px; }
  .steps { grid-template-columns: 1fr; gap: 40px; }
  .nav__links a:not(.nav__buy) { display: none; }
  .nav__links { gap: 0; }
  .pricing-card { margin: 40px 12px 0; padding: 36px 24px 28px; }
  .feat-band { padding: 56px 0; }
  .feat__name { font-size: 18px; }
  .feat__img--constrain img { max-width: 200px; }
  .video-section { padding: 56px 0 64px; }
  .video-section__frame { border-radius: 8px; }
  .section { padding: 64px 0; }
  .steps-section { padding: 64px 0; }
  .feature-hero { padding: 100px 0 40px; }
  .blog-hero { padding: 100px 0 36px; }
  .post { padding: 100px 0 60px; }
}

@media (max-width: 480px) {
  .code-block { padding: 12px; border-radius: 6px; }
  .code-block pre { font-size: 10px; }
  .guide__body p { font-size: 12px; }
  .guide__body ul { font-size: 12px; }
  .hero { padding: 96px 0 0; }
  .hero__badge { font-size: 9px; padding: 4px 12px; }
  .hero__actions { flex-direction: column; width: 100%; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .hero-image { padding: 0 16px; }
  .footer__inner { flex-direction: column; gap: 12px; text-align: center; }
  .section__title { font-size: 20px; }
  .feat__desc { font-size: 12px; }
  .blog-card { padding: 20px; }
  .post__body p { font-size: 12px; }
}
