:root {
    --bg: #0b1120;
    --bg2: #111827;
    --card: #1e293b;
    --border: #ffffff14;
    --accent: #6366f1;
    --text: #e5e7eb;
    --muted: #9ca3af;
}

body {
    font-family: Inter, system-ui;
    background: linear-gradient(180deg, var(--bg), var(--bg2));
    color: var(--text);
    margin: 0;
}

.container {
    max-width: 1150px;
    margin: auto;
    padding: 40px 20px;
}

.section {
    margin-top: 110px
}

.section h2 {
    font-size: 32px;
    margin-bottom: 30px
}

.hero {
    position: relative;
    padding: 100px 20px;
    text-align: center;
    overflow: hidden;
}

.tech-icon {
    height: 19px;
    width: auto;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://mixelpixel.net/images/mixelpixel-background-summer.jpg');
    background-size: cover;
    background-position: center;
    filter: blur(2px) brightness(.55);
    transform: scale(1.03);
}

.hero-content {
    position: relative;
    z-index: 2
}

.hero img {
    width: 25%;
    height: 25%
}

.hero h1 {
    font-size: 52px;
    margin-bottom: 15px
}

.hero p {
    font-size: 20px;
    max-width: 720px;
    margin: auto;
    color: #cbd5f5
}

.badges {
    margin-top: 18px;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.badge {
    background: #020617;
    border: 1px solid var(--border);
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 13px;
    color: #cbd5f5;
}

.cta {
    display: inline-block;
    margin-top: 35px;
    padding: 15px 32px;
    background: linear-gradient(135deg, var(--accent), #818cf8);
    border-radius: 14px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .4);
}

.grid {
    display: grid;
    grid-template-columns:repeat(auto-fit, minmax(230px, 1fr));
    gap: 24px;
}

.card {
    background: var(--card);
    padding: 28px;
    border-radius: 18px;
    border: 1px solid var(--border);
    transition: .2s;
}

.card:hover {
    transform: translateY(-4px)
}

.icon {
    font-size: 26px;
    margin-bottom: 10px
}

.feature-grid {
    display: grid;
    grid-template-columns:repeat(auto-fit, minmax(260px, 1fr));
    gap: 26px;
}

.feature {
    background: var(--card);
    padding: 30px;
    border-radius: 18px;
    border: 1px solid var(--border);
    transition: .2s;
}

.feature:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .35);
}


.feature a {
    color: #818cf8;
    text-decoration: none
}

.stack-grid {
    display: grid;
    grid-template-columns:repeat(auto-fit, minmax(150px, 1fr));
    gap: 18px;
}

.stack-item {
    background: #020617;
    border: 1px solid var(--border);
    padding: 18px;
    border-radius: 14px;
    text-align: center;
    font-weight: 500;
    transition: .2s;
}

.stack-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .35);
}

.req-grid {
    display: grid;
    grid-template-columns:repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
}

.req {
    background: var(--card);
    border: 1px solid var(--border);
    padding: 22px;
    border-radius: 14px;
    transition: .2s;
}

.req:hover {
    transform: translateY(-4px);
}

.code-card {
    background: #020617;
    border-radius: 16px;
    border: 1px solid var(--border);
    overflow: hidden;
}

.code-header {
    padding: 12px 18px;
    border-bottom: 1px solid var(--border);
    font-size: 13px;
    color: var(--muted);
}

pre {
    margin: 0;
    padding: 26px;
    overflow: auto;
    border-radius: 12px;
}

.tech-badges {
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tech-badges span {
    background: #020617;
    border: 1px solid var(--border);
    padding: 5px 10px;
    border-radius: 999px;
    font-size: 12px;
    color: #cbd5f5;
}

.job-box {
    background: linear-gradient(145deg, #1e293b, #0f172a);
    padding: 45px;
    border-radius: 20px;
    border: 1px solid var(--border);
    text-align: center;
}

.email {
    font-size: 22px;
    font-weight: 600;
    color: #a5b4fc
}

.footer {
    text-align: center;
    margin-top: 120px;
    color: #94a3b8;
    font-size: 14px
}

.tabs {
    background: #020617;
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
}

.tab-buttons {
    display: flex;
    border-bottom: 1px solid var(--border);
    background: #020617;
}

.tab-btn {
    flex: 1;
    padding: 12px;
    background: transparent;
    border: none;
    color: var(--muted);
    cursor: pointer;
    font-weight: 500;
    transition: .2s;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tab-btn:hover {
    color: var(--text);
    background: #0f172a;
}

.tab-btn.active {
    color: white;
    border-bottom: 2px solid var(--accent);
    background: #0f172a;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}