/* ==========================================================================
   AMAZON GURUS — SITE STYLESHEET
   Shared across all pages. Organised top to bottom:
   1. Variables & reset   2. Type & layout helpers   3. Buttons
   4. Header & nav        5. Hero                     6. Trust/stats
   7. Section blocks      8. Services                 9. Why grid
   10. Steps              11. Results/case cards       12. Final CTA
   13. Footer             14. Misc page (stub) styles  15. Responsive
   ========================================================================== */

/* ---------- 1. Variables & reset ---------- */
:root {
  --navy: #101B2D;
  --navy-2: #16233A;
  --navy-3: #1E2E4A;
  --paper: #FAF6EF;
  --paper-raised: #F1EAD9;
  --line: rgba(16, 27, 45, 0.12);
  --line-dark: rgba(250, 246, 239, 0.14);
  --gold: #B98B2E;
  --gold-dark: #96701F;
  --eucalyptus: #3F5D52;
  --eucalyptus-dark: #2F4740;
  --ink: #101B2D;
  --slate: #5B6472;
  --slate-light: rgba(250, 246, 239, 0.68);
  --paper-dim: rgba(250, 246, 239, 0.9);

  --font-head: 'Plus Jakarta Sans', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --font-mono: 'JetBrains Mono', 'SFMono-Regular', Menlo, monospace;

  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.15;
  margin: 0;
  letter-spacing: -0.015em;
}
p { margin: 0; }
button { font-family: inherit; cursor: pointer; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin: 0 0 14px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
  display: inline-block;
}
.section--dark .eyebrow { color: var(--gold); border-bottom-color: var(--line-dark); }

.section-head {
  max-width: 640px;
  margin: 0 0 56px;
}
.section-head h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  margin-bottom: 16px;
}
.section-head > p:not(.eyebrow) {
  color: var(--slate);
  font-size: 1.05rem;
}
.section--dark .section-head p { color: var(--slate-light); }

/* ---------- 3. Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  border-radius: 8px;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.1s ease, box-shadow 0.15s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 6px 16px -6px rgba(185, 139, 46, 0.45);
}
.btn-primary:hover {
  background: var(--gold-dark);
  box-shadow: 0 8px 20px -6px rgba(185, 139, 46, 0.55);
  transform: translateY(-1px);
}
.btn-primary:active { transform: translateY(1px); box-shadow: none; }
.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-secondary:hover { border-color: var(--ink); }
.section--dark .btn-secondary,
.final-cta .btn-secondary {
  color: var(--paper);
  border-color: var(--line-dark);
}
.section--dark .btn-secondary:hover,
.final-cta .btn-secondary:hover { border-color: var(--paper); }
.btn-arrow { flex-shrink: 0; }

/* ---------- 4. Header & nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 239, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--ink);
  white-space: nowrap;
  flex-shrink: 0;
}
.logo-mark { flex-shrink: 0; }

nav[aria-label="Primary"] { display: flex; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links > li > a:not(.btn) {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
}
.nav-links > li > a:not(.btn):hover { color: var(--gold-dark); }
.nav-cta { padding: 11px 22px; font-size: 0.9rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 2px;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- 5. Hero ---------- */
.hero {
  padding: 88px 0 96px;
  border-bottom: 1px solid var(--line);
}
.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(2.1rem, 4vw, 3.1rem);
  margin-bottom: 22px;
}
.hero .lead {
  font-size: 1.12rem;
  color: var(--slate);
  max-width: 520px;
  margin-bottom: 36px;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 20px;
}
.hero-note {
  font-size: 0.85rem;
  color: var(--slate);
}

.hero-visual { display: flex; justify-content: center; }
.flag-icon {
  width: 26px;
  height: 18px;
  flex-shrink: 0;
  display: block;
  border-radius: 3px;
  overflow: hidden;
  border: 1px solid var(--line);
}

/* Seller Central results mockup (illustrative — not a live account) */
.sc-mock {
  width: 100%;
  max-width: 380px;
  background: #FFFFFF;
  border-radius: 14px;
  border: 1px solid rgba(16, 27, 45, 0.06);
  box-shadow: 0 28px 48px -22px rgba(16, 27, 45, 0.28), 0 4px 14px rgba(16, 27, 45, 0.06);
  padding: 22px 22px 18px;
}
.sc-mock-bar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.sc-mock-flag {
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid #E3E0D8;
  border-radius: 6px;
  padding: 4px 8px;
}
.sc-mock-flag .flag-icon { width: 20px; height: 14px; border-radius: 2px; }
.sc-mock-flag svg.sc-chevron { width: 9px; height: 9px; color: #9A9FA6; }
.sc-mock-brand { font-family: var(--font-body); font-weight: 700; font-size: 0.95rem; color: #14171A; letter-spacing: -0.01em; }
.sc-mock-expand { width: 15px; height: 15px; color: #ABAFB6; }

.sc-mock-assistant {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.84rem;
  color: #3A3F46;
  font-weight: 500;
  padding-bottom: 13px;
  margin-bottom: 13px;
  border-bottom: 1px solid #ECEAE4;
}
.sc-mock-spark { color: #B98B2E; }
.sc-mock-beta {
  font-size: 0.64rem;
  color: #8A8F98;
  border: 1px solid #DAD7CF;
  border-radius: 10px;
  padding: 1px 7px;
}
.sc-mock-chev-right { width: 8px; height: 8px; color: #ABAFB6; margin-left: auto; }

.sc-mock-tabs {
  display: flex;
  gap: 20px;
  font-family: var(--font-body);
  font-size: 0.84rem;
  font-weight: 600;
  color: #8A8F98;
  border-bottom: 1px solid #ECEAE4;
  margin-bottom: 16px;
}
.sc-mock-tab { padding-bottom: 10px; }
.sc-mock-tab.is-active { color: #007185; border-bottom: 2px solid #007185; }

.sc-mock-controls { display: flex; gap: 10px; margin-bottom: 18px; }
.sc-mock-select {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 500;
  color: #3A3F46;
  border: 1px solid #E3E0D8;
  border-radius: 6px;
  padding: 6px 9px;
}
.sc-mock-select svg { width: 8px; height: 8px; color: #ABAFB6; }

.sc-mock-figures { display: flex; align-items: baseline; gap: 6px; }
.sc-mock-value { font-family: var(--font-head); font-weight: 800; font-size: 1.9rem; color: #14171A; letter-spacing: -0.01em; }
.sc-mock-value span { font-family: var(--font-body); font-weight: 600; font-size: 0.85rem; color: #6B7078; }
.sc-mock-period { font-family: var(--font-body); font-size: 0.78rem; color: #8A8F98; margin-bottom: 14px; }

.sc-mock-change {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  color: #1A7F4B;
  margin-bottom: 18px;
}
.sc-mock-change svg { width: 10px; height: 10px; }
.sc-mock-change span { font-weight: 400; color: #8A8F98; }

.sc-mock-chart svg { display: block; width: 100%; height: auto; }
.sc-mock-months {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-body);
  font-size: 0.66rem;
  color: #ABAFB6;
  margin-top: 8px;
  padding: 0 1px;
}
.sc-mock-updated {
  text-align: right;
  font-family: var(--font-body);
  font-size: 0.66rem;
  color: #B7BBC1;
  margin-top: 12px;
}
.sc-mock-caption {
  text-align: center;
  font-size: 0.78rem;
  color: var(--slate);
  margin-top: 16px;
}

/* ---------- Marketplace coverage strip ---------- */
.marketplaces { padding: 48px 0; border-bottom: 1px solid var(--line); text-align: center; }
.marketplaces-flags {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin: 26px 0 20px;
}
.marketplaces-flags .flag-icon {
  width: 72px;
  height: 48px;
  border-radius: 6px;
  box-shadow: 0 4px 10px -4px rgba(16, 27, 45, 0.2);
}
.marketplaces-note { font-size: 0.9rem; color: var(--slate); }

/* ---------- 6. Trust / stats ---------- */
.trust { padding: 56px 0; border-bottom: 1px solid var(--line); }
.trust-label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--slate);
  text-align: center;
  margin-bottom: 28px;
}
.logo-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}
.logo-slot {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 88px;
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 16px 18px;
  background: var(--paper-raised);
  transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}
.logo-slot:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 14px 24px -16px rgba(16, 27, 45, 0.25);
}
.logo-slot img {
  max-height: 34px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  border-top: 1px solid var(--line);
  padding-top: 40px;
}
.stat-row--plain {
  border-top: none;
  padding-top: 0;
  max-width: 480px;
  margin: 0 auto;
  grid-template-columns: repeat(2, 1fr);
}
.stat-block {
  text-align: center;
  position: relative;
  padding: 12px 8px 18px;
  border-radius: 2px;
  transition: transform 0.18s ease, background 0.18s ease;
}
.stat-block:hover,
.stat-block:focus-visible {
  background: var(--paper-raised);
  transform: translateY(-3px);
}
.stat-block::after {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  margin: 12px auto 0;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}
.stat-block:hover::after,
.stat-block:focus-visible::after,
.stat-block.is-counted::after {
  transform: scaleX(1);
}
.stat-value {
  font-family: var(--font-head);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--gold-dark);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--slate);
  margin-top: 6px;
}
.placeholder-flag {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold-dark);
  border: 1px solid var(--line);
  padding: 3px 7px;
  border-radius: 2px;
}

/* ---------- 7. Section blocks ---------- */
.section { padding: 96px 0; }
.section--dark {
  background: var(--navy);
  color: var(--paper);
}
.section--dark h2, .section--dark h3 { color: var(--paper); }
.section--raised {
  background: var(--paper-raised);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

/* ---------- 8. Services ---------- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--paper);
  border-radius: 10px;
  box-shadow: 0 1px 3px rgba(16, 27, 45, 0.06);
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  position: relative;
  z-index: 1;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 34px -18px rgba(16, 27, 45, 0.24);
  z-index: 2;
}
.service-icon {
  width: 56px;
  height: 56px;
  padding: 14px;
  box-sizing: border-box;
  border-radius: 8px;
  margin-bottom: 24px;
}
.service-card:nth-child(odd) .service-icon { background: var(--navy); color: var(--gold); }
.service-card:nth-child(even) .service-icon { background: var(--gold); color: var(--navy); }
.service-card h3 { font-size: 1.15rem; margin-bottom: 12px; }
.service-card p { color: var(--slate); font-size: 0.95rem; flex-grow: 1; margin-bottom: 20px; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.service-link svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  transition: transform 0.15s ease;
}
.service-link:hover { color: var(--gold-dark); }
.service-link:hover svg { transform: translate(2px, -2px); }

/* ---------- 9. Why grid ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 48px;
}
.why-card { border-top: 2px solid var(--gold); padding-top: 20px; }
.why-card h3 { font-size: 1.08rem; margin-bottom: 10px; }
.why-card p { color: var(--slate-light); font-size: 0.92rem; }

/* ---------- 10. Steps ---------- */
.steps {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.step { flex: 1; min-width: 0; }
.step-arrow {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  color: var(--gold);
  margin-top: 12px;
}
.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--navy);
  background: var(--gold);
  margin-bottom: 20px;
}
.step h3 { font-size: 1.2rem; margin-bottom: 10px; }
.step p { color: var(--slate); font-size: 0.95rem; }

/* ---------- 11. Results / case cards ---------- */
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.case-card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
}
.case-logo {
  height: 26px;
  max-width: 60%;
  width: auto;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 28px;
}
.case-stat-big {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 2.4rem;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.case-stat-tag {
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 700;
  margin-bottom: 22px;
}
.case-text { font-size: 0.95rem; color: var(--slate); line-height: 1.6; margin-bottom: 24px; flex-grow: 1; }
.case-meta {
  border-top: 1px solid var(--line);
  padding-top: 14px;
}
.case-time { font-size: 0.82rem; color: var(--slate); }

/* ---------- 12. Final CTA ---------- */
.final-cta { text-align: center; }
.final-cta h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  max-width: 680px;
  margin: 0 auto 16px;
}
.final-cta p {
  color: var(--slate-light);
  max-width: 520px;
  margin: 0 auto 36px;
}
.final-cta .hero-ctas { justify-content: center; margin-bottom: 0; }

/* ---------- 13. Footer ---------- */
.site-footer {
  background: var(--navy);
  color: var(--slate-light);
  padding: 72px 0 28px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line-dark);
}
.footer-brand p { margin-top: 16px; font-size: 0.9rem; max-width: 320px; }
.footer-col h4 {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--paper);
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 0.9rem; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  font-size: 0.82rem;
}
.footer-bottom a { margin: 0; }
.footer-bottom a:hover { color: var(--gold); }

/* ---------- 14. Misc page (stub) styles ---------- */
.stub-hero {
  padding: 120px 0;
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.stub-hero .eyebrow { display: block; text-align: center; }
.stub-hero h1 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin-bottom: 18px; }
.stub-hero p { color: var(--slate); max-width: 480px; margin: 0 auto 32px; }
.stub-hero .hero-ctas { justify-content: center; }

.calendly-slot {
  border: 1px dashed var(--line);
  border-radius: 2px;
  background: var(--paper-raised);
  padding: 60px 24px;
  text-align: center;
  color: var(--slate);
  font-family: var(--font-mono);
  font-size: 0.85rem;
}

/* ---------- About page: founder feature ---------- */
.founder {
  display: flex;
  align-items: center;
  gap: 48px;
}
.founder-photo {
  width: 168px;
  height: 168px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
}
.founder-copy { max-width: 560px; }
.founder-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--ink);
  margin-bottom: 2px;
}
.founder-role {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--gold-dark);
  margin-bottom: 16px;
}
.founder-bio { color: var(--slate); font-size: 1rem; line-height: 1.6; }

/* ---------- Services page: category cards ---------- */
.service-grid--categories .service-card:nth-child(3n+1) .service-icon { background: var(--navy); color: var(--gold); }
.service-grid--categories .service-card:nth-child(3n+2) .service-icon { background: var(--gold); color: var(--navy); }
.service-grid--categories .service-card:nth-child(3n+3) .service-icon { background: var(--eucalyptus); color: var(--paper); }
.service-included {
  list-style: none;
  margin: 0;
  padding: 16px 0 0;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.service-included li {
  font-size: 0.86rem;
  color: var(--slate);
  padding-left: 20px;
  position: relative;
}
.service-included li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold-dark);
  font-weight: 700;
  font-size: 0.8rem;
}
.service-grid--categories .service-card:nth-child(3n+3) .service-included li::before { color: var(--eucalyptus); }

/* ---------- 15. Responsive ---------- */
@media (max-width: 960px) {
  .hero .container { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { flex-direction: column; gap: 36px; }
  .step-arrow { display: none; }
  .results-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .logo-row { grid-template-columns: repeat(4, 1fr); }
  .stat-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .container { padding: 0 20px; }
  .site-header .container { height: 68px; }
  nav[aria-label="Primary"] {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--paper);
    transform: translateX(100%);
    transition: transform 0.25s ease;
    z-index: 90;
  }
  nav[aria-label="Primary"].is-open { transform: translateX(0); }
  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 32px 24px;
    height: 100%;
    overflow-y: auto;
  }
  .nav-links > li { width: 100%; border-bottom: 1px solid var(--line); }
  .nav-links > li > a:not(.btn) { display: block; padding: 18px 0; }
  .nav-cta { margin-top: 20px; width: 100%; justify-content: center; }
  .nav-toggle { display: flex; }

  .hero { padding: 56px 0 64px; }
  .section { padding: 64px 0; }
  .section-head { margin-bottom: 40px; }
  .service-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .logo-row { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .stat-row { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; align-items: flex-start; }
  .stub-hero { padding: 80px 0; }
  .founder { flex-direction: column; text-align: center; gap: 24px; }
  .founder-copy { max-width: 100%; }
}
