/* PeerScholars — Corporate Blue & Green Theme */

:root {
  --blue-900: #002744;
  --blue-800: #003D6B;
  --blue-700: #0056A4;
  --blue-600: #0066CC;
  --blue-500: #0071CE;
  --blue-100: #E3F0FA;
  --blue-50: #F4F9FD;
  --green-700: #1A6B42;
  --green-600: #2E9B63;
  --green-500: #3DBE7A;
  --green-100: #E6F5ED;
  --green-50: #F2FAF6;
  --gray-50: #F7F8FA;
  --gray-100: #EEF1F4;
  --gray-200: #DDE2E8;
  --gray-400: #9AA3AD;
  --gray-600: #5C6370;
  --gray-900: #1A2332;
  --white: #FFFFFF;
  --text: #3D4550;
  --text-light: #5C6370;
  --text-dark: #1A2332;
  --shadow: rgba(26, 35, 50, 0.06);
  --shadow-md: rgba(26, 35, 50, 0.1);
  --radius: 8px;
  --radius-sm: 6px;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--gray-50);
  line-height: 1.6;
  font-size: 0.9375rem;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}
main { flex: 1; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { width: min(1200px, 94vw); margin-inline: auto; }

h1, h2, h3, h4 {
  color: var(--text-dark);
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 800; }
h2 { font-size: clamp(1.35rem, 3vw, 1.875rem); }
h3 { font-size: 1.0625rem; font-weight: 600; }

.eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue-600);
  margin-bottom: 0.5rem;
}

.section { padding: 3.5rem 0; }
.section-alt { background: var(--white); border-top: 1px solid var(--gray-100); border-bottom: 1px solid var(--gray-100); }
.section-header { text-align: center; margin-bottom: 2.25rem; max-width: 640px; margin-inline: auto; }
.section-desc { color: var(--text-light); margin-top: 0.625rem; font-size: 0.9375rem; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6875rem 1.375rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.875rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, box-shadow 0.15s;
  font-family: var(--font);
}
.btn:hover { box-shadow: 0 2px 8px var(--shadow-md); }
.btn-primary { background: var(--blue-600); color: var(--white); }
.btn-primary:hover { background: var(--blue-700); }
.btn-secondary { background: var(--white); color: var(--blue-700); border-color: var(--gray-200); }
.btn-secondary:hover { border-color: var(--blue-600); background: var(--blue-50); }
.btn-green { background: var(--green-600); color: var(--white); }
.btn-green:hover { background: var(--green-700); }
.btn-small { padding: 0.4375rem 1rem; font-size: 0.8125rem; }
.btn-full { width: 100%; }

/* Header — corporate style */
.top-bar {
  background: var(--blue-800);
  color: rgba(255,255,255,0.9);
  font-size: 0.75rem;
  padding: 0.4375rem 0;
  text-align: center;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: 0 1px 3px var(--shadow);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem 0;
  gap: 1rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-weight: 800;
  font-size: 1.125rem;
  color: var(--blue-800);
  flex-shrink: 0;
  letter-spacing: -0.03em;
}
.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--blue-600);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.625rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0;
}
.nav-center {
  display: flex;
  align-items: center;
  gap: 1.375rem;
  flex-wrap: wrap;
}
.nav-center a {
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--text);
  transition: color 0.15s;
}
.nav-center a:hover, .nav-center a.active { color: var(--blue-600); }
.nav-right { display: flex; align-items: center; gap: 0.5rem; flex-shrink: 0; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  width: 22px; height: 2px;
  background: var(--text-dark);
  border-radius: 1px;
  transition: transform 0.3s, opacity 0.3s;
}

/* Page hero */
.page-hero {
  padding: 2.75rem 0 2.25rem;
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
}
.page-hero.compact { padding: 2rem 0 1.5rem; }
.page-hero h1 { margin-bottom: 0.625rem; }
.page-hero p { color: var(--text-light); font-size: 1rem; max-width: 600px; }
.page-hero.center { text-align: center; }
.page-hero.center p { margin-inline: auto; }

/* Cards */
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid var(--gray-200);
  transition: box-shadow 0.15s, border-color 0.15s;
}
.card:hover { box-shadow: 0 4px 12px var(--shadow); border-color: var(--gray-200); }
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}

/* Reviews */
.reviews-featured { margin-bottom: 1.5rem; }
.review-featured-card {
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  padding: 2rem;
  text-align: center;
  max-width: 780px;
  margin-inline: auto;
  border-radius: var(--radius);
}
.review-featured-card blockquote {
  font-size: 1.0625rem;
  color: var(--text-dark);
  line-height: 1.7;
}
.stars { color: #F59E0B; letter-spacing: 1px; margin-bottom: 0.625rem; font-size: 0.875rem; }
.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.review-featured-card .review-author { justify-content: center; }
.author-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.75rem;
  color: var(--white);
}
.avatar-blue { background: var(--blue-600); }
.avatar-green { background: var(--green-600); }
.review-author cite { font-style: normal; font-weight: 600; display: block; font-size: 0.875rem; }
.review-author span { font-size: 0.8125rem; color: var(--text-light); }
.review-card blockquote { font-size: 0.875rem; margin-bottom: 1rem; line-height: 1.65; color: var(--text); }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.25rem; }
.step {
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
}
.step-num {
  width: 36px; height: 36px;
  margin-bottom: 0.875rem;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--white);
}
.step-num.blue { background: var(--blue-600); }
.step-num.green { background: var(--green-600); }
.step p { color: var(--text-light); font-size: 0.875rem; margin-top: 0.375rem; }

/* Demo screen */
.demo-screen {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  box-shadow: 0 4px 16px var(--shadow);
}
.demo-topbar {
  background: var(--blue-800);
  padding: 0.625rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.375rem;
}
.demo-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.35); }
.demo-body { padding: 1.25rem; }
.demo-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0.875rem;
  border-radius: var(--radius-sm);
  margin-bottom: 0.5rem;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
}
.demo-row.highlight { background: var(--green-50); border-color: var(--green-100); }
.demo-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--blue-600);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.6875rem;
  color: var(--white);
  flex-shrink: 0;
}
.demo-label { font-size: 0.75rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.04em; font-weight: 500; }
.demo-value { font-weight: 600; font-size: 0.875rem; color: var(--text-dark); }

/* Comparison table */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
}
.compare-table th, .compare-table td {
  padding: 0.875rem 1.125rem;
  text-align: left;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.875rem;
}
.compare-table th { background: var(--blue-800); color: var(--white); font-weight: 600; }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:nth-child(even) td { background: var(--gray-50); }
.compare-table .yes { color: var(--green-700); font-weight: 600; }
.compare-table .no { color: var(--gray-400); }

/* Pricing */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}
.pricing-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  text-align: center;
  border: 1px solid var(--gray-200);
  position: relative;
}
.pricing-card.featured {
  border-color: var(--blue-600);
  border-width: 2px;
  box-shadow: 0 4px 16px var(--shadow-md);
}
.pricing-badge {
  position: absolute;
  top: -11px; left: 50%;
  transform: translateX(-50%);
  background: var(--green-600);
  color: var(--white);
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 0.25rem 0.875rem;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.pricing-amount {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.03em;
}
.pricing-amount span { font-size: 0.9375rem; color: var(--text-light); font-weight: 500; }
.pricing-card ul { text-align: left; margin-top: 1rem; }
.pricing-card li {
  font-size: 0.8125rem;
  padding: 0.3125rem 0 0.3125rem 1.125rem;
  position: relative;
  color: var(--text);
}
.pricing-card li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.625rem;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green-600);
}

/* Dashboard */
.dashboard-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1.25rem;
  min-height: 480px;
}
.dashboard-sidebar {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem;
  border: 1px solid var(--gray-200);
}
.dashboard-sidebar h3 {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
  margin-bottom: 0.75rem;
  font-weight: 700;
}
.dashboard-nav li a {
  display: block;
  padding: 0.5625rem 0.75rem;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 0.875rem;
  margin-bottom: 0.125rem;
  color: var(--text);
  transition: background 0.15s, color 0.15s;
}
.dashboard-nav li a:hover, .dashboard-nav li a.active {
  background: var(--blue-50);
  color: var(--blue-700);
}
.dashboard-main { display: flex; flex-direction: column; gap: 1rem; }
.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 0.875rem;
}
.stat-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.125rem;
  border: 1px solid var(--gray-200);
  border-left: 3px solid var(--blue-600);
}
.stat-card.green { border-left-color: var(--green-600); }
.stat-card .num { font-size: 1.5rem; font-weight: 800; color: var(--text-dark); letter-spacing: -0.02em; }
.stat-card .lbl { font-size: 0.75rem; color: var(--text-light); margin-top: 0.125rem; }
.progress-bar-wrap {
  background: var(--gray-100);
  border-radius: 4px;
  height: 8px;
  overflow: hidden;
  margin-top: 0.4375rem;
}
.progress-bar {
  height: 100%;
  border-radius: 4px;
  background: var(--green-600);
}
.session-list li {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.875rem;
}
.session-list li:last-child { border-bottom: none; }
.badge {
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 0.1875rem 0.5625rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.badge-green { background: var(--green-100); color: var(--green-700); }
.badge-blue { background: var(--blue-100); color: var(--blue-700); }

/* Forms */
.form-page { max-width: 520px; margin-inline: auto; }
.form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--gray-200);
  box-shadow: 0 2px 8px var(--shadow);
}
.form-row { margin-bottom: 1rem; }
.form-row label {
  display: block;
  font-weight: 600;
  font-size: 0.8125rem;
  margin-bottom: 0.3125rem;
  color: var(--text-dark);
}
.form-row input, .form-row select, .form-row textarea {
  width: 100%;
  padding: 0.6875rem 0.875rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 0.9375rem;
  background: var(--white);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none;
  border-color: var(--blue-600);
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.12);
}
.form-row.half { display: grid; grid-template-columns: 1fr 1fr; gap: 0.875rem; }
.form-note {
  text-align: center;
  margin-top: 1rem;
  padding: 0.75rem;
  background: var(--green-50);
  border: 1px solid var(--green-100);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--green-700);
}
.form-divider {
  text-align: center;
  margin: 1.25rem 0;
  color: var(--text-light);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* CTA banner */
.cta-banner {
  background: var(--blue-800);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  color: var(--white);
}
.cta-banner h2 { color: var(--white); margin-bottom: 0.625rem; }
.cta-banner p { color: rgba(255,255,255,0.85); margin-bottom: 1.25rem; max-width: 480px; margin-inline: auto; font-size: 0.9375rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }
.cta-banner .btn-secondary { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.4); }
.cta-banner .btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

/* Feature mark — clean, no emoji */
.feature-icon {
  width: 40px; height: 4px;
  border-radius: 2px;
  margin-bottom: 1rem;
}
.icon-blue { background: var(--blue-600); }
.icon-green { background: var(--green-600); }

/* Problem / solution */
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  align-items: start;
}
.problem-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  border: 1px solid var(--gray-200);
  border-left: 3px solid var(--gray-400);
}
.solution-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  border: 1px solid var(--gray-200);
  border-left: 3px solid var(--green-600);
}
.problem-box h3, .solution-box h3 { margin-bottom: 0.625rem; }
.problem-box p, .solution-box p { color: var(--text); font-size: 0.9375rem; }

/* Footer */
.site-footer {
  background: var(--blue-900);
  color: rgba(255,255,255,0.75);
  padding: 2.5rem 0 0;
  margin-top: auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
}
.footer-brand .logo { color: var(--white); margin-bottom: 0.625rem; }
.footer-brand .logo-icon { background: var(--blue-600); }
.footer-brand p { font-size: 0.8125rem; max-width: 260px; line-height: 1.6; }
.footer-links h4 {
  color: var(--white);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
  font-weight: 700;
}
.footer-links a { font-size: 0.8125rem; display: block; margin-bottom: 0.375rem; transition: color 0.15s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1rem 0;
  text-align: center;
  font-size: 0.75rem;
}

/* Home hero */
.home-hero {
  padding: 3rem 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
}
.home-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
.home-hero-text { color: var(--text-light); font-size: 1rem; margin: 0.875rem 0 1.5rem; line-height: 1.7; }
.home-hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 1.5rem; }
.hero-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.pill {
  padding: 0.3125rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid var(--gray-200);
  background: var(--gray-50);
  color: var(--text);
}
.pill-blue { background: var(--blue-50); border-color: var(--blue-100); color: var(--blue-700); }
.pill-green { background: var(--green-50); border-color: var(--green-100); color: var(--green-700); }

/* USP */
.usp-banner {
  background: var(--blue-800);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  margin-bottom: 2rem;
  color: var(--white);
}
.usp-banner .eyebrow { color: rgba(255,255,255,0.7); }
.usp-banner h2 { color: var(--white); margin-bottom: 0.5rem; }
.usp-banner p { color: rgba(255,255,255,0.88); font-size: 0.9375rem; max-width: 600px; margin-inline: auto; }
.usp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.125rem;
}
.usp-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid var(--gray-200);
  transition: box-shadow 0.15s;
}
.usp-card:hover { box-shadow: 0 4px 12px var(--shadow); }
.usp-badge {
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.1875rem 0.5625rem;
  border-radius: var(--radius-sm);
  background: var(--green-100);
  color: var(--green-700);
  margin-bottom: 0.625rem;
}
.usp-card h3 { margin-bottom: 0.375rem; font-size: 1rem; }
.usp-card p { color: var(--text-light); font-size: 0.875rem; line-height: 1.65; }
.usp-vs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.usp-vs-item {
  text-align: center;
  padding: 1.25rem 1rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--gray-200);
}
.usp-vs-item strong {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-light);
  margin-bottom: 0.3125rem;
  font-weight: 700;
}
.usp-vs-item span { font-weight: 600; font-size: 0.875rem; color: var(--text-dark); }
.usp-vs-item.us {
  background: var(--blue-50);
  border: 2px solid var(--blue-600);
}
.usp-vs-item.us strong { color: var(--blue-700); }

.profile-chip {
  margin-top: 1.5rem;
  padding: 0.875rem;
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  border-radius: var(--radius-sm);
}
.profile-chip p { font-size: 0.8125rem; }
.profile-chip .name { font-weight: 700; color: var(--text-dark); margin-top: 0.125rem; }

/* Founder page */
.founder-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 1.5rem;
  align-items: start;
}
.founder-sidebar { text-align: center; padding: 2rem 1.5rem; }
.founder-avatar {
  width: 88px; height: 88px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: var(--blue-600);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  font-weight: 700;
}
.founder-sidebar h2 { font-size: 1.375rem; margin-bottom: 0.25rem; }
.founder-role { font-size: 0.875rem; color: var(--blue-600); font-weight: 600; margin-bottom: 1.5rem; }
.founder-meta { text-align: left; border-top: 1px solid var(--gray-100); padding-top: 1rem; }
.founder-meta li {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  font-size: 0.875rem;
  border-bottom: 1px solid var(--gray-100);
}
.founder-meta li:last-child { border-bottom: none; }
.founder-meta span { color: var(--text-light); font-weight: 500; }
.founder-letter { padding: 2rem 2.25rem; }
.founder-greeting { font-weight: 600; color: var(--text-dark); margin-bottom: 1.25rem; }
.founder-letter p { margin-bottom: 1.125rem; color: var(--text); line-height: 1.75; font-size: 0.9375rem; }
.founder-signoff { margin-top: 1.5rem; margin-bottom: 0.25rem; font-weight: 600; color: var(--text-dark); }
.founder-signature { font-weight: 700; color: var(--text-dark); font-size: 1.0625rem; line-height: 1.5; }
.founder-avatar.green { background: var(--green-600); }
.founder-block { margin-bottom: 2.5rem; }
.founder-block:last-child { margin-bottom: 0; }
.founders-duo { display: flex; flex-direction: column; gap: 1.5rem; }
.founder-profile { padding-bottom: 1.5rem; border-bottom: 1px solid var(--gray-100); }
.founder-profile:last-child { padding-bottom: 0; border-bottom: none; }
.founder-duo-signatures {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 0.5rem;
}
.founder-duo-signatures .founder-signature { margin: 0; }

/* Site photos */
.site-photo {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  box-shadow: 0 8px 32px var(--shadow-md);
  background: var(--white);
}
.site-photo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.photo-caption {
  padding: 0.75rem 1rem;
  font-size: 0.8125rem;
  color: var(--text-light);
  text-align: center;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-100);
}
.split-photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}
.split-photo-grid.reverse .site-photo { order: 2; }
.split-photo-grid.reverse > div { order: 1; }
.page-hero-split { padding: 2.5rem 0; }
.hero-split-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
.hero-split-inner p { max-width: none; }
.audience-photo {
  margin: -2rem -2rem 1.25rem;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
}
.audience-photo img {
  display: block;
  width: 100%;
  height: 160px;
  object-fit: cover;
}
.signup-banner {
  max-width: 720px;
  margin-inline: auto;
}
.signup-banner img {
  max-height: 280px;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 960px) {
  .home-hero-grid, .split-grid, .dashboard-layout, .usp-vs, .founder-layout { grid-template-columns: 1fr; }
  .split-photo-grid,
  .split-photo-grid.reverse,
  .hero-split-inner { grid-template-columns: 1fr; }
  .split-photo-grid.reverse .site-photo,
  .split-photo-grid.reverse > div { order: unset; }
  .form-row.half { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-center {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--white);
    flex-direction: column;
    padding: 4.5rem 1.5rem 1.5rem;
    gap: 0.5rem;
    align-items: flex-start;
    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s, opacity 0.3s;
    z-index: 150;
  }
  .nav-center.open { transform: translateX(0); opacity: 1; pointer-events: auto; }
  .nav-center a { font-size: 1rem; padding: 0.5rem 0; }
  .nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
  .footer-grid { grid-template-columns: 1fr; }
}
