/* ==========================================================================
   Cowtown Seed - Modern Design System
   Early Stage Capital for Visionary Entrepreneurs in Fort Worth, TX
   ========================================================================== */

/* --- Custom Properties & Variables --- */
:root {
  --navy-950: #060911;
  --navy-900: #0b1120;
  --navy-850: #0f172a;
  --navy-800: #1e293b;
  --navy-700: #334155;
  
  --amber-500: #f59e0b;
  --amber-600: #d97706;
  --amber-400: #fbbf24;
  --amber-300: #fcd34d;
  --amber-100: #fef3c7;
  --amber-50:  #fffbeb;
  --amber-glow: rgba(245, 158, 11, 0.22);

  --slate-50:  #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  
  --white: #ffffff;
  --success: #10b981;
  --info: #0284c7;

  --bg-page: #f8fafc;
  --bg-card: #ffffff;
  --text-main: #0f172a;
  --text-muted: #64748b;
  --text-subtle: #94a3b8;
  --border-color: #e2e8f0;
  --border-subtle: rgba(226, 232, 240, 0.8);

  --shadow-xs: 0 1px 2px 0 rgba(15, 23, 42, 0.04);
  --shadow-sm: 0 2px 4px 0 rgba(15, 23, 42, 0.05);
  --shadow-md: 0 6px 16px -2px rgba(15, 23, 42, 0.06), 0 2px 4px -1px rgba(15, 23, 42, 0.03);
  --shadow-lg: 0 14px 28px -4px rgba(15, 23, 42, 0.08), 0 6px 12px -2px rgba(15, 23, 42, 0.03);
  --shadow-xl: 0 22px 38px -6px rgba(15, 23, 42, 0.12), 0 8px 16px -4px rgba(15, 23, 42, 0.04);
  --shadow-amber: 0 12px 26px -4px rgba(245, 158, 11, 0.3);

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 9999px;

  --transition: 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: var(--bg-page);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  color: var(--navy-900);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2rem, 4.2vw, 3.25rem); }
h2 { font-size: clamp(1.5rem, 2.8vw, 2.1rem); }
h3 { font-size: clamp(1.2rem, 1.8vw, 1.45rem); }
h4 { font-size: 1.1rem; }

p {
  color: var(--slate-600);
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

.lead {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--slate-600);
}

.text-amber { color: var(--amber-500) !important; }
.text-navy { color: var(--navy-900) !important; }

/* --- Top Header & Navigation --- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-subtle);
  transition: box-shadow var(--transition);
}

.navbar-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0.9rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: transform var(--transition);
}

.brand-logo:hover {
  transform: translateY(-1px);
}

.brand-logo img {
  height: 132px;
  width: auto;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 0.4rem;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.95rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--slate-600);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.nav-link:hover {
  color: var(--navy-900);
  background-color: var(--slate-100);
}

.nav-link.active {
  color: var(--navy-950);
  background-color: var(--slate-100);
  font-weight: 600;
  position: relative;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 18%;
  right: 18%;
  height: 2.5px;
  background: var(--amber-500);
  border-radius: var(--radius-pill);
}

.nav-cta-btn {
  margin-left: 0.75rem;
  padding: 0.55rem 1.15rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy-950);
  background: var(--amber-500);
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 6px rgba(245, 158, 11, 0.25);
  transition: all var(--transition);
}

.nav-cta-btn:hover {
  background: var(--amber-400);
  transform: translateY(-1px);
  box-shadow: var(--shadow-amber);
}

/* Mobile Hamburger Toggle */
.mobile-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border-color);
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  color: var(--navy-900);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.mobile-toggle svg {
  width: 22px;
  height: 22px;
}

/* --- Layout Containers --- */
.page-wrapper {
  flex: 1;
}

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
}

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

/* --- Homepage Grid --- */
.hero-split-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .hero-split-layout {
    grid-template-columns: 1.75fr 1fr;
    gap: 2.75rem;
  }
}

.main-stream {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}

.side-stream {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

/* --- Hero Banner --- */
.hero-card {
  background: linear-gradient(135deg, #0b1120 0%, #151f33 100%);
  color: var(--white);
  padding: 3rem 2.5rem;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-card::after {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.16) 0%, rgba(245, 158, 11, 0) 70%);
  pointer-events: none;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.35);
  color: var(--amber-400);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.25rem;
}

.hero-card h1 {
  color: var(--white);
  margin-bottom: 1.1rem;
}

.hero-card .hero-highlight {
  color: var(--amber-400);
  background: linear-gradient(90deg, #fbbf24, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-card .hero-lead {
  font-size: 1.18rem;
  color: var(--slate-300);
  max-width: 640px;
  margin-bottom: 2rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

/* Badges and Stat Row */
.trust-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.metric-item {
  display: flex;
  flex-direction: column;
}

.metric-number {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--amber-400);
  line-height: 1.1;
}

.metric-label {
  font-size: 0.8rem;
  color: var(--slate-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  margin-top: 0.25rem;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.8rem 1.6rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}

.btn svg {
  width: 18px;
  height: 18px;
  transition: transform var(--transition);
}

.btn:hover svg {
  transform: translateX(3px);
}

.btn-primary {
  background: var(--amber-500);
  color: var(--navy-950);
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.25);
}

.btn-primary:hover {
  background: var(--amber-400);
  box-shadow: var(--shadow-amber);
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--white);
  color: var(--navy-900);
  border-color: var(--border-color);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: var(--slate-50);
  border-color: var(--slate-300);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-dark {
  background: var(--navy-850);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-dark:hover {
  background: var(--navy-900);
  transform: translateY(-2px);
  border-color: var(--amber-500);
}

.btn-block {
  width: 100%;
}

/* --- Audience Paths (Founders & Investors) --- */
.audience-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .audience-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.audience-card {
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.audience-card:hover {
  transform: translateY(-4px);
}

/* Founders Card */
.card-founders {
  background: linear-gradient(145deg, #0f172a 0%, #1e293b 100%);
  color: var(--white);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.card-founders::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #f59e0b, #fbbf24);
}

.card-founders h2 {
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
  font-size: 1.65rem;
}

.card-founders .feature-item p {
  color: var(--slate-300);
}

/* Investors Card */
.card-investors {
  background: var(--white);
  color: var(--navy-900);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
}

.card-investors::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--navy-850);
}

.card-investors h2 {
  color: var(--navy-900);
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
  font-size: 1.65rem;
}

.card-investors .feature-item p {
  color: var(--slate-600);
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.feature-icon-wrapper {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.card-founders .feature-icon-wrapper {
  background: rgba(245, 158, 11, 0.15);
  color: var(--amber-400);
  border: 1px solid rgba(245, 158, 11, 0.25);
}

.card-investors .feature-icon-wrapper {
  background: var(--slate-100);
  color: var(--navy-850);
  border: 1px solid var(--border-color);
}

.feature-icon-wrapper svg {
  width: 20px;
  height: 20px;
}

.feature-text h3 {
  font-size: 1.02rem;
  margin-bottom: 0.25rem;
}

.card-founders .feature-text h3 {
  color: var(--white);
}

.feature-text p {
  font-size: 0.88rem;
  line-height: 1.45;
}

/* --- Sidebar Widgets --- */
.widget-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.widget-card:hover {
  box-shadow: var(--shadow-md);
}

.widget-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--amber-50);
  color: var(--amber-600);
  border: 1px solid var(--amber-100);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.spotlight-header {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  margin-bottom: 1rem;
}

.spotlight-logo-box {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-md);
  background: var(--navy-900);
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.spotlight-logo-box img, .spotlight-logo-box svg {
  width: 100%;
  height: 100%;
}

.spotlight-title h3 {
  font-size: 1.15rem;
  margin-bottom: 0.2rem;
}

.spotlight-title h3 a:hover {
  color: var(--amber-600);
}

.spotlight-subtitle {
  font-size: 0.82rem;
  color: var(--slate-500);
  font-weight: 500;
}

.spotlight-desc {
  font-size: 0.9rem;
  color: var(--slate-600);
  line-height: 1.55;
  margin-bottom: 1.25rem;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.tag-pill {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--navy-800);
  background: var(--slate-100);
  border: 1px solid var(--border-color);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-sm);
}

.spotlight-footer-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy-900);
  transition: color var(--transition);
}

.spotlight-footer-link:hover {
  color: var(--amber-600);
}

.spotlight-footer-link svg {
  width: 16px;
  height: 16px;
}

/* News List */
.widget-title {
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.news-item {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid var(--border-color);
}

.news-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.news-meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.75rem;
  color: var(--slate-400);
  font-weight: 600;
  text-transform: uppercase;
}

.news-item h4 {
  font-size: 0.95rem;
  line-height: 1.4;
  font-weight: 600;
}

.news-item h4 a {
  color: var(--navy-900);
}

.news-item h4 a:hover {
  color: var(--amber-600);
}

/* --- Subpage Specific Styles --- */
.subpage-header {
  background: linear-gradient(135deg, #0b1120 0%, #151f33 100%);
  color: var(--white);
  padding: 3.5rem 1.5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.subpage-header::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(245, 158, 11, 0.12) 0%, rgba(245, 158, 11, 0) 70%);
  pointer-events: none;
}

.subpage-header h1 {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.subpage-header p {
  color: var(--slate-300);
  font-size: 1.12rem;
  max-width: 680px;
  margin: 0 auto;
}

/* Info Cards Grid (e.g. Founders Criteria) */
.info-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin: 2.5rem 0;
}

@media (min-width: 640px) {
  .info-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .info-cards-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.info-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform var(--transition), box-shadow var(--transition);
}

.info-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--amber-400);
}

.info-card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--amber-50);
  color: var(--amber-600);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.25rem;
}

.info-card-icon svg {
  width: 22px;
  height: 22px;
}

.info-card h3 {
  font-size: 1.1rem;
}

.info-card p {
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--slate-600);
}

/* Process Steps Timeline */
.process-timeline {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin: 2.5rem 0;
}

@media (min-width: 768px) {
  .process-timeline {
    grid-template-columns: repeat(4, 1fr);
  }
}

.step-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  border: 1px solid var(--border-color);
  position: relative;
}

.step-number {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--amber-600);
  background: var(--amber-100);
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-sm);
  margin-bottom: 0.75rem;
}

.step-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.step-card p {
  font-size: 0.85rem;
  color: var(--slate-600);
}

/* Callout Box / Action Card */
.action-box {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
  margin: 2.5rem 0;
}

.action-box h2 {
  color: var(--white);
  font-size: 1.8rem;
}

.action-box p {
  color: var(--slate-300);
  max-width: 600px;
}

/* Modern Form Controls */
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  max-width: 680px;
  margin: 2.5rem auto;
}

.form-group {
  margin-bottom: 1.35rem;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy-900);
  margin-bottom: 0.4rem;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  color: var(--text-main);
  background: var(--slate-50);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  font-family: inherit;
}

.form-control:focus {
  outline: none;
  background: var(--white);
  border-color: var(--amber-500);
  box-shadow: 0 0 0 3px var(--amber-glow);
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

/* Portfolio Showcase Specifics */
.showcase-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  margin-bottom: 2.5rem;
}

.showcase-header {
  background: linear-gradient(135deg, #0b1120 0%, #1e293b 100%);
  color: var(--white);
  padding: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
}

.showcase-identity {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.showcase-logo {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-lg);
  background: var(--navy-950);
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: var(--shadow-md);
}

.showcase-title h2 {
  color: var(--white);
  font-size: 1.8rem;
  margin-bottom: 0.25rem;
}

.showcase-title p {
  color: var(--amber-400);
  font-weight: 600;
  font-size: 1rem;
}

.showcase-stats-banner {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 1.5rem 2.5rem;
  background: var(--slate-100);
  border-bottom: 1px solid var(--border-color);
}

.showcase-body {
  padding: 2.5rem;
}

.milestones-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin: 1.75rem 0;
}

@media (min-width: 768px) {
  milestones-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.milestone-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--slate-50);
  border: 1px solid var(--border-color);
  padding: 1.25rem;
  border-radius: var(--radius-md);
}

.milestone-badge {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--amber-100);
  color: var(--amber-600);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.milestone-badge svg {
  width: 20px;
  height: 20px;
}

.milestone-content h4 {
  font-size: 0.98rem;
  margin-bottom: 0.3rem;
}

.milestone-content p {
  font-size: 0.85rem;
  color: var(--slate-600);
}

/* Founder Profile Spotlight */
.founder-spotlight-box {
  background: var(--slate-50);
  border-left: 4px solid var(--amber-500);
  padding: 1.5rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 2rem 0;
}

.founder-spotlight-box h4 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

/* Partners Grid */
.partners-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin: 2.5rem 0;
}

@media (min-width: 768px) {
  .partners-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.partner-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.partner-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--amber-400);
}

.partner-logo-box {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.partner-logo-box img {
  max-height: 80px;
  max-width: 240px;
  object-fit: contain;
}

.partner-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.65rem;
}

.partner-card p {
  font-size: 0.92rem;
  color: var(--slate-600);
  margin-bottom: 1.5rem;
}

/* Team Profile */
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 800px;
  margin: 2.5rem auto;
}

.profile-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

@media (min-width: 640px) {
  .profile-card {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 2.5rem;
  }
}

.profile-avatar {
  width: 140px;
  height: 140px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 3px solid var(--amber-500);
  flex-shrink: 0;
  margin-bottom: 1.25rem;
}

@media (min-width: 640px) {
  .profile-avatar {
    margin-bottom: 0;
  }
}

.profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-info h3 {
  font-size: 1.5rem;
  margin-bottom: 0.35rem;
}

.profile-info .profile-role {
  color: var(--amber-600);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.profile-info p {
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

/* --- Footer --- */
.site-footer {
  background: var(--navy-950);
  color: var(--slate-400);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: auto;
}

.footer-top {
  max-width: 1320px;
  margin: 0 auto;
  padding: 4rem 1.5rem 3rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 640px) {
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-top {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
  }
}

.footer-brand p {
  color: var(--slate-400);
  font-size: 0.9rem;
  margin-top: 1rem;
  max-width: 320px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links a {
  font-size: 0.88rem;
  color: var(--slate-400);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--amber-400);
  padding-left: 3px;
}

.footer-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: var(--slate-400);
  margin-bottom: 0.85rem;
}

.footer-info-item svg {
  width: 18px;
  height: 18px;
  color: var(--amber-400);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  max-width: 1320px;
  margin: 0 auto;
  padding: 1.75rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.82rem;
  color: var(--slate-500);
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.sec-disclaimer {
  max-width: 800px;
  font-size: 0.76rem;
  color: var(--slate-500);
  line-height: 1.5;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 960px) {
  .mobile-toggle {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.5rem;
    gap: 0.5rem;
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    display: none;
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-cta-btn {
    margin-left: 0;
    margin-top: 0.5rem;
    text-align: center;
  }
}
