:root {
  --bg: #0a0e0c;
  --bg-2: #0f1411;
  --surface: #131a16;
  --surface-2: #19211c;
  --border: #1f2a23;
  --border-bright: #2a3830;
  --text: #e8efe9;
  --text-dim: #93a297;
  --text-faint: #5d6b62;
  --accent: #3fe09b;
  --accent-2: #6ef0b6;
  --accent-soft: rgba(63, 224, 155, 0.12);
  --accent-glow: rgba(63, 224, 155, 0.35);
  --danger: #ff6b6b;
  --warn: #f3c95d;
  --serif: 'Instrument Serif', Georgia, serif;
  --sans: 'Inter', system-ui, -apple-system, sans-serif;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 20px 60px -20px rgba(0,0,0,0.6);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.55;
  overflow-x: hidden;
}

::selection { background: var(--accent); color: #0a0e0c; }

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img, svg { display: block; max-width: 100%; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== NAV ===== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(10, 14, 12, 0.7);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease;
}
nav.scrolled {
  border-bottom-color: var(--border);
  background: rgba(10, 14, 12, 0.85);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.01em;
}
.logo-mark {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--accent), #2bb27a);
  display: grid;
  place-items: center;
  color: #0a0e0c;
  font-weight: 800;
  font-size: 17px;
  box-shadow: 0 4px 16px var(--accent-glow);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  color: var(--text-dim);
  font-size: 14.5px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  background: var(--accent);
  color: #0a0e0c !important;
  padding: 9px 18px;
  border-radius: 999px;
  font-weight: 600 !important;
  font-size: 14px !important;
  transition: transform 0.15s, box-shadow 0.2s;
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px var(--accent-glow);
}
.nav-toggle { display: none; }

/* ===== HERO ===== */
.hero {
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse at center, var(--accent-soft) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: var(--accent-soft);
  border: 1px solid rgba(63, 224, 155, 0.25);
  border-radius: 999px;
  font-size: 13px;
  color: var(--accent-2);
  font-weight: 500;
  margin-bottom: 28px;
}
.pill-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
h1 {
  font-family: var(--serif);
  font-size: clamp(44px, 7vw, 84px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  font-weight: 400;
  margin-bottom: 20px;
}
h1 em {
  font-style: italic;
  color: var(--accent);
}
.hero-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(19px, 2.4vw, 24px);
  color: var(--text-dim);
  margin-bottom: 22px;
}
.hero-tagline strong {
  color: var(--text);
  font-weight: 400;
}
.hero-sub {
  font-size: clamp(16px, 1.8vw, 18px);
  color: var(--text-dim);
  max-width: 620px;
  margin: 0 auto 40px;
  line-height: 1.6;
}
.hero-cta-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15.5px;
  transition: all 0.2s;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--accent);
  color: #0a0e0c;
  box-shadow: 0 8px 24px var(--accent-glow);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px var(--accent-glow);
  background: var(--accent-2);
}
.btn-secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--border-bright);
}
.btn-secondary:hover {
  background: var(--surface);
  border-color: #3a4a40;
}
.hero-meta {
  color: var(--text-faint);
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.hero-meta span { display: flex; align-items: center; gap: 6px; }
.check {
  width: 14px; height: 14px;
  color: var(--accent);
}

/* ===== PRODUCT SHOWCASE ===== */
.showcase {
  padding: 40px 0 100px;
  position: relative;
}
.showcase-inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}
.showcase-glow {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 60%;
  background: radial-gradient(ellipse, var(--accent-glow) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 0;
  opacity: 0.4;
}
.browser {
  position: relative;
  z-index: 1;
  background: var(--surface);
  border: 1px solid var(--border-bright);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.7);
}
.browser-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
}
.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot-r { background: #ff5f57; }
.dot-y { background: #febc2e; }
.dot-g { background: #28c840; }
.browser-url {
  flex: 1;
  margin-left: 12px;
  padding: 5px 12px;
  background: var(--bg);
  border-radius: 6px;
  font-size: 12px;
  color: var(--text-faint);
  font-family: ui-monospace, monospace;
}
.dashboard {
  padding: 28px;
  background: var(--surface);
  min-height: 480px;
}
.dash-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 16px;
}
.dash-title { font-size: 22px; font-weight: 700; margin-bottom: 4px; }
.dash-sub { color: var(--text-dim); font-size: 13.5px; }
.month-selector {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-2);
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-dim);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}
.stat-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px;
}
.stat-label {
  font-size: 11.5px;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
  font-weight: 500;
}
.stat-value { font-size: 22px; font-weight: 700; letter-spacing: -0.01em; }
.stat-change {
  font-size: 12px;
  margin-top: 4px;
  color: var(--accent);
  font-weight: 500;
}
.stat-change.down { color: var(--danger); }
.dash-row {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 14px;
}
.panel {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px;
}
.panel-title {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text);
}
.chart {
  height: 180px;
  position: relative;
}
.chart svg { width: 100%; height: 100%; }
.category-list { display: flex; flex-direction: column; gap: 12px; }
.category {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
}
.cat-dot { width: 10px; height: 10px; border-radius: 3px; flex-shrink: 0; }
.cat-name { flex: 1; color: var(--text-dim); }
.cat-value { font-weight: 600; color: var(--text); font-variant-numeric: tabular-nums; }

/* ===== TRUSTED ===== */
.trusted {
  padding: 30px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trusted-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  text-align: center;
}
.trusted-label {
  font-size: 12px;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}
.trusted-logos {
  display: flex;
  gap: 36px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.trusted-logo {
  color: var(--text-faint);
  font-weight: 600;
  font-size: 16px;
  opacity: 0.55;
  transition: opacity 0.2s;
}
.trusted-logo:hover { opacity: 0.9; }

/* ===== SECTIONS ===== */
section { padding: 100px 0; }
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.eyebrow {
  display: inline-block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 14px;
}
h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 400;
  margin-bottom: 16px;
}
h2 em { font-style: italic; color: var(--accent); }
.section-sub {
  font-size: 17px;
  color: var(--text-dim);
  line-height: 1.6;
}

/* ===== COMPARISON TABLE ===== */
.compare {
  background: linear-gradient(180deg, var(--bg-2), transparent);
}
.compare-table-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  overflow-x: auto;
  box-shadow: var(--shadow);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}
.compare-table th,
.compare-table td {
  padding: 18px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 14.5px;
  vertical-align: middle;
}
.compare-table thead th {
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
  background: var(--surface-2);
  border-bottom: 1px solid var(--border-bright);
  text-align: center;
}
.compare-table thead th:first-child { text-align: left; }
.compare-table td:not(:first-child) { text-align: center; }
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table td:first-child {
  color: var(--text);
  font-weight: 500;
  width: 32%;
}
.col-us {
  background: linear-gradient(180deg, var(--accent-soft), transparent);
  border-left: 1px solid rgba(63,224,155,0.25);
  border-right: 1px solid rgba(63,224,155,0.25);
}
.compare-table th.col-us {
  color: var(--accent) !important;
  font-weight: 700;
  border-top: 1px solid var(--accent);
}
.yes { color: var(--accent); font-weight: 600; }
.no { color: var(--danger); font-weight: 500; }
.meh { color: var(--warn); font-weight: 500; }
.cell-note { color: var(--text-faint); font-size: 12px; display: block; margin-top: 2px; font-weight: 400; }

/* ===== FEATURES ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.feature {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  transition: border-color 0.2s, transform 0.2s;
}
.feature:hover {
  border-color: var(--border-bright);
  transform: translateY(-2px);
}
.feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}
.feature h3 {
  font-size: 18px;
  margin-bottom: 8px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.feature p {
  color: var(--text-dim);
  font-size: 14.5px;
  line-height: 1.6;
}

/* ===== HOW IT WORKS ===== */
.how {
  background: linear-gradient(180deg, transparent, var(--bg-2));
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}
.step {
  position: relative;
  text-align: center;
}
.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent-soft);
  border: 1px solid var(--accent);
  color: var(--accent);
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
}
.step h3 {
  font-size: 19px;
  margin-bottom: 10px;
  font-weight: 600;
}
.step p {
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.6;
  max-width: 280px;
  margin: 0 auto;
}

/* ===== WHY ONE FILE ===== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.why-text h2 { text-align: left; }
.why-list {
  list-style: none;
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.why-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.why-check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent);
  color: #0a0e0c;
  display: grid;
  place-items: center;
  margin-top: 2px;
}
.why-list strong { display: block; font-weight: 600; margin-bottom: 2px; font-size: 15.5px; }
.why-list span { color: var(--text-dim); font-size: 14.5px; line-height: 1.55; }

.file-visual {
  aspect-ratio: 1 / 1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.file-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, var(--accent-soft) 0%, transparent 60%);
}
.file-icon {
  position: relative;
  width: 180px;
  height: 220px;
  background: linear-gradient(160deg, var(--surface-2), var(--bg-2));
  border: 1px solid var(--border-bright);
  border-radius: 12px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.7), 0 0 60px var(--accent-soft);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: rotate(-4deg);
  transition: transform 0.4s ease;
}
.file-visual:hover .file-icon { transform: rotate(0deg) scale(1.03); }
.file-icon::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  background: var(--bg);
  border-bottom-left-radius: 12px;
  border-left: 1px solid var(--border-bright);
  border-bottom: 1px solid var(--border-bright);
}
.file-ext {
  font-family: ui-monospace, monospace;
  font-weight: 700;
  font-size: 32px;
  color: var(--accent);
  letter-spacing: 0.02em;
}
.file-label {
  font-size: 13px;
  color: var(--text-dim);
  margin-top: 6px;
}
.file-size {
  position: absolute;
  bottom: 18px;
  font-size: 11px;
  color: var(--text-faint);
  font-family: ui-monospace, monospace;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.testimonial {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
}
.testimonial p {
  color: var(--text);
  font-size: 15.5px;
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #2bb27a);
  display: grid;
  place-items: center;
  color: #0a0e0c;
  font-weight: 700;
  font-size: 15px;
}
.author-name { font-weight: 600; font-size: 14.5px; }
.author-role { color: var(--text-faint); font-size: 13px; }
.author-source { color: var(--text-faint); font-size: 12px; margin-top: 2px; }

/* ===== PRICING ===== */
.pricing {
  background: linear-gradient(180deg, var(--bg-2), transparent);
}
.price-card {
  max-width: 480px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border-bright);
  border-radius: 20px;
  padding: 44px 40px;
  text-align: center;
  position: relative;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.6);
}
.price-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(180deg, var(--accent), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.price-badge {
  display: inline-block;
  background: var(--accent-soft);
  color: var(--accent);
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.price {
  font-family: var(--serif);
  font-size: 84px;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}
.price-currency {
  font-size: 38px;
  vertical-align: top;
  line-height: 1.4;
  color: var(--text-dim);
}
.price-period {
  color: var(--text-dim);
  font-size: 15px;
  margin-bottom: 28px;
}
.price-vs {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  font-size: 12.5px;
  color: var(--text-faint);
}
.price-vs span { display: flex; align-items: center; gap: 6px; }
.price-vs s { color: var(--text-faint); }
.price-features {
  list-style: none;
  text-align: left;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.price-features li {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 14.5px;
  color: var(--text);
}
.price-features svg {
  color: var(--accent);
  flex-shrink: 0;
}
.btn-buy {
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 16px;
}
.price-note {
  color: var(--text-faint);
  font-size: 12.5px;
  margin-top: 16px;
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 4px 0;
}
.faq-q {
  width: 100%;
  text-align: left;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 17px;
  font-weight: 500;
  color: var(--text);
  transition: color 0.2s;
}
.faq-q:hover { color: var(--accent-2); }
.faq-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--text-dim);
  transition: transform 0.3s ease, color 0.2s;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  color: var(--accent);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease, padding 0.3s ease;
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.65;
}
.faq-item.open .faq-a {
  max-height: 500px;
  padding-bottom: 22px;
}
.faq-a a { color: var(--accent-2); text-decoration: underline; text-decoration-color: rgba(110,240,182,0.4); }

/* ===== CTA ===== */
.cta-section {
  text-align: center;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(ellipse, var(--accent-soft) 0%, transparent 60%);
  filter: blur(60px);
  z-index: 0;
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 {
  margin-bottom: 20px;
}
.cta-section p {
  color: var(--text-dim);
  font-size: 18px;
  margin-bottom: 36px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== ARTICLE PAGES (comparison) ===== */
.article-head {
  padding: 140px 0 60px;
  position: relative;
  overflow: hidden;
}
.article-head::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(ellipse, var(--accent-soft) 0%, transparent 60%);
  pointer-events: none;
}
.article-head .container { position: relative; z-index: 1; max-width: 820px; }
.crumbs { color: var(--text-faint); font-size: 13.5px; margin-bottom: 22px; }
.crumbs a { color: var(--text-dim); transition: color 0.2s; }
.crumbs a:hover { color: var(--accent); }
.article-head h1 {
  font-size: clamp(36px, 5.5vw, 60px);
  margin-bottom: 18px;
  text-align: left;
}
.article-head .lede {
  font-size: clamp(17px, 1.9vw, 19px);
  color: var(--text-dim);
  line-height: 1.6;
}
.article-meta {
  margin-top: 24px;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--text-faint);
}
.article-meta span { display: flex; align-items: center; gap: 6px; }

.article {
  padding: 30px 0 80px;
}
.article .container { max-width: 780px; }
.article h2 {
  font-size: clamp(28px, 3.6vw, 38px);
  text-align: left;
  margin: 56px 0 16px;
}
.article h3 {
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 36px 0 12px;
}
.article p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-dim);
  margin-bottom: 18px;
}
.article p strong, .article li strong { color: var(--text); font-weight: 600; }
.article ul { color: var(--text-dim); padding-left: 22px; margin-bottom: 20px; }
.article li { font-size: 16.5px; line-height: 1.65; margin-bottom: 10px; }
.article .compare-table-wrap { margin: 30px 0; }
.article blockquote {
  border-left: 3px solid var(--accent);
  padding: 4px 0 4px 20px;
  margin: 26px 0;
  color: var(--text);
  font-style: italic;
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.5;
}
.callout {
  background: var(--accent-soft);
  border: 1px solid rgba(63,224,155,0.25);
  border-radius: var(--radius);
  padding: 24px 26px;
  margin: 30px 0;
}
.callout strong { color: var(--accent); display: block; margin-bottom: 6px; font-size: 13px; text-transform: uppercase; letter-spacing: 0.1em; }
.callout p { color: var(--text); font-size: 16px; margin-bottom: 0; }

.inline-cta {
  background: var(--surface);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius);
  padding: 32px;
  margin: 40px 0;
  text-align: center;
}
.inline-cta h3 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.inline-cta p { color: var(--text-dim); margin-bottom: 22px; font-size: 15px; }

.related {
  border-top: 1px solid var(--border);
  padding: 60px 0;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 30px;
}
.related-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.2s, transform 0.2s;
}
.related-card:hover {
  border-color: var(--border-bright);
  transform: translateY(-2px);
}
.related-card .eyebrow { margin-bottom: 8px; }
.related-card h3 { font-family: var(--serif); font-size: 22px; font-weight: 400; margin-bottom: 8px; letter-spacing: -0.01em; }
.related-card p { color: var(--text-dim); font-size: 14.5px; margin-bottom: 16px; }
.related-card .arrow { color: var(--accent); font-weight: 600; font-size: 14px; }

/* ===== FOOTER ===== */
footer {
  padding: 60px 0 40px;
  border-top: 1px solid var(--border);
  margin-top: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer-about p {
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.6;
  margin-top: 14px;
  max-width: 280px;
}
.footer-col h4 {
  font-size: 12px;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
  font-weight: 600;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a {
  color: var(--text-dim);
  font-size: 14px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 30px;
  border-top: 1px solid var(--border);
  color: var(--text-faint);
  font-size: 13px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .nav-links { display: none; position: absolute; top: 68px; left: 0; right: 0; flex-direction: column; background: var(--bg-2); padding: 20px 24px; border-bottom: 1px solid var(--border); gap: 18px; align-items: stretch; }
  .nav-links.open { display: flex; }
  .nav-cta { text-align: center; }
  .nav-toggle {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    color: var(--text);
  }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .dash-row { grid-template-columns: 1fr; }
  .features-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 50px; }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-text h2 { text-align: center; }
  .related-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  section { padding: 70px 0; }
  .hero { padding: 130px 0 50px; }
  .article-head { padding: 110px 0 30px; }
  .article-head h1 { text-align: left; }
  .dashboard { padding: 18px; }
  .price-card { padding: 36px 26px; }
  .price { font-size: 68px; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
