/* about.css - fully updated */

/* 1. Root variables */
:root {
  --navy: rgb(3, 4, 94);
  --navy-light: rgb(28, 35, 150);
  --navy-bg: rgb(240, 243, 255);
  --accent: rgb(66, 89, 255);
  --bg: rgb(233, 239, 255); /* soft blush/blue background */
  --text: rgb(26, 26, 26);
  --muted: rgb(90, 94, 124);
  --radius: 0.8rem;
  --shadow: 0 0.6rem 1.2rem rgba(66, 89, 255, 0.35);
  --shadow-hover: 0 0.9rem 1.5rem rgba(66, 89, 255, 0.55);
  --max-width: 68rem;
  --container-pad: 1.5rem;
  --gap: 1rem;
}

/* 2. Reset + base */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 100%; }
body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
/*main {
  backdrop-filter: saturate(120%) brightness(105%);
}*/

/* 3. Containers */
.container {
  width: 94%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-block: var(--container-pad);
}

/* 4. Header/Nav */
.site-header {
  background: var(--navy);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 20;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--gap);
}
.brand {
  font-weight: 700;
  text-decoration: none;
  color: #fff;
  font-size: 1.1rem;
  padding-block: 0.6rem;
  letter-spacing: 0.05rem;
}
.nav {
  display: flex;
  gap: 1rem;
}
.nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  opacity: 0.9;
  transition: opacity 0.2s;
}
.nav a:hover { opacity: 1; }
.nav .cta {
  background: #fff;
  color: var(--navy);
  padding: 0.55rem 0.9rem;
  border-radius: 0.6rem;
  font-weight: 600;
}

/* 5. Hero Section */
.hero {
  padding-block: 3rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgb(238,240,255) 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr minmax(20rem, 38%);
  gap: 1.25rem;
  align-items: center;
}
.hero h1 {
  font-size: clamp(1.5rem, 2.6vw, 2.25rem);
  color: var(--navy);
  margin-bottom: 0.6rem;
  line-height: 1.1;
}
.lead { color: var(--muted); margin-bottom: 1rem; font-size: 1rem; }
.hero-image img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}
.hero-image img:hover { box-shadow: var(--shadow-hover); transform: translateY(-0.1rem); }

/* 6. Buttons */
.btn {
  display: inline-block;
  padding: 0.6rem 1rem;
  border-radius: 0.6rem;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.25s ease;
}
.btn:hover { background: var(--navy-light); transform: translateY(-0.1rem); }

/* 7. Cards / Sections */
.section { padding-block: 2rem; }
.card,
.founder-card,
.value,
.stat,
.cta-card {
  background: #fff;
  padding: 1.25rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}
.card:hover,
.founder-card:hover,
.value:hover,
.stat:hover,
.cta-card:hover { 
  box-shadow: var(--shadow-hover);
  transform: translateY(-0.2rem);
}

/* 8. Story & Founder */
.two-col {
  display: grid;
  grid-template-columns: 1fr minmax(12rem, 24%);
  gap: 1.5rem;
  align-items: start;
}
.founder-card img {
  width: 100%;
  height: clamp(9rem, 20vw, 12rem);
  object-fit: cover;
  border-radius: 0.6rem;
  margin-bottom: 0.6rem;
}
.role { color: var(--muted); font-size: 0.95rem; margin-bottom: 0.5rem; }

/* 9. Values */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.value h4 { color: var(--navy); margin-bottom: 0.4rem; }

/* 10. Stats */
.stats-grid { display: flex; flex-wrap: wrap; gap: 1rem; }
.stat .num { font-weight: 700; color: var(--accent); font-size: 1.25rem; }
.stat .label { color: var(--muted); font-size: 0.9rem; }

/* 11. Services / Process */
.services, .process-list { list-style: none; color: #2c2f45; }
.services li, .process-list li { margin-bottom: 0.7rem; }

/* 12. CTA Card */
.cta-card { background: var(--navy); color: #fff; text-align: center; padding: 1.5rem; border-radius: 1rem; }
.cta-card .btn { background: #fff; color: var(--navy); margin-top: 0.8rem; }
.cta-card .btn:hover { background: var(--accent); color: #fff; }

/* 13. Footer */
.site-footer { background: var(--navy); color: #fff; padding-block: 1rem; margin-top: 2rem; }
.footer-inner { display: flex; justify-content:center; align-items: center; flex-wrap: wrap; width: 94%; max-width: var(--max-width); margin-inline: auto; }
.footer-inner p { display:flex; align-items:center; justify-content:center; font-size: 0.95rem; opacity: 0.9; }
.footer-nav a { color: #fff; text-decoration: none; margin-left: 1rem; opacity: 0.9; }
.footer-nav a:hover { opacity: 1; }

/* 14. Responsive */
@media (max-width: 64rem) {
  .hero-grid { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 42rem) {
  .values-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items:center; gap: 0.5rem; }
}
