/* ============================================
   Kim Willis — Design System v2
   kimwillis.net
   Minimal. Copy-focused. Bold where it counts.
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  /* Colors */
  --color-dark: #0A1628;
  --color-white: #FFFFFF;
  --color-off-white: #F7F5F0;
  --color-accent: #FA0E12;
  --color-accent-hover: #D90B0E;
  --color-text: #1E293B;
  --color-text-secondary: #64748B;
  --color-text-muted: #94A3B8;
  --color-border: #E2E8F0;
  --color-surface: #F7F5F0;

  /* Spacing */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 48px;
  --space-xl: 80px;
  --space-2xl: 120px;
  --space-3xl: 160px;

  /* Typography */
  --font-sans: "Inter", -apple-system, system-ui, sans-serif;

  /* Layout */
  --max-width: 1120px;
  --content-width: 650px;
  --grid-gap: 48px;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 18px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-white);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover {
  color: var(--color-accent-hover);
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-sans);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--color-text);
}

h1 {
  font-size: 3.5rem;
}
h2 {
  font-size: 2.25rem;
  margin-bottom: var(--space-md);
}
h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}
h4 {
  font-size: 1.05rem;
  font-weight: 600;
}

p {
  margin-bottom: var(--space-sm);
}
p:last-child {
  margin-bottom: 0;
}

.lead {
  font-size: 1.25rem;
  line-height: 1.65;
  color: var(--color-text-secondary);
}

.label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
}

/* --- Layout --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.narrow {
  max-width: var(--content-width);
  margin: 0 auto;
}

.section {
  padding: var(--space-2xl) 0;
}

.section--dark,
.section--dark-soft {
  background-color: var(--color-dark);
  color: rgba(255, 255, 255, 0.7);
}
.section--dark-soft {
  background-color: #142744;
}
.section--dark h1, .section--dark-soft h1,
.section--dark h2, .section--dark-soft h2,
.section--dark h3, .section--dark-soft h3,
.section--dark h4, .section--dark-soft h4 {
  color: var(--color-white);
}
.section--dark .lead, .section--dark-soft .lead {
  color: rgba(255, 255, 255, 0.65);
}
.section--dark a, .section--dark-soft a {
  color: var(--color-accent);
}
.section--dark .btn--primary, .section--dark-soft .btn--primary {
  color: var(--color-white);
}
.section--dark .btn--outline, .section--dark-soft .btn--outline {
  color: rgba(255, 255, 255, 0.6);
}

/* Pricing cards inside dark sections - reset to light colours */
.section--dark .pricing-card,
.section--dark-soft .pricing-card {
  color: var(--color-text);
}
.section--dark .pricing-card p,
.section--dark-soft .pricing-card p {
  color: inherit;
}
.section--dark .pricing-card .pricing-card__features li,
.section--dark-soft .pricing-card .pricing-card__features li {
  color: var(--color-text);
}
.section--dark .pricing-card a,
.section--dark-soft .pricing-card a {
  color: var(--color-white);
}

.section--surface {
  background-color: var(--color-surface);
}

.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--grid-gap);
  align-items: center;
}

.grid--top {
  align-items: start;
}

.grid--3 {
  grid-template-columns: 1fr 1fr 1fr;
}

/* --- Header / Nav --- */
.site-header {
  padding: var(--space-sm) 0;
  background-color: #142744;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-white);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.site-logo:hover {
  color: var(--color-white);
  text-decoration: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  list-style: none;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}
.site-nav a:hover {
  color: var(--color-white);
  text-decoration: none;
}

.site-nav .nav-cta {
  background-color: var(--color-accent);
  color: var(--color-white);
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 600;
  transition: background-color 0.2s ease, transform 0.15s ease;
}
.site-nav .nav-cta:hover {
  background-color: var(--color-accent-hover);
  transform: translateY(-1px);
  color: var(--color-white);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-xs);
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-white);
  margin: 5px 0;
  transition: 0.3s;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 6px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
}

.btn--primary {
  background-color: var(--color-accent);
  color: var(--color-white);
}
.btn--primary:hover {
  background-color: var(--color-accent-hover);
  transform: translateY(-1px);
  color: var(--color-white);
  text-decoration: none;
}

.btn--outline {
  background-color: transparent;
  color: var(--color-white);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}
.btn--outline:hover {
  border-color: var(--color-white);
  color: var(--color-white);
  text-decoration: none;
}

.btn--ghost {
  background: none;
  color: var(--color-accent);
  padding: 0;
  font-weight: 600;
}
.btn--ghost:hover {
  color: var(--color-accent-hover);
  text-decoration: none;
}
.btn--ghost::after {
  content: " →";
}

.btn-group {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

/* --- Hero --- */
.hero {
  padding: 130px 0 120px;
  min-height: 85vh;
  display: flex;
  align-items: center;
  position: relative;
}

/* Compact hero for inner pages */
.hero--compact {
  padding: 80px 0 60px;
  min-height: auto;
}

/* Soft hero for homepage — warmer, less intense */
.hero--soft {
  padding: 100px 0 80px;
  min-height: auto;
}

.hero.hero--soft h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.hero.hero--soft .lead {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

/* Warm intro section */
.intro-section {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  max-width: 780px;
  margin: 0 auto;
}

.intro-section .kim-avatar {
  flex-shrink: 0;
  margin-top: 6px;
}

.intro-section p {
  font-size: 1.1rem;
  line-height: 1.7;
}

.intro-section p:first-of-type {
  font-size: 1.25rem;
  font-weight: 600;
}

@media (max-width: 640px) {
  .intro-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* Red accent bar removed — nav border-bottom handles the separation */

.hero .container {
  text-align: center;
  max-width: 940px;
}

.hero .eyebrow {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 20px;
}

.hero .eyebrow strong {
  font-weight: 700;
  color: var(--color-accent);
}

.hero h1 {
  font-weight: 900;
  font-size: 4.75rem;
  line-height: 1.06;
  letter-spacing: -0.045em;
  margin-bottom: 28px;
  max-width: none;
}

.hero .lead {
  font-size: 1.35rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  max-width: 640px;
  margin: 0 auto var(--space-lg);
}

.hero .btn-group {
  justify-content: center;
}

.hero .label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 100px;
  color: var(--color-accent);
  background-color: rgba(250, 14, 18, 0.12);
  margin-bottom: 32px;
}

/* --- Pill Label --- */
.pill {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 100px;
  color: var(--color-accent);
  background-color: rgba(250, 14, 18, 0.12);
  margin-bottom: var(--space-md);
}

/* Pill in hero context — larger bottom margin */
.hero .pill {
  margin-bottom: 32px;
}

/* --- Divider --- */
.divider {
  width: 48px;
  height: 3px;
  background-color: var(--color-accent);
  border: none;
  margin: var(--space-lg) 0;
}

.divider--center {
  margin-left: auto;
  margin-right: auto;
}

/* --- Client Quotes (Problem Section) --- */
.grid--top > div:last-child {
  padding-top: 40px;
}

.quote-block {
  font-size: 1.15rem;
  font-style: italic;
  color: var(--color-text);
  position: relative;
  padding-left: var(--space-md);
  margin-bottom: var(--space-md);
  border-left: 3px solid var(--color-accent);
  line-height: 1.6;
}

/* --- Image Placeholder --- */
.img-placeholder {
  background-color: var(--color-surface);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-size: 0.85rem;
  font-style: italic;
  min-height: 300px;
  text-align: center;
  padding: var(--space-md);
}

.img-placeholder--dark {
  background-color: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.3);
}

.img-placeholder--small {
  min-height: 200px;
}

/* --- Flywheel Section --- */
.flywheel-section {
  text-align: center;
}

.flywheel-section img {
  margin: 0 auto;
  max-width: 480px;
}

/* --- Pillar / Feature Block --- */
.pillar {
  padding: var(--space-lg) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.pillar:last-child {
  border-bottom: none;
}

.pillar h3 {
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
}

.pillar .note {
  font-style: italic;
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  border-left: 2px solid var(--color-accent);
  padding-left: var(--space-sm);
  margin-top: var(--space-md);
}

/* Pillars inside dark sections */
.section--dark .pillar .note {
  color: rgba(255, 255, 255, 0.5);
}

/* --- Testimonial Cards --- */
.testimonial-card {
  background: var(--color-surface);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  padding: var(--space-md) var(--space-md) var(--space-md);
}

.testimonial-card__headline {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-xs);
}

.testimonial-card__quote {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  line-height: 1.65;
  margin-bottom: var(--space-sm);
}

.testimonial-card__attribution {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text);
}

.testimonial-card__role {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--color-text-muted);
}

/* Testimonial grid */
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

/* Testimonial strip */
.testimonial-strip {
  display: flex;
  gap: var(--space-md);
  overflow-x: auto;
  padding-bottom: var(--space-xs);
}
.testimonial-strip .testimonial-card {
  min-width: 320px;
  flex-shrink: 0;
}

/* Pull quotes (blockquote testimonials) */
.pull-quote {
  border-left: 3px solid var(--color-accent);
  padding: var(--space-md) 0 var(--space-md) var(--space-md);
  margin: var(--space-lg) 0;
}
.pull-quote p {
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--color-text);
}
.pull-quote cite {
  display: block;
  margin-top: var(--space-sm);
  font-style: normal;
  font-size: 0.875rem;
  color: var(--color-text-secondary);
}

/* --- Testimonial Masonry Grid (2-column, natural image sizes) --- */
.testimonial-masonry {
  columns: 2;
  column-gap: var(--space-md);
}
.testimonial-masonry img {
  width: auto;
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  border: 1px solid var(--color-border);
  display: block;
  margin-bottom: var(--space-md);
  break-inside: avoid;
}

/* --- Screenshot Grid (testimonial images) --- */
.screenshot-grid {
  columns: 3;
  column-gap: var(--space-md);
}
.screenshot-grid img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  border: 1px solid var(--color-border);
  display: block;
  margin-bottom: var(--space-md);
  break-inside: avoid;
}
.screenshot-grid img.img--half {
  width: 50%;
  margin-left: auto;
  margin-right: auto;
}

/* Kim avatar bubble */
.kim-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}
.kim-avatar--lg {
  width: 160px;
  height: 160px;
}

/* --- Stats Row --- */
.stats-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--space-lg);
  text-align: center;
  padding: var(--space-lg) 0;
}

.stat__number {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.stat__label {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.stat__detail {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* --- Pricing Cards --- */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--space-md);
}

.pricing-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: var(--space-lg) var(--space-md);
  text-align: center;
  display: flex;
  flex-direction: column;
}

.pricing-card--featured {
  border-color: var(--color-accent);
  border-width: 2px;
  position: relative;
}

.pricing-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-accent);
  color: var(--color-white);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
}

.pricing-card__name {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--space-xs);
}

.pricing-card__desc {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  font-style: italic;
  margin-bottom: var(--space-md);
}

.pricing-card__price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: var(--space-xs);
  letter-spacing: -0.02em;
}
.pricing-card__price span {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--color-text-secondary);
}

.pricing-card__pitch {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--color-border);
}

.pricing-card__features {
  list-style: none;
  text-align: left;
  margin-bottom: var(--space-md);
  flex-grow: 1;
}
.pricing-card__features li {
  font-size: 0.9rem;
  padding: 6px 0;
  padding-left: 24px;
  position: relative;
}
.pricing-card__features li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 700;
}

.pricing-card .btn {
  width: 100%;
  text-align: center;
}

/* --- Process Steps --- */
.process-steps {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--space-md);
  text-align: center;
}

.process-step {
  padding: var(--space-md);
}

.process-step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--color-accent);
  color: var(--color-white);
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: var(--space-sm);
}

.process-step h3 {
  font-size: 1.15rem;
}

/* --- Path Cards --- */
.path-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: var(--space-lg);
  transition: box-shadow 0.2s ease, transform 0.15s ease;
}
.path-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.path-card h3 {
  color: var(--color-text);
}

.path-card__tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-accent);
  margin-bottom: var(--space-xs);
}

/* --- Check List --- */
.check-list {
  list-style: none;
}
.check-list li {
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
}
.check-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 700;
}

/* --- CTA Banner --- */
.cta-banner {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}
.cta-banner h2 {
  margin-bottom: var(--space-sm);
}
.cta-banner p {
  margin-bottom: var(--space-md);
}

/* --- Elevator Pitch Table --- */
.pitch-table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--space-md) 0;
}
.pitch-table th {
  background-color: var(--color-dark);
  color: var(--color-white);
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.pitch-table td {
  padding: 16px;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.95rem;
  vertical-align: top;
}
.pitch-table tr:last-child td {
  border-bottom: none;
}
/* Business column — nav blue with white text */
.pitch-table tbody td:first-child {
  background-color: #142744;
  color: var(--color-white);
  font-weight: 600;
}

/* Traditional pitch column — subtle red shades, middle row lightest */
.pitch-table tbody tr:nth-child(1) td:nth-child(2) { background-color: #FFF0F0; color: var(--color-text); }
.pitch-table tbody tr:nth-child(2) td:nth-child(2) { background-color: #FFF8F8; color: var(--color-text); }
.pitch-table tbody tr:nth-child(3) td:nth-child(2) { background-color: #FFF0F0; color: var(--color-text); }

/* New style pitch column — subtle green shades, middle row lightest */
.pitch-table tbody tr:nth-child(1) td:nth-child(3) { background-color: #EDFAF2; color: var(--color-text); font-weight: 600; }
.pitch-table tbody tr:nth-child(2) td:nth-child(3) { background-color: #F5FCF7; color: var(--color-text); font-weight: 600; }
.pitch-table tbody tr:nth-child(3) td:nth-child(3) { background-color: #EDFAF2; color: var(--color-text); font-weight: 600; }

.pitch-table .pitch-before {
  color: inherit;
}
.pitch-table .pitch-after {
  color: inherit;
  font-weight: inherit;
}

/* --- Newsletter Form --- */
.newsletter-form {
  display: flex;
  gap: var(--space-sm);
  max-width: 480px;
}
.newsletter-form input[type="email"] {
  flex: 1;
  padding: 14px 16px;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  font-family: var(--font-sans);
  font-size: 1rem;
  background: var(--color-white);
  color: var(--color-text);
}
.newsletter-form input[type="email"]:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(250, 14, 18, 0.15);
}
.newsletter-form .btn {
  white-space: nowrap;
}

/* --- Page Header (inner pages) --- */
.page-header {
  padding: var(--space-xl) 0 var(--space-lg);
  background-color: var(--color-dark);
  color: var(--color-white);
}
.page-header h1 {
  color: var(--color-white);
  margin-bottom: var(--space-xs);
}
.page-header p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.1rem;
  max-width: 560px;
}

/* --- Footer --- */
.site-footer {
  background-color: #1C1C1C;
  color: rgba(255, 255, 255, 0.45);
  padding: var(--space-xl) 0 var(--space-md);
  font-size: 0.85rem;
}

.site-footer .container {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-lg);
}

.footer-brand {
  max-width: 360px;
}

.footer-brand__name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--space-xs);
}

.footer-nav h4 {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  margin-bottom: var(--space-sm);
}

.footer-nav ul {
  list-style: none;
}
.footer-nav ul li {
  margin-bottom: 6px;
}
.footer-nav ul a {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.85rem;
}
.footer-nav ul a:hover {
  color: var(--color-white);
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: var(--space-sm);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.35);
}

/* --- Utility --- */
.text-center { text-align: center; }
.text-left { text-align: left; }
.mb-0 { margin-bottom: 0; }
.mb-xs { margin-bottom: var(--space-xs); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.max-w-prose { max-width: 680px; }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .screenshot-grid {
    columns: 2;
  }
  .testimonial-masonry {
    columns: 2;
  }
}

@media (max-width: 768px) {
  html { font-size: 16px; }

  h1 { font-size: 2.5rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.25rem; }

  .hero h1 { font-size: 2.75rem; }
  .hero .lead { font-size: 1.1rem; }

  .section { padding: var(--space-xl) 0; }
  .hero { padding: var(--space-xl) 0; min-height: auto; }

  .grid,
  .grid--3,
  .testimonial-grid,
  .pricing-grid,
  .process-steps,
  .stats-row {
    grid-template-columns: 1fr;
  }

  .screenshot-grid {
    columns: 1;
  }
  .testimonial-masonry {
    columns: 1;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  /* Nav mobile */
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-dark);
    flex-direction: column;
    padding: var(--space-md);
    gap: var(--space-sm);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
  .site-nav.active {
    display: flex;
  }
  .nav-toggle {
    display: block;
  }

  .testimonial-strip {
    flex-direction: column;
  }
  .testimonial-strip .testimonial-card {
    min-width: auto;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .pricing-card {
    padding: var(--space-md);
  }

  .btn-group {
    flex-direction: column;
    align-items: flex-start;
  }

  .pitch-table {
    font-size: 0.85rem;
  }
  .pitch-table th,
  .pitch-table td {
    padding: 10px;
  }
}
