/* =============================================
   Extraordinary AI Labs — Shared Stylesheet
   ============================================= */

:root {
  --bg: #f0f4ff;
  --surface: #ffffff;
  --surface2: #e8eeff;
  --indigo: #4338ca;
  --indigo-light: #6366f1;
  --teal: #0d9488;
  --teal-light: #14b8a6;
  --sky: #0ea5e9;
  --pink: #e879f9;
  --text: #0f172a;
  --text2: #334155;
  --muted: #64748b;
  --border: rgba(99,102,241,0.15);
  --border2: rgba(99,102,241,0.08);
  --glass: rgba(255,255,255,0.7);
  --shadow: 0 4px 32px rgba(67,56,202,0.1);
  --shadow-lg: 0 12px 48px rgba(67,56,202,0.15);
  --nav-h: 64px; /* fixed nav height for scroll-margin */
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

/* ── BACKGROUND MESH ── */
.bg-mesh {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 0; overflow: hidden;
}
.mesh-blob {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: 0.45;
}
.blob-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, #c7d2fe, #e0e7ff);
  top: -200px; left: -150px;
  animation: blobDrift 12s ease-in-out infinite;
}
.blob-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #99f6e4, #ccfbf1);
  top: 100px; right: -100px;
  animation: blobDrift 10s ease-in-out infinite 3s;
}
.blob-3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #bae6fd, #e0f2fe);
  bottom: 200px; left: 30%;
  animation: blobDrift 14s ease-in-out infinite 6s;
}
@keyframes blobDrift {
  0%, 100% { transform: translate(0,0) scale(1); }
  33%       { transform: translate(30px,-20px) scale(1.05); }
  66%       { transform: translate(-20px,30px) scale(0.97); }
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 52px;
  height: var(--nav-h);
  background: rgba(240,244,255,0.88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.logo {
  font-size: 28px; font-weight: 700; letter-spacing: -0.5px;
  color: var(--indigo); display: flex; align-items: center; gap: 8px;
  text-decoration: none; flex-shrink: 0;
}
.logo-mark {
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex-shrink: 0;
}
@keyframes dotPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.4); opacity: 0.7; }
}
nav ul { list-style: none; display: flex; gap: 40px; }
nav a {
  font-size: 19px; font-weight: 400; text-decoration: none;
  color: var(--muted); letter-spacing: 0.2px; transition: color 0.2s;
}
nav a:hover { color: var(--indigo); }
nav a.active { color: var(--indigo); font-weight: 500; }
.nav-contact {
  font-size: 15px; font-weight: 600; text-decoration: none;
  border: 1.5px solid var(--indigo); color: var(--indigo);
  padding: 9px 22px; border-radius: 100px; transition: all 0.3s;
}
.nav-contact.active,
.nav-contact:hover { background: var(--indigo); color: white; }

/* ── SCROLL-MARGIN for anchored sections (accounts for fixed nav) ── */
section[id], div[id] {
  scroll-margin-top: calc(var(--nav-h) + 24px);
}

/* ── HERO ── */
.hero {
  position: relative; z-index: 1;
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 120px 52px 80px;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--glass); border: 1px solid var(--border);
  backdrop-filter: blur(12px); border-radius: 100px;
  padding: 8px 20px 8px 8px; margin-bottom: 36px;
  box-shadow: var(--shadow); animation: fadeUp 0.5s ease both;
}
.eyebrow-chip {
  font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  background: linear-gradient(135deg, var(--indigo), var(--teal));
  color: white; border-radius: 100px; padding: 4px 12px;
}
.eyebrow-text { font-size: 12px; color: var(--muted); font-weight: 400; }

h1 {
  font-size: clamp(48px, 6.5vw, 84px);
  font-weight: 800; letter-spacing: -2.5px; line-height: 1.0;
  margin-bottom: 28px; animation: fadeUp 0.5s ease 0.1s both;
}
.h1-dark { color: var(--text); }
.h1-gradient {
  background: linear-gradient(135deg, var(--indigo) 0%, var(--teal) 60%, var(--sky) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; display: block;
}
.hero-desc {
  font-size: 16px; color: var(--muted); line-height: 1.2;
  max-width: 580px; margin: 32px auto 72px; font-weight: 300;
  animation: fadeUp 0.5s ease 0.2s both;
}
.hero-desc strong { color: var(--text2); font-weight: 500; }
.hero-actions {
  display: flex; gap: 14px; align-items: center; justify-content: center;
  margin-top: 72px; margin-bottom: 0; animation: fadeUp 0.5s ease 0.3s both;
}

/* ── BUTTONS ── */
.btn-primary {
  font-size: 14px; font-weight: 600; text-decoration: none;
  background: var(--indigo); color: white; padding: 16px 36px;
  border-radius: 100px; transition: all 0.3s;
  box-shadow: 0 8px 24px rgba(67,56,202,0.35);
  position: relative; overflow: hidden;
}
.btn-primary::after {
  content: ''; position: absolute; inset: 0; border-radius: 100px;
  background: linear-gradient(135deg, var(--indigo-light), var(--teal));
  opacity: 0; transition: opacity 0.3s;
}
.btn-primary span { position: relative; z-index: 1; }
.btn-primary:hover::after { opacity: 1; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(67,56,202,0.4); }

.btn-ghost {
  font-size: 14px; font-weight: 500; text-decoration: none;
  background: var(--glass); border: 1px solid var(--border);
  color: var(--text2); padding: 16px 36px; border-radius: 100px;
  backdrop-filter: blur(8px); transition: all 0.3s; box-shadow: var(--shadow);
}
.btn-ghost:hover {
  background: white; border-color: rgba(99,102,241,0.3);
  transform: translateY(-2px); box-shadow: var(--shadow-lg);
}

.btn-white {
  font-size: 14px; font-weight: 600; text-decoration: none;
  background: white; color: var(--indigo); padding: 16px 36px;
  border-radius: 100px; transition: all 0.3s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }

.btn-outline-white {
  font-size: 14px; font-weight: 500; text-decoration: none;
  border: 1px solid rgba(255,255,255,0.4); color: white;
  padding: 16px 36px; border-radius: 100px; transition: all 0.3s;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6); transform: translateY(-2px);
}

/* ── STAT CARDS ── */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  width: min(980px, 100%);
  align-items: stretch;
  margin-top: 28px;
  margin-bottom: 28px;
  animation: fadeUp 0.5s ease 0.4s both;
}
.stat-card {
  background: var(--glass); backdrop-filter: blur(16px);
  border: 1px solid var(--border); border-radius: 18px;
  padding: 20px 28px; text-align: center; box-shadow: var(--shadow);
  transition: transform 0.3s;
  height: 100%;
}
.stat-card:hover { transform: translateY(-4px); }
.sn-indigo { color: var(--indigo); }
.sn-teal   { color: var(--teal); }
.sn-sky    { color: var(--sky); }
.stat-label { font-size: 16px; color: var(--muted); font-weight: 400; letter-spacing: 0.3px; text-align: left; }
.stat-lead { font-size: 22px; font-weight: 800; letter-spacing: -0.5px; margin-right: 8px; }

/* ── SECTION CHIP ── */
.section-chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(99,102,241,0.08); border: 1px solid rgba(99,102,241,0.18);
  border-radius: 100px; padding: 6px 14px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase;
  color: var(--indigo); margin-bottom: 20px;
}

/* ── BENTO / TECHNOLOGY SECTION ── */
.bento-section {
  position: relative; z-index: 1;
  padding: 48px 52px 140px;
}
.bento-header {
  text-align: center; margin-bottom: 80px;
}
.bento-title {
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 800; letter-spacing: -1.5px; line-height: 1.1; margin-bottom: 16px;
}
.bento-title span { color: var(--indigo); }
.bento-sub {
  font-size: 16px; color: var(--muted); max-width: 520px;
  margin: 0 auto; line-height: 1.2; font-weight: 300;
}

/* Tech grid: 3 columns, custom cell placement */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 16px;
  align-items: stretch;
}

/* Row 1: merged big card spans 2 cols, group-dynamics spans 1 col */
.tech-cell-merged   { grid-column: auto; grid-row: auto; }
.tech-cell-group    { grid-column: auto; grid-row: auto; }
/* Row 2: adaptive and group span equally */
.tech-cell-adaptive { grid-column: auto; grid-row: auto; }
.tech-cell-agents   { grid-column: auto; grid-row: auto; }

.bento-cell {
  background: var(--glass); backdrop-filter: blur(16px);
  border: 1px solid var(--border); border-radius: 24px;
  padding: 40px 36px; box-shadow: var(--shadow);
  transition: all 0.35s; position: relative; overflow: hidden;
  height: 100%;
}
.bento-cell:hover {
  box-shadow: var(--shadow-lg); transform: translateY(-4px);
  border-color: rgba(99,102,241,0.3);
}
.bento-cell.accent-indigo { background: linear-gradient(135deg, rgba(67,56,202,0.07), rgba(99,102,241,0.04)); }
.bento-cell.accent-teal   { background: linear-gradient(135deg, rgba(13,148,136,0.07), rgba(20,184,166,0.03)); }
.bento-cell.accent-sky    { background: linear-gradient(135deg, rgba(14,165,233,0.07), rgba(56,189,248,0.03)); }

.cell-shimmer {
  position: absolute; inset: 0; border-radius: 24px;
  background: linear-gradient(135deg, rgba(255,255,255,0.6), rgba(255,255,255,0));
  pointer-events: none;
}
.bento-icon-wrap {
  width: 52px; height: 52px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px; font-size: 22px;
}
.icon-indigo { background: rgba(67,56,202,0.1); }
.icon-teal   { background: rgba(13,148,136,0.1); }
.icon-sky    { background: rgba(14,165,233,0.1); }
.icon-pink   { background: rgba(232,121,249,0.1); }

.cell-title {
  font-size: 20px; font-weight: 700; letter-spacing: -0.4px;
  margin-bottom: 10px; color: var(--text);
}
.cell-desc {
  font-size: 18px; color: var(--muted); line-height: 1.2; font-weight: 300;
}

/* ── APPLICATIONS SECTION ── */
.cases-section { position: relative; z-index: 1; padding: 88px 52px 220px; }
.cases-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 64px;
}
.cases-title {
  font-size: clamp(30px, 3.5vw, 46px); font-weight: 800;
  letter-spacing: -1.5px; max-width: 680px; line-height: 1.1;
}
.cases-title span { color: var(--indigo); }

.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 16px;
  row-gap: 36px;
}
/* 5 cards: first 3 in row 1, last 2 centered in row 2 */
.cases-grid .case-card:nth-child(4) { grid-column: 1; }
.cases-grid .case-card:nth-child(5) { grid-column: 2; }

.case-card {
  background: var(--surface); border: 1px solid var(--border2);
  border-radius: 20px; padding: 36px; box-shadow: var(--shadow);
  transition: all 0.3s; position: relative; overflow: hidden;
}
.case-card::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 4px; border-radius: 4px 0 0 4px;
  background: linear-gradient(180deg, var(--indigo), var(--teal));
  opacity: 0; transition: opacity 0.3s;
}
.case-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--border); }
.case-card:hover::before { opacity: 1; }
.case-tag {
  font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  color: var(--teal); background: rgba(13,148,136,0.08);
  border-radius: 100px; padding: 4px 12px; display: inline-block; margin-bottom: 16px;
}
.case-title {
  font-size: 22px; font-weight: 700; letter-spacing: -0.4px;
  margin-bottom: 20px; color: #243046;
}
.case-desc { font-size: 18px; color: var(--muted); line-height: 1.2; font-weight: 300; }

/* ── HOW IT WORKS ── */
.steps-section { position: relative; z-index: 1; padding: 0 52px 100px; }
.steps-header { text-align: center; margin-bottom: 56px; }
.steps-title {
  font-size: clamp(30px, 3.5vw, 46px); font-weight: 800;
  letter-spacing: -1.5px; line-height: 1.1;
}
.steps-title span { color: var(--teal); }
.steps-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px; position: relative;
}
.steps-line {
  position: absolute; top: 58px; left: 12.5%; right: 12.5%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), var(--indigo-light), var(--teal-light), var(--border), transparent);
}
.step-card {
  background: var(--surface); border: 1px solid var(--border2);
  border-radius: 20px; padding: 36px 24px 28px;
  text-align: center; box-shadow: var(--shadow); transition: all 0.3s;
}
.step-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--border); }
.step-num {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--indigo), var(--teal));
  color: white; font-size: 16px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px; box-shadow: 0 6px 20px rgba(67,56,202,0.35);
}
.step-title { font-size: 20px; font-weight: 700; letter-spacing: -0.3px; margin-bottom: 10px; }
.step-desc { font-size: 16px; color: var(--muted); line-height: 1.2; font-weight: 300; text-align: left; }

/* ── CTA BANNER ── */
.cta-section { position: relative; z-index: 1; padding: 88px 52px 80px; }
.cta-inner {
  background: linear-gradient(135deg, var(--indigo) 0%, #5b21b6 40%, var(--teal) 100%);
  border-radius: 28px; padding: 64px 80px; text-align: center;
  position: relative; overflow: hidden;
  box-shadow: 0 24px 64px rgba(67,56,202,0.35);
}
.cta-inner::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.cta-glow {
  position: absolute; width: 500px; height: 500px; border-radius: 50%;
  background: rgba(255,255,255,0.08); filter: blur(80px);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
}
.cta-title {
  font-size: clamp(32px, 4vw, 52px); font-weight: 800; letter-spacing: -1.5px;
  color: white; line-height: 1.1; margin-bottom: 16px;
  position: relative; z-index: 1;
}
.cta-sub {
  font-size: 16px; color: rgba(255,255,255,0.7); margin-bottom: 48px;
  position: relative; z-index: 1; font-weight: 300;
}
.cta-buttons { display: flex; gap: 16px; justify-content: center; position: relative; z-index: 1; }

/* ── FOOTER (shared) ── */
footer {
  position: relative; z-index: 1;
  padding: 32px 52px; border-top: 1px solid var(--border2);
  display: flex; justify-content: space-between; align-items: center;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 800;
  color: var(--indigo);
  letter-spacing: -0.3px;
}
.footer-logo-mark {
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex-shrink: 0;
}
.footer-links { display: flex; gap: 28px; }
.footer-links a {
  font-size: 12px; color: var(--muted); text-decoration: none;
  font-weight: 400; transition: color 0.2s;
}
.footer-links a:hover { color: var(--indigo); }
.footer-copy { font-size: 12px; color: var(--muted); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1100px) {
  nav {
    padding: 0 28px;
  }

  .logo {
    font-size: 24px;
  }

  nav ul {
    gap: 28px;
  }

  nav a {
    font-size: 17px;
  }

  .nav-contact {
    font-size: 14px;
    padding: 8px 18px;
  }

  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cases-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cases-grid .case-card:nth-child(4),
  .cases-grid .case-card:nth-child(5) {
    grid-column: auto;
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-line {
    display: none;
  }

  .mission-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .mission-right {
    align-items: flex-start;
  }

  .mission-title {
    margin-left: 0;
  }

  .founders-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-inner,
  .contact-inner {
    padding: 56px 48px;
  }
}

@media (max-width: 900px) {
  nav {
    flex-wrap: wrap;
    gap: 14px 20px;
    height: auto;
    padding: 14px 24px;
  }

  nav ul {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px 20px;
  }

  nav a {
    font-size: 16px;
  }

  .nav-contact {
    margin-left: auto;
    font-size: 14px;
    padding: 8px 18px;
  }

  .hero,
  .bento-section,
  .cases-section,
  .steps-section,
  .cta-section,
  .page-hero,
  .one-liner-wrap,
  .mission-section,
  .founders-section,
  .values-section,
  .contact-section,
  footer {
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero {
    padding-top: 140px;
  }

  .hero-actions {
    margin-top: 48px;
  }

  .one-liner-card,
  .mission-inner,
  .cta-inner,
  .contact-inner {
    padding-left: 32px;
    padding-right: 32px;
  }

  .cases-header {
    display: block;
    margin-bottom: 48px;
  }

  .cases-title {
    max-width: 100%;
  }

  .case-card,
  .bento-cell,
  .step-card,
  .founder-body {
    padding-left: 28px;
    padding-right: 28px;
  }

  section[id],
  div[id] {
    scroll-margin-top: 112px;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero-stats {
    grid-template-columns: 1fr;
  }

  nav {
    padding: 12px 16px;
  }

  .logo {
    font-size: 20px;
  }

  .logo-mark {
    width: 22px;
    height: 22px;
  }

  nav ul {
    gap: 10px 14px;
  }

  nav a {
    font-size: 15px;
  }

  .nav-contact {
    width: 100%;
    text-align: center;
    margin-left: 0;
    font-size: 15px;
  }

  .hero {
    padding: 128px 16px 64px;
  }

  h1 {
    font-size: clamp(38px, 12vw, 58px);
    letter-spacing: -1.6px;
  }

  .hero-desc,
  .bento-sub,
  .case-desc,
  .step-desc,
  .founder-bio,
  .mission-text {
    font-size: 15px;
  }

  .hero-actions,
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions {
    margin-top: 36px;
  }

  .btn-primary,
  .btn-ghost,
  .btn-white,
  .btn-outline-white {
    width: 100%;
    text-align: center;
  }

  .bento-section,
  .cases-section,
  .steps-section,
  .cta-section,
  .page-hero,
  .one-liner-wrap,
  .mission-section,
  .founders-section,
  .values-section,
  .contact-section,
  footer {
    padding-left: 16px;
    padding-right: 16px;
  }

  .tech-grid,
  .cases-grid,
  .steps-grid,
  .founders-grid {
    grid-template-columns: 1fr;
  }

  .bento-cell,
  .case-card,
  .step-card,
  .value-card {
    padding-left: 24px;
    padding-right: 24px;
  }

  .page-hero {
    padding-top: 112px;
    padding-bottom: 40px;
  }

  .page-title {
    font-size: clamp(32px, 10vw, 46px);
    letter-spacing: -1.2px;
  }

  .one-liner-card,
  .mission-inner,
  .cta-inner,
  .contact-inner {
    padding: 28px 24px;
  }

  .bento-cell,
  .case-card,
  .step-card,
  .founder-body {
    padding: 24px 22px;
  }

  .mission-label {
    font-size: 16px;
  }

  .mission-accent-line {
    width: 220px;
  }

  .mission-title {
    font-size: 34px;
  }

  .mv-chip {
    font-size: 15px;
  }

  .founder-img-wrap {
    height: 320px;
  }

  section[id],
  div[id] {
    scroll-margin-top: 156px;
  }

  .footer-links,
  footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
.fade-up   { animation: fadeUp 0.6s ease both; }
.fade-up-1 { animation-delay: 0.1s; }
.fade-up-2 { animation-delay: 0.2s; }
.fade-up-3 { animation-delay: 0.3s; }

/* ── ABOUT PAGE ── */

/* Page Hero */
.page-hero {
  position: relative; z-index: 1;
  padding: 180px 52px 60px;
  text-align: left;
  max-width: 900px; margin: 0 auto;
}
.page-title {
  font-size: clamp(38px, 5vw, 58px);
  font-weight: 800; letter-spacing: -2px; line-height: 1.15;
  margin-bottom: 0; color: var(--text);
}
.page-title span {
  background: linear-gradient(135deg, var(--indigo), var(--teal));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* One-liner */
.one-liner-wrap {
  position: relative; z-index: 1;
  padding: 0 52px 80px;
  max-width: 1100px; margin: 0 auto;
}
.one-liner-card {
  background: linear-gradient(135deg, var(--indigo) 0%, #5b21b6 50%, var(--teal) 100%);
  border-radius: 28px; padding: 56px 72px;
  text-align: center; position: relative; overflow: hidden;
  box-shadow: 0 24px 64px rgba(67,56,202,0.3);
}
.one-liner-card::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='20' cy='20' r='1'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.one-liner-glow {
  position: absolute; width: 400px; height: 300px; border-radius: 50%;
  background: rgba(255,255,255,0.1); filter: blur(60px);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
}
.one-liner-text {
  font-size: clamp(17px, 2vw, 24px); font-weight: 500;
  color: white; line-height: 1.6;
  position: relative; z-index: 1; font-style: italic;
}
.quote-mark {
  font-size: 80px; line-height: 0.5; color: rgba(255,255,255,0.2);
  font-family: Georgia, serif; display: block; margin-bottom: 16px;
  position: relative; z-index: 1;
}

/* Mission */
.mission-section { position: relative; z-index: 1; padding: 64px 52px 140px; }
.mission-inner {
  display: grid; grid-template-columns: 560px 1fr; gap: 72px;
  max-width: 1100px; margin: 0 auto;
  background: var(--glass); backdrop-filter: blur(16px);
  border: 1px solid var(--border); border-radius: 28px;
  padding: 56px; box-shadow: var(--shadow);
}
.mission-label {
  font-size: 20px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--indigo);
}
.mission-accent-line {
  width: 320px; height: 3px;
  background: linear-gradient(90deg, var(--indigo), var(--teal));
  border-radius: 2px; margin-top: 12px; margin-bottom: 24px;
}
.mission-visual {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 4px;
}
.mv-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(99,102,241,0.14);
  font-size: 17px;
  font-weight: 300;
  color: var(--text2);
}
.mv-chip:first-child {
  border-top: 1px solid rgba(99,102,241,0.14);
}
.mv-icon {
  font-size: 20px;
  width: 30px;
  text-align: center;
  opacity: 0.9;
}
.mission-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.mission-title {
  font-size: 44px; font-weight: 800; letter-spacing: -1px;
  line-height: 1.15; margin-bottom: 24px; color: #56657f;
  margin-left: 20px;
}
.mission-title span { color: var(--indigo); }
.mission-text { font-size: 15.5px; color: var(--text2); line-height: 1.88; font-weight: 300; }

/* Founders */
.founders-section { position: relative; z-index: 1; padding: 0 52px 90px; }
.founders-header { text-align: center; margin-bottom: 72px; }
.founders-title {
  font-size: clamp(30px, 4vw, 46px); font-weight: 800;
  letter-spacing: -1.5px; line-height: 1.1; margin-bottom: 12px;
}
.founders-title span { color: var(--teal); }
.founders-sub {
  font-size: 16px; color: var(--muted); max-width: 620px;
  margin: 24px auto 36px; font-weight: 300; line-height: 1.2;
}
.founders-grid {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 36px; row-gap: 40px; max-width: 900px; margin: 0 auto;
}
.founder-card {
  background: var(--surface); border: 1px solid var(--border2);
  border-radius: 28px; overflow: hidden; box-shadow: var(--shadow);
  transition: all 0.35s; display: flex; flex-direction: column;
}
.founder-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); border-color: var(--border); }
.founder-img-wrap {
  position: relative; overflow: hidden; height: 420px;
  background: linear-gradient(135deg, #e0e7ff, #ccfbf1);
}
.founder-img-wrap::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 100px;
  background: linear-gradient(to bottom, transparent, var(--surface));
}
.founder-img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
  transition: transform 0.5s ease; display: block;
}
.founder-card:hover .founder-img { transform: scale(1.04); }
.founder-avatar-fallback {
  width: 100%; height: 100%;
  display: none; align-items: center; justify-content: center;
  font-size: 80px; color: rgba(67,56,202,0.2);
}
.founder-body { padding: 32px 36px 36px; flex: 1; display: flex; flex-direction: column; }
.founder-role-tag {
  font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--teal); background: rgba(13,148,136,0.08);
  border-radius: 100px; padding: 4px 12px; display: inline-block;
  margin-bottom: 14px; align-self: flex-start;
}
.founder-name { font-size: 26px; font-weight: 800; letter-spacing: -0.8px; margin-bottom: 4px; color: var(--text); }
.founder-title { font-size: 15px; font-weight: 500; color: var(--indigo); margin-bottom: 18px; }
.founder-bio { font-size: 16px; color: var(--muted); line-height: 1.2; font-weight: 300; flex: 1; }
.founder-divider {
  width: 32px; height: 2px;
  background: linear-gradient(90deg, var(--indigo), var(--teal));
  border-radius: 2px; margin: 16px 0;
}

/* Values */
.values-section { position: relative; z-index: 1; padding: 0 52px 90px; }
.values-header { text-align: center; margin-bottom: 44px; }
.values-title { font-size: clamp(26px, 3.5vw, 42px); font-weight: 800; letter-spacing: -1.5px; line-height: 1.1; }
.values-title span { color: var(--indigo); }
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; max-width: 900px; margin: 0 auto; }
.value-card {
  background: var(--glass); backdrop-filter: blur(16px);
  border: 1px solid var(--border); border-radius: 20px;
  padding: 32px; box-shadow: var(--shadow); transition: all 0.3s; text-align: center;
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(99,102,241,0.3); }
.value-icon { font-size: 32px; margin-bottom: 16px; }
.value-title { font-size: 17px; font-weight: 700; letter-spacing: -0.3px; margin-bottom: 8px; }
.value-desc { font-size: 13px; color: var(--muted); line-height: 1.72; font-weight: 300; }

/* Contact */
.contact-section { position: relative; z-index: 1; padding: 0 52px 80px; }
.contact-inner {
  background: linear-gradient(135deg, var(--indigo) 0%, #5b21b6 40%, var(--teal) 100%);
  border-radius: 28px; padding: 56px 64px;
  text-align: center; position: relative; overflow: hidden;
  box-shadow: 0 24px 64px rgba(67,56,202,0.35);
  display: flex; flex-direction: column; align-items: center;
}
.contact-inner::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
  pointer-events: none;
}
.contact-glow {
  position: absolute; width: 500px; height: 500px; border-radius: 50%;
  background: rgba(255,255,255,0.08); filter: blur(80px);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
}
.contact-title {
  font-size: clamp(32px, 4vw, 52px); font-weight: 800; letter-spacing: -1.5px;
  color: white; line-height: 1.1; margin-bottom: 14px; position: relative; z-index: 1;
}
.contact-sub {
  font-size: 16px; color: rgba(244,247,255,0.92); margin-bottom: 40px;
  position: relative; z-index: 1; font-weight: 300; max-width: 500px;
}
.contact-email {
  display: inline-flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.92); border: 1px solid rgba(255,255,255,0.75);
  border-radius: 16px; padding: 18px 36px;
  font-size: 17px; font-weight: 600; color: var(--indigo); text-decoration: none;
  transition: all 0.3s; position: relative; z-index: 1; backdrop-filter: blur(8px);
}
.contact-email:hover {
  background: white; border-color: white;
  transform: translateY(-2px);
}
.contact-email-icon { font-size: 20px; }
