:root {
  --teal: #2a9fd6;
  --teal-dark: #1a7aaa;
  --teal-light: #e8f6fd;
  --gold: #f5a623;
  --gold-light: #fef6e8;
  --dark: #0f1f2e;
  --mid: #3a5068;
  --muted: #7a92a6;
  --border: #dde8ef;
  --white: #ffffff;
  --off-white: #f7fbfd;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 5%;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Lora', Georgia, serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--teal);
  text-decoration: none;
}

.nav-logo img{ width:35px; }

.nav-cta {
  background: var(--teal);
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: 100px;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.nav-cta:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 5% 80px;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -180px;
  right: -180px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(42, 159, 214, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -120px;
  left: -80px;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 166, 35, 0.15);
  border: 1px solid rgba(245, 166, 35, 0.3);
  color: var(--gold);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero h1 {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 10px;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-origin {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  font-style: italic;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 24px;
  line-height: 1.6;
}

.hero-sub {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.btn-primary {
  background: var(--teal);
  color: #fff;
  border: none;
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(42, 159, 214, 0.3);
}

.btn-primary:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
}

.btn-ghost {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s, gap 0.2s;
}

.btn-ghost:hover {
  color: #fff;
  gap: 10px;
}

.hero-trust {
  margin-top: 20px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-visual {
  position: relative;
}

.floating-badge {
  position: absolute;
  background: white;
  border-radius: 12px;
  padding: 10px 14px;
  box-shadow: 0 8px 24px rgba(15, 31, 46, 0.2);
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.badge-members {
  left: -20px;
  top: 40px;
  color: var(--teal);
  animation: popIn 0.5s ease 0.8s both;
}

.badge-funded {
  right: -20px;
  bottom: 60px;
  color: #1a9e5c;
  animation: popIn 0.5s ease 2.5s both;
}

@keyframes popIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.pot-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(15, 31, 46, 0.25);
  overflow: hidden;
  animation: floatCard 6s ease-in-out infinite;
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.pot-card-header {
  background: var(--teal);
  padding: 20px 24px;
  color: white;
}

.pot-card-header-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.pot-stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 4px;
}

.pot-stat-value {
  font-size: 1.6rem;
  font-weight: 700;
}

.pot-stat-right {
  flex: 1;
}

.pot-funding-title {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 4px;
}

.pot-funding-meta {
  font-size: 0.8rem;
  opacity: 0.8;
  margin-bottom: 10px;
}

.progress-bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 12px;
}

.progress-fill {
  height: 100%;
  background: var(--gold);
  border-radius: 3px;
  animation: fillProgress 3s ease-in-out infinite alternate;
}

@keyframes fillProgress {
  from {
    width: 45%;
  }
  to {
    width: 55%;
  }
}

.pot-cta-btn {
  background: var(--gold);
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.85rem;
}

.pot-card-body {
  padding: 20px 24px;
}

.activity-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--mid);
}

.activity-item:last-child {
  border-bottom: none;
}

.activity-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.75rem;
}

.activity-icon.gold {
  background: var(--gold-light);
  color: var(--gold);
}

.activity-icon.teal {
  background: var(--teal-light);
  color: var(--teal);
}

.activity-icon.green {
  background: #e8f8f0;
  color: #2ecc71;
}

.origin-section {
  padding: 100px 5%;
  background: var(--off-white);
}

.origin-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.analogy-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
}

.analogy-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 18px;
}

.analogy-item-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--teal-light);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.analogy-item-text strong {
  display: block;
  font-size: 0.9rem;
  color: var(--dark);
  margin-bottom: 3px;
}

.analogy-item-text span {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.55;
}

.penny-tray {
  background: var(--dark);
  border-radius: 20px;
  padding: 36px;
  text-align: center;
  box-shadow: 0 16px 48px rgba(15, 31, 46, 0.12);
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
}

.penny-tray-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.penny-tray-title {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.penny-tray-sub {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.65;
  margin-bottom: 20px;
}

.penny-tray-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 16px 0;
}

.penny-tray-arrow {
  font-size: 1.4rem;
  color: var(--teal);
  margin: 12px 0;
}

.penny-tray-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.penny-tray-app {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--teal);
}

.quote-strip {
  background: var(--gold);
  padding: 28px 5%;
}

.quote-strip-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.quote-strip p {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.65;
}

.section {
  padding: 100px 5%;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--dark);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--mid);
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 56px;
}

.community-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.community-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.community-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(42, 159, 214, 0.1);
  border-color: var(--teal);
}

.community-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.community-card h3 {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark);
}

.community-card p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--mid);
}

.how-section {
  background: var(--dark);
  padding: 100px 5%;
}

.how-section .section-label {
  color: var(--gold);
}

.how-section .section-title {
  color: white;
}

.how-section .section-sub {
  color: rgba(255, 255, 255, 0.55);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 28px);
  right: calc(12.5% + 28px);
  height: 1px;
  background: linear-gradient(to right, var(--teal), var(--gold));
  opacity: 0.3;
}

.step {
  text-align: center;
  padding: 0 8px;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(42, 159, 214, 0.15);
  border: 1px solid rgba(42, 159, 214, 0.3);
  color: var(--teal);
  font-family: 'Lora', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.step h3 {
  font-family: 'Lora', Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
}

.step p {
  font-size: 0.87rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.5);
}

.video-section {
  padding: 100px 5%;
  background: var(--off-white);
}

.video-wrapper {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.video-placeholder {
  background: var(--dark);
  border-radius: 20px;
  aspect-ratio: 16/9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 0 auto 28px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(15, 31, 46, 0.2);
}

.video-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(42, 159, 214, 0.15) 0%, rgba(245, 166, 35, 0.1) 100%);
}

.play-btn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
}

.play-btn:hover {
  transform: scale(1.1);
}

.video-label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  position: relative;
  z-index: 1;
}

.trust-section {
  padding: 100px 5%;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.trust-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
}

.trust-icon {
  font-size: 1.5rem;
  margin-bottom: 14px;
}

.trust-card h3 {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 8px;
  color: var(--dark);
}

.trust-card p {
  font-size: 0.87rem;
  line-height: 1.65;
  color: var(--mid);
}

.stripe-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 0.8rem;
  color: var(--mid);
  margin-top: 40px;
}

.offer-section {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  padding: 100px 5%;
  position: relative;
  overflow: hidden;
}

.offer-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.offer-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(245, 166, 35, 0.1);
}

.offer-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.offer-section .section-label {
  color: rgba(255, 255, 255, 0.7);
}

.offer-section .section-title {
  color: white;
  margin-bottom: 20px;
}

.offer-section .section-sub {
  color: rgba(255, 255, 255, 0.8);
  max-width: 100%;
  margin-bottom: 0;
}

.offer-perks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 40px 0;
  text-align: left;
}

.offer-perk {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 16px;
}

.perk-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.7rem;
  margin-top: 1px;
}

.offer-perk p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}

.offer-perk strong {
  color: white;
  display: block;
  margin-bottom: 2px;
}

.btn-white {
  background: white;
  color: var(--teal-dark);
  border: none;
  padding: 16px 36px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.offer-footnote {
  margin-top: 16px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
}

.form-section {
  padding: 100px 5%;
  background: var(--off-white);
}

.form-wrapper {
  max-width: 560px;
  margin: 0 auto;
}

.apply-form {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--mid);
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.95rem;
  color: var(--dark);
  background: white;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(42, 159, 214, 0.1);
}

.form-field textarea {
  resize: vertical;
  min-height: 90px;
}

.form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237a92a6' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-submit {
  background: var(--teal);
  color: white;
  border: none;
  padding: 15px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  margin-top: 8px;
}

.form-submit:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
}

.form-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.form-footnote {
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 8px;
}

.form-success {
  display: none;
  text-align: center;
  padding: 48px 32px;
  background: white;
  border-radius: 20px;
  border: 1px solid var(--border);
}

.form-success .success-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.form-success h3 {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--dark);
}

.form-success p {
  color: var(--mid);
  font-size: 0.95rem;
  line-height: 1.6;
}

.form-error {
  display: none;
  text-align: center;
  padding: 24px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 12px;
  color: #b91c1c;
  font-size: 0.9rem;
  margin-top: 16px;
}

footer {
  background: var(--dark);
  padding: 48px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo {
  font-family: 'Lora', Georgia, serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: white;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-tagline {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 4px;
}

.footer-right {
  text-align: right;
}

.footer-right a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  font-size: 0.82rem;
  transition: color 0.2s;
}

.footer-right a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.footer-stripe {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.75rem;
  margin-top: 8px;
  justify-content: flex-end;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

@media (max-width: 900px) {
  .hero-inner,
  .origin-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-visual {
    display: none;
  }
  .community-grid,
  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }
  .steps-grid {
    grid-template-columns: 1fr 1fr;
  }
  .steps-grid::before {
    display: none;
  }
  .offer-perks {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .community-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  footer {
    flex-direction: column;
  }
  .footer-right {
    text-align: left;
  }
  .footer-stripe {
    justify-content: flex-start;
  }
}

/* Founder */
.founder-section {
  padding: 100px 5%;
  background: var(--white);
  border-top: 1px solid var(--border);
}
.founder-inner {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: start;
}
.founder-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-light), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(42, 159, 214, 0.15);
}
.founder-name {
  font-family: "Lora", Georgia, serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}
.founder-role {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.founder-quote {
  font-family: "Lora", Georgia, serif;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--dark);
  line-height: 1.65;
  margin-bottom: 20px;
  padding-left: 20px;
  border-left: 3px solid var(--gold);
}
.founder-body {
  font-size: 0.95rem;
  color: var(--mid);
  line-height: 1.75;
}
.founder-body p {
  margin-bottom: 12px;
}
.founder-body p:last-child {
  margin-bottom: 0;
}
@media (max-width: 600px) {
  .founder-inner {
    grid-template-columns: 1fr;
  }
  .founder-avatar {
    width: 72px;
    height: 72px;
    font-size: 1.5rem;
  }
}
