:root {
  --bg: #fbf9f5;
  --surface: #ffffff;
  --surface-subtle: #f5f0e6;
  --surface-highlight: #faf6ee;
  --border: #e6ded2;
  --border-strong: #c8bdab;
  --ink: #1c1917;
  --ink-muted: #665e55;
  --ink-faint: #9c9284;
  --accent: #1e4620; /* Deep Forest Green */
  --accent-hover: #153417;
  --accent-soft: #eaf3eb;
  --gold: #e5a73b;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 3px rgba(28, 25, 23, 0.04);
  --shadow-md: 0 6px 20px rgba(28, 25, 23, 0.06);
  --shadow-lg: 0 18px 40px rgba(28, 25, 23, 0.09);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: "Plus Jakarta Sans", ui-sans-serif, system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ==========================================================================
   Navigation Bar
   ========================================================================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 249, 245, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-shell {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
}

.brand-icon {
  border-radius: 6px;
  box-shadow: 0 2px 5px rgba(30, 70, 32, 0.2);
}

.brand-name {
  font-family: "Newsreader", serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

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

.nav-links a {
  color: var(--ink-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.15s;
}

.nav-links a:hover {
  color: var(--accent);
}

.badge-free {
  background: rgba(255, 255, 255, 0.25);
  padding: 2px 7px;
  border-radius: 99px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Buttons */
.btn-primary {
  background: var(--accent);
  color: #ffffff;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--accent);
  transition: all 0.2s ease;
  box-shadow: 0 2px 6px rgba(30, 70, 32, 0.15);
}

.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(30, 70, 32, 0.25);
}

.btn-ghost {
  background: var(--surface);
  color: var(--ink);
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border-strong);
  transition: all 0.2s ease;
}

.btn-ghost:hover {
  background: var(--surface-subtle);
  border-color: var(--ink-muted);
  transform: translateY(-1px);
}

.btn-sm {
  padding: 7px 15px;
  font-size: 13px;
}

.btn-lg {
  padding: 14px 28px;
  font-size: 15.5px;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  padding: 72px 24px 60px;
  text-align: center;
}

.hero-shell {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent-soft);
  color: var(--accent);
  border: 1px solid #c9e2cd;
  padding: 5px 14px;
  border-radius: 99px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.sparkle {
  color: var(--gold);
}

.hero-title {
  font-family: "Newsreader", serif;
  font-size: 56px;
  line-height: 1.12;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--ink);
}

.italic-serif {
  font-style: italic;
  color: var(--accent);
}

.hero-subtitle {
  font-size: 18.5px;
  color: var(--ink-muted);
  line-height: 1.55;
  max-width: 680px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.trust-strip {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 16px;
  font-size: 13px;
  color: var(--ink-muted);
  flex-wrap: wrap;
  justify-content: center;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-weight: 600;
}

/* ==========================================================================
   Interactive Showcase Frame
   ========================================================================== */
.demo-section {
  padding: 40px 24px 80px;
}

.demo-shell {
  max-width: 1200px;
  margin: 0 auto;
}

.demo-header {
  text-align: center;
  margin-bottom: 32px;
}

.demo-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.demo-header h2 {
  font-family: "Newsreader", serif;
  font-size: 34px;
  font-weight: 600;
  color: var(--ink);
}

.demo-header p {
  color: var(--ink-muted);
  font-size: 15px;
  margin-top: 4px;
}

.browser-frame {
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.browser-topbar {
  background: #f1ece1;
  border-bottom: 1px solid var(--border);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.browser-dots {
  display: flex;
  gap: 6px;
}

.browser-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d4ccbe;
}

.browser-dots span:nth-child(1) { background: #ed6a5e; }
.browser-dots span:nth-child(2) { background: #f5bf4f; }
.browser-dots span:nth-child(3) { background: #62c554; }

.browser-address {
  flex: 1;
  max-width: 480px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 4px 12px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  color: var(--ink-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.browser-tag {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  color: var(--ink-faint);
}

.demo-ui-wrap {
  padding: 24px;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Metrics Corridor */
.mock-metrics-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.mock-cell {
  padding: 14px 16px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.mock-cell:last-child { border-right: none; }
.mock-cell.highlight {
  background: linear-gradient(180deg, var(--surface) 0%, var(--surface-highlight) 100%);
}

.mock-lbl {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--ink-muted);
  margin-bottom: 4px;
}

.mock-val {
  font-family: "Newsreader", serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.1;
  color: var(--ink);
}
.mock-val.accent { color: var(--accent); }

.mock-sub {
  font-size: 10px;
  color: var(--ink-faint);
  margin-top: 4px;
}

/* Dual Console */
.mock-console {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 20px;
  align-items: flex-start;
}

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

.mock-panel-head {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mock-panel-head h3 {
  font-family: "Newsreader", serif;
  font-size: 18px;
  font-weight: 600;
}

.mock-subhead {
  font-size: 11.5px;
  color: var(--ink-muted);
  display: block;
}

.mock-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mock-pill {
  font-size: 11.5px;
  font-weight: 600;
  background: var(--surface-subtle);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 4px 8px;
  color: var(--ink);
}

.mock-ghost-btn {
  font-family: inherit;
  font-size: 11.5px;
  font-weight: 600;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 4px 10px;
  cursor: pointer;
}

/* Spark Bars */
.mock-spark-box {
  padding: 12px 14px 10px;
  background: var(--surface-highlight);
  border-bottom: 1px solid var(--border);
}

.mock-spark-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: var(--ink-muted);
  margin-bottom: 8px;
}

.mock-spark-peak {
  font-family: "JetBrains Mono", monospace;
  color: var(--accent);
  font-weight: 700;
}

.mock-spark-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 74px;
}

.mock-spark-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 2px;
}

.mock-spark-val {
  font-family: "JetBrains Mono", monospace;
  font-size: 9.5px;
  font-weight: 600;
  color: var(--ink-muted);
}
.mock-spark-val.peak { color: var(--accent); font-weight: 700; }

.mock-spark-track {
  width: 16px;
  height: 42px;
  display: flex;
  align-items: flex-end;
  background: rgba(0, 0, 0, 0.04);
  border-radius: 3px;
  padding: 1px;
}

.mock-spark-fill {
  width: 100%;
  background: #c5b8a5;
  border-radius: 2px;
}
.mock-spark-fill.peak {
  background: linear-gradient(180deg, #2b612e 0%, #153617 100%);
  box-shadow: 0 0 5px rgba(30, 70, 32, 0.35);
}

.mock-spark-date {
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  color: var(--ink-faint);
}

/* Mock Tables */
.mock-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.mock-table th {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-muted);
  background: var(--surface-subtle);
  padding: 8px 12px;
  border-bottom: 1px solid var(--border);
}

.mock-table td {
  padding: 9px 12px;
  border-bottom: 1px solid var(--border);
  font-size: 12.5px;
  vertical-align: middle;
}

.mock-daily-table {
  table-layout: fixed;
}
.mock-daily-table th:last-child, .mock-daily-table td:last-child {
  width: 86px;
  padding-right: 14px;
}

.mock-articles-table {
  table-layout: fixed;
}
.mock-articles-table th:nth-child(2), .mock-articles-table td:nth-child(2) { width: 62px; }
.mock-articles-table th:nth-child(3), .mock-articles-table td:nth-child(3) { width: 62px; }
.mock-articles-table th:nth-child(4), .mock-articles-table td:nth-child(4) { width: 74px; }
.mock-articles-table th:nth-child(5), .mock-articles-table td:nth-child(5) { width: 60px; }
.mock-articles-table th:nth-child(6), .mock-articles-table td:nth-child(6) { width: 84px; padding-right: 14px; }

.num-col {
  text-align: right;
  font-family: "JetBrains Mono", monospace;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.mock-money {
  color: var(--accent);
  font-weight: 600;
}

.mock-row.active-expanded {
  background: var(--surface-highlight);
}

.mock-muted {
  font-size: 10px;
  color: var(--ink-faint);
}

.mock-title-cell {
  overflow: hidden;
}
.mock-title-cell .t-line {
  font-family: "Newsreader", serif;
  font-weight: 500;
  font-size: 13.5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mock-title-cell .d-line {
  font-size: 10px;
  color: var(--ink-faint);
  padding-left: 14px;
}

.mock-ratio-bar {
  display: inline-block;
  width: 26px;
  height: 4px;
  background: var(--border);
  border-radius: 99px;
  margin-right: 6px;
  vertical-align: middle;
}
.mock-ratio-bar span {
  display: block;
  height: 100%;
  background: var(--accent);
  border-radius: 99px;
}

/* Detail Rows */
.mock-detail-row td, .mock-chart-row td {
  background: #fdfcfa;
  padding: 10px 14px;
}

.mock-detail-box {
  border: 1px dashed var(--border-strong);
  border-radius: 4px;
  padding: 8px 10px;
  background: var(--surface);
}
.mock-detail-head {
  display: flex;
  justify-content: space-between;
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 6px;
}
.mock-badge {
  font-family: "JetBrains Mono", monospace;
  font-weight: normal;
  color: var(--ink-faint);
  text-transform: none;
}
.mock-mini-table {
  width: 100%;
  border-collapse: collapse;
}
.mock-mini-table td {
  padding: 3px 0;
  border-bottom: 1px dotted var(--border);
  font-size: 11px;
}
.mock-mini-title {
  max-width: 180px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Chart Box */
.mock-chart-box {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 10px 14px;
}
.mock-chart-meta {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 6px;
}
.mock-chart-meta strong {
  font-family: "Newsreader", serif;
  font-size: 13px;
  text-transform: none;
  color: var(--ink);
}
.mock-chart-svg {
  width: 100%;
  height: 60px;
  display: block;
}

/* Mock Pagination */
.mock-pagination {
  padding: 8px 14px;
  border-top: 1px solid var(--border);
  background: var(--surface);
  display: flex;
  align-items: center;
  font-size: 11.5px;
}
.mock-pagination.daily-pag {
  flex-direction: column-reverse;
  gap: 6px;
  padding: 8px 12px 10px;
}
.mock-pagination.daily-pag .pag-controls {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mock-pagination.articles-pag {
  justify-content: space-between;
}
.mock-page-btn {
  font-family: inherit;
  font-size: 11px;
  font-weight: 600;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 3px 8px;
  color: var(--ink);
}
.mock-page-num {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  color: var(--ink-muted);
}
.mock-page-info {
  font-size: 10.5px;
  color: var(--ink-faint);
  text-align: center;
}

/* ==========================================================================
   Features Section (Pillars)
   ========================================================================== */
.features-section {
  padding: 90px 24px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.features-shell, .comparison-shell, .steps-shell, .faq-shell {
  max-width: 1160px;
  margin: 0 auto;
}

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

.section-intro h2 {
  font-family: "Newsreader", serif;
  font-size: 40px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
}

.section-intro p {
  font-size: 16.5px;
  color: var(--ink-muted);
  margin-top: 8px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.feature-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-strong);
}

.feature-card.highlight-card {
  border-color: #b9d7be;
  background: linear-gradient(180deg, #f4f8f4 0%, var(--bg) 100%);
}

.feature-icon-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 4px;
}

.feat-num {
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 4px 10px;
  border-radius: 99px;
  border: 1px solid #c9e2cd;
}

.feature-card h3 {
  font-family: "Newsreader", serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--ink);
}

.feature-card p {
  color: var(--ink-muted);
  font-size: 15.5px;
  line-height: 1.6;
}

.feature-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.feature-points li {
  font-size: 13.5px;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
}
.feature-points li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 700;
}

/* ==========================================================================
   Comparison Section
   ========================================================================== */
.comparison-section {
  padding: 90px 24px;
}

.table-responsive {
  overflow-x: auto;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.comp-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.comp-table th {
  padding: 16px 22px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--border);
  background: #f6f1e7;
}

.comp-table td {
  padding: 16px 22px;
  font-size: 14.5px;
  border-bottom: 1px solid var(--border);
}

.comp-table tr:last-child td {
  border-bottom: none;
}

.col-native {
  width: 32%;
  color: var(--ink-muted);
}
.col-native.red { color: #b4502e; }
.col-native.yellow { color: #9c6c10; }

.col-penyield {
  width: 38%;
  background: #fcfdfc;
  font-weight: 600;
}
.col-penyield.green { color: var(--accent); }

/* ==========================================================================
   Steps Section
   ========================================================================== */
.steps-section {
  padding: 80px 24px;
  background: #f6f1e7;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.step-num {
  font-family: "JetBrains Mono", monospace;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.step-card h4 {
  font-family: "Newsreader", serif;
  font-size: 22px;
  font-weight: 600;
}

.step-card p {
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 1.5;
}

.step-card code {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  background: var(--surface-subtle);
  padding: 2px 6px;
  border-radius: 4px;
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-section {
  padding: 90px 24px;
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px 24px;
  transition: all 0.2s ease;
}

.faq-item[open] {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-sm);
}

.faq-item summary {
  font-size: 16.5px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  outline: none;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 20px;
  font-weight: 400;
  color: var(--ink-faint);
  transition: transform 0.2s;
}

.faq-item[open] summary::after {
  content: "−";
  color: var(--accent);
}

.faq-item p {
  margin-top: 12px;
  font-size: 14.5px;
  color: var(--ink-muted);
  line-height: 1.6;
}

/* ==========================================================================
   Call to Action (CTA)
   ========================================================================== */
.cta-section {
  padding: 90px 24px;
  background: linear-gradient(180deg, var(--bg) 0%, #ede6d8 100%);
  border-top: 1px solid var(--border);
  text-align: center;
}

.cta-shell {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.cta-section h2 {
  font-family: "Newsreader", serif;
  font-size: 48px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.cta-section p {
  font-size: 18px;
  color: var(--ink-muted);
  max-width: 580px;
}

.cta-actions {
  margin-top: 10px;
}

.cta-sub {
  font-size: 12.5px;
  color: var(--ink-faint);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 60px 24px 40px;
}

.footer-shell {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-tagline {
  font-size: 13.5px;
  color: var(--ink-muted);
  margin-top: 6px;
}

.footer-links {
  display: flex;
  gap: 60px;
}

.link-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.link-col h5 {
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
}

.link-col a {
  font-size: 13.5px;
  color: var(--ink-muted);
  text-decoration: none;
  transition: color 0.15s;
}

.link-col a:hover {
  color: var(--accent);
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 12px;
  color: var(--ink-faint);
}

.footer-bottom a {
  color: var(--accent);
  text-decoration: none;
}

/* ==========================================================================
   Responsive Adaptations
   ========================================================================== */
@media (max-width: 960px) {
  .hero-title { font-size: 42px; }
  .mock-metrics-strip { grid-template-columns: repeat(3, 1fr); }
  .mock-console { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
}

@media (max-width: 600px) {
  .hero-title { font-size: 34px; }
  .hero-subtitle { font-size: 16px; }
  .mock-metrics-strip { grid-template-columns: repeat(2, 1fr); }
  .hero-actions { flex-direction: column; width: 100%; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; }
  .trust-strip { flex-direction: column; gap: 8px; }
}
