/* =============================================
   PEAKFLOW NEO-BRUTALIST DESIGN SYSTEM
   styles.css — Shared across all 32 pages
   ============================================= */

/* ========================================
   SELF-HOSTED FONTS
   ======================================== */
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('/fonts/dm-sans-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;
}

@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('/fonts/space-grotesk-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;
}

/* ========================================
   CSS CUSTOM PROPERTIES
   ======================================== */
:root {
  --yellow: #ffe17c;
  --charcoal: #171e19;
  --sage: #b7c6c2;
  --white: #ffffff;
  --black: #000000;
  --gray-bg: #f4f4f5;
  --dark-card: #272727;
  --border: 2px solid #000000;
  --shadow-sm: 4px 4px 0px 0px #000000;
  --shadow-md: 8px 8px 0px 0px #000000;
  --shadow-lg: 12px 12px 0px 0px #000000;
  --radius: 0.75rem;
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --transition-bounce: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --text-muted: rgba(0,0,0,0.5);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--black);
  background: var(--white);
  overflow-x: hidden;
  position: relative;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ========================================
   DOT PATTERN UTILITY
   ======================================== */
.dot-pattern {
  background-image: radial-gradient(circle, rgba(0,0,0,0.10) 1px, transparent 1px);
  background-size: 32px 32px;
}

/* ========================================
   BUTTON SYSTEM
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  border: var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition-bounce);
  white-space: nowrap;
  letter-spacing: -0.01em;
}

.btn-primary {
  background-color: var(--black);
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn-primary:hover {
  transform: translate(4px, 4px);
  box-shadow: 4px 4px 0px 0px #000000;
}
.btn-primary:active {
  transform: translate(8px, 8px);
  box-shadow: none;
}

.btn-secondary {
  background-color: var(--white);
  color: var(--black);
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover {
  transform: translate(4px, 4px);
  box-shadow: none;
}

.btn-yellow {
  background-color: var(--yellow);
  color: var(--black);
  box-shadow: var(--shadow-md);
}
.btn-yellow:hover {
  transform: translate(4px, 4px);
  box-shadow: 4px 4px 0px 0px #000000;
}

.btn-sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
}

/* ========================================
   NAVIGATION
   ======================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 80px;
  background: var(--yellow);
  border-bottom: var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.5rem, 4vw, 4rem);
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo-img {
  height: 44px;
  width: auto;
  max-width: 220px;
  display: block;
  object-fit: contain;
  image-rendering: pixelated;
  image-rendering: -moz-crisp-edges;
  image-rendering: crisp-edges;
}


.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9375rem;
  transition: opacity 0.2s;
}
.nav-links a:hover { opacity: 0.6; }

.nav-cta .btn {
  padding: 0.625rem 1.5rem;
  font-size: 0.875rem;
}

.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 32px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.nav-mobile-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--black);
  border-radius: 2px;
  transition: 0.3s;
}

/* Mobile nav open state */
.nav-links.mobile-open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 80px;
  left: 0;
  right: 0;
  background: var(--yellow);
  border-bottom: var(--border);
  padding: 1.5rem;
  gap: 1rem;
  z-index: 999;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 700;
  margin-left: 0.5rem;
}
.lang-switcher a {
  text-decoration: none;
  opacity: 0.5;
  transition: opacity 0.2s;
}
.lang-switcher a:hover { opacity: 1; }
.lang-switcher a.active {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.lang-switcher .lang-sep {
  opacity: 0.3;
  user-select: none;
}

.nav-mobile-cta {
  display: none !important;
}
.nav-links.mobile-open .nav-mobile-cta {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  background-color: var(--black);
  color: var(--white);
  border-radius: 999px;
  text-decoration: none;
  margin-top: 0.5rem;
}

/* ========================================
   SECTION UTILITIES
   ======================================== */
.section-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 4rem);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-label-line {
  width: 24px;
  height: 2.5px;
  background: currentColor;
  border-radius: 2px;
}

.section-heading {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 1.0625rem;
  color: rgba(0,0,0,0.65);
  max-width: 560px;
  line-height: 1.65;
}

/* ========================================
   HERO SECTION (Homepage)
   ======================================== */
.hero {
  padding: 140px clamp(1.5rem, 4vw, 4rem) 80px;
  background: var(--yellow);
  border-bottom: var(--border);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/hero-bg.jpg') center/cover no-repeat;
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
}
.hero > * {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  border: var(--border);
  border-radius: 100px;
  padding: 0.5rem 1.25rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8125rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.hero-heading {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin-bottom: 1.5rem;
}

.hero-heading .outline-text {
  -webkit-text-stroke: 2.5px var(--black);
  color: transparent;
}

.hero-sub {
  font-size: 1.1875rem;
  line-height: 1.65;
  color: rgba(0,0,0,0.7);
  max-width: 520px;
  margin-bottom: 2.5rem;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-guarantee {
  flex-basis: 100%;
  font-size: 0.8125rem;
  color: rgba(0,0,0,0.4);
  font-weight: 600;
  margin-top: -0.25rem;
}

.hero-stat-row {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 2px dashed rgba(0,0,0,0.15);
}

.hero-stat {
  font-family: var(--font-heading);
}
.hero-stat strong {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.hero-stat span {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: rgba(0,0,0,0.65);
  font-weight: 600;
}

/* Hero SVG Animation */
.hero-anim-container {
  width: 100%;
  max-width: 1100px;
}
.hero-anim-container svg {
  width: 100%;
  height: auto;
}

@keyframes data-flow {
  to { stroke-dashoffset: -40; }
}

.good-thing {
  opacity: 0;
  animation: pop-text 18s cubic-bezier(0.175, 0.885, 0.32, 1.275) infinite;
}
.gt-1 { animation-delay: 0s; }
.gt-2 { animation-delay: 3s; }
.gt-3 { animation-delay: 6s; }
.gt-4 { animation-delay: 9s; }
.gt-5 { animation-delay: 12s; }
.gt-6 { animation-delay: 15s; }

@keyframes pop-text {
  0%     { opacity: 0; transform: translateY(15px); }
  2%     { opacity: 1; transform: translateY(0px); }
  14%    { opacity: 1; transform: translateY(0px); }
  16.66% { opacity: 0; transform: translateY(-15px); }
  100%   { opacity: 0; transform: translateY(-15px); }
}

.popup-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.popup-badge {
  background: #ffffff;
  border: 3px solid #000000;
  padding: 10px 22px;
  border-radius: 14px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 24px;
  color: #000000;
  box-shadow: 4px 4px 0px #000;
  display: inline-flex;
  white-space: nowrap;
}

/* ========================================
   MARQUEE / SOCIAL PROOF BAR
   ======================================== */
.marquee-section {
  background: var(--charcoal);
  border-bottom: var(--border);
  padding: 1.25rem 0;
  overflow: hidden;
  max-width: 100vw;
}

.marquee-track {
  display: flex;
  animation: marquee-scroll 30s linear infinite;
  width: max-content;
}

.marquee-item {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--sage);
  opacity: 0.75;
  white-space: nowrap;
  padding: 0 3rem;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.marquee-item .separator {
  width: 6px;
  height: 6px;
  background: var(--sage);
  border-radius: 50%;
  opacity: 0.3;
  flex-shrink: 0;
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ========================================
   PROBLEM VS SOLUTION
   ======================================== */
.pvs {
  padding: 100px 0;
  background: var(--white);
}

.pvs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3.5rem;
}

.pvs-card {
  border-radius: var(--radius);
  padding: 2.5rem;
}

.pvs-card.problem {
  background: var(--gray-bg);
  border: 2px dashed #c4c4c4;
  opacity: 0.85;
}

.pvs-card.solution {
  background: var(--yellow);
  border: var(--border);
  box-shadow: var(--shadow-md);
}

.pvs-card-label {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.375rem;
  letter-spacing: -0.03em;
  margin-bottom: 0.25rem;
}

.pvs-card-sub {
  font-size: 0.875rem;
  opacity: 0.7;
  margin-bottom: 2rem;
  font-weight: 600;
}

.pvs-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.pvs-list-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 1rem;
  line-height: 1.5;
}

.pvs-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.8125rem;
  font-weight: 800;
  border: var(--border);
}

.pvs-icon.x {
  background: var(--white);
  color: var(--black);
}

.pvs-icon.check {
  background: var(--black);
  color: var(--yellow);
}

/* ========================================
   FEATURE GRID
   ======================================== */
.features {
  padding: 100px 0 0;
  background: var(--yellow);
  border-top: var(--border);
}

.features-header {
  padding-bottom: 4rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.feature-card {
  background: var(--white);
  border: var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-bounce);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.feature-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0px 0px #000000;
}

.feature-icon-box {
  width: 48px;
  height: 48px;
  background: var(--sage);
  border: var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: background 0.3s;
}
.feature-card:hover .feature-icon-box {
  background: var(--yellow);
}

.feature-card-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.375rem;
  letter-spacing: -0.03em;
}

.feature-card-desc {
  font-size: 0.9375rem;
  color: rgba(0,0,0,0.6);
  line-height: 1.65;
  flex-grow: 1;
}


/* ========================================
   TOOL PICKER (Notion-style: list + preview)
   ======================================== */
.tool-picker-section {
  padding: 60px 0 80px;
}

.tool-picker {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 2rem;
  margin-top: 1.5rem;
  align-items: start;
}

.tool-picker-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.tool-picker-item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.875rem 1rem;
  border: 2px solid transparent;
  border-radius: var(--radius);
  background: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  transition: all 0.15s ease;
  position: relative;
  touch-action: manipulation;
}
.tool-picker-item:hover {
  background: var(--gray-bg);
}
.tool-picker-item.active {
  background: var(--yellow);
  border-color: var(--black);
  box-shadow: var(--shadow-sm);
}

.tool-picker-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  flex-shrink: 0;
  background: var(--gray-bg);
  border: 1.5px solid rgba(0,0,0,0.08);
}
.tool-picker-item.active .tool-picker-icon {
  background: var(--white);
  border-color: var(--black);
}

.tool-picker-info {
  flex: 1;
  min-width: 0;
}

.tool-picker-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.9375rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0;
}

.tool-picker-desc {
  font-size: 0.8125rem;
  color: rgba(0,0,0,0.5);
  line-height: 1.45;
  margin: 0.125rem 0 0;
}
.tool-picker-item.active .tool-picker-desc {
  color: rgba(0,0,0,0.65);
}

.tool-picker-replaces {
  font-size: 0.6875rem;
  font-weight: 700;
  color: rgba(0,0,0,0.3);
  letter-spacing: -0.01em;
}
.tool-picker-item.active .tool-picker-replaces {
  color: rgba(0,0,0,0.5);
}

.tool-picker-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  flex-shrink: 0;
  opacity: 0;
  transition: opacity 0.15s, background 0.15s;
}
.tool-picker-item:hover .tool-picker-link,
.tool-picker-item.active .tool-picker-link {
  opacity: 1;
}
.tool-picker-link:hover {
  background: rgba(0,0,0,0.08);
}

.tool-picker-preview {
  position: sticky;
  top: 100px;
  background: var(--white);
  border: var(--border);
  border-radius: 1rem;
  overflow: hidden;
}

/* Each tool panel: screenshot left + features right */
.tool-picker-panel {
  display: none;
  animation: pickerFadeIn 0.3s ease;
}
.tool-picker-panel.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.tool-picker-screenshot {
  background: var(--gray-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  min-height: 340px;
}
.tool-picker-screenshot img {
  max-height: 420px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  border-radius: 10px;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.1));
}
.tool-picker-screenshot-rotator {
  position: relative;
  min-height: 340px;
  background: var(--gray-bg);
}
.tool-picker-screenshot-rotator .tool-picker-screenshot {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}
.tool-picker-screenshot-rotator .tool-picker-screenshot.active {
  opacity: 1;
  position: relative;
  pointer-events: auto;
}

.tool-picker-features {
  padding: 2rem 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.tool-picker-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.tool-picker-features li {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--charcoal);
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
}
.feature-icon {
  font-size: 1rem;
  flex-shrink: 0;
  width: 1.25rem;
  text-align: center;
  line-height: 1.5;
}
.tool-picker-cta {
  display: inline-block;
  margin-top: 1.5rem;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--charcoal);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border: 2px solid var(--charcoal);
  border-radius: var(--radius);
  transition: background 0.15s, color 0.15s;
  align-self: flex-start;
}
.tool-picker-cta:hover {
  background: var(--yellow);
}

@keyframes pickerFadeIn {
  from { opacity: 0; transform: scale(0.98); }
  to { opacity: 1; transform: scale(1); }
}

/* ========================================
   REVIEWS STRIP (compact)
   ======================================== */
.reviews-strip {
  padding: 2rem 0;
  background: var(--sage);
  border-top: var(--border);
  border-bottom: var(--border);
}

.reviews-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.review-chip {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 1.25rem;
  background: var(--white);
  border: var(--border);
  border-radius: var(--radius);
}

.review-stars {
  color: #b45309;
  font-size: 0.875rem;
  letter-spacing: 1px;
}

.review-quote {
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(0,0,0,0.75);
  font-style: italic;
}

.review-who {
  font-size: 0.6875rem;
  font-weight: 700;
  color: rgba(0,0,0,0.35);
  margin-top: 0.125rem;
}

/* ========================================
   TOOL SHOWCASE (Full-width rows) — legacy
   ======================================== */
.tool-showcase {
  border-top: var(--border);
  background: var(--white);
}

.tool-showcase-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

.tool-showcase.alt {
  background: var(--gray-bg);
}

.tool-showcase.alt .tool-screenshot {
  order: 2;
}
.tool-showcase.alt .tool-content {
  order: 1;
}

.tool-screenshot {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}

.tool-screenshot img {
  position: relative;
  z-index: 1;
  max-height: 440px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  border-radius: 16px;
  filter: drop-shadow(0 6px 24px rgba(0,0,0,0.18));
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.tool-showcase:hover .tool-screenshot img {
  transform: scale(1.03) translateY(-4px);
}

.tool-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 4vw, 4rem) clamp(2rem, 5vw, 5rem);
}

.tool-number {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.25);
  margin-bottom: 1.25rem;
}

.tool-icon-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.tool-icon-box {
  width: 52px;
  height: 52px;
  background: var(--sage);
  border: var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.375rem;
  flex-shrink: 0;
  transition: background 0.3s;
}
.tool-showcase:hover .tool-icon-box {
  background: var(--yellow);
}

.tool-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.tool-desc {
  font-size: 1.0625rem;
  color: rgba(0,0,0,0.6);
  line-height: 1.7;
  margin-bottom: 1.75rem;
  max-width: 440px;
}

.tool-features-list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-bottom: 2rem;
}

.tool-feature-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.9375rem;
  font-weight: 600;
}

.tool-feature-check {
  width: 20px;
  height: 20px;
  background: var(--yellow);
  border: 1.5px solid var(--black);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.625rem;
  font-weight: 800;
  flex-shrink: 0;
}

.tool-replaces {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: rgba(0,0,0,0.35);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding-top: 0.5rem;
  border-top: 2px dashed rgba(0,0,0,0.1);
}

.tool-replaces svg {
  flex-shrink: 0;
}


/* ========================================
   HOW IT WORKS (compact)
   ======================================== */
.how-it-works {
  padding: 3rem 0;
  background: var(--charcoal);
  color: var(--white);
}

.hiw-heading {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 0;
}

.hiw-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 1.5rem;
}

.hiw-step {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.hiw-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2.5px solid var(--sage);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.875rem;
  color: var(--sage);
  flex-shrink: 0;
}
.hiw-step:nth-child(2) .hiw-num { border-color: var(--yellow); color: var(--yellow); }
.hiw-step:nth-child(3) .hiw-num { border-color: var(--white); color: var(--white); }

.hiw-step strong {
  display: block;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.9375rem;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.hiw-step span {
  display: block;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.5;
  margin-top: 0.125rem;
}

/* ========================================
   USE CASE PERSONAS
   ======================================== */
.personas {
  padding: 100px 0;
  background: var(--white);
}

.personas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.persona-card {
  border: var(--border);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  min-height: 360px;
}

.persona-card.sage-bg { background: var(--sage); }
.persona-card.yellow-bg {
  background: var(--yellow);
  box-shadow: var(--shadow-md);
}
.persona-card.dark-bg {
  background: var(--dark-card);
  color: var(--white);
}

.persona-badge {
  display: inline-flex;
  align-self: flex-start;
  background: var(--white);
  color: var(--black);
  border: var(--border);
  border-radius: 100px;
  padding: 0.375rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.persona-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.75rem;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.persona-desc {
  font-size: 0.9375rem;
  opacity: 0.7;
  line-height: 1.65;
  flex-grow: 1;
}

.persona-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.persona-tool-tag {
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 0.375rem 0.75rem;
  border-radius: 6px;
  background: rgba(0,0,0,0.08);
  letter-spacing: 0.02em;
}
.persona-card.dark-bg .persona-tool-tag {
  background: rgba(255,255,255,0.1);
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials {
  padding: 100px 0;
  background: var(--sage);
  border-top: var(--border);
  border-bottom: var(--border);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.testimonial-card {
  background: var(--white);
  border: var(--border);
  border-radius: 2px 1.5rem 2px 1.5rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: var(--transition-bounce);
}
.testimonial-card:nth-child(2) {
  border-radius: 1.5rem 2px 1.5rem 2px;
}
.testimonial-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-sm);
}

.testimonial-stars {
  color: #b45309;
  font-size: 1.125rem;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(0,0,0,0.75);
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: var(--border);
  background: var(--gray-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.875rem;
  font-family: var(--font-heading);
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.9375rem;
}

.testimonial-role {
  font-size: 0.75rem;
  color: rgba(0,0,0,0.4);
  font-weight: 600;
}

/* ========================================
   PRICING
   ======================================== */
.pricing {
  padding: 48px 0;
  background: var(--white);
}

.pricing-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
  margin-top: 1.5rem;
}

.pricing-card {
  background: var(--white);
  border: var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.pricing-header {
  background: var(--yellow);
  padding: 1.25rem 1.5rem;
  border-bottom: var(--border);
  text-align: center;
}

.pricing-badge {
  display: inline-flex;
  background: var(--black);
  color: var(--yellow);
  border-radius: 100px;
  padding: 0.25rem 0.75rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.625rem;
}

.pricing-amount {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 3rem;
  letter-spacing: -0.05em;
  line-height: 1;
}
.pricing-amount span {
  font-size: 1.125rem;
  font-weight: 600;
  opacity: 0.5;
  letter-spacing: -0.02em;
}

.pricing-annual {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  opacity: 0.6;
}
.pricing-annual strong {
  background: var(--black);
  color: var(--yellow);
  padding: 0.125rem 0.5rem;
  border-radius: 4px;
  font-size: 0.6875rem;
  margin-left: 0.25rem;
}

.pricing-body {
  padding: 1.25rem 1.5rem;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
}

.pricing-check {
  width: 20px;
  height: 20px;
  background: var(--yellow);
  border: var(--border);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.625rem;
  font-weight: 800;
  flex-shrink: 0;
}

.pricing-cta {
  text-align: center;
}

.pricing-cta .btn {
  width: 100%;
  justify-content: center;
  font-size: 1rem;
  padding: 0.875rem 1.5rem;
}

.perpetual-tool-select {
  width: 100%;
  padding: 0.75rem 1rem;
  margin-bottom: 0.625rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border: var(--border);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
}

.pricing-guarantee {
  text-align: center;
  margin-top: 0.75rem;
  font-size: 0.75rem;
  color: rgba(0,0,0,0.4);
  font-weight: 600;
}

.pricing-card--highlight {
  transform: scale(1.04);
  border-width: 3px;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
}

.pricing-subtitle {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  opacity: 0.6;
}
.pricing-subtitle strong {
  background: var(--black);
  color: var(--yellow);
  padding: 0.125rem 0.5rem;
  border-radius: 4px;
  font-size: 0.6875rem;
  margin-left: 0.25rem;
}

.pricing-contact {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: rgba(0,0,0,0.5);
}
.pricing-contact a {
  color: var(--black);
  font-weight: 600;
}

.footer-contact {
  margin-top: 0.75rem;
  font-size: 0.8125rem;
}
.footer-contact a {
  color: var(--sage);
  text-decoration: none;
}
.footer-contact a:hover {
  color: var(--yellow);
}

/* ========================================
   FINAL CTA
   ======================================== */
.final-cta {
  padding: 100px 0;
  background: var(--yellow);
  border-top: var(--border);
  border-bottom: var(--border);
  text-align: center;
}

.final-cta-heading {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}

.final-cta-sub {
  font-size: 1.125rem;
  color: rgba(0,0,0,0.55);
  max-width: 480px;
  margin: 0 auto 2.5rem;
  line-height: 1.65;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--charcoal);
  color: var(--white);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-brand-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.04em;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-brand-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.footer-social-icon {
  width: 40px;
  height: 40px;
  background: var(--dark-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-bounce);
  cursor: pointer;
}
.footer-social-icon:hover {
  background: var(--yellow);
  border-color: var(--black);
}
.footer-social-icon:hover svg { fill: var(--black); }
.footer-social-icon svg {
  width: 16px;
  height: 16px;
  fill: rgba(255,255,255,0.65);
  transition: fill 0.2s;
}

.footer-col-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
  color: rgba(255,255,255,0.65);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col a {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
  font-weight: 500;
}
.footer-col a:hover { color: var(--yellow); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.65);
}

/* ========================================
   SCROLL ANIMATIONS
   ======================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }
.reveal[data-delay="4"] { transition-delay: 0.4s; }
.reveal[data-delay="5"] { transition-delay: 0.5s; }

/* =============================================
   BLOG STYLES
   ============================================= */

/* Page hero for blog index & subpages */
.page-hero {
  padding: 140px clamp(1.5rem, 4vw, 4rem) 60px;
  background: var(--yellow);
  border-bottom: var(--border);
}

.page-hero .section-container {
  max-width: 1280px;
}

.page-hero-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.page-hero-sub {
  font-size: 1.125rem;
  color: rgba(0,0,0,0.6);
  max-width: 560px;
  line-height: 1.65;
}

/* Breadcrumb */
.breadcrumb {
  padding: 1rem 0 0;
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(0,0,0,0.4);
}
.breadcrumb a {
  color: var(--black);
  font-weight: 700;
  transition: opacity 0.2s;
}
.breadcrumb a:hover { opacity: 0.6; }
.breadcrumb .separator { margin: 0 0.5rem; }

/* Blog card grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding: 80px 0;
}

.blog-card {
  background: var(--white);
  border: var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-bounce);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.blog-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0px 0px #000000;
}

.blog-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.blog-tag {
  display: inline-flex;
  background: var(--yellow);
  border: 1.5px solid var(--black);
  border-radius: 100px;
  padding: 0.25rem 0.75rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.blog-card-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.blog-card-desc {
  font-size: 0.9375rem;
  color: rgba(0,0,0,0.55);
  line-height: 1.6;
  flex-grow: 1;
}

.blog-card-meta {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(0,0,0,0.35);
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.blog-card-read {
  font-weight: 700;
  color: var(--black);
  font-size: 0.8125rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 0.5rem;
  transition: opacity 0.2s;
}
.blog-card-read:hover { opacity: 0.6; }

/* Blog article body */
.article-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px clamp(1.5rem, 4vw, 4rem) 100px;
}

.article-container h1 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.article-meta {
  font-size: 0.875rem;
  color: rgba(0,0,0,0.45);
  font-weight: 600;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: var(--border);
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Article hero banner */
.article-hero-img {
  width: 100%;
  height: auto;
  border: var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  margin-bottom: 2.5rem;
}

/* Blog card thumbnail — break out of card padding */
.blog-card-img {
  display: block;
  width: calc(100% + 4rem);
  max-width: none;
  height: auto;
  aspect-ratio: 2 / 1;
  object-fit: cover;
  flex-shrink: 0;
  align-self: stretch;
  margin: -2rem -2rem 1rem -2rem;
  border-bottom: var(--border);
  border-radius: calc(var(--radius) - 2px) calc(var(--radius) - 2px) 0 0;
}

.article-container h2 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.75rem;
  letter-spacing: -0.03em;
  margin-top: 3rem;
  margin-bottom: 1rem;
  line-height: 1.15;
}

.article-container h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.article-container p {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: rgba(0,0,0,0.75);
  margin-bottom: 1.5rem;
}

.article-container ul,
.article-container ol {
  list-style: none;
  margin-bottom: 1.5rem;
  padding-left: 0;
}

.article-container li {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: rgba(0,0,0,0.75);
  padding: 0.375rem 0 0.375rem 1.75rem;
  position: relative;
}

.article-container ul li::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--yellow);
  border: 1.5px solid var(--black);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0.85rem;
}

.article-container ol {
  counter-reset: article-ol;
}
.article-container ol li {
  counter-increment: article-ol;
}
.article-container ol li::before {
  content: counter(article-ol);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.75rem;
  width: 22px;
  height: 22px;
  background: var(--yellow);
  border: 1.5px solid var(--black);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 0.65rem;
}

/* Article blockquotes */
.article-container blockquote {
  background: var(--yellow);
  border: var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  font-style: italic;
  font-size: 1.0625rem;
  line-height: 1.65;
  box-shadow: var(--shadow-sm);
}

/* Article code blocks */
.article-container code {
  font-family: 'JetBrains Mono', 'Fira Code', monospace;
  background: var(--charcoal);
  color: var(--sage);
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  font-size: 0.875em;
}

.article-container pre {
  background: var(--charcoal);
  border: var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  overflow-x: auto;
  margin: 2rem 0;
  box-shadow: var(--shadow-sm);
}

.article-container pre code {
  background: none;
  padding: 0;
  color: var(--sage);
  font-size: 0.875rem;
  line-height: 1.7;
}

/* Article tables */
.article-container table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  border: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.article-container thead th {
  background: var(--yellow);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: -0.01em;
  padding: 0.875rem 1rem;
  text-align: left;
  border-bottom: var(--border);
}

.article-container tbody td {
  padding: 0.75rem 1rem;
  font-size: 0.9375rem;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.article-container tbody tr:last-child td {
  border-bottom: none;
}

.article-container tbody tr:hover {
  background: var(--gray-bg);
}

/* Article CTA box */
.article-cta {
  background: var(--yellow);
  border: var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  text-align: center;
  margin: 3rem 0;
  box-shadow: var(--shadow-md);
}

.article-cta h3 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.article-cta p {
  color: rgba(0,0,0,0.6);
  margin-bottom: 1.5rem;
}

/* Strong text in articles */
.article-container strong {
  font-weight: 700;
  color: var(--black);
}

/* Article links */
.article-container a {
  color: var(--black);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--yellow);
  text-underline-offset: 3px;
  text-decoration-thickness: 2px;
  transition: text-decoration-color 0.2s;
}
.article-container a:hover {
  text-decoration-color: var(--black);
}

/* CTA button override — must come after article link styles */
.article-container .article-cta a.btn {
  text-decoration: none;
  color: var(--white);
  background-color: var(--black);
  display: inline-flex;
  box-shadow: var(--shadow-md);
}
.article-container .article-cta a.btn:hover {
  text-decoration: none;
  color: var(--white);
  transform: translate(4px, 4px);
  box-shadow: 4px 4px 0px 0px #000000;
}

/* Mac Alternatives grid (homepage) */
.alt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

/* =============================================
   ALTERNATIVE PAGE STYLES
   ============================================= */

/* Alt page hero */
.alt-hero {
  padding: 140px clamp(1.5rem, 4vw, 4rem) 60px;
  background: var(--yellow);
  border-bottom: var(--border);
}

.alt-hero-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.alt-hero-sub {
  font-size: 1.125rem;
  color: rgba(0,0,0,0.6);
  max-width: 600px;
  line-height: 1.65;
}

/* Alt page content area */
.alt-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px clamp(1.5rem, 4vw, 4rem);
}

.alt-content h2 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.75rem;
  letter-spacing: -0.03em;
  margin-top: 3rem;
  margin-bottom: 1rem;
}

.alt-content p {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: rgba(0,0,0,0.75);
  margin-bottom: 1.5rem;
}

/* Comparison cards (Mac vs PeakFlow) */
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
}

.comparison-card {
  border-radius: var(--radius);
  padding: 2rem;
}

.comparison-card.mac {
  background: var(--gray-bg);
  border: 2px dashed #c4c4c4;
  opacity: 0.8;
}

.comparison-card.peakflow {
  background: var(--yellow);
  border: var(--border);
  box-shadow: var(--shadow-md);
}

.comparison-card h3 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.comparison-card .price {
  font-weight: 700;
  font-size: 0.875rem;
  opacity: 0.6;
  margin-bottom: 1rem;
  display: block;
}

.comparison-card ul {
  list-style: none;
}

.comparison-card li {
  font-size: 0.9375rem;
  padding: 0.375rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Feature comparison table */
.alt-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  border: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.alt-content thead th {
  background: var(--yellow);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.875rem 1rem;
  text-align: left;
  border-bottom: var(--border);
}

.alt-content thead th:nth-child(2),
.alt-content thead th:nth-child(3) {
  text-align: center;
}

.alt-content tbody td {
  padding: 0.75rem 1rem;
  font-size: 0.9375rem;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.alt-content tbody td:nth-child(2),
.alt-content tbody td:nth-child(3) {
  text-align: center;
}

.alt-content tbody tr:last-child td {
  border-bottom: none;
}

.check-icon { color: #22c55e; font-weight: 700; }
.cross-icon { color: #ef4444; font-weight: 700; }

/* Why-choose list */
.why-list {
  list-style: none;
  margin: 1.5rem 0;
}

.why-list li {
  padding: 0.625rem 0 0.625rem 2rem;
  position: relative;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(0,0,0,0.75);
}

.why-list li::before {
  content: "\2713";
  color: #22c55e;
  font-weight: 800;
  position: absolute;
  left: 0;
  top: 0.625rem;
}

/* Alt CTA box */
.alt-cta {
  background: var(--yellow);
  border: var(--border);
  border-radius: var(--radius);
  padding: 3rem;
  text-align: center;
  margin: 3rem 0;
  box-shadow: var(--shadow-md);
}

.alt-cta h2 {
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.alt-cta p {
  color: rgba(0,0,0,0.6);
  margin-bottom: 1.5rem;
}

/* Related alternatives grid */
.related-section {
  background: var(--gray-bg);
  border-top: var(--border);
  padding: 80px 0;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.related-card {
  background: var(--white);
  border: var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: var(--transition-bounce);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.related-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-sm);
}

.related-card h4 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.125rem;
  letter-spacing: -0.02em;
}

.related-card p {
  font-size: 0.875rem;
  color: rgba(0,0,0,0.55);
  line-height: 1.55;
  margin-bottom: 0;
}

/* Back to blog navigation */
.back-to-blog {
  padding: 2rem 0 3rem;
}
.back-to-blog a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--black);
  text-decoration: none;
  transition: opacity 0.2s;
}
.back-to-blog a:hover {
  opacity: 0.6;
}

/* =============================================
   AEO ANSWER BLOCKS
   ============================================= */

/* Short-answer block on alternatives pages */
.tldr-answer {
  background: var(--yellow);
  border: var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: rgba(0,0,0,0.8);
}

.tldr-answer strong {
  color: var(--black);
}

/* Short-answer block on blog posts */
.answer-summary {
  background: var(--yellow);
  border: var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: rgba(0,0,0,0.8);
}

.answer-summary strong {
  color: var(--black);
}

/* ========================================
   BLOG PREVIEW (homepage)
   ======================================== */
.blog-preview-section {
  padding: 80px 0;
  background: var(--gray-bg);
  border-top: var(--border);
}

.blog-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

/* =============================================
   SHARE & EARN PAGE
   ============================================= */

.share-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2rem 0 3rem;
}

.share-step {
  background: var(--white);
  border: var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
}

.share-step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--yellow);
  border: var(--border);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.share-step h3 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.125rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.share-step p {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(0,0,0,0.65);
  margin-bottom: 0;
}

.share-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0 3rem;
}

.share-btn {
  flex: 1;
  min-width: 140px;
}

.share-message-preview {
  background: var(--gray-bg);
  border: var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1rem;
  position: relative;
}

.share-message-platform {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(0,0,0,0.45);
  margin-bottom: 0.75rem;
}

.share-message-preview blockquote {
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(0,0,0,0.8);
  margin: 0 0 1rem;
  padding: 0;
  border: none;
}

.share-copy-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-anim-container { max-width: 600px; }
  .pvs-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .tool-picker { grid-template-columns: 280px 1fr; }
  .tool-showcase-inner { grid-template-columns: 1fr; min-height: auto; }
  .tool-showcase.alt .tool-screenshot { order: 0; }
  .tool-showcase.alt .tool-content { order: 0; }
  .tool-screenshot { min-height: 360px; padding: 2rem; }
  .tool-screenshot img { max-height: 340px; }
  .tool-content { padding: 2.5rem clamp(1.5rem, 4vw, 4rem); }
  .hiw-strip { grid-template-columns: 1fr; gap: 1.25rem; }
  .personas-grid { grid-template-columns: 1fr; max-width: 480px; }
  .pricing-row { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .reviews-row { grid-template-columns: 1fr; max-width: 480px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .comparison-grid { grid-template-columns: 1fr; }
  .share-steps { grid-template-columns: 1fr; }
  .alt-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .lang-switcher { display: none; }
  .nav-links.mobile-open .lang-switcher { display: flex; justify-content: center; }
  .nav-mobile-toggle { display: flex; }
  .hero { padding-top: 120px; padding-bottom: 60px; min-height: auto; }
  .hero-heading { font-size: 2.75rem; }
  .hero-cta-group { flex-direction: column; }
  .hero-cta-group .btn { width: 100%; }
  .hero-stat-row { gap: 1.5rem; }
  .features-grid { grid-template-columns: 1fr; }
  .tool-picker { grid-template-columns: 1fr; }
  .tool-picker-preview { position: static; }
  .tool-picker-panel.active { grid-template-columns: 1fr; }
  .tool-picker-screenshot { min-height: 220px; padding: 1rem; }
  .tool-picker-screenshot img { max-height: 280px; }
  .tool-picker-features { padding: 1.25rem 1.5rem; }
  .tool-picker-link { display: none; }
  .tool-screenshot { min-height: 300px; padding: 1.5rem; }
  .tool-screenshot img { max-height: 280px; }
  .tool-title { font-size: 1.5rem; }
  .section-heading { font-size: 2rem; }
  .pricing-row { grid-template-columns: 1fr; }
  .pricing-card { margin-left: 0; margin-right: 0; }
  .pricing-card--highlight { transform: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .blog-grid { grid-template-columns: 1fr; }
  .page-hero-title { font-size: 2.25rem; }
  .alt-hero-title { font-size: 2rem; }
  .alt-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-stat-row { flex-direction: row; flex-wrap: nowrap; justify-content: center; }
  .tool-picker > .tool-picker-preview { display: none !important; }
  .tool-picker-preview--mobile {
    display: none;
    width: 100%;
    padding: 0.5rem 0;
  }
  .tool-picker-preview--mobile .tool-picker-panel.active {
    grid-template-columns: 1fr;
  }
  .tool-picker-preview--mobile .tool-picker-screenshot {
    min-height: 180px;
    padding: 0.75rem;
  }
  .tool-picker-preview--mobile .tool-picker-screenshot img {
    max-height: 240px;
  }
}

@media (max-width: 480px) {
  .hero-heading { font-size: 2.25rem; }
  .hero-stat-row { flex-direction: row; gap: 0.75rem; }
  .tool-screenshot img { max-height: 240px; }
}

/* ==========================================================================
   INLINE BLOG INFOGRAPHICS
   Warm editorial poster style — used in pillar guide blog posts
   ========================================================================== */

.infographic-break {
  position: relative;
  margin: 3rem -2rem;
  padding: 2.5rem 2rem;
  border: 3px solid #000;
  border-radius: 1rem;
  overflow: hidden;
}
.infographic-break::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0,0,0,0.05) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
  z-index: 0;
}
.infographic-break > * { position: relative; z-index: 1; }

/* Background variants */
.ig-yellow  { background: #F9D76A; }
.ig-dark    { background: #1E1E2E; color: #fff; }
.ig-teal    { background: #2DD4BF; }
.ig-cream   { background: #FFF8E1; }

/* Typography */
.ig-tag {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 0.75rem;
}
.ig-yellow .ig-tag { background: #1E1E2E; color: #F9D76A; }
.ig-dark .ig-tag   { background: #FF6B6B; color: #1E1E2E; }
.ig-teal .ig-tag   { background: #1E1E2E; color: #2DD4BF; }
.ig-cream .ig-tag  { background: #1E1E2E; color: #FFF8E1; }

.ig-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.75rem;
  line-height: 1.1;
  color: #1E1E2E;
  margin-bottom: 0.5rem;
}
.ig-dark .ig-title { color: #F9D76A; }

.ig-title em { font-style: italic; color: #FF6B6B; }
.ig-dark .ig-title em { color: #FF6B6B; }

.ig-subtitle {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  line-height: 1.5;
  opacity: 0.75;
  color: #1E1E2E;
  max-width: 420px;
  margin-bottom: 1.5rem;
}
.ig-dark .ig-subtitle { color: rgba(255,255,255,0.6); }

/* ---- Infographic 1: Brain Overview (yellow, horizontal) ---- */
.ig-brain-layout {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.ig-brain-svg { flex-shrink: 0; width: 180px; height: 180px; }
.ig-brain-svg svg { width: 100%; height: 100%; }

.ig-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  flex: 1;
}
.ig-pillar {
  background: rgba(255,255,255,0.5);
  border: 2px solid #1E1E2E;
  border-radius: 0.75rem;
  padding: 1rem;
}
.ig-pillar-icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.ig-pillar-name {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1rem;
  color: #1E1E2E;
  margin-bottom: 0.35rem;
  line-height: 1.15;
}
.ig-pillar-desc {
  font-size: 0.72rem;
  line-height: 1.45;
  color: #1E1E2E;
  opacity: 0.7;
}

/* ---- Infographic 2: Vicious Cycle (dark, horizontal flow) ---- */
.ig-cycle-flow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
}
.ig-cycle-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  flex: 1;
}
.ig-cycle-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  border: 3px solid rgba(255,255,255,0.15);
}
.ig-ci-1 { background: #FF6B6B; }
.ig-ci-2 { background: #F59E0B; }
.ig-ci-3 { background: #F472B6; }
.ig-ci-4 { background: #60A5FA; }
.ig-ci-5 { background: #A855F7; }

.ig-cycle-name {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 0.8rem;
  color: #fff;
}
.ig-cycle-sub {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.45);
  max-width: 100px;
}
.ig-cycle-arrow {
  color: rgba(255,255,255,0.2);
  flex-shrink: 0;
  margin-top: -2rem;
  display: flex;
  align-items: center;
}

/* ---- Infographic 3: Distraction Stack (teal, vertical tiers) ---- */
.ig-tiers {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.ig-tier {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255,248,225,0.85);
  border: 2px solid #1E1E2E;
  border-radius: 0.75rem;
  padding: 1rem 1.25rem;
}
.ig-tier-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #1E1E2E;
  color: #2DD4BF;
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 2px solid #1E1E2E;
}
.ig-tier-content { flex: 1; }
.ig-tier-name {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 0.95rem;
  color: #1E1E2E;
  margin-bottom: 0.2rem;
}
.ig-tier-desc {
  font-size: 0.72rem;
  color: #1E1E2E;
  opacity: 0.7;
  line-height: 1.4;
}
.ig-tier-tool {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: #1E1E2E;
  color: #2DD4BF;
  padding: 4px 10px;
  border-radius: 4px;
  white-space: nowrap;
}

/* Arrow between tiers */
.ig-tier-arrow {
  text-align: center;
  color: #1E1E2E;
  opacity: 0.3;
  font-size: 1.2rem;
  line-height: 1;
}

/* ---- Infographic 4: Challenge Grid (cream, 3-col cards) ---- */
.ig-challenge-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
.ig-challenge-card {
  background: #fff;
  border: 2px solid #1E1E2E;
  border-radius: 0.75rem;
  padding: 1rem;
  border-left: 5px solid var(--card-accent, #1E1E2E);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.ig-challenge-card.accent-coral   { --card-accent: #FF6B6B; }
.ig-challenge-card.accent-teal    { --card-accent: #2DD4BF; }
.ig-challenge-card.accent-purple  { --card-accent: #A855F7; }
.ig-challenge-card.accent-amber   { --card-accent: #F59E0B; }
.ig-challenge-card.accent-sky     { --card-accent: #60A5FA; }
.ig-challenge-card.accent-pink    { --card-accent: #F472B6; }

.ig-card-challenge {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 0.85rem;
  color: #1E1E2E;
  line-height: 1.2;
}
.ig-card-solution {
  font-size: 0.7rem;
  color: #1E1E2E;
  opacity: 0.65;
  line-height: 1.35;
}
.ig-card-tool {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  background: rgba(30,30,46,0.08);
  color: #1E1E2E;
  padding: 3px 8px;
  border-radius: 4px;
  align-self: flex-start;
  margin-top: auto;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .infographic-break { margin: 2rem -1rem; padding: 1.75rem 1.25rem; }
  .ig-brain-layout { flex-direction: column; text-align: center; }
  .ig-brain-svg { width: 140px; height: 140px; }
  .ig-pillars { grid-template-columns: 1fr; }
  .ig-cycle-flow { flex-wrap: wrap; justify-content: center; gap: 0.5rem; }
  .ig-cycle-arrow { display: none; }
  .ig-cycle-node { min-width: 80px; }
  .ig-challenge-grid { grid-template-columns: 1fr; }
  .ig-tier { flex-direction: column; text-align: center; }
  .ig-title { font-size: 1.4rem; }
}
