:root {
  --bg: #111318;
  --bg-raised: #16181e;
  --bg-hover: #1a1d24;
  --border: #24272e;
  --border-light: #2e323a;
  --text: #e0ddd6;
  --text-secondary: #8a877f;
  --text-muted: #5c5a55;
  --accent: #c9a84c;
  --accent-dim: #8a7234;
  --teal: #5a9e9f;
  --teal-dim: #3a6b6c;

  /* Per-thesis accent colors */
  --cities-accent: #4a7a9e;
  --cities-accent-dim: #345872;
  --commerce-accent: #c9a84c;
  --commerce-accent-dim: #8a7234;
  --insurance-accent: #7a5a9c;
  --insurance-accent-dim: #573f70;
  --sme-accent: #5a9e6a;
  --sme-accent-dim: #3d6e4a;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  font-size: 17px;
  line-height: 1.75;
}

.container { max-width: 960px; margin: 0 auto; padding: 0 2rem; }

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

/* NAV */
nav { padding: 1.5rem 0; border-bottom: 1px solid var(--border); position: sticky; top: 0; background: var(--bg); z-index: 100; }
.nav-inner { display: flex; justify-content: space-between; align-items: center; }
.nav-logo { height: 36px; opacity: 0.92; cursor: pointer; }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a { color: var(--text-secondary); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
.nav-links a:hover { color: var(--text); text-decoration: none; }

/* INTRO */
.intro { padding: 6rem 0 4rem; border-bottom: 1px solid var(--border); }
.intro-label { font-family: 'IBM Plex Mono', monospace; font-size: 0.75rem; color: var(--text-muted); margin-bottom: 2rem; }
.intro h1 { font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 500; line-height: 1.25; color: var(--text); margin-bottom: 1.5rem; letter-spacing: -0.01em; }
.intro-body { max-width: 620px; color: var(--text-secondary); font-size: 1.05rem; line-height: 1.8; }

/* SHARED SECTION */
.section { padding: 4rem 0; border-bottom: 1px solid var(--border); }
.section-label { font-family: 'IBM Plex Mono', monospace; font-size: 0.7rem; color: var(--text-muted); letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 1rem; padding-left: 0.75rem; border-left: 2px solid var(--accent-dim); }
.section-desc { color: var(--text-secondary); max-width: 580px; margin-bottom: 2.5rem; font-size: 1rem; line-height: 1.75; }

/* THESIS CARDS on main page */
.thesis-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.thesis-card {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-bottom: 2px solid transparent;
  border-radius: 4px;
  padding: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: block;
}
.thesis-card:hover { border-color: var(--border-light); border-bottom-color: var(--accent-dim); background: var(--bg-hover); text-decoration: none; transform: translateY(-2px); }
.thesis-card-img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: top;
  border-radius: 3px 3px 0 0;
  margin: -1.5rem -1.5rem 1.25rem -1.5rem;
  width: calc(100% + 3rem);
  opacity: 0.85;
  transition: opacity 0.3s;
}
.thesis-card:hover .thesis-card-img { opacity: 1; }
.thesis-card h3 { font-size: 1.1rem; font-weight: 500; color: var(--text); margin-bottom: 0.4rem; }
.thesis-card .brief { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.55; }
.thesis-card .card-arrow { float: right; color: var(--text-muted); font-size: 0.85rem; margin-top: 2px; transition: color 0.2s; }
.thesis-card:hover .card-arrow { color: var(--accent); }

/* Per-card accent on hover */
.card-cities:hover { border-bottom-color: var(--cities-accent); }
.card-cities:hover .card-arrow { color: var(--cities-accent); }
.card-commerce:hover { border-bottom-color: var(--commerce-accent); }
.card-commerce:hover .card-arrow { color: var(--commerce-accent); }
.card-insurance:hover { border-bottom-color: var(--insurance-accent); }
.card-insurance:hover .card-arrow { color: var(--insurance-accent); }
.card-sme:hover { border-bottom-color: var(--sme-accent); }
.card-sme:hover .card-arrow { color: var(--sme-accent); }

.thesis-card .card-tag {
  display: inline-block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.6rem;
  padding: 0.15rem 0.45rem;
  border-radius: 2px;
  margin-top: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.tag-active { background: rgba(90,158,159,0.1); color: var(--teal); border: 1px solid rgba(90,158,159,0.2); }
.tag-early { background: rgba(255,255,255,0.03); color: var(--text-muted); border: 1px solid var(--border); }

/* SPRINTS */
.sprints-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.sprint-card { background: var(--bg-raised); border: 1px solid var(--border); border-radius: 4px; overflow: hidden; transition: all 0.3s ease; display: flex; flex-direction: column; }
.sprint-card:hover { border-color: var(--border-light); transform: translateY(-2px); }
.sprint-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; }
.sprint-body { padding: 1.25rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.sprint-tag { display: inline-block; font-family: 'IBM Plex Mono', monospace; font-size: 0.6rem; letter-spacing: 0.03em; text-transform: uppercase; padding: 0.2rem 0.5rem; border-radius: 2px; margin-bottom: 0.6rem; }
.stag-past { background: rgba(90,158,159,0.1); color: var(--teal); border: 1px solid rgba(90,158,159,0.2); }
.stag-upcoming { background: rgba(201,168,76,0.08); color: var(--accent); border: 1px solid rgba(201,168,76,0.15); }
.sprint-card h3 { font-size: 1.05rem; font-weight: 500; color: var(--text); margin-bottom: 0.25rem; }
.sprint-meta { font-family: 'IBM Plex Mono', monospace; font-size: 0.75rem; color: var(--text-muted); margin-bottom: 0.75rem; }
.sprint-desc { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.sprint-cta {
  display: inline-block;
  font-size: 0.82rem;
  color: var(--accent);
  padding: 0.4rem 1rem;
  border: 1px solid var(--accent-dim);
  border-radius: 3px;
  transition: all 0.2s;
  text-decoration: none;
  margin-top: auto;
  align-self: flex-start;
}
.sprint-cta:hover { background: rgba(201,168,76,0.08); border-color: var(--accent); text-decoration: none; }

/* CONTACT */
.contact-box { background: var(--bg-raised); border: 1px solid var(--border); border-radius: 4px; padding: 2rem; }
.contact-box p { color: var(--text-secondary); font-size: 0.9rem; margin-bottom: 1.5rem; max-width: 500px; }
.contact-methods { display: flex; gap: 1.5rem; flex-wrap: wrap; align-items: center; }
.contact-methods a.cta-btn {
  font-size: 0.85rem; color: var(--accent); padding: 0.5rem 1.25rem;
  border: 1px solid var(--accent-dim); border-radius: 3px; transition: all 0.2s; text-decoration: none;
}
.contact-methods a.cta-btn:hover { background: rgba(201,168,76,0.08); border-color: var(--accent); text-decoration: none; }
.contact-methods .or { color: var(--text-muted); font-size: 0.8rem; }
.contact-methods a.email-link { font-family: 'IBM Plex Mono', monospace; font-size: 0.85rem; color: var(--text-secondary); }

/* FOOTER */
footer { padding: 2rem 0; border-top: 1px solid var(--border); }
.footer-inner { display: flex; justify-content: space-between; align-items: center; }
.footer-inner span, .footer-inner a { font-size: 0.75rem; color: var(--text-muted); text-decoration: none; }

/* ============ PAGE TRANSITIONS ============ */
#mainPage {
  transition: opacity 0.3s ease, transform 0.3s ease;
}
#mainPage.fade-out {
  opacity: 0;
  transform: translateY(8px);
}

/* ============ THESIS PAGES ============ */
.thesis-page { display: none; padding-bottom: 4rem; opacity: 0; transform: translateY(8px); transition: opacity 0.35s ease, transform 0.35s ease; }
.thesis-page.active { display: block; }
.thesis-page.visible { opacity: 1; transform: translateY(0); }

.thesis-back {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.82rem; color: var(--text-secondary); text-decoration: none;
  padding: 1.5rem 0; transition: color 0.2s;
}
.thesis-back:hover { color: var(--text); text-decoration: none; }
.thesis-pdf-link {
  font-size: 0.82rem; color: var(--text-secondary); text-decoration: none; transition: color 0.2s;
}
.thesis-pdf-link:hover { color: var(--text); }

.thesis-page-header { padding-bottom: 2.5rem; }
.thesis-page-header h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 500; margin-bottom: 1rem; letter-spacing: -0.01em; }

.thesis-hypothesis {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 640px;
  margin-bottom: 1.5rem;
  font-style: italic;
}

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

.thesis-meta-item label {
  display: block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
}

.thesis-meta-item span {
  font-size: 0.9rem;
  color: var(--text);
}

.thesis-tensions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2rem 0;
}

.tension-box {
  padding: 1.25rem;
  border-radius: 3px;
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

.tension-box h4 {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.tension-capture {
  background: rgba(180,60,60,0.05);
  border: 1px solid rgba(180,60,60,0.12);
}

.tension-capture h4 { color: #b85c5c; }

.tension-exit {
  background: rgba(90,158,159,0.05);
  border: 1px solid rgba(90,158,159,0.12);
}

.tension-exit h4 { color: var(--teal); }

.thesis-open-note {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.thesis-page-body { padding-top: 2.5rem; }

.thesis-examples {
  margin-bottom: 2.5rem;
}

.thesis-examples h3 {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: 'IBM Plex Mono', monospace;
}

.example-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.example-chip {
  font-size: 0.82rem;
  padding: 0.4rem 0.85rem;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: 3px;
  color: var(--text-secondary);
}

.thesis-content { color: var(--text-secondary); line-height: 1.85; font-size: 0.95rem; }
.thesis-content p + p { margin-top: 1.25rem; }
.thesis-content h3 { color: var(--text); font-size: 1.1rem; font-weight: 500; margin: 2.5rem 0 1rem; display: flex; align-items: center; gap: 0.75rem; }
.thesis-content h3 .section-num { font-family: 'IBM Plex Mono', monospace; font-size: 0.7rem; color: var(--text-muted); }
.thesis-content img { max-width: 100%; border-radius: 4px; margin: 1.5rem 0; border: 1px solid var(--border); }

/* Pull quotes */
.thesis-content blockquote {
  border-left: 2px solid var(--teal-dim);
  padding: 0.75rem 0 0.75rem 1.25rem;
  margin: 1.75rem 0;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.65;
  font-style: normal;
}

/* Reading list cards */
.vc-reading-card {
  display: block;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 3px;
  background: var(--bg-raised);
  text-decoration: none;
  transition: border-color 0.2s;
  margin-bottom: 0.5rem;
}
.vc-reading-card:hover { border-color: var(--border-light); text-decoration: none; }
.vc-reading-card-title { font-size: 0.85rem; color: var(--text-secondary); display: block; margin-bottom: 0.15rem; }
.vc-reading-card:hover .vc-reading-card-title { color: var(--text); }
.vc-reading-card-meta { font-family: 'IBM Plex Mono', monospace; font-size: 0.68rem; color: var(--text-muted); }

/* ---- Flavor bar ---- */
.thesis-flavor-bar { height: 2px; margin-bottom: 2rem; }
.thesis-cities .thesis-flavor-bar { background: linear-gradient(90deg, var(--cities-accent), transparent); }
.thesis-commerce .thesis-flavor-bar { background: linear-gradient(90deg, var(--commerce-accent), transparent); }
.thesis-insurance .thesis-flavor-bar { background: linear-gradient(90deg, var(--insurance-accent), transparent); }
.thesis-sme .thesis-flavor-bar { background: linear-gradient(90deg, var(--sme-accent), transparent); }

/* Per-thesis blockquote accents */
.thesis-cities .thesis-content blockquote { border-left-color: var(--cities-accent-dim); }
.thesis-commerce .thesis-content blockquote { border-left-color: var(--commerce-accent-dim); }
.thesis-insurance .thesis-content blockquote { border-left-color: var(--insurance-accent-dim); }
.thesis-sme .thesis-content blockquote { border-left-color: var(--sme-accent-dim); }

/* Per-thesis section number accents */
.thesis-cities .thesis-content h3 .section-num { color: var(--cities-accent); }
.thesis-commerce .thesis-content h3 .section-num { color: var(--commerce-accent); }
.thesis-insurance .thesis-content h3 .section-num { color: var(--insurance-accent); }
.thesis-sme .thesis-content h3 .section-num { color: var(--sme-accent); }

/* Per-thesis rule accents */
.thesis-cities .thesis-rule { border-top-color: var(--cities-accent-dim); }
.thesis-commerce .thesis-rule { border-top-color: var(--commerce-accent-dim); }
.thesis-insurance .thesis-rule { border-top-color: var(--insurance-accent-dim); }
.thesis-sme .thesis-rule { border-top-color: var(--sme-accent-dim); }

/* Verifiable Cities header actions */
.vc-sidebar-header { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; margin-top: 0.5rem; }
.sidebar-box { padding: 1.25rem; border: 1px solid var(--border); border-radius: 4px; }
.sidebar-label { font-family: 'IBM Plex Mono', monospace; font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-muted); margin-bottom: 0.5rem; }
.sidebar-desc { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.55; margin-bottom: 0.75rem; }
.sidebar-btn { display: inline-block; text-align: center; padding: 0.6rem 1.25rem; border: 1px solid var(--border); border-radius: 3px; font-size: 0.8rem; color: var(--text-secondary); text-decoration: none; transition: all 0.2s; white-space: nowrap; }
.sidebar-btn:hover { border-color: var(--text-secondary); color: var(--text); }
.sidebar-btn-primary { background: var(--text); color: var(--bg); border-color: var(--text); }
.sidebar-btn-primary:hover { opacity: 0.85; color: var(--bg); }

/* Verifiable Cities specific */
.vc-hypotheses { padding-left: 1.25rem; margin: 1rem 0 1.5rem; }
.vc-hypotheses li { margin-bottom: 0.75rem; }
.vc-list { padding-left: 1.25rem; margin: 0.5rem 0 1rem; }
.vc-list li { margin-bottom: 0.35rem; }
.vc-link { color: var(--text); text-underline-offset: 3px; }
.vc-link:hover { opacity: 0.75; }
.vc-readings-intro { font-style: italic; margin-bottom: 1.5rem; }
.vc-readings { display: flex; flex-direction: column; gap: 1.5rem; }
.vc-reading-group h4 { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-muted); font-family: 'IBM Plex Mono', monospace; margin-bottom: 0.5rem; font-weight: 400; }
.vc-reading-group ul { padding-left: 1.25rem; }
.vc-reading-group li { margin-bottom: 0.3rem; }
.vc-reading-group a { color: var(--text-secondary); text-decoration: underline; text-underline-offset: 3px; }
.vc-reading-group a:hover { color: var(--text); }

/* Unique typography per page */
.thesis-cities .thesis-content { font-family: 'Libre Baskerville', serif; font-size: 0.9rem; }
.thesis-commerce .thesis-content { font-family: 'Space Grotesk', sans-serif; font-size: 0.92rem; }
.thesis-insurance .thesis-content { font-family: 'Fraunces', serif; font-size: 0.92rem; }
.thesis-sme .thesis-content { font-family: 'DM Sans', sans-serif; font-size: 0.92rem; }

/* Commerce hypotheses & work */
.commerce-hypotheses { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 1.5rem; }
.commerce-hypothesis { display: flex; gap: 1.25rem; align-items: flex-start; }
.commerce-hyp-num { font-family: 'IBM Plex Mono', monospace; font-size: 0.75rem; color: var(--text-muted); padding-top: 0.2rem; flex-shrink: 0; width: 1.5rem; }
.commerce-work { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 1.5rem; }
.commerce-work-item { padding: 1.25rem; border: 1px solid var(--border); border-radius: 4px; background: var(--bg-raised); }
.commerce-work-item h4 { font-size: 0.95rem; font-weight: 500; color: var(--text); margin-bottom: 0.5rem; }
.commerce-work-item p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 0.75rem; }
.commerce-links-label { font-size: 0.75rem !important; color: var(--text-muted) !important; margin-bottom: 0.25rem !important; }
.commerce-links { display: flex; flex-wrap: wrap; gap: 0.5rem 1rem; margin-bottom: 0.75rem; }
.commerce-links a { font-size: 0.82rem; color: var(--accent); text-decoration: none; }
.commerce-links a:hover { text-decoration: underline; }

/* Insurance areas */
.thesis-rule { border: none; border-top: 1px solid var(--border); margin: 2.5rem 0; }
.insurance-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-top: 1.5rem; }
.insurance-area { padding: 1.5rem; border: 1px solid var(--border); border-radius: 4px; background: var(--bg-raised); transition: border-color 0.2s; }
.insurance-area:hover { border-color: var(--border-light); }
.insurance-area h4 { font-size: 0.92rem; font-weight: 500; color: var(--text); margin-bottom: 0.6rem; }
.insurance-area p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.65; }

/* Per-thesis area card top accent */
.thesis-insurance .insurance-area { border-top: 2px solid var(--insurance-accent-dim); }
.thesis-sme .insurance-area { border-top: 2px solid var(--sme-accent-dim); }

/* Interactive pieces */
.signal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.signal-item {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 1rem;
  text-align: center;
  transition: border-color 0.3s;
}

.signal-item:hover { border-color: var(--border-light); }

.signal-item .signal-val {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.5rem;
  font-weight: 500;
  color: #6a8acc;
  display: block;
  margin-bottom: 0.3rem;
}

.signal-item .signal-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.flow-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.flow-step:last-child { border-bottom: none; }

.flow-num {
  font-family: 'Fraunces', serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: #7a5a9c;
  line-height: 1;
  min-width: 40px;
}

.flow-step p { font-size: 0.88rem; color: var(--text-secondary); }
.flow-step strong { color: var(--text); }

.process-diagram {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  margin: 1.5rem 0;
}

.process-node {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 0.85rem;
  font-size: 0.75rem;
  color: var(--text-secondary);
  text-align: center;
  position: relative;
}

.process-node::after {
  content: '→';
  position: absolute;
  right: -0.65rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 0.75rem;
}

.process-node:last-child::after { content: none; }

.commerce-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.85rem;
}

.commerce-table th {
  text-align: left;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  padding: 0.75rem;
  border-bottom: 1px solid var(--border-light);
}

.commerce-table td {
  padding: 0.75rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
}

.commerce-table td:first-child { color: var(--text); font-weight: 500; }

@media (max-width: 700px) {
  body { font-size: 16px; }
  .container { padding: 0 1.25rem; }
  .nav-links { display: none; }

  /* Main page */
  .intro { padding: 3.5rem 0 2.5rem; }
  .intro h1 { font-size: 1.6rem; }
  .intro-body { font-size: 0.95rem; }
  .section { padding: 2.5rem 0; }
  .thesis-grid, .sprints-grid { grid-template-columns: 1fr; }
  .thesis-card:hover { transform: none; }
  .sprint-card:hover { transform: none; }

  /* Thesis pages */
  .thesis-page-header h1 { font-size: 1.5rem; }
  .thesis-hypothesis { font-size: 0.95rem; }
  .thesis-content { font-size: 0.9rem; }
  .thesis-content h3 { font-size: 1rem; margin: 2rem 0 0.75rem; }
  .thesis-content blockquote { font-size: 0.82rem; }
  .thesis-meta-grid { grid-template-columns: 1fr 1fr; }
  .signal-grid { grid-template-columns: 1fr; }
  .process-diagram { grid-template-columns: 1fr 1fr; }
  .thesis-tensions { grid-template-columns: 1fr; }
  .insurance-grid { grid-template-columns: 1fr; }
  .commerce-work { grid-template-columns: 1fr; }
  .commerce-hypothesis { flex-direction: column; gap: 0.5rem; }
  .commerce-hyp-num { width: auto; }

  /* Contact & sidebar */
  .contact-methods { flex-direction: column; align-items: flex-start; }
  .vc-sidebar-header { flex-direction: column; align-items: flex-start; }

  /* Footer */
  .footer-inner { flex-direction: column; gap: 0.5rem; text-align: center; }
}
