@font-face {
    font-family: 'Nekst';
    src: url('/static/fonts/c854bf10ef42c4fd-s.p.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter2';
    src: url('/static/fonts/AtlassianSans-latin.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: 'Inter2', sans-serif;
    margin: 0;
}

header {
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    width: 100%;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    z-index: 10;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-svg {
    height: 40px;
}

.logo-txt {
    height: 30px;
}

.get-started-btn {
    width: 139px;
    height: 38px;
    display: flex;
    gap: 8px;
    font-size: 18px;
    align-items: center;
    justify-content: center;
    border: 2px solid #1A59B9;
    border-radius: 8px;
    background: transparent;
    cursor: pointer;
    text-decoration: none;
}

.get-started-txt {
    font-weight: 500;
    font-size: 18px;
    color: #1A59B9;
    text-align: center;
}

.main {
    background: url("/static/img/bg.png") center/cover no-repeat;
    min-height: 80vh;
    padding-top: 72px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.top-text,
.bot-text {
    font-family: 'Nekst', sans-serif;
    font-size: clamp(1.6875rem,1.03125rem + 2.625vw,3rem);
    line-height: 125%;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    text-align: center;
}

.bot-text {
    font-weight: bold;
    color: #1A59B9;
}

.subtitle {
    font-weight: 400;
    font-size: clamp(1.125rem,.9375rem + .75vw,1.5rem);
    line-height: 140%;
    text-align: center;
}

p {
    margin: 0;
}

.start-here-btn {
    display: inline-flex;
    gap: 8px;
    padding: 8px 16px;
    background: #2E3138;
    color: white;
    border-radius: 8px;
    margin: 0 auto;
    cursor: pointer;
    font-size: 18px;
}

.wrapper {
    min-height: 40vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* --- Section Styles --- */
.section {
    padding: 15vh 1rem;
    min-height: 58vh;
}

.decorative-border {
    border-top: solid 2px #1A59B9;
    width: 62px;
    margin-bottom: 0.5rem;
}

.bluecol {
    color: #1A59B9;
}

.section-title-txt {
    font-weight: 500;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    color: #6B7280;
    text-transform: uppercase;
}

.section-title-big {
    font-weight: 600;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: #111827;
    margin-bottom: 2rem;
}

/* Cards */
.section-card {
    border-radius: 8px;
    border: solid 1px #E5E7EB;
    padding: 20px;
    background: white;
    transition: all 0.2s ease;
    height: 100%;
}

.section-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
    background-image: radial-gradient(circle at top right, #f9f9f9, transparent);
}

.card-icon {
    height: 40px;
    width: 40px;
    background: #F3F3F3;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
}

.card-title {
    font-weight: 500;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #111827;
}

.card-text {
    font-weight: 400;
    font-size: 0.875rem;
    color: #6B7280;
}

.bg-gray {
    background: #F3F3F3;
}

.code-wrapper {
    position: relative;
    background: linear-gradient(to bottom, #f8f9fa, #f8f9fa 90%, #f1f3f5);
    border: 1px solid #dee2e6;
    border-radius: 10px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    overflow-x: auto;
    font-family: 'Courier New', Courier, monospace;
}

.copy-btn {
    position: absolute;
    top: 8px;
    right: 12px;
    background: #1A59B9;
    color: white;
    font-size: 0.75rem;
    padding: 6px 12px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    z-index: 1;
}

.copy-btn:hover {
    background: #144aa0;
}

.code-snippet {
    padding: 0.5rem 1rem 0rem 2.5rem;
    margin: 0;
    font-size: 0.95rem;
    white-space: pre-wrap;
    line-height: 1.6;
    position: relative;
}

.line-number {
    display: inline-block;
    width: 1.5rem;
    margin-left: -2rem;
    color: #999;
    text-align: right;
    padding-right: 0.5rem;
    user-select: none;
}

.code-line {
    color: #1A59B9;
    display: inline;
}

.social-logo {
    height: 30px !important;
    width: 30px !important;
    margin-right: .5rem;
}

.footer-links {
    font-family: Inter2;
    font-weight: 400;
    font-size: 12px;
    line-height: 150%;
    text-align: right;
    color: #52555B !important;

}
.footer-links a{
    font-family: Inter2;
    font-weight: 400;
    font-size: 12px;
    line-height: 150%;
    text-align: right;
    color: #52555B !important;

}