/* Marketing pages — same design system as the app shell:
   Inter, --green-primary #1b4332, --bg #f7f9f6, clean white cards. */

.marketing {
  background: var(--bg);
  color: var(--text-primary);
}

/* ---------- Nav ---------- */

.marketing-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 22px 6%;
  border-bottom: 1px solid var(--border);
  max-width: 1400px;
  margin: auto;
}

.marketing-nav .brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--green-primary);
  text-decoration: none;
}

.marketing-nav nav {
  display: flex;
  gap: 26px;
}

.marketing-nav nav a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
}
.marketing-nav nav a:hover { color: var(--text-primary); }

.marketing-nav .nav-actions {
  display: flex;
  gap: 18px;
  align-items: center;
}

.marketing-nav .text-link {
  font-size: 13px;
  color: var(--text-secondary);
}

/* ---------- Buttons (marketing variants) ---------- */

.button.large {
  padding: 13px 22px;
  font-size: 14px;
  border-radius: var(--radius-md);
  gap: 10px;
}

.button.lime {
  background: var(--green-accent);
  color: #ffffff;
}
.button.lime:hover { background: #116932; }

.text-link {
  color: var(--green-accent);
  font-size: 13px;
  font-weight: 550;
  text-decoration: none;
}
.text-link:hover { text-decoration: underline; }

/* ---------- Hero ---------- */

.hero {
  max-width: 1280px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 84px 6% 88px;
  margin: auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border-dark);
  background: var(--green-light);
  color: var(--green-primary);
  border-radius: 99px;
  padding: 6px 13px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 28px;
}

.hero-badge .status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-accent);
}

.hero h1 {
  font-size: 56px;
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.035em;
  color: var(--text-primary);
  margin: 0 0 24px;
}

.hero h1 em,
.section-intro h2 em,
.difference-section h2 em,
.faq-section h2 em,
.final-cta h2 em {
  font-style: italic;
  color: var(--green-accent);
}

.hero-copy > p {
  font-size: 16px;
  line-height: 1.7;
  max-width: 480px;
  color: var(--text-secondary);
  margin: 0;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin: 30px 0 20px;
  flex-wrap: wrap;
}

.hero-reassurance {
  display: flex;
  gap: 18px;
  font-size: 12.5px;
  color: var(--text-muted);
  flex-wrap: wrap;
}

/* ---------- Product window ---------- */

.hero-product { position: relative; }

.product-window {
  background: var(--surface);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(27, 67, 50, 0.10);
  overflow: hidden;
}

.window-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 13px 16px;
  font-size: 12px;
  color: var(--text-muted);
}

.window-dots { display: flex; gap: 5px; }
.window-dots i {
  height: 8px;
  width: 8px;
  border-radius: 50%;
  background: var(--border-dark);
}

.window-divider { color: var(--text-light); margin: 0 6px; }

.demo-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--green-primary);
  background: var(--green-light);
  border-radius: 99px;
  padding: 3px 9px;
}

.window-content { padding: 26px 24px 20px; }

.window-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 22px;
  gap: 12px;
}

.window-heading .eyebrow { display: block; margin-bottom: 8px; }

.window-heading h2 {
  font-size: 26px;
  color: var(--text-primary);
  font-weight: 650;
  letter-spacing: -0.02em;
  margin: 0;
}

.mini-logo {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--green-primary);
  color: #ffffff;
  display: grid;
  place-items: center;
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
}

.window-impact {
  background: var(--green-primary);
  color: #d9eadd;
  padding: 20px 22px;
  border-radius: var(--radius-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}

.window-impact > div > span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #a8c8ae;
  display: block;
  margin-bottom: 8px;
}

.window-impact strong {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #ffffff;
  font-variant-numeric: tabular-nums;
}

.window-impact strong small {
  font-size: 12px;
  color: #a8c8ae;
  font-weight: 500;
  margin-left: 8px;
}

.window-trend { font-size: 30px; font-weight: 300; color: #7fb08a; }

.window-caption {
  font-size: 11px;
  color: var(--text-light);
  margin: 9px 0 20px;
}

.mini-finding {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px;
  margin-bottom: 10px;
  text-decoration: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.mini-finding:hover {
  border-color: var(--border-dark);
  box-shadow: var(--shadow-card);
}

.mini-finding-icon {
  color: var(--red-primary);
  background: var(--red-light);
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 14px;
  flex-shrink: 0;
}

.mini-finding > div { flex: 1; min-width: 0; }

.mini-finding > div > strong {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  display: block;
  color: var(--text-primary);
}

.mini-finding small {
  display: block;
  font-size: 11.5px;
  color: var(--text-muted);
  line-height: 1.55;
  margin-top: 4px;
}

.mini-finding-impact {
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  color: var(--red-primary);
  font-variant-numeric: tabular-nums;
  line-height: 1.3;
  text-align: right;
}

.mini-finding-impact small {
  display: block;
  font-size: 10px;
  font-weight: 500;
  color: var(--text-light);
  margin-top: 2px;
}

.window-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  font-weight: 550;
  color: var(--green-accent);
  padding-top: 12px;
  text-decoration: none;
}
.window-link:hover { text-decoration: underline; }

.product-caption {
  display: block;
  text-align: center;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--text-light);
  margin-top: 20px;
}

/* ---------- Positioning strip ---------- */

.positioning-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 22px 6%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  font-size: 13px;
  color: var(--text-muted);
  background: var(--surface);
}

.positioning-strip strong { font-weight: 600; color: var(--text-primary); }
.positioning-strip i { padding: 0 12px; color: var(--text-light); font-style: normal; }

/* ---------- Sections ---------- */

.marketing-section {
  max-width: 1200px;
  margin: auto;
  padding: 88px 6%;
}

.section-intro .eyebrow { display: block; margin-bottom: 16px; }

.section-intro h2 {
  font-size: 40px;
  letter-spacing: -0.03em;
  font-weight: 700;
  line-height: 1.12;
  color: var(--text-primary);
  margin: 0 0 18px;
}

.section-intro p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0;
}

.section-intro.centered { text-align: center; }
.section-intro.centered p { margin: auto; }

/* ---------- How it works ---------- */

.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 52px;
}

.how-grid article { position: relative; }

.how-number {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-light);
  display: flex;
  justify-content: space-between;
}
.how-number > span { color: var(--border-dark); letter-spacing: 8px; }

.how-icon {
  font-size: 20px;
  background: var(--green-light);
  color: var(--green-primary);
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  margin: 20px 0;
}

.how-grid h3 {
  font-size: 17px;
  letter-spacing: -0.01em;
  font-weight: 650;
  color: var(--text-primary);
  margin: 0 0 10px;
}

.how-grid p {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

/* ---------- Difference section ---------- */

.difference-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  padding: 80px max(6%, calc((100vw - 1140px) / 2));
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  align-items: center;
}

.difference-section .eyebrow { display: block; margin-bottom: 20px; }

.difference-section h2 {
  font-size: 34px;
  line-height: 1.18;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--text-primary);
  margin: 0 0 20px;
}

.difference-section p {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 400px;
  margin: 0 0 18px;
}

.comparison-table {
  border: 1px solid var(--border-dark);
  background: var(--bg);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.comparison-table > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--border);
  padding: 18px 20px;
  gap: 20px;
  font-size: 13px;
  align-items: center;
}
.comparison-table > div:last-child { border-bottom: none; }

.comparison-table .comparison-table-head {
  padding: 13px 20px;
  background: var(--green-light);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--green-primary);
}

.comparison-table > div:not(.comparison-table-head) > span {
  color: var(--text-muted);
  font-size: 12.5px;
}

.comparison-table strong {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}

/* ---------- Example finding ---------- */

.product-section .section-intro { text-align: center; }
.product-section .section-intro p { margin: auto; }

.example-layout {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: center;
  gap: 64px;
  margin-top: 48px;
}

.marketing-example {
  border: 1px solid var(--border-dark);
  background: var(--surface);
  padding: 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.finding-tags {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}

.severity-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 650;
  color: var(--red-primary);
  background: var(--red-light);
  border-radius: 99px;
  padding: 4px 11px;
}

.severity-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.severity-dot.critical { background: var(--red-primary); }
.severity-dot.high { background: var(--orange-primary); }
.severity-dot.medium { background: #d97706; }

.finding-type {
  font-size: 11.5px;
  color: var(--text-muted);
}

.marketing-example h3 {
  font-size: 24px;
  font-weight: 650;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin: 16px 0 10px;
}

.marketing-example > p {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.65;
}

.marketing-example .finding-numbers {
  display: flex;
  gap: 40px;
  margin: 22px 0;
  flex-wrap: wrap;
}

.metric-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-light);
  margin-bottom: 7px;
}

.impact-number {
  font-size: 28px;
  font-weight: 700;
  color: var(--red-primary);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

.example-margin {
  font-size: 20px;
  font-weight: 650;
  color: var(--text-secondary);
  font-variant-numeric: tabular-nums;
}
.example-margin span { margin: 0 6px; color: var(--text-light); font-size: 15px; }

.recommended-action {
  background: var(--green-light);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  margin-bottom: 18px;
}

.recommended-action p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}
.recommended-action strong { color: var(--green-primary); display: block; margin-bottom: 4px; }

.aside-link {
  font-size: 13px;
  font-weight: 550;
  color: var(--green-accent);
  text-decoration: none;
}
.aside-link:hover { text-decoration: underline; }

.evidence-benefits > div {
  position: relative;
  padding: 0 0 26px 42px;
  margin-bottom: 8px;
}

.evidence-benefits > div > span {
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--text-light);
  font-size: 12px;
  font-weight: 700;
}

.evidence-benefits h3 {
  font-size: 16px;
  font-weight: 650;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  margin: 0 0 8px;
}

.evidence-benefits p {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

/* ---------- Pricing ---------- */

.pricing-section {
  background: var(--surface);
  padding: 80px max(6%, calc((100vw - 1140px) / 2));
  border-block: 1px solid var(--border);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 44px;
}

.pricing-grid-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.price-card {
  position: relative;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  background: var(--surface);
  display: flex;
  flex-direction: column;
}

.price-card.featured {
  border-color: var(--green-accent);
  box-shadow: 0 8px 30px rgba(21, 128, 61, 0.10);
}

.plan-ribbon {
  position: absolute;
  top: -12px;
  left: 24px;
  border-radius: 99px;
  background: var(--green-primary);
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 5px 12px;
}

.plan-price {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin: 14px 0;
  font-variant-numeric: tabular-nums;
}

.plan-price > span {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0;
  font-weight: 500;
  margin-left: 6px;
}

.price-card > p {
  font-size: 13px;
  color: var(--text-secondary);
  min-height: 40px;
  line-height: 1.6;
  margin: 0;
}

.price-card > ul {
  border-top: 1px solid var(--border);
  margin: 22px 0;
  padding: 18px 0 0;
  list-style: none;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 2.3;
}

.price-card > ul > li::before {
  content: '✓';
  font-size: 11px;
  margin-right: 8px;
  color: var(--green-accent);
  font-weight: 700;
}

.price-card > .button, .price-card > form { margin-top: auto; }

.pricing-note {
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 26px 0 0;
}

/* ---------- FAQ ---------- */

.faq-section {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  max-width: 1140px;
  margin: auto;
  padding: 88px 6%;
}

.faq-section .eyebrow { display: block; margin-bottom: 16px; }

.faq-section h2 {
  font-size: 38px;
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin: 0;
}

.faq-list > details {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.faq-list > details:first-child { padding-top: 0; }

.faq-list summary {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
}
.faq-list summary::-webkit-details-marker { display: none; }

.faq-list summary::after {
  content: '+';
  font-size: 20px;
  color: var(--text-light);
  font-weight: 400;
}

.faq-list details[open] summary::after { content: '−'; }

.faq-list p {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin: 14px 30px 0 0;
}

/* ---------- Final CTA ---------- */

.final-cta {
  text-align: center;
  background: var(--green-primary);
  padding: 84px 24px;
  color: #d9eadd;
}

.final-cta .eyebrow {
  display: block;
  color: #8fb898;
  margin-bottom: 22px;
}

.final-cta h2 {
  font-size: 46px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin: 0;
}

.final-cta h2 em { color: #93c49d; }

.final-cta > p {
  font-size: 15px;
  color: #a8c8ae;
  margin: 20px 0 30px;
}

.final-cta > div {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.final-cta .text-link { color: #b7d9bd; }

/* ---------- Footer ---------- */

.marketing-footer {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1fr;
  gap: 36px;
  max-width: 1280px;
  margin: auto;
  padding: 60px 6%;
}

.marketing-footer .brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--green-primary);
  text-decoration: none;
}

.marketing-footer .brand-mark {
  width: 30px;
  height: 30px;
  font-size: 19px;
}

.marketing-footer p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 18px 0;
}

.marketing-footer small {
  font-size: 11px;
  color: var(--text-light);
}

.marketing-footer > div > span {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.marketing-footer > div > a:not(.brand) {
  display: block;
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 10px;
  text-decoration: none;
}
.marketing-footer > div > a:not(.brand):hover { color: var(--text-primary); }

/* ---------- Information & tool pages ---------- */

.tool-section, .information-section {
  max-width: 1050px;
  margin: 64px auto 80px;
  padding: 0 32px;
}

.tool-section > h1, .information-section > h1 {
  margin: 18px 0;
  font-size: 42px;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  font-weight: 700;
}

.tool-section > p {
  font-size: 15px;
  line-height: 1.75;
  max-width: 720px;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.tool-section .economic-stat { margin-bottom: 16px; }
.tool-section .panel > .button { margin-top: 18px; }

.economic-stat {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.economic-stat span { font-size: 13px; color: var(--text-secondary); }
.economic-stat strong {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  font-variant-numeric: tabular-nums;
}

.prose { max-width: 740px; margin-top: 36px; }

.prose h2 {
  font-size: 20px;
  font-weight: 650;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  margin: 30px 0 10px;
}

.prose p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
}

.prose .notice { margin-top: 28px; }

/* ---------- Forms on marketing/tool pages ---------- */

.marketing form p {
  margin: 0 0 16px;
}

.marketing form label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 7px;
}

.marketing form input,
.marketing form select {
  width: 100%;
  box-sizing: border-box;
}

.marketing form input:focus,
.marketing form select:focus {
  border-color: var(--green-accent);
}

.marketing form .errorlist {
  list-style: none;
  margin: 0 0 8px;
  padding: 0;
  color: var(--red-primary);
  font-size: 12.5px;
}

.marketing .helptext {
  display: block;
  font-size: 11.5px;
  color: var(--text-muted);
  margin-top: 5px;
}

.tool-warning {
  background: var(--red-light);
  border: 1px solid #fecaca;
  color: #991b1b;
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 13px;
  line-height: 1.55;
  margin: 14px 0 0;
}

/* ---------- Responsive ---------- */

@media (max-width: 1200px) {
  .pricing-grid-four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .marketing-nav nav { gap: 16px; }
  .hero { gap: 40px; padding-block: 64px; }
  .hero h1 { font-size: 48px; }
  .difference-section { gap: 44px; }
  .example-layout { gap: 40px; }
  .marketing-footer { grid-template-columns: 1.5fr 1fr 1.5fr 1fr; gap: 26px; }
}

@media (max-width: 950px) {
  .marketing-nav nav { display: none; }
  .hero { grid-template-columns: 1fr; gap: 48px; padding: 56px 6% 60px; }
  .hero h1 { font-size: 42px; }
  .hero-copy > p { max-width: none; }
  .section-intro h2 { font-size: 32px; }
  .how-grid { grid-template-columns: 1fr; gap: 28px; margin-top: 36px; }
  .how-grid article {
    padding: 4px 0 24px 64px;
    border-bottom: 1px solid var(--border);
  }
  .how-grid article:last-child { border-bottom: none; }
  .how-number > span { display: none; }
  .how-icon { position: absolute; left: 0; top: 14px; margin: 0; width: 42px; height: 42px; }
  .difference-section { grid-template-columns: 1fr; padding: 60px 6%; gap: 32px; }
  .difference-section p { max-width: none; }
  .example-layout { grid-template-columns: 1fr; gap: 36px; margin-top: 34px; }
  .pricing-grid, .pricing-grid-four { grid-template-columns: 1fr; gap: 26px; margin-top: 34px; }
  .faq-section { grid-template-columns: 1fr; gap: 28px; padding: 60px 6%; }
  .marketing-footer { grid-template-columns: 1fr 1fr; gap: 28px; }
  .positioning-strip > span:last-child { display: none; }
}

@media (max-width: 680px) {
  .marketing-nav { padding: 18px 5%; }
  .marketing-nav .nav-actions > .text-link { display: none; }
  .hero { padding: 44px 5% 48px; }
  .hero h1 { font-size: 36px; }
  .hero-actions .button { width: 100%; }
  .window-content { padding: 20px 16px; }
  .window-impact strong { font-size: 26px; }
  .mini-finding-icon { display: none; }
  .marketing-section { padding: 56px 5%; }
  .section-intro h2 { font-size: 28px; }
  .comparison-table > div { padding: 14px 16px; gap: 12px; }
  .marketing-example { padding: 22px; }
  .marketing-example .finding-numbers { gap: 24px; }
  .pricing-section { padding: 56px 5%; }
  .faq-section h2 { font-size: 30px; }
  .final-cta h2 { font-size: 32px; }
  .tool-section, .information-section { margin-top: 40px; padding: 0 20px; }
  .tool-section > h1, .information-section > h1 { font-size: 30px; }
}

/* ── Motion — hero entrance + scroll reveal, reduced-motion safe ── */
@media (prefers-reduced-motion: no-preference) {
  @keyframes mkt-rise {
    from { opacity: 0; transform: translateY(14px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @keyframes mkt-fade {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  /* Hero copy cascades in; product window slides up after it */
  .hero-copy > * {
    animation: mkt-rise 0.55s cubic-bezier(0.2, 0.6, 0.3, 1) both;
  }

  .hero-copy > *:nth-child(2) { animation-delay: 0.08s; }
  .hero-copy > *:nth-child(3) { animation-delay: 0.16s; }
  .hero-copy > *:nth-child(4) { animation-delay: 0.24s; }
  .hero-copy > *:nth-child(n+5) { animation-delay: 0.3s; }

  .hero-product, .product-window {
    animation: mkt-rise 0.65s 0.18s cubic-bezier(0.2, 0.6, 0.3, 1) both;
  }

  /* Scroll reveal — JS adds .reveal then .in-view; no-JS shows everything */
  .reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.55s cubic-bezier(0.2, 0.6, 0.3, 1), transform 0.55s cubic-bezier(0.2, 0.6, 0.3, 1);
  }

  .reveal.in-view {
    opacity: 1;
    transform: translateY(0);
  }

  /* FAQ answers ease open */
  .faq-list details[open] > p {
    animation: mkt-fade 0.3s ease-out;
  }

  /* Pricing cards lift on hover */
  .price-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  }

  .price-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.07);
  }

  .price-card.featured:hover {
    box-shadow: 0 12px 34px rgba(21, 128, 61, 0.14);
  }
}
