> ## Documentation Index
> Fetch the complete documentation index at: https://docs.ascentbio.xyz/llms.txt
> Use this file to discover all available pages before exploring further.

> Home - Ascent Bio

# Home

<div
  style={{
minHeight: '50vh',
color: '#ffffff',
fontFamily: 'system-ui, -apple-system, sans-serif'
}}
>
  <div
    style={{
textAlign: 'left',
paddingTop: '80px',
paddingBottom: '80px',
paddingLeft: '40px',
paddingRight: '40px',
maxWidth: '1200px',
margin: '0 auto',
display: 'flex',
alignItems: 'center',
gap: '60px'
}}
  >
    {/* Text Content */}

    <div
      style={{
  flex: '1',
  maxWidth: '600px'
}}
    >
      <h1
        style={{
    fontSize: 'clamp(2rem, 4.5vw, 3.5rem)',
    fontWeight: '300',
    margin: '0',
    color: '#ffffff',
    letterSpacing: '-0.02em',
    marginBottom: '30px'
  }}
      >
        Accelerate your work with Faraday
      </h1>

      <p
        style={{
    fontSize: 'clamp(0.9rem, 1.8vw, 1.1rem)',
    margin: '0 0 50px 0',
    maxWidth: '700px',
    color: '#cccccc',
    fontWeight: '300',
    lineHeight: '1.6'
  }}
      >
        Faraday is an AI research assistant that understands chemistry, biology, and pharmaceutical science.
        Ask questions in natural language and get expert-level insights for your drug discovery workflows.
        Use the latest models and run code at the speed of thought
      </p>

      <a
        href="https://platform.ascentbio.xyz"
        style={{
      display: 'inline-block',
      padding: '14px 32px',
      fontSize: '1rem',
      fontWeight: '400',
      background: '#0D9373',
      color: 'white',
      textDecoration: 'none',
      borderRadius: '25px',
      transition: 'all 0.2s ease',
      border: 'none',
      cursor: 'pointer'
    }}
        onMouseOver={(e) => {
      e.currentTarget.style.background = '#07C983';
    }}
        onMouseOut={(e) => {
      e.currentTarget.style.background = '#0D9373';
    }}
      >
        Launch Platform
      </a>
    </div>

    {/* Image */}

    <div
      style={{
  flex: '1',
  maxWidth: '500px'
}}
    >
      <img
        src="https://images.unsplash.com/photo-1748421218597-6ac6871b34f7?q=80&w=2574&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D"
        alt="Scientific research and drug discovery"
        style={{
      width: '100%',
      height: 'auto',
      borderRadius: '12px',
      boxShadow: '0 20px 40px rgba(0, 0, 0, 0.3)'
    }}
      />
    </div>
  </div>

  <div
    style={{
maxWidth: '100vw',
margin: '0 auto',
padding: '0 40px 120px'
}}
  >
    <h2
      style={{
  textAlign: 'center',
  fontSize: 'clamp(1.8rem, 4vw, 2.4rem)',
  fontWeight: '500',
  marginBottom: '80px',
  color: '#ffffff'
}}
    >
      Platform Capabilities
    </h2>

    <Columns cols={3}>
      <Card title="Molecular Properties" icon="flask" href="/user-guides/faraday-molprops" color="#0D9373">
        Calculate MW, logP, Lipinski compliance, and TPSA for optimization
      </Card>

      <Card title="Molecular Generation" icon="dna" href="/user-guides/faraday-molgen" color="#0D9373">
        Generate novel molecules for SAR exploration and library expansion
      </Card>

      <Card title="ADMET Analysis" icon="chart-line" href="/user-guides/faraday-admet" color="#0D9373">
        Predict absorption, distribution, metabolism, excretion, and toxicity
      </Card>

      <Card title="Literature Intelligence" icon="book-open" href="/user-guides/faraday-literature" color="#0D9373">
        Access and analyze scientific literature with AI-powered insights
      </Card>

      <Card title="Molecular Docking" icon="circle" href="/user-guides/faraday-docking" color="#0D9373">
        Predict protein-ligand interactions and binding affinities
      </Card>

      <Card title="Molecular Optimization" icon="split" href="/user-guides/faraday-molopt" color="#0D9373">
        Optimize structures for enhanced potency and pharmaceutical properties
      </Card>
    </Columns>
  </div>
</div>
