:host {
display: block;
font-family: 'Inter', sans-serif;
background-color: #161b24;
color: #e6edf3;
overflow-x: hidden;
}
p,
ul,
li {
line-height: 1.6;
}
.section-container {
max-width: 1200px;
margin: 0 auto;
padding: 0 1rem;
}
.section-container img {
object-fit: cover;
object-position: left;
max-width: 100%;
}
.main-section {
background-color: rgb(33, 38, 50);
padding: 4rem 0;
}
.text-center {
text-align: center;
}
.text-center .lead {
margin: 0 auto;
}
p.lead {
font-size: 1.2rem;
max-width: 700px;
}
/* Hero Section */
.hero {
position: relative;
overflow: hidden;
background: linear-gradient(135deg,
hsl(25, 70%, 28%) 0%,
hsl(280, 50%, 25%) 33%,
hsl(200, 55%, 28%) 66%,
hsl(260, 60%, 30%) 100%);
background-size: 400% 400%;
animation: moveGradient 30s ease infinite;
padding: 8rem 0;
}
/* Product Hunt Badge */
.product-hunt-badge {
margin-bottom: 1.5rem;
}
.product-hunt-badge a {
display: inline-block;
transition: transform 0.2s ease;
}
.product-hunt-badge a:hover {
transform: translateY(-2px);
}
.product-hunt-badge img {
display: block;
}
.hero-inner {
display: flex;
align-items: center;
justify-content: center;
gap: 2rem;
}
.hero-content {
flex: 1;
max-width: 1280px;
text-align: left;
}
.hero-content h1 {
font-size: 4.2rem;
font-weight: 300;
line-height: 1.1;
margin-bottom: 1.8rem;
}
.hero-content .lead {
font-size: 1.4rem;
margin-bottom: 2.8rem;
margin: 0 0 2rem 0;
}
.hero-buttons {
display: flex;
gap: 1rem;
align-items: center;
justify-content: flex-start;
}
.hero-image {
flex: 1;
text-align: center;
}
.hero-image .img-fluid {
max-width: 100%;
height: auto;
}
.gradient-faster,
.gradient-safer,
.gradient-product,
.gradient-ai {
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
text-fill-color: transparent;
display: inline-block;
/* Ensures the gradient is applied correctly */
}
.gradient-faster {
background-image: linear-gradient(45deg,
hsl(211, 100%, 50%),
hsl(195, 100%, 50%));
}
.gradient-safer {
background-image: linear-gradient(45deg,
hsl(220, 80%, 60%),
hsl(260, 80%, 70%));
}
.gradient-product {
background-image: linear-gradient(45deg,
hsl(190, 80%, 55%),
hsl(140, 70%, 50%));
}
.gradient-ai {
background-image: linear-gradient(45deg,
hsl(260, 90%, 70%),
hsl(320, 85%, 65%));
}
/* Feature Section */
.feature-section {
position: relative;
text-align: center;
}
.feature-section .section-container {
text-align: left;
}
.carousel-navigation {
margin-top: auto;
/* Pushes the navigation to the bottom of the flex container */
display: flex;
justify-content: space-between;
width: 100%;
align-items: center;
}
.slide-indicator {
color: var(--sl-color-primary-500);
font-variant-numeric: tabular-nums;
min-width: 4ch;
/* Ensure space for 'X / Y' */
}
.carousel-nav {
color: var(--sl-color-neutral-400);
transition: color 0.3s;
pointer-events: all;
}
.carousel-nav sl-icon {
font-size: 1.5rem;
}
.carousel-nav:hover {
color: var(--sl-color-primary-500);
}
.feature-carousel::part(scroll-container) {
aspect-ratio: initial;
}
.feature-carousel::part(navigation-button) {
display: none;
}
.feature-carousel::part(pagination) {
display: none;
}
.feature-carousel::part(base) {
margin: 0;
padding: 0;
gap: 0;
}
sl-carousel-item {
aspect-ratio: initial !important;
height: auto !important;
}
/* Extended Description Section */
.extended-description-section {
text-align: center;
}
.extended-description-section .lead {
max-width: 800px;
margin-left: auto;
margin-right: auto;
font-size: 1.2rem;
line-height: 1.8;
}
/* Featured Video Section */
.featured-video-section {
text-align: center;
}
.featured-video-section h2 {
text-align: center;
margin-bottom: 2rem;
}
.featured-video-wrapper {
position: relative;
max-width: 900px;
width: 100%;
margin: 0 auto;
aspect-ratio: 16 / 9;
border-radius: 12px;
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}
.featured-video-wrapper iframe {
width: 100%;
height: 100%;
border-radius: 12px;
border: none;
}
/* How It Works Section */
.how-it-works-section {
padding: 6rem 0;
}
.how-it-works-section h2 {
margin-bottom: 2rem;
}
.how-it-works-section .lead {
max-width: 800px;
margin-left: auto;
margin-right: auto;
margin-bottom: 3rem;
font-size: 1.2rem;
line-height: 1.8;
}
.diagram-container {
width: 100%;
margin: 0 auto;
padding: 2rem;
background: rgba(255, 255, 255, 0.03);
border-radius: 12px;
border: 1px solid rgba(255, 255, 255, 0.1);
box-sizing: border-box;
}
.architecture-diagram {
width: 100%;
height: auto;
border-radius: 8px;
display: block;
}
.feature-grid {
display: flex;
gap: 2rem;
justify-content: center;
}
.feature-grid.three-col {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 3rem;
width: 100%;
}
.feature-grid.three-col .feature-box {
padding: 0;
}
.feature-grid-2-col {
display: grid;
grid-template-columns: 1fr 2fr;
gap: 3rem;
align-items: center;
text-align: left;
margin-top: 3rem;
}
.feature-box {
flex: 1;
padding: 2rem;
border-radius: 8px;
text-align: left;
}
.feature-box img {
width: 100%;
height: auto;
border-radius: 8px;
margin-bottom: 1.5rem;
}
.feature-icon {
margin-bottom: 1.5rem;
}
.feature-icon sl-icon {
font-size: 3rem;
color: #58a6ff;
}
.feature-icon img {
width: 64px;
height: 64px;
margin-bottom: 1rem;
}
.feature-box h3 {
font-size: 1.5rem;
font-weight: 600;
margin-bottom: 0.5rem;
}
.feature-box .video-link {
display: inline-flex;
align-items: center;
gap: 0.5rem;
color: #58a6ff;
text-decoration: none;
margin-top: 1rem;
font-weight: 500;
transition: color 0.2s;
}
.feature-box .video-link:hover {
color: #79c0ff;
}
.feature-box .video-link sl-icon {
font-size: 1.2rem;
}
.feature-text-content {
display: flex;
flex-direction: column;
align-items: flex-start;
min-height: 400px;
justify-content: flex-start;
}
.feature-text-content h2 {
margin-bottom: 2rem;
}
.feature-text-content p {
font-size: 1.1rem;
flex: 1;
}
.watch-video-btn {
margin-bottom: 3rem;
}
.feature-video-content {
position: relative;
}
.image-placeholder {
position: relative;
overflow: hidden;
border-radius: 12px;
display: flex;
align-items: center;
max-height: 400px;
background: rgba(0, 0, 0, 0.05);
}
.image-placeholder img {
width: 100%;
height: 100%;
max-height: 400px;
object-fit: cover;
object-position: center;
border-radius: 12px;
}
.play-button {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 80px;
height: 80px;
background-color: rgba(22, 27, 36, 0.7);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
transition: background-color 0.3s;
backdrop-filter: blur(5px);
border: 1px solid rgba(255, 255, 255, 0.1);
}
.play-button::after {
content: '';
display: block;
width: 0;
height: 0;
border-left: 24px solid white;
border-top: 16px solid transparent;
border-bottom: 16px solid transparent;
margin-left: 5px;
transition: transform 0.3s;
}
.video-placeholder:hover .play-button {
background-color: rgba(0, 0, 0, 0.8);
}
.video-placeholder:hover .play-button::after {
transform: scale(1.1);
}
.video-wrapper {
position: relative;
padding-bottom: 56.25%;
/* 16:9 aspect ratio */
height: 0;
overflow: hidden;
}
.video-wrapper iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border-radius: 8px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
/* Get Started / CTA Section */
.cta-section {
background-color: #161b22;
}
.main-section h2 {
position: relative;
text-align: left;
font-size: 2.2rem;
font-weight: 300;
padding-bottom: 16px;
}
.main-section h2::after {
content: '';
position: absolute;
left: 0;
bottom: 0;
width: 70px;
height: 4px;
background: #58a6ff;
border-radius: 2px;
}
.text-section h1 {
font-size: 2.4rem;
font-weight: 300;
color: var(--sl-color-primary-500);
}
.text-section h2 {
font-size: 1.8rem;
font-weight: 300;
color: var(--sl-color-primary-500);
}
.text-section h3 {
font-size: 1.6rem;
font-weight: 300;
}
.main-section h3 {
font-size: 1.8rem;
font-weight: 300;
}
.cta-section .btn-primary:hover {
background-color: #58a6ff;
border-color: #58a6ff;
}
.special-cta {
text-align: center;
}
.special-cta h2 {
text-align: center;
}
.special-cta h2::after {
display: none;
}
.get-started-container {
display: flex;
border-radius: 12px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
overflow: hidden;
background: linear-gradient(45deg, #d35400, #6c3483, #1f618d);
color: #fff;
margin-top: 2rem;
}
.ide-tabs {
display: flex;
flex-direction: column;
border-right: 1px solid rgba(0, 0, 0, 0.2);
}
.ide-logo-container {
padding: 1rem;
cursor: pointer;
transition: background-color 0.2s ease;
display: flex;
align-items: center;
justify-content: center;
height: 80px;
}
.ide-logo-container.active {
background-color: rgba(255, 255, 255, 0.1);
border-left: 3px solid #fff;
}
.ide-logo-container img {
max-width: 100px;
filter: brightness(0) invert(1);
opacity: 0.7;
transition: all 0.2s ease;
}
.ide-logo-container.active img {
opacity: 1;
}
.tab-content {
flex: 1;
padding: 2rem;
text-align: left;
}
.tab-content h4 {
margin-top: 1rem;
font-size: 1.5rem;
margin-bottom: 1rem;
}
.tab-content h5 {
font-size: 1.1rem;
font-weight: 600;
margin-top: 1.5rem;
margin-bottom: 0.5rem;
}
.code-container {
position: relative;
border-radius: 6px;
margin: 1rem 0;
background-color: rgba(0, 0, 0, 0.2);
}
.code-container pre {
margin: 0;
padding: 1rem;
white-space: pre-wrap;
word-break: break-all;
font-family: 'Fira Code', monospace;
font-size: 0.9rem;
color: #fff;
}
.copy-btn {
position: absolute;
top: 0.5rem;
right: 0.5rem;
background: none;
border: none;
cursor: pointer;
padding: 0.25rem;
border-radius: 4px;
}
.title-container {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 2rem;
}
.title-container .main-link {
color: #58a6ff;
text-decoration: none;
position: relative;
top: -7px;
}
/* Tools Section */
.tools-section {
padding-top: 4rem;
padding-bottom: 4rem;
}
.tool-logos {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 3rem;
row-gap: 2.5rem;
margin-top: 3rem;
max-width: 800px;
margin-left: auto;
margin-right: auto;
filter: grayscale(100%) opacity(0.6);
transition: filter 0.3s ease;
}
.tool-logos sl-tooltip {
flex: 0 0 auto;
width: 150px;
display: flex;
justify-content: center;
}
.tool-logos:hover {
filter: grayscale(0%) opacity(1);
}
.tool-logo {
height: 60px;
max-width: 150px;
object-fit: contain;
}
.gitlab-logo {
transform: scale(1.5);
}
sl-tooltip::part(base) {
background-color: var(--sl-color-neutral-800);
border: 1px solid var(--sl-color-neutral-600);
color: var(--sl-color-neutral-100);
font-family: 'Inter', sans-serif;
}
sl-tooltip::part(body) {
padding: 0.5rem 0.75rem;
}
/* FAQ Section */
.faq-section {
padding: 4rem 0;
}
.faq-list {
margin: 2rem auto 0;
}
.faq-item {
border-bottom: 1px solid #161b22;
}
summary.faq-question {
color: #58a6ff;
display: flex;
justify-content: space-between;
align-items: center;
padding: 1.5rem 0;
cursor: pointer;
font-size: 1.2rem;
list-style: none;
/* Remove default marker */
}
summary.faq-question::-webkit-details-marker {
display: none;
/* Chrome */
}
summary.faq-question sl-icon {
transition: transform 0.3s ease;
}
.faq-item[open] summary.faq-question sl-icon {
transform: rotate(180deg);
}
.faq-answer {
height: 0;
overflow: hidden;
transition: height 0.3s ease-out;
}
.faq-answer-content {
padding-bottom: 1.5rem;
}
/* Final CTA Section */
.final-cta .section-container {
display: flex;
justify-content: space-between;
align-items: center;
}
.final-cta h2 {
text-align: left;
padding-bottom: 0;
}
.final-cta h2::after {
display: none;
}
.final-cta .hero-buttons {
justify-content: flex-end;
}
/* Responsive Styles */
@media (max-width: 1024px) {
.tool-logos {
gap: 3rem;
row-gap: 2.5rem;
}
.tool-logo {
height: 56px;
}
.feature-grid.three-col {
grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width: 768px) {
.hero-inner {
flex-direction: column;
text-align: center;
}
.hero-content {
max-width: 100%;
}
.hero-content h1 {
font-size: 2.8rem;
word-wrap: break-word;
overflow-wrap: break-word;
}
.hero-content .lead {
font-size: 1.1rem;
}
.hero-buttons {
justify-content: center;
flex-wrap: wrap;
}
.feature-grid {
flex-direction: column;
}
.feature-grid-2-col {
grid-template-columns: 1fr;
}
.feature-grid.three-col {
grid-template-columns: 1fr;
}
.get-started-container {
flex-direction: column;
}
.title-container {
flex-direction: column;
align-items: flex-start;
gap: 0.5rem;
}
.title-container .main-link {
top: 0;
}
.ide-tabs {
flex-direction: row;
border-right: none;
}
.ide-logo-container {
flex: 1;
}
.ide-logo-container.active {
border-left: none;
border-bottom: 3px solid #fff;
}
.final-cta .section-container {
flex-direction: column;
text-align: center;
}
.tool-logos {
gap: 2rem;
row-gap: 2rem;
}
.tool-logo {
height: 48px;
}
.final-cta h2 {
margin-bottom: 1.5rem;
}
.final-cta .hero-buttons {
justify-content: center;
}
}
@keyframes moveGradient {
0% {
background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
100% {
background-position: 0% 50%;
}
}