Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added public/screenshots/provider-picker.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
199 changes: 196 additions & 3 deletions src/pages/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,9 @@ const capabilities = [
<aside class="downloads" aria-labelledby="download-title">
<div class="downloads-inner reveal" style="--reveal-delay: 310ms">
<h2 id="download-title" class="download-title">Download Scient</h2>
<p class="download-promise">
Use Scient for free with the AI subscriptions you already have.
</p>
<div class="download-actions">
<MacDownloadMenu />
<PlatformButton
Expand All @@ -95,6 +98,41 @@ const capabilities = [
</div>
</aside>
</section>

<section class="provider-proof" aria-labelledby="provider-title">
<div class="provider-proof-inner">
<div class="provider-copy">
<p class="provider-eyebrow">Multi-provider</p>
<h2 id="provider-title">All the leading AI providers, in one place.</h2>
<p class="provider-description">
Connect the tools and accounts you already use, choose the right model for each task,
and switch providers without leaving Scient.
</p>
</div>

<figure class="provider-figure">
<a
class="provider-visual"
href="/screenshots/provider-picker.png"
target="_blank"
rel="noopener noreferrer"
aria-label="Open the Scient provider picker screenshot at full size"
>
<span class="provider-shot">
<img
src="/screenshots/provider-picker.png"
alt="Scient provider menu showing Codex, Claude, Cursor, Antigravity, Grok, Droid, Kilo, OpenCode, and Pi"
width="1838"
height="1094"
loading="lazy"
decoding="async"
/>
</span>
</a>
<figcaption>Choose and switch providers directly in Scient.</figcaption>
</figure>
</div>
</section>
</Layout>

<style>
Expand Down Expand Up @@ -196,20 +234,129 @@ const capabilities = [
}

.download-title {
margin: 0 0 2.1rem;
margin: 0;
color: var(--ink);
font-size: clamp(1.85rem, 2.35vw, 2.2rem);
font-weight: 500;
letter-spacing: -0.04em;
line-height: 1.1;
}

.download-promise {
max-width: 20rem;
margin: 0.95rem 0 2.1rem;
color: var(--ink-muted);
font-size: clamp(1rem, 1.15vw, 1.08rem);
letter-spacing: -0.018em;
line-height: 1.48;
}

.download-actions {
display: grid;
grid-template-columns: 1fr;
gap: 1.55rem;
}

.provider-proof {
border-top: 1px solid var(--line);
background: var(--surface);
}

.provider-proof-inner {
width: min(100%, 86rem);
display: grid;
grid-template-columns: minmax(19rem, 0.78fr) minmax(33rem, 1.22fr);
align-items: center;
gap: clamp(4rem, 7vw, 7.5rem);
margin-inline: auto;
padding: clamp(6rem, 10vw, 9rem) var(--page-gutter);
}

.provider-copy {
max-width: 31rem;
}

.provider-eyebrow {
margin: 0 0 1.4rem;
color: var(--burgundy);
font-size: 0.78rem;
font-weight: 600;
letter-spacing: 0.16em;
line-height: 1.2;
text-transform: uppercase;
}

.provider-copy h2 {
margin: 0;
color: var(--ink);
font-size: clamp(2.7rem, 4vw, 4.15rem);
font-weight: 500;
letter-spacing: -0.055em;
line-height: 1.04;
text-wrap: balance;
}

.provider-description {
margin: 2rem 0 0;
color: var(--ink-muted);
font-size: clamp(1rem, 1.3vw, 1.16rem);
letter-spacing: -0.018em;
line-height: 1.62;
}

.provider-figure {
min-width: 0;
margin: 0;
}

.provider-visual {
display: block;
overflow: hidden;
border: 1px solid color-mix(in srgb, var(--slate) 28%, var(--line));
border-radius: 0.85rem;
background: #ffffff;
box-shadow: 0 1.8rem 4.5rem rgba(28, 37, 54, 0.09);
transition:
border-color 240ms var(--ease-out),
box-shadow 240ms var(--ease-out),
transform 240ms var(--ease-out);
}

.provider-visual:hover {
border-color: color-mix(in srgb, var(--slate) 52%, var(--line));
box-shadow: 0 2.1rem 5rem rgba(28, 37, 54, 0.13);
transform: translateY(-3px);
}

.provider-visual:focus-visible {
outline: 3px solid var(--focus-ring);
outline-offset: 5px;
}

.provider-shot {
position: relative;
display: block;
aspect-ratio: 6 / 5;
overflow: hidden;
background: #ffffff;
}

.provider-shot img {
position: absolute;
top: -44%;
left: -99%;
width: 215%;
max-width: none;
height: auto;
}

.provider-figure figcaption {
margin-top: 0.85rem;
color: var(--ink-dim);
font-size: 0.82rem;
letter-spacing: -0.01em;
}

@media (max-width: 1120px) {
.hero {
grid-template-columns: minmax(0, 60fr) minmax(0, 40fr);
Expand Down Expand Up @@ -237,6 +384,11 @@ const capabilities = [
.downloads {
padding-inline: clamp(2.75rem, 5vw, 4rem) clamp(2rem, 4vw, 3.5rem);
}

.provider-proof-inner {
grid-template-columns: minmax(17rem, 0.72fr) minmax(29rem, 1.28fr);
gap: clamp(2.5rem, 5vw, 4.5rem);
}
}

@media (max-width: 860px) {
Expand Down Expand Up @@ -288,6 +440,22 @@ const capabilities = [
width: min(100%, 31rem);
margin-inline: auto;
}

.provider-proof-inner {
grid-template-columns: 1fr;
gap: clamp(2.75rem, 7vw, 4rem);
padding-block: clamp(5rem, 11vw, 7rem);
}

.provider-copy,
.provider-figure {
width: min(100%, 42rem);
margin-inline: auto;
}

.provider-copy h2 {
max-width: 37rem;
}
}

@media (max-width: 600px) {
Expand Down Expand Up @@ -316,13 +484,39 @@ const capabilities = [
}

.download-title {
margin-bottom: 1.55rem;
font-size: 1.8rem;
}

.download-promise {
margin-top: 0.8rem;
margin-bottom: 1.55rem;
font-size: 1rem;
}

.download-actions {
gap: 0.85rem;
}

.provider-proof-inner {
padding-block: 4.5rem 5rem;
}

.provider-eyebrow {
margin-bottom: 1.1rem;
}

.provider-copy h2 {
font-size: clamp(2.35rem, 11vw, 3rem);
}

.provider-description {
margin-top: 1.45rem;
font-size: 1rem;
}

.provider-figure figcaption {
margin-top: 0.7rem;
}
}

@media (min-width: 431px) and (max-width: 600px) {
Expand Down Expand Up @@ -368,6 +562,5 @@ const capabilities = [
.hero-geometry {
opacity: var(--geometry-opacity);
}

}
</style>