@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600&family=DM+Serif+Display:ital@0;1&display=swap');

:root {
  --bg: #f8faf8;
  --surface: #ffffff;
  --border: #e4ece4;
  --text: #0c180c;
  --muted: #4a5e4a;
  --green: #1a9e52;
  --blue: #1055b0;
  --navy: #08121f;
  --grad: linear-gradient(135deg, #1a9e52 0%, #1055b0 100%);
  --grad-text: linear-gradient(135deg, #1a9e52 0%, #1055b0 100%);
  --shadow: 0 1px 4px rgba(0,0,0,0.05), 0 4px 16px rgba(0,0,0,0.04);
  --shadow-hover: 0 4px 24px rgba(0,0,0,0.10);
  --nav-h: 68px;
  --r: 16px;
  --t: 0.22s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--bg); color: var(--text); line-height: 1.65; font-size: 16px; -webkit-font-smoothing: antialiased; font-weight: 300; }

/* ── BANNER ── */
.top-banner { background: var(--grad); color: white; text-align: center; padding: 10px 24px; font-size: 12px; font-weight: 400; letter-spacing: 0.08em; position: fixed; top: 0; left: 0; right: 0; z-index: 200; }
.top-banner a { color: white; text-decoration: underline; margin-left: 12px; }

/* ── NAV ── */
nav { position: fixed; top: 36px; left: 0; right: 0; height: var(--nav-h); background: rgba(248,250,248,0.94); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; padding: 0 52px; z-index: 100; }
.nav-logo { display: flex; align-items: center; gap: 0; text-decoration: none; }
.nav-logo img { height: 36px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav-links a { text-decoration: none; color: var(--muted); font-size: 12px; font-weight: 300; letter-spacing: 0.1em; text-transform: uppercase; padding: 8px 16px; border-radius: 6px; transition: all var(--t); }
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-cta { background: var(--navy) !important; color: white !important; -webkit-text-fill-color: white !important; border-radius: 8px !important; font-weight: 400 !important; }
.nav-cta:hover { background: var(--grad) !important; }
main { padding-top: calc(var(--nav-h) + 36px); }

/* ── HERO ── */
.hero { min-height: calc(100vh - var(--nav-h) - 36px); display: grid; grid-template-columns: 1fr 1fr; border-bottom: 1px solid var(--border); }
.hero-left { padding: 100px 68px; display: flex; flex-direction: column; justify-content: center; border-right: 1px solid var(--border); }
.eyebrow { font-size: 10px; font-weight: 300; letter-spacing: 0.26em; text-transform: uppercase; color: var(--green); margin-bottom: 32px; display: flex; align-items: center; gap: 10px; }
.eyebrow::before { content: ''; display: block; width: 24px; height: 1px; background: var(--green); }
.hero-h1 { font-family: 'DM Serif Display', serif; font-size: clamp(42px, 4.8vw, 70px); line-height: 1.06; letter-spacing: -1.5px; color: var(--text); margin-bottom: 12px; }
.hero-h1 .ombre { background: var(--grad-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; font-style: italic; }
.hero-sub { font-size: 15px; color: var(--muted); line-height: 1.8; max-width: 440px; margin-bottom: 16px; font-weight: 300; }
.hero-urgency { font-size: 13px; color: var(--green); font-weight: 400; letter-spacing: 0.04em; margin-bottom: 44px; }
.btn-row { display: flex; gap: 12px; flex-wrap: wrap; }
.btn { display: inline-block; text-decoration: none; font-size: 12px; font-weight: 500; letter-spacing: 0.06em; padding: 14px 28px; border-radius: 8px; transition: all var(--t); cursor: pointer; border: none; font-family: inherit; }
.btn-primary { background: var(--navy); color: white; }
.btn-primary:hover { background: var(--grad); transform: translateY(-1px); box-shadow: var(--shadow-hover); }
.btn-secondary { border: 1px solid var(--border); color: var(--text); background: white; box-shadow: var(--shadow); }
.btn-secondary:hover { border-color: var(--green); color: var(--green); transform: translateY(-1px); }
.hero-right { position: relative; overflow: hidden; background: linear-gradient(135deg, #eaf5f0 0%, #e6eefa 100%); }

/* ── STATEMENT STRIP ── */
.statement { background: var(--navy); padding: 52px 68px; display: flex; align-items: center; justify-content: space-between; gap: 48px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.statement h2 { font-family: 'DM Serif Display', serif; font-size: clamp(24px, 3vw, 40px); color: white; line-height: 1.2; letter-spacing: -0.5px; max-width: 600px; }
.statement h2 em { font-style: italic; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.statement p { font-size: 14px; color: rgba(255,255,255,0.45); max-width: 320px; line-height: 1.7; font-weight: 300; flex-shrink: 0; }

/* ── STATS ── */
.stats-row { display: grid; grid-template-columns: repeat(4,1fr); border-bottom: 1px solid var(--border); }
.stat { background: white; padding: 52px 44px; border-right: 1px solid var(--border); transition: background var(--t); }
.stat:last-child { border-right: none; }
.stat:hover { background: #f0f9f4; }
.stat .num { font-family: 'DM Serif Display', serif; font-size: 52px; line-height: 1; letter-spacing: -2px; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 12px; }
.stat .label { font-size: 12px; color: var(--muted); font-weight: 300; line-height: 1.55; }

/* ── SECTIONS ── */
section { padding: 100px 68px; border-bottom: 1px solid var(--border); }
.section-label { font-size: 10px; font-weight: 300; letter-spacing: 0.26em; text-transform: uppercase; color: var(--green); margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.section-label::before { content: ''; display: block; width: 20px; height: 1px; background: var(--green); }
.section-title { font-family: 'DM Serif Display', serif; font-size: clamp(30px, 3vw, 46px); line-height: 1.15; letter-spacing: -0.8px; color: var(--text); margin-bottom: 18px; max-width: 640px; }
.section-body { font-size: 15px; color: var(--muted); line-height: 1.8; max-width: 560px; margin-bottom: 52px; font-weight: 300; }

/* ── CARDS ── */
.card-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 52px; }
.card { background: white; border-radius: var(--r); padding: 40px 36px; box-shadow: var(--shadow); border: 1px solid var(--border); transition: all var(--t); }
.card:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }
.card .icon { width: 32px; height: 32px; border-radius: 8px; background: var(--grad); margin-bottom: 18px; display: flex; align-items: center; justify-content: center; }
.card .icon svg { width: 14px; height: 14px; fill: none; stroke: white; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.card h3 { font-size: 15px; font-weight: 500; color: var(--text); margin-bottom: 10px; }
.card p { font-size: 13px; color: var(--muted); line-height: 1.75; font-weight: 300; }

/* ── DISEASE BLOCKS ── */
.disease-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--border); margin-top: 52px; border-radius: var(--r); overflow: hidden; }
.disease-block { background: white; padding: 52px 40px; transition: background var(--t); position: relative; overflow: hidden; }
.disease-block:hover { background: #f5faf7; }
.disease-block::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--grad); }
.disease-num { font-family: 'DM Serif Display', serif; font-size: 64px; line-height: 1; letter-spacing: -2px; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 16px; opacity: 0.15; position: absolute; top: 24px; right: 28px; }
.disease-tag { font-size: 10px; font-weight: 400; letter-spacing: 0.18em; text-transform: uppercase; color: var(--green); margin-bottom: 16px; }
.disease-block h3 { font-family: 'DM Serif Display', serif; font-size: 26px; line-height: 1.2; color: var(--text); margin-bottom: 16px; letter-spacing: -0.3px; }
.disease-block p { font-size: 13px; color: var(--muted); line-height: 1.75; font-weight: 300; }

/* ── MOMENTUM STRIP ── */
.momentum { background: var(--navy); padding: 80px 68px; }
.momentum-label { font-size: 10px; font-weight: 300; letter-spacing: 0.26em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 40px; display: flex; align-items: center; gap: 10px; }
.momentum-label::before { content: ''; display: block; width: 20px; height: 1px; background: rgba(255,255,255,0.3); }
.momentum-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: rgba(255,255,255,0.06); border-radius: 12px; overflow: hidden; }
.momentum-item { background: rgba(255,255,255,0.03); padding: 40px 32px; }
.momentum-item .m-num { font-family: 'DM Serif Display', serif; font-size: 48px; color: #1a9e52; line-height: 1; letter-spacing: -1.5px; margin-bottom: 10px; }
.momentum-item .m-label { font-size: 12px; color: rgba(255,255,255,0.45); font-weight: 300; line-height: 1.55; }

/* ── NEWS ── */
.news-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 48px; }
.news-card { background: white; border-radius: var(--r); padding: 36px 32px; text-decoration: none; color: inherit; box-shadow: var(--shadow); border: 1px solid var(--border); transition: all var(--t); display: block; }
.news-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }
.news-tag { font-size: 10px; font-weight: 400; letter-spacing: 0.14em; text-transform: uppercase; color: var(--green); margin-bottom: 14px; }
.news-card h4 { font-size: 15px; font-weight: 400; color: var(--text); line-height: 1.55; margin-bottom: 14px; }
.news-card .date { font-size: 11px; color: var(--muted); font-weight: 300; }

/* ── QUOTE ── */
.quote-section { background: var(--navy); padding: 120px 68px; text-align: center; border: none; }
.quote-mark { font-family: 'DM Serif Display', serif; font-size: 100px; line-height: 0.6; color: var(--green); opacity: 0.25; display: block; margin-bottom: 28px; }
.quote-section blockquote { font-family: 'DM Serif Display', serif; font-size: clamp(20px, 2.6vw, 36px); font-style: italic; line-height: 1.5; letter-spacing: -0.3px; max-width: 820px; margin: 0 auto 28px; color: white; }
.quote-attribution { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.3); font-weight: 300; }

/* ── FOOTER ── */
footer { background: var(--navy); padding: 72px 68px 48px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: start; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.07); margin-bottom: 32px; }
.footer-logo { font-family: 'DM Serif Display', serif; font-size: 20px; color: white; margin-bottom: 12px; }
.footer-tagline { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,0.35); max-width: 280px; font-weight: 300; }
.footer-links { display: flex; gap: 28px; justify-content: flex-end; flex-wrap: wrap; align-items: center; }
.footer-links a { text-decoration: none; color: rgba(255,255,255,0.35); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; transition: color var(--t); font-weight: 300; }
.footer-links a:hover { color: white; }
.footer-copy { color: rgba(255,255,255,0.18); font-size: 11px; font-weight: 300; }

/* ── PAGE HERO ── */
.page-hero { padding: 120px 68px 88px; border-bottom: 1px solid var(--border); background: linear-gradient(160deg, #edf6f1 0%, #e8effa 100%); }
.page-hero h1 { font-family: 'DM Serif Display', serif; font-size: clamp(38px, 4.5vw, 62px); line-height: 1.08; letter-spacing: -1.2px; max-width: 760px; margin-bottom: 24px; }
.page-hero p { font-size: 17px; color: var(--muted); line-height: 1.8; max-width: 540px; font-weight: 300; }

/* ── TEAM ── */
.team-page-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 56px; }
.team-page-card { background: white; border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--border); transition: all var(--t); }
.team-page-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }
.team-photo { width: 100%; aspect-ratio: 1; object-fit: cover; object-position: center top; display: block; }
.team-info { padding: 28px 28px 32px; }
.team-info h3 { font-size: 17px; font-weight: 500; color: var(--text); margin-bottom: 4px; }
.team-info .role { font-size: 10px; color: var(--green); font-weight: 400; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 16px; display: block; }
.team-info p { font-size: 13px; color: var(--muted); line-height: 1.75; font-weight: 300; }
.credentials { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.credential { background: var(--bg); border: 1px solid var(--border); border-radius: 20px; padding: 4px 12px; font-size: 11px; color: var(--muted); font-weight: 300; }

/* ── PIPELINE TABLE ── */
.pipeline-table { width: 100%; border-collapse: collapse; margin-top: 48px; background: white; border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow); }
.pipeline-table th { background: var(--navy); color: rgba(255,255,255,0.6); font-size: 10px; font-weight: 400; letter-spacing: 0.14em; text-transform: uppercase; padding: 16px 20px; text-align: left; }
.pipeline-table td { padding: 16px 20px; font-size: 13px; color: var(--text); border-bottom: 1px solid var(--border); font-weight: 300; vertical-align: top; }
.pipeline-table tr:last-child td { border-bottom: none; }
.pipeline-table tr:hover td { background: #f5faf7; }
.stage-badge { display: inline-block; padding: 3px 10px; border-radius: 20px; font-size: 10px; font-weight: 400; letter-spacing: 0.04em; }
.stage-wet { background: rgba(26,158,82,0.1); color: var(--green); }
.stage-comp { background: rgba(16,85,176,0.08); color: var(--blue); }
.stage-sbir { background: rgba(255,165,0,0.1); color: #b06000; }

/* ── CONTACT FORM ── */
.contact-form { display: flex; flex-direction: column; gap: 18px; max-width: 540px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-size: 10px; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.form-field input, .form-field textarea, .form-field select { font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 300; color: var(--text); background: white; border: 1px solid var(--border); border-radius: 8px; padding: 12px 14px; transition: border-color var(--t); outline: none; width: 100%; }
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(26,158,82,0.08); }
.form-field textarea { resize: vertical; min-height: 110px; }

/* ── TEAM AVATAR (about page small) ── */
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 56px; }
.team-card { background: white; border-radius: var(--r); padding: 44px 36px; box-shadow: var(--shadow); border: 1px solid var(--border); }
.team-avatar { width: 64px; height: 64px; border-radius: 50%; background: var(--grad); margin-bottom: 20px; display: flex; align-items: center; justify-content: center; font-family: 'DM Serif Display', serif; font-size: 20px; color: white; overflow: hidden; }
.team-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.team-card h3 { font-size: 16px; font-weight: 500; color: var(--text); margin-bottom: 4px; }
.team-card .role { font-size: 10px; color: var(--green); font-weight: 400; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 14px; }
.team-card p { font-size: 13px; color: var(--muted); line-height: 1.7; font-weight: 300; }

@media (max-width: 900px) {
  .top-banner { font-size: 10px; padding: 8px 16px; }
  nav { padding: 0 24px; top: 32px; }
  .nav-links { display: none; }
  .hero { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-left { padding: 60px 24px; }
  section { padding: 64px 24px; }
  .statement { flex-direction: column; padding: 52px 24px; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .momentum-grid { grid-template-columns: 1fr 1fr; }
  .card-grid { grid-template-columns: 1fr; }
  .disease-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .team-page-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  footer { padding: 48px 24px 32px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
  .page-hero { padding: 72px 24px; }
  .momentum { padding: 60px 24px; }
}
