/*
Theme Name: ThynkRise Ledger
Theme URI: https://thynkrise.com
Author: ThynkRise
Description: Ledger direction — ink/paper/brass finance-authority palette with Field Guide voice. Built from the approved design spec, docs/superpowers/specs/2026-07-11-thynkrise-visual-redesign-design.md.
Version: 0.1.0
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: thynkrise
*/

/* Self-hosted, Latin-only, weight 400 (the only weight headings use) —
   single ~22KB request, preloaded in header.php, font-display: swap so it
   never blocks first paint. Body stays on the free system-font stack.
   2026-07-15 audit: premium-look upgrade with a bounded performance cost. */
@font-face {
  font-family: "Newsreader";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/newsreader-400-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --ink: #141B16;
  --paper: #EEF1EA;
  --card: #FFFFFF;
  --accent: #96742F;
  --accent-soft: #EDE3D0;
  --verified: #2F6B4F;
  --verified-soft: #E2EDE7;
  --line: #D8DCCF;
  --muted: #5B625D;

  --display: "Newsreader", Georgia, "Iowan Old Style", "Palatino Linotype", serif;
  --body: "Segoe UI", system-ui, -apple-system, sans-serif;

  color-scheme: light;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16.5px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; display: block; }

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: var(--paper);
  padding: 10px 16px;
  z-index: 100;
}
.skip-link:focus { left: 12px; top: 12px; }

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding-left: 28px;
  padding-right: 28px;
}

.caption {
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.15;
  text-wrap: balance;
  margin: 0;
}

h1 { font-size: 44px; }
h2 { font-size: 30px; }
h3 { font-size: 20px; }

.tabnum { font-variant-numeric: tabular-nums; }

/* ---------- Header ---------- */
header.site {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--paper);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}
header.site.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(238, 241, 234, 0.92);
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 24px -18px rgba(20, 27, 22, 0.35);
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}
.wordmark {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--display);
  font-size: 21px;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.wordmark:hover { text-decoration: none; }
.wordmark-icon { display: block; width: 28px; height: 28px; }

nav.primary { display: flex; align-items: center; gap: 30px; }
nav.primary ul { list-style: none; display: flex; gap: 30px; margin: 0; padding: 0; }
nav.primary a {
  position: relative;
  color: var(--ink);
  font-size: 14.5px;
  padding-bottom: 3px;
}
nav.primary a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--accent);
  transition: right 0.22s ease;
}
nav.primary a:hover { color: var(--accent); text-decoration: none; }
nav.primary a:hover::after { right: 0; }
nav.primary .current-menu-item > a,
nav.primary a.current { color: var(--accent); }
nav.primary .current-menu-item > a::after,
nav.primary a.current::after { right: 0; }

.nav-actions { display: flex; align-items: center; gap: 18px; }
.search-btn { background: none; border: none; cursor: pointer; color: var(--ink); padding: 4px; display: flex; }
.menu-toggle { display: none; }

.site-search { max-height: 0; overflow: hidden; border-top: 0 solid var(--line); transition: max-height 0.25s ease; }
.site-search.is-open { max-height: 90px; border-top-width: 1px; }
.site-search .wrap { padding: 16px 28px; }
.site-search form.search-form { display: flex; gap: 10px; max-width: 420px; }
.site-search input[type="search"] {
  flex: 1; padding: 10px 14px; border-radius: 4px; border: 1px solid var(--line);
  background: var(--card); color: var(--ink); font-family: var(--body); font-size: 14.5px;
}
.site-search button[type="submit"] {
  padding: 10px 18px; border-radius: 4px; border: 1px solid var(--ink);
  background: var(--ink); color: var(--paper); font-family: var(--body); font-size: 14px; cursor: pointer;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 76px 0 64px;
  background-image: repeating-linear-gradient(
    to bottom, transparent, transparent 27px,
    rgba(20, 27, 22, 0.055) 27px, rgba(20, 27, 22, 0.055) 28px
  );
  background-position: 0 8px;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--paper) 0%, rgba(238,241,234,0) 18%, rgba(238,241,234,0) 82%, var(--paper) 100%);
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center; }
.hero-inner { position: relative; max-width: 680px; }

.hero-pipeline {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 32px;
}
.hero-pipeline .caption { color: var(--accent); margin-bottom: 20px; display: block; }

.pipeline-steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 18px; }
.step { display: flex; align-items: flex-start; gap: 14px; position: relative; }
.step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 11px;
  top: 26px;
  width: 1px;
  height: 18px;
  background: var(--line);
}
.step-num {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display);
  font-size: 12px;
  border: 1px solid var(--accent);
  color: var(--accent);
  background: transparent;
}
.step-label { font-size: 14px; font-weight: 600; padding-top: 3px; }
.step-content { display: flex; flex-direction: column; gap: 4px; }

.step-live { padding-left: 10px; margin-left: -10px; border-left: 2px solid var(--accent); }
.step-live .step-num { background: var(--accent); color: var(--paper); border-color: var(--accent); }
.step-live-title { font-size: 14px; font-weight: 600; text-decoration: underline; }
.step-live-title.muted { color: var(--muted); text-decoration: none; font-weight: 400; }
.step-live-meta { font-size: 12.5px; color: var(--muted); }
.hero h1 { transform-origin: left top; will-change: transform, opacity; }
.hero .caption { color: var(--accent); margin-bottom: 18px; }
.hero h1 { margin-bottom: 20px; }
.hero p.sub { font-size: 18px; color: var(--muted); max-width: 44ch; margin: 0 0 32px; }
.cta-row { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }

@keyframes rise-in {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: no-preference) {
  .hero-inner > * { opacity: 0; animation: rise-in 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
  .hero-inner > *:nth-child(1) { animation-delay: 0.05s; }
  .hero-inner > *:nth-child(2) { animation-delay: 0.16s; }
  .hero-inner > *:nth-child(3) { animation-delay: 0.27s; }
  .hero-inner > *:nth-child(4) { animation-delay: 0.38s; }
  .hero-pipeline { opacity: 0; animation: rise-in 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards; animation-delay: 0.49s; }
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--body);
  font-size: 15px;
  font-weight: 600;
  padding: 13px 24px;
  border-radius: 4px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}
.btn-primary { background: var(--ink); color: var(--paper); }
.btn-primary:hover { background: #050a06; text-decoration: none; transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--paper); text-decoration: none; transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

/* ---------- Trust bar ---------- */
.trust-bar { background: var(--card); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust-inner { display: flex; align-items: center; gap: 18px; padding: 22px 0; flex-wrap: wrap; }
.avatar-mark {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--ink); color: var(--paper);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-size: 18px; flex-shrink: 0;
  overflow: hidden;
}
.avatar-mark img { width: 100%; height: 100%; object-fit: cover; }
.trust-copy { flex: 1; min-width: 220px; }
.trust-copy .name { font-weight: 600; font-size: 15px; }
.trust-copy .credential { color: var(--muted); font-size: 14px; }
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--verified-soft); color: var(--verified);
  font-size: 13px; font-weight: 600; padding: 6px 12px; border-radius: 20px; white-space: nowrap;
}
.badge svg { width: 13px; height: 13px; }
.trust-link { font-size: 14px; white-space: nowrap; }

/* ---------- Sections ---------- */
section { padding: 64px 0; }
.section-head { display: flex; justify-content: space-between; align-items: baseline; gap: 24px; margin-bottom: 34px; flex-wrap: wrap; }
.section-head .caption { margin-bottom: 8px; display: block; }
.section-head .see-all { font-size: 14px; font-weight: 600; }
.empty-state { color: var(--muted); font-size: 15px; padding: 32px; border: 1px dashed var(--line); border-radius: 8px; }

/* ---------- Review grid ---------- */
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card {
  background: var(--card); border: 1px solid var(--line); border-radius: 8px;
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.review-card:hover { transform: translateY(-5px); border-color: var(--accent); box-shadow: 0 18px 34px -20px rgba(20, 27, 22, 0.4); }
.review-thumb {
  position: relative;
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--accent-soft) 0%, var(--paper) 100%);
  display: flex; align-items: center; justify-content: center;
  border-bottom: 1px solid var(--line); overflow: hidden;
}
.review-thumb img { width: 100%; height: 100%; object-fit: cover; }
.review-thumb .mono { font-family: var(--display); font-size: 26px; color: var(--accent); opacity: 0.85; transition: transform 0.35s ease; }
.review-card:hover .review-thumb .mono { transform: scale(1.12); }

.review-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 16px;
  background: linear-gradient(to top, rgba(20,27,22,0.82) 0%, rgba(20,27,22,0.18) 58%, rgba(20,27,22,0) 100%);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}
.review-card:hover .review-overlay { opacity: 1; transform: translateY(0); }
.review-overlay span {
  color: var(--paper);
  font-size: 13.5px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.review-body { padding: 18px 20px 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.review-cat { color: var(--muted); }
.review-body h3 { font-size: 18px; }
.review-body h3 a { color: inherit; }
.review-body h3 a:hover { color: var(--accent); }
.review-desc { color: var(--muted); font-size: 14.5px; margin: 0; flex: 1; }
.review-meta { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding-top: 10px; border-top: 1px solid var(--line); font-size: 13.5px; }
.status-chip { padding: 3px 10px; border-radius: 20px; font-size: 12px; font-weight: 600; white-space: nowrap; }
.status-live { background: var(--verified-soft); color: var(--verified); }
.status-pending { background: var(--accent-soft); color: var(--accent); }
.review-date { color: var(--muted); }

/* ---------- Category overview ---------- */
.cat-band { background: var(--card); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.cat-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line); border-radius: 8px; overflow: hidden;
}
.cat-tile { background: var(--card); padding: 28px 24px; display: flex; flex-direction: column; gap: 12px; min-height: 180px; transition: background-color 0.22s ease; }
.cat-tile:hover { background: var(--accent-soft); text-decoration: none; }
.cat-tile .caption { color: var(--accent); }
.cat-tile h3 { font-size: 19px; }
.cat-tile p { color: var(--muted); font-size: 14px; margin: 0; flex: 1; }
.cat-tile .arrow { font-size: 14px; font-weight: 600; display: inline-block; transition: transform 0.22s ease; }
.cat-tile:hover .arrow { transform: translateX(5px); }

/* ---------- Methodology teaser ---------- */
.method-teaser { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center; }
.method-teaser .caption { color: var(--accent); margin-bottom: 14px; }
.method-teaser p.lede { font-size: 17px; color: var(--muted); max-width: 52ch; }
.method-list { list-style: none; margin: 26px 0 0; padding: 0; display: grid; gap: 16px; }
.method-list li { display: flex; gap: 12px; align-items: baseline; }
.method-list .num { font-family: var(--display); color: var(--accent); font-size: 14px; flex-shrink: 0; width: 20px; }
.method-list .txt { font-size: 15px; }
.method-panel { background: var(--card); border: 1px solid var(--line); border-radius: 8px; padding: 32px; }
.method-panel .quote { font-family: var(--display); font-size: 22px; line-height: 1.35; color: var(--ink); margin: 0 0 18px; }
.method-panel .attrib { font-size: 13.5px; color: var(--muted); }

/* ---------- Newsletter ---------- */
.newsletter { background: var(--ink); color: var(--paper); border-radius: 8px; padding: 48px 44px; display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: center; }
.newsletter .caption { color: var(--accent); }
.newsletter h2 { color: var(--paper); margin: 10px 0 12px; font-size: 27px; }
.newsletter p { color: #C7CCC3; margin: 0; font-size: 15px; max-width: 46ch; }
.signup-form { display: flex; gap: 10px; }
.signup-form input {
  flex: 1; min-width: 0; padding: 13px 16px; border-radius: 4px;
  border: 1px solid #3A4038; background: #1D2620; color: var(--paper);
  font-family: var(--body); font-size: 15px;
}
.signup-form input::placeholder { color: #8A9089; }
.signup-form .btn-primary { background: var(--accent); color: var(--ink); white-space: nowrap; }
.signup-form .btn-primary:hover { background: #A9853A; }
.signup-note { font-size: 12.5px; color: #8A9089; margin-top: 10px; }
.newsletter-embed-pending { font-size: 13px; color: #8A9089; border: 1px dashed #3A4038; border-radius: 4px; padding: 12px 16px; }

/* Footer newsletter embed (FluentForms) is squeezed into a 320px column
   split 50/50 between the email field and the short "Subscribe" button,
   which truncates the "Your Email Address" placeholder at the plugin's
   default sizing. Give the email field more of the row and tighten its
   font/padding a bit instead of touching FluentForm's own column markup. */
.newsletter-compact .ff-t-column-1 { flex-basis: 64% !important; }
.newsletter-compact .ff-t-column-2 { flex-basis: 36% !important; }
.newsletter-compact .tr-email-input { font-size: 13px !important; padding: 10px 12px !important; }

/* ---------- Footer ---------- */
footer.site { border-top: 1px solid var(--line); padding: 48px 0 36px; }
.footer-top { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; padding-bottom: 32px; border-bottom: 1px solid var(--line); margin-bottom: 24px; }
.footer-cols { display: flex; gap: 56px; flex-wrap: wrap; }
.footer-col h4 { font-family: var(--body); font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin: 0 0 14px; font-weight: 600; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.footer-col a { color: var(--ink); font-size: 14.5px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; color: var(--muted); font-size: 13px; }
.disclosure { max-width: 60ch; }

/* ---------- Single review post ---------- */
.post-header { padding: 48px 0 0; max-width: 82ch; margin: 0 auto; }
.post-header .caption { color: var(--accent); margin-bottom: 14px; }
.post-header .caption a { color: inherit; }
.post-header h1 { font-size: 38px; margin-bottom: 14px; }
.post-meta { color: var(--muted); font-size: 14px; }
.post-body { max-width: 82ch; margin: 40px auto 0; font-size: 16.5px; }
.post-body h2 { font-size: 28px; margin: 44px 0 18px; }
.post-body h3 { font-size: 20px; margin: 32px 0 12px; }
.post-body p { margin: 0 0 20px; }
.post-body ul, .post-body ol { margin: 0 0 20px; padding-left: 22px; }
.post-body table { width: 100%; border-collapse: collapse; font-variant-numeric: tabular-nums; }
.post-body .table-scroll { overflow-x: auto; margin: 0 0 24px; }
.post-body a { text-decoration: underline; }

.post-body ul.pros-list, .post-body ul.cons-list { list-style: none; padding-left: 0; }
.post-body ul.pros-list li, .post-body ul.cons-list li { position: relative; padding-left: 32px; }
.post-body ul.pros-list li::before, .post-body ul.cons-list li::before {
  position: absolute; left: 0; top: 1px;
  width: 20px; height: 20px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
}
.post-body ul.pros-list li::before { content: "✓"; background: var(--verified-soft); color: var(--verified); }
.post-body ul.cons-list li::before { content: "×"; background: var(--accent-soft); color: var(--accent); }

.verdict-block {
  max-width: 82ch;
  margin: 8px auto 48px;
  background: var(--card);
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
  border-radius: 8px;
  padding: 28px 32px;
}
.verdict-block .caption { color: var(--accent); margin-bottom: 10px; display: block; }
.verdict-block p { font-family: var(--display); font-size: 22px; line-height: 1.4; color: var(--ink); margin: 0; }

.related-section { background: var(--card); border-top: 1px solid var(--line); }
.related-section .review-grid { grid-template-columns: repeat(3, 1fr); }

/* ---------- Methodology badge legend ---------- */
.badge-legend {
  max-width: 82ch;
  margin: 0 auto 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.badge-legend-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.badge-legend-card .badge { align-self: flex-start; }
.badge-legend-card p { margin: 0; color: var(--muted); font-size: 14.5px; }

@media (max-width: 700px) {
  .badge-legend { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .post-header h1 { font-size: 30px; }
  .related-section .review-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .related-section .review-grid { grid-template-columns: 1fr; }
}

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 1; transform: none; }
html.js-motion .reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0s);
}
html.js-motion .reveal.in-view { opacity: 1; transform: none; }

.review-grid .reveal:nth-child(1) { --reveal-delay: 0s; }
.review-grid .reveal:nth-child(2) { --reveal-delay: 0.08s; }
.review-grid .reveal:nth-child(3) { --reveal-delay: 0.16s; }
.review-grid .reveal:nth-child(4) { --reveal-delay: 0.08s; }
.review-grid .reveal:nth-child(5) { --reveal-delay: 0.16s; }
.review-grid .reveal:nth-child(6) { --reveal-delay: 0.24s; }
.cat-grid .reveal:nth-child(1) { --reveal-delay: 0s; }
.cat-grid .reveal:nth-child(2) { --reveal-delay: 0.07s; }
.cat-grid .reveal:nth-child(3) { --reveal-delay: 0.14s; }
.cat-grid .reveal:nth-child(4) { --reveal-delay: 0.21s; }
.method-list .reveal:nth-child(1) { --reveal-delay: 0s; }
.method-list .reveal:nth-child(2) { --reveal-delay: 0.1s; }
.method-list .reveal:nth-child(3) { --reveal-delay: 0.2s; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  h1 { font-size: 34px; }
  nav.primary { display: none; }
  .menu-toggle {
    display: flex; align-items: center; justify-content: center;
    background: none; border: 1px solid var(--line); border-radius: 4px;
    width: 38px; height: 38px; cursor: pointer;
  }
  body.menu-open nav.primary {
    display: flex; flex-direction: column; align-items: flex-start; gap: 4px;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--paper); border-bottom: 1px solid var(--line); padding: 8px 28px 20px;
  }
  body.menu-open nav.primary ul { flex-direction: column; width: 100%; gap: 4px; }
  body.menu-open nav.primary a { padding: 10px 0; width: 100%; display: block; }

  .review-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .method-teaser { grid-template-columns: 1fr; gap: 32px; }
  .newsletter { grid-template-columns: 1fr; padding: 36px 28px; }
}

@media (max-width: 560px) {
  .wrap { padding-left: 20px; padding-right: 20px; }
  h1 { font-size: 28px; }
  .review-grid { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: 1fr; }
  .signup-form { flex-direction: column; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-inner > *, .hero-pipeline { animation: none !important; opacity: 1 !important; }
  .btn:hover, .review-card:hover, .cat-tile:hover { transform: none !important; }
  .hero h1 { transform: none !important; }
  .review-overlay { transform: none !important; }
}
